@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
:root {
  --ui-font-family: "UD Shin Go Light", "BIZ UDPGothic", "メイリオ", sans-serif;
  --ui-font-family-bold: "UD Shin Go Regular", "BIZ UDPGothic", "メイリオ", sans-serif;
  --ui-font-regular: 500;
  --ui-font-bold: 500;
  --ui-text-color: #34373c;
  --ui-primary-color: #003da5;
  --ui-accent-color: #fadf00;
  --ui-border-color: #b6b6b6;
  --ui-bg-color: #f9fafc;
  --ui-hover-gb-color: #ebf1fc;
  --ui-hover-primary-color: #03317f;
}

/* ===========================================
リセットcss
=========================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background-color: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
select {
  vertical-align: middle;
}

/* ===========================================
CMSスタイル
=========================================== */
*,
::before,
::after {
  box-sizing: border-box;
}

/* html5用 */
article,
aside,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

/* スタイルリセット
============================== */
/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
input[type=reset] {
  border-radius: 0;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
}

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

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input.fedbt,
input[type=button],
input[type=text],
input[type=submit] {
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
}

/* プレースホルダー文字色 */
:-moz-placeholder-shown {
  color: #757578;
}

:-ms-input-placeholder {
  color: #757578;
}

::placeholder {
  color: #757578;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: #757578;
}

/* Firefox 18- */
:-moz-placeholder {
  color: #757578;
  opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
  color: #757578;
  opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
  color: #757578;
}

a[href],
label[for],
input[type=button],
input[type=submit],
input[type=reset],
input[type=image],
input[type=radio],
input[type=checkbox],
select {
  cursor: pointer;
}

button {
  cursor: pointer;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  font-family: var(--ui-font-family);
  color: inherit;
}

fieldset {
  border: none;
}

address {
  font-style: normal;
}

a img {
  vertical-align: bottom;
}

/*---------------
font
----------------*/
:where(b, strong) {
  font-weight: var(--ui-font-bold);
}

/*------------------------------
初期設定
-------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  background-color: #fff;
  color: var(--ui-text-color);
  line-height: 1.7;
  font-family: var(--ui-font-family);
  font-weight: var(--ui-font-regular);
  min-height: 100svh;
  overflow-x: auto;
}
body#base {
  text-align: left;
}
body strong {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
}

.smartcity {
  min-width: calc(1200px + 3.2rem);
}
@media screen and (max-width: 768px) {
  .smartcity {
    min-width: 0;
  }
}

a:link {
  color: var(--ui-primary-color);
}
a:link:hover {
  color: #002a72;
}

input[type=text], input[type=email], input[type=number], input[type=tel] {
  font-family: var(--ui-font-family);
  font-weight: var(--ui-font-regular);
}

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

.sp-only,
.pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only,
  .pc-none {
    display: block !important;
  }
}

p {
  margin-bottom: 1em;
}

summary::-webkit-details-marker {
  display: none;
}

/*-------------------------------
ガイダンス
--------------------------------*/
/* ------------------  PC/SP切り替え  ------------------ */
.switchBtn {
  background-color: #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.switchBtn button {
  padding: 11px 20px 10px;
  margin: 0 1px 0 0;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  /*font-size: 1.3rem;*/
  font-size: 0.8rem;
  position: relative;
}

#swPc.btnAcv,
#swSp.btnAcv {
  background-color: #e8e8e8;
  border: 1px solid #e8e8e8;
  color: #000;
}

#swPc.btnAcv::before,
#swSp.btnAcv::before {
  position: absolute;
  top: 21px;
  left: 7px;
  display: block;
  content: " ";
  width: 4px;
  height: 4px;
  margin-top: -5px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ------------------  ガイダンス系  ------------------ */
/* 隠しメッセージ */
p.jsmessage {
  background-color: #fff;
  padding: 10px;
  margin: 0;
  color: #000;
}

/* 隠しジャンプ（jsからcssでの実装へ変更） */
.blockskip {
  padding: 0;
  margin: 0;
}

.skip {
  width: 1px;
  color: #000 !important;
  font-size: 0.1%;
  line-height: 0.1;
  background-color: #fff !important;
  position: absolute;
  left: -3000px;
  z-index: 9999;
}

a.skip {
  color: #003377 !important;
  background-color: #fff !important;
  text-align: center;
  padding: 2px 0;
  top: auto;
}

a.skip:active {
  display: block;
  width: 99.99%;
  font-size: 100%;
  line-height: 1.6;
  top: 0;
  left: 0;
}

a.skip:focus {
  display: block;
  width: 99.99%;
  font-size: 100%;
  line-height: 1.6;
  top: 0;
  left: 0;
}

.show {
  line-height: 1.5 !important;
  background-color: #f6f6f6 !important;
  border-bottom: solid 1px #999 !important;
  color: #0a2530;
}

.show a {
  color: #000 !important;
  line-height: 150% !important;
  background-color: transparent;
}

/* スペーサー、ガイダンス、隠しジャンプ */
.blockjump {
  margin: 0;
  padding: 0;
  height: 1px;
  width: 1px;
  position: absolute;
  overflow: hidden;
}

.img-guidance {
  margin: 0 !important;
  padding: 0 !important;
  height: 1px !important;
  width: 1px !important;
  position: absolute;
  overflow: hidden;
}

#baseall {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}
#baseall main {
  flex-grow: 1;
}

/*---------------------------------------
header
----------------------------------------*/
.header-wrapper {
  max-width: calc(1200px + 3.2rem);
  margin: 0 auto;
  padding: 0 1.6rem;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-wrapper {
    position: relative;
    z-index: 3;
  }
}

.sc-header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  padding: 1.6rem 0 2rem 0;
  column-gap: 2.4rem;
  row-gap: 1rem;
}
@media screen and (max-width: 768px) {
  .sc-header {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

.logo-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .logo-area {
    height: 7rem;
  }
}
.logo-area .sc-logo {
  margin-bottom: 0;
  padding-bottom: 0;
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.2rem, 2vw, 2.4rem);
  column-gap: 1rem;
}
.logo-area .sc-logo a {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.2rem, 2vw, 2.4rem);
  column-gap: 1rem;
  color: var(--ui-text-color);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .logo-area .sc-logo {
    flex-wrap: wrap;
  }
}
.logo-area .sc-search {
  max-width: 28rem;
}

