@charset "UTF-8";
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
  vertical-align: bottom;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

.mob-show {
  display: none;
}
@media (max-width: 768px) {
  .mob-show {
    display: block !important;
  }
}

.mob-clear {
  display: block;
}
@media (max-width: 768px) {
  .mob-clear {
    display: none !important;
  }
}

.mob-hidden {
  visibility: visible;
}
@media (max-width: 768px) {
  .mob-hidden {
    visibility: hidden !important;
  }
}

.pad-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-show {
    display: block !important;
  }
}

.pad-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-clear {
    display: none !important;
  }
}

.pad-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-hidden {
    visibility: hidden !important;
  }
}

.web-show {
  display: none;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-show {
    display: block !important;
  }
}

.web-clear {
  display: block;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-clear {
    display: none !important;
  }
}

.web-hidden {
  visibility: visible;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-hidden {
    visibility: hidden !important;
  }
}

.max-show {
  display: none;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-show {
    display: block !important;
  }
}

.max-clear {
  display: block;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-clear {
    display: none !important;
  }
}

.max-hidden {
  visibility: visible;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-hidden {
    visibility: hidden !important;
  }
}

.mob-pad-show {
  display: none;
}
@media (max-width: 1024px) {
  .mob-pad-show {
    display: block !important;
  }
}

.mob-pad-clear {
  display: block;
}
@media (max-width: 1024px) {
  .mob-pad-clear {
    display: none !important;
  }
}

.mob-pad-hidden {
  visibility: visible;
}
@media (max-width: 1024px) {
  .mob-pad-hidden {
    visibility: hidden !important;
  }
}

.pad-web-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-show {
    display: block !important;
  }
}

.pad-web-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-clear {
    display: none !important;
  }
}

.pad-web-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-hidden {
    visibility: hidden !important;
  }
}

.web-max-show {
  display: none;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-show {
    display: block !important;
  }
}

.web-max-clear {
  display: block;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-clear {
    display: none !important;
  }
}

.web-max-hidden {
  visibility: visible;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-hidden {
    visibility: hidden !important;
  }
}

.mob-web-show {
  display: none;
}
@media (max-width: 1280px) {
  .mob-web-show {
    display: block !important;
  }
}

.mob-web-clear {
  display: block;
}
@media (max-width: 1280px) {
  .mob-web-clear {
    display: none !important;
  }
}

.mob-web-hidden {
  visibility: visible;
}
@media (max-width: 1280px) {
  .mob-web-hidden {
    visibility: hidden !important;
  }
}

.mob-max-show {
  display: none;
}
@media (max-width: 1600px) {
  .mob-max-show {
    display: block !important;
  }
}

.mob-max-clear {
  display: block;
}
@media (max-width: 1600px) {
  .mob-max-clear {
    display: none !important;
  }
}

.mob-max-hidden {
  visibility: visible;
}
@media (max-width: 1600px) {
  .mob-max-hidden {
    visibility: hidden !important;
  }
}

.pad-max-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-show {
    display: block !important;
  }
}

.pad-max-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-clear {
    display: none !important;
  }
}

.pad-max-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-hidden {
    visibility: hidden !important;
  }
}

.padding-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.max-width-1080 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.max-width-1180 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.max-width-540 {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.vector-30 {
  width: 1000px;
  height: 0;
  left: calc(50% - 500px + 516.5px);
  top: 2121px;
  border: 4px dashed #1A2C61;
}

.bold {
  font-weight: bold !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.tac {
  text-align: center !important;
}

.articlebox {
  margin-top: min(24px, 1.6vw);
}

/* wrapper */
.wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}

.contents_wrapper {
  max-width: 1024px;
  margin: 160px auto 0;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .contents_wrapper {
    margin-top: 80px;
  }
}
.sec_wrapper {
  margin-top: 160px;
}

@media (max-width: 768px) {
  .sec_wrapper {
    margin-top: 80px;
  }
}
* {
  backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-font-smoothing: antialiased; /* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale; /* animation時の文字にじみ防止 */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  transition-duration: 0.4s;
}

body {
  font-family: "Zen Kaku Gothic New", "Zen Kaku Gothic New", "Nunito", Arial, Meiryo, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #F5FDFF;
  line-height: 1.6;
  color: #33354D;
  margin: 0 auto;
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  max-width: 100%;
}
body .zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body .zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
body .zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
body .zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
body .zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body .zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
body .nunito {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

main {
  margin: 0 auto 100px;
  overflow-x: hidden;
}

section {
  margin-top: min(120px, 15vw);
}

input[type=checkbox] {
  border: 1px solid #33354D;
  width: 16px;
  height: 16px;
  padding: 0;
}

ul, ol, dl, li, strong, dt, dd, p, div, span, a, article, label, input, select, textarea {
  font-size: calc(14px + (16 - 14) * (100vw - 414px) / (1280 - 414));
  font-weight: normal;
  color: #2B4247;
}

a {
  transition-duration: 0.2s;
  transition-duration: 0.4s;
}
a img {
  transition: transform 0.3s ease;
}
a:hover {
  cursor: pointer;
}
a:hover img {
  transform: scale(1.02);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* font-size */
p, li {
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1.6;
}
@media (max-width: 768px) {
  p, li {
    line-height: 1.6;
    text-align: justify;
  }
}

.en {
  font-size: clamp(1.5rem, 1.045rem + 2.27vw, 2.75rem);
  font-size: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4rem;
  text-align: center;
}

.ja {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.8rem);
  font-weight: 900;
  text-align: center;
  color: #1B657D;
  line-height: 1.4;
}

.point {
  font-weight: 900;
  font-style: italic;
  font-size: 40px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #E550AC;
}

h2.ttl {
  font-weight: 900;
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
  line-height: 1.4;
  color: #1B657D;
}
h2.ttl .ttl-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
h2.ttl .ja {
  font-weight: 900;
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
  line-height: 1.4;
}
h2.ttl .en {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1;
}

.ttl-icon {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-items: center;
}
@media (max-width: 768px) {
  .ttl-icon {
    max-width: 24px;
  }
}

h3.en.ttl {
  font-size: clamp(1.125rem, 0.898rem + 1.14vw, 1.75rem);
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  font-weight: 600;
  color: #1B657D;
  letter-spacing: 0.1em;
  padding-bottom: 16px;
}

h3.ttl {
  font-size: clamp(1rem, 0.727rem + 1.36vw, 1.75rem);
  font-family: "Zen Maru Gothic";
  font-weight: 600;
  color: #1B657D;
  line-height: 1.3;
}

.st-bold {
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 0;
}

h3.ttl .en {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}
h3.ttl .en span {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: 800;
  color: #1B657D;
}
h3.ttl .ja {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
}

/* header */
:root {
  --hdr-safe-px: env(safe-area-inset-top, 0px);
}

h1 {
  width: 100%;
  max-width: 220px;
}
@media (max-width: 1024px) {
  h1 {
    max-width: 200px;
  }
}

header {
  background: linear-gradient(to bottom, #F5FDFF 0%, #F5FDFF 80%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  max-width: 100vw;
  height: 84px;
}

.header_mv {
  position: relative;
}
.header_mv .wrapper {
  padding: 0;
}

.header_mv > .wrapper {
  padding: 0;
}

.header_contents {
  width: 100%;
  max-width: 1500px;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  z-index: 20;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 24px;
}
.header_contents .headerlogo_area {
  display: flex;
  justify-content: space-between;
}
.header_contents .fixed-btn {
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
}

.header_menuouter {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.header_menu {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background-color: #ffffff;
  border: 2px solid #1B657D;
  border-radius: 50px;
  padding: 16px 64px;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
}

@media (max-width: 1080px) {
  .header_contents {
    top: 16px;
    transition-duration: 0s;
  }
  .header_menu {
    line-height: 1;
    padding: 16px 36px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .header_menu {
    display: none;
  }
}
/* menulist */
.menulist {
  line-height: 1.3;
}
.menulist .en {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1.5px;
}
.menulist .ja {
  font-weight: 500;
  color: #2B4247;
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}
.menulist p.en, .menulist p.ja {
  transition: all 0.3s ease;
}
.menulist:hover p.en, .menulist:hover p.ja {
  color: #1B657D;
  scale: 1.05;
}
@media (max-width: 1024px) {
  .menulist p, .menulist a {
    font-size: min(0.9em, 16px);
  }
  .menulist .ja {
    font-size: min(0.9em, 16px);
  }
  .menulist .fixed-btn {
    padding: 12px 20px;
  }
}

.menulist.is-compact {
  display: none;
}

.header_contents,
.header_menuouter,
.header_menu,
.headerlogo_area h1,
.fixed-btn {
  transition: all 0.24s ease;
}

/* === コンパクトモード（ヒーローを抜けたら付与） === */
.header_contents.is-compact {
  top: 0px; /* 24px → 8px */
  gap: 0;
  padding: 8px 24px; /* 24px → 12px */
  max-width: 100vw;
  width: 100vw;
  flex-direction: row; /* 2段 → 1行横並び */
  align-items: center;
  background: linear-gradient(to bottom, #F5FDFF 0%, #F5FDFF 80%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 1024px) {
  .header_contents.is-compact {
    background: unset;
    top: 16px;
  }
}
.header_contents.is-compact .headerlogo_area {
  padding-bottom: 20px;
}
.header_contents.is-compact .fixed-btn {
  display: none;
}
.header_contents.is-compact .menulist.is-compact {
  display: block;
}

/* ロゴ小さめに */
.header_contents.is-compact h1 {
  max-width: max(160px, 10vw); /* 220px → 180px（お好みで） */
}

/* 右側へ寄せる */
.header_contents.is-compact .header_menuouter {
  margin-left: auto;
}

/* ピル型メニューをミニサイズに */
.header_contents.is-compact .header_menu {
  gap: 24px; /* 40px → 16px */
  padding: 4px 16px 20px; /* 16px 64px → 8px 16px */
  border-radius: 0px;
  border: none;
  background: none;
  box-shadow: none;
  align-items: center;
}
.header_contents.is-compact .header_menu .menulist p.ja {
  font-size: clamp(0.75rem, 0.659rem + 0.23vw, 1rem);
}
.header_contents.is-compact .header_menu .fixed-btn {
  border: 1px solid #1B657D;
  box-shadow: none;
}
.header_contents.is-compact .header_menu .fixed-btn p {
  color: #ffffff;
  font-weight: 500;
}
@media (max-width: 1092px) {
  .header_contents.is-compact .header_menu .fixed-btn {
    display: none;
  }
}

/* お問い合わせボタンも少しだけ縮める */
.header_contents.is-compact .fixed-btn {
  padding: 8px 14px;
  font-size: clamp(0.85rem, 0.8rem + 0.2vw, 1rem);
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  top: 24px;
  right: 12px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border: 0px solid #2B4247;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
  background: rgb(255, 251, 244);
  box-sizing: content-box;
  border-radius: 4px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  right: 10px;
  height: 2px;
  border-radius: 4px;
  background-color: #2B4247;
  width: 32px;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
  width: 28px;
  background-color: #1B657D;
}
.openbtn span:nth-of-type(2) {
  top: 24px;
  width: 28px;
  background-color: #1B657D;
}
.openbtn span:nth-of-type(3) {
  top: 32px;
  width: 28px;
  background-color: #1B657D;
}
.openbtn:hover span:nth-of-type(1) {
  top: 14px;
}
.openbtn:hover span:nth-of-type(3) {
  top: 34px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 32px;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 32px;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.header_nav_hum {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(244, 244, 244, 0.94);
  background-size: cover;
  background-position: left left;
  background-repeat: no-repeat;
  transition: all 0.6s;
  background-repeat: repeat-x;
  background-size: cover;
  animation: bgScroll 200s linear infinite;
}
.header_nav_hum.panelactive {
  right: 0;
}
.header_nav_hum.panelactive .header_nav_hum_wrapper {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header_nav_hum .header_nav_hum_block {
  position: absolute;
  z-index: 999;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
  text-align: center;
}
@keyframes bgScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.header_nav_hum_block .header_logo_mob {
  margin-bottom: 40px;
}
.header_nav_hum_block .header_nav_hum_list {
  margin-top: 120px;
}
.header_nav_hum_block li:not(:last-of-type) {
  padding-bottom: 36px;
}
.header_nav_hum_block a {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header_nav_hum_block .menulistbox {
  margin-top: 40px;
}
.header_nav_hum_block .menulistbox .menulist p {
  font-size: 16px;
}
.header_nav_hum_block .fixed-btn {
  margin: 0px auto 0;
}
.header_nav_hum_block .fixed-btn p {
  color: #fff;
}

.header_nav_hum_title {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 16px;
  width: 80%;
  margin: 0 auto;
}

.header_nav_hum_img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.header_nav_hum_img .header_nav_hum_img-inner img {
  width: 80%;
}

footer {
  position: relative;
  overflow-x: hidden;
  padding-top: 7.8vw;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 104vw;
  aspect-ratio: 1440/108;
  pointer-events: none;
  background: url("/assets/img/svg/footer_top_beige.svg") no-repeat center/cover;
}

.bg_wrapper {
  background-color: #FFFBF5;
  padding-top: 60px;
}
.bg_wrapper .contact {
  margin-top: 0;
}
.bg_wrapper .contact .articlebox {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.bg_wrapper .contact .articlebox .box_img {
  max-width: 320px;
}

.footer-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 660px;
  gap: 40px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .footer-area {
    align-items: center;
  }
}
.footer-area .f_logo img {
  width: 200px;
}
@media (max-width: 1024px) {
  .footer-area .f_logo img {
    width: 180px;
  }
}
.footer-area p {
  line-height: 1.6;
}
.footer-area .address_boxouter {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.footer-area .owner_box p {
  text-align: center;
}
.footer-area .owner_box .owner {
  font-size: 1.2em;
  font-weight: 600;
}
.footer-area .address_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.footer-area .address_list {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.footer-area .address_list img {
  width: 20px;
}
.footer-area .menulistbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-area .menulist p.ja {
  text-align: left;
}

.footer_cr {
  width: 100%;
  align-items: center;
  color: #FFFDFA;
  text-align: center;
  font-weight: 500;
  font-size: 0.87rem;
  background-color: #1B657D;
}

@media (max-width: 768px) {
  .footer_cr {
    width: 100%;
    height: 30px;
    line-height: 30px;
  }
}
.btn {
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 36px;
  color: #fff;
  font-weight: 600;
  background-color: #fff;
  border: 2px solid #1B657D;
  border-radius: 100px;
  transition-duration: 0.4s;
  box-shadow: 0 6px 14px rgba(27, 101, 125, 0.07), 0 2px 8px rgba(27, 101, 125, 0.02);
}
.btn p {
  font-weight: 600;
  color: #2B4247;
  margin: 0;
}
.btn:hover {
  transform: scale(1.1);
  border-color: #D68600;
}
.btn p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  letter-spacing: 0.02em;
}
.btn .btn-inner .en {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.btn .btn-inner .ja {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-btn-outer {
  position: fixed;
  z-index: 990;
  width: 100%;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 32px;
  background: linear-gradient(to top, rgba(43, 66, 71, 0.6) 0%, rgba(43, 66, 71, 0) 100%);
}

.fixed-btn {
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 36px;
  color: #fff;
  font-weight: 600;
  background-color: #fff;
  border: 2px solid #1B657D;
  border-radius: 100px;
  transition-duration: 0.4s;
  box-shadow: 0 0px 8px rgba(214, 134, 0, 0.7);
  margin: 0 auto;
  padding: 12px 32px;
  background-color: #D68600;
  font-size: 1.1rem;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  display: flex;
  align-items: center;
}
.fixed-btn p {
  font-weight: 600;
  color: #2B4247;
  margin: 0;
}
.fixed-btn:hover {
  transform: scale(1.1);
  border-color: #D68600;
}
.fixed-btn .btn-inner .en {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.fixed-btn .btn-inner .ja {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.fixed-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-btn02 {
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 36px;
  color: #fff;
  font-weight: 600;
  background-color: #fff;
  border: 2px solid #1B657D;
  border-radius: 100px;
  transition-duration: 0.4s;
  box-shadow: 0 0px 8px rgba(27, 101, 125, 0.2);
  margin: 0 auto;
  padding: 12px 32px;
  background-color: #fff;
  font-size: 1.1rem;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  display: flex;
  align-items: center;
}
.fixed-btn02 p {
  font-weight: 600;
  color: #2B4247;
  margin: 0;
}
.fixed-btn02:hover {
  transform: scale(1.1);
  border-color: #D68600;
}
.fixed-btn02 .btn-inner .en {
  color: #1B657D;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.fixed-btn02 .btn-inner .ja {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.fixed-btn02 .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* top */
/* 1) 余白系をゼロにして計測を正確化 */
.mv_img-inner,
.mv_img-inner figure {
  margin: 0;
  padding: 0;
  border: 0;
}

/* 2) 親は overflow hidden、トラックは左詰め＋gapのみで整列 */
.mv {
  overflow: hidden;
  margin-top: min(3vw, 40px);
}

.mv_img {
  position: relative;
  min-width: 375px; /* 必要なら維持OK */
  display: flex;
  justify-content: flex-start; /* ★ centerは禁止（開始位置がズレる原因） */
  align-items: center;
  gap: 24px; /* ★ JS側の実測に一致（実測されるのでここが基準） */
}

/* 3) アイテムは固定幅要素として扱う（flexが縮まない） */
.mv_img-inner {
  flex: 0 0 auto;
  overflow: hidden; /* 角丸内で切るならkeep */
  border-radius: 10px; /* 角丸は wrapper に付与（画像と同じでもOK） */
}

/* 4) 画像は“幅＋比率”で高さを決める。min-heightは外す */
.mv_img-inner img {
  display: block;
  width: clamp(240px, 40vw, 500px); /* レイアウトに合わせて調整 */
  aspect-ratio: 16/12; /* ★高さブレ防止（比率は任意） */
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 2px solid #1B657D;
}
@media (max-width: 768px) {
  .mv_img-inner img {
    border: 2px solid #1B657D;
  }
}

/* SP時に角丸や幅を変えたいならここで分岐 */
/* 動きOFFの環境では停止 */
@media (prefers-reduced-motion: reduce) {
  .mv_img {
    transform: none !important;
  }
}
.hero-txt {
  margin-top: 40px;
}

.mv_img-lower-layer {
  position: relative;
  max-width: 1200px;
  overflow: hidden;
  padding: 0 20px;
  margin: min(16px, 2vw) auto 0;
}
.mv_img-lower-layer .ttl-txt {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 28px;
  background-color: #fff;
  border-radius: 28px;
  border: 2px solid #1B657D;
  min-width: 320px;
}
@media (max-width: 768px) {
  .mv_img-lower-layer .ttl-txt {
    padding: 10px 20px;
    top: 42%;
  }
}
.mv_img-lower-layer .ttl-txt p, .mv_img-lower-layer .ttl-txt h2 {
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  font-size: 1.4em;
  color: #1B657D;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .mv_img-lower-layer {
    border-radius: 0;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .mv_img-lower-layer .mv_img-inner {
    border-radius: 0;
  }
}
.mv_img-lower-layer .mv_img-inner img {
  display: block;
  width: 100%;
  aspect-ratio: 4/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .mv_img-lower-layer .mv_img-inner img {
    border-radius: 0;
  }
}
@media (max-width: 1024px) {
  .mv_img-lower-layer .mv_img-inner img {
    border-radius: 0;
    border-left: unset;
    border-right: unset;
    height: 300px;
  }
}

.box_img {
  box-shadow: 0 6px 12px rgba(27, 101, 125, 0.09), 0 2px 8px rgba(27, 101, 125, 0.02);
  border-radius: 16px;
}
.box_img img {
  border-radius: 16px;
  border: 2px solid #1B657D;
}

.articlebox .desc {
  max-width: 760px;
}

.desc {
  margin-top: min(24px, 1.6vw);
  text-align: justify;
}

.cardbox-outer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
  gap: min(40px, 6vw);
  margin-top: min(40px, 4vw);
}

.cardbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 14px;
  border: 2px solid #1B657D;
  background-color: #FFFBF5;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
  padding: 20px;
}
.cardbox .card-ttl {
  font-family: "Zen Kaku Gothic New";
  font-weight: 900;
  color: #1B657D;
  position: relative;
  line-height: 1.4;
}
.cardbox .box_img {
  max-width: 280px;
  box-shadow: none;
}
.cardbox .box_img img {
  border: none;
}

.top h2.ttl {
  font-size: clamp(1.375rem, 1.057rem + 1.59vw, 2.25rem);
}

.about-nichinan.max-width-1080 {
  margin-top: min(40px, 4vw);
}

.about-nichinan.max-width-1080 .box_img {
  margin: min(40px, 4vw) auto 0;
  max-width: 760px;
}

.about-kigyoban {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.about-kigyoban h3.ttl {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  line-height: 1.4;
}
.about-kigyoban .box_taximg {
  max-width: 520px;
}
.about-kigyoban .articlebox.ttlbox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1024px) {
  .about-kigyoban .articlebox.ttlbox {
    gap: min(24px, 1.6vw);
  }
}
.about-kigyoban .cardbox-outer {
  margin-top: min(28px, 3vw);
}
.about-kigyoban .cardbox {
  gap: 8px;
}
.about-kigyoban .card-ttl {
  line-height: 1.4;
  font-size: 1.4em;
}
.about-kigyoban .desc {
  margin-top: min(24px, 1.6vw);
  max-width: 440px;
}
.about-kigyoban .box_img {
  max-width: 320px;
}
@media (max-width: 768px) {
  .about-kigyoban .box_img {
    max-width: 280px;
  }
}

.initiatives .articlebox {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.initiatives .articlebox .box_img {
  max-width: 320px;
}
.initiatives .cardbox {
  align-items: center;
  padding: 32px 20px;
}
@media (max-width: 768px) {
  .initiatives .cardbox {
    padding: 32px 16px;
  }
}
.initiatives .cardbox .txt {
  width: 330px;
}
@media (max-width: 768px) {
  .initiatives .cardbox .txt {
    width: 300px;
  }
}
.initiatives .cardbox .btn {
  margin: 12px auto 0;
}
@media (max-width: 768px) {
  .initiatives .cardbox .btn {
    margin: 0 auto;
  }
}
.initiatives .cardbox h3.ttl {
  font-size: 1.2em;
  font-family: "Zen Kaku Gothic New";
  font-weight: 800;
  margin: 0 auto;
  line-height: 1.6;
}
.initiatives .cardbox .box_img {
  max-width: 360px;
}
@media (max-width: 768px) {
  .initiatives .cardbox .box_img {
    max-width: 300px;
  }
}

.focus-area01 {
  position: relative;
  overflow-x: hidden;
  padding-top: 7.78vw;
  padding-bottom: 7.8vw;
}
@media (max-width: 768px) {
  .focus-area01 {
    padding-top: 6.7vw;
    padding-bottom: 6.7vw;
  }
}
.focus-area01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 104vw;
  aspect-ratio: 1440/108;
  pointer-events: none;
  background: url("/assets/img/svg/secouter_top_beige.svg") no-repeat center/cover;
  z-index: 10;
}
.focus-area01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 104vw;
  aspect-ratio: 1440/108;
  pointer-events: none;
  background: url("/assets/img/svg/secouter_btm_beige.svg") no-repeat center/cover;
  z-index: 10;
}
.focus-area01 .bg_wrapper {
  background-color: #FFEFD6;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .focus-area01 .bg_wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.project {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.project .desc {
  max-width: 460px;
}
.project .btn {
  margin: 24px 0 0;
}
@media (max-width: 1024px) {
  .project .h2 {
    text-align: center;
  }
  .project .btn {
    margin: 24px auto 0;
  }
}
.project .box_img {
  box-shadow: unset;
  width: min(490px, 80vw);
}
.project .box_img img {
  border: none;
}

.flow {
  padding-bottom: 20px;
}
.flow .cardbox-outer {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 16px;
  border: 2px solid #1B657D;
  padding: 32px;
  margin: min(40px, 4vw) auto 0;
}
@media (max-width: 1024px) {
  .flow .cardbox-outer {
    flex-direction: column;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.flow .cardbox {
  border: none;
  border-radius: unset;
  box-shadow: none;
  background-color: unset;
  max-width: 330px;
  padding: 0;
  gap: 8px;
  width: 28%;
}
@media (max-width: 1024px) {
  .flow .cardbox {
    max-width: unset;
    width: 100%;
  }
}
.flow .cardbox .box_img {
  border: none;
  border-radius: unset;
  background-color: unset;
  padding: 0;
}
@media (max-width: 1024px) {
  .flow .cardbox-arrow {
    transform: rotate(90deg);
  }
}
.flow .desc {
  margin-top: 0;
  max-width: 400px;
  min-height: 154px;
}
@media (max-width: 1024px) {
  .flow .desc {
    min-height: unset;
    margin: 0 auto;
  }
}
.flow .box_img {
  max-width: 210px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
}
.flow h3.ttl {
  font-size: 1.2em;
  margin: 0 auto;
  width: 210px;
}
.flow .article_img {
  margin: 24px auto 0;
  max-width: 560px;
}

.cta_box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.cta_box .ctatxt {
  position: relative;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
}
.cta_box .ctatxt::before {
  position: absolute;
  content: "";
  background-image: url(../assets/img/common/svg/icon-polygon-left.svg);
  width: 22px;
  height: 40px;
  bottom: 0;
  left: -1em;
}
.cta_box .ctatxt::after {
  position: absolute;
  content: "";
  background-image: url(../assets/img/common/svg/icon-polygon-right.svg);
  width: 22px;
  height: 40px;
  bottom: 0;
  right: -1em;
}
@media (max-width: 1024px) {
  .cta_box .ctatxt {
    line-height: 1.4;
  }
  .cta_box .ctatxt::before {
    left: -1.4em;
  }
  .cta_box .ctatxt::after {
    right: -1.4em;
  }
}

.fixed-btn {
  margin: 0 auto;
}

.not-found h1, .not-found .articlebox {
  max-width: 480px;
  margin: 0 auto;
}

.about-nichinan-lower .slide-area {
  margin-top: 24px;
}
.about-nichinan-lower .slide_img {
  display: flex;
  gap: 24px;
}
.about-nichinan-lower .mv_img-inner {
  max-width: 300px;
}
.about-nichinan-lower .desc {
  margin-top: min(24px, 2vw);
}
.about-nichinan-lower .sec02 .box_img {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 0 20px;
  box-shadow: none;
}
.about-nichinan-lower .sec02 .cardbox-outer {
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .about-nichinan-lower .sec02 .cardbox-outer {
    display: none;
  }
}
.about-nichinan-lower .sec02 button.btn {
  margin-top: 0px;
}
.about-nichinan-lower .sec03 {
  padding-bottom: 20px;
}
.about-nichinan-lower .sec03 figcaption {
  font-size: 0.9em;
  font-weight: 600;
  color: #1B657D;
  margin-top: 4px;
}
@media (max-width: 1024px) {
  .about-nichinan-lower .sec03 h2.ttl {
    text-align: center;
  }
}
.about-nichinan-lower .sec03 h3.ttl {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .about-nichinan-lower .sec03 h3.ttl {
    text-align: center;
  }
}
.about-nichinan-lower .sec03 .articlebox {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 768px) {
  .about-nichinan-lower .sec03 .articlebox {
    gap: 60px;
  }
}
.about-nichinan-lower .sec03 .articlelist {
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  .about-nichinan-lower .sec03 .articlelist {
    flex-direction: column;
    gap: 16px;
  }
}
.about-nichinan-lower .sec03 .articlelist:nth-of-type(2) {
  flex-flow: row-reverse;
}
@media (max-width: 768px) {
  .about-nichinan-lower .sec03 .articlelist:nth-of-type(2) {
    flex-flow: column;
  }
}
.about-nichinan-lower .sec03 .gragh-outer {
  width: min(450px, 30vw);
  min-width: 400px;
}
@media (max-width: 768px) {
  .about-nichinan-lower .sec03 .gragh-outer {
    min-width: unset;
    width: auto;
    max-width: 450px;
    margin: 0 auto;
  }
}
.about-nichinan-lower .sec03 .box_img {
  box-shadow: none;
}

.about-kigyoban-lower {
  padding-bottom: 20px;
}
.about-kigyoban-lower .sec01 .articlebox {
  margin-left: auto;
  margin-right: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.about-kigyoban-lower .sec01 .box_img.program-img {
  max-width: 640px;
  margin: 40px auto 0;
  box-shadow: none;
}
.about-kigyoban-lower .sec01 .box_img.program-img img {
  border: none;
  border-radius: 0;
}
.about-kigyoban-lower .sec01 .box_img.program-img .desc {
  margin-top: 8px;
}
.about-kigyoban-lower .sec01 .meritbox {
  margin-top: min(120px, 12vw);
  display: flex;
  flex-direction: column;
  gap: min(80px, 8vw);
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}
.about-kigyoban-lower .sec01 .meritbox h3.ttl {
  padding: 8px 24px;
  border-radius: 50px;
  border: 2px solid #2B4247;
  color: #2B4247;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
}
@media (max-width: 768px) {
  .about-kigyoban-lower .sec01 .meritbox h3.ttl {
    margin-left: auto;
    margin-right: auto;
  }
}
.about-kigyoban-lower .sec01 .meritbox ul {
  margin: 0.5em 0;
  list-style: disc outside;
}
.about-kigyoban-lower .sec01 .meritbox .desc {
  margin-top: min(12px, 1.4vw);
  list-style: outside;
  margin-left: 16px;
}
.about-kigyoban-lower .sec01 .meritbox .desc::marker {
  color: #2B4247;
}
.about-kigyoban-lower .sec01 .merit-list {
  display: flex;
  gap: min(40px, 5vw);
}
@media (max-width: 768px) {
  .about-kigyoban-lower .sec01 .merit-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.about-kigyoban-lower .sec01 .merit-list:nth-of-type(2) {
  flex-flow: row-reverse;
}
@media (max-width: 768px) {
  .about-kigyoban-lower .sec01 .merit-list:nth-of-type(2) {
    flex-flow: wrap;
  }
}
.about-kigyoban-lower .sec01 .merit-list .box_img {
  max-width: 360px;
  box-shadow: none;
}
.about-kigyoban-lower .sec01 .merit-list.merit01 h3 {
  background-color: #FFEFD6;
}
.about-kigyoban-lower .sec01 .merit-list.merit02 h3 {
  background-color: #CDEAF4;
}
.about-kigyoban-lower .sec01 .merit-list.merit03 h3 {
  background-color: #FFF5F5;
}
.about-kigyoban-lower .sec01 .merit-list.merit03 .desc {
  list-style: none;
  margin-left: 0;
}
.about-kigyoban-lower .sec02 {
  border: 2px solid #1B657D;
  background-color: #FFFBF5;
  padding: min(42px, 6vw) min(60px, 6vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.about-kigyoban-lower .sec02 .articlebox {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: min(24px, 4vw);
  padding-inline-start: 1.2em;
  margin: 0.5em 0;
  list-style: disc outside; /* 基本は outside */
}
.about-kigyoban-lower .sec02 .articlebox a {
  text-decoration: underline;
  font-weight: 500;
}
.about-kigyoban-lower .sec02 .articlebox .desc {
  list-style: outside;
  margin-top: min(24px, 4vw);
}
.about-kigyoban-lower .sec02 .articlebox .desc:first-of-type {
  margin-top: 0;
}
.about-kigyoban-lower .sec02 .articlebox desc::marker {
  color: #2B4247; /* 見た目だけここで調整 */
}

.plan-lower .desc {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.plan-lower .sec01 h3.ttl {
  font-family: "Zen Kaku Gothic New";
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  font-weight: 800;
  line-height: 1.4;
}
.plan-lower .sec01 span {
  display: block;
  margin: 0px auto 0;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  font-weight: 700;
}
@media (max-width: 1024px) {
  .plan-lower .sec01 .concept_msg {
    max-width: 480px;
    margin: 0 auto;
  }
}
.plan-lower .sec01 .box_img-outer {
  max-width: 480px;
  margin: 0 auto;
}
.plan-lower .sec01 .articlebox:last-of-type {
  margin: min(32px, 4vw) auto;
  padding: max(16px, 3.2vw);
  border: 2px solid #1B657D;
  background-color: #F5FDFF;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan-lower .sec01 .articlebox:last-of-type img {
  border: none;
  border-radius: 0;
}
.plan-lower .sec01 .box_img {
  margin: 24px auto 0;
  max-width: 760px;
}
.plan-lower .sec02 .mayors-msgbox {
  background-color: #fff;
  padding: max(16px, 6vw) max(16px, 4vw);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #1B657D;
}
.plan-lower .sec02 .mayors-msgbox h2, .plan-lower .sec02 .mayors-msgbox h3 {
  max-width: 760px;
  margin: 0 auto;
}
.plan-lower .sec02 .mayors-msgbox .articlebox {
  margin-top: min(24px, 4vw);
}
.plan-lower .sec02 .mayors-msgbox .desc {
  text-align: justify;
}
.plan-lower .sec02 .mayors-msgbox .namebox {
  display: flex;
  justify-content: right;
  gap: 8px;
  max-width: 760px;
  margin: 16px auto 0;
}
.plan-lower .sec02 .mayors-msgbox .namebox p {
  color: #1B657D;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.plan-lower .sec02 .mayors-msgbox .namebox img {
  border: none;
  border-radius: 0;
}
.plan-lower .sec02 .slide-area {
  max-width: 760px;
  margin: min(40px, 8vw) auto 0;
}
.plan-lower .sec02 .slide-area .mv_img-inner {
  max-width: 200px;
}
.plan-lower .sec03 {
  padding-bottom: 20px;
}
.plan-lower .sec03 h2.ttl {
  font-family: "Zen Maru Gothic";
}
.plan-lower .sec03 .topimg {
  max-width: 420px;
  margin: min(24px, 1.6vw) auto 0;
}
.plan-lower .sec03 .articlebox {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media (max-width: 768px) {
  .plan-lower .sec03 .articlebox {
    gap: 24px;
  }
}
.plan-lower .sec03 .articlelist {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .plan-lower .sec03 .articlelist {
    gap: 16px;
  }
}
.plan-lower .sec03 .story01 {
  flex-flow: row-reverse;
}
.plan-lower .sec03 .story01 .box_img {
  min-width: 236px;
}
@media (max-width: 768px) {
  .plan-lower .sec03 .story01 {
    flex-wrap: wrap;
  }
  .plan-lower .sec03 .story01 .box_img {
    min-width: unset;
    max-width: 50%;
    margin: 0 auto;
  }
}
.plan-lower .sec03 .story02 .box_img {
  min-width: 186px;
}
@media (max-width: 768px) {
  .plan-lower .sec03 .story02 {
    flex-wrap: wrap;
  }
  .plan-lower .sec03 .story02 .box_img {
    min-width: unset;
    max-width: 50%;
    margin: 0 auto;
  }
}
.plan-lower .sec03 .story03 {
  flex-direction: column;
}
.plan-lower .sec03 .story03 .desc:first-of-type {
  margin-top: 0;
}
.plan-lower .sec03 .story03 .box_img-outer {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .plan-lower .sec03 .story03 .box_img-outer {
    gap: 8px;
  }
}
.plan-lower .sec03 .story04 .desc:first-of-type {
  margin-top: 0;
}
.plan-lower .sec03 .story04 .box_img {
  max-width: 300px;
}
@media (max-width: 768px) {
  .plan-lower .sec03 .story04 {
    flex-wrap: wrap;
  }
  .plan-lower .sec03 .story04 .box_img {
    min-width: unset;
    margin: 0 auto;
  }
}

.initiatives-children {
  padding-bottom: 20px;
}
.initiatives-children h3.ttl {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .initiatives-children h3.ttl {
    text-align: center;
  }
}
.initiatives-children .desc {
  margin-top: min(24px, 2vw);
}
.initiatives-children .sec01 .articlebox-outer {
  display: flex;
  flex-direction: column;
  gap: min(80px, 8vw);
}
.initiatives-children .sec01 .articlebox {
  display: flex;
  gap: min(40px, 5vw);
}
@media (max-width: 1024px) {
  .initiatives-children .sec01 .articlebox {
    flex-flow: wrap;
    justify-content: center;
  }
}
.initiatives-children .sec01 .articlebox:nth-of-type(even) {
  flex-flow: row-reverse;
}
@media (max-width: 1024px) {
  .initiatives-children .sec01 .articlebox:nth-of-type(even) {
    flex-flow: wrap;
  }
}
.initiatives-children .sec01 .box_img {
  max-width: 420px;
  height: -moz-fit-content;
  height: fit-content;
}
.initiatives-children .sec01 .articlebox.descbox {
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0;
}
.initiatives-children .sec01 .articlebox.descbox .desc {
  text-align: center;
}
@media (max-width: 1024px) {
  .initiatives-children .sec01 .articlebox.descbox .desc {
    text-align: left;
  }
}
.initiatives-children .sec02 .articlebox, .initiatives-children .sec03 .articlebox {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.initiatives-children .sec02 .articlebox .desc, .initiatives-children .sec03 .articlebox .desc {
  text-align: center;
}
@media (max-width: 1024px) {
  .initiatives-children .sec02 .articlebox .desc, .initiatives-children .sec03 .articlebox .desc {
    text-align: justify;
  }
}
.initiatives-children .sec02 .results-list, .initiatives-children .sec03 .results-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: min(40px, 5vw);
}
.initiatives-children .sec02 .results-list li, .initiatives-children .sec03 .results-list li {
  padding: 8px 24px;
  border-radius: 40px;
  border: 2px solid #1B657D;
  background-color: #fff;
  box-shadow: none;
}
@media (max-width: 1024px) {
  .initiatives-children .sec02 .results-list li, .initiatives-children .sec03 .results-list li {
    padding: 6px 20px;
    font-size: 0.98em;
  }
}
.initiatives-children .sec03 {
  padding-bottom: 20px;
}

.initiatives-heritage {
  padding-bottom: 20px;
  /* 停止（ユーザーの設定に配慮） */
}
.initiatives-heritage h3.ttl {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  line-height: 1.5;
}
.initiatives-heritage .desc {
  margin-top: min(24px, 2vw);
}
.initiatives-heritage .sec01 .articlebox-outer {
  display: flex;
  flex-direction: column;
  gap: min(80px, 8vw);
}
.initiatives-heritage .sec01 .articlebox {
  display: flex;
  gap: min(40px, 5vw);
}
@media (max-width: 1024px) {
  .initiatives-heritage .sec01 .articlebox {
    flex-flow: wrap;
    justify-content: center;
  }
}
.initiatives-heritage .sec01 .articlebox:nth-of-type(even) {
  flex-flow: row-reverse;
}
@media (max-width: 1024px) {
  .initiatives-heritage .sec01 .articlebox:nth-of-type(even) {
    flex-flow: wrap;
  }
}
.initiatives-heritage .sec01 .box_img {
  max-width: 420px;
  height: -moz-fit-content;
  height: fit-content;
}
.initiatives-heritage .sec01 .articlebox.descbox {
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0;
}
.initiatives-heritage .sec01 .articlebox.descbox .desc {
  text-align: center;
}
@media (max-width: 1024px) {
  .initiatives-heritage .sec01 .articlebox.descbox .desc {
    text-align: justify;
  }
}
.initiatives-heritage .sec01 .articlebox.storybox {
  flex-direction: column;
}
.initiatives-heritage .sec01 .articlebox.storybox .article-list {
  display: flex;
  flex-direction: column;
  gap: min(80px, 8vw);
}
.initiatives-heritage .sec01 .list-block {
  display: flex;
  gap: min(40px, 5vw);
}
.initiatives-heritage .sec01 .list-block .desc {
  margin-top: 0;
}
.initiatives-heritage .sec01 .list-block .box_img {
  min-width: min(360px, 80vw);
}
@media (max-width: 1024px) {
  .initiatives-heritage .sec01 .list-block {
    flex-flow: wrap-reverse;
    justify-content: center;
  }
}
.initiatives-heritage .sec01 .list-block:nth-of-type(2) {
  flex-flow: row-reverse;
}
@media (max-width: 1024px) {
  .initiatives-heritage .sec01 .list-block:nth-of-type(2) {
    flex-flow: wrap-reverse;
  }
}
@media (max-width: 1024px) {
  .initiatives-heritage .sec01 h3.ttl {
    text-align: center;
  }
}
.initiatives-heritage .sec02 .articlebox-outer {
  display: flex;
  flex-direction: column;
  gap: min(16px, 6vw);
}
.initiatives-heritage .sec02 .articlebox-outer > .desc {
  margin-top: 0;
}
.initiatives-heritage .sec02 .articlebox {
  display: flex;
  justify-content: center;
  gap: min(40px, 5vw);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .initiatives-heritage .sec02 .articlebox {
    flex-direction: column;
    justify-content: center;
  }
  .initiatives-heritage .sec02 .articlebox h3.ttl {
    text-align: center;
  }
}
.initiatives-heritage .sec02 .articlebox figcaption {
  font-size: 0.9em;
  font-weight: 500;
  color: #1B657D;
  line-height: 1.5;
  margin-top: 4px;
}
.initiatives-heritage .sec02 .articlebox .box_img-outer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.initiatives-heritage .sec02 .articlebox .box_img {
  width: 290px;
}
.initiatives-heritage .sec03 {
  padding-bottom: 20px;
}
.initiatives-heritage .sec03 .articlebox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.initiatives-heritage .sec03 .articlebox figcaption {
  font-size: 0.9em;
  font-weight: 500;
  color: #1B657D;
  line-height: 1.4;
  margin-top: 4px;
}
.initiatives-heritage .sec03 .articlebox .desc {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 1024px) {
  .initiatives-heritage .sec03 .articlebox .desc {
    text-align: left;
  }
}
.initiatives-heritage .sec03 .articlebox .desc:first-of-type {
  margin-top: 0;
}
.initiatives-heritage .sec03 .results-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: min(40px, 5vw);
}
.initiatives-heritage .sec03 .results-list li {
  padding: 8px 24px;
  border-radius: 40px;
  border: 2px solid #1B657D;
  background-color: #fff;
  box-shadow: none;
}
@media (max-width: 1024px) {
  .initiatives-heritage .sec03 .results-list li {
    padding: 6px 20px;
    font-size: 0.98em;
  }
}
.initiatives-heritage .frame-outer {
  width: -moz-fit-content;
  width: fit-content;
  margin: max(-4vw, -60px) auto 0;
  border: 2px solid #1B657D;
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.initiatives-heritage .movie-frame {
  position: relative;
  background: #ddd;
  aspect-ratio: 16/9; /* 必要なら 4/3 や 21/9 に変更 */
}
.initiatives-heritage .movie {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .initiatives-heritage .movie {
    display: none;
  }
  .initiatives-heritage .movie-frame {
    /* poster を背景に */
    background: #ddd url("/assets/video/culture-poster.webp") center/cover no-repeat;
  }
}

.initiatives-sports {
  padding-bottom: 20px;
}
.initiatives-sports h3.ttl {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .initiatives-sports h3.ttl {
    text-align: center;
  }
}
.initiatives-sports .desc {
  margin-top: min(24px, 2vw);
}
.initiatives-sports .sec01 .articlebox-outer {
  display: flex;
  flex-direction: column;
  gap: min(80px, 8vw);
}
.initiatives-sports .sec01 .articlebox {
  display: flex;
  gap: min(40px, 5vw);
}
@media (max-width: 1024px) {
  .initiatives-sports .sec01 .articlebox {
    flex-flow: wrap;
    justify-content: center;
  }
}
.initiatives-sports .sec01 .articlebox:nth-of-type(even) {
  flex-flow: row-reverse;
}
@media (max-width: 1024px) {
  .initiatives-sports .sec01 .articlebox:nth-of-type(even) {
    flex-flow: wrap;
  }
}
.initiatives-sports .sec01 .box_img-outer {
  display: flex;
  gap: min(40px, 3vw);
  margin: -20px auto 0;
  max-width: 700px;
}
.initiatives-sports .sec01 .box_img-outer .box_img {
  max-width: 330px;
}
.initiatives-sports .sec01 .box_img-outer .box_img img {
  border-radius: 12px;
}
.initiatives-sports .sec01 .box_img {
  max-width: 420px;
  height: -moz-fit-content;
  height: fit-content;
}
.initiatives-sports .sec01 .articlebox.descbox {
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0;
}
.initiatives-sports .sec01 .articlebox.descbox .desc {
  text-align: center;
}
@media (max-width: 1024px) {
  .initiatives-sports .sec01 .articlebox.descbox .desc {
    text-align: left;
  }
}
.initiatives-sports .sec02 .articlebox, .initiatives-sports .sec03 .articlebox {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.initiatives-sports .sec02 .articlebox .desc, .initiatives-sports .sec03 .articlebox .desc {
  text-align: center;
}
@media (max-width: 1024px) {
  .initiatives-sports .sec02 .articlebox .desc, .initiatives-sports .sec03 .articlebox .desc {
    text-align: justify;
  }
}
.initiatives-sports .sec02 .results-list, .initiatives-sports .sec03 .results-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: min(40px, 5vw);
}
.initiatives-sports .sec02 .results-list li, .initiatives-sports .sec03 .results-list li {
  padding: 8px 24px;
  border-radius: 40px;
  border: 2px solid #1B657D;
  background-color: #fff;
  box-shadow: none;
}
@media (max-width: 1024px) {
  .initiatives-sports .sec02 .results-list li, .initiatives-sports .sec03 .results-list li {
    padding: 6px 20px;
    font-size: 0.98em;
  }
}
.initiatives-sports .sec03 {
  padding-bottom: 20px;
}

.initiatives-transport {
  padding-bottom: 20px;
}
.initiatives-transport h3.ttl {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .initiatives-transport h3.ttl {
    text-align: center;
  }
}
.initiatives-transport .desc {
  margin-top: min(24px, 2vw);
}
.initiatives-transport .sec01 .articlebox-outer {
  display: flex;
  flex-direction: column;
  gap: min(80px, 8vw);
}
.initiatives-transport .sec01 .articlebox {
  display: flex;
  gap: min(40px, 5vw);
}
@media (max-width: 1024px) {
  .initiatives-transport .sec01 .articlebox {
    flex-flow: wrap;
    justify-content: center;
  }
}
.initiatives-transport .sec01 .articlebox:nth-of-type(even) {
  flex-flow: row-reverse;
}
@media (max-width: 1024px) {
  .initiatives-transport .sec01 .articlebox:nth-of-type(even) {
    flex-flow: wrap;
  }
}
.initiatives-transport .sec01 .box_img {
  max-width: 420px;
  height: -moz-fit-content;
  height: fit-content;
}
.initiatives-transport .sec01 .articlebox.descbox {
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0;
}
.initiatives-transport .sec01 .articlebox.descbox .desc {
  text-align: center;
}
@media (max-width: 1024px) {
  .initiatives-transport .sec01 .articlebox.descbox .desc {
    text-align: left;
  }
}
.initiatives-transport .sec02 .articlebox, .initiatives-transport .sec03 .articlebox {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.initiatives-transport .sec02 .articlebox .desc, .initiatives-transport .sec03 .articlebox .desc {
  text-align: center;
}
@media (max-width: 1024px) {
  .initiatives-transport .sec02 .articlebox .desc, .initiatives-transport .sec03 .articlebox .desc {
    text-align: justify;
  }
}
.initiatives-transport .sec02 .results-list, .initiatives-transport .sec03 .results-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: min(40px, 5vw);
}
.initiatives-transport .sec02 .results-list li, .initiatives-transport .sec03 .results-list li {
  padding: 8px 24px;
  border-radius: 40px;
  border: 2px solid #1B657D;
  background-color: #fff;
  box-shadow: none;
}
@media (max-width: 1024px) {
  .initiatives-transport .sec02 .results-list li, .initiatives-transport .sec03 .results-list li {
    padding: 6px 20px;
    font-size: 0.98em;
  }
}
.initiatives-transport .sec03 {
  padding-bottom: 20px;
}/*# sourceMappingURL=style.css.map */