@charset "utf-8";
/* ========================================
# Common
======================================== */
html {
  font-size: 62.5%;
}
body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-height: 100vh;
  background: #F7FCFE;
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
@media print {
  body {
    margin: 0 auto;
    width: 1080px;
  }
}
.wrapper {
  background: url(../images/bg_body.png) center top no-repeat;
  background-size: 1920px auto;
}
@media screen and (min-width: 1920px) {
  .wrapper {
    background-size: 100% auto;
  }
}
@media screen and (max-width: 767px) {
  .wrapper {
    background-image: url(../images/bg_body_sp.png);
    background-size: 100% auto;
  }
}
.inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
@media screen and (max-width: 1060px) {
  .inner {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    margin-left: 4vw;
    margin-right: 4vw;
    padding: 0;
  }
}
img {
  max-width: 100%;
  height: auto;
}
.scroll--disallow {
  position: fixed;
  overflow-y: scroll;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.-disabled {
  pointer-events: none !important;
}
.-hidden {
  display: none !important;
}
.ba-abs {
  content: "";
  display: block;
  position: absolute;
}
/* ========================================
# Layout
======================================== */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.mt0 {
  margin-top: 0 !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
/* ========================================
# Responsive
======================================== */
@media all and (min-width: 768px) {
  .pc-only {
    display: block !important;
  }
  .pc-only.inline {
    display: inline !important;
  }
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
  .sp-only.inline {
    display: inline !important;
  }
}
@media print {
  .pc-only {
    display: block !important;
  }
  .sp-only {
    display: none !important;
  }
  .no-print {
    display: none !important;
  }
}
/* ========================================
# Hover Animation
======================================== */
@media (hover: hover) and (pointer: fine) {
  .hover {
    transition: opacity 0.3s ease;
    opacity: 1;
  }
  .hover:hover {
    opacity: 0.7;
  }
}
/* ========================================
# Header
======================================== */
.page-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
}
.page-header__upper .inner {
  height: 88px;
  padding-top: 10px;
}
.page-header__upper .logo {
  display: table;
}
.page-header__upper .logo img {
  width: auto;
  height: 58px;
}
@media screen and (max-width: 767px) {
  .page-header__upper .inner {
    height: 65px;
  }
  .page-header__upper .logo img {
    height: 45px;
  }
}
@media print {
  .page-header {
    min-width: 1080px;
  }
}
.local-navi.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.local-navi__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 2px 2px 20px rgba(0, 0, 10, 0.1);
}
.local-navi__list li {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 30px;
  padding: 0 5px 0 6px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}
.local-navi__list li + li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: url(../images/bg_border_dots_v.png) left top repeat-y;
  background-size: 1px 4px;
}
.local-navi__list li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .local-navi__list li a {
    transition: color 0.3s ease;
  }
  .local-navi__list li a.link01:hover {
    color: #89BA40;
  }
  .local-navi__list li a.link02:hover {
    color: #E76E79;
  }
  .local-navi__list li a.link03:hover {
    color: #508BCA;
  }
  .local-navi__list li a.link04:hover {
    color: #FEB127;
  }
  .local-navi__list li a.link05:hover {
    color: #00ADEC;
  }
  .local-navi__list li a.link06:hover {
    color: #F79B3E;
  }
  .local-navi__list li a.link07:hover {
    color: #89BA40;
  }
  .local-navi__list li a.link08:hover {
    color: #BE8ABB;
  }
}
@media screen and (max-width: 1060px) {
  .local-navi__list li {
    font-size: 1.32vw;
  }
}
@media screen and (max-width: 767px) {
  .local-navi {
    display: none !important;
  }
}
.app-block {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.app-block__tab {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  width: 510px;
  height: 70px;
  padding: 10px;
  margin-left: auto;
  border-radius: 0 0 10px 10px;
  background-color: #00ADEC;
  overflow: hidden;
  pointer-events: auto;
}
.app-block__icon {
  display: flex;
  align-items: center;
  gap: 9px;
}
.app-block__icon img {
  width: 50px;
  height: auto;
}
.app-block__icon figcaption {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
.app-block__banner {
  display: flex;
  justify-content: space-between;
  width: 312px;
}
.app-block__banner .banner {
  display: block;
}
.app-block__banner .banner img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .app-block {
    top: auto;
    bottom: 0;
    background-color: #00ADEC;
  }
  .app-block .app-block__tab {
    position: static;
    width: 100%;
    max-width: 345px;
    height: 60px;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 0;
    background-color: transparent;
  }
  .app-block .app-block__icon {
    gap: 5px;
  }
  .app-block .app-block__icon img {
    max-width: 40px;
  }
  .app-block .app-block__icon figcaption {
    font-size: 10px;
  }
  .app-block .app-block__banner {
    margin-left: 5px;
    width: auto;
    gap: 5px;
  }
  .app-block .app-block__banner .banner img {
    height: 40px;
  }
}
@media print {
  .app-block {
    position: relative;
  }
}
.drawer-menu-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer-menu-button {
    display: block;
    position: fixed;
    z-index: 4000;
    width: 45px;
    height: 45px;
    top: 10px;
    right: 4vw;
    background: #fff url(../images/ico_menu.svg) center top no-repeat;
    background-size: 100% auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  }
  .drawer-menu-button.active {
    background-position: center bottom ;
  }
}
.drawer-menu {
  position: fixed;
  z-index: 3000;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(25, 76, 124, 0.9);
  overflow-y: auto;
}
@media all and (min-width: 768px) {
  .drawer-menu {
    display: none !important;
  }
}
.drawer-menu .inner {
  padding: 65px 0 80px;
}
.drawer-menu__list {
  padding-top: 1px;
  background: url(../images/bg_border_dots_w.png) left top repeat-x;
  background-size: 4px 1px;
}
.drawer-menu__list li {
  padding-bottom: 1px;
  background: url(../images/bg_border_dots_w.png) left bottom repeat-x;
  background-size: 4px 1px;
}
.drawer-menu__list a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 10px 25px 10px 0;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  text-decoration: none;
}
.drawer-menu__list a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url(../images/ico_drawer_arrow.svg) 0 0 no-repeat;
  background-size: contain;
}
/* ========================================
# Contents
======================================== */
.anchor {
  position: absolute;
  display: block;
  top: 0;
  margin-top: -85px;
  padding-top: 85px;
}
@media screen and (max-width: 767px) {
  .anchor {
    margin-top: -65px;
    padding-top: 65px;
  }
}
.bullet {
  padding-left: 1em;
  text-indent: -1em;
}
.icon {
  display: inline-block;
  vertical-align: bottom;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.icon + span {
  margin-left: 5px;
}
hr {
  display: block;
  margin: 20px 0;
  padding: 0;
  height: 1px;
  border: none;
  background: url(../images/bg_border_dots.png) left top repeat-x;
  background-size: 4px 1px;
}
@media screen and (max-width: 767px) {
  hr {
    margin: 10px 0;
  }
}
.note {
  font-size: small;
}
/* Section
---------------------------------------- */
.section {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-bottom: calc(6.4vw + 20px);
  }
}
.def-box {
  display: flex;
  align-items: stretch;
  margin-top: 20px;
  border-radius: 10px;
  background-color: #E5F5FA;
  overflow: hidden;
}
.def-box dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  width: 240px;
  background-color: #00ADEC;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
