@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 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;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
li {
  list-style: none;
}

.link {
  color: #00A0AE;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: opacity 0.3s, filter 0.3s;
}
.link:hover {
  opacity: 0.6;
  filter: brightness(110%);
}

.container {
  max-width: 648px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: rgba(0, 160, 174, 0.1);
}

.common-ttl {
  width: 100%;
  height: 80px;
  background: #22396F;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .common-ttl {
    height: 100px;
    font-size: 14px;
  }
}

.section-ttl {
  color: #22396F;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 24px;
}

.marker {
  background: linear-gradient(transparent 70%, #FFEA94 70%);
}

.btn {
  display: inline-block;
  background-color: #00A0AE;
  color: #FFF;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.3s ease, color 0.3s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-block;
  background-color: #FFF;
  color: #22396F;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #22396F;
}
.btn-outline:hover {
  background: #22396F;
  color: #FFF;
}

.card {
  border: 1px solid lightgray;
  border-radius: 5px;
  background-color: #FFF;
  padding: 24px;
}

.shadow {
  box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.2);
}

#content {
  margin-bottom: 80px;
  min-height: calc(100vh - 72px - 240px - 80px);
}
@media screen and (max-width: 767px) {
  #content {
    padding-top: 82px;
    margin-bottom: 0;
  }
}

.header {
  width: 100%;
  background-color: #FFF;
  padding: 18px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
}
.header .header-logo {
  width: 240px;
  padding-top: 3px;
}
.header .menu-list {
  display: flex;
  flex-wrap: nowrap;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}
.header .menu-list-item {
  padding-left: 28px;
  cursor: pointer;
}
.header .menu-list-item a {
  position: relative;
}
.header .menu-list-item a::after {
  position: absolute;
  left: 0;
  bottom: -3px;
  content: "";
  width: 100%;
  height: 1px;
  background: #00A0AE;
  visibility: hidden;
  opacity: 0;
}
.header .menu-list-item a:hover::after {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    display: none;
  }
}

.current {
  color: #00A0AE;
  font-weight: 700;
  line-height: normal;
  padding-left: 20px;
  cursor: pointer;
}
.current::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f04b";
  font-size: 10px;
  font-weight: 600;
  margin-right: 8px;
}

.header-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    padding: 16px;
    z-index: 1000;
    background-color: #E5F5F7;
  }
}
.header-sp .header-logo {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .header-sp .header-logo {
    width: 180px;
  }
}

.menu {
  pointer-events: none;
}
.menu.menuactive {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}
.menu.menuactive .menu-spul {
  opacity: 1;
}
.menu.menuactive .menu-spli {
  animation-name: menuOpen;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  display: block;
  opacity: 0;
  pointer-events: auto;
}

.menu-spul {
  opacity: 0;
  position: absolute;
  z-index: 999;
  top: 120px;
  left: 8px;
}

.menu-spli {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 24px;
}
.menu-spli a {
  color: #FFF;
}

.menu-bg {
  position: fixed;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background-color: #22396F;
  opacity: 0.8;
  border-radius: 50%;
  transform: scale(0);
  z-index: 3;
}
.menu-bg.bgactive {
  transform: scale(50);
}

.menu-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu-btn {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #00A0AE;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
  }
}
.menu-btn span {
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #FFF;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-btn span:nth-child(1) {
  top: 15px;
  width: 43%;
}
.menu-btn span:nth-child(2) {
  top: 23px;
  width: 43%;
}
.menu-btn span:nth-child(3) {
  top: 31px;
  width: 43%;
}
.menu-btn.active span:nth-child(1) {
  top: 18px;
  left: 18px;
  width: 30%;
  transform: translateY(6px) rotate(-135deg);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  top: 30px;
  left: 18px;
  width: 30%;
  transform: translateY(-6px) rotate(135deg);
}

@keyframes menuOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.footer {
  background: #A7B0C5;
  color: #FFF;
}
.footer-cont {
  padding: 64px 64px 48px;
  text-align: right;
  display: flex;
  justify-content: space-between;
}
.footer img {
  width: 300px;
  max-width: 100%;
  vertical-align: middle;
}
.footer-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-info-area {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
}
.footer-info {
  font-size: 12px;
  display: flex;
}
.footer-text {
  display: flex;
}
.footer-text-sp {
  display: none;
}
.footer-list {
  margin-right: 56px;
}
.footer-list-item {
  font-size: 13px;
  text-align: left;
  line-height: 2rem;
}
.footer-list-last .footer-list-item {
  font-size: 13px;
  text-align: left;
  line-height: 2rem;
}
.footer-list-in-list {
  text-align: left;
}
.footer-list-in-list-item {
  text-indent: 1.5rem;
  padding-bottom: 13px;
}

.account {
  padding: 24px 64px 40px;
  display: flex;
  justify-content: center;
}

.x-icon::before {
  font-family: "Font Awesome 6 Brands";
  content: "\e61b";
  font-size: 25px;
  font-weight: 400;
  color: #FFF;
  padding-right: 16px;
}

.youtube-icon::before {
  font-family: "Font Awesome 6 Brands";
  content: "\f167";
  font-size: 25px;
  font-weight: 400;
  color: #FFF;
  padding-right: 16px;
}

