@charset "UTF-8";
/* =====================================================
  初期設定
--------------------------------------------------*/
body {
  background: #EEECE5;
}

.wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  background: #FFF9ED;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .wrapper {
    max-width: 1000px;
  }
}
p, h1, h2, h3, h4, li, span, a, td, th, address {
  letter-spacing: 0.1em; /* ← 10% 相当 */
  font-size: 15px;
}

/* ▼ 764px以上だったら */
p, h3, h4, li, span, td, th, address {
  color: #666666;
}

a {
  color: #0504EE;
}
a:hover {
  text-decoration: underline;
}

h2 {
  padding: 26px 0 0;
}
h2 .h2_inner {
  font-size: 20px;
  color: #FFF9ED;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 32px;
  border-radius: 10px;
  padding: 22px 16px 16px 12px;
  font-family: "Space Mono", monospace;
  background: linear-gradient(45deg, rgb(130, 189, 248) 0%, rgb(152, 203, 254) 100%);
  display: flex;
}
h2 .h2_inner .h2_title {
  flex: 1;
}
h2 .h2_inner .h2_icon {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 110px;
  height: 80px;
  margin: -42px 0 0;
  margin-left: 0;
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
}

h2.h2_1 .h2_inner {
  padding: 24px;
}
h2.h2_1 .h2_inner .h2_icon {
  width: 100px;
  margin: -36px 0 0;
  background-image: url(../image/h2_1.png);
}

h2.h2_2 .h2_icon {
  background-image: url(../image/h2_2.png);
}

h2.h2_3 .h2_icon {
  width: 90px;
  background-image: url(../image/h2_3.png);
}

h2.h2_4 .h2_icon {
  background-image: url(../image/h2_4.png);
}

h2.h2_5 .h2_icon {
  background-image: url(../image/h2_5.png);
}

h2.h2_6 .h2_icon {
  background-image: url(../image/h2_6.png);
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  h2 {
    padding: 76px 0 0;
  }
  h2 .h2_inner {
    font-size: 32px;
    padding: 24px 24px 0;
  }
  h2 .h2_inner .h2_title {
    padding: 0 0 24px;
  }
  h2 .h2_inner .h2_icon {
    width: 200px;
    height: 145px;
    margin: -77px 0 0;
  }
  h2.h2_1 .h2_inner .h2_title {
    padding: 0;
  }
  h2.h2_1 .h2_inner .h2_icon {
    width: 200px;
    margin: -97px 0 0;
  }
  h2.h2_3 .h2_icon {
    margin: -97px 0 0;
  }
}
h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  h3 {
    font-size: 20px;
  }
}
html.is-locked,
body.is-locked {
  overflow: hidden;
  height: 100%;
}

/* --------------------------------------------------
  初期設定  END
=====================================================*/
/* =====================================================
  header
--------------------------------------------------*/
/* ========== 基本リセット ========== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", sans-serif;
  line-height: 1.7;
  color: #333;
}

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

/* 外部直リンク時の保険（大きめでOK） */
header::after {
  z-index: 900;
}

/* Safariのネイティブスクロールを無効化 */
html:target, body:target, [id]:target {
  scroll-margin-top: 0 !important;
}

/* ▼ 764px以上だったら */
/*@media (min-width: 764px){
  [id]{ scroll-margin-top: 248px; }
}*/
/* ========== ヘッダー（SP基準） ========== */
header {
  position: fixed;
  top: 0;
  z-index: 1000;
  color: #fff;
  transition: grid-template-rows 0.28s ease, box-shadow 0.28s ease;
  width: 100%; /* ←width:100% は外す */
}

/* 上段：ロゴ / タイトル / 右画像（SPでは小） */
header .header-group > h1 {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 12px 12px;
  height: 120px;
  transition: padding 0.28s ease;
  background: url("../image/header.png");
  background-size: cover;
  border-bottom: 5px solid #389BCB;
}

header .header-group > h1 > div:nth-child(1) {
  background: #FFF;
  padding: 10px;
  border-radius: 8px;
}
header .header-group > h1 > div:nth-child(1) img {
  width: 35px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.28s ease, transform 0.28s ease, height 0.28s ease, margin 0.28s ease;
}