.def-box dd {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 15px 20px;
}
@media screen and (max-width: 767px) {
  .def-box {
    display: block;
    margin-top: 10px;
    border-radius: 5px;
  }
  .def-box dt {
    display: block;
    width: auto;
    padding: 8px 10px;
  }
  .def-box dd {
    display: block;
    width: auto;
    padding: 10px;
  }
}
/* Section:TOP
---------------------------------------- */
.section-top {
  margin: 0;
  padding: 175px 0 80px;
  background: url(../images/bg_sect_top.png) center top no-repeat;
  background-size: 1700px auto;
}
.section-top__block01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.section-top__block01 .block01-left {
  width: 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-top__block01 .block01-title {
  margin-bottom: 20px;
  color: #306EA9;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.section-top__block01 .block01-description {
  font-size: 14px;
  line-height: 1.7;
}
.section-top__block01 .block01-description p + p {
  margin-top: 20px;
}
.section-top__block01 .block01-right {
  flex: 1;
  max-width: 548px;
}
.section-top__block02 {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section-top__block02 .block02-title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 6px solid #306EA9;
  color: #306EA9;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
.section-top__block02 .block02-title h3 {
  position: absolute;
  bottom: 0;
  left: 10px;
}
@media screen and (max-width: 767px) {
  .section-top {
    padding-top: 65px;
    padding-bottom: calc(20px + 6.4vw);
    background-image: url(../images/bg_sect_top_sp.png);
    background-size: 100% auto;
  }
  .section-top__block01 {
    margin-bottom: 20px;
  }
  .section-top__block01 .block01-left {
    display: block;
    width: 100%;
  }
  .section-top__block01 .block01-title {
    margin-bottom: 10px;
    padding-bottom: 61%;
    background: url(../images/img_top_sp.png) center bottom no-repeat;
    background-size: 85.33vw auto;
    text-align: center;
    font-size: 5vw;
  }
  .section-top__block01 .block01-description {
    text-align: center;
  }
  .section-top__block01 .block01-description p + p {
    margin-top: 10px;
  }
  .section-top__block01 .block01-right {
    display: none;
  }
  .section-top__block02 {
    padding: 15px 2.66vw 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .section-top__block02 .block02-title {
    margin-bottom: 10px;
    padding-left: 5px;
    border-left-width: 4px;
    font-size: 16px;
  }
  .section-top__block02 .block02-title h3 {
    left: 5px;
  }
}
.block02-list {
  display: flex;
  justify-content: space-between;
}
.block02-list__item {
  width: 29%;
  max-width: 270px;
}
.block02-list__item + .block02-list__item {
  position: relative;
}
.block02-list__item + .block02-list__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -32px;
  width: 1px;
  background: url(../images/bg_border_dots_v.png) left top repeat-y;
  background-size: 1px 4px;
}
.block02-list__caption {
  padding: 5px;
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: #eee;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.item01 .block02-list__caption {
  background-color: #DFEDCE;
}
.item02 .block02-list__caption {
  background-color: #FEE9E3;
}
.item03 .block02-list__caption {
  background-color: #EAF3FB;
}
.block02-list__image {
  margin-bottom: 10px;
}
@media screen and (max-width: 1060px) {
  .block02-list__item + .block02-list__item::before {
    left: -3vw;
  }
  .block02-list__caption {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .block02-list {
    display: block;
  }
  .block02-list__item {
    width: auto;
    max-width: none;
  }
  .block02-list__item + .block02-list__item {
    margin-top: 10px;
  }
  .block02-list__item + .block02-list__item::before {
    display: none;
  }
  .block02-list__caption {
    padding: 5px;
    border-radius: 5px;
    font-size: 16px;
  }
  .block02-list__detail {
    display: flex;
    justify-content: space-between;
  }
  .block02-list__image {
    width: 40%;
    margin: 0;
  }
  .block02-list__text {
    width: 58%;
  }
}
/* Section:まちペイアプリの新しい使い方
---------------------------------------- */
.section-newstyle {
  background: url(../images/bg_stripe.png) center center repeat;
  background-size: 36px 36px;
}
.section-newstyle .anchor {
  margin-top: -115px;
  padding-top: 115px;
}
.section-newstyle__container {
  padding-top: 70px;
  padding-bottom: 50px;
}
.section-newstyle__title {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 590px;
  min-height: 90px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/bg_sect_new_ttl.png) center center no-repeat;
  background-size: 100% 100%;
  color: #306EA9;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
.section-newstyle__lede {
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
}
.section-newstyle .def-box {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .section-newstyle .anchor {
    margin-top: calc(-6.4vw - 65px);
    padding-top: calc(6.4vw + 65px);
  }
  .section-newstyle__container {
    padding-top: calc(6.4vw + 10px);
    padding-bottom: 25px;
  }
  .section-newstyle__title {
    width: 88.8vw;
    min-height: 12.8vw;
    font-size: 4vw;
  }
  .section-newstyle__lede {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
/* Section:まちペイを使ってみよう
---------------------------------------- */
.section-usage > .anchor {
  margin-top: -110px;
  padding-top: 110px;
}
.section-usage__title {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
  min-height: 90px;
  top: 0;
  left: 50%;
  margin-top: 10px;
  transform: translate(-50%, -50%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
.section-usage__contents {
  position: relative;
  padding: 72px 30px 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.section-usage__contents::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: #999;
}
.section-usage .multi-container {
  display: flex;
  justify-content: space-between;
}
.section-usage .multi-container .flowchart-box {
  width: 48.6%;
  max-width: 456px;
}
@media screen and (max-width: 767px) {
  .section-usage > .anchor {
    margin-top: calc(-6.4vw - 65px);
    padding-top: calc(6.4vw + 65px);
  }
  .section-usage__title {
    margin-top: 0px;
    width: 88.8vw;
    min-height: 12.8vw;
    font-size: 4.1vw;
    padding-bottom: 2px;
  }
  .section-usage__contents {
    padding: 0 2.66vw 10px;
    padding-top: calc(6.4vw + 10px);
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .section-usage__contents::before {
    height: 15px;
  }
  .section-usage .multi-container {
    display: block;
  }
  .section-usage .multi-container .flowchart-box {
    width: auto;
  }
}
.section-usage.usage01 .section-usage__contents::before {
  background: #E76E79;
}
.section-usage.usage01 .section-usage__title {
  background-image: url(../images/bg_sect_usage_ttl01.png);
  color: #E76E79;
}
.section-usage.usage02 .section-usage__contents::before {
  background: #89BA40;
}
.section-usage.usage02 .section-usage__title {
  background-image: url(../images/bg_sect_usage_ttl02.png);
  color: #89BA40;
}
.section-usage.usage03 .section-usage__contents::before {
  background: #306EA9;
}
.section-usage.usage03 .section-usage__title {
  background-image: url(../images/bg_sect_usage_ttl03.png);
  color: #306EA9;
}
.section-usage.usage04 .section-usage__contents::before {
  background: #F79B3E;
}
.section-usage.usage04 .section-usage__title {
  background-image: url(../images/bg_sect_usage_ttl04.png);
  color: #F79B3E;
}
.flowchart-box__caption {
  position: relative;
  margin-bottom: 22px;
  padding: 9px 1em;
  border-radius: 5px;
  background-color: #306EA9;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}
.flowchart-box__caption::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -2px;
  border: 14px solid transparent;
  border-top-color: #306EA9;
  border-bottom-width: 0;
}
@media screen and (max-width: 767px) {
  .flowchart-box__caption {
    margin-bottom: 20px;
    padding: 8px 1em;
    border-radius: 5px;
    font-size: 16px;
  }
  .flowchart-box__caption::after {
    border-width: 12px 12px 0 12px;
  }
}
.intro-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #EAF1F7;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.intro-box__detail {
  flex: 1;
  padding: 20px;
}
.intro-box__caption {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
.intro-box__image {
  align-self: flex-end;
  width: 48%;
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  .intro-box {
    margin-bottom: 10px;
    padding: 10px 2.66vw;
    border-radius: 5px;
  }
  .intro-box__detail {
    padding: 0 2.66vw 0 0;
  }
  .intro-box__caption {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .intro-box__image {
    width: 80px;
  }
}
.feat-box {
  display: flex;
  justify-content: space-between;
}
.feat-box__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 48.95%;
  max-width: 460px;
}
.feat-box__left p {
  margin-bottom: 1em;
}
.feat-box__right {
  width: 45.8%;
  max-width: 430px;
}
.feat-box__right .image figcaption {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
}
.feat-box__right .image-card {
  width: 365px;
}
.feat-box__right .scroll-wrap {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media all and (min-width: 768px) {
  .accordion09 .feat-box .feat-box__right {
    width: 48.55%;
    max-width: 456px;
  }
}
@media screen and (max-width: 767px) {
  .feat-box {
    display: block;
  }
  .feat-box__left {
    display: block;
    width: auto;
    max-width: none;
    margin: 0 0 20px;
  }
  .feat-box__left p {
    margin-bottom: 0;
  }
  .feat-box__left p + p {
    margin-top: 1em;
  }
  .feat-box__right {
    width: auto;
    max-width: none;
  }
  .feat-box__right .image {
    margin: 0 auto;
    text-align: center;
  }
  .feat-box__right .image figcaption {
    display: table;
    margin: 5px auto 0;
    text-align-last: left;
  }
  .feat-box__right .image-card {
    width: 82%;
  }
  .feat-box__right .scroll-wrap {
    padding-bottom: 10px;
    margin-bottom: 0;
  }
}
/* 使い方：スクロール
---------------------------------------- */
.scroll-wrap {
  padding-bottom: 10px;
  margin-bottom: 10px;
  width: 100%;
  overflow-x: auto;
}
@media all and (min-width: 768px) {
  .scroll-wrap.x-size-adjustment-pc {
    width: calc(100% + 10px);
    margin-left: -10px;
  }
}
.scroll-wrap .flowchart {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.scroll-wrap .flowchart.left {
  text-align-last: left;
}
.scroll-wrap .flowchart02 {
  width: 1195px;
}
.scroll-wrap .flowchart07 {
  width: 990px;
}
.scroll-wrap .flowchart11 {
  width: 785px;
}
.scroll-wrap .flowchart12 {
  width: 990px;
}
@media screen and (max-width: 767px) {
  .scroll-wrap .flowchart {
    margin: 0 auto;
    box-sizing: content-box;
  }
  .scroll-wrap .flowchart01 {
    width: 590px;
  }
  .scroll-wrap .flowchart02 {
    width: 900px;
  }
  .scroll-wrap .flowchart03 {
    width: 435px;
  }
  .scroll-wrap .flowchart04 {
    width: 280px;
  }
  .scroll-wrap .flowchart05 {
    width: 435px;
  }
  .scroll-wrap .flowchart06 {
    width: 435px;
  }
  .scroll-wrap .flowchart07 {
    width: 745px;
  }
  .scroll-wrap .flowchart08 {
    width: 435px;
  }
  .scroll-wrap .flowchart09 {
    width: 435px;
  }
  .scroll-wrap .flowchart10 {
    width: 590px;
  }
  .scroll-wrap .flowchart11 {
    width: 590px;
  }
  .scroll-wrap .flowchart12 {
    width: 745px;
  }
  .scroll-wrap .flowchart13 {
    width: 590px;
  }
  .scroll-wrap .flowchart14 {
    width: 280px;
  }
  .scroll-wrap .flowchart15 {
    width: 435px;
  }
}
/* 使い方：アコーディオン
---------------------------------------- */
.usage-block {
  position: relative;
  display: block;
}
.usage-block__head {
  position: relative;
  min-height: 60px;
  padding-right: 80px;
  cursor: pointer;
}
.usage-block__title {
  min-height: 60px;
  padding: 13px 0 0 60px;
  background: url(../images/bg_usage_ttl.png) left 5px no-repeat;
  background-size: 50px 50px;
  color: #306EA9;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
.usage-block__title + .lede {
  margin-top: 10px;
}
.usage-block__detail {
  padding-top: 20px;
}
.usage-block__detail .usage-block__title {
  margin-bottom: 20px;
}
.usage-block__button {
  display: block;
  position: relative;
  margin-top: auto;
  padding: 13px 30px;
  border-radius: 5px;
  background-color: #EF4123;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
}
.usage-block__button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/img_btn_arrow.svg) center center no-repeat;
  background-size: contain;
}
.usage-block .toggle-icon {
  position: absolute;
  display: block;
  align-self: flex-start;
  z-index: 1;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: #999;
}
.usage-block .toggle-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
  background: url(../images/ico_accordion_w.svg) center top no-repeat;
  background-size: 100% auto;
  transition: rotate 0.3s ease;
}
.usage-block.open .usage-block__head .toggle-icon::after {
  background-position: center bottom;
  rotate: 180deg;
}
.usage01 .usage-block .toggle-icon {
  background-color: #E76E79;
}
.usage02 .usage-block .toggle-icon {
  background-color: #89BA40;
}
.usage03 .usage-block .toggle-icon {
  background-color: #306EA9;
}
.usage04 .usage-block .toggle-icon {
  background-color: #F79B3E;
}
@media all and (min-width: 768px) {
  .usage-block__detail {
    width: calc(100% + 10px);
    margin-left: -10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .usage-block__head {
    min-height: 30px;
    padding-right: 40px;
  }
  .usage-block__title {
    min-height: 30px;
    padding: 5px 0 5px 33px;
    background-size: 28px 28px;
    background-position: left 1px;
    font-size: 16px;
  }
  .usage-block__title + .lede {
    margin-top: 3px;
  }
  .usage-block__detail {
    padding-top: 10px;
  }
  .usage-block__detail .usage-block__title {
    margin-bottom: 10px;
  }
  .usage-block__button {
    margin-top: 20px;
    padding: 13px 30px;
    font-size: 16px;
  }
  .usage-block__button::after {
    width: 15px;
    height: 15px;
  }
  .usage-block .toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 5px;
  }
  .usage-block .toggle-icon::after {
    top: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
  }
}
/* よくあるご質問
---------------------------------------- */
.section-faq__title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
  border-left: 6px solid #306EA9;
  color: #306EA9;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}
.section-faq__title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 2px;
  background-color: #306EA9;
}
.section-faq__lede {
  margin-bottom: 20px;
}
/* よくあるご質問：アコーディオン
---------------------------------------- */
.faq-box {
  position: relative;
  display: block;
  background-size: 4px 1px;
}
.faq-box + .faq-box {
  margin-top: 20px;
}
.faq-box .icon {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.faq-box .text-block {
  width: 100%;
  flex: 1;
}
.faq-box__q {
  position: relative;
}
.faq-box__q .faq-detail {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 15px 60px 15px 20px;
  border-radius: 5px;
  background-color: #fff;
  color: #306EA9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  cursor: pointer;
}
.faq-box__q .toggle-icon {
  position: absolute;
  display: block;
  align-self: flex-start;
  z-index: 1;
  right: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.faq-box__q .toggle-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/ico_accordion.svg) center top no-repeat;
  background-size: 100% auto;
  transition: rotate 0.3s ease;
}
.faq-box.open .faq-box__q .toggle-icon::after {
  background-position: center bottom;
  rotate: 180deg;
}
.faq-box__a .faq-detail {
  position: relative;
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 15px 60px 15px 20px;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq-box + .faq-box {
    margin-top: 10px;
  }
  .faq-box .icon {
    width: 25px;
    height: 25px;
    margin-right: 5px;
  }
  .faq-box__q .faq-detail {
    min-height: 40px;
    padding: 10px 35px 10px 1.33vw;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
    font-size: 14px;
  }
  .faq-box__q .toggle-icon {
    right: 10px;
    width: 15px;
    height: 15px;
  }
  .faq-box__a .faq-detail {
    padding: 10px 30px 10px 1.33vw;
    font-size: 14px;
  }
}
.bottom-note {
  margin-bottom: 10px;
  font-size: 12px;
  text-align: right;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .bottom-note {
    font-size: 10px;
  }
}
/* ========================================
# Footer
======================================== */
.page-footer {
  padding: 30px 0 130px;
  border-top: 1px solid #000;
}
.page-footer__call-center {
  width: 495px;
  margin: 0 auto 10px;
}
.page-footer__navi {
  text-align: center;
}
.page-footer__navi ul {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.page-footer__navi ul a {
  display: block;
  padding: 1px 10px;
  color: #111;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
}
.page-footer__navi ul a:hover {
  text-decoration: underline;
}
.page-footer__sns {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 60px;
}
.page-footer__sns .icon {
  display: block;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .page-footer__sns {
    gap: 30px;
  }
  .page-footer__sns .icon {
    width: 35px;
    height: 35px;
  }
}
.page-footer .copy {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-footer {
    padding: 15px 0 75px;
  }
  .page-footer__call-center {
    width: 80%;
  }
  .page-footer__call-center a {
    display: table;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
  }
  .page-footer__call-center .hours {
    text-align: center;
    font-size: 12px;
  }
  .page-footer__sns {
    margin-top: 15px;
  }
  .page-footer .copy {
    margin-top: 15px;
    font-size: 13px;
  }
}
.icon_email {
  width: 16px;
  height: 16px;
  background-image: url(../images/ico_email.svg);
}
.pagetop {
  position: fixed;
  display: block;
  z-index: 100;
  bottom: 20px;
  right: 20px;
}
.pagetop a {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 8px solid #D1D5DB;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background: #fff url(../images/ico_pagetop.svg) center center no-repeat;
  background-size: 24px auto;
  opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
  .pagetop a {
    transition: opacity 0.3s ease;
  }
  .pagetop a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 70px;
    right: 1.33vw;
  }
  .pagetop a {
    width: 10.66vw;
    height: 10.66vw;
    border-width: 1vw;
    background-size: 3.2vw auto;
    opacity: 1;
  }
}
@media print {
  .pagetop {
    display: none !important;
  }
}
/* ========================================
# Print
======================================== */
@media print {
  .accordion {
    pointer-events: none;
  }
  .accordion__body {
    display: block !important;
  }
  .accordion .toggle-icon::after {
    background-position: center bottom !important;
  }
}
/* ========================================
#
======================================== */
/*
---------------------------------------- */
