@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/**-------------------------------------------------------
* ベースレイアウト
*--------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

.component {
  position: relative;
  width: 100vw;
}
.component .section {
  margin: 0 auto;
  padding: 4em 0;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .component .section {
    padding: 2em 0;
  }
}
.component .section.narrow {
  padding: 2em 0;
}
@media screen and (max-width: 480px) {
  .component .section.narrow {
    padding: 1em 0;
  }
}
.component .section .section-inner {
  margin: 0 auto;
  padding: 0;
  width: 1280px;
}
@media screen and (max-width: 480px) {
  .component .section .section-inner {
    width: 94%;
  }
}
.component .section.bg-gray {
  background: #fafafa;
}
.component .section.bg-yellow {
  background: #FFFBF0;
}
.component .section.bg-brown {
  background: #F2EFE6;
}
.component .section.bg-blue {
  background: #f7fbfd;
}
.component .section.bg-pink {
  background: #FCF8F1;
}

/**-------------------------------------------------------
* 見出し
*--------------------------------------------------------*/
.kouza-section-title {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.kouza-section-title .sub-section-title {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .kouza-section-title .sub-section-title {
    font-size: 1.1rem;
  }
}
.kouza-section-title .section-head-title {
  position: relative;
  margin: 16px auto 0 auto;
  padding: 0;
  width: 100%;
  font-size: 2rem;
  font-weight: 600;
  color: #DD4A4A;
  text-align: center;
}
.kouza-section-title .section-head-title.underbar {
  padding-bottom: 16px;
}
@media screen and (max-width: 480px) {
  .kouza-section-title .section-head-title {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}
.kouza-section-title .section-head-title.head-small {
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .kouza-section-title .section-head-title.head-small {
    font-size: 1.3rem;
  }
}
.kouza-section-title .section-head-title.txt-black {
  color: #000;
}
.kouza-section-title .section-head-title.txt-blue {
  color: #5F84E1;
}
.kouza-section-title .section-head-title.txt-orange {
  color: #EE5F0C;
}
.kouza-section-title .section-head-title.underbar:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #3C7CCA;
}

/**-------------------------------------------------------
* セクションサマリー
*--------------------------------------------------------*/
.section-summary-txt {
  margin: 24px auto 0 auto;
  padding: 0;
  width: 60%;
  font-size: 1.1rem;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .section-summary-txt {
    margin-top: 16px;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}

.inner-menu {
  display: none;
}
@media screen and (max-width: 480px) {
  .inner-menu {
    display: flex;
    justify-content: space-between;
    margin: 8px auto;
    padding: 0 1em;
    width: 100%;
  }
  .inner-menu .menu-list {
    position: relative;
    margin: 0;
    padding: 0;
    width: 32%;
    height: 60px;
    background: #53a1dc;
    border-radius: 4px;
    border-bottom: 2px solid #2862aa;
  }
  .inner-menu .menu-list::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid #53a1dc;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
  }
  .inner-menu .menu-list > a {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  .inner-menu .menu-list > a .list-inner {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .inner-menu .menu-list > a .list-inner .list-icon {
    margin: 3px auto 0 auto;
    padding: 0;
    width: 32%;
    height: 30px;
  }
  .inner-menu .menu-list > a .list-inner .list-icon > img {
    margin: 0 auto;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .inner-menu .menu-list > a .list-inner .list-title {
    margin: 3px 0 0 0;
    padding: 0;
    width: 100%;
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
}

/*
* サイドメニュー
*---------------------------------*/
.kouza-menu-area {
  display: none;
}
@media screen and (max-width: 480px) {
  .kouza-menu-area {
    display: block;
  }
  .kouza-menu-area .kouza-menu-btn {
    position: fixed;
    display: block;
    top: 5%;
    right: 0;
    transform: translateY(-5%);
    margin: 0;
    padding: 0;
    width: 34px;
    height: 140px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #fff;
    background-color: #a00b0b;
    border-radius: 5px 0 0 5px;
    border: none;
    writing-mode: vertical-rl;
    z-index: 2;
  }
  .kouza-menu-area .menu-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 40px 0 0 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
  }
  .kouza-menu-area .menu-wrap .menu-list {
    margin: 0 auto;
    padding: 0;
    width: 90%;
    list-style: none;
  }
  .kouza-menu-area .menu-wrap .menu-list .list-title {
    margin: 0;
    padding: 0.5em 1.2em;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background: #114981;
  }
  .kouza-menu-area .menu-wrap .menu-list .list-wrap {
    margin: 16px auto 24px auto;
    padding: 0;
    width: 100%;
  }
  .kouza-menu-area .menu-wrap .menu-list .list-wrap .list-contents {
    margin: 0 auto;
    padding: 0;
    width: 94%;
  }
  .kouza-menu-area .menu-wrap .menu-list .list-wrap .list-contents .menu-list {
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
  }
  .kouza-menu-area .menu-wrap .menu-list .list-wrap .list-contents .menu-list:not(:last-of-type) {
    border-bottom: 1px solid #eee;
  }
  .kouza-menu-area .menu-wrap .menu-list .list-wrap .list-contents .menu-list + .menu-list {
    margin-top: 8px;
  }
  .kouza-menu-area .menu-wrap .menu-list .list-wrap .list-contents .menu-list > a {
    padding-left: 16px;
    font-size: 1rem;
    color: #173a7f;
    text-decoration: none;
    border-left: 4px solid #c43333;
  }
}

.section-wrapper {
  margin: 0 auto;
  padding: 4em 0;
  width: 100%;
}
.section-wrapper:first-of-type {
  margin-top: 24px;
}
.section-wrapper + .section-wrapper {
  margin-top: 16px;
}
@media screen and (max-width: 480px) {
  .section-wrapper {
    padding: 2em 0;
  }
}
.section-wrapper .section-wrapper-inner {
  margin: 0 auto;
  padding: 0;
  width: 90%;
}
@media screen and (max-width: 480px) {
  .section-wrapper .section-wrapper-inner {
    width: 94%;
  }
}

.no-margin {
  margin: 0 auto;
  padding: 0;
}

.bg-gray {
  background: #fafafa;
}

.bg-yellow {
  background: #FFFBF0;
}

.bg-yellow-pale {
  background: #FCFBF6;
}

.bg-yellow-brown {
  background: #FCF9F0;
}

.bg-brown {
  background: #F2EFE6;
}

.bg-brown-pale {
  background: #FAF6F1;
}

.bg-blue {
  background: #f7fbfd;
}

.bg-pink {
  background: #FCF8F1;
}

.txt-red {
  color: #CD2525;
}

.hero-section {
  position: relative;
  margin: 0 auto;
  padding: 3em 0;
  width: 100%;
  height: 500px;
  background: url(../../assets/images/hybrid-online/sumashika/img_sumashika_hero_bg.jpg) left center no-repeat;
}
@media screen and (max-width: 480px) {
  .hero-section {
    padding: 1.6em 0;
    height: 300px;
    background-position: center;
    background-size: cover;
  }
}
.hero-section .hero-title-area {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translate(-12%, -50%);
  margin: 0;
  padding: 2.5em;
  width: 50%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 480px) {
  .hero-section .hero-title-area {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.5em 1.2em;
    width: 90%;
  }
}
.hero-section .hero-title-area .sumashika-logo {
  margin: 0;
  padding: 0;
  width: 48%;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .hero-section .hero-title-area .sumashika-logo {
    margin-top: 0;
    height: 24px;
    font-size: 0.9rem;
  }
}
.hero-section .hero-title-area .sumashika-hero-title-area {
  margin: 24px 0 0 0;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .hero-section .hero-title-area .sumashika-hero-title-area {
    margin-top: 32px;
  }
}
.hero-section .hero-title-area .sumashika-hero-title-area .hero-sub-title {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 480px) {
  .hero-section .hero-title-area .sumashika-hero-title-area .hero-sub-title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.hero-section .hero-title-area .sumashika-hero-title-area .hero-sub-title .equipment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100px;
  height: 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #000;
  border-radius: 4px;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .hero-section .hero-title-area .sumashika-hero-title-area .hero-sub-title .equipment {
    width: 70px;
    height: 20px;
    font-size: 0.8rem;
  }
}
.hero-section .hero-title-area .sumashika-hero-title-area .hero-main-title {
  margin: 8px 0 0 0;
  padding: 0;
  width: 100%;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 480px) {
  .hero-section .hero-title-area .sumashika-hero-title-area .hero-main-title {
    font-size: 1.4rem;
  }
}
.hero-section .hero-title-area .hero-kouza-summary {
  margin: 16px 0 0 0;
  padding: 0;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  line-height: 1.6rem;
}
@media screen and (max-width: 480px) {
  .hero-section .hero-title-area .hero-kouza-summary {
    margin-top: 8px;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.2rem;
  }
}

.merit-area {
  margin: 0 auto;
  padding: 2.5em;
  width: 100%;
  background: #FAF6F1;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .merit-area {
    padding: 1.5em 1em;
  }
}
.merit-area .merit-section-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  width: 65%;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-section-title {
    width: 100%;
  }
}
.merit-area .merit-section-title .title-logo {
  margin: 0;
  padding: 0;
  width: 26%;
}
.merit-area .merit-section-title .title-logo > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.merit-area .merit-section-title .merit-title-area {
  margin: 0;
  padding: 0;
  width: 71%;
}
.merit-area .merit-section-title .merit-title-area .merit-sub-title {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-section-title .merit-title-area .merit-sub-title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.merit-area .merit-section-title .merit-title-area .merit-sub-title .equipment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100px;
  height: 24px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  background: #000;
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-section-title .merit-title-area .merit-sub-title .equipment {
    width: 80px;
    height: 20px;
    font-size: 0.8rem;
  }
}
.merit-area .merit-section-title .merit-title-area .merit-main-title {
  margin: 8px 0 0 0;
  padding: 0;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  color: #DB5353;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-section-title .merit-title-area .merit-main-title {
    margin-top: 0;
    font-size: 1.2rem;
    letter-spacing: -0.04rem;
  }
}
.merit-area .merit-summary {
  margin: 40px auto 0 auto;
  padding: 0;
  width: 80%;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  line-height: 1.6rem;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-summary {
    margin-top: 24px;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
}
.merit-area .merit-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px auto 0 auto;
  padding: 0;
  width: 80%;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-area {
    margin-top: 24px;
    width: 100%;
  }
}
.merit-area .merit-area .merit-list-image {
  margin: 24px auto 0 auto;
  padding: 0;
  width: 30%;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-area .merit-list-image {
    margin-top: 0;
    width: 100%;
  }
}
.merit-area .merit-area .merit-list-image .list-image {
  margin: 0 auto;
  padding: 0;
  width: 70%;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-area .merit-list-image .list-image {
    width: 50%;
  }
}
.merit-area .merit-area .merit-list-image .list-image > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.merit-area .merit-area .merit-list-image .list-catch {
  margin: 16px auto 0 auto;
  padding: 0;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  line-height: 1.8rem;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-area .merit-list-image .list-catch {
    width: 100%;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5rem;
  }
}
.merit-area .merit-area .merit-list {
  margin: 0;
  padding: 0;
  width: 60%;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-area .merit-list {
    margin-top: 24px;
    width: 100%;
  }
}
.merit-area .merit-area .merit-list .merit {
  margin: 0;
  padding: 1em 2em;
  width: 100%;
  background: #FBE797;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-area .merit-list .merit {
    padding: 1em;
  }
}
.merit-area .merit-area .merit-list .merit + .merit {
  margin-top: 8px;
}
.merit-area .merit-area .merit-list .merit .merit-title {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  color: #D32424;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-area .merit-list .merit .merit-title {
    font-size: 1rem;
  }
}
.merit-area .merit-area .merit-list .merit .merit-title::before {
  display: inline-block;
  margin-right: 16px;
  width: 36px;
  font-family: "Font Awesome 5 Free";
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-area .merit-list .merit .merit-title::before {
    margin-right: 8px;
    font-size: 1.3rem;
    width: 24px;
  }
}
.merit-area .merit-area .merit-list .merit .merit-title.title1::before {
  content: "\f19d";
}
.merit-area .merit-area .merit-list .merit .merit-title.title2::before {
  content: "\f3cd";
}
.merit-area .merit-area .merit-list .merit .merit-title.title3::before {
  content: "\f021";
}
.merit-area .merit-area .merit-list .merit .merit-sub-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -3px 0 0 16px;
  padding: 0;
  width: 190px;
  height: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #AE450C;
  background: #F0C721;
  border-radius: 4px;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-area .merit-list .merit .merit-sub-title {
    margin-left: 8px;
    width: 170px;
    height: 22px;
    font-size: 0.84rem;
  }
}
.merit-area .merit-area .merit-list .merit .merit-txt {
  margin: 8px 0 0 56px;
  padding: 8px 0 0 0;
  width: 90%;
  font-size: 0.84rem;
  color: #000;
  line-height: 1.1rem;
  border-top: 2px solid #FF9641;
}
@media screen and (max-width: 480px) {
  .merit-area .merit-area .merit-list .merit .merit-txt {
    margin-left: 0;
    width: 100%;
  }
}

.style-list-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px auto 0 auto;
  padding: 0;
  width: 80%;
}
.style-list-area .style-list {
  margin: 0;
  padding: 0;
  width: 28.6666666667%;
}
@media screen and (max-width: 480px) {
  .style-list-area .style-list {
    margin-bottom: 16px;
    width: 100%;
  }
}
.style-list-area .style-list .style-catch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 -50px;
  padding: 0;
  width: 100px;
  height: 100px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.3rem;
  background: #F38F03;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .style-list-area .style-list .style-catch {
    margin-left: -40px;
    padding: 0 0.3em;
    width: 90px;
    height: 90px;
    font-size: 0.8rem;
    line-height: 1rem;
  }
}
.style-list-area .style-list .style-image {
  position: relative;
  margin: -60px 0 0 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}
.style-list-area .style-list .style-image > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.backup-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 48px auto 0 auto;
  padding: 0;
  width: 90%;
}
@media screen and (max-width: 480px) {
  .backup-area {
    margin-top: 24px;
    width: 100%;
  }
}
.backup-area .backup-image {
  margin: 0;
  padding: 0;
  width: 40%;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .backup-area .backup-image {
    width: 100%;
  }
}
.backup-area .backup-image > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.backup-area .backup-contents-list {
  margin: 0;
  padding: 0;
  width: 57%;
}
@media screen and (max-width: 480px) {
  .backup-area .backup-contents-list {
    margin: 16px auto 0 auto;
    width: 94%;
  }
}
.backup-area .backup-contents-list .list-contents {
  margin: 0;
  padding: 0;
  width: 100%;
}
.backup-area .backup-contents-list .list-contents + .list-contents {
  margin-top: 16px;
}
.backup-area .backup-contents-list .list-contents .backup-list {
  margin: 0;
  padding: 0;
  width: 100%;
}
.backup-area .backup-contents-list .list-contents .backup-list .backup-title {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 600;
  color: #DB3D54;
}
@media screen and (max-width: 480px) {
  .backup-area .backup-contents-list .list-contents .backup-list .backup-title {
    padding-left: 46px;
    font-size: 1.1rem;
    line-height: 1.4rem;
  }
}
.backup-area .backup-contents-list .list-contents .backup-list .backup-title::before {
  content: attr(data-num);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px 0 0;
  padding: 0;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #DB3D54;
  border-radius: 5px;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .backup-area .backup-contents-list .list-contents .backup-list .backup-title::before {
    margin-left: -46px;
    width: 30px;
    height: 30px;
  }
}
.backup-area .backup-contents-list .list-contents .backup-list .backup-summary {
  margin: 8px 0 0 0;
  padding: 0 0 0 50px;
  width: 100%;
  font-size: 1rem;
  color: #000;
  line-height: 1.5rem;
}
@media screen and (max-width: 480px) {
  .backup-area .backup-contents-list .list-contents .backup-list .backup-summary {
    margin-top: 4px;
    padding-left: 46px;
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
}

.online-course-type-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px auto 56px auto;
  padding: 0;
  width: 80%;
}
@media screen and (max-width: 480px) {
  .online-course-type-area {
    margin: 16px auto;
    width: 100%;
  }
}
.online-course-type-area .course-type {
  margin: 0;
  padding: 1em;
  width: 49%;
}
@media screen and (max-width: 480px) {
  .online-course-type-area .course-type {
    width: 100%;
  }
  .online-course-type-area .course-type + .course-type {
    margin-top: 8px;
  }
}
.online-course-type-area .course-type.type-basic {
  background: #E2F2FE;
}
.online-course-type-area .course-type.type-special {
  background: #FDF7DA;
}
.online-course-type-area .course-type .type-title {
  margin: 0 auto;
  padding: 0.8em 0;
  width: 100%;
  height: 90px;
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .online-course-type-area .course-type .type-title {
    padding-top: 0.2em;
    height: 80px;
    font-size: 1rem;
  }
}
.online-course-type-area .course-type .type-title.title-basic {
  background: #2A7CBA;
}
.online-course-type-area .course-type .type-title.title-special {
  background: #DC712A;
  letter-spacing: -0.05rem;
}
.online-course-type-area .course-type .type-title .online-main-title {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .online-course-type-area .course-type .type-title .online-main-title {
    font-size: 1rem;
  }
}
.online-course-type-area .course-type .type-title .online-main-title.main-basic::before {
  content: "\f0a6";
  margin-right: 8px;
  font-size: 1.6rem;
  vertical-align: middle;
}
.online-course-type-area .course-type .type-title .online-main-title.main-special::before {
  content: "\f0a4";
  margin-right: 8px;
  font-size: 1.6rem;
  vertical-align: middle;
}
.online-course-type-area .course-type .type-title .online-sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  width: 60%;
  height: 30px;
  font-size: 0.94rem;
  font-weight: bold;
  background: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .online-course-type-area .course-type .type-title .online-sub-title {
    height: 25px;
    font-size: 0.9rem;
  }
}
.online-course-type-area .course-type .type-title .online-sub-title.sub-title-basic {
  color: #2A7CBA;
}
.online-course-type-area .course-type .type-title .online-sub-title.sub-title-special {
  color: #DC712A;
}
.online-course-type-area .course-type .type-contents-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 16px auto;
  padding: 0;
  width: 100%;
}
.online-course-type-area .course-type .type-contents-area .course-type-image {
  margin: 0;
  padding: 0;
  width: 46%;
}
.online-course-type-area .course-type .type-contents-area .course-type-image .image-area {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.online-course-type-area .course-type .type-contents-area .course-type-image .image-area > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.online-course-type-area .course-type .type-contents-area .kouza-type-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 0 0;
  padding: 0;
  width: 100%;
  height: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  background: #F49208;
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .online-course-type-area .course-type .type-contents-area .kouza-type-txt {
    width: 100%;
  }
}
.online-course-type-area .course-type .type-contents-area .type-explain {
  margin: 0;
  padding: 0;
  width: 50%;
}
.online-course-type-area .course-type .type-contents-area .type-explain .explain-midashi {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  line-height: 1.5rem;
}
@media screen and (max-width: 480px) {
  .online-course-type-area .course-type .type-contents-area .type-explain .explain-midashi {
    font-size: 0.94rem;
    line-height: 1.4rem;
  }
}
.online-course-type-area .course-type .type-contents-area .type-explain .explain-list {
  margin: 16px auto 0 auto;
  padding: 0;
  width: 100%;
  font-size: 0.9rem;
  color: #000;
  line-height: 1.5rem;
}
@media screen and (max-width: 480px) {
  .online-course-type-area .course-type .type-contents-area .type-explain .explain-list {
    margin-top: 8px;
    line-height: 1.4rem;
  }
}
.online-course-type-area .course-type .type-appeal-area {
  margin: 0 auto;
  padding: 1em;
  width: 100%;
}
.online-course-type-area .course-type .type-appeal-area.type-paper {
  background: #6EB1E4;
}
.online-course-type-area .course-type .type-appeal-area.type-paper .appeal-term-txt {
  color: #186DAD;
}
.online-course-type-area .course-type .type-appeal-area.type-online {
  background: #EC8F2C;
}
.online-course-type-area .course-type .type-appeal-area.type-online .appeal-term-txt {
  color: #DC712A;
}
.online-course-type-area .course-type .type-appeal-area .appeal-txt {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5rem;
}
@media screen and (max-width: 480px) {
  .online-course-type-area .course-type .type-appeal-area .appeal-txt {
    font-size: 0.94rem;
    line-height: 1.4rem;
  }
}
.online-course-type-area .course-type .type-appeal-area .appeal-term-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 0 auto;
  padding: 0;
  width: 90%;
  height: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .online-course-type-area .course-type .type-appeal-area .appeal-term-txt {
    font-size: 1rem;
  }
}