header .header-group > h1 > div:nth-child(2) { /* タイトル */
  line-height: 1.2;
  transition: font-size 0.28s ease;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
header .header-group > h1 > div:nth-child(2) span {
  color: #FFF;
  font-size: 20px;
  font-weight: 300;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
header .header-group > h1 > div:nth-child(2) span.bold {
  font-weight: 900;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
}

header .header-group > h1 > div:nth-child(3) img { /* 右側画像（SP小） */
  width: 96px;
  max-width: 28vw;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.28s ease, transform 0.28s ease, height 0.28s ease, margin 0.28s ease;
}

/* スクロール縮小 */
header.is-scrolled {
  grid-template-rows: 82px auto;
}

header.is-scrolled .header-group > h1 {
  padding: 8px 10px;
}

header.is-scrolled .header-group > h1 > div:nth-child(1) {
  padding: 4px;
}

header.is-scrolled .header-group > h1 > div:nth-child(2) {
  display: flex;
  align-items: center;
}
header.is-scrolled .header-group > h1 > div:nth-child(2) span {
  font-size: 14px;
}
header.is-scrolled .header-group > h1 > div:nth-child(2) span.bold {
  font-size: 14px;
}

header.is-scrolled .header-group > h1 > div:nth-child(1) img {
  width: 23px;
  height: auto;
}

header.is-scrolled .header-group > h1 > div:nth-child(3) img {
  opacity: 0;
  transform: scale(0.9);
  height: 0;
  margin: 0;
}

header.is-scrolled .header-group > h1 {
  height: 82px;
}

header .header-group .kv-pc {
  display: none;
}

/* 2本線ハンバーガー（SP表示。PCは後で非表示） */
.menu-btn {
  position: absolute;
  top: 35px;
  right: 12px;
  padding: 18px 14px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #389BCB;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  z-index: 1100;
}

.menu-btn span {
  display: block;
  height: 1px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

header.is-open .menu-btn span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

header.is-open .menu-btn span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -4px);
}

header.is-scrolled > .menu-btn {
  top: 16px;
}

/* SPナビ：初期は確実に非表示（押すと全画面オーバーレイ） */
header > nav {
  position: fixed;
  inset: 0;
  background: #389BCB;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s step-end;
  z-index: 1000;
}

header.is-scrolled > nav {
  top: 82px;
}

header.is-open > nav a br {
  display: none;
}

header > nav a {
  color: #fff;
  text-decoration: none !important;
  text-align: left;
  font-weight: 600;
  padding: 17px 20px;
  font-size: 15px;
  line-height: 1.3;
  border-bottom: 1px solid #72CCF2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header > nav a::after {
  content: "";
  display: block;
  margin-left: 6px;
  width: 26px;
  height: 26px;
  background: url(../image/nav_arrow.svg);
}
header > nav a:hover {
  background: #98CBFE;
}

/* 暗幕（開時のみ） */
header::after {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

header.is-open::after {
  opacity: 1;
  pointer-events: auto;
}

/* ========== SP（〜763.98px）：menu-btn の下端を起点に開閉 ========== */
@media (max-width: 763px) {
  header > nav {
    position: fixed;
    top: var(--hdrH, 120px);
    left: 0;
    right: 0;
    height: 100dvh;
    background: #389BCB;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.16s ease-out, opacity 0.16s ease-out, visibility 0s;
    will-change: transform, opacity;
    backface-visibility: hidden;
    z-index: 1000;
  }
  header.is-open > nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.16s ease-out, opacity 0.16s ease-out, visibility 0s;
  }
  header > nav a {
    color: #fff;
    text-decoration: none !important;
    text-align: left;
    font-weight: 600;
    padding: 17px 20px;
    font-size: 15px;
    line-height: 1.3;
    border-bottom: 1px solid #72CCF2;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header > nav a::after {
    content: "";
    display: block;
    margin-left: 6px;
    width: 26px;
    height: 26px;
    background: url(../image/nav_arrow.svg);
  }
  header > nav a:hover {
    background: #98CBFE;
  }
}
/* ========== PC拡張（764px以上） ========== */
@media (min-width: 764px) {
  .kv-sp {
    display: none;
  }
  header {
    width: 1000px;
  }
  header .header-group .kv-pc {
    display: block;
  }
  header .header-group {
    display: flex;
    justify-content: space-between;
  }
  header .header-group .kv-pc {
    width: 248px;
    border-bottom: 5px solid #389BCB;
    opacity: 1;
    transition: opacity 0.28s ease;
  }
  header .header-group h1 {
    flex: 1;
  }
  header .header-group > h1 {
    -moz-column-gap: 16px;
         column-gap: 16px;
    padding: 16px clamp(12px, 3vw, 24px);
    height: 152px;
  }
  header .header-group > h1 > div:nth-child(1) {
    padding: 10px;
    border-radius: 10px;
  }
  header .header-group > h1 > div:nth-child(1) img {
    width: 68px;
    height: 88px;
  }
  header .header-group > h1 > div:nth-child(2) {
    font-size: 32px;
  }
  header .header-group > h1 > div:nth-child(2) span {
    font-size: 36px;
  }
  header.is-scrolled .header-group > h1 {
    padding: 8px clamp(10px, 2.5vw, 16px);
  }
  header.is-scrolled .header-group > h1 > div:nth-child(2) {
    font-size: 20px;
  }
  header.is-scrolled .header-group > h1 > div:nth-child(1) img {
    width: 23px;
    height: 30px;
  }
  header .header-group > h1 > div:nth-child(3) img {
    width: min(28vw, 320px);
    border-radius: 8px;
  }
  header.is-scrolled .header-group > h1 {
    flex: 0 0 100%;
  }
  header.is-scrolled .header-group .kv-pc {
    opacity: 0;
  }
  header > nav {
    position: static;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    padding-top: 0;
    margin-top: 0;
    z-index: auto;
    justify-content: center;
  }
  header.is-scrolled > nav {
    margin-top: 0;
  }
  header > nav a {
    text-align: center;
    padding: 16px 15px 16px 20px;
    border-bottom: none;
    border-left: 1px solid #72CCF2;
    min-height: 80px;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  header > nav a:first-child {
    border-left: none;
  }
  header > nav a:last-child {
    padding: 16px 16px 16px 19px;
  }
  header > nav {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
    overflow: visible !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: auto !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    margin-top: 0;
  }
  .menu-btn {
    display: none;
  }
  /* スクロール縮小 */
  header.is-scrolled {
    grid-template-rows: 68px auto;
  }
  header.is-scrolled .header-group > h1 {
    height: 68px;
  }
}
/* 省アニメ設定 */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
/* --------------------------------------------------
  header END
=====================================================*/
/* =====================================================
   main
--------------------------------------------------*/
main {
  padding: 0 24px 0 24px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  main {
    padding: 16px 48px 0 48px;
  }
}
[class$=-section] {
  margin: 64px 0 104px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  [class$=-section] {
    margin: 32px 0 112px;
  }
}
.summary-section .text-img-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 48px;
}
.summary-section .text-img-group img {
  width: 160px;
  height: auto;
  margin: 16px 0 0;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .summary-section .text-img-group {
    flex-direction: row !important;
    align-items: flex-start !important;
  }
  .summary-section .text-img-group img {
    margin: 0 0 0 32px !important;
  }
}
.aside-box {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #C2BEB3;
  padding: 24px;
  margin: 0 0 48px;
}

.marker {
  color: #FF6600;
}

ul.list li {
  list-style-type: disc;
  margin: 0 0 0 26px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  ul.list li {
    margin: 0 0 0 31px;
  }
}
ol.nolist {
  margin: 10px 0;
}

ol.nolist li {
  list-style-type: decimal;
  margin: 0 0 0 26px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  ol.nolist li {
    margin: 0 0 0 31px;
  }
}
ul.colorlist li {
  margin: 0 0 0 5px;
  font-weight: 700;
  color: #FF6600;
  display: flex;
}
ul.colorlist li::before {
  content: "*";
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  ul.colorlist li {
    margin: 0 0 0 7px;
  }
}
.kv-sp {
  margin-left: -24px;
  margin-right: -24px;
}

.table-group div {
  width: 100%;
}
.table-group th,
.table-group td {
  padding: 8px;
}
.table-group th {
  border: 1px solid #C2BEB3;
  font-weight: 700;
  background: #EEECE5;
}
.table-group div:nth-of-type(2) table thead {
  display: none;
}
.table-group div:nth-of-type(2) table th {
  border-top: none;
}
.table-group tbody th {
  text-align: left;
  vertical-align: top;
  width: 96px;
}
.table-group tbody td {
  border-top: 0;
  border-right: 1px solid #C2BEB3;
  border-bottom: 1px solid #C2BEB3;
  background: #FFF;
}
.table-group tbody td:first-child {
  background: #EEECE5;
  font-weight: 700;
  width: 96px;
}
.table-group tbody td.mulitiple {
  padding: 0;
}
.table-group tbody td.mulitiple div {
  padding: 8px;
}
.table-group tbody td.mulitiple div:nth-of-type(2) {
  border-top: 1px solid #C2BEB3;
}
.table-group table:nth-of-type(2) thead {
  display: none;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .table-group {
    display: flex;
    gap: 32px;
  }
  .table-group div:nth-of-type(2) table thead {
    display: table-header-group;
  }
  .table-group div:nth-of-type(2) table th {
    border-top: 1px solid #C2BEB3;
  }
  .table-group table:nth-of-type(2) thead {
    display: table-header-group;
  }
}
.text-group {
  margin: 0 0 48px;
}

.flow {
  background: #EEECE5;
  padding: 32px 16px;
  border-radius: 10px;
  margin: 0 0 48px;
  counter-reset: item;
}
.flow h3 {
  display: flex;
  align-items: center;
}
.flow h3::before {
  content: "";
  display: block;
  width: 38px;
  height: 40px;
  background: url(../image/h3.svg);
  background-size: 100% auto;
  margin: 0 16px 0 0;
}
.flow .step-group {
  counter-reset: item;
  gap: 52px;
  display: grid;
}
.flow .step-group .step {
  background: #FFF;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.flow .step-group .step::after {
  display: block;
  content: "";
  width: 32px;
  height: 16px;
  position: absolute;
  bottom: -32px;
  left: 50%;
  margin-left: -16px;
  background: url(../image/flow_arrow.svg) no-repeat;
}
.flow .step-group .step h4 {
  order: 1;
  align-items: center;
  font-size: 16px;
  color: #72CCF2;
  font-weight: 700;
  counter-increment: item;
  display: flex;
  margin: 0 0 16px;
}
.flow .step-group .step h4::before {
  content: counter(item);
  display: block;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 16px 0 0;
  background-color: #72CCF2;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  flex: 0 0 auto;
}
.flow .step-group .step h4.pc_title {
  display: none;
}
.flow .step-group .step .img-group {
  order: 2;
  margin: 0 0 16px;
}
.flow .step-group .step .text-group {
  order: 3;
  margin: 0;
}
.flow .step-group .step .text-group ul,
.flow .step-group .step .text-group ol {
  margin: 0 0 16px;
}
.flow .step-group .step .text-group img {
  margin: 16px 0 0;
}
.flow .step-group .step:last-of-type::after {
  display: none;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .flow {
    padding: 32px;
  }
  .flow h3::before {
    width: 58px;
    height: 60px;
  }
  .flow .step-group .step {
    flex-direction: row;
    padding: 32px 16px;
    align-items: center;
  }
  .flow .step-group .step h4.pc_title {
    display: flex;
  }
  .flow .step-group .step h4.sp_title {
    display: none;
  }
  .flow .step-group .step .img-group {
    flex: 0 0 304px;
    margin: 0;
  }
  .flow .step-group .step .img-group img {
    height: 250px;
    margin: 0;
  }
  .flow .step-group .step .text-group {
    flex: 0 1 auto;
  }
  .flow .step-group .step .text-img-group.grid {
    display: grid;
    grid-template-columns: 1fr 304px;
    gap: 32px;
  }
}
.system-section .aside-box .text-group {
  margin: 0;
}
.system-section .aside-box .text-img-group {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 16px;
  margin: 0 0 16px;
}
.system-section .aside-box .calculation-formula {
  background: #EEECE5;
  border-radius: 10px;
  margin: 16px 0;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.system-section .aside-box .calculation-formula span {
  font-size: 13px;
}
.system-section .aside-box .calculation-formula span.minus {
  margin: 0 0 0 8px;
}
.system-section .aside-box .calculation-formula .pc-formula {
  display: none;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .system-section .aside-box .text-group {
    margin: 0 0 8px;
  }
  .system-section .aside-box .text-img-group {
    position: relative;
    grid-template-columns: 100vh;
    margin: 0;
  }
  .system-section .aside-box .text-img-group img {
    position: absolute;
    right: 0;
    width: 140px;
  }
  .system-section .aside-box .calculation-formula {
    margin: 0;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
  }
  .system-section .aside-box .calculation-formula span {
    min-width: 16px;
    text-align: center;
  }
  .system-section .aside-box .calculation-formula span.minus {
    margin: 0 16px;
  }
  .system-section .aside-box .calculation-formula br {
    display: none;
  }
  .system-section .aside-box .sp-formula {
    display: none;
  }
  .system-section .aside-box .pc-formula {
    display: flex !important;
  }
}
.dl-section table {
  width: auto;
}
.dl-section th,
.dl-section td {
  padding: 8px;
}
.dl-section th {
  border: 1px solid #C2BEB3;
  font-weight: 700;
  background: #EEECE5;
}
.dl-section td {
  border-top: 0;
  border-right: 1px solid #C2BEB3;
  border-bottom: 1px solid #C2BEB3;
  border-left: 1px solid #C2BEB3;
  background: #FFF;
}
.dl-section td:first-child {
  background: #EEECE5;
  font-weight: 700;
  width: 145px;
}
.dl-section table:nth-of-type(2) thead {
  display: none;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .dl-section td:last-child {
    width: 256px;
  }
}
.faq-section h3 {
  display: flex;
  align-items: baseline;
}
.faq-section h3::before {
  display: block;
  content: "Q.";
  width: 20px;
  height: 20px;
  color: #FF6600;
  font-size: 16px;
  margin: 0 16px 0 0;
}
.faq-section section {
  margin: 0 0 48px;
  padding: 0 0 0 37px;
}
.faq-section section p, .faq-section section ul {
  padding: 0 0 0 33px;
}
.faq-section section ul li {
  display: flex;
}
.faq-section section ul li::before {
  display: block;
  content: "※";
  margin: 0 8px 0 0;
}
.faq-section section > p:first-of-type {
  display: flex;
  align-items: baseline;
  padding: 0;
}
.faq-section section > p:first-of-type::before {
  display: block;
  content: "A.";
  width: 20px;
  height: 20px;
  font-size: 16px;
  left: 0;
  margin: 0 16px 0 0;
  color: #72CCF2;
  font-weight: 700;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .faq-section h3::before {
    width: 25px;
    height: 25px;
    font-size: 20px;
  }
  .faq-section section {
    padding: 0 0 0 42px;
  }
  .faq-section section p, .faq-section section ul {
    padding: 0 0 0 33px;
  }
  .faq-section section > p:first-of-type::before {
    width: 25px;
    height: 25px;
    font-size: 20px;
  }
}
.management-section section {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: 1px solid #C2BEB3;
  padding: 0 0 16px;
  margin: 0 0 16px;
}
.management-section section h3 {
  font-size: 13px;
  margin: 0;
}
.management-section section address {
  font-style: normal;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .management-section section {
    grid-template-columns: 160px 1fr;
  }
  .management-section section h3 {
    font-size: 15px;
  }
}
.banner-aside {
  margin: 0 0 72px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-aside a {
  display: inline-block;
}
.banner-aside a img {
  width: 232px;
  height: auto;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .banner-aside {
    gap: 24px;
    justify-content: center;
    flex-direction: row;
  }
}
.pagetop {
  text-align: right;
  padding: 0 0 16px 0;
  right: 0;
  bottom: 0;
  position: sticky;
  display: block;
  margin-left: auto; /* 左余白を自動にして右端へ */
  width: -moz-fit-content;
  width: fit-content;
}
.pagetop a {
  color: #643A18;
  display: flex;
  justify-content: end;
  background: #FFF9ED;
  padding: 7px 2px 7px 6px;
  border-radius: 8px;
  background: #72CCF2;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url(../image/pagetop_arrow.svg);
}
.pagetop a:hover {
  text-decoration: none;
  background: #389BCB;
}
.pagetop a.is-landed {
  background: transparent !important;
  text-decoration: underline;
}
.pagetop a.is-landed:hover {
  background: transparent !important;
  text-decoration: underline;
}

/* =====================================================
   footer
--------------------------------------------------*/
footer {
  background: #72CCF2;
  border-top: 5px solid #389BCB;
  padding: 32px 48px 64px 48px;
}
footer p {
  color: #fff;
  font-size: 11px;
}
footer p small {
  font-size: 11px;
}

/* ▼ 764px以上だったら *//*# sourceMappingURL=style.css.map */