.sc-menu {
  grid-column: 1/2;
}
@media screen and (max-width: 768px) {
  .sc-menu {
    display: none;
  }
  .sc-menu.active {
    display: block;
    position: absolute;
    width: 100vw;
    background: var(--ui-primary-color);
    color: #fff;
    top: 7rem;
    left: 0;
    overflow-y: auto;
    z-index: 999;
  }
}
.sc-menu .sc-main-menu {
  display: flex;
  justify-content: flex-end;
  column-gap: 2rem;
  margin-right: -1.6rem;
}
.sc-menu .sc-main-menu li {
  background: none;
  padding: 0;
}
.sc-menu .sc-main-menu li a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  color: var(--ui-text-color);
  position: relative;
  transition: all 0.2s ease-in-out;
}
.sc-menu .sc-main-menu li a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--ui-primary-color);
  transition: all 0.5s ease-in-out;
}
@media (hover: hover) {
  .sc-menu .sc-main-menu li a:where(:any-link, :enabled, summary):hover {
    color: var(--ui-primary-color);
  }
  .sc-menu .sc-main-menu li a:where(:any-link, :enabled, summary):hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sc-menu .sc-main-menu {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sc-menu .sc-main-menu {
    text-align: left;
  }
  .sc-menu .sc-main-menu li {
    border-bottom: 1px solid #fff;
  }
  .sc-menu .sc-main-menu li a {
    width: 100%;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    padding-right: 3rem;
    color: #fff;
  }
  .sc-menu .sc-main-menu li a::before {
    content: "";
    width: 2rem;
    aspect-ratio: 1/1;
    background-image: url("/images/link-line.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
  }
  .sc-menu .sc-main-menu li a::after {
    content: none;
  }
}
.sc-menu .menu-close-btn {
  position: static;
  transform: none;
  margin: 1.6rem auto;
}

.sc-purpose-menu {
  grid-column: 2/3;
  grid-row: 1/3;
  margin: auto;
}

.sc-header-btn {
  width: 9rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  font-size: 1.2rem;
  border: 1px solid var(--ui-primary-color);
  color: var(--ui-primary-color);
  transition: background-color 0.2s ease-in-out;
  font-family: inherit;
  font-weight: inherit;
  line-height: 1.2;
}
@media (hover: hover) {
  .sc-header-btn:where(:any-link, :enabled, summary):hover {
    background-color: var(--ui-hover-gb-color);
    border-color: var(--ui-primary-color);
  }
}
.sc-header-btn .icon {
  display: block;
  width: 45%;
  aspect-ratio: 1/1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.sc-header-btn .icon.icon-purpose {
  background-image: url("/images/icon-purpose.png");
}
.sc-header-btn .icon.icon-close {
  background-image: url("/images/icon-purpose-close.png");
}
.sc-header-btn .icon.icon-search {
  background-image: url("/images/icon-search.png");
}
@media screen and (max-width: 768px) {
  .sc-header-btn {
    width: 5.5rem;
    font-size: 1rem;
  }
}
.sc-header-btn.menu {
  background-color: var(--ui-primary-color);
  color: #fff;
}
.sc-header-btn.menu .icon-menu {
  background-image: url("/images/icon-menu.png");
}
.sc-header-btn.menu .icon-close {
  background-image: url("/images/icon-close-w.png");
}

.sc-search {
  width: 100%;
}
.sc-search .gsc-input-box {
  border-radius: 50em;
  background: #f5f5f5;
  border-color: #d6d6d6;
  display: block;
  width: 100%;
  padding: 0;
}
.sc-search .gsc-input-box tbody {
  display: block;
  padding-right: 70px;
}
@media screen and (max-width: 768px) {
  .sc-search .gsc-input-box tbody {
    padding-right: 0;
  }
}
.sc-search .gsc-input-box .gsib_a input {
  height: 30px !important;
  background-image: none !important;
  background-color: transparent !important;
}
.sc-search .gsc-search-box {
  display: block;
  position: relative;
}
.sc-search .gsc-search-box > tbody {
  display: block;
}
.sc-search .gsc-search-box > tbody > tr {
  display: block;
  width: 100%;
}
.sc-search .gsc-search-box .gsc-input {
  display: block;
  width: 100%;
}
.sc-search .gsc-search-box .gsc-search-button {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .sc-search .gsc-search-box .gsc-search-button {
    position: static;
    padding-top: 1.6rem;
    text-align: center;
  }
}
.sc-search .gsc-search-box .gsc-search-button .gsc-search-button-v2 {
  background-color: var(--ui-primary-color);
  border-color: var(--ui-primary-color);
  height: 100%;
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  white-space: nowrap;
  border-radius: 50rem;
  height: 41px;
  width: 70px;
  position: absolute;
  left: -67px;
  padding: 0;
}
.sc-search .gsc-search-box .gsc-search-button .gsc-search-button-v2 svg {
  display: none;
}
.sc-search .gsc-search-box .gsc-search-button .gsc-search-button-v2::before {
  content: "検索";
  display: block;
}
@media screen and (max-width: 768px) {
  .sc-search .gsc-search-box .gsc-search-button .gsc-search-button-v2 {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 54px;
    left: 0;
  }
  .sc-search .gsc-search-box .gsc-search-button .gsc-search-button-v2::after {
    content: "";
    width: 2.4rem;
    aspect-ratio: 1/1;
    background-image: url("/images/icon-search-w.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 1.3rem;
    left: 2rem;
  }
}
.sc-search .gsst_a .gscb_a {
  color: var(--ui-primary-color);
}

.sc-purpose-menu-detail {
  display: none;
  position: absolute;
  max-width: 1200px;
  width: 100%;
  top: 13.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ui-primary-color);
  border-radius: 4rem;
  padding: 2rem 3.2rem 6.4rem 2rem;
  justify-content: space-around;
  z-index: 999;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.19), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
}
.sc-purpose-menu-detail .menu-area {
  width: 34rem;
  padding: 1.6rem;
  border-radius: 2rem;
  background-color: #fff;
  text-align: left;
  position: relative;
  border: 3px solid var(--ui-primary-color);
}
.sc-purpose-menu-detail .menu-area .menu-title {
  padding-left: 7rem;
  font-size: 3.2rem;
  color: var(--ui-primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 6.5rem;
}
.sc-purpose-menu-detail .menu-area .menu-title::before {
  content: "";
  width: 6.5rem;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
}
.sc-purpose-menu-detail .menu-area .menu-title.use::before {
  background-image: url("/images/icon-use.png");
}
.sc-purpose-menu-detail .menu-area .menu-title.group::before {
  background-image: url("/images/icon-group.png");
}
.sc-purpose-menu-detail .menu-area .menu-title.know::before {
  background-image: url("/images/icon-know.png");
}
.sc-purpose-menu-detail .menu-area .menu-title .small {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
}
.sc-purpose-menu-detail.active {
  display: flex;
}

.menu-close-btn {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.8rem 3.2rem;
  border-radius: 50rem;
  border: 1px solid transparent;
  color: #fff;
  text-decoration: underline;
  font-size: 1em;
  background: transparent;
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  .menu-close-btn:where(:any-link, :enabled, summary):hover {
    background: var(--ui-hover-gb-color);
    color: var(--ui-primary-color);
  }
}

.layer-link-area li {
  margin-left: 0.8rem;
  margin-bottom: 1.6rem;
  font-family: var(--ui-font-family);
  font-weight: var(--ui-font-regular);
  padding-left: 2em;
  position: relative;
}
.layer-link-area li::before {
  content: "";
  width: 2.4rem;
  aspect-ratio: 1/1;
  background-image: url("/images/icon-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.layer-link-area li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .sp-btn-area {
    display: flex !important;
    column-gap: 0.8rem;
  }
}

@media screen and (max-width: 768px) {
  .sc-logo img {
    width: clamp(9.8rem, 26vw, 15rem);
  }
}

@media screen and (max-width: 768px) {
  .sp-only#sp-sc-search {
    display: none !important;
  }
  .sp-only#sp-sc-search.active {
    display: block !important;
    position: absolute;
    top: 7rem;
    left: 0;
    width: 100vw;
    padding: 1.6rem;
    background: #fff;
    z-index: 4;
  }
}
.sp-only#sp-sc-search .menu-close-btn {
  position: static;
  transform: none;
  margin: 1.6rem auto;
  color: var(--ui-primary-color);
}

