@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

:root {
  --clr-txt_base: #323232;
  --clr-txt_primary: #263b74;
  --clr-bg_box_ir: #f1f7ff;
  --clr-bg_box_cc: #fee6c0;
  --clr-bg_button: #2355d3;
  --clr-bg_footer: #062c87;
  --clr-bg_list-dot: #7dadfd;
  --clr-bg_label: #7aacfd;
  --clr-bg_event-head: #e4eeff;
  --clr-bg_table-wrap: #e4eeff;
  --clr-bg_table-head: #a1c5fe;
  --clr-bg_table-index: #fafcff;
  --clr-bg_dataBlock_opt: #dae9ff;
  --clr-bg_news-link: #e4eeff;
  --clr-grad_navarea: #c2defe;
  --clr-grad_salesData01: #90b9fd;
  --clr-grad_salesData02: #699bfd;
  --clr-grad_ir01: #a4c7fe;
  --clr-grad_ir02: #8bb3fe;
  --clr-grad_cc01: #fece81;
  --clr-grad_cc02: #feb656;
  --clr-grad_cs01: #ffb600;
  --clr-grad_cs02: #ff8203;
}

body {
  color: var(--clr-txt_base);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
p {
  margin-top: 0;
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

ul,
ol {
  padding-left: 0;
}

li {
  list-style: none;
}

figure {
  margin: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

br.forPC {
  display: none;
}
@media (min-width: 798px) {
  br.forPC {
    display: inherit;
  }
}
@media (min-width: 798px) {
  br.forSP {
    display: none;
  }
}

:root {
  --clr-graphnote01_1: #b9d21e;
  --clr-graphnote01_2: #7ed55a;
  --clr-graphnote01_3: #05aee1;
  --clr-graphnote01_4: #0668d3;
  --clr-graphnote01_5: #8236b5;
  --clr-graphnote01_6: #02a6ad;
  --clr-graphnote01_7: #12355d;
  --clr-graphnote02_1: #05aee1;
  --clr-graphnote02_2: #7ed55a;
}

/**
ヘッダー
**/
.header {
  height: 63px;
  padding-top: 15px;
  padding-left: 20px;
  margin-bottom: 15px;
}
@media (min-width: 798px) {
  .header {
    height: 110px;
    padding-top: 35px;
    padding-left: 60px;
    margin-bottom: 60px;
  }
}
.header__logo {
  width: 132px;
}
@media (min-width: 798px) {
  .header__logo {
    width: 198px;
  }
}
.header__link {
  display: grid;
  place-content: center;
  height: 100%;
  font-size: 0.69375rem;
  color: var(--clr-txt_primary);
  line-height: 1.4373873874;
}
@media (min-width: 798px) {
  .header__link {
    font-size: 1rem;
    line-height: 1.4375;
  }
  .header__link:hover {
    opacity: 0.6;
  }
}
.header__link__wrapper {
  width: 135px;
  height: 60px;
  background-color: #fff;
  -webkit-clip-path: url(#clipShape);
          clip-path: url(#clipShape);
}
@media (min-width: 798px) {
  .header__link__wrapper {
    width: 229px;
    height: 111px;
  }
}
.header__link__wrapper__shadow {
  position: absolute;
  top: 0;
  right: 0;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
@media (min-width: 798px) {
  .header__link__wrapper__shadow {
    right: 25px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
  }
}
.header__link__inner::after {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 5px;
  background: url(../img/06/icn_blank.png) no-repeat center/contain;
  content: "";
}
@media (min-width: 798px) {
  .header__link__inner::after {
    width: 14px;
    height: 14px;
  }
}

/**
メインビジュアル
**/
.mv {
  position: relative;
  background: url(../img/06/bg_mv_sp.jpg) no-repeat center/cover;
  overflow: hidden;
}
@media (min-width: 798px) {
  .mv {
    padding-bottom: 56px;
    background-image: url(../img/06/bg_mv_pc.jpg);
  }
}
@media (min-width: 798px) {
  .mv__content {
    display: flex;
    align-items: center;
    width: min(100%, 1240px);
    margin: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.mv__text__wrapper {
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 25px;
}
@media (min-width: 798px) {
  .mv__text__wrapper {
    width: 44%;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 0;
  }
}
.mv__copy {
  position: relative;
  margin-bottom: 10px;
  color: var(--clr-txt_primary);
  font-feature-settings: "palt";
  font-size: min(6.8vw, 1.3125rem);
  line-height: 1.380952381;
}
@media (min-width: 798px) {
  .mv__copy {
    margin-bottom: 30px;
    font-size: min(3.8vw, 2.375rem);
    line-height: 1.5;
    white-space: nowrap;
  }
}
.mv__copy__block {
  display: block;
  margin-bottom: 0.25em;
}
@media (min-width: 798px) {
  .mv__copy__block {
    margin-bottom: 0.5em;
  }
}
.mv__title {
  font-size: 1.25rem;
  font-weight: 400;
}
@media (min-width: 798px) {
  .mv__title {
    margin-bottom: 5px;
    font-size: 1.875rem;
  }
}
.mv__subtitle {
  font-size: 0.9375rem;
  font-weight: 500;
}
@media (min-width: 798px) {
  .mv__subtitle {
    margin-bottom: 3px;
    font-size: 1.375rem;
  }
}
.mv__period {
  margin-left: -0.5em;
  font-size: 0.75rem;
}
@media (min-width: 798px) {
  .mv__period {
    font-size: 1.125rem;
  }
}
.mv__image {
  margin-right: -24px;
  margin-left: -24px;
}
@media (min-width: 798px) {
  .mv__image {
    margin-right: -22%;
  }
  .mv__image__wrapper {
    width: 56%;
  }
}

/**
営業実績
**/
.salesData {
  background: linear-gradient(45deg, var(--clr-grad_salesData01), var(--clr-grad_salesData02));
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 798px) {
  .salesData {
    width: min(100%, 1200px);
    margin: auto;
    border-radius: 16px;
  }
}
.salesData__wrapper--grad {
  padding: 30px 20px 20px;
  background: linear-gradient(180deg, var(--clr-grad_navarea), #fff);
}
@media (min-width: 798px) {
  .salesData__wrapper--grad {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.salesData__wrapper--notGrad {
  padding-right: 20px;
  padding-left: 20px;
  background: linear-gradient(180deg, #fff 50%, var(--clr-bg_table-wrap) 50%);
}
.salesData__block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 5px 25px;
  padding: 20px 0 20px 15px;
}
@media (min-width: 798px) {
  .salesData__block {
    grid-template-columns: auto;
    place-content: center;
    gap: 10px;
    padding: 0;
  }
}
.others .salesData__block {
  grid-template-columns: 1fr 1.5fr;
  gap: 5px 15px;
}
@media (min-width: 798px) {
  .others .salesData__block {
    grid-template-columns: auto auto;
  }
}
.salesData__block:nth-child(2) {
  background: linear-gradient(90deg, #fff 37.5%, transparent 37.5%) repeat-x center top/5px 2px, linear-gradient(90deg, #fff 37.5%, transparent 37.5%) repeat-x center bottom/5px 2px;
}
@media (min-width: 798px) {
  .salesData__block:nth-child(2) {
    background: linear-gradient(0deg, #fff 33.3%, transparent 33.3%) repeat-y right center/2px 6px, linear-gradient(0deg, #fff 33.3%, transparent 33.3%) repeat-y left center/2px 6px;
  }
}
.others .salesData__block:nth-child(2) {
  background: none;
}
.salesData__block__wrapper {
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 798px) {
  .salesData__block__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 30px 0;
  }
}
.salesData__block__wrapper.others {
  position: relative;
  background-color: #e9f1ff;
}
@media (min-width: 798px) {
  .salesData__block__wrapper.others {
    grid-template-columns: repeat(2, 1fr);
  }
}
.salesData__block__wrapper.others::after {
  position: absolute;
  top: 50%;
  width: calc(100% - 30px);
  height: 2px;
  background: linear-gradient(90deg, #1a90b9 37.5%, transparent 37.5%) repeat-x center top/5px 2px;
  content: "";
}
@media (min-width: 798px) {
  .salesData__block__wrapper.others::after {
    top: 30px;
    left: 50%;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(0deg, #223a6f 37.5%, transparent 37.5%) repeat-y left top/2px 6px;
  }
}
.salesData__title, .salesData__data, .salesData__caption {
  color: #fff;
}
@media (min-width: 798px) {
  .salesData__title, .salesData__data, .salesData__caption {
    line-height: 1;
  }
}
.others .salesData__title, .others .salesData__data, .others .salesData__caption {
  color: #446dd3;
}
.salesData__title {
  grid-column: 1/3;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 798px) {
  .salesData__title {
    grid-column: auto;
    width: auto;
    font-size: 1.5rem;
  }
}
@media (min-width: 798px) {
  .others .salesData__title {
    grid-column: 1/3;
  }
}
.salesData__title span {
  display: block;
  font-size: 0.75rem;
}
@media (min-width: 798px) {
  .salesData__title span {
    margin-bottom: 5px;
    font-size: 1.25rem;
  }
}
.salesData__data {
  font-size: 1.125rem;
  text-align: right;
  line-height: 1;
}
@media (min-width: 798px) {
  .salesData__data {
    display: flex;
    align-items: flex-end;
    gap: 0 5px;
    text-align: left;
    font-size: min(2.8vw, 2.25rem);
  }
}
.others .salesData__data {
  text-align: left;
}
.salesData__num {
  line-height: 1;
  font-size: 2.1875rem;
  font-weight: 300;
}
@media (min-width: 798px) {
  .salesData__num {
    font-size: min(4.9vw, 3.875rem);
  }
}
.salesData__caption {
  font-size: min(3.5vw, 0.875rem);
}
@media (min-width: 798px) {
  .salesData__caption {
    margin-top: 10px;
    font-size: min(1.75vw, 1.375rem);
  }
}
.others .salesData__caption {
  line-height: 1.3;
}
.others .salesData__caption span {
  font-size: 0.75rem;
  font-feature-settings: "palt";
}
@media (min-width: 798px) {
  .others .salesData__caption span {
    font-size: 1.125rem;
  }
}

/**
ページ内ナビ
**/
.nav {
  display: grid;
  gap: 9px;
  padding-top: 20px;
  border-top: 2px dotted #b2b2b2;
}
@media (min-width: 798px) {
  .nav {
    gap: 20px 18px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-auto-rows: minmax(155px, auto);
    width: min(100%, 1200px);
    margin: auto;
    border-top: none;
  }
}
.nav__wrapper {
  padding-right: 20px;
  padding-bottom: 70px;
  padding-left: 20px;
}
@media (min-width: 798px) {
  .nav__wrapper {
    padding-bottom: 120px;
  }
}
.nav__block {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.12);
}
@media (min-width: 798px) {
  .nav__block {
    display: grid;
    padding-top: 25px;
    padding-bottom: 25px;
    border-radius: 10px;
  }
}
.nav__block__title {
  padding-left: 15px;
  margin-bottom: 10px;
  color: rgba(38, 59, 116, 0.5);
  font-size: 0.875rem;
  font-weight: 700;
}
@media (min-width: 798px) {
  .nav__block__title {
    padding-left: 30px;
    font-size: 1.25rem;
  }
}
.nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 15px;
  padding-left: 15px;
  color: var(--clr-txt_primary);
  font-size: 0.9375rem;
  font-weight: 700;
}
@media (min-width: 798px) {
  .nav__link {
    padding-right: 20px;
    padding-left: 30px;
    font-size: 1.25rem;
  }
  .nav__link:hover {
    opacity: 0.6;
  }
}
.nav__link:not(:first-of-type) {
  margin-top: 13px;
}
@media (min-width: 798px) {
  .nav__link:not(:first-of-type) {
    margin-top: 10px;
  }
}
.nav__link--ir::after, .nav__link--cc::after {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
}
@media (min-width: 798px) {
  .nav__link--ir::after, .nav__link--cc::after {
    width: 30px;
    height: 30px;
  }
}
.nav__link--ir::after {
  background: url(../img/06/icn_nav_ir.png) no-repeat center/contain;
}
.nav__link--cc::after {
  background: url(../img/06/icn_nav_cc.png) no-repeat center/contain;
}

/**
セクション共通
**/
.section__title {
  padding: 60px 27px 135px;
}
@media (min-width: 798px) {
  .section__title {
    padding: 140px 20px 80px;
  }
}
@media (min-width: 798px) {
  .section__title__inner {
    width: min(100%, 1200px);
    margin: auto;
    padding-right: 35%;
  }
}
@media (min-width: 1200px) {
  .section__title__inner {
    padding-right: 0;
  }
}
.section__title--cc {
  background: linear-gradient(45deg, var(--clr-grad_cc01), var(--clr-grad_cc02));
}
.section__title--ir {
  background: linear-gradient(45deg, var(--clr-grad_ir01), var(--clr-grad_ir02));
}
.section__title--en, .section__title--ja {
  position: relative;
  z-index: 1;
  color: #fff;
}
.section__title--en {
  margin-bottom: 5px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
@media (min-width: 798px) {
  .section__title--en {
    font-size: 1.25rem;
  }
}
.section__title--ja {
  font-feature-settings: "palt";
  font-size: 2.1875rem;
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: 0.04em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (min-width: 798px) {
  .section__title--ja {
    font-size: 4.375rem;
  }
}

/**
トップメッセージ
**/
.message {
  margin-bottom: 65px;
}
@media (min-width: 798px) {
  .message {
    margin-bottom: 130px;
  }
  .message .section__title__inner {
    display: grid;
    justify-content: end;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .message .section__title__inner {
    padding-right: 70px;
  }
}
.message__inner {
  padding-right: 27px;
  padding-left: 27px;
}
@media (min-width: 798px) {
  .message__inner {
    position: relative;
    width: min(100%, 1240px);
    padding-top: 90px;
    padding-right: 20px;
    padding-left: 20px;
    margin: auto;
  }
}
@media (min-width: 1200px) {
  .message__inner {
    padding-top: 140px;
  }
}
.message__image {
  margin: -117px -7px 20px;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 798px) {
  .message__image {
    position: absolute;
    top: -257px;
    left: 20px;
    width: min(41%, 500px);
    margin: 0;
    border-radius: 8px;
  }
}
.message__title {
  margin-bottom: 7px;
  font-feature-settings: "palt";
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.44;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (min-width: 798px) {
  .message__title {
    margin-bottom: 15px;
    font-size: 3rem;
    line-height: 1.4583333333;
  }
}
.message__title span {
  display: inline-block;
}
.message__name {
  margin-bottom: 1em;
  color: var(--clr-txt_primary);
  font-size: 1.125rem;
  text-align: center;
}
@media (min-width: 798px) {
  .message__name {
    margin-bottom: 40px;
    font-size: 1.75rem;
  }
}
.message__text {
  font-feature-settings: "palt";
  font-size: 0.875rem;
  line-height: 1.7142857143;
  text-align: justify;
}
@media (min-width: 798px) {
  .message__text {
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.message__text + .message__text {
  margin-top: 1em;
}
.message__text.align-right {
  text-align: right;
}

/**
表組
**/
.table {
  width: 100%;
  background: linear-gradient(45deg, #82b1fd, #689afd) no-repeat center top/100% 55px;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 798px) {
  .table {
    display: grid;
    background-size: 100% 110px;
    border-radius: 16px;
  }
  .table tbody,
  .table thead,
  .table tr {
    display: contents;
  }
  .table th,
  .table td {
    display: grid;
    place-content: center;
  }
  .table th[rowspan="2"],
  .table td[rowspan="2"] {
    grid-row: auto/span 2;
  }
}
.table--scrollable {
  white-space: nowrap;
}
@media (min-width: 798px) {
  .table--scrollable {
    white-space: inherit;
  }
}
.table__scrollBlock {
  overflow-y: scroll;
  margin-right: -20px;
  padding-right: 20px;
}
@media (min-width: 798px) {
  .table__scrollBlock {
    overflow-y: visible;
    width: min(100%, 1200px);
    margin: auto;
    padding-right: 0;
  }
}
.table__head {
  height: 52px;
  padding: 12px;
  border: solid #fff;
  border-width: 0 0 0 1px;
  color: #fff;
  font-feature-settings: "palt";
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}
@media (min-width: 798px) {
  .table__head {
    height: auto;
    min-height: 82px;
    padding: 20px;
    font-size: 1.5rem;
  }
}
.table__head:first-child {
  border-width: 0;
}
.table__head--bold {
  font-weight: 700;
}
.table__head__wrapper + .table__data__wrapper .table__index {
  border-width: 0;
}
.table__head__wrapper + .table__data__wrapper .table__data {
  border-width: 0 0 0 1px;
}
.table__index {
  height: 52px;
  padding: 10px 13px 10px 15px;
  background-color: var(--clr-bg_table-index);
  border: solid var(--clr-txt_primary);
  border-width: 1px 0 0 0;
  color: var(--clr-txt_primary);
  font-feature-settings: "palt";
  font-size: 0.75rem;
  font-weight: 400;
  text-align: left;
}
@media (min-width: 798px) {
  .table__index {
    height: auto;
    padding: 20px;
    font-size: 1.5rem;
  }
}
.table__data {
  height: 52px;
  padding: 12px;
  background-color: #fff;
  border: solid var(--clr-txt_primary);
  border-width: 1px 0 0 1px;
  font-feature-settings: "palt";
  font-size: 0.75rem;
  text-align: right;
}
@media (min-width: 798px) {
  .table__data {
    height: auto;
    padding: 20px;
    font-size: 1.625rem;
  }
}
.table__data--bold {
  font-weight: 700;
}
.table__data--left {
  text-align: left;
}

/**
中期経営計画
**/
.plan {
  margin-bottom: 50px;
  overflow-x: hidden;
}
@media (min-width: 798px) {
  .plan {
    margin-bottom: 100px;
  }
}
.plan__inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 798px) {
  .plan__inner {
    position: relative;
    width: min(100%, 1240px);
    margin: auto;
    padding-top: 90px;
  }
}
.plan__image {
  margin-top: -110px;
  margin-bottom: 35px;
}
@media (min-width: 798px) {
  .plan__image {
    position: absolute;
    top: -253px;
    right: max(-8%, -103px);
    width: min(50%, 609px);
    margin-top: 0;
    margin-bottom: 0;
  }
}
.plan__block:not(:first-of-type) {
  padding-top: 35px;
  margin-top: 40px;
  border-top: 1px solid var(--clr-txt_primary);
}
@media (min-width: 798px) {
  .plan__block:not(:first-of-type) {
    padding-top: 65px;
    margin-top: 80px;
  }
}
.plan__block__inner {
  padding-right: 7px;
  padding-left: 7px;
}
@media (min-width: 798px) {
  .plan__block__inner {
    padding-right: 0;
    padding-left: 0;
  }
}
.plan__title {
  margin-bottom: 10px;
  color: #446dd3;
}
@media (min-width: 798px) {
  .plan__title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
.plan__title--lv3 {
  margin-bottom: 15px;
  color: #000;
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.04em;
}
@media (min-width: 798px) {
  .plan__title--lv3 {
    margin-bottom: 35px;
    font-size: 3rem;
    line-height: 1.4791666667;
  }
}
.plan__title--lv4 {
  margin-bottom: 10px;
  color: var(--clr-txt_primary);
  font-feature-settings: "palt";
  font-size: min(5.5vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.4761904762;
  text-align: justify;
}
@media (min-width: 798px) {
  .plan__title--lv4 {
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 1.59375;
  }
}
.plan__title--lv5 {
  color: var(--clr-txt_primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7222222222;
}
@media (min-width: 798px) {
  .plan__title--lv5 {
    font-size: 1.5rem;
    line-height: 2.125;
  }
}
.plan__lead__section:not(:first-of-type) {
  margin-top: 15px;
}
@media (min-width: 798px) {
  .plan__lead__section:not(:first-of-type) {
    margin-top: 0;
  }
}
.plan__lead__section__wrapper {
  margin-top: 15px;
}
@media (min-width: 798px) {
  .plan__lead__section__wrapper {
    display: grid;
    grid-template: "sec2 graph" auto "sec3 graph" auto "sec3 graph" auto/1.35fr 1fr;
    gap: 30px 50px;
    margin-top: 30px;
  }
}
.plan__lead__section__02 {
  grid-area: sec2;
}
.plan__lead__section__03 {
  grid-area: sec3;
}
.plan__lead__graph {
  width: 275px;
  margin: 15px auto 0;
}
@media (min-width: 798px) {
  .plan__lead__graph {
    grid-area: graph;
    width: 100%;
    margin: 0;
  }
}
.plan__logo__flyon2026 {
  display: block;
  width: 273px;
}
@media (min-width: 798px) {
  .plan__logo__flyon2026 {
    width: 397px;
  }
}
.plan__tag {
  display: grid;
  place-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 25px;
  padding-right: 15px;
  padding-bottom: 1px;
  padding-left: 15px;
  margin-bottom: 9px;
  background-color: #456dd1;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  border-radius: 3px;
}
@media (min-width: 798px) {
  .plan__tag {
    height: 44px;
    padding-right: 24px;
    padding-bottom: 2px;
    padding-left: 24px;
    margin-bottom: 15px;
    font-size: 1.75rem;
    border-radius: 6px;
  }
}
.plan__tag__wrapper {
  display: flex;
  gap: 7px;
}
@media (min-width: 798px) {
  .plan__tag__wrapper {
    gap: 15px;
  }
}
.plan__text, .plan__listItem {
  font-feature-settings: "palt";
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
}
@media (min-width: 798px) {
  .plan__text, .plan__listItem {
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.plan__text {
  text-align: justify;
}
.plan__text:not(:last-of-type) {
  margin-bottom: 1em;
}
.plan__text strong {
  color: var(--clr-txt_primary);
  font-weight: 500;
}
@media (min-width: 798px) {
  .plan__text strong {
    font-size: 1.5rem;
  }
}
.plan__text + .plan__title--lv4 {
  margin-top: 1.5em;
}
.plan__listItem {
  position: relative;
  padding-left: 1em;
}
.plan__listItem::before {
  position: absolute;
  left: 0;
  display: block;
  content: "・";
}
.plan__dataBlocks {
  margin-top: 25px;
}
@media (min-width: 798px) {
  .plan__dataBlocks {
    margin-top: 45px;
  }
}
.plan__dataBlock {
  margin-bottom: 20px;
  padding: 30px 15px;
  background-color: var(--clr-bg_box_ir);
  border-radius: 8px;
}
@media (min-width: 798px) {
  .plan__dataBlock {
    margin-bottom: 40px;
    padding: 50px 50px 60px;
    border-radius: 16px;
  }
}
.plan__dataBlock__inner {
  padding-right: 10px;
  padding-left: 10px;
}
.plan__dataBlock__section:not(:last-of-type) {
  padding-bottom: 30px;
}
@media (min-width: 798px) {
  .plan__dataBlock__section:not(:last-of-type) {
    padding-bottom: 40px;
  }
}
.plan__dataBlock__section:not(:first-of-type) {
  padding-top: 30px;
  background: linear-gradient(90deg, #929db9 37.5%, transparent 37.5%) repeat-x center top/3px 1px;
}
@media (min-width: 798px) {
  .plan__dataBlock__section:not(:first-of-type) {
    padding-top: 40px;
  }
}
.plan__dataBlock__section .whiteBlock__wrapper {
  display: grid;
  gap: 15px;
  margin-top: 15px;
}
@media (min-width: 798px) {
  .plan__dataBlock__section .whiteBlock__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
  }
}
.plan__dataBlock__section .whiteBlock {
  padding: 30px 20px 20px;
  background-color: #fff;
  border-radius: 5px;
}
@media (min-width: 798px) {
  .plan__dataBlock__section .whiteBlock {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 15px;
    padding: 50px;
    border-radius: 10px;
  }
}
.plan__dataBlock__section .whiteBlock .logo {
  margin: 0 auto 15px;
}
@media (min-width: 798px) {
  .plan__dataBlock__section .whiteBlock .logo {
    align-self: center;
    margin-bottom: 0;
  }
}
.plan__dataBlock__section .whiteBlock .logo__vacan {
  width: 228px;
}
@media (min-width: 798px) {
  .plan__dataBlock__section .whiteBlock .logo__vacan {
    width: 330px;
  }
}
.plan__dataBlock__section .whiteBlock .logo__payke {
  width: 212px;
}
@media (min-width: 798px) {
  .plan__dataBlock__section .whiteBlock .logo__payke {
    width: 307px;
  }
}
.plan__dataBlock__section .whiteBlock p {
  font-feature-settings: "palt";
  font-size: 0.75rem;
  line-height: 1.6666666667;
}
@media (min-width: 798px) {
  .plan__dataBlock__section .whiteBlock p {
    font-size: 1rem;
    line-height: 1.875;
    letter-spacing: 0.02em;
  }
}
.plan__dataBlock__figure {
  margin-top: 15px;
}
@media (min-width: 798px) {
  .plan__dataBlock__figure {
    margin-top: 25px;
  }
}
.whiteBlock__wrapper .plan__dataBlock__figure {
  margin-top: 0;
}
.plan__dataBlock__figure__white {
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
}
@media (min-width: 798px) {
  .plan__dataBlock__figure__white {
    padding: 40px 30px 20px;
  }
}
.plan__table {
  table-layout: fixed;
  background: linear-gradient(90deg, #82b1fd, #689afd) no-repeat center;
}
@media (min-width: 798px) {
  .plan__table {
    table-layout: auto;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .plan__table__wrapper {
    overflow-x: auto;
  }
}
@media (min-width: 798px) {
  .plan__table tbody {
    display: grid;
    grid-template-columns: repeat(5, auto);
  }
}
.plan__table .table__head,
.plan__table .table__data {
  place-content: center;
  padding-left: 20px;
  text-align: left;
  border-width: 1px 0 0 0;
}
@media (min-width: 798px) {
  .plan__table .table__head,
  .plan__table .table__data {
    text-align: center;
    border-width: 0 0 0 1px;
  }
}
.plan__table .table__head {
  font-size: 0.875rem;
}
@media (min-width: 798px) {
  .plan__table .table__head {
    font-size: 1.5rem;
  }
}
.plan__table .table__data {
  font-size: 1rem;
}
@media (min-width: 798px) {
  .plan__table .table__data {
    font-size: 1.875rem;
  }
}
@media (min-width: 798px) {
  .plan__table .table__row {
    display: block;
  }
}
.plan__table .table__row:first-child .table__head,
.plan__table .table__row:first-child .table__data {
  border-width: 0;
}
.plan__caption {
  font-size: 0.6875rem;
}
@media (min-width: 798px) {
  .plan__caption {
    font-size: 0.875rem;
  }
  .plan__list + .plan__caption {
    margin-top: 1em;
  }
}
.plan__caption__block {
  display: block;
}

/**
中期経営計画 カードレイアウト
**/
.planCard {
  padding: 30px 24px 20px;
  background-color: #fff;
  border-radius: 8px;
}
.planCard__wrapper {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}
@media (min-width: 798px) {
  .planCard__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
  }
}
@media (min-width: 798px) {
  .planCard {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 10px;
    padding: 50px 36px 30px;
  }
  .planCard .plan__listItem {
    line-height: 1.6666666667;
  }
}
.planCard__image {
  margin: 0 auto 15px;
}
@media (min-width: 798px) {
  .planCard__image {
    align-self: center;
    margin-bottom: 5px;
  }
}
.planCard1 .planCard__image {
  width: 115px;
}
@media (min-width: 798px) {
  .planCard1 .planCard__image {
    width: 167px;
  }
}
.planCard2 .planCard__image {
  width: 99px;
}
@media (min-width: 798px) {
  .planCard2 .planCard__image {
    width: 143px;
  }
}
.planCard3 .planCard__image {
  width: 94px;
}
@media (min-width: 798px) {
  .planCard3 .planCard__image {
    width: 136px;
  }
}
.planCard__title {
  margin-bottom: 5px;
  font-weight: 500;
  text-align: center;
  color: var(--clr-txt_primary);
}
@media (min-width: 798px) {
  .planCard__title {
    margin-bottom: 0;
    align-self: center;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

/**
データ表示ブロック
**/
.dataBlock {
  padding: 30px;
  background-color: #fff;
  border-radius: 25px;
}
@media (min-width: 798px) {
  .dataBlock {
    padding: 55px min(10%, 48px);
  }
}
.dataBlock.notFill {
  align-self: start;
}
.dataBlock--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 798px) {
  .dataBlock--flex {
    gap: 12px 1%;
  }
}
.dataBlock__wrapper {
  display: grid;
  gap: 20px;
}
@media (min-width: 798px) {
  .dataBlock__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.dataBlock__title {
  margin-bottom: 15px;
  color: var(--clr-txt_primary);
  font-size: 1.125rem;
  font-feature-settings: "palt";
  font-weight: 400;
  line-height: 1.2222222222;
}
@media (min-width: 798px) {
  .dataBlock__title {
    margin-bottom: 20px;
    font-size: min(2.5vw, 2rem);
    line-height: 1.1875;
  }
}
.dataBlock--flex .dataBlock__title {
  width: 100%;
  margin-bottom: 0;
}
.dataBlock__data {
  color: var(--clr-txt_primary);
  font-size: 1.03125rem;
  line-height: 1;
  white-space: nowrap;
}
@media (min-width: 798px) {
  .dataBlock__data {
    font-size: min(2.3vw, 2rem);
  }
}
.dataBlock__num {
  font-family: "Inter", sans-serif;
  font-size: 2.0625rem;
  font-weight: 300;
}
@media (min-width: 798px) {
  .dataBlock__num {
    font-size: min(4.3vw, 3.75rem);
  }
}
.dataBlock__caption {
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  font-size: 0.6875rem;
  line-height: 1.5454545455;
  border-radius: 2px;
  white-space: nowrap;
}
@media (min-width: 798px) {
  .dataBlock__caption {
    padding: 10px;
    font-size: min(1.4vw, 1.25rem);
    line-height: 1.45;
    border-radius: 4px;
  }
}
.overview__system .dataBlock__caption {
  background-color: #2bcc55;
}
.overview__recurring .dataBlock__caption {
  background-color: #538ce9;
}
.dataBlock__caption .em {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
}
@media (min-width: 798px) {
  .dataBlock__caption .em {
    font-size: min(1.5vw, 1.5rem);
  }
}

/**
積み上げグラフ内訳
**/
.graphNotes {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 25px;
}
@media (min-width: 798px) {
  .graphNotes {
    padding: 30px 25px;
    border-radius: 30px;
  }
}
.graphNotes__wrapper {
  display: grid;
  gap: 10px;
}
@media (min-width: 798px) {
  .graphNotes__wrapper {
    gap: 12px;
    align-self: start;
  }
}
@media (min-width: 798px) {
  .graphNotes__wrapper--grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
.graphNotes__title {
  position: relative;
  margin-bottom: 7px;
  padding-bottom: 10px;
  font-feature-settings: "palt";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid #d3d3d3;
}
@media (min-width: 798px) {
  .graphNotes__title {
    font-size: 1.375rem;
  }
}
.graphNotes__title__01_1 {
  color: var(--clr-graphnote01_1);
}
.graphNotes__title__01_2 {
  color: var(--clr-graphnote01_2);
}
.graphNotes__title__01_3 {
  color: var(--clr-graphnote01_3);
}
.graphNotes__title__01_4 {
  color: var(--clr-graphnote01_4);
}
.graphNotes__title__01_5 {
  color: var(--clr-graphnote01_5);
}
.graphNotes__title__01_6 {
  color: var(--clr-graphnote01_6);
}
.graphNotes__title__01_7 {
  color: var(--clr-graphnote01_7);
}
.graphNotes__title__02_1 {
  color: var(--clr-graphnote02_1);
}
.graphNotes__title__02_2 {
  color: var(--clr-graphnote02_2);
}
.graphNotes__listItem, .graphNotes__sentence {
  font-size: 0.9375rem;
  line-height: 1.5333333333;
}
@media (min-width: 798px) {
  .graphNotes__listItem, .graphNotes__sentence {
    font-size: 1.1875rem;
    line-height: 1.6315789474;
  }
}

/**
ボタン
**/
.button {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 69px;
  padding: 15px 40px;
  background-color: var(--clr-bg_button);
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.375;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (min-width: 798px) {
  .button {
    width: min(100%, 600px);
    min-height: 110px;
    padding: 25px 60px;
    border-radius: 8px;
    font-size: 1.375rem;
    line-height: 1.3636363636;
    letter-spacing: 0.04em;
  }
  .button:hover {
    background-color: rgba(35, 85, 211, 0.6);
  }
}
.button::after {
  position: absolute;
  right: 30px;
  width: 7px;
  height: 10px;
  background: url(../img/06/icn_angle-right.svg) no-repeat right center/contain;
  content: "";
}
@media (min-width: 798px) {
  .button::after {
    right: 45px;
    width: 10px;
    height: 16px;
  }
}
.button__wrapper {
  display: grid;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 70px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 798px) {
  .button__wrapper {
    width: min(100%, 1200px);
    margin: 80px auto 140px;
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 798px) {
  .button__wrapper--single {
    place-items: center;
  }
}
@media (min-width: 798px) {
  .button__wrapper--double {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.button--prev, .button--next {
  border-radius: 6px;
}
@media (min-width: 798px) {
  .button--prev, .button--next {
    border-radius: 8px;
  }
}
.button--prev::after {
  right: auto;
  left: 30px;
  background: url(../img/06/icn_angle-left.svg) no-repeat left center/contain;
}
@media (min-width: 798px) {
  .button--prev::after {
    left: 45px;
  }
}
.button--disabled {
  background-color: rgba(35, 85, 211, 0.3);
  pointer-events: none;
}

/**
事業概況
**/
.overview {
  overflow-x: hidden;
}
.overview__inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 798px) {
  .overview__inner {
    position: relative;
    width: min(100%, 1240px);
    margin: auto;
    padding-top: 90px;
  }
}
.overview__image {
  width: min(100%, 350px);
  margin: -108px auto 35px;
}
@media (min-width: 798px) {
  .overview__image {
    position: absolute;
    top: -230px;
    right: max(-8%, -103px);
    width: min(50%, 609px);
    margin: 0;
  }
}
.overview__title {
  margin-bottom: 25px;
  color: #000;
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 798px) {
  .overview__title {
    margin-bottom: 50px;
    font-size: 3rem;
  }
}
.overview__title .sub {
  margin-top: 10px;
  font-size: 1.0625rem;
}
@media (min-width: 798px) {
  .overview__title .sub {
    font-size: 2rem;
  }
}
.overview__point {
  padding-right: 7px;
  padding-left: 7px;
}
@media (min-width: 798px) {
  .overview__point {
    padding-right: 0;
    padding-left: 0;
  }
}
.overview__salesData {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 798px) {
  .overview__salesData {
    height: 298px;
  }
}
.overview__salesData::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 50%;
  background-color: var(--clr-bg_table-wrap);
  border-radius: 0 80px 0 0;
  content: "";
}
@media (min-width: 798px) {
  .overview__salesData::after {
    height: 200px;
    border-radius: 0 200px 0 0;
  }
}
.overview__salesData .salesData {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}
@media (min-width: 798px) {
  .overview__salesData .salesData {
    position: absolute;
    left: 50%;
    width: min(100% - 40px, 1366px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    transform: translateX(-50%);
  }
}
.overview__salesData .salesData__block__wrapper {
  padding: 10px min(8vw, 30px);
}
@media (min-width: 798px) {
  .overview__salesData .salesData__block__wrapper {
    width: min(100%, 1150px);
    height: 298px;
    margin-right: auto;
    margin-left: auto;
    padding: 50px 15px;
  }
}
.overview__salesData .salesData__block {
  padding: 15px 0;
}
@media (min-width: 798px) {
  .overview__salesData .salesData__block {
    grid-template-columns: auto;
    gap: 15px;
    padding: 0 15px;
  }
}
.overview__salesData .salesData__block:nth-child(2) {
  background: linear-gradient(90deg, var(--clr-txt_base) 37.5%, transparent 37.5%) repeat-x center top/5px 2px, linear-gradient(90deg, var(--clr-txt_base) 37.5%, transparent 37.5%) repeat-x center bottom/5px 2px;
}
@media (min-width: 798px) {
  .overview__salesData .salesData__block:nth-child(2) {
    background: linear-gradient(0deg, var(--clr-txt_base) 33.3%, transparent 33.3%) repeat-y right center/2px 6px, linear-gradient(0deg, var(--clr-txt_base) 33.3%, transparent 33.3%) repeat-y left center/2px 6px;
  }
}
.overview__salesData .salesData__title, .overview__salesData .salesData__caption {
  color: var(--clr-txt_base);
}
.overview__salesData .salesData__data {
  color: var(--clr-txt_primary);
  font-size: min(4.5vw, 1.0625rem);
}
@media (min-width: 798px) {
  .overview__salesData .salesData__data {
    font-size: min(3vw, 2.25rem);
  }
}
.overview__salesData .salesData__num {
  font-size: min(8.5vw, 2rem);
}
@media (min-width: 798px) {
  .overview__salesData .salesData__num {
    font-size: min(5vw, 3.875rem);
  }
}
.overview__salesData .salesData__caption {
  font-size: min(3.2vw, 0.75rem);
}
@media (min-width: 798px) {
  .overview__salesData .salesData__caption {
    margin-top: 0;
    font-size: min(2vw, 1.375rem);
    line-height: 1.5454545455;
  }
}
.overview__graphArea {
  padding: 30px 20px 70px;
  background-color: var(--clr-bg_table-wrap);
  border-radius: 0 0 0 80px;
}
.overview__segment {
  padding-top: 55px;
  padding-bottom: 70px;
}
.overview__system {
  position: relative;
  padding-top: 55px;
  padding-bottom: 150px;
  background: linear-gradient(to bottom, transparent 80px, #e6f9eb 80px);
}
.overview__system::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 80px;
  background-color: #e6f9eb;
  border-radius: 0 80px 0 0;
  content: "";
}
.overview__recurring {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  padding-top: 55px;
  padding-bottom: 70px;
  background: linear-gradient(to bottom, transparent 80px, #bcd0f1 80px);
  border-radius: 0 0 0 80px;
}
.overview__recurring::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 80px;
  background-color: #bcd0f1;
  border-radius: 0 80px 0 0;
  content: "";
}

/**
連結業績のポイント
**/
.pointBlock {
  margin-bottom: 25px;
}
@media (min-width: 798px) {
  .pointBlock {
    margin-bottom: 45px;
  }
}
@media (min-width: 798px) {
  .pointBlock__title__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.pointBlock__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 122px;
  height: 35px;
  margin-bottom: 15px;
  padding-right: 14px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.84375rem;
  background-color: var(--clr-bg_label);
  line-height: 1;
}
@media (min-width: 798px) {
  .pointBlock__label {
    width: 198px;
    height: 58px;
    margin-bottom: 0;
    padding-right: 24px;
    font-size: 1.375rem;
  }
}
.pointBlock__label::after {
  position: absolute;
  top: -0.5px;
  right: 0;
  border: solid;
  border-color: #fff #fff transparent transparent;
  border-width: 18px 7px;
  content: "";
}
@media (min-width: 798px) {
  .pointBlock__label::after {
    top: 0;
    border-width: 29px 12px;
  }
}
.pointBlock__label .num {
  font-size: 1.53125rem;
}
@media (min-width: 798px) {
  .pointBlock__label .num {
    font-size: 2.5rem;
  }
}
.pointBlock__title {
  margin-bottom: 15px;
  color: var(--clr-txt_primary);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 798px) {
  .pointBlock__title {
    width: calc(100% - 198px);
    margin-bottom: 0;
    font-size: 2rem;
  }
}
.pointBlock__text, .pointBlock__listItem {
  font-size: 0.875rem;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.7142857143;
  text-align: justify;
}
@media (min-width: 798px) {
  .pointBlock__text, .pointBlock__listItem {
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.pointBlock__listItem {
  position: relative;
  padding-left: 1em;
}
.pointBlock__listItem::before {
  position: absolute;
  left: 0;
  content: "・";
}

/**
データ表示欄（小分けじゃない）
**/
.dataArea {
  padding: 30px 20px 60px;
  background-color: var(--clr-bg_table-wrap);
  border-radius: 0 0 25px 25px;
}
@media (min-width: 798px) {
  .dataArea {
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 0 0 80px 80px;
  }
}
@media (min-width: 798px) {
  .dataArea__inner {
    width: min(100%, 1200px);
    margin: auto;
  }
}

/**
グラフブロック
**/
.graphBlock {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 10px;
  padding: 30px;
  background-color: #fff;
  border-radius: 25px;
}
@media (min-width: 798px) {
  .graphBlock {
    gap: 15px;
    padding: 50px 40px 60px;
    border-radius: 50px;
  }
}
.overview__segment .graphBlock {
  background-color: var(--clr-bg_table-wrap);
}
@media (min-width: 798px) {
  .graphBlock--full {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    grid-column: 1/3;
  }
  .graphBlock--full .graphBlock__title {
    width: 100%;
  }
  .graphBlock--full .graphBlock__graph,
  .graphBlock--full .graphBlock__list {
    width: calc(50% - 20px);
  }
  .graphBlock--full .graphBlock__list {
    align-self: flex-end;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.graphBlock__wrapper {
  display: grid;
  gap: 20px;
}
@media (min-width: 798px) {
  .graphBlock__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: min(100%, 1200px);
    margin: auto;
  }
}
.graphBlock__title {
  color: var(--clr-txt_primary);
  font-size: 1.125rem;
  font-weight: 400;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (min-width: 798px) {
  .graphBlock__title {
    font-size: 2rem;
    line-height: 1.5625;
  }
}
.graphBlock__title span {
  font-size: 0.9375rem;
}
@media (min-width: 798px) {
  .graphBlock__title span {
    font-size: 1.75rem;
  }
}
.graphBlock__list {
  padding: 10px;
  background-color: var(--clr-bg_table-wrap);
}
@media (min-width: 798px) {
  .graphBlock__list {
    padding: 20px;
  }
}
.overview__segment .graphBlock__list {
  background-color: #fff;
}
.graphBlock__listItem {
  position: relative;
  padding-left: 1em;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: -0.01em;
}
@media (min-width: 798px) {
  .graphBlock__listItem {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}
.graphBlock__listItem::before {
  position: absolute;
  left: 0;
  content: "・";
}

/**
活動報告
**/
.report {
  margin-bottom: 70px;
  overflow-x: hidden;
}
.report__inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 798px) {
  .report__inner {
    position: relative;
    width: min(100%, 1240px);
    margin: auto;
    padding-top: 25px;
  }
}
.report__image {
  width: min(100%, 350px);
  margin: -102px auto 0;
}
@media (min-width: 798px) {
  .report__image {
    position: absolute;
    top: -254px;
    right: max(-8%, -103px);
    width: min(50%, 610px);
    margin: 0;
  }
}
.report__block {
  padding-top: 35px;
}
@media (min-width: 798px) {
  .report__block {
    padding-top: 65px;
  }
}
.report__block:not(:first-of-type) {
  margin-top: 40px;
  border-top: 1px solid var(--clr-txt_primary);
}
@media (min-width: 798px) {
  .report__block:not(:first-of-type) {
    margin-top: 70px;
  }
}
.report__section:not(:first-of-type) {
  padding-top: 25px;
}
@media (min-width: 798px) {
  .report__section:not(:first-of-type) {
    padding-top: 35px;
  }
}
.report__section:not(:last-of-type) {
  padding-bottom: 25px;
  border-bottom: dotted 1px #929db9;
}
@media (min-width: 798px) {
  .report__section:not(:last-of-type) {
    padding-bottom: 35px;
  }
}
@media (min-width: 798px) {
  .report__section--grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 0 min(6%, 80px);
  }
}
.report__title--lv3, .report__title--lv4, .report__title--lv5 {
  padding-right: 7px;
  padding-left: 7px;
}
@media (min-width: 798px) {
  .report__title--lv3, .report__title--lv4, .report__title--lv5 {
    padding-right: 0;
    padding-left: 0;
  }
}
.report__title--lv3 {
  margin-bottom: 15px;
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.42;
  font-feature-settings: "palt";
}
@media (min-width: 798px) {
  .report__title--lv3 {
    font-size: 3rem;
  }
}
.report__title--lv4 {
  margin-top: 20px;
  margin-bottom: 5px;
  color: var(--clr-txt_primary);
  font-feature-settings: "palt";
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.4761904762;
}
@media (min-width: 798px) {
  .report__title--lv4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.59375;
  }
}
.report__title--lv5 {
  margin-bottom: 5px;
  color: var(--clr-txt_primary);
  font-size: 1rem;
  font-weight: 500;
}
@media (min-width: 798px) {
  .report__title--lv5 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.report__tag {
  padding-left: 7px;
}
@media (min-width: 798px) {
  .report__tag {
    padding-left: 0;
  }
}
.report__tag--social {
  width: 126px;
}
@media (min-width: 798px) {
  .report__tag--social {
    width: 192px;
  }
}
.report__tag--env {
  width: 172.5px;
}
@media (min-width: 798px) {
  .report__tag--env {
    width: 265px;
  }
}
.report__text, .report__caption, .report__figcaption {
  padding-right: 7px;
  padding-left: 7px;
  letter-spacing: 0.04em;
  text-align: justify;
}
.report__text, .report__caption {
  font-feature-settings: "palt";
}
.report__text:not(:last-child), .report__caption:not(:last-child) {
  margin-bottom: 1em;
}
@media (min-width: 798px) {
  .report__text, .report__caption {
    padding-right: 0;
    padding-left: 0;
  }
}
.report__text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media (min-width: 798px) {
  .report__text {
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.report__caption {
  font-size: 0.75rem;
  line-height: 1.75;
}
@media (min-width: 798px) {
  .report__caption {
    font-size: 0.875rem;
    line-height: 2.4285714286;
  }
}
@media (min-width: 798px) {
  .report__layout--tp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .report__layout--tp .report__text {
    margin-bottom: 0;
  }
}
.report__figcaption {
  margin-top: 5px;
  font-size: 0.75rem;
  line-height: 1.6666666667;
}
.report__logo {
  width: 147px;
  padding-left: 7px;
  margin-bottom: 15px;
}
@media (min-width: 798px) {
  .report__logo {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
  }
}

/**
リンク
**/
.link--arrow {
  display: grid;
  align-items: center;
  grid-template-columns: 6px 1fr;
  gap: 0 12px;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 4px;
  color: var(--clr-txt_base);
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.7142857143;
  color: var(--clr-txt_primary);
}
@media (min-width: 798px) {
  .link--arrow {
    gap: 0 10px;
    padding-left: 0;
    text-underline-offset: 8px;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.link--arrow::before {
  display: block;
  width: 6px;
  height: 10px;
  content: "";
  background: url(../img/06/icn_angle-right_bl.svg) no-repeat center/contain;
}
@media (min-width: 798px) {
  .link--arrow::before {
    width: 10px;
    height: 16px;
  }
}
.link--arrow:hover {
  text-decoration: none;
}
.link--text {
  color: var(--clr-txt_primary);
  word-break: break-all;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.link--text:hover {
  text-decoration: none;
}

/**
写真
**/
.photoBlock {
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 798px) {
  .photoBlock {
    border-radius: 10px;
  }
}
.photoBlock__wrapper {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 798px) {
  .photoBlock__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: min(3.3vw, 40px);
    margin-top: 50px;
  }
}
.photoBlock__wrapper--single {
  display: grid;
  place-items: center;
}

.figure__caption {
  margin-top: 5px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.6666666667;
  text-align: justify;
}
@media (min-width: 798px) {
  .figure__caption {
    font-size: 1rem;
  }
}

/**
お知らせ
**/
.info {
  margin-bottom: 70px;
  overflow-x: hidden;
}
@media (min-width: 798px) {
  .info {
    margin-bottom: 140px;
  }
}
.info__inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 798px) {
  .info__inner {
    position: relative;
    width: min(100%, 1240px);
    margin: auto;
    padding-top: 25px;
  }
}
.info__image {
  width: min(100%, 350px);
  margin: -102px auto 0;
}
@media (min-width: 798px) {
  .info__image {
    position: absolute;
    top: -254px;
    right: max(-8%, -103px);
    width: min(50%, 610px);
    margin: 0;
  }
}
.info__block {
  padding-top: 35px;
}
@media (min-width: 798px) {
  .info__block {
    padding-top: 65px;
  }
}
.info__block:not(:first-of-type) {
  margin-top: 40px;
  border-top: 1px solid var(--clr-txt_primary);
}
@media (min-width: 798px) {
  .info__block:not(:first-of-type) {
    margin-top: 70px;
  }
}
.info__section {
  position: relative;
}
.info__section:not(:first-of-type) {
  padding-top: 25px;
}
.info__section:not(:last-of-type) {
  padding-bottom: 25px;
  border-bottom: dotted 1px #929db9;
}
@media (min-width: 798px) {
  .info__section:not(:last-of-type) {
    padding-bottom: 50px;
  }
}
.info__title--lv3, .info__title--lv4, .info__title--lv5 {
  padding-right: 7px;
  padding-left: 7px;
}
@media (min-width: 798px) {
  .info__title--lv3, .info__title--lv4, .info__title--lv5 {
    padding-right: 0;
    padding-left: 0;
  }
}
.info__title--lv3 {
  margin-bottom: 15px;
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.42;
  font-feature-settings: "palt";
}
@media (min-width: 798px) {
  .info__title--lv3 {
    font-size: 3rem;
  }
}
.info__title--lv4 {
  margin-top: 20px;
  margin-bottom: 5px;
  color: var(--clr-txt_primary);
  font-feature-settings: "palt";
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.4761904762;
}
@media (min-width: 798px) {
  .info__title--lv4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.59375;
  }
}
.info__title--lv5 {
  margin-bottom: 5px;
  color: var(--clr-txt_primary);
  font-size: 1rem;
  font-weight: 500;
}
@media (min-width: 798px) {
  .info__title--lv5 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.info__tag {
  width: 126px;
  padding-left: 7px;
}
@media (min-width: 798px) {
  .info__tag {
    width: 192px;
    padding-left: 0;
  }
}
.info__tag + .info__text {
  margin-top: 20px;
}
@media (min-width: 798px) {
  .info__tag + .info__text {
    margin-top: 40px;
  }
}
.info__logo {
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 798px) {
  .info__logo__program-zenkoku {
    width: 544px;
    margin: auto;
  }
}
.info__text, .info__caption {
  padding-right: 7px;
  padding-left: 7px;
  font-feature-settings: "palt";
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.7142857143;
  text-align: justify;
}
.info__text:not(:last-child), .info__caption:not(:last-child) {
  margin-bottom: 1em;
}
@media (min-width: 798px) {
  .info__text, .info__caption {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 798px) {
  .info__text {
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.info__text--dl dt:not(:first-of-type) {
  margin-top: 1em;
}
.info__text--dl dd {
  margin-bottom: 5px;
}
.info__layout--tp {
  margin-top: 20px;
}
@media (min-width: 798px) {
  .info__layout--tp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
  .info__layout--tp .photoBlock {
    align-self: start;
  }
}

/**
社外広報
**/
.public {
  margin-bottom: 70px;
  overflow-x: hidden;
}
@media (min-width: 798px) {
  .public {
    margin-bottom: 140px;
  }
}
.public__inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 798px) {
  .public__inner {
    position: relative;
    width: min(100%, 1240px);
    margin: auto;
    padding-top: 10px;
  }
}
.public__image {
  width: min(100%, 350px);
  margin: -102px auto 0;
}
@media (min-width: 798px) {
  .public__image {
    position: absolute;
    top: -286px;
    right: max(-8%, -103px);
    width: min(50%, 610px);
    margin: 0;
  }
}
.public__block {
  padding-top: 35px;
}
@media (min-width: 798px) {
  .public__block {
    padding-top: 70px;
  }
}
.public__block:not(:first-of-type) {
  margin-top: 35px;
  border-top: 1px solid var(--clr-txt_primary);
}
@media (min-width: 798px) {
  .public__block:not(:first-of-type) {
    margin-top: 80px;
  }
}
.public__title--lv3, .public__title--lv4, .public__title--lv5 {
  padding-right: 7px;
  padding-left: 7px;
}
@media (min-width: 798px) {
  .public__title--lv3, .public__title--lv4, .public__title--lv5 {
    padding-right: 0;
    padding-left: 0;
  }
}
.public__title--lv3 {
  margin-bottom: 15px;
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.42;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (min-width: 798px) {
  .public__title--lv3 {
    font-size: 3rem;
  }
}
.public__title--lv4, .public__title--lv5 {
  margin-bottom: 10px;
  color: var(--clr-txt_primary);
  font-size: min(5.45vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.4761904762;
}
@media (min-width: 798px) {
  .public__title--lv4, .public__title--lv5 {
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.59375;
  }
}
.public__title--lv4 {
  margin-top: 20px;
}
@media (min-width: 798px) {
  .public__title--lv4 {
    margin-top: 40px;
  }
}
.public__tag {
  width: 126px;
  padding-left: 7px;
}
@media (min-width: 798px) {
  .public__tag {
    width: 192px;
    padding-left: 0;
  }
}
.public__text {
  padding-right: 7px;
  padding-left: 7px;
  margin-top: 25px;
  margin-bottom: 1em;
  font-feature-settings: "palt";
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.7142857143;
  text-align: justify;
}
@media (min-width: 798px) {
  .public__text {
    padding-right: 0;
    padding-left: 0;
    margin-top: 40px;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.public__eventBlock {
  padding-top: 25px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #bdc4d5;
}
.public__eventBlock:first-of-type {
  margin-top: 25px;
  border-top: 1px dotted #bdc4d5;
}
@media (min-width: 798px) {
  .public__eventBlock {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .public__eventBlock:first-of-type {
    margin-top: 40px;
  }
}
@media (min-width: 798px) {
  .public__eventBlock__videoInfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(3.3vw, 40px);
  }
  .public__eventBlock__videoInfo + .photoBlock__wrapper {
    margin-top: 40px;
  }
}
.public__eventBlock__videoInfo__link {
  padding: 20px;
  background-color: var(--clr-bg_event-head);
  border-radius: 8px;
}
.public__eventBlock__videoInfo__link .button {
  min-height: 0;
}
@media (min-width: 798px) {
  .public__eventBlock__videoInfo__link {
    align-self: self-start;
    padding: 30px 50px;
  }
}
.public__eventBlock__videoInfo__lead {
  margin-bottom: 10px;
  color: var(--clr-txt_primary);
  font-size: 1rem;
}
@media (min-width: 798px) {
  .public__eventBlock__videoInfo__lead {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
}
.public__eventBlock__videoInfo__caption {
  margin-top: 12px;
  font-size: 0.8125rem;
}
@media (min-width: 798px) {
  .public__eventBlock__videoInfo__caption {
    margin-top: 15px;
    font-size: 1.125rem;
  }
}

/**
動画埋め込み
**/
.videoPlayer {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.videoPlayer__wrapper {
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 798px) {
  .videoPlayer__wrapper {
    width: min(100%, 800px);
    margin: auto;
    border-radius: 16px;
  }
}

/**
イベント情報
**/
.eventBlock__wrapper {
  padding-right: 7px;
  padding-left: 7px;
  margin-bottom: 15px;
}
@media (min-width: 798px) {
  .eventBlock__wrapper {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 20px;
  }
}
.eventBlock__title {
  margin-bottom: 5px;
  color: var(--clr-txt_primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (min-width: 798px) {
  .eventBlock__title {
    font-size: 1.125rem;
  }
}

.eventInfo {
  display: grid;
  gap: 6px;
}
@media (min-width: 798px) {
  .eventInfo {
    gap: 10px;
  }
}
.eventInfo__list {
  display: grid;
  grid-template-columns: 95px auto;
  align-items: center;
  gap: 10px;
}
@media (min-width: 798px) {
  .eventInfo__list {
    grid-template-columns: 130px auto;
  }
}
.eventInfo__title, .eventInfo__text {
  font-size: 0.8125rem;
}
@media (min-width: 798px) {
  .eventInfo__title, .eventInfo__text {
    font-size: 1.125rem;
  }
}
.eventInfo__title {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 5px 5px 6px;
  background-color: var(--clr-bg_event-head);
  border-radius: 3px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}
@media (min-width: 798px) {
  .eventInfo__title {
    width: auto;
    padding: 6px 6px 7px;
  }
}
.eventInfo__text {
  font-feature-settings: "palt";
}

/**
通気予想
**/
.forecast {
  overflow-x: hidden;
}
.forecast__inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 798px) {
  .forecast__inner {
    position: relative;
    width: min(100%, 1240px);
    margin: auto;
    padding-top: 90px;
  }
}
.forecast__image {
  width: min(100%, 350px);
  margin: -92px auto 35px;
}
@media (min-width: 798px) {
  .forecast__image {
    position: absolute;
    top: -230px;
    right: max(-8%, -103px);
    width: min(50%, 610px);
    margin: 0;
  }
}
.forecast__title--lv3, .forecast__title--lv4 {
  padding-right: 7px;
  padding-left: 7px;
}
@media (min-width: 798px) {
  .forecast__title--lv3, .forecast__title--lv4 {
    padding-right: 0;
    padding-left: 0;
  }
}
.forecast__title--lv3 {
  margin-bottom: 15px;
  color: #000;
  font-feature-settings: "palt";
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.44;
}
@media (min-width: 798px) {
  .forecast__title--lv3 {
    margin-bottom: 30px;
    font-size: 3rem;
    line-height: 1.4583333333;
  }
}
.forecast__title--lv4 {
  margin-bottom: 10px;
  color: var(--clr-txt_primary);
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.4761904762;
}
@media (min-width: 798px) {
  .forecast__title--lv4 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.forecast__text {
  padding-right: 7px;
  padding-left: 7px;
  margin-bottom: 1em;
  font-feature-settings: "palt";
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.7142857143;
  text-align: justify;
}
@media (min-width: 798px) {
  .forecast__text {
    padding-right: 0;
    padding-left: 0;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.forecast__list {
  padding-right: 7px;
  padding-left: 7px;
}
@media (min-width: 798px) {
  .forecast__list {
    padding-right: 0;
    padding-left: 0;
  }
}
.dataArea .forecast__list {
  margin-bottom: 1em;
}
.forecast__listItem {
  position: relative;
  padding-left: 1em;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media (min-width: 798px) {
  .forecast__listItem {
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.forecast__listItem::before {
  position: absolute;
  left: 0;
  content: "・";
}
.forecast__data {
  padding: 25px 15px 30px;
  background-color: #fff;
  border-radius: 8px;
}
@media (min-width: 798px) {
  .forecast__data {
    padding: auto;
    padding: 50px 50px 60px;
    border-radius: 16px;
  }
}
.forecast__data__wrapper {
  display: grid;
  gap: 20px;
}
@media (min-width: 798px) {
  .forecast__data__wrapper {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: min(3.3vw, 40px);
  }
}

/**
ページ上部へ
**/
.pagetop {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/06/btn_pagetop.png) no-repeat center/contain;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  text-indent: 100%;
  white-space: nowrap;
}
@media (min-width: 798px) {
  .pagetop {
    width: 60px;
    height: 60px;
  }
}
.pagetop__wrapper {
  position: fixed;
  right: 8px;
  bottom: 8px;
  z-index: 100;
}
@media (min-width: 798px) {
  .pagetop__wrapper {
    right: 25px;
  }
}

/**
フッター
**/
.footer {
  background-color: var(--clr-bg_footer);
}
@media (min-width: 798px) {
  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.footer__inner {
  display: grid;
  place-content: center;
  gap: 10px;
  height: 232px;
}
@media (min-width: 798px) {
  .footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 1200px);
    margin: auto;
  }
}
.footer__logo {
  width: 194px;
  margin: auto;
}
@media (min-width: 798px) {
  .footer__logo {
    width: 144px;
    margin: 0;
  }
}
.footer__copyright {
  color: #fff;
  font-size: 0.5625rem;
  text-align: center;
}
@media (min-width: 798px) {
  .footer__copyright {
    font-size: 0.75rem;
  }
}

/**
特定セクション固有スタイル
**/
.message .section__title {
  padding-bottom: 150px;
}
@media (min-width: 798px) {
  .message .section__title {
    padding-bottom: 80px;
  }
}

.info01__title {
  padding-left: 97px;
  background: url(../img/06/icn_medal.png) no-repeat left 7px center/71px 103px;
}
@media (min-width: 798px) {
  .info01__title {
    padding-left: 155px;
    background-position: left center;
    background-size: 122px 179px;
  }
}
.info01__title span {
  color: #ff7e00;
}

.forecast .section__title {
  padding-top: 70px;
  padding-bottom: 115px;
}
@media (min-width: 798px) {
  .forecast .section__title {
    padding-bottom: 45px;
  }
}
.forecast .dataArea {
  margin-top: 20px;
}
@media (min-width: 798px) {
  .forecast .dataArea {
    margin-top: 70px;
  }
}
.forecast .table {
  margin-bottom: 20px;
}
@media (min-width: 798px) {
  .forecast .table {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    margin-bottom: 50px;
  }
}
.forecast .table__head {
  height: 55px;
  padding: 0;
  font-size: 0.625rem;
  font-weight: 700;
}
@media (min-width: 798px) {
  .forecast .table__head {
    height: 110px;
    font-size: 1.25rem;
    font-weight: 400;
  }
}
.forecast .table__head .bold {
  font-size: 0.6875rem;
  font-weight: 700;
}
@media (min-width: 798px) {
  .forecast .table__head .bold {
    font-size: 1.375rem;
  }
}
.forecast .table__index {
  min-width: 140px;
  padding-right: 10px;
  padding-left: 10px;
}
@media (min-width: 798px) {
  .forecast .table__index {
    padding-right: 20px;
    padding-left: 20px;
  }
  .forecast .table__index span {
    width: 10em;
  }
}
.forecast .table__data {
  padding-right: 8px;
  padding-left: 8px;
}
.forecast .table__data .blank {
  text-align: center;
}
@media (min-width: 798px) {
  .forecast .table__data span {
    width: 4em;
  }
}