.get-free-license {
  position: relative;
  margin: 50px auto 0 auto;
  padding: 1.5em 2.5em;
  width: 80%;
  background: #fff;
  border: 1px solid #EA4E4E;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .get-free-license {
    padding: 1.5em 1em 1em 1em;
    width: 100%;
  }
}
.get-free-license .get-free-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -46px auto 0 auto;
  padding: 0;
  width: 70%;
  height: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  background: #EA4E4E;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .get-free-license .get-free-title {
    width: 100%;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 5px;
  }
}
.get-free-license .get-free-explain {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto 0 auto;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .get-free-license .get-free-explain {
    margin-top: 16px;
  }
}
.get-free-license .get-free-explain .explain-image {
  margin: 0;
  padding: 0;
  width: 26%;
  height: 160px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .get-free-license .get-free-explain .explain-image {
    width: 100%;
  }
}
.get-free-license .get-free-explain .explain-image > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.get-free-license .get-free-explain .explain-txt {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 70%;
  font-size: 1rem;
  color: #000;
  line-height: 1.8rem;
}
@media screen and (max-width: 480px) {
  .get-free-license .get-free-explain .explain-txt {
    margin-top: 8px;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.4rem;
  }
}

.sumashika-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  width: 60%;
}
@media screen and (max-width: 480px) {
  .sumashika-title {
    display: block;
    width: 90%;
  }
}
.sumashika-title .title-image {
  margin: 0;
  padding: 0;
  width: 30%;
}
@media screen and (max-width: 480px) {
  .sumashika-title .title-image {
    display: none;
  }
}
.sumashika-title .title-image > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 80%;
  height: 100%;
}
.sumashika-title .sumashika-txt {
  margin: 0;
  padding: 0;
  width: 70%;
}
@media screen and (max-width: 480px) {
  .sumashika-title .sumashika-txt {
    width: 100%;
  }
}
.sumashika-title .sumashika-txt .txt-title {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0E5C94;
}
@media screen and (max-width: 480px) {
  .sumashika-title .sumashika-txt .txt-title {
    text-align: center;
  }
}
.sumashika-title .sumashika-txt .txt-title .txt-image {
  display: inline-block;
  margin: 0 0 0 16px;
  padding: 0;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .sumashika-title .sumashika-txt .txt-title .txt-image {
    margin: 16px auto 0 auto;
  }
}
.sumashika-title .sumashika-txt .sumashika-summary {
  margin: 24px 0 0 0;
  padding: 0;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  line-height: 1.6rem;
}
@media screen and (max-width: 480px) {
  .sumashika-title .sumashika-txt .sumashika-summary {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.sumashika-title .sumashika-txt .sumashika-summary .txt-red {
  color: #CD2525;
}

.offer-cta-area {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 32px auto 0 auto;
  padding: 1em;
  width: 70%;
  background: #fff;
  border: 1px solid #F98715;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .offer-cta-area {
    padding-bottom: 2rem;
    width: 94%;
  }
}
.offer-cta-area .get-shikaku-txt {
  margin: 0;
  padding: 1em 1.5em;
  width: 56%;
  background: #FFE6BE;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .offer-cta-area .get-shikaku-txt {
    padding: 0;
    width: 100%;
    background: none;
  }
}
.offer-cta-area .get-shikaku-txt .txt-title {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  color: #DC712A;
  text-align: center;
}
.offer-cta-area .get-shikaku-txt .txt-title .large-title {
  font-size: 1.4rem;
  color: #DC4A2A;
}
.offer-cta-area .get-shikaku-txt .txt-title::before {
  content: "\f073";
  margin-right: 16px;
  font-size: 1.8rem;
  color: #F42D2D;
}
.offer-cta-area .get-shikaku-txt .get-txt {
  margin: 8px auto 0 auto;
  padding: 0;
  width: 100%;
  font-size: 0.9rem;
  color: #000;
  line-height: 1.5rem;
}
.offer-cta-area .offer-btn-area {
  margin: 0;
  padding: 0;
  width: 42%;
}
@media screen and (max-width: 480px) {
  .offer-cta-area .offer-btn-area {
    width: 100%;
  }
}
.offer-cta-area .offer-btn-area .document-btn {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 60px;
}
.offer-cta-area .offer-btn-area .document-btn .head-banner {
  position: relative;
  margin: 0 auto;
  padding: 0.2em 0;
  width: 70%;
  font-size: 0.74rem;
  font-weight: 600;
  color: #4E7FD3;
  text-align: center;
  background: #fff;
  border: 1px solid #4E7FD3;
  border-radius: 4px;
}
.offer-cta-area .offer-btn-area .document-btn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -12px 0 0 0;
  padding: 0.4em 0 0 0;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #4E7FD3;
  border-radius: 4px;
  transition: all 0.3s;
}
.offer-cta-area .offer-btn-area .document-btn > a:hover {
  background: #184798;
}
.offer-cta-area .offer-btn-area .document-btn > a::before {
  content: "\f518";
  margin-right: 16px;
  font-size: 1.8rem;
  line-height: 2rem;
}
.offer-cta-area .offer-btn-area .document-btn > a::after {
  content: "\f138";
  margin-left: 16px;
  font-size: 1.2rem;
}
.offer-cta-area .offer-btn-area .document-btn > a .free-head {
  margin: 0 16px 0 0;
  padding: 0;
  width: 80px;
  font-size: 1rem;
  font-weight: 600;
  color: #4E7FD3;
  text-align: center;
  background: #FDF7DA;
  border-radius: 4px;
  vertical-align: middle;
}
.offer-cta-area .offer-btn-area .application-btn {
  position: relative;
  margin: 18px auto 0 auto;
  padding: 0;
  width: 100%;
  height: 60px;
}
.offer-cta-area .offer-btn-area .application-btn .head-banner {
  position: relative;
  margin: 0 auto;
  padding: 0.2em 0;
  width: 70%;
  font-size: 0.74rem;
  font-weight: 600;
  color: #E75E5E;
  text-align: center;
  background: #fff;
  border: 1px solid #E75E5E;
  border-radius: 4px;
}
.offer-cta-area .offer-btn-area .application-btn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -12px 0 0 0;
  padding: 0.4em 0 0 0;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #E75E5E;
  border-radius: 4px;
  transition: all 0.3s;
}
.offer-cta-area .offer-btn-area .application-btn > a:hover {
  background: #c42323;
}
.offer-cta-area .offer-btn-area .application-btn > a::before {
  content: "\f518";
  margin-right: 16px;
  font-size: 1.8rem;
  line-height: 2rem;
}
.offer-cta-area .offer-btn-area .application-btn > a::after {
  content: "\f138";
  margin-left: 16px;
  font-size: 1.2rem;
}
.offer-cta-area .offer-btn-area .application-btn > a .free-head {
  margin: 0 16px 0 0;
  padding: 0;
  width: 80px;
  font-size: 1rem;
  font-weight: 600;
  color: #E75E5E;
  text-align: center;
  background: #FDF7DA;
  border-radius: 4px;
  vertical-align: middle;
}/*# sourceMappingURL=sumashika.css.map */