.sc-sub-menu {
  padding: 0 1.6rem;
}
.sc-sub-menu > li {
  margin: 0;
  padding: 0;
}
.sc-sub-menu > li .purpose-details {
  background-color: #fff;
  border-radius: 2rem;
  margin: 1.6rem 0;
  padding: 0 0.8rem 0 0.8rem;
}
.sc-sub-menu > li .purpose-details .purpose-sammary {
  display: block;
  text-align: left;
  color: var(--ui-primary-color);
  padding: 1.6rem 0 1.6rem 2.8rem;
  font-size: 1.8rem;
  position: relative;
}
.sc-sub-menu > li .purpose-details .purpose-sammary::before {
  content: "";
  width: 2.4rem;
  aspect-ratio: 1/1;
  background-image: url("/images/icon-plus.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sc-sub-menu > li .purpose-details .purpose-sammary .title {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-left: 5.5rem;
}
.sc-sub-menu > li .purpose-details .purpose-sammary .title small {
  display: block;
  font-size: 1.2rem;
}
.sc-sub-menu > li .purpose-details .purpose-sammary .title::before {
  content: "";
  width: 4.8rem;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -0.6rem;
  left: 0.25rem;
}
.sc-sub-menu > li .purpose-details .purpose-sammary .title.use::before {
  background-image: url("/images/icon-use.png");
}
.sc-sub-menu > li .purpose-details .purpose-sammary .title.group::before {
  background-image: url("/images/icon-group.png");
}
.sc-sub-menu > li .purpose-details .purpose-sammary .title.know::before {
  background-image: url("/images/icon-know.png");
}
.sc-sub-menu > li .purpose-details li {
  text-align: left;
  margin-left: 1.6rem;
}
.sc-sub-menu > li .purpose-details li:last-child {
  padding-bottom: 1.6rem;
}
.sc-sub-menu > li .purpose-details[open] .purpose-sammary::before {
  background-image: url("/images/icon-minus.png");
}

.bgdrop {
  width: 100%;
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
}

/*---------------------------------------
footer
----------------------------------------*/
.smart-footer {
  display: flex;
  background: var(--ui-bg-color);
  align-items: flex-end;
  position: relative;
  /*---------------------------------------
  footer(TOP)
  ----------------------------------------*/
}
.smart-footer .t_page-top {
  z-index: 2;
  right: 4rem;
}
@media screen and (max-width: 768px) {
  .smart-footer .t_page-top {
    right: 1rem;
  }
  .smart-footer .t_page-top.bottom {
    transform: translateY(calc(-100% - 1rem));
  }
}
.smart-footer .t_page-top a img {
  transition: transform 0.4s ease-in-out;
}
@media (hover: hover) {
  .smart-footer .t_page-top a:where(:any-link, :enabled, summary):hover img {
    transform: translateY(0);
  }
}
@media screen and (hover: hover) and (min-width :769px) {
  .smart-footer .t_page-top a:where(:any-link, :enabled, summary):hover img {
    transform: translateY(-30%);
  }
}
.smart-footer.top {
  position: relative;
  z-index: 1;
  background: transparent;
}

.footer-area {
  width: 100%;
  position: relative;
}
.footer-area::before {
  content: "";
  width: 1.4rem;
  height: 100%;
  background-color: var(--ui-accent-color);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .footer-area::before {
    content: none;
  }
}
.footer-area::after {
  content: "";
  width: 50%;
  background-color: var(--ui-primary-color);
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .footer-area::after {
    content: none;
  }
}

.footer-wrapper {
  max-width: 1200px;
  width: calc(100% - 140px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer-wrapper {
    width: 100%;
  }
}
.footer-wrapper .footer-link {
  border-top-right-radius: 4rem;
  background: var(--ui-primary-color);
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1rem, 9.5vw, 14rem);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 auto;
}
.footer-wrapper .footer-link ul {
  display: inline-flex;
  column-gap: 2.4rem;
}
.footer-wrapper .footer-link ul li {
  background: none;
  margin-left: 0;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-link ul li {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.footer-wrapper .footer-link ul li a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-link ul {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-link {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-link {
    padding: 2.4rem 0 0 0;
    border-left: 0.4rem solid var(--ui-accent-color);
  }
}
.footer-wrapper p {
  margin-bottom: 0;
}
.footer-wrapper p small {
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-wrapper p small {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper p {
    text-align: center;
    padding-bottom: 1.6rem;
  }
}
.footer-wrapper .contents-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/*------------------------------
パンくずリスト
-------------------------------*/
.headIn-cont {
  padding: 1rem 0;
  border-top: 1px solid var(--ui-border-color);
}

.pankuzu-bg {
  padding: 0.8rem 0;
  margin-bottom: 0;
  background: none;
}
.pankuzu-bg .pankuzu {
  max-width: calc(1200px + 3.2rem);
  margin: 0 auto;
  padding: 0 1.6rem;
  font-size: 1.4rem;
  width: auto;
}
.pankuzu-bg .pankuzu ol {
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
}
.pankuzu-bg .pankuzu ol li:not(.pk-thispage) {
  padding-right: 2.5rem;
  position: relative;
}
.pankuzu-bg .pankuzu ol li:not(.pk-thispage)::before {
  content: "";
  width: 0.8rem;
  aspect-ratio: 8/14;
  height: auto;
  background-image: url("/images/bread-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 0.85rem;
  transform: translateY(-50%);
  border: none;
}
.pankuzu-bg .pankuzu ol li:not(.pk-thispage) a {
  color: var(--ui-text-color);
}

/*日付＆SNSボタン*/
.smart-main #date_area {
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 768px) {
  .smart-main #date_area {
    justify-content: flex-start;
    align-items: flex-end;
    margin: 15px 0 15px;
    flex-direction: column;
  }
  .smart-main #date_area .update {
    margin-top: 1rem;
  }
}

/*------------------------------------------
お問い合わせ
-------------------------------------------*/
.smart-main .contact {
  padding: 2.4rem;
  background-color: #f9fbff;
  border: 2px dashed var(--ui-primary-color);
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .smart-main .contact {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
.smart-main .contact h2 {
  padding: 0;
  border-bottom: none;
  font-size: 1.6rem;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  color: var(--ui-primary-color);
}
.smart-main .contact p {
  margin: 0;
}
.smart-main .contact p:first-of-type {
  margin-top: 0;
}
.smart-main .contact p:first-of-type > strong:first-of-type {
  display: inline-block;
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  color: var(--ui-primary-color);
}
.smart-main .contact .con-mail {
  margin-top: 2.4rem;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .smart-main .contact .con-mail {
    text-align: center;
  }
}
.smart-main .contact .con-mail a {
  min-width: 26.9rem;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  display: inline-block;
  background-color: #fff;
  text-decoration: none;
  width: auto;
  padding: 1.2rem 3.4rem;
  border: 1px solid var(--ui-primary-color);
  border-radius: 50rem;
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  .smart-main .contact .con-mail a:where(:any-link, :enabled, summary):hover {
    color: var(--ui-primary-color);
    background-color: var(--ui-hover-gb-color);
    border-color: var(--ui-primary-color);
  }
}
@media screen and (max-width: 768px) {
  .smart-main .contact .con-mail a {
    width: min(100%, 26.9rem);
    min-width: 0;
  }
}

/*------------------------------------------
コンテンツ評価
-------------------------------------------*/
form.feedback {
  padding: 2.4rem;
  background-color: #f9fbff;
  border: 2px dashed var(--ui-primary-color);
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  form.feedback {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
form.feedback h2 {
  font-size: 2rem;
  color: var(--ui-primary-color);
}
form.feedback p {
  margin: 1.6rem 0 2.4rem 0;
}
form.feedback .form-h3 {
  margin: 0;
  color: var(--ui-text-color);
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
}
form.feedback div.fedd {
  margin-left: 0;
}
form.feedback div.fedd input {
  margin-top: 0;
  accent-color: var(--ui-primary-color);
}
form.feedback .submitbox {
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  form.feedback .submitbox {
    text-align: center;
  }
}
form.feedback .submitbox .fedbt {
  padding: 1.2rem 3.4rem;
  min-width: 26.9rem;
  border-radius: 50rem;
  border: 1px solid var(--ui-primary-color);
  background-color: var(--ui-primary-color);
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  form.feedback .submitbox .fedbt:where(:any-link, :enabled, summary):hover {
    background-color: #002e7d;
    border-color: #002e7d;
  }
}
@media screen and (max-width: 768px) {
  form.feedback .submitbox .fedbt {
    width: min(100%, 26.9rem);
    min-width: 0;
  }
}

.smart-main {
  display: flex;
  flex-direction: column;
  /*------------------------------
     ページタイトル
  -------------------------------*/
}
.smart-main #atcont {
  flex-grow: 1;
  min-height: 100%;
  padding-bottom: 10rem;
  background-color: var(--ui-bg-color);
}
.smart-main .h1bg {
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
  padding: 10rem 0 7.6rem 0;
  background-image: url("/images/title-bg.png");
  background-size: 25%;
  background-position: -10% center;
  background-repeat: no-repeat;
  background-color: var(--ui-primary-color);
  border: none;
  color: #fff;
  text-align: left;
}
.smart-main .h1bg > div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.6rem;
  border-bottom: 5px solid var(--ui-accent-color);
  position: relative;
  z-index: 1;
  width: calc(100% - 3.2rem);
}
@media screen and (max-width: 768px) {
  .smart-main .h1bg > div {
    padding: 0;
    min-height: calc(6.72rem + 36px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.smart-main .h1bg > div h1 {
  font-size: 3.6rem;
  padding: 0 0 4.5rem 0;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .smart-main .h1bg > div h1 {
    font-size: 2.8rem;
    padding-bottom: 1.8rem;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .smart-main .h1bg {
    padding: 1.8rem 0 3.2rem 0;
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
  }
}
.smart-main .main_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.6rem;
  background: #fff;
  border: 1px solid #e5ebf6;
  padding: 0 1.6rem;
  border-radius: 4rem;
  margin-top: 4.2rem;
  padding: 6rem clamp(1rem, 9.5vw, 14rem);
}
@media screen and (max-width: 768px) {
  .smart-main .main_inner {
    border-radius: 2rem;
    max-width: calc(100% - 2rem);
    margin: 3rem 1rem 0 1rem;
    padding: 3rem 1rem;
  }
}

/*------------------------------
   リンク1列
-------------------------------*/
.smart-main .norcor,
.smart-main .site-li {
  padding-left: 0;
}
.smart-main .norcor li,
.smart-main .site-li li {
  border-bottom: 1px solid var(--ui-border-color);
  padding: 1.6rem;
}
@media screen and (max-width: 768px) {
  .smart-main .norcor li,
  .smart-main .site-li li {
    padding: 1.6rem 1rem;
  }
}
.smart-main .norcor li a,
.smart-main .site-li li a {
  display: block;
  padding-left: 3rem;
  position: relative;
  background-image: none;
}
.smart-main .norcor li a::after,
.smart-main .site-li li a::after {
  content: "";
  width: 2.4rem;
  aspect-ratio: 1/1;
  background-image: url("/images/icon-doc.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.smart-main .norcor li a:is(a[href$="/index.html"])::after,
.smart-main .site-li li a:is(a[href$="/index.html"])::after {
  background-image: url("/images/icon-index.png");
}
.smart-main .norcor li .date,
.smart-main .site-li li .date {
  display: block;
  width: 10em;
  float: left;
}
@media screen and (max-width: 768px) {
  .smart-main .norcor li .date,
  .smart-main .site-li li .date {
    float: none;
    margin-bottom: 0.8rem;
  }
}
.smart-main .norcor li .title,
.smart-main .site-li li .title {
  display: block;
  margin-left: 10em;
  width: calc(100% - 10em);
}
@media screen and (max-width: 768px) {
  .smart-main .norcor li .title,
  .smart-main .site-li li .title {
    margin-left: 0;
    width: 100%;
  }
}

/*------------------------------
   リンク1列（子・孫）
-------------------------------*/
.smart-main .m-title {
  border: none;
  background: none;
  margin-left: 0;
  margin-top: 2.4rem;
  margin-right: 0;
}
.smart-main .m-title div {
  padding: 0;
  border-left: 0;
}
.smart-main .m-title div h2 {
  padding: 1.6rem 4rem 1.6rem 2.4rem;
  border-left: 1rem solid var(--ui-accent-color);
  color: #fff;
  background: var(--ui-primary-color);
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  position: relative;
}
.smart-main .m-title div h2 a {
  color: #fff;
  text-decoration: none;
  padding: 0;
  background-image: none;
}
@media (hover: hover) {
  .smart-main .m-title div h2 a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}
.smart-main .m-title div h2::after {
  content: "";
  width: 2.9rem;
  aspect-ratio: 1/1;
  background-image: url(/images/link-line.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

/*------------------------------
   リンク2列（子・孫）/ 3列
-------------------------------*/
.smart-main .menulist {
  display: flex;
  justify-content: space-between;
  margin: 0;
  column-gap: 2.4rem;
}
.smart-main .menulist .m-box2,
.smart-main .menulist .m-box3 {
  float: none;
  margin-right: 0;
  width: calc((100% - 2.4rem) / 2);
}
@media screen and (max-width: 768px) {
  .smart-main .menulist .m-box2,
  .smart-main .menulist .m-box3 {
    width: 100%;
  }
}
.smart-main .menulist .m-box2 .m-box3,
.smart-main .menulist .m-box3 .m-box3 {
  width: calc((100% - 4.8rem) / 3);
}
.smart-main .menulist .m-box2 .site-li,
.smart-main .menulist .m-box3 .site-li {
  margin: 0;
  padding: 0;
}
.smart-main .menulist .m-box2 .site-li li,
.smart-main .menulist .m-box3 .site-li li {
  padding: 1.6rem;
  background: none;
}
.smart-main .menulist.clearfix::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .smart-main .menulist {
    display: block;
  }
}

/*------------------------------
   リンク2列（子・孫）/ 3列
-------------------------------*/
.smart-main .menulist2 {
  display: flex;
  justify-content: space-between;
  margin: 0;
  column-gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .smart-main .menulist2 {
    display: block;
  }
}
.smart-main .menulist2 .m-box2 {
  width: calc((100% - 2.4rem) / 2);
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .smart-main .menulist2 .m-box2 {
    width: 100%;
  }
}
.smart-main .menulist2 .m-box2 .img-area-l {
  margin-left: 0;
  padding-top: 1.6rem;
  column-gap: 1rem;
  margin-top: 0;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .smart-main .menulist2 .m-box2 .img-area-l {
    display: block;
  }
}
.smart-main .menulist2 .m-box2 .img-area-l .imglink-txt-left {
  max-width: 50%;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .smart-main .menulist2 .m-box2 .img-area-l .imglink-txt-left {
    float: none;
    max-width: 100%;
    width: fit-content;
    display: block;
    margin: 0 auto;
  }
}
.smart-main .menulist2 .m-box2 .img-area-l .imglink-txt-left img {
  margin: 0;
  max-width: 100%;
}
.smart-main .menulist2 .m-box2 .img-area-l .txt-box {
  overflow: auto;
  margin-top: 0;
  padding-top: 1rem;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .smart-main .menulist2 .m-box2 .img-area-l .txt-box {
    text-align: center;
    margin-top: 0;
  }
}

/*------------------------------
   新着情報
-------------------------------*/
.smart-main .newinfo-box {
  background-color: var(--ui-bg-color);
  margin: 2.4rem 0;
  border-radius: 2rem;
  border: 0;
  padding: 3rem;
  background-image: none;
}
@media screen and (max-width: 768px) {
  .smart-main .newinfo-box {
    padding: 3rem 1.6rem;
  }
}
.smart-main .newinfo-box .newinfo-title {
  position: relative;
  font-size: 2.8rem;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  color: var(--ui-text-color);
  padding-bottom: 1rem;
  border-bottom: 0.5rem solid var(--ui-primary-color);
  background: none;
}
.smart-main .newinfo-box .newinfo-title::before {
  content: "";
  width: 9rem;
  height: 0.5rem;
  background-color: var(--ui-accent-color);
  position: absolute;
  top: 100%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .smart-main .newinfo-box .newinfo-title {
    font-size: 2rem;
  }
}
.smart-main .newinfo-box .info-list {
  margin: 0;
}
.smart-main .newinfo-box .info-list li {
  padding: 1.6rem 1rem;
  border-bottom: 1px solid var(--ui-border-color);
}
.smart-main .newinfo-box .ichiran-all {
  margin-top: 2.4rem;
  display: block;
  margin-right: 0;
}
.smart-main .newinfo-box .ichiran-all div {
  font-size: 100%;
  float: none;
  margin-bottom: 0;
  background-image: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .smart-main .newinfo-box .ichiran-all div {
    text-align: center;
  }
}
.smart-main .newinfo-box .ichiran-all div a {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  display: inline-block;
  padding: 1.4rem 9rem 1.4rem 2.4rem;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid var(--ui-primary-color);
  border-radius: 50rem;
  position: relative;
  transition: background-color 0.2s ease-in-out;
}
.smart-main .newinfo-box .ichiran-all div a::after {
  content: "";
  width: 3rem;
  aspect-ratio: 1/1;
  background-image: url("/images/link-line-b.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .smart-main .newinfo-box .ichiran-all div a {
    width: 100%;
    max-width: 30rem;
    text-align: center;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media (hover: hover) {
  .smart-main .newinfo-box .ichiran-all div a:where(:any-link, :enabled, summary):hover {
    color: var(--ui-primary-color);
    background-color: var(--ui-hover-gb-color);
    border-color: var(--ui-primary-color);
  }
}
.smart-main .newinfo-box .ichiran-all div a:visited {
  color: var(--ui-primary-color);
}
.smart-main ul.info-list li {
  display: flex;
  column-gap: 0.8rem;
  padding: 1.6rem 1rem;
  border-bottom: 1px solid var(--ui-border-color);
}
@media screen and (max-width: 768px) {
  .smart-main ul.info-list li {
    display: block;
    padding: 1rem;
  }
}
.smart-main ul.info-list li .date {
  display: block;
  width: 10em;
}
@media screen and (max-width: 768px) {
  .smart-main ul.info-list li .date {
    float: none;
    margin-bottom: 0.8rem;
  }
}
.smart-main ul.info-list li .title {
  margin-left: 0;
  width: calc(100% - 10em);
}
@media screen and (max-width: 768px) {
  .smart-main ul.info-list li .title {
    display: block;
    width: 100%;
  }
}

/*------------------------------------------
見出し h2 ~ h5
-------------------------------------------*/
.smartcity h2 {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .smartcity h2 {
    font-size: 2rem;
  }
}
.smartcity h3 {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  font-size: 2rem;
  background: none;
}
@media screen and (max-width: 768px) {
  .smartcity h3 {
    font-size: 1.8rem;
  }
}
.smartcity h4 {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  font-size: 1.8rem;
  background-image: none;
}
@media screen and (max-width: 768px) {
  .smartcity h4 {
    font-size: 1.7rem;
  }
}
.smartcity h5 {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  font-size: 1.6rem;
  background-image: none;
}
.smartcity .h2bg {
  margin: 2.4rem 0 1.6rem 0;
}
.smartcity .h2bg > div {
  border-bottom: 0.5rem solid var(--ui-primary-color);
  position: relative;
}
.smartcity .h2bg > div::before {
  content: "";
  width: 9rem;
  height: 0.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--ui-accent-color);
}
.smartcity .h2bg > div h2 {
  padding-bottom: 1.6rem;
}
.smartcity .h3bg {
  margin-top: 2.4rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.6rem;
  background-image: none;
}
.smartcity .h3bg > div {
  padding-left: 1.2rem;
  border-left: 1.2rem solid var(--ui-primary-color);
  border-bottom: 0.2rem solid var(--ui-primary-color);
  position: relative;
  background-image: none;
}
.smartcity .h3bg > div::before {
  content: "";
  width: 1.2rem;
  height: 1.4rem;
  background-image: url("/images/title-h3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -1.2rem;
}
.smartcity .h3bg > div h3 {
  padding-bottom: 0.8rem;
}
.smartcity .h4bg > div {
  margin: 1.6rem 0;
  border-left: 1.2rem solid var(--ui-primary-color);
  position: relative;
  padding-left: 1.2rem;
  position: relative;
}
.smartcity .h4bg > div::before {
  content: "";
  width: 1.2rem;
  height: 1.4rem;
  background-image: url("/images/title-h4.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -1.2rem;
}
.smartcity .h5bg {
  margin: 1.6rem 0;
  border-left: 0;
  color: var(--ui-primary-color);
}
.smartcity .h5bg > div {
  padding: 0;
}

.smart-main h2 {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .smart-main h2 {
    font-size: 2rem;
  }
}
.smart-main h3 {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  font-size: 2rem;
  background: none;
}
@media screen and (max-width: 768px) {
  .smart-main h3 {
    font-size: 1.8rem;
  }
}
.smart-main h4 {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  font-size: 1.8rem;
  background-image: none;
}
@media screen and (max-width: 768px) {
  .smart-main h4 {
    font-size: 1.7rem;
  }
}
.smart-main h5 {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  font-size: 1.6rem;
  background-image: none;
}
.smart-main .h2bg {
  margin: 2.4rem 0 1.6rem 0;
}
.smart-main .h2bg > div {
  border-bottom: 0.5rem solid var(--ui-primary-color);
  position: relative;
}
.smart-main .h2bg > div::before {
  content: "";
  width: 9rem;
  height: 0.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--ui-accent-color);
}
.smart-main .h2bg > div h2 {
  padding-bottom: 1.6rem;
}
.smart-main .h3bg {
  margin-top: 2.4rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.6rem;
  background-image: none;
}
.smart-main .h3bg > div {
  padding-left: 1.2rem;
  border-left: 1.2rem solid var(--ui-primary-color);
  border-bottom: 0.2rem solid var(--ui-primary-color);
  position: relative;
  background-image: none;
}
.smart-main .h3bg > div::before {
  content: "";
  width: 1.2rem;
  height: 1.4rem;
  background-image: url("/images/title-h3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -1.2rem;
}
.smart-main .h3bg > div h3 {
  padding-bottom: 0.8rem;
}
.smart-main .h4bg {
  margin-left: 0;
}
.smart-main .h4bg > div {
  margin: 1.6rem 0;
  border-left: 1.2rem solid var(--ui-primary-color);
  position: relative;
  padding-left: 1.2rem;
  position: relative;
}
.smart-main .h4bg > div::before {
  content: "";
  width: 1.2rem;
  height: 1.4rem;
  background-image: url("/images/title-h4.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -1.2rem;
}
.smart-main .h5bg {
  margin: 1.6rem 0;
  border-left: 0;
  color: var(--ui-primary-color);
}
.smart-main .h5bg > div {
  padding: 0;
}

/*------------------------------------------
ウィジウィグ設定
-------------------------------------------*/
.smartcity .wysiwyg_wp ul,
.smartcity .wysiwyg_wp ol {
  margin-bottom: 1.6rem;
  padding-left: 2rem;
}
.smartcity .wysiwyg_wp ul {
  overflow: visible;
  list-style-type: disc;
}
.smartcity .wysiwyg_wp ul li {
  color: var(--ui-text-color);
  list-style-type: disc;
  padding-left: 0;
  background-image: none;
}
.smartcity .wysiwyg_wp ol {
  padding-left: 3rem;
}
.smartcity .wysiwyg_wp ol li {
  margin-left: 0;
}
.smartcity .wysiwyg_wp table {
  font-size: 1.6rem;
  margin: 0;
  border: none;
}
.smartcity .wysiwyg_wp table th {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  padding: 1rem;
  background-color: var(--ui-primary-color);
  color: #fff;
  border: 1px solid #fff;
  border-bottom: 0;
}
.smartcity .wysiwyg_wp table th a {
  color: #fff;
}
.smartcity .wysiwyg_wp table th:first-child {
  border-left: 1px solid var(--ui-primary-color);
}
.smartcity .wysiwyg_wp table th:last-child {
  border-right: 1px solid var(--ui-primary-color);
}
.smartcity .wysiwyg_wp table td {
  padding: 1rem;
  border: 1px solid var(--ui-border-color);
}
.smartcity .wysiwyg_wp table caption {
  color: var(--ui-text-color);
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  margin-bottom: 1rem;
  font-size: 1.2em;
}
.smartcity .wysiwyg_wp .img-only,
.smartcity .wysiwyg_wp .img-center,
.smartcity .wysiwyg_wp .img-left,
.smartcity .wysiwyg_wp .img-right {
  width: fit-content;
  display: table;
  width: fit-content;
}
.smartcity .wysiwyg_wp .img-only img,
.smartcity .wysiwyg_wp .img-center img,
.smartcity .wysiwyg_wp .img-left img,
.smartcity .wysiwyg_wp .img-right img {
  max-width: 100%;
  height: auto;
}
.smartcity .wysiwyg_wp .img-center {
  margin-left: auto;
  margin-right: auto;
}
.smartcity .wysiwyg_wp .img-left {
  float: left;
  text-align: center;
  clear: none;
}
.smartcity .wysiwyg_wp .img-right {
  float: right;
  text-align: center;
  clear: none;
}
.smartcity .wysiwyg_wp .wysiwyg_wp {
  clear: both;
}
.smartcity .wysiwyg_wp .wysiwyg_wp:before,
.smartcity .wysiwyg_wp .wysiwyg_wp:after {
  content: "";
  display: table;
}
.smartcity .wysiwyg_wp .wysiwyg_wp::after {
  clear: both;
}

/*------------------------------------------
テーブル
-------------------------------------------*/
.smart-main .t-box, .smart-main .t-box2 {
  margin: 1.6rem 0;
}
.smart-main .t-box .table01, .smart-main .t-box2 .table01 {
  font-size: 1.6rem;
  margin: 0;
  border: none;
}
.smart-main .t-box .table01 th, .smart-main .t-box2 .table01 th {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  padding: 1rem;
  background-color: var(--ui-primary-color);
  color: #fff;
  border: 1px solid #fff;
  border-bottom: 0;
}
.smart-main .t-box .table01 th a, .smart-main .t-box2 .table01 th a {
  color: #fff;
}
.smart-main .t-box .table01 th:first-child, .smart-main .t-box2 .table01 th:first-child {
  border-left: 1px solid var(--ui-primary-color);
}
.smart-main .t-box .table01 th:last-child, .smart-main .t-box2 .table01 th:last-child {
  border-right: 1px solid var(--ui-primary-color);
}
.smart-main .t-box .table01 td, .smart-main .t-box2 .table01 td {
  padding: 1rem;
  border: 1px solid var(--ui-border-color);
}
.smart-main .t-box .table01 caption, .smart-main .t-box2 .table01 caption {
  color: var(--ui-text-color);
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  margin-bottom: 1rem;
  font-size: 1.2em;
}
.smart-main .t-box > .wysiwyg_wp, .smart-main .t-box2 > .wysiwyg_wp {
  margin-top: 1.6rem;
}
.smart-main .t-box p, .smart-main .t-box2 p {
  margin-left: 0;
}
.smart-main .youtube {
  max-width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .smart-main .youtube {
    width: 100%;
  }
}
.smart-main .youtube iframe {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .smart-main .youtube iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/*------------------------------------------
リンク＆ダウンロードリンク%ページ内リンク
-------------------------------------------*/
.smart-main p.filelink,
.smartcity p.filelink {
  margin: 1.6rem 0;
  background-image: none;
  padding: 0;
}
.smart-main p.filelink a,
.smartcity p.filelink a {
  display: inline-block;
  padding-left: 3rem;
  background-image: url("/images/icon-download.png");
  background-size: 2.4rem auto;
  background-repeat: no-repeat;
  background-position: left top;
}
.smart-main p.filelink a[href$=".pdf"],
.smartcity p.filelink a[href$=".pdf"] {
  background-image: url("/images/icon-pdf.png");
}
.smart-main p.filelink a[href$=".doc"], .smart-main p.filelink a[href$=".docx"],
.smartcity p.filelink a[href$=".doc"],
.smartcity p.filelink a[href$=".docx"] {
  background-image: url("/images/icon-word.png");
}
.smart-main p.filelink a[href$=".xls"], .smart-main p.filelink a[href$=".xlsx"],
.smartcity p.filelink a[href$=".xls"],
.smartcity p.filelink a[href$=".xlsx"] {
  background-image: url("/images/icon-excel.png");
}
.smart-main p.linktxt,
.smartcity p.linktxt {
  margin-left: 0;
}
.smart-main p.innerLink,
.smart-main p.externalLink,
.smartcity p.innerLink,
.smartcity p.externalLink {
  margin: 1.6rem 0;
  padding: 0;
}
.smart-main p.innerLink a,
.smart-main p.externalLink a,
.smartcity p.innerLink a,
.smartcity p.externalLink a {
  display: inline-block;
  padding-left: 3rem;
  background-image: url("/images/icon-arrow.png");
  background-size: 2.4rem auto;
  background-repeat: no-repeat;
  background-position: left top;
}
.smart-main p.externalLink a,
.smartcity p.externalLink a {
  background-image: url("/images/icon-external.png");
}
.smart-main ul.linkjump,
.smartcity ul.linkjump {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin: 1.6rem 0;
}
.smart-main ul.linkjump li,
.smartcity ul.linkjump li {
  background-image: none !important;
  margin: 0;
  padding: 1rem 1.6rem 1rem 5rem;
  float: none;
  background-color: #f9fbff;
  border-radius: 0.2rem;
  border: 1px dashed var(--ui-primary-color);
  position: relative;
}
.smart-main ul.linkjump li::before,
.smartcity ul.linkjump li::before {
  content: "";
  width: 2.4rem;
  aspect-ratio: 1/1;
  background-image: url("/images/icon-arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 1.6rem;
  top: 0.6rem;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .smart-main ul.linkjump li,
  .smartcity ul.linkjump li {
    white-space: wrap;
  }
}

/*------------------------------------------
adobe acrobat系
-------------------------------------------*/
.smart-main .dladobereader,
.smart-main .dlwindowsmediaplayer {
  clear: both;
  margin: 4.2rem 0;
  padding: 2.4rem;
  border: 1px solid var(--ui-border-color);
  background-color: #fff;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .smart-main .dladobereader,
  .smart-main .dlwindowsmediaplayer {
    padding: 2.4rem 1.6rem;
    margin: 2.4rem 0;
  }
}
.smart-main .dladobereader a,
.smart-main .dlwindowsmediaplayer a {
  margin-top: 1.6rem;
  display: inline-block;
}

/*------------------------------------------
地図情報
-------------------------------------------*/
.smart-main .map-area {
  padding-left: 0;
}
.smart-main .map-area .mapimg {
  padding-left: 0;
}

/*------------------------------------------
ファイル取り込み
-------------------------------------------*/
.smart-main .insertfile {
  margin: 1.6rem 0;
}
@media screen and (max-width: 768px) {
  .smart-main .insertfile iframe {
    max-width: 100%;
    max-height: 30rem;
  }
}

/*------------------------------------------
ページの先頭へ
-------------------------------------------*/
.smart-main div.tothispage2 {
  margin: 1.6rem 0;
}
.smart-main div.tothispage2 > div {
  background-image: none;
  position: relative;
  padding-left: 2.2rem;
}
.smart-main div.tothispage2 > div::before {
  content: "";
  width: 1.8rem;
  aspect-ratio: 1/1;
  background-image: url("/images/icon-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0.5rem;
  left: 0;
  transform: rotate(-90deg);
}

/*------------------------------------------
画像1列
-------------------------------------------*/
.smart-main .img-area {
  margin-top: 1.6rem;
}
.smart-main .img-area p {
  padding: 0;
  margin-bottom: 1.6rem;
}
.smart-main .img-area a {
  display: block;
}
.smart-main .img-area span {
  display: table-caption;
  caption-side: bottom;
  font-size: 1.4rem;
}
.smart-main .img-area .img-left,
.smart-main .img-area .img-right,
.smart-main .img-area .img-center {
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .smart-main .img-area .img-left,
  .smart-main .img-area .img-right {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.smart-main .img-area img {
  max-width: 100%;
  height: auto;
}

/*------------------------------------------
画像2列
-------------------------------------------*/
.smart-main .img-area .imglink-side2 {
  display: table;
  max-width: calc(50% - 1.2rem);
  margin-left: 0;
  margin-right: 2.4rem;
}
.smart-main .img-area .imglink-side2 img {
  max-width: 100%;
  margin-left: 0;
  height: auto;
}
.smart-main .img-area .imglink-side2:last-child {
  margin-right: 0;
}
.smart-main .img-area .imglink-side2 a + br {
  display: none;
}
.smart-main .img-area .imglink-side2 span {
  margin-left: 0;
  display: table-caption;
  caption-side: bottom;
}
@media screen and (max-width: 768px) {
  .smart-main .img-area .imglink-side2 {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }
}

/*------------------------------------------
画像3列
-------------------------------------------*/
.smart-main .img-area .imglink-side3 {
  display: table;
  max-width: calc((100% - 4.8rem) / 3);
  margin-left: 0;
  margin-right: 2.4rem;
}
.smart-main .img-area .imglink-side3 img {
  max-width: 100%;
  margin-left: 0;
  height: auto;
}
.smart-main .img-area .imglink-side3:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .smart-main .img-area .imglink-side3:last-child {
    margin-right: auto;
  }
}
.smart-main .img-area .imglink-side3 a + br {
  display: none;
}
.smart-main .img-area .imglink-side3 span {
  display: table-caption;
  caption-side: bottom;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .smart-main .img-area .imglink-side3 {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }
}

/*------------------------------------------
画像＋テキスト
-------------------------------------------*/
.smart-main .img-area-l {
  padding-top: 1.6rem;
  margin-top: 0;
}
.smart-main .img-area-l .imglink-txt-left {
  display: table;
  max-width: calc(50% - 1.2rem);
  margin-right: 2.4rem;
  margin-bottom: 1.6rem;
}
.smart-main .img-area-l .imglink-txt-left img {
  max-width: 100%;
  height: auto;
  margin: 0;
}
.smart-main .img-area-l .imglink-txt-left span {
  margin: 0;
  display: table-caption;
  caption-side: bottom;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .smart-main .img-area-l .imglink-txt-left {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.smart-main .img-area-r {
  padding-top: 1.6rem;
  margin-top: 0;
}
.smart-main .img-area-r .imglink-txt-right {
  display: table;
  max-width: calc(50% - 1.2rem);
  margin-left: 2.4rem;
  margin-bottom: 1.6rem;
}
.smart-main .img-area-r .imglink-txt-right img {
  max-width: 100%;
  height: auto;
  margin: 0;
}
.smart-main .img-area-r .imglink-txt-right span {
  margin: 0;
  display: table-caption;
  caption-side: bottom;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .smart-main .img-area-r .imglink-txt-right {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.num-font {
  font-family: "Sofia Sans Condensed", serif;
  font-weight: 700;
  font-style: normal;
}

/*------------------------------
   swiper
-------------------------------*/
.main-visual-area {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .main-visual-area {
    margin-left: 1.6rem;
    margin-right: 1.6rem;
  }
}
.main-visual-area .swiper-slide.swiper-slide-active {
  visibility: visible;
}

.main-slider {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.main-slider li {
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: 4rem;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.main-slider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 100%;
}
.main-slider li a {
  border-radius: 4rem;
  display: block;
  border: 2px solid transparent;
  height: 100%;
  width: 100%;
}
.main-slider li a:focus, .main-slider li a:focus-visible {
  border: 2px solid #000;
}
@media screen and (max-width: 768px) {
  .main-slider li {
    border-radius: 2rem;
  }
}
.main-slider .swiper-control-area {
  background: #fff;
  padding: 1.6rem;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  column-gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .main-slider .swiper-control-area {
    transform: translateY(80%);
    border-bottom-left-radius: 2rem;
  }
}
.main-slider .swiper-control-area .slider-controls {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}
.main-slider .swiper-control-area .slider-controls .slide-button-prev,
.main-slider .swiper-control-area .slider-controls .slide-button-next {
  width: 3rem;
}
.main-slider .swiper-control-area .slider-controls .slide-button-prev img,
.main-slider .swiper-control-area .slider-controls .slide-button-next img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .main-slider .swiper-control-area .slider-controls .slide-button-prev,
  .main-slider .swiper-control-area .slider-controls .slide-button-next {
    width: 2.4rem;
  }
}
.main-slider .swiper-control-area .slider-controls .slide-button-next img {
  vertical-align: bottom;
  transform: scale(-1, 1);
}
.main-slider .swiper-control-area .slider-controls .swiper-button-disabled img {
  opacity: 0.5;
}
.main-slider .swiper-control-area .slider-controls .slider-button {
  width: 2.4rem;
}
.main-slider .swiper-control-area .slider-controls .slider-button img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
.main-slider .swiper-control-area .page-num {
  font-family: "Sofia Sans Condensed", serif;
  font-weight: 700;
  font-style: normal;
  visibility: hidden;
}
.main-slider .swiper-control-area .page-num .swiper-pagination-current {
  width: 1.5em;
  font-size: 4.8rem;
  display: inline-block;
  margin-right: 0.5rem;
  visibility: visible;
  position: relative;
  line-height: 1;
  padding-right: 2.5rem;
}
.main-slider .swiper-control-area .page-num .swiper-pagination-current::after {
  display: block;
  content: "";
  width: 1px;
  height: 3.6rem;
  border-left: 1px solid var(--ui-text-color);
  transform: rotate(30deg);
  position: absolute;
  top: 1rem;
  left: 100%;
}
@media screen and (max-width: 768px) {
  .main-slider .swiper-control-area .page-num .swiper-pagination-current::after {
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .main-slider .swiper-control-area .page-num .swiper-pagination-current {
    font-size: 3.2rem;
    padding-right: 1rem;
    text-align: center;
  }
}
.main-slider .swiper-control-area .page-num .swiper-pagination-total {
  font-size: 3.1rem;
  display: inline-block;
  margin-left: 0.5rem;
  visibility: visible;
  line-height: 1;
  width: 1.5em;
}
@media screen and (max-width: 768px) {
  .main-slider .swiper-control-area .page-num .swiper-pagination-total {
    font-size: 2rem;
    text-align: center;
    margin-left: -0.8rem;
  }
}
.main-slider::after {
  content: "";
  width: 50rem;
  aspect-ratio: 1/1;
  background-image: url("/images/logo-bg.png");
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 5rem;
  left: -3rem;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 768px) {
  .main-slider::after {
    width: clamp(25rem, 6vw, 50rem);
    bottom: 0;
    left: -1.5rem;
  }
}

.smart-top {
  position: relative;
}

/*------------------------------
   nav
-------------------------------*/
.index-nav {
  position: absolute;
  top: calc(100vh + 100px);
  left: 0;
  max-width: 12rem;
  font-size: 1.2rem;
  padding: 1.2rem;
  color: #fff;
  background-color: var(--ui-primary-color);
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  z-index: 3;
  height: 41rem;
}
.index-nav .index-nav-list {
  margin-top: 0.8rem;
}
.index-nav li.active {
  position: relative;
}
.index-nav li.active::after {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -5px;
}
.index-nav li a {
  display: block;
  padding: 0.5rem;
  color: #fff;
  text-decoration: none;
}
@media (hover: hover) {
  .index-nav li a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
    color: #fff;
  }
}
.index-nav li a span {
  display: block;
  line-height: 1;
  font-size: 1.6rem;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  .index-nav li a {
    display: flex;
    column-gap: 1rem;
  }
}
.index-nav.fixed {
  position: fixed;
  top: 50vh;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .index-nav {
    position: relative;
    width: calc(100% - 3.2rem);
    margin-left: 1.6rem;
    margin-right: 1.6rem;
    border-radius: 1rem;
    top: 0;
    left: 0;
  }
}
.index-nav .index-nav-open {
  height: 100%;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.index-nav .index-nav-open img {
  width: 2.4rem;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index-nav .index-nav-open img {
    width: 16rem;
    height: 1.8rem;
    object-fit: contain;
    object-position: top left;
  }
}
@media screen and (max-width: 768px) {
  .index-nav .index-nav-open {
    width: 100%;
    justify-content: flex-start;
  }
}
.index-nav .index-nav-close {
  font-size: 1.2rem;
}
.index-nav .index-nav-close::before {
  display: inline-block;
  content: "";
  width: 0.8rem;
  aspect-ratio: 1/1;
  border-left: 2.4px solid #fff;
  border-bottom: 2.4px solid #fff;
  transform: rotate(45deg);
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .index-nav .index-nav-close::before {
    border-width: 1.95px;
    transform: rotate(135deg);
    margin-right: 1.5rem;
    margin-left: 0.7rem;
    width: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .index-nav .index-nav-close {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
  }
}
@media screen and (max-width: 768px) {
  .index-nav {
    height: auto;
    width: calc(100% - 3.2rem);
    max-width: none;
  }
}

.main-contents-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem clamp(1rem, 9.5vw, 14rem);
}
.main-contents-wrapper > * {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .main-contents-wrapper {
    padding: 3rem 2.8rem;
  }
}

.area {
  margin: 5rem 0;
}
@media screen and (max-width: 768px) {
  .area {
    margin: 2rem 0;
  }
}
.area .top-title {
  font-size: 4.8rem;
  line-height: 1.2;
  margin-bottom: 4.6rem;
  letter-spacing: 0.05rem;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  position: relative;
  z-index: 1;
}
.area .top-title span {
  display: block;
  color: var(--ui-primary-color);
}
@media screen and (max-width: 768px) {
  .area .top-title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}
.area .top-title::before {
  content: "";
  height: 13rem;
  max-width: 1000px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 100%;
  left: 0;
  position: absolute;
  z-index: -1;
  transform: translateY(4.8rem);
}
@media screen and (max-width: 768px) {
  .area .top-title::before {
    transform: translateY(3.2rem);
  }
}
.area .top-title.about::before {
  background-image: url("/images/title-about.png");
  aspect-ratio: 502/132;
}
@media screen and (max-width: 768px) {
  .area .top-title.about::before {
    background-image: url("/images/title-about-sp.png");
    aspect-ratio: 209/50;
    height: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .area .top-title.relation {
    margin-top: 11rem;
  }
}
.area .top-title.relation::before {
  background-image: url("/images/title-relationship.png");
  aspect-ratio: 1144/120;
}
@media screen and (max-width: 768px) {
  .area .top-title.relation::before {
    background-image: url("/images/title-relation-sp.png");
    height: 11rem;
    aspect-ratio: 302/108;
    width: clamp(25rem, 90vw, 100rem);
  }
}
.area .top-title.service {
  margin-top: 13rem;
}
@media screen and (max-width: 768px) {
  .area .top-title.service {
    margin-top: 5rem;
  }
}
.area .top-title.service::before {
  background-image: url("/images/title-service.png");
  aspect-ratio: 634/120;
}
@media screen and (max-width: 768px) {
  .area .top-title.service::before {
    height: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .area .top-title.partnership {
    margin-top: 11rem;
  }
}
.area .top-title.partnership::before {
  background-image: url("/images/title-partnership.png");
  aspect-ratio: 1180/120;
}
@media screen and (max-width: 768px) {
  .area .top-title.partnership::before {
    background-image: url("/images/title-partner-sp.png");
    aspect-ratio: 326.74/108.54;
    height: 11rem;
    width: clamp(25rem, 90vw, 100rem);
  }
}
.area .top-title.use {
  margin-top: 25.4rem;
}
@media screen and (max-width: 768px) {
  .area .top-title.use {
    margin-top: 11rem;
  }
}
.area .top-title.use::before {
  height: 25.4rem;
  background-image: url("/images/title-use.png");
  aspect-ratio: 915/254;
  width: clamp(25rem, 90vw, 100rem);
}
@media screen and (max-width: 768px) {
  .area .top-title.use::before {
    height: 11rem;
    background-image: url("/images/title-use-sp.png");
    aspect-ratio: 338.24/108.06;
  }
}
.area .top-title.archive::before {
  background-image: url("/images/title-archive.png");
  aspect-ratio: 666/120;
}
@media screen and (max-width: 768px) {
  .area .top-title.archive::before {
    height: 5rem;
  }
}
.area .img-area {
  max-width: 100%;
}
.area .img-area .img-left {
  float: none;
  margin-right: auto;
  width: fit-content;
  clear: none;
}
.area .img-area .img-right {
  float: none;
  margin-left: auto;
  width: fit-content;
  clear: none;
}
.area .img-area .img-center {
  width: fit-content;
}
.area .img-area img {
  max-width: 100%;
}
.area .img-area span {
  display: table-caption;
  caption-side: bottom;
}
.area .img-area-l {
  display: flex;
  column-gap: 2.4rem;
  align-items: center;
}
.area .img-area-l .imglink-txt-left {
  float: none;
}
.area .img-area-l .imglink-txt-left img {
  margin: 0;
  height: auto;
}
@media screen and (max-width: 768px) {
  .area .img-area-l .imglink-txt-left img {
    max-width: 100%;
    height: auto !important;
  }
}
.area .img-area-l .imglink-txt-left span {
  margin: 0;
}
.area .img-area-l .txt-area {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .area .img-area-l {
    flex-direction: column;
    row-gap: 3rem;
  }
}
.area .img-area-r {
  display: flex;
  column-gap: 2.4rem;
  align-items: center;
  flex-direction: row-reverse;
}
.area .img-area-r .imglink-txt-right {
  max-width: 50%;
  float: none;
}
.area .img-area-r .imglink-txt-right img {
  margin: 0;
  height: auto;
}
@media screen and (max-width: 768px) {
  .area .img-area-r .imglink-txt-right img {
    max-width: 100%;
    height: auto !important;
  }
}
.area .img-area-r .imglink-txt-right span {
  margin: 0;
}
.area .img-area-r .txt-area {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .area .img-area-r {
    flex-direction: column-reverse;
    row-gap: 3rem;
  }
}
.area .h2bg {
  margin-top: 0;
  margin-bottom: 2.5rem;
}
.area .h2bg div {
  border-bottom: 0;
}
.area .h2bg div::before {
  content: none;
}
.area .h2bg div h2 {
  color: var(--ui-primary-color);
  display: inline;
  background: linear-gradient(transparent 60%, var(--ui-accent-color) 60%);
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  font-size: 3.2rem;
  line-height: 1.4;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .area .h2bg div h2 {
    font-size: 2.4rem;
  }
}
.area .h3bg {
  margin-top: 0.8rem;
}
.area .h3bg div {
  border-left: none;
  border-bottom: none;
  padding-left: 0;
}
.area .h3bg div h3 {
  color: var(--ui-primary-color);
  padding-bottom: 0;
}
.area .h3bg div::before {
  content: none;
}
.area .h4bg {
  margin-left: 0;
}
.area .h4bg div {
  margin: 0.8rem 0;
  border-left: none;
  border-bottom: none;
  padding-left: 0;
}
.area .h4bg div h4 {
  color: var(--ui-primary-color);
}
.area .h4bg div::before {
  content: none;
}
.area .h5bg {
  margin: 0.8rem 0;
}
.area .h5bg div {
  margin: 0.8rem 0;
  border-left: none;
  border-bottom: none;
  padding-left: 0;
}
.area .h5bg div h4 {
  color: var(--ui-primary-color);
}
.area .h5bg div::before {
  content: none;
}
.area .btn-link {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .area .btn-link {
    display: block;
    text-align: center;
  }
}
.area .btn-link .link-btn a {
  min-width: 23rem;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  display: inline-block;
  padding: 1.4rem 9rem 1.4rem 2.4rem;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--ui-primary-color);
  border-radius: 50rem;
  position: relative;
  transition: background-color 0.2s ease-in-out;
  background-color: var(--ui-primary-color);
  transition: background-color 0.2s ease-in-out;
}
.area .btn-link .link-btn a::after {
  content: "";
  width: 3rem;
  aspect-ratio: 1/1;
  background-image: url("/images/link-line.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .area .btn-link .link-btn a:where(:any-link, :enabled, summary):hover {
    background-color: #002e7d;
    border-color: #002e7d;
  }
}
@media screen and (max-width: 768px) {
  .area .btn-link .link-btn a {
    max-width: 30rem;
    width: 100%;
    text-align: center;
    padding: 1.4rem 6rem;
  }
}
.area:not(.gray):last-child::before {
  content: "";
  width: 60rem;
  aspect-ratio: 1/1;
  background-image: url("/images/logo-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  transform: translate(25%, 10%);
}
@media screen and (max-width: 768px) {
  .area:not(.gray):last-child::before {
    width: 25rem;
    transform: translate(30%, 0);
  }
}

.pickup-area {
  margin-top: 8rem;
  background-color: #fffde4;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  border: 2px dashed var(--ui-primary-color);
  position: relative;
}
.pickup-area .pickup-contents {
  padding: 3.2rem 1rem;
  max-width: 62rem;
  margin: 0 auto;
}
.pickup-area .pickup-contents .main-title {
  font-size: 2rem;
  background-color: var(--ui-primary-color);
  color: #fff;
  text-align: center;
  border-radius: 50em;
  padding: 0.8rem 1.6rem;
  position: relative;
  margin-bottom: 3rem;
}
.pickup-area .pickup-contents .main-title::after {
  position: absolute;
  content: "";
  width: 2rem;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: var(--ui-primary-color);
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
}
.pickup-area .title-img {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-91%);
}
@media screen and (max-width: 768px) {
  .pickup-area .title-img img {
    width: 13rem !important;
  }
}
@media screen and (max-width: 768px) {
  .pickup-area .pickup-contents .img-left,
  .pickup-area .pickup-contents .img-right {
    float: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 1rem;
  }
}

#theme2 .pickup-area {
  border-radius: 2rem;
  background-color: #f9fbff;
}
#theme2 .pickup-area .title-img {
  display: none;
}

.gray {
  position: relative;
  margin-top: -5rem;
  margin-bottom: 8em;
}
@media screen and (max-width: 768px) {
  .gray {
    margin-top: 0;
    margin-bottom: 4rem;
  }
}
.gray::before {
  content: "";
  width: 50vw;
  height: 100%;
  position: absolute;
  z-index: 0;
  background-color: var(--ui-bg-color);
}
.gray .main-contents-wrapper {
  position: relative;
  z-index: 1;
  background-color: var(--ui-bg-color);
  border-top-right-radius: 4rem;
  border-bottom-right-radius: 4rem;
}
.gray .main-contents-wrapper .news-title {
  margin-top: 13rem;
  border-bottom: 0.5rem solid var(--ui-primary-color);
  position: relative;
}
@media screen and (max-width: 768px) {
  .gray .main-contents-wrapper .news-title {
    margin-top: 5rem;
  }
}
.gray .main-contents-wrapper .news-title::after {
  content: "";
  width: 9rem;
  height: 0.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--ui-accent-color);
}
.gray .main-contents-wrapper .news-title h2 {
  padding-bottom: 1.6rem;
}
.gray .main-contents-wrapper .news-title::before {
  content: "";
  height: 13rem;
  aspect-ratio: 416/120;
  background-image: url("/images/title-news.png");
  height: 13rem;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 100%;
  left: 0;
  position: absolute;
  z-index: -1;
  transform: translateY(2.4rem);
}
@media screen and (max-width: 768px) {
  .gray .main-contents-wrapper .news-title::before {
    height: 5rem;
  }
}

.news .hide li:nth-child(n+6) {
  display: none;
}
.news .hide + .all-link {
  display: none;
}
.news .all-link {
  text-align: right;
}
.news .more-btn {
  text-align: center;
  margin-top: 2.4rem;
}
.news .more-btn .btn {
  text-align: center;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  color: var(--ui-primary-color);
  display: inline-block;
  width: 17rem;
  padding: 1.4rem 0;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid var(--ui-primary-color);
  border-radius: 50rem;
  position: relative;
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  .news .more-btn .btn:where(:any-link, :enabled, summary):hover {
    color: var(--ui-primary-color);
    background-color: var(--ui-hover-gb-color);
    border-color: var(--ui-primary-color);
  }
}
.news .more-btn .btn::before {
  content: "";
  width: 1.6rem;
  aspect-ratio: 1/1;
  background-image: url("/images/button-icon-plus.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
}
.news .more-btn .btn.minus::before {
  background-image: url("/images/button-icon-minus.png");
}
.news .info-list li {
  padding: 1.6rem 1rem;
  border-bottom-color: var(--ui-border-color);
}
@media screen and (max-width: 768px) {
  .news .info-list li {
    flex-direction: column;
    row-gap: 1rem;
  }
}

.movie-area {
  padding: 3.2rem;
  background-color: var(--ui-primary-color);
  border-radius: 2.7rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}
.movie-area .movie {
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .movie-area .movie iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.movie-area .movie-title {
  font-size: 3.6rem;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  color: #fff;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .movie-area .movie-title {
    font-size: 2.4rem;
  }
}
.movie-area::before {
  content: "";
  height: 13rem;
  background: url("/images/title-movie.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 480/123;
  position: absolute;
  right: 0;
  top: 2.4rem;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .movie-area::before {
    height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .movie-area {
    border-radius: 2rem;
  }
}

.btn.btn-secondary.btn-link {
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  display: inline-block;
  padding: 1.4rem 9rem 1.4rem 2.4rem;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid var(--ui-primary-color);
  border-radius: 50rem;
  position: relative;
  transition: background-color 0.2s ease-in-out;
  min-width: 23rem;
}
.btn.btn-secondary.btn-link::after {
  content: "";
  width: 3rem;
  aspect-ratio: 1/1;
  background-image: url("/images/link-line-b.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .btn.btn-secondary.btn-link {
    width: 100%;
    max-width: 30rem;
    text-align: center;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (hover: hover) {
  .btn.btn-secondary.btn-link:where(:any-link, :enabled, summary):hover {
    color: var(--ui-primary-color);
    background-color: var(--ui-hover-gb-color);
    border-color: var(--ui-primary-color);
  }
}
.btn.btn-secondary.btn-link:visited {
  color: var(--ui-primary-color);
}

.service-items-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: var(--ui-primary-color);
  border-radius: 2rem;
  padding-bottom: 3.2rem;
}
.service-items-wrapper .service-items-title {
  text-align: center;
  font-size: 3.6rem;
  font-family: var(--ui-font-family-bold);
  font-weight: var(--ui-font-bold);
  color: #fff;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
  padding: 3.2rem;
}
@media screen and (max-width: 768px) {
  .service-items-wrapper .service-items-title {
    font-size: 2.4rem;
  }
}
.service-items-wrapper .item-area {
  max-width: 830px;
  padding: 0 1.6rem 3rem 1.6rem;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service-items-wrapper .item-area {
    width: calc(100% - 2rem);
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.service-items-wrapper .service-list {
  padding-bottom: 1rem;
}
.service-items-wrapper .service-list li {
  position: relative;
  width: 18rem;
  padding: 1rem 1.6rem;
  border-radius: 2rem;
  box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.25);
  background: #fff;
  padding-bottom: 2.4rem;
  overflow: hidden;
  height: auto;
}
.service-items-wrapper .service-list li .service-img {
  display: block;
  width: 100%;
}
.service-items-wrapper .service-list li .service-img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-items-wrapper .service-list li a {
  text-decoration: none;
  color: var(--ui-text-color);
}
.service-items-wrapper .service-list li a .service-item-title {
  margin-top: 1rem;
  display: block;
  text-align: center;
  word-wrap: break-word;
  word-break: auto-phrase;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .service-items-wrapper .service-list li a .service-item-title {
    letter-spacing: -0.1rem;
  }
}
@media (hover: hover) {
  .service-items-wrapper .service-list li a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}
.service-items-wrapper .service-list li::after {
  content: "";
  width: 2.4rem;
  aspect-ratio: 1/1;
  background-image: url("/images/arrow-slide.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .service-items-wrapper .service-list li {
    width: 13.4rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.service-items-wrapper .swiper-scrollbar {
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
}
.service-items-wrapper .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #fff;
  border: 1px solid #fff;
}

.smart-top {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .smart-top {
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 768px) {
  #theme3-ancher,
  #theme5-ancher {
    padding-top: 3rem;
    margin-top: -3rem;
  }
}