@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap);
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
* {
  outline: none;

  font: inherit;
  font-family: inherit;
  font-weight: inherit;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

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

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a, img {
  border: none;
  outline: none;
}

img {
  vertical-align: middle;
}

label, button {
  cursor: pointer;
}

a, button {
  -webkit-transition: opacity 0.16s ease-in-out;
          transition: opacity 0.16s ease-in-out;
  text-decoration: none;
}
a:hover, button:hover {
  opacity: 0.8;
}
a:active, button:active {
  opacity: 0.5;
}

b, .b {
  font-weight: normal;
}

strong, .strong {
  font-weight: 700;
}

em {
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.2;
}

small, .small {
  font-size: 85.75%;
}

p, .p, li, dt, dd, th, td {
  font-size: 1.1111111111vw;
  font-size: max( 1.1111111111vw , 16px);
  line-height: 1.9444444444vw;
  line-height: max( 1.9444444444vw , 28px);

  line-break: strict;
}
@media only screen and (min-width: 1441px) {
  p, .p, li, dt, dd, th, td {
    font-size: 16px;
    line-height: 28px;
  }
}

ol, ul, li {
  list-style: none;
}

ul li p, ol li p {
  font-size: 100%;
}

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

  vertical-align: middle;
}
img .lazy {
  opacity: 0;
}
img .fade-in {
  opacity: 1;

  -webkit-transition: 1s ease-in-out;
          transition: 1s ease-in-out;
}

a {
  color: #333a56;
}
a:link, a:active, a:hover, a:visited {
  color: #333a56;
}

*[target=_blank]:after, .newwindow:after {
  background: url("../image/icon_newwindow.svg") no-repeat center center;
  background-size: 14px 14px;

  font-size: 0;
  line-height: 12px;

  position: relative;
  top: -2px;

  display: inline-block;

  margin-right: 0;
  margin-left: 3px;
  width: 14px;
  height: 14px;

  content: "";
  vertical-align: middle;
}

p.notes, span.notes {
  overflow: visible;

  margin-left: 1em !important;

  text-indent: -1em !important;
}

span.notes {
  display: block;
}

html > img {
  position: absolute;
  top: -100px;
  left: -100px;
  z-index: -1;
}

body {
  opacity: 1;

  background-color: #fff;

  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  line-height: 162.5%;
  color: #333a56;

  letter-spacing: 1px;

  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-break: strict;
}
@media only screen and (min-width: 1441px) {
  body {
    font-size: 16px;
  }
}
body.no_scroll {
  overflow: hidden;
}

.body-wrap {
  background-color: rgb(247, 246, 244);

  position: relative;

  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}
.body-wrap.white {
  background-color: #fff;
}

.corp-content {
  color: #45484e;

  padding: 100px 5%;
}
@media only screen and (max-width: 767px) {
  .corp-content {
    padding: 0 0 50px 0;
  }
}
.corp-content__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1200px;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 36px;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .corp-content__wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
.corp-content__main {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 780px;
}
@media only screen and (max-width: 1080px) {
  .corp-content__main {
    width: 680px;
  }
}
@media only screen and (max-width: 980px) {
  .corp-content__main {
    width: 580px;
  }
}
@media only screen and (max-width: 767px) {
  .corp-content__main {
    margin-right: 0;
    width: 100%;
  }
}
.corp-content__main h2, .corp-content__main * + h3, .corp-content__main * + h4 {
  font-family: "Zen Old Mincho", serif;
}
.corp-content__menu {
  position: relative;

  width: 340px;
}
@media only screen and (max-width: 767px) {
  .corp-content__menu {
    padding: 0;
    width: 100%;
  }
}
.corp-content__menu nav {
  background-color: #fff;

  padding: 24px 24px;
}
@media only screen and (max-width: 767px) {
  .corp-content__menu nav {
    padding: 15px 20px 40px 20px;
  }
}
.corp-content__menu nav ul li a {
  font-weight: 500;

  position: relative;

  display: block;

  padding: 8px 30px 8px 0;
}
.corp-content__menu nav ul li a::after {
  background: url("../image/icon_arrow_blueblack_ss.svg") no-repeat center center;

  position: absolute;
  top: 50%;
  right: 0;

  display: block;

  width: 26px;
  height: 26px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.corp-content__menu nav ul li a.current {
  background-color: #f5f5f7;
}
@media only screen and (max-width: 1100px) {
  .corp-content__menu nav ul li a {
    font-size: 12px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  .corp-content__menu nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 8px;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .corp-content__menu nav ul li {
    width: 20%;
  }
  .corp-content__menu nav ul li a {
    font-size: 12px;
    line-height: 1.2;

    position: relative;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    padding: 0;
    height: 100%;

    text-align: center;

    -webkit-align-items: center;
            align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .corp-content__menu nav ul li a::after {
    top: 100%;
    right: 50%;

    -webkit-transform: translateX(50%) rotate(90deg);
            transform: translateX(50%) rotate(90deg);
  }
  .corp-content__menu nav ul li a[href^="#"]::after {
    top: 100%;
    right: 50%;

    -webkit-transform: translateX(50%) rotate(90deg);
            transform: translateX(50%) rotate(90deg);
  }
}
.corp-content__menu nav.sticky {
  position: fixed;
  top: 130px;

  padding-top: 1em;
  width: 340px;
}
@media only screen and (max-width: 1440px) {
  .corp-content__menu nav.sticky {
    max-width: 340px;
    width: calc(90% - 780px - 36px);
  }
}
@media only screen and (max-width: 1080px) {
  .corp-content__menu nav.sticky {
    width: calc(90% - 680px - 36px);
  }
}
@media only screen and (max-width: 980px) {
  .corp-content__menu nav.sticky {
    width: calc(90% - 580px - 36px);
  }
}
.corp-content__menu nav.absolute {
  position: absolute;
  bottom: 0;

  width: 100%;
}
@media only screen and (max-width: 767px) {
  .corp-content__menu nav.sticky {
    position: static;
    top: auto;

    width: 100%;
  }
  .corp-content__menu nav.absolute {
    position: static;
    bottom: auto;

    width: 100%;
  }
}

.notfound.section-base {
  padding: 190px 5% 100px 5%;
}
.notfound__wrap {
  background-color: #fff;

  margin: 0 auto;
  padding: 64px 5%;
  max-width: 1024px;
}
@media only screen and (max-width: 767px) {
  .notfound__wrap {
    padding: 40px 5%;
  }
}
.notfound h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
}
.notfound p {
  padding: 30px 0;

  text-align: center;
}
.notfound .button a.type02 {
  padding: 25px 40px;
}
.notfound .button a.type02::after {
  display: none;
}

h1, h2, h3, .font-title {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}

.heading {
  margin: 0 auto;
  padding-bottom: 50px;
  max-width: 1200px;
  width: 100%;

  text-align: center;
}
.heading h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  line-height: 1.3;

  position: relative;

  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .heading h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 375px) {
  .heading h2 {
    font-size: max( 5.8666666667vw , 12px);
  }
}
.heading h2 .label {
  font-size: 20px;
  font-weight: normal;

  position: absolute;
  top: 0;
  left: 50%;

  display: inline-block;

  margin: 0 auto;

  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .heading h2 .label {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .heading h2 .label {
    font-size: max( 4.8vw , 12px);
  }
}
.heading.no-label h2 {
  padding-top: 0;
}
.heading--read {
  font-weight: normal;

  padding-top: 1.5em;

  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .heading--read {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .heading--read {
    font-size: max( 4.2666666667vw , 12px);
  }
}
@media only screen and (max-width: 767px) {
  .heading {
    padding-bottom: 40px;
  }
}

.mt5 {
  margin-top: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mr35 {
  margin-right: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mr45 {
  margin-right: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mr50 {
  margin-right: 50px;
}

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

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

.section-base {
  background-color: rgb(247, 246, 244);

  padding: 100px 5%;
}
@media only screen and (max-width: 767px) {
  .section-base {
    padding: 50px 5%;
  }
}
.section-base__wrap {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

* + .section-base {
  padding-top: 0;
}

.section-base + .section-base .heading {
  border-top: 1px solid #ccced5;

  padding-top: 100px;
}

#faq + #download .heading {
  border-top: none;
}
@media only screen and (max-width: 767px) {
  #faq + #download .heading {
    padding-top: 0;
  }
}

.header__category + .section-base, .search + .section-base, .blog + .section-base, .event-seminar + .section-base {
  padding-top: 50px;
}

.cv + .section-base, .event-seminar__wrap + .cv, .cv + .event-seminar__wrap {
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .cv + .section-base, .event-seminar__wrap + .cv, .cv + .event-seminar__wrap {
    padding-top: 50px;
  }
}

.cv + .event-seminar__wrap.past, .event-seminar__wrap.past + .cv {
  margin-top: 0;
}

.bg-left {
  background: url("../image/bg_left.png") no-repeat;
  background-position: left 0 top 70%;
}
.bg-left-absolute {
  position: relative;
}
.bg-left-absolute::after {
  background: url("../image/bg_left.png") no-repeat;
  background-position: left 0 top 0;

  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;

  display: block;

  width: 100%;
  height: 100%;

  content: "";
}
.bg-left-absolute .section-base {
  background: inherit;

  position: relative;
  z-index: 1;
}

.bg-leftbottom {
  background: url("../image/bg_left.png") no-repeat;
  background-position: left 0 bottom 200%;
}
@media only screen and (max-width: 767px) {
  .bg-leftbottom {
    background-position: left -40px bottom -30%;
    background-size: 100% auto;
  }
}

.bg-bottom {
  background: url("../image/bg_bottom.png") no-repeat;
  background-position: left 0 bottom -160%;
}
@media only screen and (max-width: 767px) {
  .bg-bottom {
    background-size: 100% auto;
  }
}

.bg-middle {
  background-image: url("../image/bg_bottom.png");
  background-repeat: no-repeat;
  background-position: center bottom 60%;
}
@media only screen and (max-width: 767px) {
  .bg-middle {
    background-size: 100% auto;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.box-gray {
  border-radius: 50px;
  background-color: #f8f8f8;

  padding: 60px;
}
@media only screen and (max-width: 767px) {
  .box-gray {
    border-radius: 30px;

    padding: 30px 20px;
  }
}

.quote-box {
  background-color: #f1f5f6;

  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: #45484e;

  position: relative;

  margin: 40px 0;
  padding: 70px 30px;

  text-align: center;
}
.quote-box::before {
  font-size: 60px;
  line-height: 1;

  position: absolute;
  top: 20px;
  left: 20px;

  content: "“";
}
.quote-box::after {
  font-size: 60px;
  line-height: 1;

  position: absolute;
  bottom: 20px;
  right: 20px;

  content: "“";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .quote-box {
    font-size: 18px;

    margin: 20px 0;
    padding: 50px 20px;
  }
  .quote-box::before {
    font-size: 40px;

    top: 10px;
    left: 10px;
  }
  .quote-box::after {
    font-size: 40px;

    bottom: 10px;
    right: 10px;
  }
}

.movie-box {
  width: 100%;

  aspect-ratio: 16/9;
}
.movie-box iframe {
  width: 100%;
  height: 100%;
}
* + .movie-box {
  margin-top: 40px;
}

.is-type-video {
  width: 100%;

  aspect-ratio: 16/9;
}
.is-type-video iframe {
  width: 100%;
  height: 100%;

  aspect-ratio: 16/9;
}

* + .is-type-video {
  margin-top: 40px;
}

.breadcrumb {
  background: #fff;

  padding: 10px;
}
.breadcrumb__wrap {
  margin: 0 auto 0 auto;
  max-width: 1250px;
}
.breadcrumb__wrap ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
          justify-content: start;
}
.breadcrumb__wrap ol li {
  margin-right: 10px;

  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .breadcrumb__wrap ol li {
    font-size: 14px;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media only screen and (max-width: 375px) {
  .breadcrumb__wrap ol li {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.breadcrumb__wrap ol li::after {
  margin-left: 10px;

  content: ">";
}
.breadcrumb__wrap ol li:last-child {
  font-weight: 500;

  overflow: hidden;

  margin-right: 0;

  text-overflow: ellipsis;
}
.breadcrumb__wrap ol li:last-child::after {
  display: none;
}
.breadcrumb__wrap ol li a {
  font-weight: 500;
  color: #999daa;
}

.pop-banner {
  background-color: rgba(0, 0, 0, 0.7);

  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

  display: none;

  width: 100vw;
  height: 100vh;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.pop-banner.display {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}
.pop-banner__content {
  position: relative;

  margin: 0 10%;
  max-width: 969px;
  max-height: 80vh;
  height: auto;

  text-align: center;

  aspect-ratio: 16/9;
}
.pop-banner__content span {
  color: #fff;

  position: absolute;
  top: -40px;
  right: 0;

  display: block;

  width: 30px;
  height: 30px;
}
.pop-banner__content span .close {
  font-size: 0;

  position: relative;

  display: block;

  width: 30px;
  height: 30px;

  text-align: center;
}
.pop-banner__content span .close::before {
  background: #fff;

  position: absolute;
  top: 14px;
  left: 0;

  width: 100%;
  height: 2px;

  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pop-banner__content span .close::after {
  background: #fff;

  position: absolute;
  top: 14px;
  left: 0;

  width: 100%;
  height: 2px;

  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.pop-banner__content a {
  display: block;
}

.no-scroll {
  overflow: hidden;
}

.imgpop {
  position: relative;

  display: block;

  -webkit-transform: translateZ(1px);
          transform: translateZ(1px);
}

.pickup {
  padding-top: 50px;
}
.pickup__wrap {
  padding: 0 5%;
}
.pickup h2 {
  font-size: 16px;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1200px;
}

.gdpr {
  background: #fff;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);

  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
}
.gdpr__wrap {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 14px 40px 14px 40px;
  max-width: 1440px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  gap: 30px;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .gdpr__wrap {
            flex-direction: column;

    padding: 20px 5% 20px 5%;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 16px;
  }
}
.gdpr__wrap--text {
  background: url("../image/icon_lock.svg") no-repeat left center;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;

  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  .gdpr__wrap--text {
    padding-right: 8%;
    padding-left: 40px;
  }
}
.gdpr__wrap--button {
  width: 408px;
  height: 46px;
}
@media only screen and (max-width: 980px) {
  .gdpr__wrap--button {
    height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .gdpr__wrap--button {
    width: 100%;
    height: 46px;
  }
}
.gdpr__wrap--button ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  padding: 0;
  width: 100%;
  height: 100%;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 8px;
}
@media only screen and (max-width: 980px) {
  .gdpr__wrap--button ul {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .gdpr__wrap--button ul {
            flex-direction: row;

    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
    gap: 2%;
  }
}
.gdpr__wrap--button ul li {
  width: 200px;
  height: 100%;
}
.gdpr__wrap--button ul li a {
  border: 1px solid #333a56;
  border-radius: 2px;

  font-weight: 500;
  color: #333a56;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.gdpr__wrap--button ul li:last-child a {
  background-color: #333a56;

  color: #fff;
}
@media only screen and (max-width: 767px) {
  .gdpr__wrap--button ul li {
    width: 49%;
  }
}
.gdpr__wrap--close {
  position: absolute;
  top: 14px;
  right: 40px;

  display: block;

  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  .gdpr__wrap--close {
    top: 20px;
    right: 4%;
  }
}
.gdpr__wrap--close a {
  font-size: 0;

  position: relative;

  display: block;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 7px;
  width: 24px;
  height: 24px;

  text-indent: -999;
}
.gdpr__wrap--close a::before {
  background-color: #333a56;

  position: absolute;
  top: 7px;
  left: 7px;

  display: block;

  width: 10px;
  height: 2px;

  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.gdpr__wrap--close a::after {
  background-color: #333a56;

  position: absolute;
  top: 7px;
  left: 7px;

  display: block;

  width: 10px;
  height: 2px;

  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

ul.bullet-box {
  border: 1px solid #ccced5;

  padding: 10px 20px;
}
ul.bullet-box li {
  font-size: 16px;
  font-weight: 500;

  position: relative;

  padding: 10px 0 10px 40px;
}
@media only screen and (max-width: 767px) {
  ul.bullet-box li {
    font-size: 1em;
  }
}
ul.bullet-box li::before {
  border-radius: 50%;
  background-color: #bf9f70;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 31px;
  height: 31px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
ul.bullet-box li::after {
  background: url("../image/icon_check_white.svg") no-repeat 0 0;
  background-size: cover;

  position: absolute;
  top: 50%;
  left: 8px;

  display: block;

  width: 16px;
  height: 11px;

  content: "";
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.col2-content {
  padding: 160px 5% 100px 5%;
}
@media only screen and (max-width: 767px) {
  .col2-content {
    padding: 80px 0 50px 0;
  }
}
.col2-content__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1200px;

  gap: 100px;
}
@media only screen and (max-width: 767px) {
  .col2-content__wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 60px;
  }
}
.col2-content__main {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 433px);
}
@media only screen and (max-width: 767px) {
  .col2-content__main {
    margin-right: 0;
    width: 100%;
  }
}
.col2-content__main .pickup {
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .col2-content__main .pickup {
    display: none;
  }
}
.col2-content__main .pickup h2 {
  font-size: 20px;

  padding-bottom: 10px;
}
.col2-content__main .pickup__item {
  margin-top: 20px;
}
.col2-content__main .pickup__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  gap: 4.4%;
}
.col2-content__main .pickup__image {
  overflow: hidden;

  width: 34.7%;

  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.col2-content__main .pickup__image img {
  display: block;

  width: 100%;

  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.col2-content__main .pickup__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  width: 60.9%;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.col2-content__main .pickup__text h3, .col2-content__main .pickup__text--title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.col2-content__main .pickup__text .label {
  font-size: 12px;
  color: rgb(82, 101, 143);

  padding-top: 0.5em;
}
.col2-content__main .pickup__text .label span {
  color: #333a56;
}
.col2-content__main .pageturn + .pickup {
  border-top: 1px solid #999daa;
}
.col2-content__right {
  position: relative;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 333px;

  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  -ms-flex-positive: 1;
}
@media only screen and (max-width: 767px) {
  .col2-content__right {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 5%;
    width: 100%;
  }
}
.col2-content__right--wrap.sticky {
  position: fixed;
  top: 130px;

  width: 333px;
}
.col2-content__right--wrap.absolute {
  position: absolute;
  bottom: 0;

  width: 333px;
}
@media only screen and (max-width: 767px) {
  .col2-content__right--wrap.sticky {
    position: static;
    top: auto;

    width: 100%;
  }
  .col2-content__right--wrap.absolute {
    position: static;
    bottom: auto;

    width: 100%;
  }
}
.col2-content__right--banner a {
  display: block;

  margin-bottom: 10px;
}
.col2-content__right--banner a img {
  display: block;

  width: 100%;
}
.col2-content__right .pickup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  padding-top: 40px;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  gap: 24px;
}
.col2-content__right .pickup h2 {
  border-bottom: 1px solid #999daa;

  padding-bottom: 0.5em;
  width: 100%;
}
.col2-content__right .pickup__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  gap: 10px;
}
.col2-content__right .pickup__image {
  overflow: hidden;

  width: 114px;

  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.col2-content__right .pickup__image img {
  display: block;

  width: auto;

  aspect-ratio: 57/32;
  -o-object-fit: cover;
     object-fit: cover;
}
.col2-content__right .pickup__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.col2-content__right .pickup__text h3, .col2-content__right .pickup__text--title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.col2-content__right .pickup__text p.label {
  font-size: 12px;
  color: #a3a3a3;

  padding-top: 0.5em;
}

.col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2em 4%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.col2__cell {
  background-color: #fff;

  width: 48%;
}
.col2__item--headtitle {
  font-size: 18px;

  padding-bottom: 0.5em;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .col2__item--headtitle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .col2__item--headtitle {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.col2__item--image {
  width: 100%;

  text-align: center;
}
.col2__item--image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.col2__item--title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;

  margin-top: 40px;
  padding: 0;
}
.col2__item--title .label {
  font-size: 12px;
  font-weight: normal;

  display: block;

  padding-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .col2 {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 40px;
  }
  .col2__cell {
    width: 100%;
  }
  .col2__item--image {
    height: auto;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .col2__item--title {
    font-size: max( 5.3333333333vw , 12px);
  }
}

.col3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2em 2.9%;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.col3__cell {
  background: #fff;

  width: 31.4%;
}
.col3__cell > a {
  display: block;
}
.col3__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
}
.col3__item--headtitle {
  background-color: rgb(247, 246, 244);

  font-size: 18px;

  padding-bottom: 15px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .col3__item--headtitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .col3__item--headtitle {
    font-size: max( 5.3333333333vw , 12px);
  }
}
.col3__item--image {
  width: 100%;

  text-align: center;
}
.col3__item--image img {
  display: block;

  width: 100%;

  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.col3__item--company {
  font-size: 14px;
  font-weight: 500;

  margin: 0 0 1em 0;
}
@media only screen and (max-width: 767px) {
  .col3__item--company {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .col3__item--company {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.col3__item--content {
  background: #fff;

  color: #333a56;

  display: block;

  padding: 20px;

  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  -ms-flex-positive: 1;
}
@media only screen and (max-width: 767px) {
  .col3__item--content {
    padding: 24px;
  }
}
.col3__item--service {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;

  padding: 25px 0 30px 0;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .col3__item--service {
    font-size: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .col3__item--service {
    font-size: max( 7.4666666667vw , 12px);
  }
}
.col3__item--service a, .col3__item--service span {
  position: relative;

  display: block;

  padding: 0 30px;
  /*&::after{
  	position: absolute;
  	content: "";
  	display: block;
  	width: 18px;
  	height: 15px;
  	background: url("../image/icon_arrow_black.svg") 0 0;
  	background-size: 18px 15px;
  	right: 0;
  	top: 50%;
  	transform: translateY(-50%);
  }*/
}
.col3__item--title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;

  position: relative;

  margin-top: 30px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .col3__item--title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .col3__item--title {
    font-size: max( 4.8vw , 12px);
  }
}
.col3__item--title .label {
  font-size: 12px;
  font-weight: normal;

  display: block;

  padding-bottom: 0.6em;
}
.col3__item--title .text {
  display: block;
}
.support .col3__item--title {
  text-align: center;
}
.col3__item--tags {
  margin-top: 15px;
}
.col3__item--tags ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px;
}
.col3__item--tags ul li {
  border: 1px solid #ccced5;
  border-radius: 2px;

  font-size: 12px;
  line-height: 1;
  color: #333a56;

  display: block;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 10px;
}
.col3__item--tags ul li a, .col3__item--tags ul li span {
  color: #333a56;
}
.col3__item--detail {
  font-size: 16px;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .col3__item--detail {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .col3__item--detail {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.col3__item--content > .col3__item--title {
  margin-top: 0;
}
.col3__item--table {
  border-bottom: 1px solid #ccced5;

  font-size: 14px;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
}
.col3__item--table table thead td {
  font-size: 14px;
}
.col3__item--table table tr th {
  font-size: 14px;
  color: #999daa;

  text-align: left;
}
.col3__item--table table tr td {
  font-size: 14px;

  padding-left: 1em;
}
.col3__item--annotation {
  font-size: 14px;
  font-weight: 500;

  padding-top: 1.2em;
}
.col3__item--date {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  color: #999daa;

  margin-top: 0.5em;
}
@media only screen and (max-width: 767px) {
  .col3__item--date {
    font-size: 12px;
  }
}
@media only screen and (max-width: 375px) {
  .col3__item--date {
    font-size: max( 3.2vw , 12px);
  }
}
.col3__item--date span {
  color: #333a56;
}
.col3__item--linktext {
  font-size: 20px;
  font-weight: 500;

  padding-bottom: 1em;

  text-align: center;
}
.col3__item--linkbutton {
  border: 1px solid #333a56;
  border-radius: 2px;

  font-weight: 500;
  color: #333a56;

  display: block;

  margin: 0 15px 20px 15px;
  padding: 0.5em 0;

  text-align: center;
  /*a, span {
  	display: block;
  	background-color: #595959;
  	color: #FFF;
  	padding: 0.5em 0;
  	text-align: center;
  	width: 100%;
  }*/
}
@media only screen and (max-width: 767px) {
  .col3__item--linkbutton {
    font-size: 14px;

    margin: 0 24px 20px 24px;
  }
}
@media only screen and (max-width: 375px) {
  .col3__item--linkbutton {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.col3__item--linkbutton--col2 {
  /*a {
  	display: block;
  	background-color: #595959;
  	color: #FFF;
  	padding: 0.5em 0;
  	text-align: center;
  	width: 46%;
  }*/
  border-top: 1px solid #ccced5;

  font-size: 14px;
  font-weight: 500;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 20px;
  padding-top: 20px;

  gap: 2%;
}
@media only screen and (max-width: 767px) {
  .col3__item--linkbutton--col2 {
    font-size: 14px;

            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .col3__item--linkbutton--col2 {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.col3__item--linkbutton--col2 li {
  width: 49%;
}
.col3__item--linkbutton--col2 li a, .col3__item--linkbutton--col2 li span {
  border-radius: 2px;

  color: #fff;

  display: block;

  padding: 0.5em 0;

  text-align: center;
}
.col3__item--linkbutton--col2 li:first-child a {
  border: 1px solid;
  background-color: #fff;

  color: #333a56;
}
.col3__item--linkbutton--col2 li:last-child a {
  border: 1px solid #333a56;
  background-color: #333a56;

  color: #fff;
}
.col3__item--linkbutton--col2 li:last-child span {
  border: 1px solid #999daa;
  background-color: #999daa;

  color: #fff;
}
@media only screen and (max-width: 767px) {
  .col3__item--linkbutton--col2 li {
    width: 100%;
  }
}
.col3__item--nextlink {
  background: #fff;

  padding: 0 15px 15px 15px;

  text-align: right;
}
@media only screen and (max-width: 767px) {
  .col3__item--nextlink {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .col3__item--nextlink {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.col3__item--nextlink a, .col3__item--nextlink span {
  font-weight: 500;
  color: #bf9f70;
}
.col3__item--nextlink a::after, .col3__item--nextlink span::after {
  background: url("../image/icon_arrow_gold.svg") no-repeat center center;

  display: inline-block;

  margin-left: 1em;
  width: 15px;
  height: 12px;

  content: "";
}
@media only screen and (max-width: 767px) {
  .col3 {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 40px;
  }
  .col3__cell {
    width: 100%;
  }
  .col3__item--image {
    height: auto;
  }
  .col3__item--service {
    font-size: 20px;

    padding: 20px 0 20px 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .col3__item--service {
    font-size: max( 5.3333333333vw , 12px);
  }
}
@media only screen and (max-width: 767px) {
  .col3__item--service a {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .col3__item--title {
    font-size: max( 5.3333333333vw , 12px);
  }
}

.imageset__col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  gap: 70px;
}
.imageset__col2--item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  gap: 3.2%;
}
.imageset__col2--img {
  width: 48.4%;
}
.imageset__col2--text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  width: 48.4%;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.imageset__col2--text .read {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;

  padding-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .imageset__col2--text .read {
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .imageset__col2--text .read {
    font-size: max( 5.3333333333vw , 12px);
  }
}
.imageset__col2--text .read .count {
  border: 1px solid #bf9f70;
  border-radius: 2px;

  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #bf9f70;

  display: inline-block;

  margin-bottom: 20px;
  padding: 3px 6px;
}
@media only screen and (max-width: 767px) {
  .imageset__col2--text .read .count {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .imageset__col2--text .read .count {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.imageset__col2--text h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  line-height: 1.4;

  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .imageset__col2--text h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 375px) {
  .imageset__col2--text h3 {
    font-size: max( 5.8666666667vw , 12px);
  }
}
@media only screen and (max-width: 767px) {
  .imageset__col2 {
    gap: 40px;
  }
  .imageset__col2--item {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
  .imageset__col2--img {
    padding-top: 10px;
    padding-bottom: 20px;
    width: 100%;
  }
  .imageset__col2--text {
    width: 100%;
  }
  .imageset__col2--text .read {
    padding-bottom: 10px;
  }
  .imageset__col2 .read .count {
    font-size: 16px;
  }
}
.imageset__col2large {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  gap: 70px;
}
.imageset__col2large--item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  gap: 11.5%;
}
.imageset__col2large--img {
  width: 48%;
}
.imageset__col2large--text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  width: 40.5%;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.imageset__col2large--text h3 {
  font-size: 32px;
  line-height: 1.4;

  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .imageset__col2large--text h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .imageset__col2large--text h3 {
    font-size: max( 5.3333333333vw , 12px);
  }
}
@media all and (max-width: 1440px) {
  .imageset__col2large--item {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
  .imageset__col2large--img {
    margin-bottom: 20px;
    width: 100%;
  }
  .imageset__col2large--text {
    width: 100%;
  }
}
.imageset__col2small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  gap: 30px;
}
.imageset__col2small--item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 7%;
  -webkit-justify-content: center;
          justify-content: center;
}
.imageset__col2small--img {
  width: 30%;
}
.imageset__col2small--text {
  width: 63%;
}

.imagelist__col6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 2.9%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.imagelist__col6 li {
  border: solid 1px #c8c8c8;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14%;
}
.imagelist__col6 li img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .imagelist__col6 li {
    width: 31%;
  }
}

.list__col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  width: 100%;
}
.list__col2--cell {
  width: 50%;
}
.list__col2--cell:first-child {
  border-right: 1px solid #424242;

  padding-right: 50px;
}
.list__col2--cell:last-child {
  padding-left: 50px;
}
.list__col2--cell .label {
  font-size: 18px;
  font-weight: 500;

  margin-bottom: 2em;

  text-align: center;
}
.list__col2 ul li {
  position: relative;
  z-index: 1;

  padding: 5px 0 5px 30px;
}
.list__col2 ul li::before {
  background: url("../image/icon_check_green.svg") no-repeat 0 0;
  background-size: cover;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 18px;
  height: 18px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.red .list__col2 ul li::before {
  background: url("../image/icon_check_red.svg") no-repeat 0 0;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .list__col2 {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
  .list__col2--cell {
    width: 100%;
  }
  .list__col2--cell:first-child {
    border-right: none;
    border-bottom: 1px solid #424242;

    margin-bottom: 30px;
    padding: 0 0 30px 0;
  }
  .list__col2--cell:last-child {
    padding: 0;
  }
  .list__col2--cell .label {
    font-size: 18px;

    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .list__col2--cell .label {
    font-size: max( 4.8vw , 12px);
  }
}

.wp-block-table {
  margin: 40px 0 1em 0;
}
@media only screen and (max-width: 767px) {
  .wp-block-table {
    overflow-x: scroll;

    margin-top: 20px;

    white-space: nowrap;
  }
}
.wp-block-table table {
  overflow: hidden;

  margin: 10px 0;
  width: 100%;

  border-spacing: unset;
  border-collapse: unset;
}
@media only screen and (max-width: 767px) {
  .wp-block-table table {
    width: auto;
  }
}
.wp-block-table table thead {
  border-bottom: none;
}
.wp-block-table table thead th {
  border-top: none;
  border-right: 1px solid #ccced5;
  border-bottom: 1px solid #ccced5;
  border-left: none;
  background-color: #333a56;

  font-weight: 900;
  color: #fff;

  padding: 0.5em 2em;

  text-align: left;
}
.wp-block-table table thead th:last-child {
  border-right: none;
}
.wp-block-table table thead th.blank {
  background-color: #ccced5;
}
.wp-block-table table tbody tr:first-child th, .wp-block-table table tbody tr:first-child td {
  border-top: 1px solid #ccced5;
}
.wp-block-table table tbody tr th, .wp-block-table table tbody tr td:first-child {
  border-bottom: 1px solid #ccced5;
  border-left: 1px solid #ccced5;
  background-color: #f5f5f7;

  font-weight: 500;

  text-align: left;
}
.wp-block-table table tbody tr td {
  border-top: none;
  border-right: 1px solid #ccced5;
  border-bottom: 1px solid #ccced5;

  padding: 0.5em 2em;

  text-align: left;
}
.wp-block-table table thead + tbody tr:first-child th, .wp-block-table table thead + tbody tr:first-child td {
  border-top: none;
}

.scroll-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  overflow: hidden;
}
.scroll-logo img {
  display: block;

  height: auto;
}
.scroll-logo ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0;

  list-style: none;

  -webkit-animation: slidelogo 60s infinite linear 1s both;
          animation: slidelogo 60s infinite linear 1s both;

  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.scroll-logo ul li {
  padding: 0 4px;
}
.scroll-logo ul li img {
  border-radius: 2px;

  height: 72px;
}
@media only screen and (max-width: 767px) {
  .scroll-logo ul li img {
    height: 10.6vw;
  }
}

@-webkit-keyframes slidelogo {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slidelogo {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.float_bnr {
  background: #fff;
  -webkit-box-shadow: rgba(153, 153, 153, 0.5) 0 0 8px 0;
          box-shadow: rgba(153, 153, 153, 0.5) 0 0 8px 0;

  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 10;

  display: none;

  width: 256px;
  height: 256px;
}
@media only screen and (max-width: 767px) {
  .float_bnr {
    bottom: 10px;
    right: 10px;
    z-index: 10;

    max-width: 170px;
    height: auto;
  }
}
.float_bnr p {
  position: relative;
  z-index: 1;
}
.float_bnr p button {
  border: none;
}
.float_bnr p a {
  display: block;
}
.float_bnr p .dl-docs {
  border: 1px solid #448280;
  border-radius: 36px;
  background-color: #448280;

  font-size: 16px;
  line-height: 1;
  color: #fff;

  display: block;

  padding: 16px 40px;

  text-align: center;
}
.float_bnr p .dl-docs:hover {
  opacity: 1;

  background-color: #fff;

  color: #448280;
}
@media only screen and (max-width: 767px) {
  .float_bnr p .dl-docs {
    font-size: 12px;

    padding: 8px 20px;
  }
}
.float_bnr p .close {
  position: absolute;
  top: 12px;
  right: 8px;

  width: 21px;
  height: 21px;
}
@media only screen and (max-width: 767px) {
  .float_bnr p .close {
    top: 5px;
    right: -5px;
  }
}
.float_bnr p .close span {
  position: relative;
  z-index: 1;

  display: block;

  width: 100%;
  height: 100%;

  cursor: pointer;
}
.float_bnr p .close span::before {
  background: #000;

  position: absolute;
  top: 0;
  right: -5px;

  display: block;

  width: 100%;
  height: 1px;

  content: "";
  -webkit-transform: rotate(45deg) translateY(14px);
          transform: rotate(45deg) translateY(14px);
}
.float_bnr p .close span::after {
  background: #000;

  position: absolute;
  bottom: 0;
  right: -5px;

  display: block;

  width: 100%;
  height: 1px;

  content: "";
  -webkit-transform: rotate(-45deg) translateY(-14px);
          transform: rotate(-45deg) translateY(-14px);
}
@media only screen and (max-width: 767px) {
  .float_bnr p .close {
    top: -35px;
    right: 0;

    width: 26px;
    height: 26px;
  }
  .float_bnr p .close span::before {
    background: #595959;

    top: 0;
    right: -10px;

    height: 2px;

    -webkit-transform: rotate(45deg) translateY(17px);
            transform: rotate(45deg) translateY(17px);
  }
  .float_bnr p .close span::after {
    background: #595959;

    bottom: 0;
    right: -10px;

    height: 2px;

    -webkit-transform: rotate(-45deg) translateY(-17px);
            transform: rotate(-45deg) translateY(-17px);
  }
}
.float_bnr p img {
  display: block;
}
.float_bnr.display {
  display: block;
}

.button {
  text-align: center;
}
.button a, .button span, .button button {
  border: none;
  border-radius: 2px;
  background-color: inherit;

  font-size: 20px;
  font-weight: 500;
  color: #bf9f70;

  position: relative;
  z-index: 1;

  display: inline-block;

  padding: 25px 100px 25px 20px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .button a, .button span, .button button {
    font-size: 20px;

    padding: 10px 100px 10px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .button a, .button span, .button button {
    font-size: max( 5.3333333333vw , 12px);
  }
}
.button a::after, .button span::after, .button button::after {
  background: url("../image/icon_arrow_goto_gold.svg") no-repeat 0 0;

  position: absolute;
  top: 50%;
  right: 20px;

  display: block;

  width: 64px;
  height: 64px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.button a.none, .button span.none, .button button.none {
  padding: 25px 40px 25px 40px;
}
.button a.none::after, .button span.none::after, .button button.none::after {
  display: none;
}
.button a.type01, .button span.type01, .button button.type01 {
  border: 2px solid #bf9f70;
  border-radius: 2px;
  background-color: #bf9f70;

  color: #fff;

  padding: 25px 80px 25px 40px;
  min-width: 400px;

  letter-spacing: 1px;
}
.button a.type01::after, .button span.type01::after, .button button.type01::after {
  background: url("../image/icon_arrow_gold.svg") no-repeat 0 0;

  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .button a.type01, .button span.type01, .button button.type01 {
    font-size: 16px;

    padding: 15px 40px 15px 20px;
    min-width: initial;
    width: 100%;
  }
  .button a.type01::after, .button span.type01::after, .button button.type01::after {
    background-size: cover;

    right: 15px;

    width: 26px;
    height: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .button a.type01, .button span.type01, .button button.type01 {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.button a.type02, .button span.type02, .button button.type02 {
  border: 2px solid rgb(82, 101, 143);
  border-radius: 2px;
  background-color: #fff;

  color: #333a56;

  padding: 25px 80px 25px 40px;
  min-width: 400px;

  letter-spacing: 1px;
}
.button a.type02::after, .button span.type02::after, .button button.type02::after {
  background: url("../image/icon_arrow_blueblack.svg") no-repeat 0 0;

  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .button a.type02, .button span.type02, .button button.type02 {
    font-size: 16px;

    padding: 15px 40px 15px 20px;
    min-width: initial;
    width: 100%;
  }
  .button a.type02::after, .button span.type02::after, .button button.type02::after {
    background-size: cover;

    right: 15px;

    width: 26px;
    height: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .button a.type02, .button span.type02, .button button.type02 {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.button a.download, .button span.download, .button button.download {
  border: 2px solid #bf9f70;
  background-color: #bf9f70;

  color: #fff;
}
.button a.download::after, .button span.download::after, .button button.download::after {
  background: url("../image/icon_dl.svg") no-repeat 0 0;

  width: 22px;
  height: 22px;
}
.button.return a, .button.return button {
  border-color: #bf9f70;

  color: #bf9f70;

  padding: 20px 40px 20px 80px;
}
.button.return a:after, .button.return button:after {
  left: 0;
  right: auto;

  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .button.return {
    margin-right: auto;
    margin-left: auto;
    min-width: 220px;
  }
}
.button-small a, .button-small span, .button-small button {
  border: 2px solid #000;
  border-radius: 2px;

  font-size: 16px;
  font-weight: 500;

  display: inline-block;

  padding: 10px 20px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .button-small a, .button-small span, .button-small button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .button-small a, .button-small span, .button-small button {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.button-small a.type01, .button-small span.type01, .button-small button.type01 {
  border: 2px solid #bf9f70;
  background-color: #bf9f70;

  color: #fff;

  letter-spacing: 1px;
}
.button-small a.type02, .button-small span.type02, .button-small button.type02 {
  border: 2px solid rgb(82, 101, 143);
  background-color: #fff;

  color: #333a56;

  letter-spacing: 1px;
}
.button-small a[target=_blank]::after, .button-small span[target=_blank]::after, .button-small button[target=_blank]::after {
  display: none;
}
.section-base .button {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .section-base .button {
    margin-right: auto;
    margin-left: auto;
  }
}

.nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 20px auto 100px auto;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  gap: 10px;
  -webkit-justify-content: center;
          justify-content: center;
}
.nav-links .screen-reader-text {
  display: none;
}
.nav-links a, .nav-links span {
  border: solid 2px #333a56;
  border-radius: 50%;

  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.3;
  color: #333a56;

  display: inline-block;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 64px;
  height: 64px;

  text-align: center;
  text-decoration: none;
}
.nav-links a:first-child, .nav-links a:last-child, .nav-links span:first-child, .nav-links span:last-child {
  border: none;
}
.nav-links a .prev, .nav-links span .prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-links a.current, .nav-links span.current {
  background-color: #333a56;

  color: #fff;
}

.pagination {
  background: rgb(247, 246, 244);

  padding: 20px 0 100px 0;
}
@media only screen and (max-width: 767px) {
  .pagination {
    padding: 20px 0 50px 0;
  }
}

.wp-pagenavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto 0 auto;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  gap: 10px;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi {
    position: relative;
    z-index: 1;

    padding-bottom: 70px;
  }
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .page, .wp-pagenavi .current, .wp-pagenavi .first, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .last {
  border-radius: 50%;
  background-color: #fff;

  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #333a56;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 64px;
  height: 64px;

  text-decoration: none;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .page, .wp-pagenavi .current, .wp-pagenavi .first, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .last {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 375px) {
  .wp-pagenavi .page, .wp-pagenavi .current, .wp-pagenavi .first, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .last {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.wp-pagenavi .first {
  background: url("../image/icon_pagenation_first.svg") no-repeat center center;
  background-color: inherit;

  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .first {
    background-size: 50%;
  }
}
.wp-pagenavi .previouspostslink {
  background: url("../image/icon_pagenation_prev.svg") no-repeat center center;
  background-color: inherit;

  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink {
    background-size: 50%;
  }
}
.wp-pagenavi .nextpostslink {
  background: url("../image/icon_pagenation_next.svg") no-repeat center center;
  background-color: inherit;

  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .nextpostslink {
    background-size: 50%;
  }
}
.wp-pagenavi .last {
  background: url("../image/icon_pagenation_last.svg") no-repeat center center;
  background-color: inherit;

  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .last {
    background-size: 50%;
  }
}
.wp-pagenavi .current {
  background-color: #333a56;

  color: #fff;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .first, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .last {
    background-color: #fff;

    position: absolute;
    bottom: 0;
  }
  .wp-pagenavi .first {
    -webkit-transform: translateX(-88px);
            transform: translateX(-88px);
  }
  .wp-pagenavi .last {
    -webkit-transform: translateX(88px);
            transform: translateX(88px);
  }
  .wp-pagenavi .previouspostslink {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  .wp-pagenavi .nextpostslink {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}

.pageturn {
  position: relative;
  z-index: 1;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 60px;
  padding-bottom: 50px;
  min-height: 62px;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .pageturn {
    margin: 30px 5% 0 5%;
    padding-bottom: 120px;
    min-height: initial;
  }
}
.pageturn .prev {
  font-size: 20px;
  font-weight: 500;
  color: #bf9f70;

  position: relative;
  z-index: 1;

  display: inline-block;

  padding: 18px 0 18px 20px;
}
@media only screen and (max-width: 767px) {
  .pageturn .prev {
    padding: 12px 0 12px 20px;
  }
}
.pageturn .prev:after {
  border-bottom: 2px solid #bf9f70;
  border-left: 2px solid #bf9f70;
  background-size: 14px 14px;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 8px;
  height: 8px;

  content: "";
  -webkit-transform: translateY(-45%) rotate(45deg);
          transform: translateY(-45%) rotate(45deg);
}
.pageturn .next {
  font-size: 20px;
  font-weight: 500;
  color: #bf9f70;

  position: relative;
  z-index: 1;

  display: inline-block;

  padding: 18px 20px 18px 0;
}
@media only screen and (max-width: 767px) {
  .pageturn .next {
    padding: 12px 20px 12px 0;
  }
}
.pageturn .next:after {
  border-top: 2px solid #bf9f70;
  border-right: 2px solid #bf9f70;
  background-size: 14px 14px;

  position: absolute;
  top: 50%;
  right: 0;

  display: block;

  width: 8px;
  height: 8px;

  content: "";
  -webkit-transform: translateY(-55%) rotate(45deg);
          transform: translateY(-55%) rotate(45deg);
}
.pageturn .button {
  position: absolute;
  left: 50%;

  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .pageturn .button {
    bottom: 50px;

    width: 20em;
  }
  .pageturn .button.return a {
    font-size: 20px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  width: 100%;
}
.header.is_blur {
  background: rgba(255, 255, 255, 0.6);

  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
@media only screen and (max-width: 1079px) {
  .header {
    padding: 15px 5%;
    height: 70px;
  }
}
.header__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto;
  max-width: 1200px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media only screen and (max-width: 1079px) {
  .header__wrap {
    -webkit-align-items: start;
            align-items: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
  }
}
.header__logo {
  margin-right: 5%;
}
.header__logo img {
  display: block;

  height: 26px;
}
.header__logo svg {
  display: block;

  fill: #333a56;
}
.header__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-flex: 1;
  -webkit-box-pack: start;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  -ms-flex-pack: start;
  -ms-flex-positive: 1;
  -webkit-justify-content: start;
          justify-content: start;
}
.header.inversion {
  background: initial;

  -webkit-backdrop-filter: initial;
          backdrop-filter: initial;
}
.header.inversion.is_blur {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.header.inversion .header__logo svg {
  fill: #fff;
}
.header.inversion .header__navigation a {
  color: #fff;
}
.header__open {
  border-radius: 50%;
  background-color: #333a56;

  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;

  display: none;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 1079px) {
  .header__open {
    display: block;
  }
}
.header__open a {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  width: 100%;
  height: 100%;

  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-box-align: end;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-align: end;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  gap: 4px;
  -webkit-justify-content: center;
          justify-content: center;
}
.header__open a span {
  background-color: #fff;

  font-size: 0;
  line-height: 0;

  display: block;

  width: 75%;
  height: 1px;
}
.header__open a span:first-child {
  width: 100%;
}
.header__open a span:last-child {
  width: 50%;
}
.header.inversion .header__open {
  background-color: #fff;
}
.header.inversion .header__open a span {
  background-color: #000;
}
.header.inversion.open .header__open a span {
  background-color: #fff;
}
.header__close {
  border: none;
  background: none;

  display: none;
}
.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  gap: 2vw;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.header__menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 30px;
}
.header__menu ul li {
  font-size: 14px;
  font-weight: 500;
}
@media all and (max-width: 1440px) {
  .header__menu ul li {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .header__menu ul li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .header__menu ul li {
    font-size: max( 3.7333333333vw , 12px);
  }
}
@media only screen and (max-width: 1079px) {
  .header__menu {
    display: none;
  }
}
.header__menu--sp {
  display: none;
}
.header__entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  white-space: nowrap;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  gap: 10px;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media only screen and (max-width: 1079px) {
  .header__entry {
    display: none;
  }
}
.header__entry li {
  width: 200px;
}
.header__entry li a {
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .header__entry li {
    width: 150px;
  }
  .header__entry li a {
    font-size: 12px;

    padding: 10px;
  }
}
.header.open .header__menu--sp {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;

  display: block;

  padding: 0;
  width: 100vw;
  height: 100vh;

  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.header.open .header__menu--sp ul.menu-list {
  margin: 80px 5% 2em 5%;
}
.header.open .header__menu--sp ul.menu-list li {
  border-bottom: 1px solid #999daa;
}
.header.open .header__menu--sp ul.menu-list li a {
  color: #fff;

  display: block;

  padding: 1em 0;
}
.header.open .header__menu--spwrap {
  background: rgba(51, 58, 86, 0.6);

  position: relative;

  overflow: hidden;

  width: 100vw;
  height: 100vh;
}
.header.open .header__menu--spblock {
  background: #333a56;

  position: absolute;
  top: 0;
  left: 0;

  overflow-y: scroll;

  margin-left: 100vw;
  width: 80vw;
  height: 100vh;

  -webkit-transition: 0.3s;
          transition: 0.3s;
}
.header.open .header__menu--spblock.action {
  margin-left: 20vw;
}
.header.open .header__open {
  border-radius: 50%;
  background-color: #fff;

  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 105;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  padding: 5px;
  width: 50px;
  height: 50px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.header.open .header__open span {
  background-color: #fff;

  position: relative;

  display: block;

  width: 20px;
  height: 20px;
}
.header.open .header__open span::before {
  background: #333a56;

  position: absolute;
  top: 80%;
  left: 40%;

  display: block;

  width: 100%;
  height: 2px;

  content: "";
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
}
.header.open .header__open span::after {
  background: #333a56;

  position: absolute;
  bottom: 80%;
  left: 40%;

  display: block;

  width: 100%;
  height: 2px;

  content: "";
  -webkit-transform: rotate(-45deg) translateX(-50%);
          transform: rotate(-45deg) translateX(-50%);
}
.header.open .header__open span:first-child, .header.open .header__open span:last-child {
  display: none;
}
.header.open .header__entry--sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  padding: 0 5%;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  gap: 15px;
}
.header.open .header__entry--sp a, .header.open .header__entry--sp button {
  padding: 1em 10px 1em 10px;
  width: 100%;
}
.header.open .header__entry--sp a::after, .header.open .header__entry--sp button::after {
  display: none;
}
.header__category {
  background-color: #f1f5f6;

  overflow: hidden;

  padding: 140px 5% 50px 5%;
}
.header__category--wrap {
  position: relative;
  z-index: 1;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  margin: 0 auto;
  max-width: 1200px;
  width: 100%;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
}
.header__category--bg {
  position: absolute;
  top: 0;
  left: 40%;
}
.header__category h1 {
  font-family: nimbus-roman, serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.3;

  margin: 0;
}
.header__category h1 span {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 500;

  display: block;
}
.header__category--title {
  text-align: left;
}
.header__category--caption {
  font-size: 16px;

  margin-top: 1.5em;
  max-width: 30em;

  text-align: left;
}
.header__category--cta {
  text-align: center;
}
.header__category--cta p {
  font-size: 16px;

  padding-top: 0;
}
.header__category.categorytop {
  background: url("../image/bg_fv_base01.png") left top/cover no-repeat #fafafa;
  background-repeat: no-repeat;
  background-size: cover;

  color: #fff;

  position: relative;

  padding: 120px 5% 100px 5%;
  min-height: 460px;
}
.header__category.categorytop::after {
  background: url("../image/bg_fv_shadow.png") left bottom repeat-x;

  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;

  display: block;

  width: 100%;
  height: 100%;

  content: "";
}
.body-wrap.white .header__category.categorytop::after {
  background: url("../image/bg_fv_shadow_w_pc.png") left bottom repeat-x;
}
@media only screen and (max-width: 1079px) {
  .header__category--wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
  .header__category--bg {
    top: 0;
    left: 10%;

    width: 100%;
  }
  .header__category h1 {
    font-size: 36px;
  }
  .header__category--title {
    width: 100%;
  }
  .header__category--caption {
    margin-top: 60px;
    padding-bottom: 2em;
    max-width: initial;
  }
  .header__category--cta {
    margin-top: 1em;
    width: 100%;
  }
  .header__category--cta .nav__cta {
            flex-direction: column;

    margin: 0;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
  .header__category--cta .nav__cta li {
    width: 100%;
  }
  .header__category--cta .nav__cta a, .header__category--cta .nav__cta button {
    width: 100%;
  }
  .header__category--cta p {
    font-size: 0.8em;

    padding-top: 1em;

    text-align: center;
  }
  .header__category.categorytop {
    background-size: auto;

    padding: 100px 5% 50px 5%;
    min-height: initial;
  }
  .header__category.categorytop::after {
    background: url("../image/bg_fv_shadow_sp.png") left bottom repeat-x;

    bottom: 0;
  }
  .body-wrap.white .header__category.categorytop::after {
    background: url("../image/bg_fv_shadow_w_sp.png") left bottom repeat-x;

    bottom: 0;
  }
}

.headersimple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
}
.headersimple__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto;
  max-width: 1200px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.headersimple__logo {
  margin-right: 40px;
}
@media only screen and (max-width: 767px) {
  .headersimple__logo {
    margin-right: 30px;
  }
}
.headersimple__logo img {
  height: 26px;
}
.headersimple__logo svg {
  display: block;

  fill: #333a56;
}

.first-view {
  background-color: #f7f6f4;

  position: relative;

  overflow: hidden;

  padding: 122px 40px 52px 40px;
}
.first-view__bg {
  position: absolute;
  top: 0;
  right: 0;

  display: none;

  width: 1200px;
  height: 793px;

  text-align: right;
}
.first-view__bg--wrap {
  position: relative;
}
.first-view__bg--wrap::before {
  background: url("../image/bg_texture.png") no-repeat center top;
  background-size: contain;

  position: absolute;
  top: 0;
  right: 0;

  display: none;

  width: 100%;
  height: 100%;

  content: "";
}
.first-view__bg.lower-layer {
  display: block;
}
.first-view__bg.lower-layer .first-view__bg--wrap::before {
  display: block;
}
.first-view__bg.lower-layer .first-view__bg--photo {
  mix-blend-mode: overlay;
}
.first-view__bg.top-layer {
  right: 50%;

  display: block;

  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.first-view__bg.close {
  display: block;
}
@media only screen and (max-width: 767px) {
  .first-view__bg {
    width: 100%;
    height: auto;
  }
  .first-view__bg--wrap::before {
    display: none;
  }
  .first-view__bg--photo {
    mix-blend-mode: normal;
  }
}
.first-view::after {
  background: url("../image/bg_fv_shadow.png") repeat-x center bottom;

  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;

  display: block;

  width: 100%;
  height: 200px;

  content: "";
}
@media only screen and (max-width: 767px) {
  .first-view {
    padding: 82px 5% 52px 5%;
  }
  .first-view::before, .first-view::after {
    display: none;
  }
}
.first-view__wrap {
  position: relative;
  z-index: 2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto;
  max-width: 1200px;
  width: 100%;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .first-view__wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
.first-view__main {
  margin-top: -60px;
  padding: 0 0 40px 0;
  max-width: calc(100% - 400px);

  text-align: left;
}
@media only screen and (max-width: 767px) {
  .first-view__main {
    margin-top: 0;
    padding: 0;
    max-width: 100%;
  }
}
.first-view__main--catchphrase {
  text-shadow: 0 1px 3px rgba(247, 246, 244, 0.8);

  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #bf9f70;

  display: inline;
}
@media all and (max-width: 1440px) {
  .first-view__main--catchphrase {
    font-size: max( 1.3888888889vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .first-view__main--catchphrase {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .first-view__main--catchphrase {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.first-view__main .lv_h1 {
  text-shadow: 1px 1px 10px #fff;

  font-family: "Zen Old Mincho", serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;

  margin: 20px 0;
}
@media all and (max-width: 1440px) {
  .first-view__main .lv_h1 {
    font-size: max( 3.4722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .first-view__main .lv_h1 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .first-view__main .lv_h1 {
    font-size: max( 6.9333333333vw , 12px);
  }
}
.first-view__main--subtext {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .first-view__main--subtext {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .first-view__main--subtext {
    font-size: max( 4.8vw , 12px);
  }
}
.first-view__main--point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 30px 0;

  gap: 8px;
}
@media only screen and (max-width: 880px) {
  .first-view__main--point {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
.first-view__main--point li {
  border: 1px solid #ccced5;
  border-radius: 2px;
  background-color: #fff;

  font-size: 18px;
  font-weight: 500;
  color: #333a56;

  position: relative;

  padding: 10px 20px 10px 60px;
}
@media all and (max-width: 1440px) {
  .first-view__main--point li {
    font-size: max( 1.25vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .first-view__main--point li {
    font-size: 16px;

    padding: 5px 20px 5px 60px;
  }
}
@media only screen and (max-width: 375px) {
  .first-view__main--point li {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.first-view__main--point li::before {
  border-radius: 50%;
  background-color: #bf9f70;

  position: absolute;
  top: 50%;
  left: 16px;

  display: block;

  width: 31px;
  height: 31px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.first-view__main--point li::after {
  background: url("../image/icon_check_white.svg") no-repeat 0 0;
  background-size: cover;

  position: absolute;
  top: 50%;
  left: 24px;

  display: block;

  width: 16px;
  height: 11px;

  content: "";
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.first-view__main--keyword {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .first-view__main--keyword {
    gap: 5px;
  }
}
.first-view__main--keyword span {
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  background: #fff;

  font-size: 12px;
  line-height: 1.2;
  color: #666;

  display: inline-block;

  padding: 5px 10px;
}
@media only screen and (max-width: 767px) {
  .first-view__main--keyword span {
    padding: 5px 8px;
  }
}
.first-view__main--banner p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 30px;

  gap: 4px;
}
.first-view__main--banner p img {
  max-height: 64px;
}
@media only screen and (max-width: 767px) {
  .first-view__main--banner p {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .first-view__main--banner p img {
    max-height: 10.3vw;
  }
}
.first-view__main--achieve {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 30px;

  -webkit-box-pack: start;
  -ms-flex-pack: start;
  gap: 16px;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .first-view__main--achieve {
    max-width: initial;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
}
.first-view__main--achieve p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .first-view__main--achieve p {
    width: 50%;
  }
}
.first-view__main--achieve p img {
  max-height: 64px;
}
.first-view__main--achieve .achieve-frame {
  font-family: "Zen Old Mincho", serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;

  position: relative;

          flex-direction: column;

  padding: 0 5% 0 5%;
  width: auto;

  text-align: center;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
}
@media all and (max-width: 1440px) {
  .first-view__main--achieve .achieve-frame {
    font-size: max( 0.8333333333vw, 12px );
  }
}
.first-view__main--achieve .achieve-frame::before {
  background: url(../image/img_awardframe_l.svg) no-repeat center center;
  background-size: cover;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  height: 100%;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);

  aspect-ratio: 4/11;
}
.first-view__main--achieve .achieve-frame::after {
  background: url(../image/img_awardframe_r.svg) no-repeat center center;
  background-size: cover;

  position: absolute;
  top: 50%;
  right: 0;

  display: block;

  height: 100%;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);

  aspect-ratio: 4/11;
}
.first-view__main--achieve .achieve-frame .title {
  font-size: 15px;
}
@media all and (max-width: 1440px) {
  .first-view__main--achieve .achieve-frame .title {
    font-size: max( 1.0416666667vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .first-view__main--achieve .achieve-frame .title {
    font-size: 8px;
  }
}
@media only screen and (max-width: 900px) {
  .first-view__main--achieve .achieve-frame .title::after {
    content: "\a";
    white-space: pre;
  }
}
@media only screen and (max-width: 375px) {
  .first-view__main--achieve .achieve-frame .title {
    font-size: max( 2.1333333333vw , 12px);
  }
}
.first-view__main--achieve .achieve-frame .score {
  font-size: 20px;
  font-weight: 900;
}
.first-view__main--achieve .achieve-frame .score::after {
  content: "\a";
  white-space: pre;
}
@media all and (max-width: 1440px) {
  .first-view__main--achieve .achieve-frame .score {
    font-size: max( 1.3888888889vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .first-view__main--achieve .achieve-frame .score {
    font-size: 12px;
  }
}
@media only screen and (max-width: 375px) {
  .first-view__main--achieve .achieve-frame .score {
    font-size: max( 3.2vw , 12px);
  }
}
.first-view__form {
  background-color: #fff;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 20px;
  width: 340px;
  min-height: 745px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .first-view__form {
    min-height: initial;
  }
}
.first-view__form h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;

  margin: 0;
  padding: 0;
}
.first-view__form--caption {
  font-size: 14px;
  line-height: 1.4;

  margin: 1em 0;
}
.first-view__form .close {
  position: absolute;
  top: 20px;
  right: 20px;

  display: none;
}
.first-view__form .sp-link {
  display: none;
}
@media only screen and (max-width: 767px) {
  .first-view__form {
    -webkit-box-shadow: none;
            box-shadow: none;

    margin-top: 30px;
    width: 100%;
  }
  .first-view__form .form__area, .first-view__form .form__note {
    display: none;
  }
  .first-view__form .sp-link {
    display: block;
  }
}
.first-view__form.open {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;

  margin: 0;
  width: 100vw;
  height: 100vh;
}
.first-view__form.open .form__area, .first-view__form.open .form__note, .first-view__form.open .close {
  display: block;
}
.first-view__form.open .sp-form {
  display: none;
}
.first-view__form.open .sp-link {
  display: none;
}
.first-view__form .form__button {
  width: 100%;
}
.first-view__form .form__button a {
  margin-top: 10px;
}
.first-view.open {
  position: fixed;
  z-index: 200;

  width: 100vw;
  height: 100vh;
}

.price.section-base {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 58, 86, 0.9)), to(rgba(51, 58, 86, 0.9))), url(../image/bg_blueblack_gradient.png) lightgray 50%/cover no-repeat;
  background: linear-gradient(0deg, rgba(51, 58, 86, 0.9) 0%, rgba(51, 58, 86, 0.9) 100%), url(../image/bg_blueblack_gradient.png) lightgray 50%/cover no-repeat;

  color: #fff;

  margin: 0;
  padding-top: 100px;
}
.price.section-base .heading--read {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .price.section-base .heading--read {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .price.section-base .heading--read {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.price__detail {
  color: #bf9f70;

  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto 30px auto;
  max-width: 870px;

  text-align: center;

  gap: 4%;
}
.price__detail::after {
  border-radius: 50%;
  background: url(../image/icon_plus_gold.svg) no-repeat center center #fff;
  background-size: cover;

  position: absolute;
  top: 50%;
  left: 50%;

  display: block;

  width: 64px;
  height: 64px;

  content: "";
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.price__detail h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 500;
}
@media all and (max-width: 1440px) {
  .price__detail h3 {
    font-size: max( 1.6666666667vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .price__detail h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .price__detail h3 {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.price__detail p {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .price__detail p {
    font-size: 14px;
    line-height: 1.4;

    margin-top: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .price__detail p {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.price__initial {
  border: solid 4px #bf9f70;
  border-radius: 2px;

  padding: 30px;
  width: 48%;
}
.price__month {
  border: solid 4px #bf9f70;
  border-radius: 2px;

  padding: 30px;
  width: 48%;
}
.price__list {
  margin: 50px auto 50px auto;
  max-width: 1028px;
}
@media only screen and (max-width: 767px) {
  .price.section-base {
    padding-top: 50px;
  }
  .price__detail {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 20px;
  }
  .price__detail h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .price__detail h3 {
    font-size: max( 5.3333333333vw , 12px);
  }
}
@media only screen and (max-width: 767px) {
  .price__initial {
    font-size: 14px;

    padding: 30px 10px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .price__initial {
    font-size: max( 3.7333333333vw , 12px);
  }
}
@media only screen and (max-width: 767px) {
  .price__month {
    font-size: 14px;

    padding: 30px 10px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .price__month {
    font-size: max( 3.7333333333vw , 12px);
  }
}
@media only screen and (max-width: 767px) {
  .price__list {
    margin: 20px auto 20px auto;
  }
}
.price.red .price__detail::after {
  background: url(../image/img_plus_red.svg) no-repeat;
  background-size: cover;
}

.customers__list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px 0.68%;
}
.customers__list ul li {
  width: 11.9%;
}
.customers__list ul li img {
  border-radius: 2px;

  width: 100%;
}
@media only screen and (max-width: 767px) {
  .customers__list ul {
    gap: 8px 2.6%;
  }
  .customers__list ul li {
    width: 23%;
  }
}
.customers .link_g {
  margin: 20px 0 50px 0;

  text-align: right;
}
.customers .link_g a {
  font-weight: 500;
  color: #bf9f70;

  position: relative;

  display: inline-block;
}
.customers .link_g a::after {
  background: url(../image/icon_arrow_gold.svg) no-repeat center center;

  display: inline-block;

  margin-left: 1em;
  width: 15px;
  height: 12px;

  content: "";
}
@media only screen and (max-width: 767px) {
  .customers .link_g {
    margin: 20px 0 30px 0;

    text-align: center;
  }
}
.customers .col3__item--content {
  background-color: #fff;

  padding: 20px;
}

.event {
  /*.col3__item--linkbutton--col2{
      margin-top: 10px;
  }*/
}
.event__schedule {
  font-size: 12px;
  line-height: 1.6;

  padding-left: 3em;

  text-indent: -3em;
}
.event .col3__item--tags {
  margin-top: 1em;

  gap: 5px;
}
.event-seminar__wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 5% 50px 5%;
  width: 100%;
}
.event-seminar__wrap > h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 30px;
  font-weight: 500;

  padding-top: 50px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .event-seminar__wrap > h2 {
    padding-top: 50px;
  }
}
.event-seminar__wrap.past {
  padding-top: 0;
}
.event-seminar__list {
  margin: 0 auto;
  max-width: 1200px;
}
.event-seminar__list--wrap {
  padding: 50px 0;
}
.event-seminar__schedule, .event-seminar__place {
  font-size: 14px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}
.event-seminar__schedule .head, .event-seminar__place .head {
  color: #999daa;

  width: 3em;
}
.event-seminar__schedule .item, .event-seminar__place .item {
  color: #333a56;

  width: calc(100% - 3em);
}
.event-seminar .col3__item--title {
  position: relative;

  padding-top: 10px;
}
.event-seminar .col3__item--title .label {
  background: rgb(68, 130, 128);

  font-size: 14px;
  font-weight: 500;
  color: #fff;

  position: absolute;
  top: -40px;
  left: 0;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 20px;
  width: 6.3em;

  text-align: center;
}
.event-seminar .col3__item--title .label.past {
  background: #999daa;
}
.event-seminar .col3__item--title .label.full {
  background: #999daa;
}
.event-seminar .col3__item--tags {
  margin-top: 1em;
}
.event-seminar .col3__item--linkbutton--col2 {
  border-top: 1px solid #ccced5;

  margin: 0 20px;
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .event-seminar .col3__item--linkbutton--col2 {
    margin: 0 24px;
    padding: 24px 0;
  }
}
.event-seminar .col3__item--linkbutton--col2 li:first-child a {
  border: 1px solid #333a56;
  background-color: #fff;

  color: #333a56;
}
.event-seminar .col3__item--linkbutton--col2 li:last-child a {
  border: 1px solid #333a56;
  background-color: #333a56;
}
.event-seminar .col3__item--linkbutton--col2 li:last-child span {
  border: 1px solid #999daa;
  background-color: #999daa;

  color: #fff;
}
.event-seminar .other-seminar {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .event-seminar .other-seminar {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .event-detail__title {
    padding: 0 5%;
  }
}
.event-detail__title .label {
  background: rgb(68, 130, 128);

  font-size: 14px;
  font-weight: 500;
  color: #fff;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  padding: 3px 20px;
  width: 6.3em;

  text-align: center;
}
.event-detail__title .label.past {
  background: #999daa;
}
.event-detail__title .label.full {
  background: #999daa;
}
.event-detail__title h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  line-height: 1.4;
}
@media all and (max-width: 1440px) {
  .event-detail__title h1 {
    font-size: max( 2.6388888889vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .event-detail__title h1 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .event-detail__title h1 {
    font-size: max( 6.4vw , 12px);
  }
}
.event-detail__title--image {
  margin: 30px 0;
}
.event-detail__title--category {
  border: 1px solid #ccced5;

  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  color: #999daa;

  display: inline-block;

  margin-top: 50px;
  padding: 5px;
}
@media all and (max-width: 1440px) {
  .event-detail__title--category {
    font-size: max( 0.8333333333vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .event-detail__title--category {
    font-size: 12px;
  }
}
@media only screen and (max-width: 375px) {
  .event-detail__title--category {
    font-size: max( 3.2vw , 12px);
  }
}
.event-detail__schedule {
  font-size: 14px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 1em;
}
@media only screen and (max-width: 767px) {
  .event-detail__schedule {
    padding: 0 5%;
  }
}
.event-detail__schedule .head {
  font-size: 20px;
  font-weight: 500;
  color: #333a56;

  width: 4em;
}
.event-detail__schedule .head::after {
  content: "：";
}
.event-detail__schedule .item {
  font-size: 20px;
  font-weight: 500;
  color: #333a56;

  width: calc(100% - 4em);
}
.event-detail__schedule .past {
  background: #d9d9d9;

  font-weight: 400;
  color: #000;

  padding: 0 5px;
}
.event-detail__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 1em;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px;
}
@media only screen and (max-width: 767px) {
  .event-detail__tags {
    padding: 0 5%;
  }
}
.event-detail__tags a, .event-detail__tags span {
  border: 1px solid #ccced5;
  border-radius: 2px;
  background-color: #fff;

  font-size: 12px;
  line-height: 1;
  color: #333a56;

  display: block;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 10px;
}
.event-detail__lead {
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  .event-detail__lead {
    padding: 10px 5% 30px 5%;
  }
}
.event-detail__lead ul {
  margin-top: 1em;
  margin-left: 1.5em;
}
.event-detail__lead ul li {
  list-style: disc;
}
.event-detail__lead p {
  padding-top: 1em;
}
.event-detail__lineup {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .event-detail__lineup {
    padding: 0 5% 20px 5%;
  }
}
.event-detail__lineup h2 {
  font-weight: 500;

  margin-bottom: 0.5em;
}
.event-detail__form {
  background-color: #fff;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);

  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .event-detail__form {
    padding: 50px 20px;
  }
}
.event-detail__form h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;

  text-align: center;
}
.event-detail__form--free {
  font-size: 20px;
  font-weight: 500;

  text-align: center;
}
.event-detail__form--caption {
  font-size: 14px;
  line-height: 1.4;
  color: #878080;

  margin: 1em 0;

  text-align: center;
}
.event-detail__form--status {
  margin: 1em 0;
}
.event-detail__form--status h4 {
  font-size: 13px;
  font-weight: 500;
  color: #333a56;
}
.event-detail__form--status .label {
  background: rgb(68, 130, 128);

  font-size: 14px;
  font-weight: 500;
  color: #fff;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 20px;
  width: 6.3em;

  text-align: center;
}
.event-detail__form--status .label.past {
  background: #999daa;
}
.event-detail__form--status .label.full {
  background: #999daa;
}
.event-detail__form--date {
  font-weight: 500;
  color: #333a56;
}
@media only screen and (max-width: 767px) {
  .event-detail .col2-content__right {
    padding: 0;
  }
  .event-detail .col2-content__right .event-detail__form {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.event-detail .cv__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  text-align: left;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .event-detail .cv__wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
.event-detail .cv__wrap--text h2 {
  font-size: 20px;

  margin-bottom: 0.5em;
}
@media all and (max-width: 1440px) {
  .event-detail .cv__wrap--text h2 {
    font-size: max( 1.3888888889vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .event-detail .cv__wrap--text h2 {
    font-size: 18px;

    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .event-detail .cv__wrap--text h2 {
    font-size: max( 4.8vw , 12px);
  }
}
.event-detail .cv__wrap--text p {
  font-size: 14px;
}
@media all and (max-width: 1440px) {
  .event-detail .cv__wrap--text p {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .event-detail .cv__wrap--text p {
    font-size: 14px;

    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .event-detail .cv__wrap--text p {
    font-size: max( 3.7333333333vw , 12px);
  }
}
@media only screen and (max-width: 767px) {
  .event-detail .cv__wrap .button-small {
    margin-top: 30px;
    width: 100%;
  }
  .event-detail .cv__wrap .button-small a {
    font-size: 17px;

    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .event-detail .cv__wrap .button-small a {
    font-size: max( 4.5333333333vw , 12px);
  }
}
.event-detail .article {
  padding: 30px 0;
}
@media only screen and (max-width: 767px) {
  .event-detail .article {
    padding: 30px 5% 30px 5%;
  }
}
.event-detail .article__content {
  background-color: inherit;

  padding: 0;
}
.event-detail .article__content h2 {
  border-bottom: none;

  padding-bottom: 0;
}
.event-detail .article__content ol li, .event-detail .article__content ul li {
  font-size: 14px;
}
.event-detail .article__content * + p {
  margin-top: 1em;
}
.event-detail .article__content--speaker {
  border: 1px solid #ccced5;

  margin-top: 20px;
  padding: 20px;
}
.event-detail .article__content--speaker h3 {
  font-family: "Noto Sans JP", serif;
  font-size: 20px;

  margin: 0;
}
.event-detail .article__content--speaker .title {
  font-size: 14px;
}
.event-detail .article__content--time {
  font-size: 20px;
  font-weight: 500;
}
.event-detail .article__content--program {
  border-top: 1px solid #ccced5;
  border-bottom: 1px solid #ccced5;

  font-size: 14px;

  margin: 0.5em 0 0 0;
  padding: 1.5em 0 1.5em 1em;
}
.event-detail .article__content .note {
  font-size: 14px;
}
.event-detail .article__content + .button {
  margin-top: 40px;
}
.event .section-base__wrap .col3__item--title {
  position: relative;

  padding-top: 10px;
}
.event .section-base__wrap .col3__item--title .label {
  background: rgb(68, 130, 128);

  font-size: 14px;
  font-weight: 500;
  color: #fff;

  position: absolute;
  top: -30px;
  left: 0;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 20px;
  width: 6.3em;

  text-align: center;
}
.event .section-base__wrap .col3__item--title .label.past {
  background: #999daa;
}
.event .section-base__wrap .col3__item--title .label.full {
  background: #999daa;
}
.event .section-base__wrap .col3__item--title .text {
  display: block;
}
.event .section-base__wrap .col3__item--linkbutton--col2 {
  margin: 0 15px;
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .event .section-base__wrap .col3__item--linkbutton--col2 {
    margin: 0 24px;
    padding: 24px 0;
  }
}

.col3__item--title + .event-seminar__schedule {
  margin-top: 1em;
}

.news {
  margin-top: 18px;
}
.news__navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto;
  max-width: 800px;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 10px;
  -webkit-justify-content: center;
          justify-content: center;
}
.news__navi a {
  border-radius: 30px;
  background-color: #f1f5f6;

  font-size: 14px;
  color: #222;

  display: inline-block;

  padding: 10px 20px;
}
.news__navi a.current {
  background-color: #212121;

  color: #fff;
}
@media only screen and (max-width: 767px) {
  .news__navi {
    overflow-x: scroll;

    max-width: initial;

    white-space: nowrap;

    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    -webkit-justify-content: initial;
            justify-content: initial;
  }
}
.news__list {
  border-top: 1px solid #ccced5;

  margin: 40px auto 0 auto;
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  .news__list {
    width: 90%;
  }
}
.news__item {
  border-bottom: 1px solid #ccced5;

  padding: 30px 0 30px 0;
}
.news__item--label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-align-items: first baseline;
          align-items: first baseline;
  -webkit-box-align: first baseline;
  -ms-flex-align: first baseline;
  gap: 20px;
}
.news__item--date {
  font-size: 16px;
  color: #333a56;

  display: inline-block;
}
.news__item--category {
  border: 1px solid #ccced5;

  line-height: 1.4;
  color: #333a56;

  display: inline-block;

  margin-bottom: 14px;
  padding: 0 5px;
}
.news__item--headline {
  font-weight: 500;

  position: relative;

  display: -webkit-box;
  overflow: hidden;

  padding-right: 60px;

  text-overflow: ellipsis;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news__item--headline::after {
  background: url("../image/icon_arrow_black.svg") no-repeat 0 0;

  position: absolute;
  top: 0;
  right: 0;

  display: block;

  width: 20px;
  height: 20px;

  content: "";
}
.news__sorter {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 0 30px 0;
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  .news__sorter {
    width: 100%;
  }
}
.news__sorter h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;

  padding-bottom: 40px;

  text-align: center;
}
.news__sorter ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto;
  max-width: 1200px;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 10px;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .news__sorter ul {
    padding: 0 5%;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: start;
            justify-content: start;
  }
}
.news__sorter ul label {
  display: inline-block;
}
.news__sorter ul label span {
  border: 1px solid #999daa;
  border-radius: 30px;
  background: #f5f5f7;

  font-size: 14px;
  font-weight: 500;
  color: #999daa;

  display: inline-block;

  padding: 5px 20px;

  white-space: nowrap;
}
@media all and (max-width: 1440px) {
  .news__sorter ul label span {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .news__sorter ul label span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .news__sorter ul label span {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.news__sorter ul label input {
  display: none;
}
.news__sorter ul label input:checked + span {
  border: 1px solid #333a56;
  background-color: #333a56;

  color: #fff;
}
.news__sorter ul a {
  border: 1px solid #999daa;
  border-radius: 30px;
  background: #f5f5f7;

  font-size: 14px;
  font-weight: 500;
  color: #999daa;

  display: inline-block;

  padding: 5px 20px;

  white-space: nowrap;
}
@media all and (max-width: 1440px) {
  .news__sorter ul a {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .news__sorter ul a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .news__sorter ul a {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.news__sorter ul a.current {
  border: 1px solid #333a56;
  background-color: #333a56;

  color: #fff;
}
.news.news-page .news__list {
  border-top: none;

  margin: 10px auto 100px auto;
}
.news.news-page .news__item {
  padding: 20px 0 20px 0;
}
.news.news-page .news__item--label {
  font-size: 12px;
}
.news.news-page .news__item--headline::after {
  background: url("../image/icon_arrow_gold_s.svg") no-repeat 0 0;

  top: 10px;
  right: 0;

  width: 15px;
  height: 14px;
}
@media only screen and (max-width: 767px) {
  .news-detail__title {
    padding: 0 5%;
  }
}
.news-detail__title h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 38px;
  line-height: 1.4;
}
@media all and (max-width: 1440px) {
  .news-detail__title h1 {
    font-size: max( 2.6388888889vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .news-detail__title h1 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .news-detail__title h1 {
    font-size: max( 6.4vw , 12px);
  }
}
.news-detail__title--label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 30px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.news-detail__title--category {
  border: 1px solid #ccced5;

  font-size: 14px;
  color: #999daa;

  display: inline-block;

  padding: 5px 10px;
}
.news-detail__title--date {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #999daa;

  display: inline-block;

  padding: 5px 10px;
}
@media all and (max-width: 1440px) {
  .news-detail__title--date {
    font-size: max( 0.8333333333vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .news-detail__title--date {
    font-size: 12px;
  }
}
@media only screen and (max-width: 375px) {
  .news-detail__title--date {
    font-size: max( 3.2vw , 12px);
  }
}
.news-detail__image {
  margin-top: 30px;
}
.news-detail__lead {
  padding: 30px 0 50px 0;
}
@media only screen and (max-width: 767px) {
  .news-detail__lead {
    padding: 10px 5% 30px 5%;
  }
}
.news-detail__lead p {
  padding-top: 1em;
}
.news-detail .cv__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  text-align: left;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .news-detail .cv__wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
.news-detail .cv__wrap--text h2 {
  font-size: 20px;

  padding-bottom: 0.5em;
}
@media all and (max-width: 1440px) {
  .news-detail .cv__wrap--text h2 {
    font-size: max( 1.3888888889vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .news-detail .cv__wrap--text h2 {
    font-size: 18px;

    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .news-detail .cv__wrap--text h2 {
    font-size: max( 4.8vw , 12px);
  }
}
.news-detail .cv__wrap--text p {
  font-size: 14px;
}
@media all and (max-width: 1440px) {
  .news-detail .cv__wrap--text p {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .news-detail .cv__wrap--text p {
    font-size: 14px;

    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .news-detail .cv__wrap--text p {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.news-detail .cv__wrap .button-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  gap: 10px;
}
.news-detail .cv__wrap .button-small a {
  display: block;

  padding: 10px 20px;
}
@media only screen and (max-width: 767px) {
  .news-detail .cv__wrap .button-small {
    margin-top: 10px;
    width: 100%;
  }
  .news-detail .cv__wrap .button-small a {
    font-size: 17px;

    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .news-detail .cv__wrap .button-small a {
    font-size: max( 4.5333333333vw , 12px);
  }
}
.news-detail .article {
  padding: 50px 0 50px 0;
}
.news-detail .article h2 {
  border-bottom: none;

  padding-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .news-detail .article {
    padding: 30px 5% 30px 5%;
  }
}
.news-detail .article__content {
  background-color: inherit;

  padding: 0;
}
.news + section {
  margin-top: 100px;
}

.faq {
  background: url("../image/bg_left.png") no-repeat;
  background-position: left 0 top 60%;
}
.faq.top {
  background: #fff;
}
.faq__list {
  border-top: 1px solid #dcdcdc;

  margin: 0 auto;
  max-width: 1028px;
}
.faq__item {
  border-bottom: 1px solid #dcdcdc;

  position: relative;

  padding: 30px 0 30px 0;
}
.faq__item::before {
  background-image: url("../image/icon_faq_q.svg");

  position: absolute;
  top: 40px;
  left: 0;

  width: 32px;
  height: 32px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq__item--q {
  font-weight: 500;

  position: relative;

  padding-left: 3em;

  cursor: pointer;
}
.faq__item--q::before {
  background: #bf9f70;

  position: absolute;
  top: 10px;
  right: 0;
  z-index: 0;

  display: block;

  width: 12px;
  height: 2px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq__item--q::after {
  background: #bf9f70;

  position: absolute;
  top: 10px;
  right: 5px;

  display: block;

  width: 2px;
  height: 12px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq__item--q.open::after {
  display: none;
}
.faq__item--a {
  position: relative;

  display: none;

  padding-top: 1.5em;
  padding-left: 3em;
}
.faq__item--a::before {
  background-image: url("../image/icon_faq_a.svg");

  position: absolute;
  top: 2.6em;
  left: 0;

  width: 32px;
  height: 32px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .faq__item {
    padding: 20px 20px 20px 0;
  }
  .faq__item::before {
    top: 30px;
  }
  .faq__item--q::before {
    right: -20px;
  }
  .faq__item--q::after {
    right: -15px;
  }
}

.article {
  padding: 190px 5% 100px 5%;
}
@media only screen and (max-width: 767px) {
  .article {
    padding: 100px 5% 100px 5%;
  }
}
.article__main {
  margin: 0 auto;
  max-width: 1028px;
}
.article__main .content_index {
  border: 1px solid #ccced5;

  display: none;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 0;
  padding: 50px 50px 30px 50px;
  width: 100%;
}
.article__main .content_index.active {
  display: block;
}
@media only screen and (max-width: 767px) {
  .article__main .content_index {
    padding: 30px 20px 10px 20px;
  }
}
.article__main .content_index__title {
  font-size: 20px;
  font-weight: 500;

  padding-bottom: 20px;
}
.article__main .content_index__list li {
  font-weight: 500;

  padding-bottom: 1.5em;
  padding-left: 0;
}
.article__main .content_index__list li::before {
  display: none;
}
.article__main .content_index__list li ol li {
  font-weight: normal;

  position: relative;

  padding-top: 0.3em;
  padding-bottom: 0;
  padding-left: 1em;
}
.article__main .content_index__list li ol li::before {
  border-radius: 50%;
  background: #222;

  position: absolute;
  top: 1.25em;
  left: 0;

  display: block;

  width: 6px;
  height: 6px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.article__main .content_index__list li ol li ol li::before {
  border-radius: initial;

  width: 10px;
  height: 2px;
}
.article__main .content_index__list li ol li ol ol li::before {
  border-radius: initial;

  width: 5px;
  height: 5px;
}
.article__main .content_index__list li ol li ol ol ol li::before {
  border: 1px solid #222;
  border-radius: initial;
  border-radius: 50%;
  background: #fff;

  width: 6px;
  height: 6px;
}
.article__main .content_index + .article__content {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .article__main .content_index + .article__content {
    margin-top: 32px;
  }
}
.article__introduction {
  padding-bottom: 30px;
}
.article__introduction--index {
  font-size: 14px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-bottom: 1em;

  -webkit-align-items: start;
          align-items: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
}
.article__introduction--index h2 {
  border: 1px solid #333a56;

  font-size: 14px;
  font-weight: 500;
  color: #333a56;

  padding: 3px 20px;
  width: 9em;

  text-align: center;
}
.article__introduction--index ul {
  width: calc(100% - 9em);
}
.article__introduction--index ul li {
  position: relative;

  padding: 0 0 0.3em 2em;
}
.article__introduction--index ul li::before {
  border-radius: 50%;
  background: #333a56;

  position: absolute;
  top: 0.95em;
  left: 1em;

  display: block;

  width: 6px;
  height: 6px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .article__introduction--index {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
  .article__introduction--index h2 {
    margin-bottom: 5px;
    padding: 8px 20px;
    width: auto;
  }
  .article__introduction--index ul {
    width: 100%;
  }
  .article__introduction--index ul li {
    padding: 0 0 0.3em 1.5em;
  }
  .article__introduction--index ul li::before {
    left: 0.5em;
  }
}
.article__introduction--remarks {
  border-top: 1px solid #333a56;

  margin-top: 20px;
  padding-top: 20px;
}
.article__content {
  background: #fff;

  line-height: 1.5;

  padding: 64px;
}
@media only screen and (max-width: 767px) {
  .article__content {
    padding: 40px 30px;
  }
}
.article__content h2, .article__content .has-large-font-size {
  border-bottom: 1px solid #333a56;

  font-family: "Zen Old Mincho", serif;
  font-size: 32px;

  padding-bottom: 1em;
}
@media all and (max-width: 1440px) {
  .article__content h2, .article__content .has-large-font-size {
    font-size: max( 2.2222222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .article__content h2, .article__content .has-large-font-size {
    font-size: 22px;
  }
}
@media only screen and (max-width: 375px) {
  .article__content h2, .article__content .has-large-font-size {
    font-size: max( 5.8666666667vw , 12px);
  }
}
.article__content h2:first-child, .article__content .has-large-font-size:first-child {
  margin-top: 0;
}
.article__content h3, .article__content .has-medium-font-size {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
}
@media all and (max-width: 1440px) {
  .article__content h3, .article__content .has-medium-font-size {
    font-size: max( 1.6666666667vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .article__content h3, .article__content .has-medium-font-size {
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .article__content h3, .article__content .has-medium-font-size {
    font-size: max( 5.3333333333vw , 12px);
  }
}
.article__content h4, .article__content .has-small-font-size {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 500;
}
@media all and (max-width: 1440px) {
  .article__content h4, .article__content .has-small-font-size {
    font-size: max( 1.25vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .article__content h4, .article__content .has-small-font-size {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .article__content h4, .article__content .has-small-font-size {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.article__content h5, .article__content .has-tiny-font-size {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
}
@media all and (max-width: 1440px) {
  .article__content h5, .article__content .has-tiny-font-size {
    font-size: max( 1.1111111111vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .article__content h5, .article__content .has-tiny-font-size {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .article__content h5, .article__content .has-tiny-font-size {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.article__content h6, .article__content .has-micro-font-size {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
}
@media all and (max-width: 1440px) {
  .article__content h6, .article__content .has-micro-font-size {
    font-size: max( 1.1111111111vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .article__content h6, .article__content .has-micro-font-size {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .article__content h6, .article__content .has-micro-font-size {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.article__content * + h2, .article__content * + h3, .article__content * + h4, .article__content * + h5, .article__content * + h6, .article__content * + figure {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .article__content * + h2, .article__content * + h3, .article__content * + h4, .article__content * + h5, .article__content * + h6, .article__content * + figure {
    margin-top: 32px;
  }
}
.article__content * + p {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .article__content * + p {
    margin-top: 16px;
  }
}
.article__content a {
  text-decoration: underline;
}
.article__content figcaption {
  font-size: 14px;
  color: #a3a3a3;

  margin-top: 0.5em;
  margin-bottom: 1em;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .article__content figcaption {
    font-size: 11px;
  }
}
.article__content figcaption a {
  color: #a3a3a3;

  text-decoration: underline;
}
.article__content .quote, .article__content blockquote.wp-block-quote {
  background-color: #fff;

  margin-top: 40px;
  padding: 2em;
}
.article__content .quote__wrap, .article__content blockquote.wp-block-quote__wrap {
  border-left: 5px double #999daa;

  padding-left: 1.5em;
}
.article__content .wp-block-group {
  margin-top: 40px;
}
.article__content .linkcard {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 40px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media only screen and (max-width: 767px) {
  .article__content .linkcard {
            flex-direction: column;

    margin-top: 30px;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
.article__content .linkcard .wp-block-group {
  margin-top: 0;
}
.article__content .linkcard__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  overflow: hidden;

  width: 25%;
  height: 100%;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .article__content .linkcard__image {
    width: 100%;
    height: auto;

    aspect-ratio: 16/9;
  }
}
@media only screen and (max-width: 767px) {
  .article__content .linkcard__image img {
    width: 100%;

    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.article__content .linkcard__content {
  padding: 10px 30px;
  width: 75%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .article__content .linkcard__content {
    padding: 10px 20px;
    width: 100%;
  }
}
.article__content .linkcard__content--title {
  font-size: 18px;
  font-weight: 500;

  display: -webkit-box;
  overflow: hidden;

  margin: 0 0 10px 0;
  max-height: 60px;
  min-height: 20px;

  text-overflow: ellipsis;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
          line-clamp: 2;
}
.article__content .linkcard__content--title a {
  color: #333a56;
}
@media only screen and (max-width: 767px) {
  .article__content .linkcard__content--title {
    max-height: 90px;

    -webkit-line-clamp: 3;
            line-clamp: 3;
  }
}
.article__content .linkcard__content--text {
  display: -webkit-box;
  overflow: hidden;

  margin: 0;
  max-height: 60px;
  min-height: 20px;

  text-overflow: ellipsis;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
          line-clamp: 2;
}
@media only screen and (max-width: 767px) {
  .article__content .linkcard__content--text {
    max-height: 90px;

    -webkit-line-clamp: 3;
            line-clamp: 3;
  }
}
.article__content--table {
  margin: 40px 0 1em 0;
}
@media only screen and (max-width: 767px) {
  .article__content--table {
    overflow-x: scroll;

    margin-top: 20px;

    white-space: nowrap;
  }
}
.article__content--table table {
  overflow: hidden;

  margin: 10px 0;
  width: 100%;

  border-spacing: unset;
  border-collapse: unset;
}
@media only screen and (max-width: 767px) {
  .article__content--table table {
    width: auto;
  }
}
.article__content--table table thead {
  border-bottom: none;
}
.article__content--table table thead th {
  border-top: none;
  border-right: 1px solid #ccced5;
  border-bottom: 1px solid #ccced5;
  border-left: none;
  background-color: #333a56;

  font-weight: 900;
  color: #fff;

  padding: 0.5em 2em;

  text-align: left;
}
.article__content--table table thead th:last-child {
  border-right: none;
}
.article__content--table table thead th.blank {
  background-color: #ccced5;
}
.article__content--table table tbody tr:first-child th, .article__content--table table tbody tr:first-child td {
  border-top: 1px solid #ccced5;
}
.article__content--table table tbody tr th, .article__content--table table tbody tr td:first-child {
  border-bottom: 1px solid #ccced5;
  border-left: 1px solid #ccced5;
  background-color: #f5f5f7;

  font-weight: 500;

  text-align: left;
}
.article__content--table table tbody tr td {
  border-top: none;
  border-right: 1px solid #ccced5;
  border-bottom: 1px solid #ccced5;

  padding: 0.5em 2em;

  text-align: left;
}
.article__content--table table thead + tbody tr:first-child th, .article__content--table table thead + tbody tr:first-child td {
  border-top: none;
}
.article__content ol {
  margin-left: 1.2em;
}
.article__content ol li {
  list-style: decimal;
}
.article__content ul li, .article__content ul.wp-block-list li {
  position: relative;

  padding-bottom: 0.5em;
  padding-left: 1.8em;
}
.article__content ul li::before, .article__content ul.wp-block-list li::before {
  border-radius: 50%;
  background: #000;

  position: absolute;
  top: 0.65em;
  left: 0.5em;

  display: block;

  width: 6px;
  height: 6px;

  content: "";
}
.article__content ul ol li, .article__content ul.wp-block-list ol li {
  padding-left: 0;
}
.article__content ul ol li::before, .article__content ul.wp-block-list ol li::before {
  display: none;
}
.article__content * + ul, .article__content * + ol {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .article__content * + ul, .article__content * + ol {
    margin-top: 16px;
  }
}
.article__content * + ul ul, .article__content * + ol ul {
  margin-top: 5px;
}
.article__content--image {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .article__content--image {
    margin-top: 20px;
  }
}
.article__content--image .image-caption {
  color: #999daa;
}
.article__content--image .image-caption p {
  font-size: 13px;

  margin-top: 0.3em;
}
@media only screen and (max-width: 767px) {
  .article__content--image .image-caption p {
    font-size: 11px;
    line-height: 1.4;
  }
}
.article__author {
  position: relative;

  margin-top: 40px;
  max-width: 815px;
}
.article__author h2 {
  font-size: 16px;
}
.article__author--detail {
  border: 1px solid #999daa;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 0.5em;
  padding: 1.5em;
}
.article__author--detail h3 {
  font-size: 20px;
  font-weight: 500;
}
.article__author--detail p {
  font-size: 16px;

  margin-top: 1em;
}

.download.section-base {
  background-color: #fafafa;

  padding: 0 5% 100px 5%;
}
@media only screen and (max-width: 1079px) {
  .download.section-base {
    padding: 50px 0 0 0;
  }
  .download .heading {
    padding: 0 5% 40px 5%;
  }
  .download.col2-content {
    padding-bottom: 0;
  }
  .download .col2-content__wrap {
    gap: 10px;
  }
  .download .col2-content__main {
    padding: 0 5%;
  }
  .download .col2-content__right {
    padding: 0;
  }
  .download .col2-content__right .close {
    display: none;
  }
  .download .col2-content__right .download__detail--form {
    -webkit-box-shadow: none;
            box-shadow: none;

    margin-top: 0;
  }
}
.download a {
  font-weight: 500;
}
.download__detail h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  line-height: 1.4;

  padding-bottom: 1em;
}
.download__detail img {
  margin-bottom: 1em;
  width: 100%;
}
.download__detail--thumbnails {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  gap: 8px;
}
.download__detail--form {
  background-color: #fff;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  padding: 20px;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
}
@media only screen and (max-width: 1079px) {
  .download__detail--form {
    border-radius: 0;

    top: 0;
    left: 0;

    overflow-y: scroll;

    margin-top: 50px;
    padding: 40px 23px;
    width: 100%;
  }
}
.download__detail--form.open {
  display: block;
}
.download__detail--form h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;

  text-align: center;
}
.download__detail--form h3 ~ p {
  font-size: 14px;
}
@media only screen and (max-width: 1079px) {
  .download__detail--form h3 {
    font-size: 1.6em;

    margin-bottom: 0.8em;
  }
}
.download__detail--form .close {
  display: none;
}
@media only screen and (max-width: 1079px) {
  .download__detail--form .close {
    position: absolute;
    top: 1.3em;
    right: 5%;

    display: block;

    padding: 0.5em;
    width: 2.5em;
    height: 2.5em;
  }
}
.download__detail--intro {
  line-height: 1.4;

  margin: 1em 0;

  text-align: center;
}
.download__detail__sp-link {
  display: none;
}
@media only screen and (max-width: 767px) {
  .download__detail__sp-link {
    border: none;
    border-radius: 4px;
    background: #ffd600;

    font-size: 1.1em;
    font-weight: 500;
    color: #222;

    position: relative;

    display: block;

    padding: 0.7em 1.25em;

    text-decoration: none;
    letter-spacing: 0;
  }
  .download__detail__sp-link::after {
    background: url("../image/icon_arrow_black_s.svg") no-repeat 0 0;
    background-size: 20px 20px;

    position: absolute;
    top: 50%;
    right: 1em;

    display: block;

    width: 20px;
    height: 20px;

    content: "";
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .download__detail h1 {
    font-size: 26px;
  }
}
.download.section-base .download__detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  gap: 6.7%;
}
.download.section-base .download__detail--text {
  width: 65%;
}
.download.section-base .download__detail--formblock {
  width: 28.3%;
}
@media only screen and (max-width: 1079px) {
  .download.section-base .download__detail {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
  .download.section-base .download__detail--text {
    padding: 0 5% 0 5%;
    width: 100%;
  }
  .download.section-base .download__detail--formblock {
    width: 100%;
  }
  .download.section-base .download__detail--form {
    -webkit-box-shadow: initial;
            box-shadow: initial;
  }
  .download.section-base .download__detail .hbspt-form fieldset {
    max-width: initial;
  }
}
.download .button {
  margin-top: 0;
  padding: 30px 5% 50px 5%;
}
@media only screen and (max-width: 767px) {
  .download .button {
    padding: 20px 0 20px 0;
  }
}
.download__subtitle {
  font-size: 16px;
  font-weight: 500;

  margin: 1.5em 0 1em 0;
}
@media only screen and (max-width: 767px) {
  .download__subtitle {
    font-size: 1em;
  }
}
.download__lead {
  font-size: 14px;
}
@media all and (max-width: 1440px) {
  .download__lead {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .download__lead {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .download__lead {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.download__other {
  font-size: 14px;

  margin-top: 30px;
}
@media all and (max-width: 1440px) {
  .download__other {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .download__other {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .download__other {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.download__other a {
  text-decoration: underline;
}

.problem {
  padding: 100px 0 0 0;
}
.problem__wrap {
  padding: 0 5%;
}
@media only screen and (max-width: 767px) {
  .problem .heading {
    padding: 0 5% 40px 5%;
  }
}
.problem .section-base__wrap {
  position: relative;

  padding-bottom: 50px;
}
.problem .section-base__wrap.nextarrow {
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .problem .section-base__wrap.nextarrow {
    padding-bottom: 30px;
  }
}
.problem .section-base__wrap.nextarrow::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f6f4), to(#476caa));
  background: linear-gradient(#f7f6f4, #476caa);

  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 10;

  display: block;

  max-width: 1000px;
  width: 83%;
  max-height: 100px;

  content: "";
  -webkit-transform: translateX(-50%) translateY(50%);
          transform: translateX(-50%) translateY(50%);

  aspect-ratio: 10/1;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media only screen and (max-width: 767px) {
  .problem .section-base__wrap.nextarrow::after {
    width: 85%;

    aspect-ratio: 40/7;
  }
}
.problem .col3__cell {
  background-color: inherit;
}
.problem .col3__item--content {
  background-color: inherit;

  padding: 15px 0 0 0;
}
.problem .col3__item--content ul li {
  position: relative;

  padding-bottom: 1em;
  padding-left: 16px;
}
.problem .col3__item--content ul li::before {
  border-radius: 50%;
  background-color: #333a56;

  position: absolute;
  top: 0.7em;
  left: 0;

  display: block;

  width: 6px;
  height: 6px;

  content: "";
}

.solution {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 58, 86, 0.9)), to(rgba(51, 58, 86, 0.9))), url(../image/bg_blueblack_gradient.png) lightgray 50%/cover no-repeat;
  background: linear-gradient(0deg, rgba(51, 58, 86, 0.9) 0%, rgba(51, 58, 86, 0.9) 100%), url(../image/bg_blueblack_gradient.png) lightgray 50%/cover no-repeat;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  padding: 100px 0;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.solution h3 {
  border-bottom: 1px solid #999daa;

  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  color: #fff;

  margin-bottom: 40px;
  padding-bottom: 10px;
}
.solution__wrap {
  background-color: #fff;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 64px 40px;
  max-width: 1248px;

  text-align: center;
}
.solution h4 {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 500;
  color: #333a56;
}
.solution p {
  padding: 2em 0 1em 0;
}
.solution img {
  max-width: 80%;
}
@media only screen and (max-width: 767px) {
  .solution {
    padding: 50px 5%;
  }
  .solution h3 {
    font-size: 22px;

    text-align: center;
  }
  .solution__wrap {
    padding: 40px 24px;
  }
  .solution h4 {
    font-size: 22px;
  }
  .solution p {
    text-align: left;
  }
  .solution img {
    max-width: 100%;
  }
}

.other {
  background: url("../image/bg_left.png") no-repeat;
  background-position: left 0 bottom 280%;
}
@media only screen and (max-width: 767px) {
  .other {
    background-position: left -40px bottom -10%;
    background-size: 100% auto;
  }
}
.other .col3__cell {
  background: inherit;
}
.other__label {
  background: #fff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  padding: 10px 20px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.other__label--title {
  font-size: 20px;
  font-weight: 500;
  color: #333a56;
}
.other__label--img {
  width: 120px;
  height: 120px;
}
.other__caption {
  font-size: 14px;
  line-height: 1.4;

  padding-top: 20px;
}

.support .col3__cell {
  background-color: inherit;
}
.support .col3__item--content {
  background-color: inherit;

  padding: 20px 0 0 0;
}
.support .col3__item--title {
  font-size: 20px;

  text-align: left;
}
.support .col3__item--detail {
  margin-top: 20px;
}

.point .col2 {
  margin: 0 auto;
  max-width: 1200px;
}
.point .col2__cell {
  -webkit-box-shadow: 0 3px 10px rgba(143, 143, 143, 0.2);
          box-shadow: 0 3px 10px rgba(143, 143, 143, 0.2);
}
.point .col2__item--content {
  position: relative;

  padding: 24px 24px;
}
.point .col2__item--content .count {
  border: 1px solid #bf9f70;

  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 1.2;
  color: #bf9f70;

  display: inline-block;
  display: inline-block;

  margin-bottom: 1em;
  padding: 5px 10px;
}
.point .col2__item--content ul li {
  position: relative;

  padding-left: 1em;
}
.point .col2__item--content ul li::before {
  border-radius: 50%;
  background: #333a56;

  position: absolute;
  top: 0.9em;
  left: 0;

  display: block;

  width: 6px;
  height: 6px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.point .col2__item--content ul * + li {
  margin-top: 0.5em;
}
.point .col2__item--title {
  font-size: 20px;

  position: relative;
  z-index: 1;

  margin: 0 0 1em 0;
}
@media all and (max-width: 1440px) {
  .point .col2__item--title {
    font-size: max( 1.8055555556vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .point .col2__item--title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 375px) {
  .point .col2__item--title {
    font-size: max( 5.8666666667vw , 12px);
  }
}
.point .other {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  margin: 50px auto 0 auto;
  max-width: 1028px;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  gap: 50px;
}
.point .other__item {
  -webkit-box-shadow: 0 3px 10px rgba(143, 143, 143, 0.2);
          box-shadow: 0 3px 10px rgba(143, 143, 143, 0.2);

  overflow: hidden;

  padding: 30px;
}
.point .other__item .count {
  border: 1px solid #bf9f70;

  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 1.2;
  color: #bf9f70;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  display: inline-block;

  margin-bottom: 20px;
  padding: 5px 10px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.point .other__item .text--title {
  font-size: 26px;

  position: relative;
  z-index: 1;

  margin-bottom: 1em;
}
@media all and (max-width: 1440px) {
  .point .other__item .text--title {
    font-size: max( 1.8055555556vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .point .other__item .text--title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 375px) {
  .point .other__item .text--title {
    font-size: max( 5.8666666667vw , 12px);
  }
}
@media all and (max-width: 1440px) {
  .point .other {
    margin: 2em auto 0 auto;

    gap: 2em;
  }
  .point .other__item {
    border-radius: 30px;

    position: relative;

    display: block;

    padding: 40px 20px 20px 20px;
  }
  .point .other__item .count {
    position: absolute;
    top: 25px;
    left: 10px;
  }
}
.point__graph {
  background: #f8f8f8;

  padding: 50px;

  text-align: center;
}
.point__graph h3 {
  font-size: 32px;
  line-height: 1.6;

  margin-bottom: 30px;
}
@media all and (max-width: 1440px) {
  .point__graph h3 {
    font-size: max( 2.2222222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .point__graph h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .point__graph h3 {
    font-size: max( 7.4666666667vw , 12px);
  }
}
.point__graph h3 span {
  background: #222;

  color: #fff;

  display: inline-block;

  margin: 0 10px;
  padding: 0 10px;
}
.point__graph p {
  font-size: 12px;

  margin-top: 30px;
}

.function .col3__item--title {
  text-align: center;
}

.works {
  background: rgb(247, 246, 244);

  padding: 190px 5% 0 5%;
}
@media only screen and (max-width: 767px) {
  .works {
    padding: 100px 0 0 0;
  }
}
.works__overview {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto;
  max-width: 1200px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  gap: 5.4%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .works__overview {
            flex-direction: column;

    padding: 0 5%;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 30px;
  }
}
.works__overview--title {
  width: 47.3%;
}
@media only screen and (max-width: 767px) {
  .works__overview--title {
    width: 100%;
  }
}
.works__overview--title h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  line-height: 1.6;

  margin-bottom: 1em;
}
@media all and (max-width: 1440px) {
  .works__overview--title h1 {
    font-size: max( 2.3611111111vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .works__overview--title h1 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .works__overview--title h1 {
    font-size: max( 6.4vw , 12px);
  }
}
.works__overview--cta {
  margin-top: 40px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .works__overview--cta {
    display: none;

    margin-top: 30px;
  }
}
.works__overview--cta .button {
  padding: 0 13%;
}
@media only screen and (max-width: 767px) {
  .works__overview--cta .button {
    padding: 0;
    width: 100%;
  }
}
.works__overview--cta .button a {
  background: #bf9f70;

  font-size: 16px;
  color: #fff;

  padding: 15px 10px;
  min-width: initial;
  width: 100%;
}
@media all and (max-width: 1440px) {
  .works__overview--cta .button a {
    font-size: max( 1.1111111111vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .works__overview--cta .button a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .works__overview--cta .button a {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.works__overview--cta .button a:after {
  display: none;
}
.works__overview--client {
  width: 47.3%;
}
.works__overview--client .works__overview--cta {
  display: none;
}
@media only screen and (max-width: 767px) {
  .works__overview--client {
    width: 100%;
  }
  .works__overview--client .works__overview--cta {
    display: block;
  }
}
.works__overview--image {
  text-align: center;
}
.works__overview--image img {
  width: 100%;
  height: auto;
}
.works__overview--name {
  font-weight: 500;
  line-height: 1.5;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 1em;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 20px;
}
.works__overview--name span img {
  width: 90px;
  height: 50px;

  -o-object-fit: cover;
     object-fit: cover;
}
.works__overview--person {
  font-size: 14px;
  line-height: 1.5;

  margin-top: 1em;
}
.works__overview--person span {
  display: inline-block;

  padding-right: 1em;
}
.works__overview--detail {
  border-top: 1px solid #424242;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 1em;
  padding-top: 1em;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5em 2em;
}
.works__overview--detail p {
  font-size: 14px;
}
@media all and (max-width: 1440px) {
  .works__overview--detail p {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .works__overview--detail p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .works__overview--detail p {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.works__overview--detail p span {
  color: #999daa;

  display: inline-block;

  padding-right: 1em;
}
@media only screen and (max-width: 767px) {
  .works + .article {
    padding: 100px 0 0 0;
  }
  .works + .article .article__introduction {
    padding-right: 5%;
    padding-left: 5%;
  }
  .works + .article .article__main .content_index {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
  }
}

.product .col3__item a:hover {
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
}
.product .col3__item--nextlink span {
  border-top: 1px solid #ccced5;

  display: block;

  padding-top: 20px;

  text-align: right;
}
.product .col3__item--title {
  font-size: 20px;
}
.product .col3__item--detail {
  font-size: 14px;
  line-height: 1.5;
}

.clients-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
}
.clients-list li {
  width: 143px;
}
@media only screen and (max-width: 767px) {
  .clients-list {
    gap: 10px 4%;
  }
  .clients-list li {
    width: 48%;
  }
}

.document {
  background-color: #fff;
}
.document .col2 {
  margin: 0 auto;
  max-width: 1200px;

  gap: 2em 3.4%;
}
.document .col2__cell {
  width: 48.3%;
}
@media only screen and (max-width: 767px) {
  .document .col2__cell {
    -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);

    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .document .col2__item--content {
    padding: 0 24px 24px 24px;
  }
}
.document .col2__item--title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #333a56;

  margin-top: 24px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .document .col2__item--title {
    text-align: left;
  }
}
.document .col2__item .button {
  margin-top: 24px;
}
.document .col2__item .button a, .document .col2__item .button span {
  background: #bf9f70;

  font-size: 16px;
  color: #fff;

  padding: 15px 40px 15px 40px;
  width: 92%;
}
.document .col2__item .button a::after, .document .col2__item .button span::after {
  display: none;
}
@media all and (max-width: 1440px) {
  .document .col2__item .button a, .document .col2__item .button span {
    font-size: max( 1.1111111111vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .document .col2__item .button a, .document .col2__item .button span {
    font-size: 16px;

    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .document .col2__item .button a, .document .col2__item .button span {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.document + .section-base .heading {
  border-top: none;
}

.pannel-banner {
  background: #fff;

  display: block;

  padding: 40px 5%;

  text-align: center;
}
.col2-content + .pannel-banner {
  display: none;
}
@media only screen and (max-width: 767px) {
  .col2-content + .pannel-banner {
    display: block;
  }
}
.pannel-banner__link {
  display: block;
}
.pannel-banner__link::after {
  display: none;
}
.pannel-banner__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;

  display: block;
}
.pannel-banner__tel {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 500;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 30px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.pannel-banner__tel span {
  border: 1px solid #333a56;

  font-size: 14px;

  display: inline-block;

  margin-right: 20px;
  padding: 3px 15px;
}
@media only screen and (max-width: 767px) {
  .pannel-banner__tel {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 20px;
  }
}
.pannel-banner__button {
  background: #bf9f70;

  font-size: 20px;
  font-weight: 500;
  color: #fff;

  position: relative;

  display: inline-block;

  margin: 30px auto 0;
  padding: 20px 70px 20px 40px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .pannel-banner__button {
    font-size: 16px;

    padding: 15px 50px 15px 20px;
    width: 100%;
  }
}
.pannel-banner__button::after {
  border-radius: 50%;
  background: url("../image/icon_arrow_gold_s.svg") no-repeat center center #fff;

  position: absolute;
  top: 50%;
  right: 20px;

  display: block;

  width: 40px;
  height: 40px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .pannel-banner__button::after {
    background-size: 40%;

    width: 26px;
    height: 26px;
  }
}
.pannel-banner__button.is_blueblack {
  background: #333a56;

  padding: 20px 120px 20px 90px;
}
.pannel-banner__button.is_blueblack:after {
  background: url("../image/icon_arrow_blue.svg") no-repeat center center #fff;
}
.pannel-banner__col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 24px;

  gap: 4%;
}
.pannel-banner__col2 li {
  width: 48%;
}
.pannel-banner__col2 li a {
  width: 100%;
}
.pannel-banner__col2 li a.type01, .pannel-banner__col2 li a.type02 {
  min-width: initial;
}
@media only screen and (max-width: 767px) {
  .pannel-banner__col2 {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 10px;
  }
  .pannel-banner__col2 li {
    width: 100%;
  }
  .pannel-banner__col2 li a.type01, .pannel-banner__col2 li a.type02 {
    padding: 16px 60px 16px 20px;
  }
}
.pickup + .pannel-banner {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .pickup + .pannel-banner {
    display: none;
  }
}

.fixed-banner {
  background: #333a56;

  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;

  width: 100%;
}
.fixed-banner__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  padding: 15px 0;
  width: 100%;

  text-align: center;

  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-align: start;
  -webkit-box-pack: center;
  -ms-flex-align: start;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .fixed-banner__wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
.fixed-banner__text {
  display: block;

  width: 300px;
}
@media only screen and (max-width: 767px) {
  .fixed-banner__text {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 5%;
    width: 100%;

    text-align: center;
  }
}
.fixed-banner__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-left: 10px;
}
.fixed-banner__button li {
  width: 200px;
}
.fixed-banner__button li + li {
  margin-left: 10px;
}
.fixed-banner__button li a:after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .fixed-banner__button {
    margin: 10px 5% 0 5%;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    gap: 10px;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .fixed-banner__button li {
    margin: 0;
    width: auto;
  }
  .fixed-banner__button li + li {
    margin: 0;
  }
}

.blog {
  padding-top: 20px;
}
.blog .slider__item {
  border-radius: 5px;

  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .blog .slider__item {
    max-height: initial;
  }
}
.blog .slider__item--image img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .blog .slider__item {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display:         flex !important;

    height: auto;
  }
  .blog .slider__item--content {
    display: block;

    height: auto;
  }
  .blog .slider__item--image {
    display: block;

    max-height: 156px;
  }
  .blog .slider__item--image img {
    width: 100%;
    height: auto;

    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.blog__wrap {
  background-color: rgb(247, 246, 244);

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 5%;
  padding-bottom: 60px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .blog__wrap {
    padding-bottom: 30px;
  }
}
.blog .cv + .blog__wrap {
  padding-top: 100px;
  padding-bottom: 0;
}
.blog__result {
  margin: 0 auto;
  max-width: 1200px;
}
.blog__result--wrap {
  padding: 0 0 50px 0;
}
.blog__result .col3__item--image {
  overflow: hidden;
}
.blog__result .col3__item--title {
  display: -webkit-box;
  overflow: hidden;

  max-height: 60px;
  min-height: 20px;

  text-overflow: ellipsis;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
          line-clamp: 2;
}
@media all and (max-width: 1440px) {
  .blog__result .col3__item--title {
    font-size: max( 1.3888888889vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .blog__result .col3__item--title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .blog__result .col3__item--title {
    font-size: max( 4.8vw , 12px);
  }
}
.blog__title {
  background-color: rgb(247, 246, 244);

  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;

  margin-top: 30px;
  padding-top: 100px;

  text-align: center;
}
.blog__sorter {
  background-color: rgb(247, 246, 244);

  padding: 32px 5% 40px 5%;
}
@media only screen and (max-width: 767px) {
  .blog__sorter {
    padding: 50px 0 30px 0;
    width: 100%;
  }
}
.blog .blog__sorter {
  margin-top: 30px;
  padding: 100px 5% 40px 5%;
}
@media only screen and (max-width: 767px) {
  .blog .blog__sorter {
    padding: 50px 0 30px 0;
  }
}
.blog__sorter ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto;
  max-width: 1200px;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 10px;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .blog__sorter ul {
    padding: 0 5%;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: start;
            justify-content: start;
  }
}
.blog__sorter ul a {
  border: 1px solid #999daa;
  border-radius: 30px;
  background: #f5f5f7;

  font-size: 14px;
  font-weight: 500;
  color: #999daa;

  display: inline-block;

  padding: 5px 20px;

  white-space: nowrap;
}
@media all and (max-width: 1440px) {
  .blog__sorter ul a {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .blog__sorter ul a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .blog__sorter ul a {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.blog__sorter ul a.current {
  border: 1px solid #333a56;
  background-color: #333a56;

  color: #fff;
}
@media only screen and (max-width: 767px) {
  .blog-detail__title {
    padding: 0 5%;
  }
}
.blog-detail__title h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 38px;
  line-height: 1.4;
}
@media all and (max-width: 1440px) {
  .blog-detail__title h1 {
    font-size: max( 2.6388888889vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .blog-detail__title h1 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .blog-detail__title h1 {
    font-size: max( 6.4vw , 12px);
  }
}
.blog-detail__title--label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 30px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.blog-detail__title--category {
  border: 1px solid #ccced5;

  font-size: 14px;
  line-height: 1.4;
  color: #333a56;

  display: inline-block;

  padding: 5px 10px;
}
.blog-detail__title--date {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  line-height: 1.4;
  color: #333a56;

  display: inline-block;

  padding: 5px 10px;
}
@media all and (max-width: 1440px) {
  .blog-detail__title--date {
    font-size: max( 0.8333333333vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .blog-detail__title--date {
    font-size: 12px;
  }
}
@media only screen and (max-width: 375px) {
  .blog-detail__title--date {
    font-size: max( 3.2vw , 12px);
  }
}
.blog-detail__image {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .blog-detail__image {
    margin: 30px 5% 0 5%;
  }
}
.blog-detail__lead {
  padding: 30px 0 50px 0;
}
@media only screen and (max-width: 767px) {
  .blog-detail__lead {
    padding: 10px 5% 30px 5%;
  }
}
.blog-detail__lead * + p {
  padding-top: 1em;
}
.blog-detail .cv__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  text-align: left;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .blog-detail .cv__wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
.blog-detail .cv__wrap--text h2 {
  font-size: 20px;

  padding-bottom: 0.5em;
}
@media all and (max-width: 1440px) {
  .blog-detail .cv__wrap--text h2 {
    font-size: max( 1.3888888889vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .blog-detail .cv__wrap--text h2 {
    font-size: 24px;

    padding-bottom: 0.8em;

    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .blog-detail .cv__wrap--text h2 {
    font-size: max( 6.4vw , 12px);
  }
}
.blog-detail .cv__wrap--text p {
  font-size: 14px;
}
@media all and (max-width: 1440px) {
  .blog-detail .cv__wrap--text p {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .blog-detail .cv__wrap--text p {
    font-family: "Noto Sans JP", serif;
    font-size: 16px;

    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .blog-detail .cv__wrap--text p {
    font-size: max( 1.1111111111vw , 16px);
  }
}
.blog-detail .cv__wrap .button-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  gap: 10px;
}
.blog-detail .cv__wrap .button-small a {
  display: block;

  padding: 10px 20px;
}
@media only screen and (max-width: 767px) {
  .blog-detail .cv__wrap .button-small {
    margin-top: 10px;
    width: 100%;
  }
  .blog-detail .cv__wrap .button-small a {
    font-size: 17px;

    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .blog-detail .cv__wrap .button-small a {
    font-size: max( 4.5333333333vw , 12px);
  }
}
.blog-detail .cv + .pickup {
  margin-top: 100px;
}
.blog-detail .article {
  padding: 50px 0 50px 0;
}
@media only screen and (max-width: 767px) {
  .blog-detail .article {
    padding: 30px 5% 30px 5%;
  }
}
.blog-detail .article__content {
  background-color: inherit;

  padding: 0;
}
.blog-detail .article__content h2 {
  border-bottom: none;

  padding-bottom: 0.5em;
}
.blog-detail + .pannel-banner {
  display: none;
}
@media only screen and (max-width: 767px) {
  .blog-detail + .pannel-banner {
    display: block;
  }
}

.company h2 {
  font-size: 32px;
  font-weight: 500;

  margin-top: 64px;
  padding-bottom: 1.5em;
}
.company h2:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .company h2 {
    font-size: 22px;

    padding-right: 5%;
    padding-left: 5%;
  }
}
.company * + p {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .company__lead {
    padding: 0 5%;
  }
}
.company__table {
  border-top: 1px solid #ccced5;
  border-right: 1px solid #ccced5;
  border-left: 1px solid #ccced5;
}
@media only screen and (max-width: 767px) {
  .company__table {
    margin-right: 5%;
    margin-left: 5%;
  }
}
.company__table--row {
  border-bottom: 1px solid #ccced5;

  display: table;

  width: 100%;
}
.company__table--header {
  border-right: 1px solid #ccced5;
  background-color: #f5f5f7;

  font-size: 14px;
  font-weight: 500;
  color: #333a56;

  display: table-cell;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 24px;
  width: 11em;
}
@media only screen and (max-width: 767px) {
  .company__table--header {
    padding: 10px 16px;
  }
}
.company__table--data {
  background-color: #fff;

  font-size: 14px;

  display: table-cell;

  padding: 16px 24px;
}
@media only screen and (max-width: 767px) {
  .company__table--data {
    padding: 10px 16px;
  }
}
.company-slider {
  position: relative;

  margin: 30px 0 35px 0;
}
@media only screen and (max-width: 767px) {
  .company-slider {
    margin: 30px 5vw 35px 5vw;
  }
}
.company-slider__item {
  width: 780px;
}
@media only screen and (max-width: 1080px) {
  .company-slider__item {
    width: 680px;
  }
}
@media only screen and (max-width: 980px) {
  .company-slider__item {
    width: 580px;
  }
}
@media only screen and (max-width: 767px) {
  .company-slider__item {
    margin: 0;
    width: 90vw;
  }
}
.company-slider__item img {
  width: 100%;
}
.company-slider .slick-dots {
  position: absolute;
  top: 100%;
  left: 50%;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 20px;

  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 20px;
  -webkit-justify-content: center;
          justify-content: center;
}
.company-slider .slick-dots li button {
  border: none;
  border-radius: 50%;
  background-color: #999daa;

  font-size: 0;

  display: block;

  width: 6px;
  height: 6px;

  cursor: pointer;
}
.company-slider .slick-dots li.slick-active button {
  background-color: #333a56;
}
.company-slider .slick-arrow {
  border: none;
  border-radius: 50%;
  background: url(../image/icon_arrow_blueblack_s.svg) no-repeat center center;

  font-size: 0;

  position: absolute;
  top: 100%;
  z-index: 5;

  margin-top: 8px;
  width: 30px;
  height: 30px;

  cursor: pointer;
}
.company-slider .slick-arrow.slick-prev {
  left: 50%;

  -webkit-transform: translateX(-120px) rotate(180deg);
          transform: translateX(-120px) rotate(180deg);
}
.company-slider .slick-arrow.slick-next {
  left: 50%;
  right: auto;

  margin-left: -15px;

  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
.company__message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .company__message {
            flex-direction: column-reverse;

    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
  }
}
.company__message--image {
  width: 240px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .company__message--image {
    width: 100%;
  }
}
.company__message--image img {
  width: 240px;
  height: auto;

  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.company__message--image p {
  margin-top: 0.5em;

  vertical-align: middle;
}
.company__message--image p span {
  font-size: 20px;
  font-weight: 500;

  display: inline-block;

  padding-left: 0.5em;
}
.company__message--text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company__message--text h3 {
  font-size: 24px;
  font-weight: 500;
}
.company__message--text p {
  margin-top: 1em;
}
.company__boardmember {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 36px 3.6%;
}
.company__boardmember--cell {
  width: 48.2%;
}
@media only screen and (max-width: 767px) {
  .company__boardmember {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
  .company__boardmember--cell {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 5%;
    padding-left: 5%;
    width: 100%;
  }
}
.company__boardmember h3 {
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
}
.company__boardmember h3 .title {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;

  display: block;

  margin-bottom: 16px;
}
.company__boardmember h3 .partner {
  font-size: 14px;

  display: block;

  margin-bottom: 16px;
}
.company__boardmember--image {
  margin-bottom: 24px;
}
.company__boardmember--image img {
  width: 100%;

  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.company__boardmember p {
  font-size: 14px;
}
.company__philosophy {
  border-bottom: 1px solid #999daa;
}
@media only screen and (max-width: 767px) {
  .company__philosophy {
    margin-right: 5%;
    margin-left: 5%;
  }
}
.company__philosophy--item {
  border-top: 1px solid #999daa;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  padding: 1em 0;

  gap: 36px;
}
@media only screen and (max-width: 767px) {
  .company__philosophy--item {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 16px;
  }
}
.company__philosophy--item h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 36px;
  font-weight: 400;

  display: inline-block;

  width: 154px;
}
@media only screen and (max-width: 767px) {
  .company__philosophy--item h3 {
    font-size: 30px;

    width: 100%;
  }
}
.company__philosophy--item .content h4 {
  font-size: 20px;
  font-weight: 500;
}
.company__philosophy--item .content * + p {
  font-weight: 400;

  margin-top: 1em;
}
.company__history--row {
  display: table;

  margin-bottom: 1em;
}
.company__history--row:last-child {
  margin-bottom: 0;
}
.company__history--header {
  display: table-cell;

  width: 7.5em;
}
.company__history--data {
  display: table-cell;
}
.company__access--guide {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
.company__access--guide + p {
  color: #999daa;

  margin-top: 1em;
}
.company__access--map {
  margin-top: 30px;
  width: 100%;
  height: 450px;
}
.company__access h3 {
  font-size: 30px;
  font-weight: 500;

  margin: 40px 0 30px 0;
}
.company__access--image {
  margin-top: 20px;
}
.company__access--image img {
  width: 100%;
}
.company__access--sign {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 10px;

  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 40px;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.company__access--sign div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  gap: 10px;
  -webkit-justify-content: center;
          justify-content: center;
}
.company__access--sign div img {
  width: 40px;
  height: auto;
}
.company__access--sign div p {
  line-height: 1.4;
  color: #999daa;
}
.company .pannel-banner {
  margin-top: 0;
}

.privacy {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 5%;
}
.privacy__wrap {
  margin: 0 auto;
  max-width: 860px;
}
* + .privacy__item {
  margin-top: 40px;
}
.privacy__item .lv_h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  line-height: 1.6;
}
.privacy__item .lv_h2 span {
  display: inline-block;

  width: 2em;
}
@media only screen and (max-width: 767px) {
  .privacy__item .lv_h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 375px) {
  .privacy__item .lv_h2 {
    font-size: max( 5.8666666667vw , 12px);
  }
}
.privacy__item .lv_h3 {
  font-size: 16px;
  font-weight: 500;
}
.privacy__item * + .lv_h2, .privacy__item * + .lv_h3, .privacy__item * + p {
  margin-top: 20px;
}
.privacy__item ol.lower-alpha {
  margin: 10px 0 10px 1.5em;

  list-style-type: lower-alpha;
}
.privacy__item ol.lower-alpha li {
  padding-left: 1em;

  list-style-type: inherit;
}
.privacy__item ol.decimal {
  margin: 10px 0 10px 1.5em;

  list-style-type: decimal;
}
.privacy__item ol.decimal li {
  padding-left: 0.5em;

  list-style-type: inherit;
}
.privacy__item ol.lower-roman {
  margin: 10px 0 10px 1.5em;

  list-style-type: lower-roman;
}
.privacy__item ol.lower-roman li {
  padding-left: 0.5em;

  list-style-type: inherit;
}
.privacy__item ol.brackets-decimal {
  margin: 10px 0;
}
.privacy__item ol.brackets-decimal li {
  position: relative;

  padding-left: 2.5em;

  list-style-type: none;

  counter-increment: bra-dec;
}
.privacy__item ol.brackets-decimal li::before {
  position: absolute;
  left: 0;

  width: 2.5em;

  content: "（" counter(bra-dec) "）";
}
.privacy__item ol.brackets-loweralpha {
  margin: 10px 0;
}
.privacy__item ol.brackets-loweralpha li {
  position: relative;

  padding-left: 2em;

  list-style-type: none;

  counter-increment: bra-lalpha;
}
.privacy__item ol.brackets-loweralpha li::before {
  position: absolute;
  left: 0;

  width: 2em;

  content: "（" counter(bra-lalpha, lower-alpha) "）";
}
.privacy__item ol li + li {
  padding-top: 0.5em;
}
.privacy__item .lv_h2 + ol, .privacy__item .lv_h3 + ol {
  margin-top: 20px;
}
.privacy__item .wp-block-table {
  width: 100%;
}
.privacy__item .wp-block-table table {
  width: 100%;
}
.privacy__item .wp-block-table table thead th {
  font-size: 11px;

  padding: 0.5em;
}
.privacy__item .wp-block-table table thead th:nth-child(4) {
  width: 9em;
}
.privacy__item .wp-block-table table thead th:nth-child(5) {
  width: 10em;
}
.privacy__item .wp-block-table table tbody td {
  font-size: 11px;
  line-height: 1.6;

  padding: 0.5em;
}
.privacy__item .wp-block-table .scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  line-height: 1.2;
}
.privacy__date {
  margin-top: 40px;

  text-align: right;
}

.recruit h2 {
  font-size: 30px;
  font-weight: 500;

  margin-bottom: 36px;
}
@media only screen and (max-width: 767px) {
  .recruit h2 {
    padding: 0 5%;
  }
}
.recruit h3 {
  font-size: 24px;
  font-weight: 500;

  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .recruit h3 {
    padding: 0 5%;
  }
}
.recruit ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-bottom: 36px;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 27px 3%;
}
@media only screen and (max-width: 767px) {
  .recruit ul {
            flex-direction: column;

    padding: 0 5%;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 15px;
  }
}
.recruit ul li {
  border: 1px solid #000;

  width: 48.5%;
}
@media only screen and (max-width: 767px) {
  .recruit ul li {
    width: 100%;
  }
}
.recruit ul li a {
  font-weight: 500;

  display: block;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  width: 100%;
  height: 100%;
}
.recruit ul li a span {
  font-size: 12px;
  font-weight: 500;

  display: block;
}
.recruit ul:last-child {
  margin-bottom: 0;
}

.introduction h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;

  margin-top: 36px;
  margin-bottom: 36px;
}
.introduction h2:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .introduction h2 {
    font-size: 24px;

    padding: 0 5%;
  }
}
.introduction h4 {
  font-weight: 500;

  margin-top: 1em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .introduction__profile {
    padding: 0 5%;
  }
}
.introduction__profile h3 {
  font-weight: 500;

  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.introduction__profile h3:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .introduction .quote-box {
    margin: 20px 5%;
  }
}
.introduction--text p {
  margin-top: 0.8em;
}
@media only screen and (max-width: 767px) {
  .introduction--text {
    padding: 0 5% 0 5%;
  }
}
.introduction__business {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  gap: 40px;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .introduction__business {
    padding: 0 5%;

    gap: 30px;
  }
}
.introduction__business--item {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  padding-left: 37%;
  min-height: 283px;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .introduction__business--item {
    padding-left: 0;
  }
}
.introduction__business--item h4 {
  font-size: 16px;
  font-weight: 500;

  margin-bottom: 0.5em;
}
.introduction__business--item p {
  font-size: 12px;
}
.introduction__business--img {
  border: 1px solid #000;

  position: absolute;
  top: 0;
  left: 0;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  width: 30%;
  width: 283px;
  height: 283px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.introduction__business--img img {
  max-width: 100%;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .introduction__business--img {
    position: static;
    top: auto;
    left: auto;

    width: 100%;
    height: 180px;
  }
}
.introduction .career {
  gap: 36px;
}
@media only screen and (max-width: 767px) {
  .introduction .career {
    padding: 0 5%;

    gap: 20px;
  }
}
.introduction .career .imageset__col2small--item {
  gap: 5%;
}
.introduction .career .imageset__col2small--img {
  width: 177px;
  height: 177px;
}
@media only screen and (max-width: 767px) {
  .introduction .career .imageset__col2small--img {
    width: 24%;
    height: auto;
  }
}
.introduction .career .imageset__col2small--img img {
  width: 177px;
  height: 177px;

  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .introduction .career .imageset__col2small--img img {
    width: 100%;
    height: auto;
  }
}
.introduction .career .imageset__col2small--text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  width: calc(95% - 177px);

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .introduction .career .imageset__col2small--text {
    width: 71%;
  }
}
.introduction .career .imageset__col2small--text h4 {
  font-size: 16px;

  margin-top: 0;
  margin-bottom: 0.5em;
}
.introduction .career .imageset__col2small--text p {
  font-size: 14px;
}
.introduction .cv {
  margin-top: 40px;
}
.introduction .cv__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  text-align: left;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .introduction .cv__wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
.introduction .cv__wrap--text h2 {
  font-size: 20px;

  margin-bottom: 0.5em;
  padding: 0;
}
@media all and (max-width: 1440px) {
  .introduction .cv__wrap--text h2 {
    font-size: max( 1.3888888889vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .introduction .cv__wrap--text h2 {
    font-size: 18px;

    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .introduction .cv__wrap--text h2 {
    font-size: max( 4.8vw , 12px);
  }
}
.introduction .cv__wrap--text p {
  font-size: 14px;
}
@media all and (max-width: 1440px) {
  .introduction .cv__wrap--text p {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .introduction .cv__wrap--text p {
    font-size: 14px;

    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .introduction .cv__wrap--text p {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.introduction .cv__wrap .button-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  gap: 10px;
}
.introduction .cv__wrap .button-small a {
  display: block;

  padding: 10px 20px;
}
@media only screen and (max-width: 767px) {
  .introduction .cv__wrap .button-small {
    margin-top: 10px;
    width: 100%;
  }
  .introduction .cv__wrap .button-small a {
    font-size: 17px;

    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .introduction .cv__wrap .button-small a {
    font-size: max( 4.5333333333vw , 12px);
  }
}

.inquiry {
  padding: 40px 5%;
}
.inquiry__wrap {
  background-color: #fff;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 64px 80px;
  max-width: 660px;
}
@media only screen and (max-width: 767px) {
  .inquiry__wrap {
    padding: 40px 5%;
  }
}
.inquiry__caption {
  margin-bottom: 40px;

  text-align: center;
}
.inquiry__note {
  color: rgb(218, 93, 100);

  padding-bottom: 5px;
}
.inquiry__note sup {
  padding-right: 0.3em;

  vertical-align: middle;
}
.inquiry__table--row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-bottom: -1px;
  width: 100%;
}
.inquiry__table--data {
  padding: 10px 0;
  width: 100%;
}
.inquiry__table--data.error {
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .inquiry__table--data {
    padding: 5px 0;
  }
}
.inquiry__table--data2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  width: 50%;
}
.inquiry__table--data2:first-child {
  padding-right: 10px;
}
.inquiry__table--data2:last-child {
  padding-left: 10px;
}
.inquiry__table sup {
  color: rgb(218, 93, 100);

  padding-left: 0.3em;

  vertical-align: middle;
}
.inquiry__table .error_message {
  font-weight: 500;
  font-weight: 500;
  color: rgb(218, 93, 100);

  display: none;
}
.inquiry__table .error_message.indicate {
  font-size: 13px;

  display: inline-block;

  padding-left: 0.5em;
}
.inquiry__table select {
  border: 1px solid #ccced5;
  background-color: #f5f5f7;

  padding: 15px 10px;
  max-width: 100%;
  min-width: 30%;
}
.inquiry__table select.error {
  border: 2px solid rgb(218, 93, 100);
  background-color: rgba(218, 93, 100, 0.1);
}
.inquiry__table select.error::-webkit-input-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table select.error::-moz-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table select.error:-ms-input-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table select.error::-ms-input-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table select.error::placeholder {
  color: rgb(218, 93, 100);
}
@media only screen and (max-width: 767px) {
  .inquiry__table select {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    width: 100%;
  }
}
.inquiry__table input {
  border: 1px solid #ccced5;
  background-color: #f5f5f7;

  padding: 15px 10px;
  width: 100%;
}
.inquiry__table input::-webkit-input-placeholder {
  color: #ccced5;
}
.inquiry__table input::-moz-placeholder {
  color: #ccced5;
}
.inquiry__table input:-ms-input-placeholder {
  color: #ccced5;
}
.inquiry__table input::-ms-input-placeholder {
  color: #ccced5;
}
.inquiry__table input::placeholder {
  color: #ccced5;
}
.inquiry__table input.error {
  border: 2px solid rgb(218, 93, 100);
  background-color: rgba(218, 93, 100, 0.1);
}
.inquiry__table input.error::-webkit-input-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table input.error::-moz-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table input.error:-ms-input-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table input.error::-ms-input-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table input.error::placeholder {
  color: rgb(218, 93, 100);
}
@media only screen and (max-width: 767px) {
  .inquiry__table input {
    padding: 10px;
  }
}
.inquiry__table textarea {
  border: 1px solid #ccced5;
  background-color: #f5f5f7;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 10px;
  width: 100%;
  height: 12em;
}
.inquiry__table textarea::-webkit-input-placeholder {
  color: #ccced5;
}
.inquiry__table textarea::-moz-placeholder {
  color: #ccced5;
}
.inquiry__table textarea:-ms-input-placeholder {
  color: #ccced5;
}
.inquiry__table textarea::-ms-input-placeholder {
  color: #ccced5;
}
.inquiry__table textarea::placeholder {
  color: #ccced5;
}
.inquiry__table textarea.error {
  border: 2px solid rgb(218, 93, 100);
  background-color: rgba(218, 93, 100, 0.1);
}
.inquiry__table textarea.error::-webkit-input-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table textarea.error::-moz-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table textarea.error:-ms-input-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table textarea.error::-ms-input-placeholder {
  color: rgb(218, 93, 100);
}
.inquiry__table textarea.error::placeholder {
  color: rgb(218, 93, 100);
}
@media only screen and (max-width: 767px) {
  .inquiry__table textarea {
    padding: 10px;
  }
}
.inquiry__label {
  font-size: 13px;
  font-weight: 500;
}
.inquiry__agree--check {
  margin-top: 30px;

  text-align: center;
}
.inquiry__agree--check label {
  position: relative;

  display: inline-block;

  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .inquiry__agree--check label {
    text-align: left;
  }
}
.inquiry__agree--check label::before {
  border: 1px solid #999daa;
  border-radius: 5px;
  background-color: #f5f5f7;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 20px;
  height: 20px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.inquiry__agree--check label::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;

  position: absolute;
  top: 50%;
  left: 7px;

  display: none;

  width: 5px;
  height: 10px;

  content: "";
  -webkit-transform: translateY(-64%) rotate(45deg);
          transform: translateY(-64%) rotate(45deg);
}
.inquiry__agree--check label a {
  text-decoration: underline;
}
.inquiry__agree--check input {
  display: none;
}
.inquiry__agree--check input:checked + label::before {
  border: 1px solid #333a56;
  background-color: #333a56;
}
.inquiry__agree--check input:checked + label::after {
  display: block;
}
.inquiry__agree .button {
  margin-top: 30px;
}
.inquiry__agree .button a, .inquiry__agree .button button {
  border: none;
  background-color: #333a56;

  font-size: 16px;
  color: #fff;

  padding: 25px 40px;
  width: 420px;
}
@media only screen and (max-width: 767px) {
  .inquiry__agree .button a, .inquiry__agree .button button {
    padding: 10px 40px;
    width: 100%;
  }
}
.inquiry__agree .button a::after, .inquiry__agree .button button::after {
  display: none;
}
.inquiry__agree .agree-text {
  font-size: 12px;
  line-height: 1.6;

  margin-top: 30px;
}
.inquiry .hbspt-form * + .form-columns-1, .inquiry .hbspt-form * + .form-columns-2 {
  margin-top: 12px;
}
.inquiry .hbspt-form * + .form-columns-1 .input textarea, .inquiry .hbspt-form * + .form-columns-2 .input textarea {
  vertical-align: bottom;
}
.inquiry form {
  margin: 0 auto;
  max-width: 500px;
}

.complete {
  padding: 100px 5% 64px 5%;
}
@media only screen and (max-width: 767px) {
  .complete {
    padding: 40px 5%;
  }
}
.complete__wrap {
  background-color: #fff;

  margin: 0 auto;
  padding: 64px 5%;
  width: 1024px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .complete__wrap {
    padding: 40px 5%;
  }
}
.complete__wrap h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: 500;
}
.complete__wrap .button a {
  padding: 25px 40px;
  width: 390px;
}
.complete__wrap .button a::after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .complete__wrap {
    width: 100%;
  }
  .complete__wrap h2 {
    font-size: 30px;
  }
  .complete__wrap .button a {
    width: 100%;
  }
}
.complete--text {
  margin: 40px 0;
}
.complete--text.for-contact {
  margin: 40px 0 60px 0;
}
.complete--text a {
  font-weight: 500;

  text-decoration: underline;
}

.form__note {
  font-size: 14px;
  color: #ff5a5f;

  padding-bottom: 5px;

  text-align: left;
}
.form__input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  text-align: left;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
}
.form__input--inner {
  background: #fff;

  padding: 10px 0 5px 0;
}
.form__input--inner .label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;

  display: block;
}
.form__input--inner sup {
  color: #ff5a5f;

  vertical-align: top;
}
.form__input--inner input[type=text], .form__input--inner input[type=email], .form__input--inner input[type=tel] {
  border: 1px solid #ccced5;
  border-radius: 2px;
  background-color: #f5f5f7;

  font-size: 15px;
  font-weight: normal;

  margin-top: 5px;
  padding: 5px 10px;
  width: 100%;
}
.form__input--inner input[type=text]::-webkit-input-placeholder, .form__input--inner input[type=email]::-webkit-input-placeholder, .form__input--inner input[type=tel]::-webkit-input-placeholder {
  color: #999daa;
}
.form__input--inner input[type=text]::-moz-placeholder, .form__input--inner input[type=email]::-moz-placeholder, .form__input--inner input[type=tel]::-moz-placeholder {
  color: #999daa;
}
.form__input--inner input[type=text]:-ms-input-placeholder, .form__input--inner input[type=email]:-ms-input-placeholder, .form__input--inner input[type=tel]:-ms-input-placeholder {
  color: #999daa;
}
.form__input--inner input[type=text]::-ms-input-placeholder, .form__input--inner input[type=email]::-ms-input-placeholder, .form__input--inner input[type=tel]::-ms-input-placeholder {
  color: #999daa;
}
.form__input--inner input[type=text]::placeholder, .form__input--inner input[type=email]::placeholder, .form__input--inner input[type=tel]::placeholder {
  color: #999daa;
}
.form__input--inner .error_message {
  font-size: 15px;
  font-weight: 500;
  color: #ff5a5f;

  display: none;
}
.form__input--inner .error_message.indicate {
  display: block;
}
.form__note .desc {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  color: #999daa;

  display: inline-block;

  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .form__note .desc {
    font-size: 0.65em;
  }
}
.form__note .desc a {
  color: inherit;

  text-decoration: underline;
}
.form__note .desc a:focus, .form__note .desc a:hover {
  color: inherit;

  text-decoration: underline;
}
.form__note .desc a::after {
  display: none;
}
.form__button a, .form__button button {
  border: none;
  border-radius: 4px;
  background: #333a56;

  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;

  position: relative;

  display: block;

  margin-top: 15px;
  padding: 20px 40px;
  width: 100%;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .form__button a::after, .form__button button::after {
    right: 15px;
  }
}
.form__button span {
  border: none;
  border-radius: 4px;
  background: #999daa;

  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;

  position: relative;

  display: block;

  margin-top: 15px;
  padding: 15px 40px;
  width: 100%;

  text-align: center;
}

.hbspt-form {
  text-align: left;
}
.hbspt-form .form-columns-1 {
  width: 100%;
}
.hbspt-form .form-columns-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  width: 100%;
}
.hbspt-form .hs-form-field label {
  font-size: 13px;
  font-weight: 500;
}
.hbspt-form .hs-form-field .hs-error-msgs li {
  line-height: normal;
}
.hbspt-form .hs-form-field .hs-error-msgs li label {
  line-height: 1.4;

  display: block;

  margin-top: 5px;
}
.hbspt-form .hs-form-field .hs-error-msgs li label.hs-error-msg {
  color: rgb(218, 93, 100);
}
.hbspt-form .hs-form-required {
  color: rgb(218, 93, 100);

  display: none;
}
.hbspt-form .hs-input[type=text], .hbspt-form .hs-input[type=textbox], .hbspt-form .hs-input[type=tel], .hbspt-form .hs-input[type=email] {
  border: 1px solid #ccced5;
  border-radius: 2px;
  background-color: #f5f5f7;

  font-size: 15px;
  font-weight: normal;

  padding: 5px 10px;
  width: 100% !important;
}
.hbspt-form .hs-input[type=text]::-webkit-input-placeholder, .hbspt-form .hs-input[type=textbox]::-webkit-input-placeholder, .hbspt-form .hs-input[type=tel]::-webkit-input-placeholder, .hbspt-form .hs-input[type=email]::-webkit-input-placeholder {
  color: #999daa;
}
.hbspt-form .hs-input[type=text]::-moz-placeholder, .hbspt-form .hs-input[type=textbox]::-moz-placeholder, .hbspt-form .hs-input[type=tel]::-moz-placeholder, .hbspt-form .hs-input[type=email]::-moz-placeholder {
  color: #999daa;
}
.hbspt-form .hs-input[type=text]:-ms-input-placeholder, .hbspt-form .hs-input[type=textbox]:-ms-input-placeholder, .hbspt-form .hs-input[type=tel]:-ms-input-placeholder, .hbspt-form .hs-input[type=email]:-ms-input-placeholder {
  color: #999daa;
}
.hbspt-form .hs-input[type=text]::-ms-input-placeholder, .hbspt-form .hs-input[type=textbox]::-ms-input-placeholder, .hbspt-form .hs-input[type=tel]::-ms-input-placeholder, .hbspt-form .hs-input[type=email]::-ms-input-placeholder {
  color: #999daa;
}
.hbspt-form .hs-input[type=text]::placeholder, .hbspt-form .hs-input[type=textbox]::placeholder, .hbspt-form .hs-input[type=tel]::placeholder, .hbspt-form .hs-input[type=email]::placeholder {
  color: #999daa;
}
.hbspt-form fieldset.form-columns-1 select.hs-input {
  border: 1px solid #ccced5;
  border-radius: 2px;

  font-size: 15px;

  padding: 12px 30px 12px 10px;
  width: 100% !important;

  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.hbspt-form fieldset.form-columns-1 .input:has(select.hs-input) {
  position: relative;
}
.hbspt-form fieldset.form-columns-1 .input:has(select.hs-input)::after {
  border-right: 2px solid #333a56;
  border-bottom: 2px solid #333a56;

  position: absolute;
  top: 50%;
  right: 20px;

  display: block;

  width: 5px;
  height: 5px;

  content: "";
  -webkit-transform: rotate(45deg) translateY(-80%);
          transform: rotate(45deg) translateY(-80%);
}
.hbspt-form fieldset.form-columns-1 textarea.hs-input {
  border: 1px solid #ccced5;
  border-radius: 2px;
  background-color: #f5f5f7;

  font-size: 15px;

  padding: 5px 10px;
  width: 100% !important;
}
.hbspt-form .hs-fieldtype-checkbox {
  padding-bottom: 20px;
}
.hbspt-form .hs-fieldtype-checkbox .input .inputs-list .hs-form-checkbox .hs-form-checkbox-display .hs-input {
  display: none;
}
.hbspt-form .hs-fieldtype-checkbox .input .inputs-list .hs-form-checkbox .hs-form-checkbox-display span {
  line-height: normal;

  position: relative;

  margin-left: 0;
  padding-left: 30px;
}
.hbspt-form .hs-fieldtype-checkbox .input .inputs-list .hs-form-checkbox .hs-form-checkbox-display span::before {
  border: 1px solid #999daa;
  border-radius: 5px;
  background-color: #f5f5f7;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 20px;
  height: 20px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hbspt-form .hs-fieldtype-checkbox .input .inputs-list .hs-form-checkbox .hs-form-checkbox-display span::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;

  position: absolute;
  top: 50%;
  left: 7px;

  display: none;

  width: 5px;
  height: 10px;

  content: "";
  -webkit-transform: translateY(-64%) rotate(45deg);
          transform: translateY(-64%) rotate(45deg);
}
.hbspt-form .hs-fieldtype-checkbox .input .inputs-list .hs-form-checkbox .hs-form-checkbox-display span p {
  font-size: 13px;
  line-height: 1.4;
}
.hbspt-form .hs-fieldtype-checkbox .input .inputs-list .hs-form-checkbox .hs-form-checkbox-display .hs-input:checked + span::before {
  border: 1px solid #333a56;
  background-color: #333a56;
}
.hbspt-form .hs-fieldtype-checkbox .input .inputs-list .hs-form-checkbox .hs-form-checkbox-display .hs-input:checked + span::after {
  display: block;
}
.hbspt-form .legal-consent-container {
  padding-bottom: 15px;
}
.hbspt-form .legal-consent-container .hs-dependent-field .field.hs-form-field {
  margin: 10px 0;
}
.hbspt-form .legal-consent-container .hs-dependent-field .field.hs-form-field .input .hs-form-booleancheckbox .hs-form-booleancheckbox-display .hs-input {
  display: none;
}
.hbspt-form .legal-consent-container .hs-dependent-field .field.hs-form-field .input .hs-form-booleancheckbox .hs-form-booleancheckbox-display span {
  line-height: normal;

  position: relative;

  margin-left: 0;
  padding-left: 30px;
}
.hbspt-form .legal-consent-container .hs-dependent-field .field.hs-form-field .input .hs-form-booleancheckbox .hs-form-booleancheckbox-display span::before {
  border: 1px solid #999daa;
  border-radius: 5px;
  background-color: #f5f5f7;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 20px;
  height: 20px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hbspt-form .legal-consent-container .hs-dependent-field .field.hs-form-field .input .hs-form-booleancheckbox .hs-form-booleancheckbox-display span::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;

  position: absolute;
  top: 50%;
  left: 7px;

  display: none;

  width: 5px;
  height: 10px;

  content: "";
  -webkit-transform: translateY(-64%) rotate(45deg);
          transform: translateY(-64%) rotate(45deg);
}
.hbspt-form .legal-consent-container .hs-dependent-field .field.hs-form-field .input .hs-form-booleancheckbox .hs-form-booleancheckbox-display span p {
  font-size: 13px;
  line-height: 1.4;
}
.hbspt-form .legal-consent-container .hs-dependent-field .field.hs-form-field .input .hs-form-booleancheckbox .hs-form-booleancheckbox-display .hs-input:checked + span::before {
  border: 1px solid #333a56;
  background-color: #333a56;
}
.hbspt-form .legal-consent-container .hs-dependent-field .field.hs-form-field .input .hs-form-booleancheckbox .hs-form-booleancheckbox-display .hs-input:checked + span::after {
  display: block;
}
.hbspt-form .legal-consent-container .hs-richtext {
  font-size: 10px;
  line-height: 1.4;
  color: #999daa;
}
.hbspt-form .legal-consent-container .hs-richtext a {
  color: #999daa;

  text-decoration: underline;
}
.hbspt-form .legal-consent-container .hs-richtext p {
  font-size: 10px;
  line-height: 1.4;
  color: #999daa;
}
.hbspt-form .legal-consent-container .hs-richtext p a {
  color: #999daa;

  text-decoration: underline;
}
.hbspt-form .hs_recaptcha {
  text-align: center;
}
.hbspt-form .hs_recaptcha .input > div {
  margin: 0 auto;
}
.hbspt-form .hs_error_rollup {
  margin-top: 10px;
}
.hbspt-form .hs_error_rollup .hs-error-msgs li {
  line-height: normal;
}
.hbspt-form .hs_error_rollup .hs-error-msgs li .hs-main-font-element {
  font-size: 13px;
  font-weight: 500;
  color: rgb(218, 93, 100);
}
.hbspt-form .hs_submit {
  padding-top: 15px;
}
.hbspt-form .hs_submit .actions .hs-button {
  border: none;
  border-radius: 4px;
  background: #333a56;

  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;

  padding: 20px 40px;
  width: 100%;

  text-align: center;
}

.cv {
  background: url("../image/bg_cta.png") no-repeat center center;
  background-size: cover;

  color: #fff;

  padding: 60px 30px;

  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cv {
    padding: 30px 5vw;
  }
}
.cv__wrap {
  margin: 0 auto;
  max-width: 1200px;
}
.cv__wrap h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;

  padding-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .cv__wrap h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .cv__wrap h2 {
    font-size: max( 5.3333333333vw , 12px);
  }
}
.cv__wrap h2 + p {
  margin-bottom: 0.5em;
}
.cv__wrap h2 + .button p a, .cv__wrap h2 + .button p button {
  margin-top: 1em;
}
.cv .button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  gap: 30px;
  -webkit-justify-content: center;
          justify-content: center;
}
.cv .button p, .cv .button li {
  font-size: 16px;
  font-weight: 500;
}
.cv .button p a, .cv .button p button, .cv .button li a, .cv .button li button {
  font-size: 20px;

  margin-top: 10px;
  min-width: 430px;
}
@media only screen and (max-width: 980px) {
  .cv .button {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 0;
  }
  .cv .button p, .cv .button li {
    width: 100%;
  }
}
@media only screen and (max-width: 980px) and (max-width: 1440px) {
  .cv .button p, .cv .button li {
    font-size: max( 2.0833333333vw, 12px );
  }
}
@media only screen and (max-width: 980px) and (max-width: 375px) {
  .cv .button p, .cv .button li {
    font-size: max( 4.2666666667vw , 12px);
  }
}
@media only screen and (max-width: 980px) {
  .cv .button p a, .cv .button p button, .cv .button li a, .cv .button li button {
    font-size: 16px;

    min-width: initial;
    width: 100%;
  }
}
@media only screen and (max-width: 980px) and (max-width: 1440px) {
  .cv .button p a, .cv .button p button, .cv .button li a, .cv .button li button {
    font-size: max( 2.0833333333vw, 12px );
  }
}
@media only screen and (max-width: 980px) and (max-width: 375px) {
  .cv .button p a, .cv .button p button, .cv .button li a, .cv .button li button {
    font-size: max( 4.2666666667vw , 12px);
  }
}
.cv .button__thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 70px;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  gap: 2%;
  -webkit-justify-content: center;
          justify-content: center;
}
.cv .button__thumb li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 32%;
}
.cv .button__thumb li a {
  border-radius: 8px;
  background: #fff;

  position: relative;

  display: block;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 20px 20px 20px;
}
.cv .button__thumb li a img {
  position: absolute;
  top: 0;
  left: 50%;

  max-width: 80%;
  max-height: 120px;

  -webkit-transform: translateX(-50%) translateY(-30%);
          transform: translateX(-50%) translateY(-30%);
}
.cv .button__thumb li a span {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 20px;
  font-weight: 700;

  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 20px;
  width: 100%;
  min-height: 76px;

  letter-spacing: 0;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.cv .button__thumb li a span::after {
  position: absolute;
  top: 50%;
  right: 20px;

  display: block;

  width: 40px;
  height: 40px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cv .button__thumb li a span.type-b {
  border: 1px solid #333a56;

  color: #333a56;
}
.cv .button__thumb li a span.type-b::after {
  background: url("../image/icon_arrow_blueblack.svg") no-repeat center center;
  background-size: 99% 99%;
}
.cv .button__thumb li a span.type-g {
  border: 1px solid #bf9f70;
  background-color: #bf9f70;

  color: #fff;
}
.cv .button__thumb li a span.type-g::after {
  background: url("../image/icon_arrow_gold.svg") no-repeat center center;
  background-size: 99% 99%;
}
@media all and (max-width: 1200px) {
  .cv .button__thumb li a span {
    font-size: max( 1.3888888889vw, 12px );

    min-height: 4em;
  }
  .cv .button__thumb li a span::after {
    right: 1em;

    width: 2em;
    height: 2em;
  }
}
.cv .button__thumb li a::after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .cv .button__thumb {
            flex-direction: column;

    margin-top: 3.5em;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 15vw;
  }
  .cv .button__thumb li {
    width: 100%;
  }
  .cv .button__thumb li a {
    padding: 23vw 25px 25px 25px;
  }
  .cv .button__thumb li a img {
    max-width: initial;
    height: 29vw;
  }
  .cv .button__thumb li a span {
    font-size: max( 4.8vw , 12px);

    min-width: 100%;
    min-height: 3.9em;
  }
  .cv .button__thumb li a span::after {
    right: 0.8em;

    width: 2em;
    height: 2em;
  }
}

.nav__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: row;

  margin: 2em 0 1em 0;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-align: center;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
  gap: 1em;
}
.nav__cta li a {
  border: 1px solid #bf9f70;
  border-radius: 2px;
  background-color: #bf9f70;

  font-size: 16px;
  font-weight: 500;
  color: #fff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  padding: 0.75em 1.5em;
  min-width: 15em;
  height: 100%;

  text-align: center;
  text-decoration: none;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  gap: 10px;
  -webkit-justify-content: center;
          justify-content: center;
}
@media (max-width: 1120px) {
  .nav__cta li a {
    font-size: 14px;
  }
}
.nav__cta li a[target=_blank]::after {
  display: none;
}
.nav__cta li:last-child a {
  border: 1px solid #333a56;
  background: #fff;

  color: #333a56;
}

.under__form {
  display: none;
}
@media only screen and (max-width: 767px) {
  .under__form {
    background-color: #fff;

    overflow-y: scroll;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 30px;
    padding: 40px 20px;
    width: 100%;

    text-align: center;
  }
  .under__form h2 {
    font-size: 24px;

    margin: 0;
    padding: 0;
  }
  .under__form--caption {
    font-size: 14px;
    line-height: 1.4;

    margin: 1em 0;
  }
  .under__form .close {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .under__form .sp-form {
    display: none;
  }
  .under__form.open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;

    display: block;

    margin: 0;
    width: 100vw;
    height: 100vh;
  }
}

.slider {
  padding: 30px 0 10px 0;
}
@media only screen and (max-width: 767px) {
  .slider {
    padding: 10px 0 10px 0;
  }
}
.slider__item {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

  margin: 10px 45px;
  max-width: 1028px;
  width: 90vw;
}
@media only screen and (max-width: 767px) {
  .slider__item {
    margin: 10px 15px;
    max-width: 90vw;
  }
}
.slider__item--wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  height: 100%;

  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media only screen and (max-width: 767px) {
  .slider__item--wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
}
.slider__item--image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  overflow: hidden;

  width: 352px;
  height: 100%;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .slider__item--image {
    width: 100%;
    height: 49%;
  }
}
.slider__item--image img {
  max-height: 100%;

  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__item--content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  padding: 15px 30px;
  width: calc(100% - 352px);
  height: 100%;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .slider__item--content {
    padding: 15px 20px;
    width: 100%;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
}
.slider__item--logo {
  margin-bottom: 10px;
  height: 50px;
}
@media only screen and (max-width: 767px) {
  .slider__item--logo {
    height: 40px;
  }
}
.slider__item--logo img {
  height: 100%;
}
.slider__item--title {
  font-size: 18px;
  font-weight: 500;
}
.slider__item--title span {
  display: -webkit-box;
  overflow: hidden;

  max-height: 60px;
  min-height: 20px;

  text-overflow: ellipsis;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
          line-clamp: 2;
}
@media only screen and (max-width: 767px) {
  .slider__item--title span {
    max-height: 90px;

    -webkit-line-clamp: 3;
            line-clamp: 3;
  }
}
.slider__item--company {
  font-size: 14px;
  font-weight: 500;
}
@media all and (max-width: 1440px) {
  .slider__item--company {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .slider__item--company {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .slider__item--company {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.slider__item--detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  padding-top: 10px;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5em 1.5em;
}
@media only screen and (max-width: 767px) {
  .slider__item--detail {
    padding-top: 5px;

    gap: 0 1.5em;
  }
}
.slider__item--detail p {
  font-size: 14px;
}
@media all and (max-width: 1440px) {
  .slider__item--detail p {
    font-size: max( 0.9722222222vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .slider__item--detail p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .slider__item--detail p {
    font-size: max( 3.7333333333vw , 12px);
  }
}
.slider__item--detail p span {
  color: #999daa;

  display: inline-block;

  padding-right: 1em;
}
.slider__item--date {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  color: #999daa;

  margin-top: 15px;
}
@media all and (max-width: 1440px) {
  .slider__item--date {
    font-size: max( 0.8333333333vw, 12px );
  }
}
@media only screen and (max-width: 767px) {
  .slider__item--date {
    font-size: 12px;
  }
}
@media only screen and (max-width: 375px) {
  .slider__item--date {
    font-size: max( 3.2vw , 12px);
  }
}
.slider__item a {
  color: #333a56;

  text-decoration: none;
}
.slider__item a:active, .slider__item a:hover {
  color: #333a56;
}
.slider .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 20px;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 20px;
  -webkit-justify-content: center;
          justify-content: center;
}
.slider .slick-dots li button {
  border: none;
  border-radius: 50%;
  background-color: #999daa;

  font-size: 0;

  display: block;

  width: 6px;
  height: 6px;

  cursor: pointer;
}
.slider .slick-dots li.slick-active button {
  background-color: #333a56;
}
.slider .slick-arrow {
  border: none;
  background: url(../image/icon_arrow_blueblack_s.svg) no-repeat center center;

  font-size: 0;

  position: absolute;
  top: 90%;
  z-index: 5;

  width: 30px;
  height: 30px;

  cursor: pointer;
}
.slider .slick-arrow.slick-prev {
  left: 50%;

  -webkit-transform: translateX(-120px) rotate(180deg);
          transform: translateX(-120px) rotate(180deg);
}
.slider .slick-arrow.slick-next {
  left: 50%;
  right: auto;

  margin-left: -10px;

  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
@media only screen and (max-width: 767px) {
  .slider .slick-arrow {
    top: auto;
    bottom: 0;
  }
}

.search__wrap {
  background: rgb(247, 246, 244);

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}
.white .search__wrap:nth-child(1), .white .search__wrap:nth-child(2) {
  background: #fff;
}
.search__keywords {
  margin: 0 auto;
  padding: 50px 0;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  .search__keywords {
    padding: 50px 0 20px 0;
  }
}
.search__keywords--wrap {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .search__keywords--wrap {
    margin-top: 5px;
  }
}
.search__keywords h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;

  position: relative;

  padding-left: 2em;

  cursor: pointer;
}
.search__keywords h2::before {
  background-color: #212121;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 1em;
  height: 3px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.search__keywords h2::after {
  background-color: #212121;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 1em;
  height: 3px;

  content: "";
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.search__keywords.open h2::after {
  display: none;
}
.search__keywords--category {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .search__keywords--category {
    margin-bottom: 24px;
  }
}
.search__keywords--category h3 {
  font-size: 16px;
  font-weight: 500;

  padding: 10px 0;

  vertical-align: top;
}
.search__keywords--category h3 small {
  font-weight: 500;
}
.search__keywords--select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.search__keywords--select label {
  display: inline-block;
}
.search__keywords--select label span {
  border: 1px solid #ccced5;
  border-radius: 30px;
  background: #f5f5f7;

  color: #999daa;

  display: inline-block;

  padding: 5px 15px;
}
.search__keywords--select label input {
  display: none;
}
.search__keywords--select label input:checked + span {
  border: 1px solid #333a56;
  background-color: #333a56;

  color: #fff;
}
.search__keywords--select.check label span {
  border: none;
  background: none;

  position: relative;

  padding: 10px 10px 10px 35px;
}
.search__keywords--select.check label span::before {
  border-radius: 50%;
  background: #f5f5f7;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 26px;
  height: 26px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.search__keywords--select.check label span::after {
  border-right: 2px solid #333a56;
  border-bottom: 2px solid #333a56;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 5px;
  height: 10px;

  content: "";
  -webkit-transform: translateY(-50%) translateX(10px) rotate(45deg);
          transform: translateY(-50%) translateX(10px) rotate(45deg);
}
.search__keywords--select.check label input:checked + span {
  border: none;
  background: none;

  color: #333a56;
}
.search__keywords--select.check label input:checked + span::before {
  background: #333a56;
}
.search__keywords--select.check label input:checked + span::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.search__result {
  margin: 0 auto;
  max-width: 1200px;
}
.search__result--conditions {
  font-family: "Zen Old Mincho", serif;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding-bottom: 50px;
  max-width: 1200px;
  width: 100%;
}
.search__result--conditions button {
  border: none;
  background: none;

  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  color: #333a56;

  position: relative;

  margin-left: 20px;
  padding-left: 35px;
}
.search__result--conditions button::before {
  background: url("../image/icon_cross_gray.svg") no-repeat center center;
  background-size: cover;

  position: absolute;
  top: 50%;
  left: 0;

  display: block;

  width: 22px;
  height: 22px;

  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .search__result--conditions button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin-top: 0.5em;
    margin-left: 0;
    width: 100%;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
}
.search__result--wrap {
  padding: 50px 0;
}
.search__result .col3__item--detail {
  font-size: 14px;
}

.contact {
  background: url("../image/bg_contact.jpg") no-repeat center center;
  background-size: cover;

  color: #fff;

  margin: -2px 0;
  padding: 80px 5%;
  min-height: 700px;
}
@media only screen and (max-width: 767px) {
  .contact {
    background: url("../image/bg_contact_sp.png") no-repeat center top #333a56;
    background-size: cover;
  }
}
.contact__wrap {
  margin: 0 auto;
  max-width: 1200px;
}
.contact__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-bottom: 50px;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.contact__heading--image {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .contact__heading--image {
    display: none;
  }
}
.contact__heading--image-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .contact__heading--image-sp {
    display: block;

    margin: 0 0 20px 0;
  }
}
.contact__heading--text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 40px;
  width: 50%;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.contact__heading--text h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;

  margin-bottom: 20px;
}
.contact__heading--text h2 .label {
  font-size: 20px;
  font-weight: normal;

  display: block;

  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .contact__heading--text {
    padding-left: 0;
    width: 100%;
  }
  .contact__heading--text h2 {
    font-size: 24px;

    text-align: center;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .contact__heading--text h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .contact__heading--text h2 {
    font-size: max( 5.8666666667vw , 12px);
  }
}
@media only screen and (max-width: 767px) {
  .contact__heading--text h2 .label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 1440px) {
  .contact__heading--text h2 .label {
    font-size: max( 1.1111111111vw, 12px );
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .contact__heading--text h2 .label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .contact__heading--text h2 .label {
    font-size: max( 4.2666666667vw , 12px);
  }
}
@media only screen and (max-width: 767px) {
  .contact__heading--read {
    text-align: center;
  }
}
.contact .button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 40px;
  -webkit-justify-content: center;
          justify-content: center;
}
.contact .button p {
  width: 50%;
}
.contact .button p a {
  width: 100%;
}
@media only screen and (max-width: 980px) {
  .contact .button {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    gap: 15px;
  }
  .contact .button p {
    width: 100%;
  }
}

.footer {
  background: url("../image/bg_footer.png") no-repeat left bottom #333a56;

  color: #fff;

  padding: 20px 5% 20px 5%;
}
.footer a {
  color: #fff;
}
.footer__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto;
  max-width: 1440px;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.footer__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto 30px auto;
  padding-top: 60px;
  max-width: 1440px;

  -webkit-align-items: last baseline;
          align-items: last baseline;
  -webkit-box-align: last baseline;
  -webkit-box-pack: justify;
  -ms-flex-align: last baseline;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.footer__logo--image {
  max-width: 250px;
}
.footer__logo--image a img {
  display: block;
}
.footer__logo--image a svg {
  display: block;

  fill: #fff;
}
.footer__corp {
  width: 40%;
}
@media only screen and (max-width: 1170px) {
  .footer__corp {
    width: 100%;
  }
}
.footer__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  width: 60%;

  -webkit-box-pack: end;
  -ms-flex-pack: end;
  gap: 100px;
  -webkit-justify-content: end;
          justify-content: end;
}
.footer__link--text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  gap: 100px;
}
@media only screen and (max-width: 1170px) {
  .footer__link {
            flex-direction: column;

    width: 100%;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: start;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
    -ms-flex-pack: start;
    gap: 0;
    -webkit-justify-content: start;
            justify-content: start;
  }
}
.footer__to-head a {
  background: url("../image/icon_to-head.svg") no-repeat 0 0;
  background-size: cover;

  display: inline-block;

  width: 45px;
  height: 45px;
}
.footer__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
}
.footer__address {
  margin-top: 10px;
}
.footer__address .zip {
  display: inline-block;

  padding-right: 1em;
}
.footer__map {
  margin-top: 10px;
}
.footer__map a::after {
  display: none;
}
.footer__certification {
  margin-top: 20px;
}
.footer__certification p {
  font-size: 10px;
}
.footer__certification img {
  max-width: 130px;
}
* + .footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin-top: 30px;

  gap: 20px;
}
* + .footer__sns li a::after {
  display: none;
}
.footer__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
          flex-direction: column;

  margin-bottom: 20px;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
  gap: 10px 20px;
}
.footer__menu li {
  font-weight: 500;
}
.footer__menu li a {
  width: 100%;
}
.footer__menu li a[target=_blank]::after {
  background: url("../image/icon_newwindow_w.svg") no-repeat 0 0;
  background-size: 14px 14px;
}
.footer__menu.button-small li {
  width: 200px;
}
@media only screen and (max-width: 1170px) {
  .footer__menu.button-small li {
    width: 100%;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  margin: 0 auto 0 auto;
  padding-top: 60px;
  padding-bottom: 40px;
  max-width: 1440px;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.footer__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .footer__nav ul {
    margin-bottom: 10px;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0 15px;
  }
}
.footer__nav ul li {
  font-size: 12px;
}
.footer__nav ul li a {
  padding-right: 0;
}
.footer__nav ul li a[target=_blank]:after {
  display: none;
}
* + .footer__nav {
  border-top: 1px solid #999daa;

  margin-top: 130px;
  padding-top: 20px;
  padding-bottom: 0;
}
@media only screen and (max-width: 1170px) {
  .footer {
    padding: 40px 5%;
  }
  .footer__wrap {
            flex-direction: column;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
  .footer__logo {
    margin: 0 auto 40px auto;
    padding: 0;
  }
  .footer__logo--image {
    max-width: 40%;
  }
  .footer__address .zip {
    display: block;
  }
  .footer__menu {
    margin: 40px 0 20px 0;
  }
  .footer__menu li {
    display: block;
  }
  .footer__menu.button-small {
    margin: 10px 0 20px 0;
  }
  .footer__nav {
            flex-direction: column;

    margin: 0 auto 0 auto;
    padding: 0;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
  }
  .footer__nav li:last-child {
    padding-left: 0;
  }
  .footer__nav li:last-child::before {
    display: none;
  }
  * + .footer__nav {
    margin: 60px auto 150px auto;
    padding-top: 20px;
  }
}
.footersimple {
  padding: 10px 5% 20px 5%;

  text-align: center;
}
.footersimple__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;

  width: 100%;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.8em;
  -webkit-justify-content: center;
          justify-content: center;
}
.footersimple__nav li {
  border-right: 1px solid #424242;

  font-size: 12px;
  line-height: 1;

  padding-right: 1em;
}
.footersimple__nav li:last-child {
  border-right: none;

  padding-right: 0;
}
.footersimple__copyright {
  font-size: 12px;

  margin-top: 1em;
}

.copyright {
  font-size: 12px;
}

body {
  opacity: 1;
}