.facebook-icon::before {
  font-family: "Font Awesome 6 Brands";
  content: "\f09a";
  font-size: 25px;
  font-weight: 400;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .footer-cont {
    display: block;
    padding: 0;
    text-align: left;
  }
  .footer-img {
    width: 250px;
    padding: 20px 0;
    margin: 0 auto;
  }
  .footer-text {
    display: none;
  }
  .footer-text-sp {
    display: block;
    font-weight: 700;
    padding: 10px 0 30px 20px;
    line-height: 4rem;
  }
  .footer-list-item:last-child {
    font-size: 8px;
    line-height: 1rem;
    text-align: right;
    padding: 10px 20px 0 0;
  }
  .footer-list-in-list-item {
    font-size: 6px;
    text-indent: 1rem;
  }
  .account {
    padding: 16px;
    display: flex;
    justify-content: right;
  }
}
@media (max-width: 1020px) and (min-width: 768px) {
  .footer {
    background: #A7B0C5;
    color: #FFF;
    height: 200px;
  }
  .footer-cont {
    padding: 30px;
    text-align: right;
    display: flex;
    justify-content: space-between;
  }
  .footer img {
    width: 200px;
    vertical-align: middle;
  }
  .footer-text {
    display: flex;
  }
  .footer-list {
    margin-right: 40px;
  }
  .footer-list-item {
    font-size: 10px;
    text-align: left;
    line-height: 2rem;
  }
  .footer-list-last .footer-list-item {
    font-size: 10px;
    text-align: left;
    line-height: 2rem;
  }
  .footer-list-in-list {
    text-align: left;
  }
  .footer-list-in-list-item {
    text-indent: 1.5rem;
    padding-bottom: 10px;
  }
  .footer-text-sp {
    display: none;
  }
}
.index {
  width: 100%;
  text-align: center;
}
.index .mv {
  width: 100%;
  display: flex;
  justify-content: center;
  height: auto;
  padding-bottom: 24px;
  background-color: rgba(0, 160, 174, 0.1);
}
.index .mv .copy {
  display: block;
  margin: auto auto auto 10%;
  text-align: left;
  align-items: center;
}
.index .mv .mv-sp-only {
  display: none;
}
.index .mv .copy-head {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: normal;
  text-align: left;
}
.index .mv .copy-head .highlight {
  background: linear-gradient(transparent 60%, #FFE368 60%);
}
.index .mv .copy-cont {
  font-size: 14px;
  line-height: 2;
  margin-top: 64px;
  text-align: left;
}
.index .mv .mv-img {
  width: 40%;
  vertical-align: middle;
  margin: auto;
}
.index .home {
  display: flex;
  margin: 0 auto;
  padding: 50px 120px;
  -moz-column-gap: 100px;
       column-gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
}
.index .sidemenu {
  flex-shrink: 0;
}
.index .sidemenu .sidemenu-list a:hover {
  opacity: 0.6;
  filter: brightness(110%);
  transition: all 0.3s;
}
.index .sidemenu .sidemenu-list-item {
  width: 280px;
  height: 160px;
  margin-bottom: 33px;
  border-radius: 5px;
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
  line-height: normal;
  text-align: center;
  display: flex;
  overflow: hidden;
}
.index .sidemenu .sidemenu-main {
  background: #22396F;
  align-items: center;
  justify-content: center;
}
.index .sidemenu .sidemenu-list-item-frame {
  width: 230px;
  height: 110px;
  display: flex;
  border: 6px solid #ddedee;
  border-radius: 3px;
  overflow: hidden;
}
.index .sidemenu .sidemenu-list-item-frame img,
.index .sidemenu .sidemenu-list-item-frame iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.index .sidemenu .sidemenu-frame {
  width: 280px;
  height: 180px;
  background-color: #22396F;
  justify-content: center;
  padding: 16px;
  flex-wrap: wrap;
}
.index .sidemenu .sidemenu-frame-comment {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ddedee;
}
.index .sidemenu .sidemenu-link {
  width: 280px;
  height: 160px;
  border-radius: 5px;
  background-color: #22396F;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}
.index .home-sec-heading {
  width: auto;
  display: flex;
  margin-bottom: 16px;
  padding-bottom: 8px;
}
.index .home-sec-heading .home-sec-img {
  width: 30px;
  padding-top: 5px;
  margin-right: 7px;
  flex-shrink: 0;
}
.index .home-sec-heading .home-sec-ttl {
  color: #22396F;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  padding: 0 160px 0 24px;
  border-bottom: 2px solid #22396F;
  width: auto;
}
.index .newsletter-sec {
  flex: 1;
  text-align: left;
}
.index .newsletter {
  width: auto;
  height: auto;
  text-align: left;
}
.index .newsletter ul {
  margin-bottom: 64px;
}
.index .newsletter .newsletter-item {
  border-bottom: solid 1px #DDEDEE;
  margin: 16px;
  padding: 8px 24px;
  display: flex;
  gap: 16px;
}
.index .newsletter img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}
.index .newsletter .rss-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.index .newsletter h2 {
  color: #00A0AE;
  font-size: 16px;
  line-height: normal;
  padding-left: 16px;
}

@media screen and (max-width: 767px) {
  .index .mv {
    width: 100%;
    padding-top: 82px;
    display: block;
    justify-content: center;
    height: auto;
    background-color: rgba(0, 160, 174, 0.1);
  }
  .index .mv .mv-img {
    display: none;
  }
  .index .mv .mv-sp-only {
    display: block;
    width: 80%;
    margin: 0 0 0 auto;
    padding: 0 10px 10px 10px;
    opacity: 0.5;
    transform: translateY(-8%);
  }
  .index .mv .copy {
    margin-top: 0;
    margin-left: 0;
    text-align: left;
  }
  .index .mv .copy-head {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    padding: 20px 20px 0 20px;
  }
  .index .mv .copy-head .highlight {
    background: linear-gradient(transparent 60%, #FFE368 60%);
  }
  .index .mv .copy-cont {
    line-height: 1.5rem;
    font-weight: 300;
    font-size: 12px;
    margin-top: 0;
    text-align: left;
    padding: 20px 20px 0 20px;
    transform: translateY(-15%);
  }
  .index .home {
    padding: 16px;
    display: block;
  }
  .index .sidemenu {
    display: none;
  }
  .index .home-sec-heading {
    width: auto;
    display: flex;
    margin: 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #22396F;
  }
  .index .home-sec-heading .home-sec-img {
    width: 25px;
    padding-top: 5px;
    margin-right: 7px;
  }
  .index .home-sec-heading .home-sec-ttl {
    color: #22396F;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    padding: 0;
    border-bottom: none;
    width: auto;
  }
  .index .newsletter-sec {
    text-align: left;
    margin-bottom: 32px;
  }
  .index .newsletter-sec .newsletter {
    width: auto;
    height: 450px;
    border-radius: 5px;
  }
}
@media (max-width: 1020px) and (min-width: 768px) {
  .index .mv {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 400px;
    background-color: rgba(0, 160, 174, 0.1);
  }
  .index .mv .copy {
    display: block;
    margin-top: 70px;
    margin-left: 50px;
    text-align: left;
  }
  .index .mv .mv-sp-only {
    display: none;
  }
  .index .mv .copy-head {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: normal;
    text-align: left;
  }
  .index .mv .copy-head .highlight {
    background: linear-gradient(transparent 60%, #FFE368 60%);
  }
  .index .mv .copy-cont {
    font-size: 13px;
    line-height: 2;
    margin-top: 30px;
    text-align: left;
  }
  .index .mv .mv-img {
    width: 500px;
    padding: 30px;
  }
  .index .home {
    padding: 16px;
    display: block;
  }
  .index .sidemenu {
    display: none;
  }
}
.mvv-sec {
  margin-top: 80px;
}
.mvv-sec .mvv-text {
  margin: 80px 0;
  text-align: center;
  line-height: 2;
  font-size: 16px;
}
.mvv-sec .about-org {
  width: 100%;
}
.mvv-sec .about-org-img {
  display: flex;
  width: 45%;
  margin: 0 auto 50px;
  justify-content: center;
}
.mvv-sec .mvv-cont {
  width: 40%;
  margin: 0 auto;
}
.mvv-sec .mvv-cont-ttl {
  margin-top: 30px;
  color: #00A0AE;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.mvv-sec .mvv-cont-text {
  margin-top: 16px;
  text-align: center;
  line-height: 2;
  font-size: 14px;
}
.mvv-sec .mvv-cont-ol {
  margin-top: 24px;
  padding-left: 1.5em;
}
.mvv-sec .mvv-cont-li {
  list-style: decimal;
  line-height: 2;
  margin-bottom: 12px;
  font-size: 14px;
}

.mvv-creators {
  padding: 64px 0;
}
.mvv-creators:nth-of-type(even) {
  background: rgba(0, 160, 174, 0.1);
}
.mvv-creators-box {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}
.mvv-creators-ttl {
  color: #22396F;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}
.mvv-creators-ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: stretch;
}
.mvv-creators-li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mvv-creators-li a {
  width: 100%;
  height: 100%;
  min-height: 120px;
  padding: 16px;
  background: #FFF;
  border: 1px solid #DDEDEE;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s, filter 0.3s;
}
.mvv-creators-li a:hover {
  opacity: 0.6;
  filter: brightness(110%);
}
.mvv-creators .icon {
  width: 100%;
  max-width: 120px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.mvv-creators .logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.mvv-creators .logo-pad {
  padding: 8px;
}

.address {
  width: min(960px, 100% - 32px);
  margin: 80px auto 0;
}
.address-detail {
  width: 100%;
  background: #FFF;
  border: 1px solid #DDEDEE;
}
.address-ttl {
  background: #22396F;
  color: #FFF;
}
.address-th {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  padding: 20px 24px;
}
.address th,
.address td {
  border-bottom: 1px solid #DDEDEE;
  padding: 18px 24px;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
  font-size: 14px;
}
.address tbody th {
  width: 180px;
  background: rgba(0, 160, 174, 0.06);
  color: #22396F;
  font-weight: 700;
}
.address tbody tr:last-child th,
.address tbody tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .mvv-sec {
    margin-top: 40px;
  }
  .mvv-sec .mvv-text {
    margin: 40px 20px;
    font-size: 14px;
    line-height: 1.9;
  }
  .mvv-sec .about-org-img {
    width: 88%;
    margin-bottom: 32px;
  }
  .mvv-sec .mvv-cont {
    width: calc(100% - 40px);
  }
  .mvv-sec .mvv-cont-ttl {
    font-size: 16px;
    margin-top: 24px;
  }
  .mvv-sec .mvv-cont-text {
    font-size: 12px;
    line-height: 1.8;
  }
  .mvv-sec .mvv-cont-ol {
    margin-top: 16px;
    padding-left: 1.2em;
  }
  .mvv-sec .mvv-cont-li {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 10px;
  }
  .mvv-creators {
    padding: 40px 0;
  }
  .mvv-creators-box {
    width: calc(100% - 24px);
  }
  .mvv-creators-ttl {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .mvv-creators-ol {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .mvv-creators-li a {
    min-height: 96px;
    padding: 12px;
  }
  .mvv-creators .icon {
    max-width: 90px;
  }
  .mvv-creators .logo {
    max-width: 120px;
  }
  .address {
    width: calc(100% - 24px);
    margin-top: 48px;
  }
  .address-th {
    font-size: 14px;
    padding: 16px;
  }
  .address th,
  .address td {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
  }
  .address tbody th {
    background: rgba(0, 160, 174, 0.08);
  }
}
@media (max-width: 1020px) and (min-width: 768px) {
  .mvv-sec .about-org-img {
    width: 60%;
  }
  .mvv-sec .mvv-cont {
    width: 70%;
  }
  .mvv-creators-ol {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .address {
    width: calc(100% - 48px);
  }
}
.database-sec {
  width: min(1200px, 100% - 32px);
  margin: 0 auto;
  padding: 60px 0 40px;
}

.database-txt {
  font-size: 14px;
  line-height: 2;
  text-align: center;
  margin-bottom: 24px;
}

.database-txt-alert {
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
  color: #CC4B4B;
  margin-bottom: 32px;
}

.database-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #FFF;
  border: 1px solid #DDEDEE;
  margin-bottom: 48px;
}
.database-table th,
.database-table td {
  border: 1px solid #DDEDEE;
  padding: 12px 10px;
  vertical-align: middle;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  word-break: break-word;
}
.database-table img {
  width: 20px;
  height: auto;
  vertical-align: middle;
}
.database-table .db-xmark {
  width: 16px;
}

.database-thead {
  background: #22396F;
  color: #FFF;
}
.database-thead th {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}

.fixed-top,
.fixed-lefttop,
.fixed {
  background: #22396F;
  color: #FFF;
  font-weight: 700;
}

.fixed-lefttop {
  width: 220px;
}

.fixed-creator {
  width: 220px;
  background: rgba(0, 160, 174, 0.04);
}

.db-creator {
  display: block;
  color: #22396F;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  transition: opacity 0.3s, filter 0.3s;
}
.db-creator:hover {
  opacity: 0.6;
  filter: brightness(110%);
}

.db-creator-txt {
  font-size: 14px;
}

.license-link {
  display: inline-block;
  color: #00A0AE;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 12px;
  line-height: 1.5;
  transition: opacity 0.3s, filter 0.3s;
}
.license-link:hover {
  opacity: 0.6;
  filter: brightness(110%);
}

.license-txt {
  font-size: 12px;
}

.table-content {
  background: #FFF;
}
.table-content-txt {
  font-size: 12px;
  line-height: 1.6;
}

.recommendation,
.unnecessary,
.necessary {
  font-weight: 700;
  font-size: 12px;
}

.recommendation {
  color: #00A0AE;
}

.unnecessary {
  color: #333;
}

.necessary {
  color: #CC4B4B;
}

.notice {
  font-weight: 700;
  color: #22396F;
}

.tooltip {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tooltip .tooltip-txt {
  font-size: 11px;
  color: #00A0AE;
  line-height: 1.4;
}
.tooltip .description {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  padding: 10px 12px;
  background: #22396F;
  color: #FFF;
  font-size: 11px;
  line-height: 1.6;
  text-align: left;
  border-radius: 5px;
  z-index: 10;
  box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.tooltip:hover .description {
  display: block;
}

#id_spdb {
  display: none;
}

.sp-database {
  width: 100%;
  border-collapse: collapse;
  background: #FFF;
  border: 1px solid #DDEDEE;
  margin-bottom: 24px;
}
.sp-database th,
.sp-database td {
  border: 1px solid #DDEDEE;
  padding: 12px;
  font-size: 12px;
  line-height: 1.7;
  vertical-align: middle;
  word-break: break-word;
}
.sp-database img {
  width: 18px;
  height: auto;
  vertical-align: middle;
}
.sp-database .license-link {
  font-size: 12px;
}

.sp-table-top-left {
  width: 34%;
  background: #22396F;
  color: #FFF;
  font-weight: 700;
  text-align: left;
}

.sp-table-top-right {
  background: rgba(0, 160, 174, 0.08);
}
.sp-table-top-right a {
  color: #22396F;
  font-weight: 700;
  line-height: 1.6;
}

.sp-table-head,
.sp-table-head-last {
  width: 34%;
  background: rgba(34, 57, 111, 0.06);
  color: #22396F;
  font-weight: 700;
  text-align: left;
}

.sp-table-subhead {
  display: inline-block;
  font-size: 10px;
  color: #00A0AE;
  font-weight: 700;
  margin-bottom: 4px;
}

.sp-table-last {
  background: #FFF;
}

.sp-table-content-txt,
.sp-recommendation {
  font-size: 12px;
  line-height: 1.6;
}

.sp-recommendation {
  color: #00A0AE;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .database-sec {
    width: calc(100% - 24px);
    padding: 30px 0 20px;
  }
  .database-txt {
    font-size: 12px;
    text-align: left;
    line-height: 1.9;
    margin-bottom: 20px;
  }
  .database-txt-alert {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .database-table {
    display: none;
  }
  #id_spdb {
    display: block;
  }
  .tooltip {
    align-items: flex-start;
  }
  .tooltip .description {
    position: static;
    transform: none;
    display: block;
    width: 100%;
    margin-top: 6px;
    background: rgba(34, 57, 111, 0.06);
    color: #000;
    box-shadow: none;
    border-radius: 3px;
    padding: 8px 10px;
  }
}
@media (max-width: 1020px) and (min-width: 768px) {
  .database-sec {
    width: calc(100% - 40px);
  }
  .database-table th,
  .database-table td {
    padding: 10px 6px;
    font-size: 11px;
  }
  .database-table .fixed-lefttop,
  .database-table .fixed-creator {
    width: 180px;
  }
  .database-table img {
    width: 16px;
  }
  .db-creator-txt {
    font-size: 12px;
  }
  .license-link,
  .license-txt,
  .table-content-txt,
  .tooltip .tooltip-txt,
  .tooltip .description {
    font-size: 10px;
  }
}
#composer-content .common-ttl {
  width: 100%;
  height: 80px;
  background: #22396F;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.composer-sec {
  width: 100%;
  height: auto;
  padding: 50px 0 40px;
}
.composer-sec .composer-ttl {
  color: #22396F;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
.composer-sec .composer-detail {
  text-align: center;
  line-height: normal;
  padding: 40px 30px;
}
.composer-sec .marker {
  background: linear-gradient(transparent 70%, #FFEA94 70%);
}
.composer-sec .arrow {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.composer-sec .arrow::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f322";
  font-size: 18px;
  font-weight: 600;
  color: #00A0AE;
}
.composer-sec .seminar-solution {
  display: flex;
  justify-content: center;
  align-items: center;
}
.composer-sec .solution {
  width: 750px;
  padding: 20px;
  border: solid 10px #DDEDEE;
  border-radius: 10px;
}
.composer-sec .seminar-link {
  background-color: #00A0AE;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: #FFF;
  border-radius: 3px;
}
.composer-sec .seminar-link::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f08e";
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
  color: #FFF;
}
.composer-sec .seminar-img-area {
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 60px 0 20px;
  flex-wrap: wrap;
}
.composer-sec .seminar-img-area .seminar-img-box {
  width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.composer-sec .seminar-img-area .seminar-img-box .seminar-img {
  width: 200px;
  height: auto;
  padding-bottom: 30px;
}
.composer-sec .seminar-img-area .seminar-img-box .seminar-img-detail {
  font-weight: 600;
  text-align: center;
  line-height: normal;
}
.composer-sec .seminar-img-area .seminar-img-box .red {
  color: #CC4B4B;
}
.composer-sec .composer-download-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.composer-sec .composer-download-area .download-item {
  width: 450px;
  min-height: 300px;
  margin: 0 24px 60px;
  padding: 16px;
  border: 1px solid lightgray;
  background-color: #FFF;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.composer-sec .composer-download-area .download-item .download-item-name {
  color: #333;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin-top: 24px;
}
.composer-sec .composer-download-area .download-item .download-text {
  padding: 24px;
  line-height: normal;
}
.composer-sec .composer-download-area .download-item .download-item-img {
  width: 350px;
  height: 250px;
  margin: 32px;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.composer-sec .composer-download-area .download-item .download-item-img img {
  width: 300px;
  height: 200px;
}
.composer-sec .composer-download-area .download-item .download-item-button {
  background-color: #00A0AE;
  border-radius: 50px;
  color: #FFF;
  font-weight: 600;
  margin-bottom: 30px;
  padding: 10px 20px;
  font-size: 16px;
}
.composer-sec .composer-download-area .download-item .download-item-button::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f08e";
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
  color: #FFF;
}

.composer-checklists-area {
  width: 600px;
  margin: 80px auto 0;
  border: 5px dashed #DDEDEE;
  border-radius: 10px;
  padding-bottom: 30px;
}
.composer-checklists-area .composer-subttl {
  color: #22396F;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  padding: 30px 0;
}
.composer-checklists-area .composer-subttl .subttl-marker {
  background: linear-gradient(transparent 70%, #DDEDEE 70%);
}
.composer-checklists-area ul {
  padding-left: 80px;
}
.composer-checklists-area ul .composer-checklists-item {
  line-height: normal;
  padding: 10px;
  list-style-type: disc;
}
.composer-checklists-area ul .composer-checklists-item .necessary {
  font-weight: bold;
  color: #CC4B4B;
}

.composer-apply-form-button {
  margin: 80px auto 40px;
  width: 400px;
  display: flex;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  color: #FFF;
  background-color: #22396F;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.6s ease, color 0.6s ease, border-color 0.18s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 1px 8px rgba(0, 0, 0, 0.06);
}
.composer-apply-form-button:hover {
  transform: translateY(-1px);
  background-color: #FFF;
  color: #22396F;
  border: #22396F 1px solid;
}
.composer-apply-form-button:active {
  transform: translateY(0);
}

.composer-sec:nth-child(odd) {
  background: rgba(0, 160, 174, 0.1);
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #composer-content .common-ttl {
    height: 100px;
    font-size: 14px;
  }
  .composer-sec {
    height: auto;
  }
  .composer-sec .composer-ttl {
    font-size: 15px;
  }
  .composer-sec .composer-detail {
    padding: 24px 20px;
    font-size: 12px;
    line-height: 1.8;
  }
  .composer-sec .composer-download-area .download-item {
    width: calc(100% - 32px);
    margin: 0 16px 30px;
  }
  .composer-sec .composer-download-area .download-item .download-item-name {
    font-size: 16px;
  }
  .composer-sec .composer-download-area .download-item .download-text {
    padding: 20px 16px;
    font-size: 12px;
    line-height: 1.8;
  }
  .composer-sec .composer-download-area .download-item .download-item-img {
    width: 100%;
    height: auto;
    margin: 20px 0;
    padding: 16px;
  }
  .composer-sec .composer-download-area .download-item .download-item-img img {
    width: 100%;
    height: auto;
  }
  .composer-sec .composer-download-area .download-item .download-item-button {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .composer-sec .seminar-img-area {
    padding: 30px 0 10px;
  }
  .composer-sec .seminar-img-area .seminar-img-box {
    width: 100%;
    padding: 20px;
  }
  .composer-sec .seminar-img-area .seminar-img-box .seminar-img {
    width: 140px;
    padding-bottom: 20px;
  }
  .composer-sec .seminar-img-area .seminar-img-box .seminar-img-detail {
    font-size: 12px;
    line-height: 1.8;
  }
  .composer-sec .solution {
    width: calc(100% - 32px);
    font-size: 12px;
    line-height: 1.8;
  }
  .composer-checklists-area {
    width: calc(100% - 32px);
    margin-top: 50px;
  }
  .composer-checklists-area .composer-subttl {
    font-size: 16px;
    padding: 24px 0;
  }
  .composer-checklists-area ul {
    padding: 0 24px 0 40px;
  }
  .composer-checklists-area ul .composer-checklists-item {
    font-size: 12px;
    line-height: 1.8;
  }
  .composer-apply-form-button {
    width: calc(100% - 32px);
    margin-top: 50px;
    padding: 14px 20px;
    text-align: center;
  }
}
.freebgm-sec {
  width: 648px;
  margin: 60px auto;
}
.freebgm-sec .freebgm-sec-heading {
  width: 100%;
  display: flex;
  margin-bottom: 16px;
  padding-bottom: 8px;
}
.freebgm-sec .freebgm-sec-heading .freebgm-sec-img {
  width: 25px;
  padding-top: 5px;
  margin-right: 7px;
  flex-shrink: 0;
}
.freebgm-sec .freebgm-sec-heading .freebgm-sec-ttl {
  color: #22396F;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  border-bottom: 2px solid #22396F;
  width: 100%;
}
.freebgm-sec .freebgm-sec-detail {
  margin-top: 16px;
  padding: 0.5rem;
  justify-content: center;
}
.freebgm-sec .freebgm-sec-detail .freebgm-lead {
  color: #00A0AE;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.freebgm-sec .freebgm-sec-detail .detail-text:first-child {
  margin-bottom: 0;
}
.freebgm-sec .freebgm-sec-detail .detail-text.page-argument {
  margin-bottom: 30px;
}
.freebgm-sec .freebgm-sec-detail .detail-text {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.freebgm-sec .freebgm-sec-detail .detail-text .note-embed {
  border: 0;
  display: block;
  max-width: 99%;
  width: 494px;
  padding-top: 20px;
  margin: 0 auto;
  position: static;
  visibility: visible;
  height: 250px;
}
.freebgm-sec .freebgm-sec-detail .composer-list {
  margin: 24px 50px;
}
.freebgm-sec .freebgm-sec-detail .composer-list .composer-list-item {
  margin-bottom: 16px;
  list-style-type: "▸　";
  line-height: normal;
}
.freebgm-sec .freebgm-sec-detail .composer-order-list {
  margin: 24px 50px;
}
.freebgm-sec .freebgm-sec-detail .composer-order-list .composer-order-list-item {
  margin-bottom: 16px;
  list-style-type: decimal;
  line-height: normal;
}
.freebgm-sec .freebgm-sec-detail .note {
  font-size: 13px;
  padding-left: 24px;
}

@media screen and (max-width: 767px) {
  .freebgm-sec {
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
  }
  .freebgm-sec .freebgm-sec-heading {
    width: 100%;
    display: flex;
    padding: 20px 20px 0;
    margin-bottom: 0;
  }
  .freebgm-sec .freebgm-sec-heading .freebgm-sec-img {
    width: 20px;
    padding-top: 5px;
    margin-right: 5px;
  }
  .freebgm-sec .freebgm-sec-heading .freebgm-sec-ttl {
    color: #22396F;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
    border-bottom: 2px solid #22396F;
    width: 90%;
  }
  .freebgm-sec .freebgm-sec-detail {
    margin-top: 0;
    padding: 20px 30px;
    justify-content: center;
  }
  .freebgm-sec .freebgm-sec-detail .freebgm-lead {
    color: #00A0AE;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
  }
  .freebgm-sec .freebgm-sec-detail .detail-text:first-child {
    margin-bottom: 0;
  }
  .freebgm-sec .freebgm-sec-detail .detail-text {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 2rem;
    margin-bottom: 0;
    padding-bottom: 20px;
    font-feature-settings: "pkna";
    letter-spacing: 0.005em;
  }
  .freebgm-sec .freebgm-sec-detail .detail-text .note-embed {
    border: 0;
    display: block;
    max-width: 99%;
    width: 494px;
    padding-top: 20px;
    margin: 0 auto;
    position: static;
    visibility: visible;
    height: 250px;
  }
  .freebgm-sec .freebgm-sec-detail .composer-list,
  .freebgm-sec .freebgm-sec-detail .composer-order-list {
    margin: 20px 0 20px 20px;
  }
  .freebgm-sec .freebgm-sec-detail .composer-list-item,
  .freebgm-sec .freebgm-sec-detail .composer-order-list-item {
    margin-bottom: 12px;
    line-height: 1.8;
  }
  .freebgm-sec .freebgm-sec-detail .note {
    font-size: 12px;
    padding-left: 0;
  }
}
#howto-content {
  min-height: calc(100vh - 72.89px - 240px - 80px);
}
#howto-content .common-ttl {
  width: 100%;
  height: 80px;
  background: #22396F;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.foruser-sec {
  padding: 50px 0 30px;
}
.foruser-sec .foruser-sec-ttl {
  color: #22396F;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.foruser-sec .marker {
  background: linear-gradient(transparent 70%, #FFEA94 70%);
}

.foruser-sec:nth-child(odd) {
  background: rgba(0, 160, 174, 0.1);
  overflow: hidden;
}

.howto-sec-cont {
  display: flex;
  margin: 30px 0;
  justify-content: center;
  flex-wrap: wrap;
}
.howto-sec-cont .howto-box {
  width: 270.143px;
  height: 267.695px;
  margin: 40px;
  border-radius: 25px;
  border: 10px solid #00A0AE;
  background: #FFF;
  box-shadow: 18px 18px rgba(34, 57, 111, 0.2);
  background: linear-gradient(135deg, #00A0AE 60px, transparent 0);
  position: relative;
}
.howto-sec-cont .howto-box .box-ttl {
  display: flex;
}
.howto-sec-cont .howto-box .box-ttl .box-ttl-num {
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  padding: 3px 16px;
}
.howto-sec-cont .howto-box .box-ttl .box-ttl-text {
  color: #22396F;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-left: 30px;
  margin-top: 10px;
}
.howto-sec-cont .howto-box .box-detail {
  position: absolute;
  margin: 15px;
}
.howto-sec-cont .howto-box .box-detail .box-detail-img {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  padding-bottom: 6px;
}
.howto-sec-cont .howto-box .box-detail .box-text {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.eg-cont {
  display: flex;
  width: calc(100% + 150px);
  margin: 60px -75px;
  justify-content: space-between;
}

.eg-text {
  color: #000;
  text-align: center;
  font-weight: 400;
  line-height: normal;
  justify-content: center;
  padding: 40px;
}
.eg-text .note-embed {
  border: 0;
  display: block;
  max-width: 99%;
  width: 494px;
  padding: 10px;
  margin: 0 auto;
  position: static;
  visibility: visible;
  height: 200px;
}

@media screen and (max-width: 767px) {
  #howto-content {
    padding-top: 82px;
  }
  #howto-content .common-ttl {
    width: 100%;
    height: 100px;
    background: #22396F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
  }
  .foruser-sec {
    padding: 30px 0;
  }
  .foruser-sec .foruser-sec-ttl {
    color: #22396F;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
  }
  .howto-sec-cont {
    display: flex;
    margin: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  .howto-sec-cont .howto-box {
    width: 150px;
    height: 160px;
    margin: 15px;
    border-radius: 20px;
    border: 5px solid #00A0AE;
    background: #FFF;
    box-shadow: 10px 10px rgba(34, 57, 111, 0.2);
    background: linear-gradient(135deg, #00A0AE 32px, transparent 0);
    position: relative;
  }
  .howto-sec-cont .howto-box .box-ttl {
    display: flex;
  }
  .howto-sec-cont .howto-box .box-ttl .box-ttl-num {
    color: #FFF;
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
    padding: 3px 8px;
  }
  .howto-sec-cont .howto-box .box-ttl .box-ttl-text {
    color: #22396F;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
    margin: 0 auto;
    margin-top: 5px;
  }
  .howto-sec-cont .howto-box .box-detail {
    position: absolute;
    margin: 0 5px 5px 5px;
  }
  .howto-sec-cont .howto-box .box-detail .box-detail-img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    padding-bottom: 6px;
  }
  .howto-sec-cont .howto-box .box-detail .box-text {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    font-size: 11px;
    font-weight: 400;
    line-height: normal;
    margin: 5px;
    text-align: center;
  }
  .eg-cont {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin: 30px auto;
  }
  .eg-cont .eg-cont-item {
    width: 25%;
    text-align: center;
  }
  .eg-cont .eg-cont-item img {
    width: 80px;
    height: 80px;
    padding: 3px;
  }
  .eg-text {
    padding: 30px;
    font-size: 12px;
    line-height: 1.8;
  }
  .eg-text .note-embed {
    border: 0;
    display: block;
    max-width: 99%;
    width: 300px;
    padding: 0;
    margin: 0 auto;
    position: static;
    visibility: visible;
    height: 200px;
  }
}
@media (max-width: 1020px) and (min-width: 768px) {
  .eg-cont {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin: 100px auto;
  }
  .eg-cont .eg-cont-item {
    width: 25%;
    text-align: center;
  }
  .eg-cont .eg-cont-item img {
    width: 150px;
    height: 150px;
    padding: 3px;
  }
}
#content .common-ttl {
  width: 100%;
  height: 80px;
  background: #22396F;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.freebgm-sec {
  width: 648px;
  margin: 60px auto;
}
.freebgm-sec .freebgm-sec-heading {
  width: 100%;
  display: flex;
  margin-bottom: 16px;
  padding-bottom: 8px;
}
.freebgm-sec .freebgm-sec-heading .freebgm-sec-img {
  width: 25px;
  padding-top: 5px;
  margin-right: 7px;
  flex-shrink: 0;
}
.freebgm-sec .freebgm-sec-heading .freebgm-sec-ttl {
  width: 100%;
  color: #22396F;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  border-bottom: 2px solid #22396F;
}
.freebgm-sec .freebgm-sec-detail {
  margin-top: 16px;
  padding: 0.5rem;
}
.freebgm-sec .freebgm-sec-detail .detail-text {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 24px;
}
.freebgm-sec .freebgm-sec-detail .page-argument {
  margin-bottom: 30px;
}
.freebgm-sec .freebgm-sec-detail .note {
  font-size: 13px;
  padding-left: 24px;
}

.composer-list,
.composer-order-list {
  margin: 24px 50px;
}

.composer-list-item {
  margin-bottom: 16px;
  list-style-type: "▸　";
  line-height: 1.8;
}

.composer-order-list-item {
  margin-bottom: 16px;
  list-style-type: decimal;
  line-height: 1.8;
}

.composer-checklists-area {
  width: 600px;
  margin: 0 auto;
  margin-top: 40px;
  border: 5px dashed #DDEDEE;
  border-radius: 10px;
  padding-bottom: 30px;
}
.composer-checklists-area .composer-subttl {
  color: #22396F;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  padding: 30px 0;
}
.composer-checklists-area .composer-subttl .subttl-marker {
  background: linear-gradient(transparent 70%, #DDEDEE 70%);
}
.composer-checklists-area ul {
  padding-left: 80px;
}
.composer-checklists-area .composer-checklists-item {
  line-height: 1.8;
  padding: 10px;
  list-style-type: disc;
}
.composer-checklists-area .composer-checklists-item .necessary {
  font-weight: 700;
  color: #CC4B4B;
}

.composer-apply-form-button {
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 40px;
  width: 400px;
  display: flex;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  color: #FFF;
  background-color: #22396F;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.6s ease, color 0.6s ease, border-color 0.18s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 1px 8px rgba(0, 0, 0, 0.06);
}
.composer-apply-form-button:hover {
  transform: translateY(-1px);
  background-color: #FFF;
  color: #22396F;
  border: 1px solid #22396F;
}
.composer-apply-form-button:active {
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  #content .common-ttl {
    height: 100px;
    font-size: 15px;
  }
  .freebgm-sec {
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
  }
  .freebgm-sec .freebgm-sec-heading {
    width: 100%;
    display: flex;
    padding: 20px 20px 0;
    margin-bottom: 0;
  }
  .freebgm-sec .freebgm-sec-heading .freebgm-sec-img {
    width: 20px;
    padding-top: 5px;
    margin-right: 5px;
  }
  .freebgm-sec .freebgm-sec-heading .freebgm-sec-ttl {
    width: 90%;
    font-size: 15px;
  }
  .freebgm-sec .freebgm-sec-detail {
    margin-top: 0;
    padding: 20px 30px;
  }
  .freebgm-sec .freebgm-sec-detail .detail-text {
    width: 100%;
    font-size: 12px;
    line-height: 1.9;
    margin-bottom: 20px;
  }
  .freebgm-sec .freebgm-sec-detail .note {
    font-size: 12px;
    padding-left: 0;
  }
  .composer-list,
  .composer-order-list {
    margin: 20px 0 20px 20px;
  }
  .composer-list-item,
  .composer-order-list-item {
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 12px;
  }
  .composer-checklists-area {
    width: calc(100% - 32px);
    margin-top: 30px;
  }
  .composer-checklists-area .composer-subttl {
    font-size: 16px;
    padding: 24px 0;
  }
  .composer-checklists-area ul {
    padding: 0 24px 0 40px;
  }
  .composer-checklists-area .composer-checklists-item {
    font-size: 12px;
    line-height: 1.8;
  }
  .composer-apply-form-button {
    width: calc(100% - 32px);
    margin-top: 50px;
    padding: 14px 20px;
    text-align: center;
  }
}
#content .common-ttl {
  width: 100%;
  height: 80px;
  background: #22396F;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.composer-sec {
  width: 100%;
  height: auto;
  padding: 50px 0 40px;
}
.composer-sec .composer-ttl {
  color: #22396F;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
.composer-sec .composer-detail {
  text-align: center;
  line-height: normal;
  padding: 40px 30px;
}
.composer-sec .marker {
  background: linear-gradient(transparent 70%, #FFEA94 70%);
}
.composer-sec .arrow {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.composer-sec .arrow::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f322";
  font-size: 18px;
  font-weight: 600;
  color: #00A0AE;
}

.composer-sec:nth-child(odd) {
  background: rgba(0, 160, 174, 0.1);
  overflow: hidden;
}

.seminar-img-area {
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 60px 0 20px;
  flex-wrap: wrap;
}
.seminar-img-area .seminar-img-box {
  width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.seminar-img-area .seminar-img {
  width: 200px;
  height: auto;
  padding-bottom: 30px;
}
.seminar-img-area .seminar-img-detail {
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
  font-size: 14px;
}
.seminar-img-area .red {
  color: #CC4B4B;
}

.seminar-solution {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution {
  width: 750px;
  padding: 20px;
  border: solid 10px #DDEDEE;
  border-radius: 10px;
  background: #FFF;
  text-align: center;
  line-height: 1.8;
}

.composer-download-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.composer-download-area .download-item {
  width: 450px;
  min-height: 300px;
  margin: 0 24px 60px;
  padding: 16px;
  border: 1px solid lightgray;
  background-color: #FFF;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.composer-download-area .download-item-name {
  color: #333;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin-top: 24px;
}
.composer-download-area .download-text {
  padding: 24px;
  line-height: 1.8;
  text-align: left;
  font-size: 14px;
}

.seminar-link {
  background-color: #00A0AE;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: #FFF;
  border-radius: 3px;
  display: inline-block;
  font-weight: 600;
}
.seminar-link::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f08e";
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
  color: #FFF;
}
.seminar-link {
  transition: opacity 0.3s, filter 0.3s;
}
.seminar-link:hover {
  opacity: 0.6;
  filter: brightness(110%);
}

@media screen and (max-width: 767px) {
  #content .common-ttl {
    height: 100px;
    font-size: 15px;
  }
  .composer-sec {
    height: auto;
    padding: 30px 0;
  }
  .composer-sec .composer-ttl {
    font-size: 15px;
    line-height: 1.8;
    padding: 0 16px;
  }
  .composer-sec .composer-detail {
    padding: 24px 20px;
    font-size: 12px;
    line-height: 1.8;
  }
  .composer-sec .arrow {
    padding: 24px 0;
  }
  .seminar-img-area {
    padding: 30px 0 10px;
  }
  .seminar-img-area .seminar-img-box {
    width: 100%;
    padding: 20px;
  }
  .seminar-img-area .seminar-img {
    width: 140px;
    padding-bottom: 20px;
  }
  .seminar-img-area .seminar-img-detail {
    font-size: 12px;
    line-height: 1.8;
  }
  .solution {
    width: calc(100% - 32px);
    font-size: 12px;
    line-height: 1.8;
    padding: 16px;
  }
  .composer-download-area .download-item {
    width: calc(100% - 32px);
    margin: 0 16px 30px;
    min-height: auto;
  }
  .composer-download-area .download-item-name {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 16px;
  }
  .composer-download-area .download-text {
    padding: 20px 16px;
    font-size: 12px;
    line-height: 1.8;
  }
  .seminar-link {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1020px) and (min-width: 768px) {
  .seminar-img-area .seminar-img-box {
    width: 50%;
    padding: 20px;
  }
  .seminar-img-area .seminar-img {
    width: 160px;
  }
  .seminar-img-area .seminar-img-detail {
    font-size: 13px;
  }
  .solution {
    width: calc(100% - 80px);
  }
  .composer-download-area .download-item {
    width: calc(50% - 32px);
    margin: 0 16px 40px;
  }
  .composer-download-area .download-text {
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */