@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --screen-height:100vh;
  --screen-width:0;
}

@counter-style middle-dot {
  system: cyclic;
  symbols: ・;
  suffix: " ";
  fallback: disc;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*********************************************************************
 * Hover Scale系.
 *********************************************************************/
@keyframes hover-scale {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.15, 1.15) translate(0, 0);
  }
  30% {
    transform: scale(0.95, 0.95) translate(0, 0);
  }
}
@keyframes hover-scale-small {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.01, 1.01) translate(0, 0);
  }
  30% {
    transform: scale(0.99, 0.99) translate(0, 0);
  }
}
@keyframes pin-fall {
  0% {
    opacity: 0;
    transform: translateY(-40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes shadow-fall {
  0% {
    opacity: 0;
    transform: translateY(-15%) translateX(40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-5%) translateX(15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-3%) translateX(7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
}
/*********************************************************************
 * Bounce系.
 *********************************************************************/
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(30%) scale(1.1, 0.9);
  }
  45% {
    opacity: 1;
    transform: translateY(-5%);
  }
  70% {
    opacity: 1;
    transform: translateY(5%) scale(1.05, 0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1, 1);
  }
}
@keyframes bounce-shadow {
  0% {
    transform: translateX(0%) translateY(0%);
  }
  40% {
    transform: translateX(20%) translateY(-10%);
  }
  70% {
    transform: translateX(0%) translateY(0%);
  }
  80% {
    transform: translateX(0%) translateY(0%);
  }
  100% {
    transform: translateX(0%) translateY(0);
  }
}
@keyframes bounce-cloud {
  0% {
    transform: translateX(50%) scale(1.05);
  }
  50% {
    transform: translateX(50%) scale(1);
  }
  100% {
    transform: translateX(50%) scale(1.05);
  }
}
@keyframes bounce-char {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(5%) scale(1.1, 1);
    opacity: 1;
  }
  50% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes op-button-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1.1, 1.1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale {
  0% {
    transform: translateY(50px) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10px) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale-sp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-loop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  45% {
    transform: translateX(16px);
    opacity: 0;
  }
  46% {
    transform: translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrow-loop-vertical {
  0% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
  45% {
    transform: rotate(90deg) translateX(16px);
    opacity: 0;
  }
  46% {
    transform: rotate(90deg) translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
}
@keyframes raise-character {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes raise-character-svg {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ----------------------------------------------------------------------------------------

	reset

---------------------------------------------------------------------------------------- */
/* --------------------------------------------------
 Normailze styles
 Adapted from Normalize.css http://github.com/necolas/
--------------------------------------------------- */
article, aside, details, figcaption, figure, footer,
header, hgroup, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

html.no-cssanimations audio, html.no-cssanimations canvas, html.no-cssanimations video {
  display: inline;
  zoom: 1;
}

audio:not([controls]) {
  display: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:hover, a:active {
  outline: 0;
}

pre, code, kbd, samp {
  font-family: monospace, serif;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  /*max-width: 100%;*/
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
  font-family: inherit;
}

caption, th, td {
  text-align: left;
}

button, input, select, textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
}

button, input {
  line-height: normal;
}

html.no-postmessage button, html.no-postmessage input {
  overflow: visible;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button {
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  line-height: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

::-webkit-input-placeholder {
  color: #222;
  opacity: 1;
}

*::-moz-placeholder {
  color: #222;
  opacity: 1;
}

:placeholder-shown {
  color: #222;
  opacity: 1;
}

/* Resetting default margin and padding
-------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
object, iframe, pre, code, p, blockquote, form, fieldset, legend,
table, th, td, caption, tbody, tfoot, thead, figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1.2;
}

ul {
  list-style: none;
  list-style-image: none;
}

em {
  font-style: normal;
}

small {
  font-size: 100%;
}

label {
  cursor: pointer;
}

textarea {
  overflow: auto;
}

legend {
  display: none;
}

fieldset {
  border: none;
}

input, textarea, select, label {
  font-family: inherit;
}

object {
  vertical-align: middle;
  outline: none;
}

abbr, acronym {
  border: none;
  font-variant: normal;
}

address, caption, cite, code, dfn, var {
  font-weight: normal;
  font-style: normal;
}

hr {
  display: none;
}

html.no-postmessage body, html.no-postmessage br {
  letter-spacing: 0;
}

html.no-postmessage div {
  zoom: 1;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
}
html {
  background-color: #F6F8F9;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2D3234;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body.loading {
  overflow: hidden;
}

h1, h2, h3 {
  font-feature-settings: "palt";
}

@media screen and (max-width: 743px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 744px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 743px) {
  img.svg {
    width: 100%;
  }
}

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

i.pdf {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #009AB6;
  mask: url("../img/common/pdf-icon.svg");
  flex-shrink: 0;
}

.mt56 {
  margin-top: 56px !important;
}
@media screen and (max-width: 743px) {
  .mt56 {
    margin-top: 32px;
  }
}

@media screen and (min-width: 744px) {
  .js-inview {
    transform: translateY(50px);
  }
}
.js-inview {
  opacity: 0;
}
.js-inview.is-inview {
  animation: inview-scale 1s forwards;
}
@media screen and (max-width: 743px) {
  .js-inview.is-inview {
    animation: inview-scale-sp 0.5s forwards;
  }
}
.js-inview.is-inview {
  animation-delay: var(--delay);
}

a.blank {
  position: relative;
}
a.blank span {
  word-break: break-all;
  transition: color 0.3s;
}
a.blank:hover {
  text-decoration: none;
}
a.blank span::after {
  content: "";
  display: inline-block;
  width: calc(1em + 4px);
  height: calc(1em + 4px);
  background-color: #F6F8F9;
  mask: url("../img/common/open_in_new.svg") no-repeat center/contain;
  vertical-align: sub;
  margin-left: 0.2rem;
  transition: background-color 0.3s;
  transform: translateY(-1px);
}
a.blank span:hover {
  color: #009AB6;
}
a.blank span:hover::after {
  background-color: #009AB6;
}
a.blank span.green span::after {
  background-color: #009AB6;
}
a.blank span.green:hover span::after {
  background-color: #0AAFD4;
}
a.blank.green {
  color: #009AB6;
}
a.blank.green span::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #009AB6;
  mask: url("../img/common/open_in_new.svg") no-repeat center/contain;
  vertical-align: sub;
  margin-left: 0.1rem;
}
a.blank.v-middle span::after {
  vertical-align: bottom;
}

p.category {
  display: inline-block;
  background-color: #009AB6;
  padding: 6px 12px;
  border-radius: 20px;
  margin-top: 1rem;
  line-height: 1;
  margin-right: auto;
}
@media screen and (max-width: 743px) {
  p.category {
    padding: 6px 8px;
  }
}
p.category span {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 743px) {
  p.category span {
    font-size: 10px;
  }
}

.btn {
  display: inline-block;
  position: relative;
  border-radius: 12px;
  color: white;
  box-sizing: border-box;
  transition: background-color 0.3s;
}
@media screen and (max-width: 743px) {
  .btn.tight-radius {
    border-radius: 8px;
  }
}
.btn.rounded {
  border-radius: 32px;
}
.btn.edge {
  border-radius: 4px;
}
.btn a {
  padding: 12px 14px;
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 130%;
  box-sizing: border-box;
  font-weight: bold;
  transition: color 0.3s;
}
.btn a::after {
  transition: background-color 0.3s;
}
@media screen and (max-width: 743px) {
  .btn a {
    font-size: 0.625rem;
    padding: 1.125rem 0.75rem;
  }
}
.btn.arrow-border a::after {
  content: "";
  background-image: url("../img/common/arrow-border.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  margin-left: 1.5rem;
}
.btn.arrow a::after {
  content: "";
  display: block;
  mask: url("../img/common/arrow3.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 20px;
  height: 20px;
  background-color: black;
  position: absolute;
  right: 1.5rem;
  bottom: 50%;
  transform: translateY(50%);
}
.btn.arrow.left a::after {
  right: auto;
  left: 31px;
  transform: rotate(180deg) !important;
  bottom: 32% !important;
}
.btn.arrow1 a::after {
  content: "";
  mask: url("../img/common/arrow1.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 12px;
  height: 8px;
  background-color: black;
  margin-left: 2.05rem;
}
.btn.arrow2 a::after {
  content: "";
  mask: url("../img/common/arrow2.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 20px;
  height: 20px;
  background-color: black;
  margin-left: 2.05rem;
}
.btn.arrow2.left a::after {
  right: auto;
  left: 0rem;
  transform: rotate(180deg) !important;
  bottom: 31% !important;
}
.btn.document-icon a::after {
  content: "";
  mask: url("../img/common/document-icon.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 40px;
  height: 40px;
  background-color: black;
}
@media screen and (max-width: 743px) {
  .btn.document-icon a::after {
    mask: url("../img/common/document-icon.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    width: 32px;
    height: 32px;
    background-color: black;
  }
}
.btn.document-icon a::after {
  margin-left: 0.5rem;
}
.btn.contact-icon a::after {
  content: "";
  mask: url("../img/common/contact-icon.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 40px;
  height: 40px;
  background-color: black;
}
@media screen and (max-width: 743px) {
  .btn.contact-icon a::after {
    mask: url("../img/common/contact-icon.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    width: 32px;
    height: 32px;
    background-color: black;
  }
}
.btn.contact-icon a::after {
  margin-left: 0.5rem;
}
.btn.green {
  background-color: #009AB6;
}
.btn.green a {
  color: white;
}
.btn.green a::after {
  background-color: #F6F8F9;
}
.btn.green:hover {
  background-color: #0AAFD4;
}
.btn.green-ol {
  background-color: white;
  border: 2px solid #009AB6;
}
.btn.green-ol a {
  color: #009AB6;
}
.btn.green-ol a::after {
  background-color: #009AB6;
}
.btn.green-ol:hover {
  background-color: #009AB6;
}
.btn.green-ol:hover a {
  color: white;
}
.btn.green-ol:hover a::after {
  background-color: #F6F8F9;
}
.btn.black {
  background-color: #2D3234;
  border: 1px solid transparent;
}
.btn.black:hover {
  background-color: #fff;
  border: 1px solid #2D3234;
}
.btn.black:hover a {
  color: #2D3234;
}
.btn.black-ol {
  background-color: white;
  border: 1px solid #333333;
}
.btn.black-ol a {
  color: #333333;
}
.btn.black-ol a::after {
  background-color: black;
}
.btn.black-ol:hover {
  background-color: #333333;
}
.btn.black-ol:hover a {
  color: #fff;
}
.btn.black-ol:hover a::after {
  background-color: #F6F8F9;
}
.btn.transparent-white {
  border: 2px solid #F6F8F9;
}
.btn.white {
  background-color: #F6F8F9;
}
.btn.white a {
  color: #03868E;
  font-weight: bold;
}
.btn.disabled {
  pointer-events: none;
  background-color: #bfbfbf;
}
.btn.disabled a {
  color: #333;
}
.btn.disabled a::after {
  background-color: black;
}

a.header-btn-large {
  background-color: white;
  width: 480px;
  height: 172px;
  text-decoration: none;
  color: #2D3234;
  display: flex;
  border: 3px solid #009AB6;
  border-radius: 1rem;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
@media screen and (max-width: 743px) {
  a.header-btn-large {
    border-radius: 0.5rem;
    width: 100%;
    height: 120px;
    border-width: 2px;
  }
}
a.header-btn-large:hover {
  border-color: #0AAFD4;
}
a.header-btn-large:hover figure.arrow {
  background-color: #0AAFD4;
}
a.header-btn-large:hover figure.thumbnail img {
  transform: scale(1.1);
}
a.header-btn-large figure.thumbnail {
  flex-shrink: 0;
  width: 176px;
  overflow: hidden;
}
@media screen and (max-width: 743px) {
  a.header-btn-large figure.thumbnail {
    width: 32vw;
  }
}
a.header-btn-large figure.thumbnail img {
  width: 100%;
  transition: transform 0.3s;
}
a.header-btn-large .detail {
  flex-grow: 1;
  position: relative;
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 743px) {
  a.header-btn-large .detail {
    margin-left: 0.75rem;
    line-height: 100%;
  }
}
a.header-btn-large .detail p.subtitle span {
  font-size: 0.75rem;
  color: #009AB6;
  font-weight: bold;
}
@media screen and (max-width: 743px) {
  a.header-btn-large .detail p.subtitle span {
    font-size: 10px;
  }
}
@media screen and (max-width: 743px) {
  a.header-btn-large .detail p.title {
    margin-top: 5px;
  }
}
a.header-btn-large .detail p.title span {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 743px) {
  a.header-btn-large .detail p.title span {
    font-size: 1rem;
  }
}
a.header-btn-large .detail p.note {
  margin-top: 24px;
  line-height: 1.1rem;
  padding-right: 1rem;
}
@media screen and (max-width: 743px) {
  a.header-btn-large .detail p.note {
    margin-top: 11px;
    line-height: 12px;
  }
}
a.header-btn-large .detail p.note.all {
  margin-top: 8px;
}
@media screen and (max-width: 743px) {
  a.header-btn-large .detail p.note.all {
    margin-top: 6px;
  }
}
a.header-btn-large .detail p.note span {
  font-size: 0.75rem;
}
@media screen and (max-width: 743px) {
  a.header-btn-large .detail p.note span {
    font-size: 10px;
  }
}

a figure.arrow {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  position: absolute;
  right: 8px;
  bottom: 8px;
  background-color: #009AB6;
  transition: background-color 0.3s;
}
@media screen and (max-width: 743px) {
  a figure.arrow {
    right: 4px;
    bottom: 4px;
  }
}
a figure.arrow i {
  background-image: url("../img/common/arrow3.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  position: absolute;
  top: 4px;
  left: 4px;
}
a:hover figure.arrow i {
  animation: arrow-loop 0.4s ease forwards;
}
a:hover figure.arrow.vertical i {
  animation: arrow-loop-vertical 0.4s ease forwards;
}

.list-box {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 743px) {
  .list-box {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 744px) {
  .list-box.horizontal ul {
    grid-template-columns: 1fr;
  }
  .list-box.horizontal ul li a {
    display: grid;
    grid-template-rows: auto auto auto;
    grid-template-columns: 220px auto;
    justify-items: start;
    align-items: start;
    column-gap: 1rem;
  }
  .list-box.horizontal ul li a figure {
    grid-row: 1/4;
    grid-column: 1;
  }
  .list-box.horizontal ul li a p.category {
    grid-row: 1;
    grid-column: 2;
    margin-top: 0;
  }
  .list-box.horizontal ul li a p.title {
    grid-row: 2;
    grid-column: 2;
  }
  .list-box.horizontal ul li a .list-foot {
    grid-row: 3;
    grid-column: 2;
    width: 100%;
  }
}
.list-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 743px) {
  .list-box ul {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 1rem;
  }
}
.list-box ul:has(li.preparation) {
  grid-template-columns: 1fr;
}
.list-box ul li {
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 743px) {
  .list-box ul li {
    border-radius: 0.75rem;
  }
}
.list-box ul li.preparation {
  background-color: transparent;
  margin-top: 52px;
}
.list-box ul li a {
  box-sizing: border-box;
  padding: 1.5rem;
  display: block;
  text-decoration: none;
  color: #2D3234;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 743px) {
  .list-box ul li a {
    padding: 1rem;
  }
}
.list-box ul li a:hover figure img {
  transform: scale(1.1);
}
.list-box ul li a:hover p.title span {
  color: #009AB6;
}
.list-box ul li a figure {
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
}
@media screen and (max-width: 743px) {
  .list-box ul li a figure {
    border-radius: 0.5rem;
  }
}
.list-box ul li a figure img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 389/247;
  transition: transform 0.5s cubic-bezier(0.32, 1.01, 0.26, 0.93);
}
.list-box ul li a p.title {
  margin-top: 0.75rem;
  line-height: 150%;
}
@media screen and (max-width: 743px) {
  .list-box ul li a p.title {
    margin-top: 0.5rem;
  }
}
.list-box ul li a p.title span {
  font-size: 1.125rem;
  font-weight: bold;
  transition: color 0.3s cubic-bezier(0.32, 1.01, 0.26, 0.93);
}
@media screen and (max-width: 743px) {
  .list-box ul li a p.title span {
    font-size: 1rem;
  }
}
.list-box ul li a .list-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  margin-top: auto;
}
@media screen and (max-width: 743px) {
  .list-box ul li a .list-foot {
    padding-top: 1rem;
  }
}
.list-box ul li a .list-foot .tag {
  font-size: 12px;
  border-bottom: 1px solid #2D3234;
}
.list-box ul li a .list-foot .date {
  font-size: 14px;
}
@media screen and (max-width: 743px) {
  .list-box ul li a .list-foot .date {
    font-size: 12px;
  }
}

/************************************************
 * 共通スタイル.
 ************************************************/
a#page-top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  width: 96px;
  height: 96px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
@media screen and (max-width: 743px) {
  a#page-top-button {
    width: 68px;
    height: 68px;
    right: 8px;
    bottom: 8px;
  }
}
a#page-top-button:hover {
  transform: scale(1.1);
}
a#page-top-button.active {
  opacity: 1;
  pointer-events: auto;
}
a#page-top-button img {
  width: 100%;
}

body.home div#wrapper {
  padding-top: 0;
}

div#wrapper {
  position: relative;
  width: 100%;
  min-width: 1280px;
  overflow: hidden;
}
@media screen and (min-width: 744px) {
  div#wrapper {
    padding-top: 112px;
  }
}
@media screen and (max-width: 743px) {
  div#wrapper {
    min-width: 100%;
  }
}
div#wrapper .narrow {
  width: 760px;
  margin: 0 auto;
  padding-top: 80px;
}
@media screen and (max-width: 743px) {
  div#wrapper .narrow {
    width: 91.4666vw;
    padding-top: 60px;
  }
}
div#wrapper .static {
  width: 960px;
  margin: 0 auto;
  padding-top: 80px;
}
@media screen and (max-width: 743px) {
  div#wrapper .static {
    width: 91.4666vw;
    padding-top: 64px;
  }
}
div#wrapper .medium {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
div#wrapper h1, div#wrapper h2 {
  position: relative;
  font-size: 2.5rem;
  font-weight: bold;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
div#wrapper h1.center, div#wrapper h2.center {
  justify-content: center;
}
@media screen and (min-width: 744px) {
  div#wrapper h1.center-pc, div#wrapper h2.center-pc {
    justify-content: center;
  }
}
div#wrapper h1 span.icon, div#wrapper h2 span.icon {
  position: absolute;
  right: 1rem;
  width: 120px;
}
@media screen and (min-width: 744px) {
  div#wrapper h1 span.icon.large, div#wrapper h2 span.icon.large {
    width: 160px;
  }
}
div#wrapper h1 span.icon img, div#wrapper h2 span.icon img {
  width: 100%;
}
@media screen and (min-width: 744px) {
  div#wrapper h1 span.icon.form-complete, div#wrapper h2 span.icon.form-complete {
    right: 9.75rem;
  }
}
@media screen and (max-width: 743px) {
  div#wrapper h1, div#wrapper h2 {
    font-size: 24px;
    line-height: 130%;
  }
  div#wrapper h1 span.icon, div#wrapper h2 span.icon {
    right: 0;
    width: 80px;
    bottom: 50%;
    transform: translateY(50%);
  }
}

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