@charset "UTF-8";
: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_required: #bb1e1e;
  --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;
}

* {
  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**************************************************************************************/
.container-flex {
  position: relative;
}
@media all and (max-width: 1023px) {
  .container-flex {
    position: static;
  }
}
.front .container-flex {
  display: contents;
}

.side-content {
  width: 100%;
  max-width: 47rem;
  padding: 15rem 3rem 3rem;
  position: relative;
}
@media all and (max-width: 1023px) {
  .side-content {
    max-width: 100%;
    padding: 1em 1rem;
  }
}
.side-content > .wrapper {
  height: 100%;
}
@media all and (max-width: 1023px) {
  .side-content > .wrapper {
    height: auto;
  }
}
.side-content > .wrapper .logo-ttl-wrap {
  display: flex;
  flex-flow: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14rem;
  padding: 0 6rem 0 12rem;
}
@media all and (max-width: 1023px) {
  .side-content > .wrapper .logo-ttl-wrap {
    display: block;
    padding: 0;
  }
}
.side-content > .wrapper .logo-ttl-wrap .side-content-ttl {
  font-family: var(--f_notoSerif);
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1;
  writing-mode: vertical-rl;
  color: var(--c_white);
  text-shadow: 0 0 1.5rem var(--bdr_gray);
}
@media all and (max-width: 1023px) {
  .side-content > .wrapper .logo-ttl-wrap .side-content-ttl {
    font-size: 2rem;
    writing-mode: unset;
    text-align: center;
    color: var(--c_primary);
    text-shadow: none;
  }
}
.side-content > .wrapper .logo-ttl-wrap .logo-wrap {
  flex: none;
}
@media all and (max-width: 1023px) {
  .side-content > .wrapper .logo-ttl-wrap .logo-wrap {
    display: none;
  }
}
.side-content > .wrapper .logo-ttl-wrap .logo-wrap img.logo {
  width: 11.5rem;
  height: 11.5rem;
  aspect-ratio: 1/1;
}
.side-content > .wrapper .side-nav-wrap {
  max-width: 24.5rem;
  margin: 12rem 0 0 auto;
  position: sticky;
  top: 15rem;
  right: 0;
}
@media all and (max-width: 1023px) {
  .side-content > .wrapper .side-nav-wrap {
    display: none;
  }
}
.side-content > .wrapper .side-nav-wrap .side-nav-inner .side-nav-ttl {
  font-family: var(--f_libreFranklin);
  font-size: 2.1rem;
  letter-spacing: 0.17em;
  color: var(--c_white);
  text-shadow: 0 0 1.5rem var(--bdr_gray);
}
.side-content > .wrapper .side-nav-wrap .side-nav-inner .side-nav {
  margin-top: 3rem;
  position: relative;
}
.side-content > .wrapper .side-nav-wrap .side-nav-inner .side-nav::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_white);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
}
.side-content > .wrapper .side-nav-wrap .side-nav-inner .side-nav li {
  position: relative;
}
.side-content > .wrapper .side-nav-wrap .side-nav-inner .side-nav li + li {
  border-top: 0.1rem solid var(--bg_base_dark);
}
.side-content > .wrapper .side-nav-wrap .side-nav-inner .side-nav li a {
  font-size: 1.4rem;
  letter-spacing: 0.17em;
  color: var(--c_accent);
  padding: 1.5em;
}
@media all and (min-width: 1024px) {
  .side-content > .wrapper .side-nav-wrap .side-nav-inner .side-nav li a {
    transition: all 0.3s;
  }
  .side-content > .wrapper .side-nav-wrap .side-nav-inner .side-nav li a:hover, .side-content > .wrapper .side-nav-wrap .side-nav-inner .side-nav li a:focus-within {
    color: var(--c_primary);
  }
}

