@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

input, button, textarea, select, option {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

/**
 * メディアクエリ
 * @param {string} $mode - max または min
 * @param {number} $width - 設定値
 */
/**
 * メディアクエリ PC
 * @param {number} [$width:$breakpoin] - 設定値
 */
/**
 * メディアクエリ SP
 * @param {number} [$width:$breakpoin] - 設定値
 */
/**
 * メディアクエリによるIE11ハック
 */
/**
 * VW計算
 * @param {string} $property  - プロパティ
 * @param {number} $value - 基準となる値
 * @param {number} $basewidth - 基準となるウィンドウ幅
 * @param {number} [$maxwidth:0] - 拡大を停止するウィンドウ幅
 * @param {number} [$minwidth:0] - 縮小を停止するウィンドウ幅
 */
@font-face {
  /*CSSで扱う際のフォント名*/
  font-family: "BIZ UDPGothic";
  /*フォントデータが配置されているパスとデータの形式を指定*/
  src: url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap") format("woff");
}
html {
  font-size: 62.5%;
}

body {
  min-width: 320px;
  min-height: 100dvh;
  color: #000;
  font-family: "BIZ UDPGothic", Meiryo, sans-serif;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

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

img {
  display: block;
  max-width: 100%;
}

picture {
  display: block;
}

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

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.main {
  line-height: 1.7;
  letter-spacing: 0.05rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main {
    padding-top: 90px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .main {
    padding-top: 165px;
  }
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 50px;
  }
}
.main .ended-txt {
  background-color: #ccc;
  font-weight: bold;
  padding: 10px;
  letter-spacing: 0.05em;
}
.main .top-btn-wrap {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .main .top-btn-wrap {
    bottom: -60px;
  }
}
@media screen and (max-width: 767px) {
  .main .top-btn-wrap {
    bottom: -52px;
  }
}
.main .top-btn-inner {
  opacity: 0;
  transition: opacity, 0.5s ease;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
}
.main .top-btn-inner.is-active {
  opacity: 1;
  position: fixed;
}
.main .top-btn-inner.is-fixed {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .main .top-btn-inner {
    max-width: 1316px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .main .top-btn-inner {
    padding-right: 15px;
  }
}
.main .top-btn {
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #0C6AD2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .main .top-btn {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .main .top-btn {
    width: 64px;
    height: 64px;
  }
}
.main .top-btn .top-arrow {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .main .top-btn .top-arrow {
    width: 16px;
  }
}
@media screen and (max-width: 767px) {
  .main .top-btn .top-arrow {
    width: 12px;
  }
}
.main .top-btn .top-txt {
  font-weight: bold;
  color: #0C6AD2;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .main .top-btn .top-txt {
    font-size: 1.6rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .main .top-btn .top-txt {
    font-size: 1.2rem;
    margin-top: 6px;
  }
}
@media screen and (min-width: 768px) {
  .main .cmn-link-wrap {
    gap: 40px;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .main .cmn-link-wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.main .cmn-link-wrap.none-active .link {
  border-color: #707070;
}
@media screen and (min-width: 768px) {
  .main .cmn-link-wrap.none-active .link:hover {
    color: #707070;
  }
}
.main .cmn-link-wrap.none-active .exposition {
  color: #707070;
}
.main .cmn-link-wrap.none-active .entry {
  background-color: #707070;
  pointer-events: none;
}
.main .cmn-link-wrap .link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  border-color: #E32D00;
  border-style: solid;
}
@media screen and (min-width: 768px) {
  .main .cmn-link-wrap .link {
    width: 50%;
    border-radius: 10px;
    padding: 16px 0;
    font-size: 2.5rem;
    border-width: 4px;
    transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .main .cmn-link-wrap .link {
    width: 100%;
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .main .cmn-link-wrap .link {
    margin-top: 20px;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 1.7rem;
    border-width: 2px;
  }
}
@media screen and (min-width: 768px) {
  .main .cmn-link-wrap .link:hover {
    color: #E32D00;
    background-color: #FFF93D;
  }
}
@media screen and (min-width: 768px) {
  .main .cmn-link-wrap .link:hover .icon-arrow {
    right: 15px;
  }
}
.main .cmn-link-wrap .exposition {
  color: #E32D00;
  background-color: #fff;
}
.main .cmn-link-wrap .entry {
  color: #fff;
  background-color: #E32D00;
}
@media screen and (min-width: 768px) {
  .main .cmn-link-wrap .entry:hover .icon-arrow {
    filter: initial;
  }
}
.main .cmn-link-wrap .entry .icon-arrow {
  filter: brightness(0) invert(1);
}
.main .cmn-link-wrap .icon-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .main .cmn-link-wrap .icon-arrow {
    transition: right 0.3s ease;
    right: 20px;
    width: 19px;
  }
}
@media screen and (max-width: 767px) {
  .main .cmn-link-wrap .icon-arrow {
    right: 15px;
    width: 11px;
  }
}

.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
  }
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: "Noto Sans JP", Meiryo, sans-serif;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header .header-inner {
    max-width: 1296px;
    margin-inline: auto;
    padding-left: 40px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .header .header-inner {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header .header-logo .link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .header .header-logo .link {
    gap: 5px;
  }
}
@media screen and (min-width: 768px) {
  .header .header-logo .prefecture-logo {
    width: 50px;
    margin-right: 11px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-logo .prefecture-logo {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-logo .logo-txt {
    display: flex;
    align-items: center;
    gap: 5px;
  }
}
.header .header-logo .logo-txt .prefecture-name {
  font-weight: 600;
  color: #0D6AD3;
  display: block;
}
@media screen and (min-width: 768px) {
  .header .header-logo .logo-txt .prefecture-name {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header .header-logo .logo-txt .prefecture-name {
    font-size: 1.4rem;
  }
}
.header .header-logo .logo-txt .site-title {
  display: block;
  background-color: #0D6AD3;
  color: #fff;
  font-weight: bold;
  padding: 4px 6px;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .header .header-logo .logo-txt .site-title {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header .header-logo .logo-txt .site-title {
    font-size: 1rem;
  }
}
.header .header-nav {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .header .header-nav {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .header .header-nav {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header .header-nav {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    padding: 26px 20px 200px;
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-list {
    display: flex;
    align-items: center;
    gap: 33px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .header .header-nav .header-list {
    gap: min(0.8vw, 33px);
  }
}
@media screen and (max-width: 767px) {
  .header .header-nav .header-item {
    border-bottom: 1px solid #EFEFEF;
  }
}
@media screen and (max-width: 767px) {
  .header .header-nav .header-item:first-child {
    border-top: 1px solid #EFEFEF;
  }
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-item .link {
    border-bottom: 1px;
    padding: 37px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: color 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .header .header-nav .header-item .link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-item .link::after {
    content: "";
    display: block;
    width: calc(100% + 20px);
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0D6AD3;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-item .link:hover {
    color: #0D6AD3;
  }
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-item .link:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .header .header-nav .header-item .nav-arrow {
    height: 10px;
    width: 7px;
  }
}
.header .header-nav .header-contact {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-contact {
    margin-left: 40px;
    gap: 2px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .header .header-nav .header-contact {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .header .header-nav .header-contact {
    justify-content: center;
    margin-top: 40px;
    gap: 11px;
  }
}
.header .header-nav .header-contact.none-active .link {
  border-color: #707070;
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-contact.none-active .link:hover {
    color: #707070;
    background-color: #FFF93D;
    border: 2px solid #707070;
  }
}
.header .header-nav .header-contact.none-active .exposition {
  color: #707070;
}
.header .header-nav .header-contact.none-active .entry {
  pointer-events: none;
  background-color: #707070;
}
.header .header-nav .header-contact .link {
  display: block;
  text-align: center;
  background-color: #E32D00;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-contact .link {
    border: 2px solid #E32D00;
    width: 136px;
    padding: 16px 0;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
}
@media screen and (max-width: 950px) {
  .header .header-nav .header-contact .link {
    width: min(10vw, 136px);
  }
}
@media screen and (max-width: 767px) {
  .header .header-nav .header-contact .link {
    width: 162px;
    padding: 15px 0;
    border: 1px solid #E32D00;
    border-radius: 2px;
  }
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-contact .link:hover {
    color: #E32D00;
    background-color: #FFF93D;
    border: 2px solid #E32D00;
  }
}
.header .header-nav .header-contact .exposition {
  background-color: #fff;
  color: #E32D00;
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-contact .exposition {
    border-radius: 2px 0 0 2px;
  }
}
@media screen and (min-width: 768px) {
  .header .header-nav .header-contact .entry {
    border-radius: 0 2px 2px 0;
  }
}
.header .hamburger {
  cursor: pointer;
}
.header .hamburger .hamburger-border {
  display: block;
  position: relative;
  width: 16px;
  height: 13px;
  margin-inline: auto;
}
.header .hamburger .hamburger-border > span {
  transition: all 0.3s;
  width: 16px;
  height: 2px;
  background-color: #717171;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .hamburger .hamburger-border > span:nth-last-of-type(2) {
  margin-top: -5px;
}
.header .hamburger .hamburger-border > span:nth-last-of-type(3) {
  margin-top: 5px;
}
.header .hamburger .txt {
  display: block;
  margin-top: 3px;
  color: #717171;
  font-size: 1rem;
  font-weight: bold;
}
.header.is-open .header-nav {
  opacity: 1;
  visibility: inherit;
  background-color: #fff;
  transition: opacity 0.3s, visibility 0.3s;
}
.header.is-open .hamburger .hamburger-border > span:nth-last-of-type(1) {
  opacity: 0;
}
.header.is-open .hamburger .hamburger-border > span:nth-last-of-type(2) {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0;
  transform: rotate(-45deg);
}
.header.is-open .hamburger .hamburger-border > span:nth-last-of-type(3) {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0;
  transform: rotate(45deg);
}
.header.is-open + .main .overlay {
  opacity: 1;
  visibility: inherit;
}

.main .overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 101;
  width: 100vw;
  height: 100vh;
}

.footer .footer-grid-area {
  background-color: #0D6AD3;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer .footer-grid-inner {
    padding: 80px 30px;
    display: grid;
    grid-template-areas: "areaLogo areaMenu" "areaContact areaMenu";
    max-width: 1143px;
    margin-inline: auto;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media screen and (max-width: 900px) {
  .footer .footer-grid-inner {
    display: block;
    padding: 60px 27px 40px;
  }
}
.footer .footer-logo {
  grid-area: areaLogo;
}
@media screen and (min-width: 768px) {
  .footer .footer-logo {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 1100px) {
  .footer .footer-logo {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-logo .prefecture-logo {
    width: 177px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-logo .prefecture-logo {
    width: 114px;
  }
}
.footer .footer-logo .site-title {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer .footer-logo .site-title {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .footer .footer-logo .site-title {
    margin-top: 15px;
    margin-left: initial;
  }
}
.footer .footer-menu {
  grid-area: areaMenu;
}
@media screen and (max-width: 900px) {
  .footer .footer-menu {
    margin-top: 35px;
  }
}
.footer .footer-menu .footer-list {
  display: grid;
}
@media screen and (min-width: 768px) {
  .footer .footer-menu .footer-list {
    gap: 30px;
  }
}
@media screen and (max-width: 900px) {
  .footer .footer-menu .footer-list {
    gap: 20px;
  }
}
.footer .footer-menu .footer-item .link {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer .footer-menu .footer-item .link span {
    display: inline-block;
    line-height: 1.3;
    border-bottom: 1px solid;
    border-color: transparent;
    transition: border-color 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-menu .footer-item .link:hover span {
    border-color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-menu .footer-item .link:hover .menu-arrow {
    left: 3px;
  }
}
.footer .footer-menu .footer-item .menu-arrow {
  filter: brightness(0) invert(1);
  width: 8px;
  height: 10px;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  .footer .footer-menu .footer-item .menu-arrow {
    transition: left 0.3s ease;
    top: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-menu .footer-item .menu-arrow {
    top: 0.4em;
  }
}
.footer .footer-contact {
  grid-area: areaContact;
}
@media screen and (min-width: 768px) {
  .footer .footer-contact {
    margin-top: 60px;
  }
}
@media screen and (max-width: 900px) {
  .footer .footer-contact {
    margin-top: 40px;
  }
}
.footer .footer-contact .footer-contact-title {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-contact-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-contact .footer-contact-title {
    font-size: 2rem;
  }
}
.footer .footer-contact .footer-contact-link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 5px;
  font-weight: bold;
  color: #0C6AD2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-contact-link {
    border: 2px solid #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 8px 20px 8px 0;
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-contact .footer-contact-link {
    padding: 12px 0;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-contact-link:hover {
    background-color: #0C6AD1;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-contact-link:hover .icon-display {
    filter: brightness(0) invert(1);
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-contact-link:hover .footer-arrow {
    right: 15px;
    filter: brightness(0) invert(1);
  }
}
.footer .footer-contact .footer-contact-link .icon-display {
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-contact-link .icon-display {
    transition: filter 0.3s ease;
    width: 27px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-contact .footer-contact-link .icon-display {
    width: 20px;
  }
}
.footer .footer-contact .footer-contact-link .footer-arrow {
  width: 11px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-contact-link .footer-arrow {
    transition: filter 0.3s ease, right 0.3s ease;
  }
}
.footer .footer-contact .footer-call {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-call {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-contact .footer-call {
    margin-top: 25px;
  }
}
.footer .footer-contact .footer-call .call-number {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-call .call-number {
    margin-top: 20px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-contact .footer-call .call-number {
    margin-top: 10px;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-call .icon-call {
    width: 30px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-contact .footer-call .icon-call {
    width: 24px;
    margin-right: 5px;
  }
}
.footer .footer-contact .footer-contact-note {
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer .footer-contact .footer-contact-note {
    margin-top: 45px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-contact .footer-contact-note {
    margin-top: 30px;
    font-size: 1.3rem;
  }
}
.footer .footer-template-area {
  max-width: 1143px;
  margin-inline: auto;
  font-family: Meiryo, sans-serif;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer .footer-template-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer .footer-template-area .footer-address-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .footer .footer-template-area .footer-address-wrap {
    display: block;
    padding-bottom: 15px;
  }
}
.footer .footer-template-area .logo-link {
  vertical-align: bottom;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .footer .footer-template-area .footer-template-logo {
    width: 208px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-template-area .footer-template-logo {
    width: 122px;
    padding-left: 27px;
  }
}
.footer .footer-template-area .footer-address {
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .footer .footer-template-area .footer-address {
    font-size: 1.5rem;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-template-area .footer-address {
    border-top: 1px solid #C9C9C9;
    font-size: 1.2rem;
    padding-left: 27px;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-template-area .footer-address > span {
    line-height: 1.2;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-template-area .footer-address > span {
    line-height: 1.5;
    display: block;
  }
}
.footer .footer-template-area .access-link {
  color: #0C5FA6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .footer .footer-template-area .access-link {
    border: 2px solid #0C5FA6;
    font-size: 1.6rem;
    width: 189px;
    padding: 10px 0;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .footer .footer-template-area .access-link {
    position: absolute;
    top: 20px;
    right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-template-area .access-link {
    border: 1px solid #0C5FA6;
    width: 154px;
    font-size: 1.3rem;
    padding: 9px 0;
    position: absolute;
    top: 7px;
    right: 27px;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-template-area .access-link:hover {
    background-color: #0C5FA6;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-template-area .access-link:hover .icon-hover {
    opacity: 1;
  }
}
.footer .footer-template-area .access-link .access-icon-wrap {
  position: relative;
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .footer .footer-template-area .access-link .access-icon-wrap {
    width: 15px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-template-area .access-link .access-icon-wrap {
    width: 14px;
    margin-right: 4px;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-template-area .access-link .icon-hover {
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.page-home .kv {
  width: 100%;
}
.page-home .kv img {
  width: 100%;
}
.page-home .section {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-home .section {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section {
    padding: 70px 0;
  }
}
.page-home .section-inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-home .main-content {
    max-width: 1000px;
    margin-inline: auto;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .main-content {
    padding: 0 27px;
  }
}
.page-home .section-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-home .section-title {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-title {
    margin-bottom: 40px;
  }
}
.page-home .section-title .title-icon {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-home .section-title .title-icon {
    width: 55px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-title .title-icon {
    width: 40px;
  }
}
.page-home .section-title .title-txt {
  font-family: "Noto Sans JP", Meiryo, sans-serif;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-home .section-title .title-txt {
    margin-top: 5px;
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-title .title-txt {
    font-size: 3.6rem;
  }
}
.page-home .color-blue {
  color: #0D6AD3;
}
.page-home .bg-pattern {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .page-home .section-message {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message {
    padding-top: 80px;
  }
}
.page-home .section-message .bg-pattern01 {
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-message .bg-pattern01 {
    width: 340px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message .bg-pattern01 {
    width: 164px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-message .for-company {
    display: flex;
    justify-content: space-between;
    gap: 60px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-message .message-wrap {
    width: 537px;
  }
}
.page-home .section-message .message-wrap .message-heading {
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-home .section-message .message-wrap .message-heading {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message .message-wrap .message-heading {
    font-size: 2.1rem;
  }
}
.page-home .section-message .message-wrap .message-text {
  margin-top: 30px;
}
.page-home .section-message .chart-wrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-home .section-message .chart-wrap {
    width: 403px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message .chart-wrap {
    padding: 0 26px;
  }
}
.page-home .section-message .chart-wrap .chart-title {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-home .section-message .chart-wrap .chart-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message .chart-wrap .chart-title {
    margin-top: 45px;
    margin-bottom: 10px;
  }
}
.page-home .section-message .about-dx {
  background-color: #0D6AD3;
  border-radius: 5px;
  position: relative;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page-home .section-message .about-dx {
    margin-top: 50px;
    padding: 40px 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message .about-dx {
    margin-top: 40px;
    padding: 30px 25px;
  }
}
.page-home .section-message .about-dx .bg-pattern02 {
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: soft-light;
}
@media screen and (min-width: 768px) {
  .page-home .section-message .about-dx .bg-pattern02 {
    width: 305px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message .about-dx .bg-pattern02 {
    width: 133px;
  }
}
.page-home .section-message .about-dx .dx-heading {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-home .section-message .about-dx .dx-heading {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-message .about-dx .dx-heading > .big {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message .about-dx .dx-heading > .big {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-message .about-dx .dx-text {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message .about-dx .dx-text {
    margin-top: 15px;
  }
}
.page-home .section-message .source {
  color: #1A1A1A;
}
@media screen and (min-width: 768px) {
  .page-home .section-message .source {
    margin-top: 25px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message .source {
    margin-top: 20px;
    font-size: 1.3rem;
  }
}
.page-home .section-message .source .link {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page-home .section-message .source .link:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-message .cmn-link-wrap {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-message .cmn-link-wrap {
    margin-top: 40px;
  }
}
.page-home .section-program {
  background-color: #F5F5F5;
  border-bottom: 2px solid #fff;
}
@media screen and (min-width: 768px) {
  .page-home .section-program {
    padding: 90px 0;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-program {
    padding: 70px 0;
  }
}
.page-home .section-program .program-title {
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-program .program-title {
    font-size: 2rem;
  }
}
.page-home .section-program .main-content {
  max-width: 1100px;
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-program .program-wrap {
    margin-top: 40px;
  }
}
.page-home .section-program .program-panel {
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-home .section-program .program-panel:not(:first-child) {
    margin-top: 20px;
  }
}
.page-home .section-program .program-panel.program01 .program-panel-title {
  background-color: #F06564;
}
.page-home .section-program .program-panel.program01 .program-panel-tag {
  color: #F06564;
  border-color: #F06564;
}
.page-home .section-program .program-panel.program02 .program-panel-title {
  background-color: #EE8733;
}
.page-home .section-program .program-panel.program02 .program-panel-tag {
  color: #EE8733;
  border-color: #EE8733;
}
.page-home .section-program .program-panel.program03 .program-panel-title {
  background-color: #98CB1F;
}
.page-home .section-program .program-panel.program03 .program-panel-tag {
  color: #98CB1F;
  border-color: #98CB1F;
}
.page-home .section-program .program-panel.program04 .program-panel-title {
  background-color: #A56ED0;
}
.page-home .section-program .program-panel.program04 .program-panel-tag {
  color: #A56ED0;
  border-color: #A56ED0;
}
.page-home .section-program .program-panel a {
  display: block;
  width: 100%;
  height: 100%;
}
.page-home .section-program .program-panel-title {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 10px;
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-panel-title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-program .program-panel-title {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-panel-title small {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-program .program-panel-title small {
    font-size: 1.4rem;
  }
}
.page-home .section-program .program-panel-image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-panel-details {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-program .program-panel-details {
    padding: 30px 25px;
  }
}
.page-home .section-program .program-panel-tag {
  display: inline-block;
  font-weight: bold;
  border-style: solid;
  border-width: 2px;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-panel-tag {
    font-size: 1.2rem;
    padding: 2px 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-program .program-panel-tag {
    font-size: 1.4rem;
    padding: 2px 12px;
  }
}
.page-home .section-program .program-panel-head {
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-panel-head {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-program .program-panel-head {
    font-size: 1.8rem;
  }
}
.page-home .section-program .program-panel-text {
  margin-top: 10px;
  letter-spacing: 0;
  font-size: 1.6rem;
}
.page-home .section-program .program-link {
  margin-top: 40px;
}
.page-home .section-program .program-link .link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0D6AD3;
  color: #fff;
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
  font-weight: bold;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-link .link {
    width: 300px;
    font-size: 1.6rem;
    border: 2px solid #0D6AD3;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-program .program-link .link {
    font-size: 1.5rem;
    width: 85%;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-link .link:hover {
    color: #0D6AD3;
    background-color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-link .link:hover .icon-arrow {
    right: 15px;
    filter: initial;
  }
}
.page-home .section-program .program-link .icon-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 11px;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 768px) {
  .page-home .section-program .program-link .icon-arrow {
    transition: right 0.3s ease, filter 0.3s ease;
  }
}
.page-home .section-course {
  background-color: #F2F5F9;
}
.page-home .section-course .bg-pattern01 {
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-course .bg-pattern01 {
    width: 441px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .bg-pattern01 {
    width: 155px;
  }
}
.page-home .section-course .bg-pattern02 {
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-course .bg-pattern02 {
    width: 397px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .bg-pattern02 {
    width: 153px;
  }
}
.page-home .section-course .main-content .course-heading {
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course-heading {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .main-content .course-heading {
    font-size: 2.1rem;
  }
}
.page-home .section-course .main-content .course-lead {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course-lead {
    margin-bottom: 50px;
    line-height: 1.6;
    font-size: 2.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .main-content .course-lead {
    margin-bottom: 40px;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course-wrap {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(415px, 1fr));
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .main-content .course-wrap {
    margin-top: 20px;
  }
}
.page-home .section-course .main-content .course {
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-home .section-course .main-content .course {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course.course-dx {
    border: 4px solid #003A83;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .main-content .course.course-dx {
    border: 2px solid #003A83;
  }
}
.page-home .section-course .main-content .course.course-dx .course-name {
  background-color: #003A83;
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course.course-dx .course-name {
    font-size: 2.8rem;
    padding: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course.course-dx .course-dx-details {
    display: flex;
  }
}
@media screen and (max-width: 900px) {
  .page-home .section-course .main-content .course.course-dx .course-dx-details {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course.course-dx .course-img {
    width: 500px;
  }
}
@media screen and (max-width: 900px) {
  .page-home .section-course .main-content .course.course-dx .course-img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course.course-dx .course-list {
    padding-top: 45px;
  }
}
.page-home .section-course .main-content .course .course-name {
  color: #fff;
  background-color: #0D6AD3;
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course .course-name {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .main-content .course .course-name {
    line-height: 1.5;
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course .course-list {
    padding-block: 35px;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .main-content .course .course-list {
    padding: 25px;
  }
}
.page-home .section-course .main-content .course .course-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course .course-item {
    padding-left: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .main-content .course .course-item {
    padding-left: 10px;
  }
}
.page-home .section-course .main-content .course .course-item::before {
  content: "";
  display: block;
  background-color: #0D6AD3;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course .course-item::before {
    top: 0.5em;
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .main-content .course .course-item::before {
    top: 0.6em;
    width: 5px;
    height: 5px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-course .main-content .course .course-item:not(:first-child) {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-course .main-content .course .course-item:not(:first-child) {
    margin-top: 15px;
  }
}
.page-home .section-feature .bg-pattern01 {
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-feature .bg-pattern01 {
    width: 345px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-feature .bg-pattern01 {
    width: 151px;
  }
}
.page-home .section-feature .main-content .feature-heading {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-home .section-feature .main-content .feature-heading {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-feature .main-content .feature-heading {
    font-size: 2.1rem;
  }
}
.page-home .section-feature .main-content .feature-lead {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .page-home .section-feature .main-content .feature-lead {
    line-height: 1.6;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-feature .main-content .feature-lead {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-feature .main-content .feature-wrap {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-feature .main-content .feature {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-feature .main-content .feature .feature-img {
    width: 100%;
  }
}
.page-home .section-feature .main-content .feature .feature-summary {
  font-weight: bold;
  color: #0D6AD3;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-home .section-feature .main-content .feature .feature-summary {
    font-size: 2.4rem;
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-feature .main-content .feature .feature-summary {
    font-size: 2rem;
    margin-top: 20px;
  }
}
.page-home .section-feature .main-content .feature .feature-txt {
  margin-top: 10px;
}
.page-home .section-contact {
  position: relative;
}
.page-home .section-contact .bg-contact img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .page-home .section-contact .bg-contact img {
    height: 539px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-contact .bg-contact img {
    height: 420px;
  }
}
.page-home .section-contact .section-inner {
  position: absolute;
  inset: 0;
  color: #fff;
  text-align: center;
  display: flex;
}
.page-home .section-contact .section-inner .main-content {
  margin: auto;
  width: 100%;
}
.page-home .section-contact .section-inner .contact-lead {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-home .section-contact .section-inner .contact-lead {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-contact .section-inner .contact-lead {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
}
.page-home .section-contact .section-inner .contact-copy {
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .page-home .section-contact .section-inner .contact-copy {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-contact .section-inner .contact-copy {
    line-height: 1.5;
    font-size: 2.7rem;
  }
}
.page-home .section-contact .section-inner .cmn-link-wrap {
  margin-top: 38px;
}
.page-home .section-contact .section-inner .cmn-link-wrap .link {
  border-color: #fff;
}
.page-home .section-details .bg-pattern01 {
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .bg-pattern01 {
    width: 295px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .bg-pattern01 {
    width: 144px;
  }
}
.page-home .section-details .bg-pattern02 {
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .bg-pattern02 {
    width: 441px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .bg-pattern02 {
    width: 216px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .details-schedule {
    padding: 0 27px;
  }
}
.page-home .section-details .details-schedule .schedule-title {
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .details-schedule .schedule-title {
    font-size: 2.1rem;
  }
}
.page-home .section-details .details-schedule .schedule-wrap {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule-wrap {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule-wrap {
    display: block;
  }
}
.page-home .section-details .details-schedule .schedule {
  color: #fff;
  background-color: #F2F5F9;
  position: relative;
}
.page-home .section-details .details-schedule .schedule:first-child {
  background-color: #0D6AD3;
  border-radius: 5px;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule:first-child {
    width: 175px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule:first-child {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule:first-child .schedule-icon {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule:first-child .schedule-icon {
    top: initial;
    transform: translateX(-50%) rotate(90deg);
  }
}
@media screen and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule:first-child .schedule-icon {
    bottom: -27px;
  }
}
.page-home .section-details .details-schedule .schedule:not(:first-child) {
  border-radius: 0 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule:not(:first-child) {
    width: 270px;
    margin-left: 38px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule:not(:first-child) {
    width: 100%;
    margin-left: initial;
  }
}
@media screen and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule:not(:first-child) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule:not(:first-child) .schedule-thumb {
    min-height: 75px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule:not(:first-child) .schedule-date {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule:not(:first-child) .schedule-date {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule:not(:first-child) .schedule-icon {
    top: 23%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule:not(:first-child) .schedule-icon {
    top: initial;
  }
}
@media screen and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule:not(:first-child) .schedule-icon {
    bottom: -27px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .details-schedule .schedule:nth-child(4) .schedule-step {
    width: 155px;
  }
}
.page-home .section-details .details-schedule .schedule .schedule-icon {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule .schedule-icon {
    right: -16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule .schedule-icon {
    right: initial;
  }
}
@media screen and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule .schedule-icon {
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 12px;
    height: 22px;
  }
}
.page-home .section-details .details-schedule .schedule .outline {
  text-align: center;
  background-color: #0D6AD3;
  border-radius: 5px 5px 0 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule .outline {
    padding: 24px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .details-schedule .schedule .outline {
    padding: 20px 0;
  }
}
.page-home .section-details .details-schedule .schedule .schedule-step {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page-home .section-details .details-schedule .schedule .schedule-step {
    width: 129px;
  }
}
.page-home .section-details .details-schedule .schedule .schedule-date {
  display: inline-block;
  font-weight: bold;
  color: #0D6AD3;
  background-color: #fff;
  padding: 1px 15px;
  border-radius: 200px;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule .schedule-date {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .details-schedule .schedule .schedule-date {
    font-size: 1.3rem;
  }
}
.page-home .section-details .details-schedule .schedule .schedule-date > span {
  display: inline-block;
}
.page-home .section-details .details-schedule .schedule .schedule-thumb {
  display: block;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule .schedule-thumb {
    margin-top: 10px;
    font-size: 2.5rem;
    display: grid;
    place-content: center;
  }
}
@media screen and (max-width: 1100px) {
  .page-home .section-details .details-schedule .schedule .schedule-thumb {
    margin-top: 6px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule .schedule-list {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .details-schedule .schedule .schedule-list {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 25px;
  }
}
.page-home .section-details .details-schedule .schedule .schedule-list .schedule-item {
  padding-left: 10px;
  position: relative;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule .schedule-list .schedule-item {
    font-size: 1.6rem;
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .details-schedule .schedule .schedule-list .schedule-item {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 15px;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule .schedule-list .schedule-item:not(:first-child) {
    margin-top: 5px;
  }
}
.page-home .section-details .details-schedule .schedule .schedule-list .schedule-item::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #0D6AD3;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .details-schedule .schedule .schedule-list .schedule-item::before {
    top: 0.6em;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .details-schedule .schedule .schedule-list .schedule-item::before {
    top: 0.8em;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step-wrap {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step-wrap {
    margin-top: 70px;
  }
}
.page-home .section-details .main-content .step-wrap .step-title-wrap {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step-wrap .icon-step {
    width: 99px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step-wrap .icon-step {
    width: 81px;
  }
}
.page-home .section-details .main-content .step-wrap .step-heading-wrap {
  font-weight: bold;
  color: #0D6AD3;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step-wrap .step-heading-wrap {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step-wrap .step-heading-wrap {
    margin-left: 15px;
  }
}
.page-home .section-details .main-content .step-wrap .step-heading-wrap .step-lead {
  display: block;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step-wrap .step-heading-wrap .step-lead {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step-wrap .step-heading-wrap .step-lead {
    font-size: 1.8rem;
  }
}
.page-home .section-details .main-content .step-wrap .step-heading-wrap .step-heading {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step-wrap .step-heading-wrap .step-heading {
    margin-top: 10px;
    font-size: 4rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step-wrap .step-heading-wrap .step-heading {
    margin-top: 5px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step-wrap .step-text {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step-wrap .step-text {
    margin-top: 30px;
  }
}
.page-home .section-details .main-content .step-wrap .note {
  margin-top: 10px;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step-wrap .note {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step-wrap .note {
    font-size: 1.3rem;
  }
}
.page-home .section-details .main-content .step01-details {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step01-details {
    display: flex;
    gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step01-details .diagnosis-result {
    width: 523px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step01-details .diagnosis-result img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step01-details .plan-wrap {
    margin-top: 30px;
  }
}
.page-home .section-details .main-content .step01-details .plan {
  border-radius: 5px;
  display: flex;
  align-items: center;
  background-color: #F3F5F9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step01-details .plan {
    padding: 34px 24px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step01-details .plan {
    padding: 35px 25px 30px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step01-details .icon-plan {
    width: 95px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step01-details .icon-plan {
    width: 50px;
    position: absolute;
    top: 25px;
    left: 25px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step01-details .plan-summary-wrap {
    margin-left: 15px;
  }
}
.page-home .section-details .main-content .step01-details .plan-summary-wrap .plan-summary {
  font-weight: bold;
  color: #0D6AD3;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step01-details .plan-summary-wrap .plan-summary {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step01-details .plan-summary-wrap .plan-summary {
    font-size: 2rem;
    margin-left: 60px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step01-details .plan-summary-wrap .plan-text {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step01-details .plan-summary-wrap .plan-text {
    margin-top: 15px;
  }
}
.page-home .section-details .main-content .step01-details .step01-arrow {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step01-details .step01-arrow {
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step01-details .step01-arrow {
    height: 29px;
  }
}
.page-home .section-details .main-content .step01-details .step01-arrow .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step01-details .step01-arrow .arrow {
    width: 23px;
    height: 12px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02 {
    margin-top: 60px;
  }
}
.page-home .section-details .main-content .step02-details {
  background-color: #F2F5F9;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details {
    margin-top: 50px;
    padding: 50px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details {
    margin-top: 40px;
    margin-left: -27px;
    margin-right: -27px;
    padding: 50px 27px 40px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-dxcourse + .about-dxcourse {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .about-dxcourse + .about-dxcourse {
    margin-top: 30px;
  }
}
.page-home .section-details .main-content .step02-details .dxcourse-name {
  font-weight: bold;
  color: #fff;
  background-color: #0D6AD3;
  padding: 12px 0;
  text-align: center;
  border-radius: 5px 5px 0px 0px;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .dxcourse-name {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .dxcourse-name {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.page-home .section-details .main-content .step02-details .dxcourse {
  background-color: #fff;
  border-radius: 0px 0px 5px 5px;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .dxcourse {
    padding: 25px 70px 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .dxcourse {
    padding: 30px 25px 40px;
  }
}
.page-home .section-details .main-content .step02-details .dxcourse-txt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .dxcourse-txt {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .dxcourse-list {
    display: flex;
    gap: 40px;
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .dxcourse-list {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .dxcourse-item {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .dxcourse-item:not(:first-child) {
    margin-top: 40px;
  }
}
.page-home .section-details .main-content .step02-details .dxcourse-img {
  border-radius: 5px;
}
.page-home .section-details .main-content .step02-details .dxcourse-tag {
  font-weight: bold;
  color: #fff;
  background-color: #707070;
  border-radius: 200px;
  display: inline-block;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .dxcourse-tag {
    padding: 2px 20px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .dxcourse-tag {
    padding: 2px 15px;
    font-size: 1.3rem;
  }
}
.page-home .section-details .main-content .step02-details .dxcourse-lead {
  margin-top: 12px;
}
.page-home .section-details .main-content .step02-details .about-udemy {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-udemy {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-udemy .udemy-logo {
    width: 313px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .about-udemy .udemy-logo {
    width: 243px;
    margin-inline: auto;
  }
}
.page-home .section-details .main-content .step02-details .about-udemy .udemy-txt-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-udemy .udemy-txt-wrap {
    width: 527px;
    padding-left: 30px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .about-udemy .udemy-txt-wrap {
    padding-top: 25px;
    margin-top: 15px;
  }
}
.page-home .section-details .main-content .step02-details .about-udemy .udemy-txt-wrap::before {
  content: "";
  display: block;
  background-color: #D9D9D9;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-udemy .udemy-txt-wrap::before {
    width: 2px;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .about-udemy .udemy-txt-wrap::before {
    width: 100%;
    height: 1px;
  }
}
.page-home .section-details .main-content .step02-details .about-learning-partner {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner {
    padding: 30px 70px 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner {
    padding: 35px 25px;
  }
}
.page-home .section-details .main-content .step02-details .about-learning-partner .learning-heading {
  font-weight: bold;
  text-align: center;
  color: #0D6AD3;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner .learning-heading {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner .learning-heading {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner .learning-txt {
    text-align: center;
    margin-top: 10px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner .learning-txt {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner .learning-list {
    margin-top: 25px;
    display: flex;
    gap: 40px;
  }
}
.page-home .section-details .main-content .step02-details .about-learning-partner .learning-item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner .learning-item {
    margin-top: 40px;
  }
}
.page-home .section-details .main-content .step02-details .about-learning-partner .learning-name {
  font-weight: bold;
  color: #fff;
  background-color: #0D6AD3;
  border-radius: 200px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner .learning-name {
    font-size: 1.6rem;
    padding: 2px 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner .learning-name {
    font-size: 1.3rem;
    padding: 5px 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner .learning-img {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step02-details .about-learning-partner .learning-img {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step03 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step03 .step03-text-wrap {
    width: 638px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .step03 .step03-img-wrap {
    width: 312px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step03 .step03-img-wrap {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .step03 .step03-img-wrap img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-details .main-content .cmn-link-wrap {
    margin-top: 130px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-details .main-content .cmn-link-wrap {
    margin-top: 24px;
  }
}
.page-home .section-conditions {
  background-color: #E5F1FA;
}
.page-home .section-conditions .note {
  display: block;
  color: #707070;
  margin-top: 5px;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .note {
    text-indent: -1.6rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .note {
    text-indent: -1.3rem;
    font-size: 1.3rem;
  }
}
.page-home .section-conditions .conditions-panel {
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-panel {
    padding: 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-panel {
    padding-block: 50px 40px;
    padding-inline: 25px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-panel + .conditions-panel {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-panel + .conditions-panel {
    margin-top: 30px;
  }
}
.page-home .section-conditions .conditions-heading {
  font-weight: bold;
  color: #0D6AD3;
  text-align: center;
  border-bottom: 2px solid #D9D9D9;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-heading {
    font-size: 3rem;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-heading {
    font-size: 2.2rem;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-lead {
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-lead {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-target .target-list {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-target .target-list {
    margin-top: 35px;
  }
}
.page-home .section-conditions .conditions-target .target-item:not(:first-child) {
  margin-top: 30px;
}
.page-home .section-conditions .conditions-target .target-item .txt {
  display: flex;
}
.page-home .section-conditions .conditions-target .target-item .txt .number {
  margin-right: 6px;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-target .target-item .note {
    padding-left: 42px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-target .target-item .note {
    padding-left: 35px;
  }
}
.page-home .section-conditions .conditions-target .target-item .border {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-note .conditions-note-list {
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-note .conditions-note-list {
    margin-top: 30px;
  }
}
.page-home .section-conditions .conditions-note .conditions-note-list .conditions-note-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-note .conditions-note-list .conditions-note-item {
    margin-top: 10px;
    padding-left: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-note .conditions-note-list .conditions-note-item {
    margin-top: 20px;
    padding-left: 10px;
  }
}
.page-home .section-conditions .conditions-note .conditions-note-list .conditions-note-item::before {
  content: "";
  display: block;
  background-color: #0D6AD3;
  position: absolute;
  left: 0;
  top: 0.6em;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-note .conditions-note-list .conditions-note-item::before {
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-note .conditions-note-list .conditions-note-item::before {
    width: 5px;
    height: 5px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-note .link-wrap {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .page-home .section-conditions .conditions-note .link-wrap {
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-note .link-wrap {
    margin-top: 30px;
  }
}
.page-home .section-conditions .conditions-note .link-wrap .link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0D6AD3;
  color: #fff;
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-note .link-wrap .link {
    width: 230px;
    font-size: 1.6rem;
    border: 2px solid #0D6AD3;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .page-home .section-conditions .conditions-note .link-wrap .link {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-note .link-wrap .link {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-note .link-wrap .link:hover {
    color: #0D6AD3;
    background-color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-note .link-wrap .link:hover .icon-arrow {
    right: 15px;
    filter: initial;
  }
}
.page-home .section-conditions .conditions-note .link-wrap .icon-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 11px;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-note .link-wrap .icon-arrow {
    transition: right 0.3s ease, filter 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-graph {
    padding-inline: 12px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-graph .conditions-heading {
    margin-inline: 13px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-graph .graph-image {
    margin-top: 50px;
    margin-bottom: 30px;
    margin-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-graph .graph-image {
    margin-block: 40px;
    margin-inline: 10px;
  }
}
.page-home .section-conditions .conditions-graph .graph-image img {
  width: 100%;
}
.page-home .section-conditions .conditions-graph .graph-txt-wrap {
  border-radius: 5px;
  background: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-graph .graph-txt-wrap {
    padding-block: 40px;
    padding-inline: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-graph .graph-txt-wrap {
    overflow: hidden;
  }
}
.page-home .section-conditions .conditions-graph .graph-title {
  font-weight: bold;
  color: #fff;
  font-size: 1.6rem;
  background-color: #0D6AD3;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-graph .graph-title {
    display: inline-block;
    flex-shrink: 0;
    border-radius: 5px;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-graph .graph-title {
    display: block;
    padding: 8px 0;
    text-align: center;
  }
}
.page-home .section-conditions .conditions-graph .graph-txt {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-graph .graph-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-graph .graph-txt {
    font-size: 1.4rem;
    padding: 20px 12px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-voice {
    padding-inline: 12px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-voice .conditions-heading {
    margin-inline: 13px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-voice .voice-list {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-voice .voice-list {
    margin-top: 40px;
  }
}
.page-home .section-conditions .conditions-voice .voice-item {
  position: relative;
  background-color: #F1F5F8;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-voice .voice-item {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 25px 40px;
    max-width: 723px;
    box-sizing: border-box;
    border-radius: 4px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-voice .voice-item {
    padding-block: 30px;
    padding-inline: 20px 12px;
    border-radius: 5px;
  }
}
.page-home .section-conditions .conditions-voice .voice-item:not(:first-child) {
  margin-top: 30px;
}
.page-home .section-conditions .conditions-voice .voice-item:nth-child(even) {
  margin-left: auto;
  flex-direction: row-reverse;
}
.page-home .section-conditions .conditions-voice .voice-item:nth-child(even) .voice-triangle {
  left: initial;
  right: 50px;
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-voice .voice-item:nth-child(even) .voice-icon {
    float: right;
    padding-left: 20px;
    padding-right: 8px;
  }
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-voice .voice-icon {
    width: 74px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-voice .voice-icon {
    height: 55px;
    width: 55px;
    padding-right: 20px;
    padding-bottom: 20px;
    float: left;
  }
}
.page-home .section-conditions .conditions-voice .voice-triangle {
  position: absolute;
  top: 100%;
  left: 50px;
}
.page-home .section-conditions .conditions-term .term-txt {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-term .term-txt .txt {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-term .term-txt .txt {
    display: flex;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-term .term-txt .bold {
    font-weight: bold;
    flex-shrink: 0;
  }
}
.page-home .section-conditions .conditions-term .border-led {
  text-decoration: line-through;
  -webkit-text-decoration-color: #E32D00;
  text-decoration-color: #E32D00;
}
.page-home .section-conditions .conditions-term .note {
  color: #707070;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .conditions-term .note {
    margin-top: 25px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .conditions-term .note {
    margin-top: 30px;
    font-size: 1.3rem;
  }
}
.page-home .section-conditions .conditions-term .note + .note {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .page-home .section-conditions .cmn-link-wrap {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-conditions .cmn-link-wrap {
    margin-top: 40px;
  }
}

.page-policy .bg-pattern {
  position: absolute;
}
.page-policy .kv {
  background-color: #0D6AD3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-policy .kv {
    height: 270px;
  }
}
@media screen and (max-width: 767px) {
  .page-policy .kv {
    height: 170px;
  }
}
.page-policy .kv .kv-txt {
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-policy .kv .kv-txt {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .page-policy .kv .kv-txt {
    font-size: 2.1rem;
  }
}
.page-policy .kv .bg-pattern {
  top: 0;
  mix-blend-mode: soft-light;
}
@media screen and (min-width: 768px) {
  .page-policy .kv .bg-pattern {
    right: 43px;
    width: 441px;
  }
}
@media screen and (max-width: 767px) {
  .page-policy .kv .bg-pattern {
    right: 0;
    width: 156px;
  }
}
@media screen and (min-width: 768px) {
  .page-policy .text-contents {
    max-width: 900px;
    margin: auto;
    padding: 100px 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-policy .text-contents {
    padding: 60px 27px 75px;
  }
}
@media screen and (min-width: 768px) {
  .page-policy .policy-list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-policy .policy-list {
    margin-top: 40px;
  }
}
.page-policy .policy-item {
  display: flex;
}
.page-policy .policy-item:not(:first-child) {
  margin-top: 20px;
}
.page-policy .policy-item .number {
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .page-policy .information-wrap {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-policy .information-wrap {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-policy .information-wrap + .information-wrap {
    margin-top: 40px;
  }
}
.page-policy .information-wrap .list-title {
  line-height: 1.5;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-policy .information-wrap .list-title {
    padding-left: 12px;
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-policy .information-wrap .list-title {
    padding-left: 7px;
    font-size: 1.9rem;
    margin-bottom: 10px;
  }
}
.page-policy .information-wrap .list-title > span {
  display: inline-block;
}
.page-policy .information-wrap .list-title::before {
  content: "";
  display: block;
  width: 2px;
  height: 1em;
  position: absolute;
  top: 0.2em;
  left: 0;
  background-color: #0D6AD3;
}
.page-policy .information-title-list .information-item {
  display: flex;
}
.page-policy .information-list .information-item {
  padding-left: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-policy .information-list .information-item:not(:first-child) {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-policy .information-list .information-item:not(:first-child) {
    margin-top: 2px;
  }
}
.page-policy .information-list .information-item::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #0D6AD3;
  position: absolute;
  top: 0.6em;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-policy .link-wrap {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-policy .link-wrap {
    margin-top: 40px;
  }
}
.page-policy .link-wrap + .link-wrap {
  margin-top: 20px;
}
.page-policy .underline-link {
  color: #0D6AD3;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.page-policy .underline-link > span {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (min-width: 768px) {
  .page-policy .underline-link:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .page-policy .underline-link:hover span {
    text-decoration: none;
  }
}

.page-report {
  background-color: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .page-report .cmn-link-wrap {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .cmn-link-wrap {
    margin-top: 40px;
  }
}
.page-report .keyvisual {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual {
    height: 320px;
    display: grid;
    place-content: center;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual {
    height: 626px;
  }
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual.keyvisual-operation {
    background: linear-gradient(to right, #ea3f00 0%, #ed7123 100%);
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual.keyvisual-operation {
    background: linear-gradient(to bottom, #ea3f00 0%, #ed7123 100%);
  }
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual.keyvisual-sales {
    background: linear-gradient(to right, #7fad11 0%, #98cb1f 100%);
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual.keyvisual-sales {
    background: linear-gradient(to bottom, #7fad11 0%, #98cb1f 100%);
  }
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual.keyvisual-sales .keyvisual-head {
    max-width: 579px;
  }
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual.keyvisual-marketing {
    background: linear-gradient(to right, #e84443 0%, #ec6464 100%);
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual.keyvisual-marketing {
    background: linear-gradient(to bottom, #e84443 0%, #ec6464 100%);
  }
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual.keyvisual-dxstrategy {
    background: linear-gradient(to right, #8d56ba 0%, #ba86e2 100%);
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual.keyvisual-dxstrategy {
    background: linear-gradient(to bottom, #8d56ba 0%, #ba86e2 100%);
  }
}
.page-report .keyvisual .keyvisual-image img {
  mix-blend-mode: soft-light; /* オーバーレイを指定 */
  position: absolute;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual .keyvisual-image img {
    top: 0;
    right: 0;
    min-width: 1366px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual .keyvisual-image img {
    bottom: 0;
    left: 0;
    min-width: 375px;
  }
}
.page-report .keyvisual .keyvisual-text {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual .keyvisual-text {
    padding-inline: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual .keyvisual-text {
    padding-top: 40px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual .keyvisual-head {
    max-width: 415px;
  }
}
.page-report .keyvisual .keyvisual-title {
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual .keyvisual-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual .keyvisual-title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .page-report .keyvisual .keyvisual-title small {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual .keyvisual-title small {
    font-size: 1.8rem;
  }
}
.page-report .keyvisual .keyvisual-read {
  margin-top: 25px;
  font-size: 1.4rem;
  line-height: 1.8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual .keyvisual-read {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual .keyvisual-read::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    opacity: 0.4;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual .keyvisual-point {
    margin-top: 30px;
  }
}
.page-report .keyvisual .keyvisual-point .point-title {
  width: 120px;
  margin-inline: auto;
}
.page-report .keyvisual .keyvisual-point .point {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .page-report .keyvisual .keyvisual-point .point {
    margin-top: 10px;
    justify-content: center;
  }
}
.page-report .keyvisual .keyvisual-point .point-item {
  border-radius: 50%;
  border: 2px solid #fff;
  height: 118px;
  width: 118px;
  display: grid;
  place-content: center;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
}
.page-report .report-contents {
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-report .report-contents {
    padding: 90px 60px 100px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-contents {
    padding: 40px 30px 70px;
  }
}
.page-report .report-top {
  position: relative;
}
.page-report .report-top.report-top-operation .top-title span {
  background-color: #EF8834;
}
.page-report .report-top.report-top-operation .profile-title::after {
  background-color: #EF8834;
}
.page-report .report-top.report-top-sales .top-title span {
  background-color: #98CB1F;
}
.page-report .report-top.report-top-sales .profile-title::after {
  background-color: #98CB1F;
}
.page-report .report-top.report-top-sales .leaner-name .detail {
  letter-spacing: -0.05em;
}
.page-report .report-top.report-top-marketing .top-title span {
  background-color: #EF6564;
}
.page-report .report-top.report-top-marketing .profile-title::after {
  background-color: #EF6564;
}
.page-report .report-top.report-top-dxstrategy .top-title span {
  background-color: #A56ED0;
}
.page-report .report-top.report-top-dxstrategy .profile-title::after {
  background-color: #A56ED0;
}
.page-report .report-top .top-title {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .page-report .report-top .top-title {
    top: -30px;
    left: -70px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-top .top-title {
    top: 22px;
    left: -20px;
  }
}
.page-report .report-top .top-title span {
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .page-report .report-top .top-title span {
    font-size: 2.8rem;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-top .top-title span {
    font-size: 1.8rem;
    padding: 5px 10px;
  }
}
.page-report .report-top .top-image {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-report .report-top .top-image {
    border-radius: 8px 8px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-top .top-image {
    border-radius: 6px 6px 0 0;
  }
}
.page-report .report-top .top-image img {
  width: 100%;
}
.page-report .report-top .top-text {
  background-color: #fff;
  padding-block: 40px;
}
@media screen and (min-width: 768px) {
  .page-report .report-top .top-text {
    padding-inline: 50px;
    display: flex;
    gap: 33px;
    border-radius: 0 0 8px 8px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-top .top-text {
    padding-inline: 20px;
    border-radius: 0 0 6px 6px;
  }
}
.page-report .report-top .top-profile,
.page-report .report-top .top-leaner {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-report .report-top .top-leaner {
    margin-top: 30px;
  }
}
.page-report .report-top .profile-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-report .report-top .profile-title img {
  width: 61px;
  flex-shrink: 0;
}
.page-report .report-top .profile-title::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
}
.page-report .report-top .profile-tag {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: bold;
  border: 2px solid #989898;
  padding: 0 8px;
}
.page-report .report-top .profile-name {
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .page-report .report-top .profile-name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-top .profile-name {
    font-size: 1.8rem;
  }
}
.page-report .report-top .profile-text {
  font-size: 1.4rem;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .page-report .report-top .profile-text.leaner-text {
    margin-left: 150px;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-top .profile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-top .profile-image {
    width: 104px;
  }
}
.page-report .report-top .leaner-inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-report .report-top .leaner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.page-report .report-top .leaner-name {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-report .report-top .leaner-name {
    font-size: 1.4rem;
    margin-left: 150px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-top .leaner-name {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-top .leaner-name .name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-top .leaner-name .name {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-result {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result {
    margin-top: 40px;
  }
}
.page-report .report-result.report-result-operation .after-title {
  background-color: #EF8834;
}
@media screen and (max-width: 767px) {
  .page-report .report-result.report-result-operation .after-brock {
    border-top: 2px solid #EF8834;
  }
}
.page-report .report-result.report-result-operation .after-item {
  background-color: #FFF8ED;
}
@media screen and (min-width: 768px) {
  .page-report .report-result.report-result-operation .after-item {
    border-right: 2px solid #EF8834;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result.report-result-operation .after-item {
    border-left: 2px solid #EF8834;
  }
}
.page-report .report-result.report-result-operation .after-item:after {
  background: radial-gradient(circle farthest-side, #E8A56D, #E8A56D 20%, transparent 40%, transparent);
}
.page-report .report-result.report-result-operation .after-item:nth-child(3) {
  border-bottom: 2px solid #EF8834;
}
.page-report .report-result.report-result-sales .after-title {
  background-color: #98CB1F;
}
@media screen and (max-width: 767px) {
  .page-report .report-result.report-result-sales .after-brock {
    border-top: 2px solid #98CB1F;
  }
}
.page-report .report-result.report-result-sales .after-item {
  background-color: #F8FCF2;
}
@media screen and (min-width: 768px) {
  .page-report .report-result.report-result-sales .after-item {
    border-right: 2px solid #98CB1F;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result.report-result-sales .after-item {
    border-left: 2px solid #98CB1F;
  }
}
.page-report .report-result.report-result-sales .after-item:after {
  background: radial-gradient(circle farthest-side, #C2D88D, #C2D88D 20%, transparent 40%, transparent);
}
.page-report .report-result.report-result-sales .after-item:nth-child(3) {
  border-bottom: 2px solid #98CB1F;
}
.page-report .report-result.report-result-marketing .after-title {
  background-color: #EF6564;
}
@media screen and (max-width: 767px) {
  .page-report .report-result.report-result-marketing .after-brock {
    border-top: 2px solid #EF6564;
  }
}
.page-report .report-result.report-result-marketing .after-item {
  background-color: #FDF5F5;
}
@media screen and (min-width: 768px) {
  .page-report .report-result.report-result-marketing .after-item {
    border-right: 2px solid #EF6564;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result.report-result-marketing .after-item {
    border-left: 2px solid #EF6564;
  }
}
.page-report .report-result.report-result-marketing .after-item:after {
  background: radial-gradient(circle farthest-side, #E5B5B4, #E5B5B4 20%, transparent 40%, transparent);
}
.page-report .report-result.report-result-marketing .after-item:nth-child(3) {
  border-bottom: 2px solid #EF6564;
}
.page-report .report-result.report-result-dxstrategy .after-title {
  background-color: #A56ED0;
}
@media screen and (max-width: 767px) {
  .page-report .report-result.report-result-dxstrategy .after-brock {
    border-top: 2px solid #A56ED0;
  }
}
.page-report .report-result.report-result-dxstrategy .after-item {
  background-color: #FBF8FD;
}
@media screen and (min-width: 768px) {
  .page-report .report-result.report-result-dxstrategy .after-item {
    border-right: 2px solid #A56ED0;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result.report-result-dxstrategy .after-item {
    border-left: 2px solid #A56ED0;
  }
}
.page-report .report-result.report-result-dxstrategy .after-item:after {
  background: radial-gradient(circle farthest-side, #CEB2E5, #CEB2E5 20%, transparent 40%, transparent);
}
.page-report .report-result.report-result-dxstrategy .after-item:nth-child(3) {
  border-bottom: 2px solid #A56ED0;
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-brock {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-brock {
    display: flex;
    flex-direction: row-reverse;
  }
}
.page-report .report-result .result-title {
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-title {
    width: 100%;
    height: 62px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-title {
    width: 30px;
  }
}
.page-report .report-result .result-title.before-title {
  background-color: #C9C9C9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-title.before-title {
    border-top-left-radius: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-title.before-title {
    border-top-right-radius: 6px;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-title.after-title {
    border-top-right-radius: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-title.after-title {
    border-bottom-right-radius: 6px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-title .title-text {
    transform: rotate(90deg);
    max-width: initial;
  }
}
.page-report .report-result .result-title .arrow {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-title .arrow {
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 17px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-title .arrow {
    bottom: 0;
    left: 0;
    transform: rotate(90deg);
    transform-origin: bottom left;
    height: 30px;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-panels {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-panels {
    width: 100%;
  }
}
.page-report .report-result .result-item {
  position: relative;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-item {
    display: grid;
    place-content: center;
    justify-content: flex-start;
    padding-block: 10px;
    min-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-item {
    padding-block: 20px;
    padding-inline: 34px 15px;
  }
}
.page-report .report-result .result-item::after {
  content: "";
  display: inline-block;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: 10px !important;
  transform: translateY(50%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-item::after {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-item::after {
    width: 90%;
    right: 0;
    margin-inline: auto;
  }
}
.page-report .report-result .result-item.before-item {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-item.before-item {
    padding-inline: 50px 100px;
    border-left: 2px solid #C9C9C9;
  }
}
.page-report .report-result .result-item.before-item::after {
  background: radial-gradient(circle farthest-side, #C9C9C9, #C9C9C9 20%, transparent 40%, transparent);
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-item.before-item:nth-child(1) {
    border-top-left-radius: 6px;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-item.before-item:nth-child(3) {
    border-bottom: 2px solid #C9C9C9;
    border-bottom-left-radius: 5px;
  }
}
.page-report .report-result .result-item.after-item {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-item.after-item {
    padding-inline: 100px 50px;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-item.after-item:nth-child(3) {
    border-bottom-right-radius: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-item.after-item:nth-child(3) {
    border-bottom-left-radius: 6px;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-item:nth-child(1) {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-item:nth-child(2) {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-item:nth-child(3) {
    order: 3;
  }
}
.page-report .report-result .result-item:nth-child(3):after {
  display: none;
}
.page-report .report-result .result-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .page-report .report-result .result-icon {
    width: 93px;
    left: -48px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-result .result-icon {
    width: 39px;
    left: -20px;
  }
}
.page-report .report-step {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .page-report .report-step {
    border-radius: 8px;
    margin-top: 60px;
    padding: 60px 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step {
    border-radius: 6px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-step.report-step-operation .step-panels {
    background-color: #FFF8ED;
  }
}
.page-report .report-step.report-step-operation .step-item:nth-child(1) .step-number {
  background-color: #EF8834;
}
.page-report .report-step.report-step-operation .step-item:nth-child(1) .step-number::before, .page-report .report-step.report-step-operation .step-item:nth-child(1) .step-number::after {
  background: #EF8834;
}
.page-report .report-step.report-step-operation .step-item:nth-child(2) .step-number {
  background-color: #E26D0F;
}
.page-report .report-step.report-step-operation .step-item:nth-child(2) .step-number::before, .page-report .report-step.report-step-operation .step-item:nth-child(2) .step-number::after {
  background: #E26D0F;
}
.page-report .report-step.report-step-operation .step-item:nth-child(3) .step-number {
  background-color: #E55305;
}
.page-report .report-step.report-step-operation .step-item:nth-child(3) .step-number::before, .page-report .report-step.report-step-operation .step-item:nth-child(3) .step-number::after {
  background: #E55305;
}
@media screen and (min-width: 768px) {
  .page-report .report-step.report-step-operation .step-text-wrap:after {
    background: radial-gradient(circle farthest-side, #E8A56D, #E8A56D 20%, transparent 40%, transparent);
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-step.report-step-sales .step-panels {
    background-color: #F8FCF2;
  }
}
.page-report .report-step.report-step-sales .step-item:nth-child(1) .step-number {
  background-color: #98CB1F;
}
.page-report .report-step.report-step-sales .step-item:nth-child(1) .step-number::before, .page-report .report-step.report-step-sales .step-item:nth-child(1) .step-number::after {
  background: #98CB1F;
}
.page-report .report-step.report-step-sales .step-item:nth-child(2) .step-number {
  background-color: #7BAC08;
}
.page-report .report-step.report-step-sales .step-item:nth-child(2) .step-number::before, .page-report .report-step.report-step-sales .step-item:nth-child(2) .step-number::after {
  background: #7BAC08;
}
.page-report .report-step.report-step-sales .step-item:nth-child(3) .step-number {
  background-color: #598000;
}
.page-report .report-step.report-step-sales .step-item:nth-child(3) .step-number::before, .page-report .report-step.report-step-sales .step-item:nth-child(3) .step-number::after {
  background: #598000;
}
@media screen and (min-width: 768px) {
  .page-report .report-step.report-step-sales .step-text-wrap:after {
    background: radial-gradient(circle farthest-side, #C2D88D, #C2D88D 20%, transparent 40%, transparent);
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-step.report-step-marketing .step-panels {
    background-color: #FCF5F5;
  }
}
.page-report .report-step.report-step-marketing .step-item:nth-child(1) .step-number {
  background-color: #EF6564;
}
.page-report .report-step.report-step-marketing .step-item:nth-child(1) .step-number::before, .page-report .report-step.report-step-marketing .step-item:nth-child(1) .step-number::after {
  background: #EF6564;
}
.page-report .report-step.report-step-marketing .step-item:nth-child(2) .step-number {
  background-color: #E05150;
}
.page-report .report-step.report-step-marketing .step-item:nth-child(2) .step-number::before, .page-report .report-step.report-step-marketing .step-item:nth-child(2) .step-number::after {
  background: #E05150;
}
.page-report .report-step.report-step-marketing .step-item:nth-child(3) .step-number {
  background-color: #C63433;
}
.page-report .report-step.report-step-marketing .step-item:nth-child(3) .step-number::before, .page-report .report-step.report-step-marketing .step-item:nth-child(3) .step-number::after {
  background: #C63433;
}
@media screen and (min-width: 768px) {
  .page-report .report-step.report-step-marketing .step-text-wrap:after {
    background: radial-gradient(circle farthest-side, #E5B5B4, #E5B5B4 20%, transparent 40%, transparent);
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-step.report-step-dxstrategy .step-panels {
    background-color: #FAF8FC;
  }
}
.page-report .report-step.report-step-dxstrategy .step-item:nth-child(1) .step-number {
  background-color: #A56ED0;
}
.page-report .report-step.report-step-dxstrategy .step-item:nth-child(1) .step-number::before, .page-report .report-step.report-step-dxstrategy .step-item:nth-child(1) .step-number::after {
  background: #A56ED0;
}
.page-report .report-step.report-step-dxstrategy .step-item:nth-child(2) .step-number {
  background-color: #8F5CB7;
}
.page-report .report-step.report-step-dxstrategy .step-item:nth-child(2) .step-number::before, .page-report .report-step.report-step-dxstrategy .step-item:nth-child(2) .step-number::after {
  background: #8F5CB7;
}
.page-report .report-step.report-step-dxstrategy .step-item:nth-child(3) .step-number {
  background-color: #673291;
}
.page-report .report-step.report-step-dxstrategy .step-item:nth-child(3) .step-number::before, .page-report .report-step.report-step-dxstrategy .step-item:nth-child(3) .step-number::after {
  background: #673291;
}
@media screen and (min-width: 768px) {
  .page-report .report-step.report-step-dxstrategy .step-text-wrap:after {
    background: radial-gradient(circle farthest-side, #CEB2E5, #CEB2E5 20%, transparent 40%, transparent);
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-step .step-panels {
    border-radius: 0 8px 8px 0;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-panels {
    border-radius: 0 6px 6px 0;
  }
}
.page-report .report-step .step-item {
  display: flex;
}
@media screen and (min-width: 768px) {
  .page-report .report-step .step-item:first-child .step-number {
    border-top-left-radius: 8px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-item:first-child .step-number {
    border-top-left-radius: 6px;
  }
}
.page-report .report-step .step-item:last-child .step-number::before, .page-report .report-step .step-item:last-child .step-number::after {
  border-bottom: 2px solid transparent;
}
.page-report .report-step .step-item:last-child .step-text-wrap::after {
  display: none;
}
.page-report .report-step .step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: relative;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .page-report .report-step .step-number {
    width: 90px;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-number {
    width: 33px;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    /* IE対応 */
    text-orientation: sideways;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-step .step-number .number {
    width: 52px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-number .number {
    margin-top: 30px;
    width: 12px;
  }
}
.page-report .report-step .step-number::before, .page-report .report-step .step-number::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 30px;
  border-bottom: 2px solid #fff;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-report .report-step .step-number::before, .page-report .report-step .step-number::after {
    bottom: -3.5%;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-number::before, .page-report .report-step .step-number::after {
    bottom: -1.5%;
  }
}
.page-report .report-step .step-number::before {
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-report .report-step .step-number::before {
    transform: skewY(25deg);
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-number::before {
    transform: skewY(40deg);
  }
}
@media screen and (min-width: 768px) {
  .page-report .report-step .step-number::after {
    transform: skewY(-25deg);
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-number::after {
    transform: skewY(-40deg);
    right: 0;
  }
}
.page-report .report-step .step-text-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-report .report-step .step-text-wrap {
    padding-block: 40px;
    margin-inline: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-text-wrap {
    padding-block: 30px;
    margin-inline: 20px;
  }
}
.page-report .report-step .step-text-wrap:after {
  content: "";
  display: inline-block;
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: 10px !important;
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-text-wrap:after {
    background: radial-gradient(circle farthest-side, #C9C9C9, #C9C9C9 20%, transparent 40%, transparent);
  }
}
.page-report .report-step .step-title {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-report .report-step .step-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-title {
    font-size: 1.6rem;
  }
}
.page-report .report-step .step-text {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .page-report .report-step .step-text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-step .step-text {
    margin-top: 10px;
  }
}
.page-report .report-comment {
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-report .report-comment {
    display: flex;
    border-radius: 5px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 1100px) {
  .page-report .report-comment {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-comment {
    border-radius: 6px;
    margin-top: 40px;
  }
}
.page-report .report-comment.report-comment-operation .comment-text {
  border: 2px solid #EF8834;
}
.page-report .report-comment.report-comment-operation .comment-text::after {
  background-color: #EF8834;
}
.page-report .report-comment.report-comment-sales .comment-text {
  border: 2px solid #98CB1F;
}
.page-report .report-comment.report-comment-sales .comment-text::after {
  background-color: #98CB1F;
}
.page-report .report-comment.report-comment-marketing .comment-text {
  border: 2px solid #EF6564;
}
.page-report .report-comment.report-comment-marketing .comment-text::after {
  background-color: #EF6564;
}
.page-report .report-comment.report-comment-dxstrategy .comment-text {
  border: 2px solid #A56ED0;
}
.page-report .report-comment.report-comment-dxstrategy .comment-text::after {
  background-color: #A56ED0;
}
@media screen and (min-width: 768px) {
  .page-report .report-comment .comment-image {
    width: 516px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1100px) {
  .page-report .report-comment .comment-image {
    width: 100%;
  }
}
.page-report .report-comment .comment-wrap {
  display: grid;
  place-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-report .report-comment .comment-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .page-report .report-comment .comment-wrap {
    width: initial;
    padding: 30px 20px;
  }
}
.page-report .report-comment .comment-text {
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-report .report-comment .comment-text {
    width: 426px;
    padding: 86px 35px 40px;
    box-sizing: border-box;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1100px) {
  .page-report .report-comment .comment-text {
    width: initial;
    padding: 70px 15px 30px;
    font-size: 1.4rem;
  }
}
.page-report .report-comment .comment-text::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}
.page-report .report-comment .comment-text::after {
  content: "";
  display: block;
  width: 2px;
  position: absolute;
  left: 50%;
}
@media screen and (min-width: 768px) {
  .page-report .report-comment .comment-text::after {
    bottom: -33px;
    height: 40px;
    transform: rotate(-40deg) translateX(-5px);
  }
}
@media screen and (max-width: 1100px) {
  .page-report .report-comment .comment-text::after {
    bottom: -19px;
    height: 30px;
    transform: rotate(-55deg) translateX(-7px);
  }
}
.page-report .report-comment .comment-text .title {
  position: absolute;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .page-report .report-comment .comment-text .title {
    top: 19px;
    width: 340px;
  }
}
@media screen and (max-width: 767px) {
  .page-report .report-comment .comment-text .title {
    top: 12px;
    width: 250px;
  }
}
.page-report .report-comment .comment-design {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .page-report .report-comment .comment-design {
    width: 197px;
    bottom: 0;
    left: 63%;
  }
}
@media screen and (max-width: 1100px) {
  .page-report .report-comment .comment-design {
    width: 126px;
    bottom: -20px;
    left: initial;
    right: -8px;
  }
}

.page-seminar .bg-pattern {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .page-seminar .application-btn {
    padding-top: 100px;
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .application-btn {
    padding: 60px 27px 70px;
  }
}
.page-seminar .application-btn.lead-btn {
  padding-top: 0;
  padding-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .page-seminar .application-btn.seminar-top-btn {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .application-btn.seminar-top-btn {
    padding: 0px 27px 70px;
  }
}
.page-seminar .application-btn.none-active .link {
  color: #707070;
  border-color: #707070;
}
.page-seminar .application-btn.none-active .link:hover {
  color: #707070;
}
.page-seminar .application-btn .link {
  background-color: #fff;
  color: #E32D00;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-seminar .application-btn .link {
    border: 4px solid #E32D00;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 10px;
    width: 450px;
    height: 70px;
    font-size: 2.5rem;
    padding-right: 20px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .application-btn .link {
    border: 2px solid #E32D00;
    border-radius: 6px;
    padding: 10px 0;
    font-size: 1.7rem;
    padding-right: 10px;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .application-btn .link:hover {
    color: #E32D00;
    background-color: #FFF93D;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .application-btn .link:hover .icon-arrow {
    right: 20px;
  }
}
.page-seminar .application-btn .icon-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .page-seminar .application-btn .icon-arrow {
    width: 19px;
    right: 25px;
    transition: right 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .application-btn .icon-arrow {
    width: 11px;
    right: 15px;
  }
}
.page-seminar .seminar-top .kv {
  position: relative;
}
.page-seminar .seminar-top .kv .kv-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .kv .kv-img img {
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .kv .kv-img img {
    height: 250px;
  }
}
.page-seminar .seminar-top .kv .kv-txt-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-seminar .seminar-top .kv .kv-txt-wrap .kv-txt {
  font-family: "Noto Sans JP", Meiryo, sans-serif;
  color: #fff;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .kv .kv-txt-wrap .kv-txt {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .kv .kv-txt-wrap .kv-txt {
    font-size: 4.1rem;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .kv .kv-txt-wrap span {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .kv .kv-txt-wrap span {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .kv .kv-txt-wrap .small {
    font-size: 4rem;
    margin-right: 20px;
    vertical-align: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .kv .kv-txt-wrap .small {
    font-size: 2rem;
    line-height: 1;
  }
}
.page-seminar .seminar-top .seminar-lead {
  text-align: center;
  font-weight: bold;
  color: #1A1A1A;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .seminar-lead {
    padding-top: 100px;
    padding-bottom: 94px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .seminar-lead {
    padding: 55px 0;
    font-size: 1.7rem;
  }
}
.page-seminar .seminar-top .seminar-contents {
  background-color: #F2F5F9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .seminar-contents {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.page-seminar .seminar-top .seminar-contents-inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .seminar-contents-inner {
    max-width: 900px;
    margin-inline: auto;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .seminar-contents-inner {
    padding: 60px 27px 90px;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .archive-panel-warp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}
.page-seminar .seminar-top .archive-panel {
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .archive-panel + .archive-panel {
    margin-top: 30px;
  }
}
.page-seminar .seminar-top .archive-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .archive-link:hover .archive-arrow span {
    border-color: #0D6AD3;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .archive-link:hover .archive-arrow .link-arrow {
    right: -5px;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .archive-details {
    padding: 35px 22px 25px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .archive-details {
    padding: 24px 20px 30px;
  }
}
.page-seminar .seminar-top .archive-period {
  text-align: center;
  color: #E32D00;
  font-weight: bold;
  display: none;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .archive-period {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .archive-period {
    font-size: 1.3rem;
  }
}
.page-seminar .seminar-top .archive-period.color-black {
  color: #000;
}
.page-seminar .seminar-top .archive-date {
  display: block;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  color: #868686;
  border-bottom: 2px solid #868686;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .archive-date {
    padding-bottom: 15px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .archive-date {
    padding-bottom: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .archive-date small {
    font-size: 1.1rem;
  }
}
.page-seminar .seminar-top .archive-title {
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .archive-title {
    margin-top: 15px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .archive-title {
    margin-top: 8px;
    font-size: 1.7rem;
  }
}
.page-seminar .seminar-top .archive-arrow {
  position: relative;
  font-weight: bold;
  color: #0D6AD3;
  margin-top: auto;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .archive-arrow {
    font-size: 2.2rem;
    padding-right: 27px;
    margin-right: 35px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .archive-arrow {
    font-size: 1.7rem;
    padding-right: 22px;
    margin-right: 25px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .archive-arrow > span {
    border-bottom: 1px solid;
    border-color: transparent;
    line-height: 1.3;
    display: inline-block;
    transition: border-bottom 0.3s ease;
  }
}
.page-seminar .seminar-top .archive-arrow .link-arrow {
  width: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .archive-arrow .link-arrow {
    transition: right 0.3s ease;
  }
}
.page-seminar .seminar-top .bg-pattern {
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-top .bg-pattern {
    width: 397px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-top .bg-pattern {
    width: 171px;
  }
}
.page-seminar .seminar-detail .kv .kv-img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .kv .kv-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: min(450px, 36vw);
  }
}
.page-seminar .seminar-detail .underline-link {
  color: #0D6AD3;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .underline-link:hover {
    text-decoration: none;
  }
}
.page-seminar .seminar-detail .seminar-detail-lead {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .seminar-detail-lead {
    padding-top: 100px;
    padding-bottom: 90px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .seminar-detail-lead {
    padding: 55px 27px;
  }
}
.page-seminar .seminar-detail .seminar-detail-lead .bg-pattern01 {
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .seminar-detail-lead .bg-pattern01 {
    width: 340px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .seminar-detail-lead .bg-pattern01 {
    width: 173px;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .seminar-detail-lead .lead-txt {
    max-width: 900px;
    margin-inline: auto;
  }
}
.page-seminar .seminar-detail .seminar-detail-lead .lead-txt + .lead-txt {
  margin-top: 1em;
}
.page-seminar .seminar-detail .seminar-detail-lead .lead-txt.archive-comment {
  border-top: 2px dashed #000;
  border-bottom: 2px dashed #000;
  padding: 1rem 0;
  margin-bottom: 2em;
}
.page-seminar .seminar-detail .seminar-detail-lead .lead-txt > .txt-list {
  list-style: initial;
  padding-left: 1em;
}
.page-seminar .seminar-detail .seminar-detail-contents {
  background-color: #F2F5F9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .seminar-detail-contents {
    padding-top: 116px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .seminar-detail-contents {
    padding-top: 65px;
    padding-bottom: 50px;
  }
}
.page-seminar .seminar-detail .seminar-detail-contents .bg-pattern02 {
  right: 0;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .seminar-detail-contents .bg-pattern02 {
    top: 16px;
    width: 331px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .seminar-detail-contents .bg-pattern02 {
    top: 0;
    width: 160px;
  }
}
.page-seminar .seminar-detail .seminar-detail-inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .seminar-detail-inner {
    max-width: 900px;
    margin-inline: auto;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .seminar-detail-inner {
    padding: 0 27px;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .detail-wrap + .detail-wrap {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .detail-wrap + .detail-wrap {
    margin-top: 60px;
  }
}
.page-seminar .seminar-detail .detail-title {
  font-weight: bold;
  line-height: 1.2;
  color: #0D6AD3;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .detail-title {
    font-size: 3rem;
    padding-bottom: 30px;
    border-bottom: 2px solid #D9D9D9;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .detail-title {
    font-size: 2.1rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #D9D9D9;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .cmn-archive-list {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .cmn-archive-list {
    margin-top: 20px;
  }
}
.page-seminar .seminar-detail .cmn-archive-list .archive-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .cmn-archive-list .archive-item {
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .cmn-archive-list .archive-item {
    padding-left: 10px;
  }
}
.page-seminar .seminar-detail .cmn-archive-list .archive-item::before {
  content: "";
  display: block;
  background-color: #0D6AD3;
  position: absolute;
  top: 0.6em;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .cmn-archive-list .archive-item::before {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .cmn-archive-list .archive-item::before {
    width: 5px;
    height: 5px;
  }
}
.page-seminar .seminar-detail .cmn-archive-list .archive-item .note {
  color: #707070;
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .cmn-archive-list .archive-item .note {
    margin-top: 5px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .cmn-archive-list .archive-item .note {
    margin-top: 2px;
    font-size: 1.3rem;
  }
}
.page-seminar .seminar-detail .cmn-archive-list .archive-item .note + .note {
  margin-top: initial;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .cmn-archive-list.summary-list .archive-item:not(:first-child) {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .cmn-archive-list.summary-list .archive-item:not(:first-child) {
    margin-top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .cmn-archive-list.overview-list .archive-item:not(:first-child) {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .cmn-archive-list.overview-list .archive-item:not(:first-child) {
    margin-top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .archive-list-txt {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .archive-list-txt {
    margin-top: 20px;
  }
}
.page-seminar .seminar-detail .lecturer-wrap {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .lecturer-wrap {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .lecturer-wrap {
    padding: 50px 27px 40px;
  }
}
.page-seminar .seminar-detail .lecturer-title {
  font-weight: bold;
  color: #0D6AD3;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .lecturer-title {
    font-size: 2.8rem;
    padding-bottom: 20px;
    border-bottom: 2px solid #D9D9D9;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .lecturer-title {
    font-size: 2.1rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #D9D9D9;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .lecturer-details {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 40px;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .lecturer-details {
    margin-top: 30px;
  }
}
.page-seminar .seminar-detail .lecturer-img {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .lecturer-img {
    width: 246px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .lecturer-img {
    width: 210px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .lecturer-profile {
    margin-top: 30px;
  }
}
.page-seminar .seminar-detail .lecturer-profile .lecturer-name {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .lecturer-profile .lecturer-name {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .lecturer-profile .lecturer-name {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .page-seminar .seminar-detail .lecturer-profile .lecturer-txt {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-seminar .seminar-detail .lecturer-profile .lecturer-txt {
    margin-top: 10px;
  }
}