.side-slide-bg {
  width: 100%;
  max-width: calc(100vw - 103rem - (100vw - 150rem) / 2);
  height: 100vh;
  position: sticky;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
@media all and (max-width: 1023px) {
  .side-slide-bg {
    display: none;
  }
}
.side-slide-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #DEDFD8;
  display: block;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
.side-slide-bg .swiper {
  height: 100%;
}
.side-slide-bg .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.under .container-flex main {
  max-width: 150rem;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media all and (min-width: 1024px) {
  .under .container-flex main {
    margin-bottom: -100vh;
  }
}
@media all and (max-width: 1023px) {
  .under .container-flex main {
    flex-flow: column;
  }
}
.under .container-flex main > section:not(.side-content) {
  max-width: 96rem;
  background: var(--c_primary);
}
.under .container-flex main > section:not(.side-content) > .wrapper {
  max-width: 80rem;
  margin: auto;
  background: var(--c_accent);
}

.main-container {
  width: 100%;
}

.breadcrumbs-wrap {
  margin-top: 4rem;
}
@media all and (max-width: 1023px) {
  .breadcrumbs-wrap {
    margin-top: 1rem;
  }
}
@media all and (max-width: 1023px) {
  .breadcrumbs-wrap {
    display: none;
  }
}
.under .breadcrumbs-wrap {
  padding: 0 1rem;
}
@media all and (max-width: 1023px) {
  .under .breadcrumbs-wrap {
    padding: 0 1rem;
  }
}
.under .container-flex .breadcrumbs-wrap {
  padding: 0 1rem 0 8rem;
}
@media all and (max-width: 1023px) {
  .under .container-flex .breadcrumbs-wrap {
    padding: 0 1rem;
  }
}
.breadcrumbs-wrap .breadcrumbs-inner-scroll {
  width: 100%;
  max-width: 123rem;
  margin: auto;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumbs-wrap .breadcrumbs-inner-scroll::-webkit-scrollbar {
  display: none;
}
.under .container-flex .breadcrumbs-wrap .breadcrumbs-inner-scroll {
  max-width: 81.5rem;
  margin: 0;
}
.breadcrumbs-wrap .breadcrumbs-inner-scroll .breadcrumbs {
  width: -moz-max-content;
  width: max-content;
  max-width: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
.breadcrumbs-wrap .breadcrumbs-inner-scroll .breadcrumbs span {
  width: -moz-max-content;
  width: max-content;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media all and (max-width: 1023px) {
  .breadcrumbs-wrap .breadcrumbs-inner-scroll .breadcrumbs span {
    font-size: 1.2rem;
  }
}

.front-sec-ttl-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.front-sec-ttl-wrap .front-sec-ttl {
  display: flex;
  flex-flow: column-reverse;
  justify-content: flex-start;
  align-items: center;
}
.front-sec-ttl-wrap .front-sec-ttl span.ja {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--c_primary);
}
@media all and (max-width: 1023px) {
  .front-sec-ttl-wrap .front-sec-ttl span.ja {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.front-sec-ttl-wrap .front-sec-ttl span.en {
  font-family: var(--f_libreFranklin);
  font-size: 3.7rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  color: var(--c_primary);
}
@media all and (max-width: 1023px) {
  .front-sec-ttl-wrap .front-sec-ttl span.en {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}

.front-news-ttl-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.front-news-ttl-wrap .front-news-ttl {
  display: flex;
  flex-flow: column-reverse;
  justify-content: flex-start;
  align-items: flex-start;
}
.front-news-ttl-wrap .front-news-ttl span.ja {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c_primary);
}
@media all and (max-width: 1023px) {
  .front-news-ttl-wrap .front-news-ttl span.ja {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}
.front-news-ttl-wrap .front-news-ttl span.en {
  font-family: var(--f_libreFranklin);
  font-size: 2.1rem;
  letter-spacing: 0.12em;
  color: var(--c_accent);
}
@media all and (max-width: 1023px) {
  .front-news-ttl-wrap .front-news-ttl span.en {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

.news-list-wrap .news-item {
  border-bottom: 0.1rem solid var(--bdr_gray);
}
.news-list-wrap .news-item:first-child {
  border-top: 0.1rem solid var(--bdr_gray);
}
.news-list-wrap .news-item .news-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0.5rem 3rem;
  padding: 1.5em 1rem;
}
@media all and (max-width: 1023px) {
  .news-list-wrap .news-item .news-item-inner {
    flex-flow: column;
    padding: 1em 1rem;
  }
}
.news-list-wrap .news-item .news-item-inner span {
  font-size: 1.9rem;
}
@media all and (max-width: 1023px) {
  .news-list-wrap .news-item .news-item-inner span {
    font-size: 1.2rem;
  }
}
.news-list-wrap .news-item .news-item-inner span.news-date {
  min-width: 12.3rem;
  font-family: var(--f_libreFranklin);
  letter-spacing: 0.08em;
  flex: none;
}
@media all and (max-width: 1023px) {
  .news-list-wrap .news-item .news-item-inner span.news-date {
    letter-spacing: 0;
  }
}
.news-list-wrap .news-item .news-item-inner span.news-ttl {
  letter-spacing: 0.04em;
}
@media all and (max-width: 1023px) {
  .news-list-wrap .news-item .news-item-inner span.news-ttl {
    letter-spacing: 0;
  }
}
.news-list-wrap .news-item .news-item-inner .icon-arrow-right::before {
  right: 1rem;
}
@media all and (min-width: 1024px) {
  .news-list-wrap .news-item .news-item-inner {
    transition: all 0.3s;
  }
  .news-list-wrap .news-item .news-item-inner:hover, .news-list-wrap .news-item .news-item-inner:focus-within {
    color: var(--c_primary);
  }
}

.btn-wrap {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
}
.btn-wrap.flex-start {
  justify-content: flex-start;
}
.btn-wrap.flex-end {
  justify-content: flex-end;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 1em;
}
.btn-rad {
  border-radius: 100vw;
}
.btn-bdr {
  border-width: 0.1rem;
  border-style: solid;
}
.btn-bdr.bdr-c-white {
  border-color: var(--c_white);
}
.btn-bdr.bdr-c-primary {
  border-color: var(--c_primary);
}
@media all and (min-width: 1024px) {
  .btn.bg-white {
    transition: all 0.3s;
  }
  .btn.bg-white span {
    transition: all 0.3s;
  }
  .btn.bg-white:hover {
    background: var(--c_primary);
  }
  .btn.bg-white:hover span {
    color: var(--c_white);
  }
}
@media all and (min-width: 1024px) {
  .btn.bg-primary {
    transition: all 0.3s;
  }
  .btn.bg-primary span {
    transition: all 0.3s;
  }
  .btn.bg-primary:hover {
    background: var(--c_white);
  }
  .btn.bg-primary:hover span {
    color: var(--c_primary);
  }
}
.btn.arrow-right, .btn.arrow-left {
  padding-left: 2em;
  padding-right: 2em;
  position: relative;
}
.btn.arrow-right .arrow, .btn.arrow-left .arrow {
  width: 1em;
  height: 1em;
  text-indent: 100%;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.btn.arrow-right .arrow::before, .btn.arrow-left .arrow::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 45deg;
  aspect-ratio: 1/1;
}
.btn.arrow-right .arrow {
  right: 1em;
}
.btn.arrow-right .arrow::before {
  border-top: 0.1rem solid;
  border-right: 0.1rem solid;
}
.btn.arrow-left .arrow {
  left: 1em;
}
.btn.arrow-left .arrow::before {
  border-bottom: 0.1rem solid;
  border-left: 0.1rem solid;
}

.news-btn {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--c_primary);
  background: var(--bg_base_dark);
  border-radius: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 1em;
}
@media all and (min-width: 1024px) {
  .news-btn.hov-action {
    transition: all 0.3s;
  }
  .news-btn.hov-action:hover, .news-btn.hov-action:focus-within {
    color: var(--c_white);
    background: #009242;
  }
}
@media all and (max-width: 1023px) {
  .news-btn {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

.icon-arrow-right {
  padding-right: 2em;
  position: relative;
}
.icon-arrow-right::before {
  content: "";
  width: 1.7rem;
  height: 1.4rem;
  position: absolute;
  -webkit-mask: url(../img/dummy/common/icon_arrow_right.svg) no-repeat center/contain;
          mask: url(../img/dummy/common/icon_arrow_right.svg) no-repeat center/contain;
  background: var(--c_primary);
  top: 50%;
  right: 0;
  translate: 0 -50%;
}

.list-dot > li {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0.5em;
}
.list-dot > li::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: var(--c_txt);
  border-radius: 100vw;
  aspect-ratio: 1/1;
  flex: none;
}
.list-dot.dot-primary li::before {
  background: var(--c_primary);
}

.list-num {
  counter-reset: number 0;
}
.list-num > li {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0.5em;
  counter-increment: number 1;
}
.list-num > li::before {
  content: counter(number) ".";
  width: 1.5em;
  text-align: right;
  flex: none;
}
.list-num.num-primary li::before {
  color: var(--c_primary);
}

.bdr-sep-block {
  padding-top: 4rem;
  margin-top: 4rem;
  position: relative;
}
.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_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;
}
@media all and (max-width: 1023px) {
  .flex-sep-block .col-ttl-area {
    max-width: 100%;
  }
}
.flex-sep-block .col-content-area {
  width: 100%;
  max-width: calc(100% - 16.4rem);
}
@media all and (max-width: 1023px) {
  .flex-sep-block .col-content-area {
    max-width: 100%;
  }
}

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

.block-area {
  margin-top: 2em;
}
.block-area:first-child {
  margin-top: auto;
}

.sec-ttl-wrap .ttl {
  font-size: 3rem;
  letter-spacing: 0.12em;
  color: var(--c_primary);
}
@media all and (max-width: 1023px) {
  .sec-ttl-wrap .ttl {
    font-size: 2rem;
  }
}
.sec-ttl-wrap .ttl.flex-col {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.sec-ttl-wrap .ttl.mid {
  font-size: 2.5rem;
}
@media all and (max-width: 1023px) {
  .sec-ttl-wrap .ttl.mid {
    font-size: 2rem;
  }
}
.sec-ttl-wrap .ttl.min {
  font-size: 1.9rem;
}
.sec-ttl-wrap .ttl.writing-mode-v-rl {
  writing-mode: vertical-rl;
}
@media all and (max-width: 1023px) {
  .sec-ttl-wrap .ttl.writing-mode-v-rl {
    writing-mode: unset;
  }
}
.sec-ttl-wrap .ttl.ff-libre {
  font-family: var(--f_libreFranklin);
  font-size: 5.6rem;
}
@media all and (max-width: 1023px) {
  .sec-ttl-wrap .ttl.ff-libre {
    font-size: 2rem;
  }
}
@media all and (max-width: 1023px) {
  .sec-ttl-wrap .ttl.sp-min, .sec-ttl-wrap .ttl .sp-min {
    font-size: 1.6rem;
  }
}

.txt-wrap {
  margin-top: 1em;
}
.txt-wrap:first-child {
  margin-top: auto;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.8rem;
  margin-top: 8rem;
}
.pager .page-numbers {
  width: 3.3rem;
  height: 3.3rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  background: var(--bg_base);
  border-radius: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
@media all and (min-width: 1024px) {
  .pager .page-numbers {
    transition: all 0.3s;
  }
  .pager .page-numbers:hover {
    color: var(--c_white);
    background: var(--c_primary);
  }
  .pager .page-numbers:hover.prev, .pager .page-numbers:hover.next {
    color: var(--c_primary);
  }
}
.pager .page-numbers.prev, .pager .page-numbers.next {
  color: var(--bdr_gray);
  background: none;
}
.pager .page-numbers.current {
  color: var(--c_white);
  background: var(--c_primary);
}

.flex-col2 {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.flex-col3 {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
}
@media all and (max-width: 1023px) {
  .flex-col3 {
    justify-content: center;
  }
}

.label-block {
  padding: 1em;
}

.fill-ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.fill-ttl * {
  padding: 0.5em 1em;
}

.fill-link, .information-link-wrap ul li a {
  font-weight: 200;
  display: block;
  margin-top: 5rem;
  padding: 1em 3em 1em 1em;
  position: relative;
}
@media all and (min-width: 1024px) {
  .fill-link, .information-link-wrap ul li a {
    transition: all 0.3s;
  }
  .fill-link:hover, .information-link-wrap ul li a:hover {
    opacity: 0.5;
  }
}
@media all and (max-width: 1023px) {
  .fill-link, .information-link-wrap ul li a {
    margin-top: 1em;
  }
}
.fill-link::before, .information-link-wrap ul li a::before {
  content: "→";
  font-size: 1.5em;
  color: var(--bdr_gray_pale);
  position: absolute;
  top: 50%;
  right: 1em;
  translate: 0 -50%;
}

/**/
.txt-c-txt {
  color: var(--c_txt);
}

.txt-c-primary {
  color: var(--c_primary);
}

.txt-c-white {
  color: var(--c_white);
}

.txt-c-require {
  color: var(--c_required);
}

.bg-primary {
  background: var(--c_primary);
}
.bg-primary * {
  color: var(--c_white);
}

.bg-base {
  background: var(--bg_base);
}

.bg-white {
  background: var(--c_white);
}

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

@media all and (min-width: 1024px) {
  .pc-hide {
    display: none;
  }
}

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

.word-break span {
  display: inline-block;
}

.post-style .post-ttl {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--c_primary);
  margin-top: 3em;
}
@media all and (max-width: 1023px) {
  .post-style .post-ttl {
    font-size: 2rem;
  }
}
.post-style .post-ttl:first-child {
  margin-top: auto;
}
.post-style .post-ttl + * {
  margin-top: 1em;
}
.post-style .block-ttl {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c_primary);
  margin-top: 3em;
}
@media all and (max-width: 1023px) {
  .post-style .block-ttl {
    font-size: 1.6rem;
  }
}
.post-style .block-ttl:first-child {
  margin-top: auto;
}
.post-style .block-ttl + * {
  margin-top: 1em;
}
.post-style p {
  margin-top: 1em;
}
.post-style p:first-child {
  margin-top: auto;
}
.post-style a {
  text-decoration: underline;
  color: #920000;
  display: inline-block;
}
@media all and (min-width: 1024px) {
  .post-style a {
    transition: all 0.3s;
  }
  .post-style a:hover {
    opacity: 0.5;
  }
}
.post-style a:visited {
  color: var(--c_accent);
}
.post-style .img-wrap {
  background: var(--bg_base);
  margin: 1em auto 0;
}
.post-style .img-wrap:first-child {
  margin-top: auto;
}
.post-style .img-wrap.img-wide {
  width: 100%;
  padding: 1em;
}
.post-style .img-wrap.img-wide img {
  width: auto;
  margin: auto;
}
.post-style strong {
  font-weight: 700;
}
.post-style em {
  font-style: italic;
}
.post-style ul {
  margin-top: 1em;
}
.post-style ul:first-child {
  margin-top: auto;
}
.post-style ul li + li {
  margin-top: 0.5em;
}
.post-style ul > li {
  padding-left: 1em;
  position: relative;
}
.post-style ul > li::before {
  content: "●";
  font-size: 0.5em;
  position: absolute;
  top: 1.5em;
  left: 0;
  translate: 0 -50%;
  color: var(--c_primary);
}
.post-style ul > li > ul > li {
  position: relative;
}
.post-style ul > li > ul > li::before {
  content: "◯";
  font-size: 0.5em;
  position: absolute;
  top: 1.5em;
  left: 0;
  translate: 0 -50%;
  color: var(--c_primary);
}
.post-style ul > li > ul > li > ul > li {
  position: relative;
}
.post-style ul > li > ul > li > ul > li::before {
  content: "・";
  font-size: 1em;
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0 -50%;
  color: var(--c_primary);
}
.post-style ol {
  counter-reset: number 0;
  margin-top: 1em;
}
.post-style ol:first-child {
  margin-top: auto;
}
.post-style ol li + li {
  margin-top: 0.5em;
}
.post-style ol > li {
  padding-left: 1.75em;
  position: relative;
  counter-increment: number 1;
}
.post-style ol > li::before {
  content: counter(number) ".";
  font-size: 1em;
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0 -50%;
  color: var(--c_primary);
}

/* base style end */
.js-anime-parent .js-anime-obj {
  transform-origin: 50% 100%;
  translate: 0 2.5rem;
  opacity: 0;
  transition: all 1s ease-out;
}
.js-anime-parent .js-anime-obj.action {
  translate: 0 0;
  opacity: 1;
}
/*# sourceMappingURL=maps/common.css.map */
