@charset "UTF-8";
/*common*/
/*-------------------------------------------

font 

-------------------------------------------*/
@font-face {
  font-family: "Noto Serif JP";
  src: url("/download?file_id=250024") format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("/download?file_id=250025") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/download?file_id=250026") format("woff2"), url("/download?file_id=250027") format("woff");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/download?file_id=250028") format("woff2"), url("/download?file_id=250029") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/download?file_id=250030") format("woff2"), url("/download?file_id=250031") format("woff");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "MPLUS1p";
  src: url("/download?file_id=251649") format("woff2"), url("/download?file_id=251648") format("woff");
  font-display: swap;
  font-weight: normal;
}
@font-face {
  font-family: "MPLUS1p";
  src: url("/download?file_id=251651") format("woff2"), url("/download?file_id=251650") format("woff");
  font-display: swap;
  font-weight: bold;
}
@font-face {
  font-family: "Barlow";
  src: url("/download?file_id=252426") format("woff2"), url("/download?file_id=252425") format("woff");
  font-display: swap;
  font-weight: bold;
  font-style: italic;
}
body {
  font-family: "Noto Sans JP";
  position: relative;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.1s ease;
}
a:hover {
  color: #0063AE;
}

.container {
  max-width: 1080px;
  margin: auto;
}
@media screen and (min-width: 821px) {
  .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.pcnone {
  display: none;
}
@media screen and (max-width: 820px) {
  .pcnone {
    display: block;
  }
}

.spnone {
  display: block;
}
@media screen and (max-width: 820px) {
  .spnone {
    display: none;
  }
}

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

#page {
  overflow: hidden;
}

/*-------------------------------------------

header

-------------------------------------------*/
header:not(.modal__header) {
  display: flex;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  height: 55px;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  border-bottom: 1px solid #E8E8E8;
}
header:not(.modal__header) .logo-wrap {
  display: flex;
  align-items: center;
  padding: 0 18px;
}
header:not(.modal__header) .logo-wrap img {
  margin-right: 19px;
  display: inline-block;
}
header:not(.modal__header) .logo-wrap span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
header:not(.modal__header) nav {
  height: 100%;
  padding-right: 23px;
}
@media screen and (max-width: 820px) {
  header:not(.modal__header) nav {
    display: none;
  }
}
header:not(.modal__header) nav ul:not(.child-menu) {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
header:not(.modal__header) nav ul:not(.child-menu) li {
  height: 100%;
  padding: 0 1em;
  position: relative;
}
header:not(.modal__header) nav ul:not(.child-menu) li a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}
header:not(.modal__header) nav ul.child-menu {
  position: absolute;
  background: rgba(0, 31, 80, 0.9);
  padding: 20px 56px 20px 43px;
  top: 0;
  visibility: hidden;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
  min-width: 260px;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -1;
}
header:not(.modal__header) nav ul.child-menu li {
  margin-bottom: 11px;
  padding: 0;
}
header:not(.modal__header) nav ul.child-menu li a {
  color: #fff;
  font-size: 15px;
  justify-content: flex-start;
}
header:not(.modal__header) nav ul.child-menu li a::before {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background: #2E88FD;
  margin-right: 12px;
}
header:not(.modal__header) nav ul.child-menu li a:hover {
  color: #2E88FD;
}
header:not(.modal__header) .spmenubtn {
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  header:not(.modal__header) .spmenubtn {
    position: relative; /*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 30px;
    height: 20px;
    border-radius: 5px;
  }
  header:not(.modal__header) .spmenubtn span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #001F50;
    width: 100%;
  }
  header:not(.modal__header) .spmenubtn span:nth-of-type(1) {
    top: 0;
  }
  header:not(.modal__header) .spmenubtn span:nth-of-type(2) {
    top: 50%;
  }
  header:not(.modal__header) .spmenubtn span:nth-of-type(3) {
    top: 100%;
  }
}

li.has-child.active .child-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

/*-------------------------------------------

cta

-------------------------------------------*/
.cta-area {
  padding: 72px 0 80px;
}
.cta-area .cta-btn-first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 73px;
}
@media screen and (max-width: 820px) {
  .cta-area .cta-btn-first {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.cta-area .cta-btn-first a {
  width: calc((100% - 32px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 820px) {
  .cta-area .cta-btn-first a {
    width: 100%;
  }
}
.cta-area .cta-btn-first a::before, .cta-area .cta-btn-first a::after {
  font-size: 0px;
}
.cta-area .cta-btn-first a::after {
  content: url("/cc104700/file/251710.png");
  position: absolute;
  right: 25px;
}
.cta-area .cta-btn-first a.dl {
  background: #FDC50A;
  border: 1px solid #FDC50A;
}
.cta-area .cta-btn-first a.dl::before {
  content: url("/cc104700/file/251423.png");
  margin-right: 24px;
}
.cta-area .cta-btn-first a.dl:hover {
  background: #fff;
  color: inherit;
}
@media screen and (max-width: 820px) {
  .cta-area .cta-btn-first a.dl {
    margin-bottom: 20px;
    justify-content: flex-start;
    padding-left: 20px;
  }
}
.cta-area .cta-btn-first a.case {
  background: rgba(47, 47, 47, 0.09);
  border: 1px solid rgba(47, 47, 47, 0.09);
}
.cta-area .cta-btn-first a.case::before {
  content: url("/cc104700/file/251424.png");
  margin-right: 24px;
}
.cta-area .cta-btn-first a.case:hover {
  background: #fff;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .cta-area .cta-btn-first a.case {
    justify-content: flex-start;
    padding-left: 20px;
  }
}
.cta-area .cta-btn-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-area .cta-btn-contact a {
  width: calc((100% - 32px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 820px) {
  .cta-area .cta-btn-contact a {
    width: 100%;
  }
}
.cta-area .cta-btn-contact a::before, .cta-area .cta-btn-contact a::after {
  font-size: 0px;
}
.cta-area .cta-btn-contact a::after {
  content: url("/cc104700/file/251411.png");
  position: absolute;
  right: 25px;
}
.cta-area .cta-btn-contact a.mail {
  height: 130px;
  background: #001F50;
  border: 1px solid #001F50;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cta-area .cta-btn-contact a.mail {
    justify-content: flex-start;
    padding-left: 20px;
    margin-bottom: 20px;
  }
}
.cta-area .cta-btn-contact a.mail::before {
  content: url("/cc104700/file/251431.png");
  margin-right: 24px;
}
.cta-area .cta-btn-contact a.mail:hover {
  background: #fff;
  color: #001F50;
}
.cta-area .cta-btn-contact a.mail:hover::before {
  content: url("/cc104700/file/251432.png");
}
.cta-area .cta-btn-contact a.mail:hover::after {
  content: url("/cc104700/file/251434.png");
}
.cta-area .cta-btn-contact .tel {
  height: 130px;
  border: 1px solid #001F50;
  padding-top: 10px;
  text-align: center;
  display: block;
  width: calc((100% - 32px) / 2);
}
@media screen and (max-width: 821px) {
  .cta-area .cta-btn-contact .tel {
    width: 100%;
  }
}
.cta-area .cta-btn-contact .tel a {
  font-size: 39px;
  font-weight: bold;
  width: 100%;
  display: block;
}
.cta-area .cta-btn-contact .tel a::before {
  content: url("/cc104700/file/251433.png");
  margin-right: 24px;
}
@media screen and (min-width: 821px) {
  .cta-area .cta-btn-contact .tel a {
    pointer-events: none;
  }
}
.cta-area .cta-btn-contact .tel a + span {
  font-size: 16px;
  text-align: center;
  line-height: 1.85;
}
.cta-area .cta-btn-contact .tel a::after {
  display: none;
}
@media screen and (max-width: 820px) {
  .cta-area .cta-btn-contact {
    flex-direction: column;
  }
}

/*-------------------------------------------

footer

-------------------------------------------*/
footer:not(.modal__footer) {
  background: #383737;
  padding: 49px 0 0;
  color: #fff;
}
footer:not(.modal__footer) .d-md-flex {
  justify-content: space-between;
}
footer:not(.modal__footer) .logo, footer:not(.modal__footer) .list:nth-of-type(1) {
  width: 30%;
}
@media screen and (max-width: 768px) {
  footer:not(.modal__footer) .logo, footer:not(.modal__footer) .list:nth-of-type(1) {
    width: 100%;
  }
}
footer:not(.modal__footer) .logo a:hover {
  color: inherit;
}
footer:not(.modal__footer) .logo a:hover img, footer:not(.modal__footer) .logo a:hover span {
  opacity: 0.8;
}
@media screen and (max-width: 820px) {
  footer:not(.modal__footer) .logo {
    margin-bottom: 40px;
  }
}
footer:not(.modal__footer) .logo img {
  margin-bottom: 15px;
}
footer:not(.modal__footer) .logo span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
footer:not(.modal__footer) .logo p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
footer:not(.modal__footer) .list ul li {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 17px;
  position: relative;
  padding-left: 20px;
}
footer:not(.modal__footer) .list ul li::before {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0.7em;
  left: 0;
}
footer:not(.modal__footer) .list ul li > ul {
  padding-left: 0;
  padding-top: 7px;
}
footer:not(.modal__footer) .list ul li > ul li {
  font-weight: normal;
  margin-bottom: 0px;
}
footer:not(.modal__footer) .list ul li > ul li::before {
  content: "・";
  background: transparent;
  top: 0;
}
footer:not(.modal__footer) .list ul li a[target=_blank]::after {
  content: url("/cc104700/file/251435.png");
  margin-left: 11px;
}
footer:not(.modal__footer) .list ul li a:hover {
  color: inherit;
  opacity: 0.8;
}
footer:not(.modal__footer) .copyright {
  margin-top: 72px;
  padding-bottom: 10px;
}
footer:not(.modal__footer) .copyright p {
  margin-bottom: 0;
  font-size: 10px;
  text-align: center;
}

/*-------------------------------------------

breadcrumb

-------------------------------------------*/
.breadcrumb {
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-right: 20px;
  }
}
.breadcrumb ul {
  margin-bottom: 0;
}
.breadcrumb ul li {
  display: inline;
  font-size: 16px;
}
.breadcrumb ul li a {
  font-size: inherit;
}
.breadcrumb ul li:not(:last-child)::after {
  content: "＞";
  padding: 0 1em;
}

/*-------------------------------------------

rightfix

-------------------------------------------*/
.rightfix {
  position: fixed;
  z-index: 9999;
}
@media screen and (min-width: 821px) {
  .rightfix {
    right: -1px;
    top: 60%;
  }
}
@media screen and (max-width: 820px) {
  .rightfix {
    left: 0;
    bottom: -2px;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .rightfix ul {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
@media screen and (max-width: 820px) {
  .rightfix ul li {
    width: 100%;
  }
}
.rightfix ul li a {
  width: 150px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #fff;
  box-shadow: 0px 3px 3px rgba(16, 16, 114, 0.1);
  position: relative;
  font-size: 10px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 820px) {
  .rightfix ul li a {
    width: 100%;
    border: 0;
  }
}
.rightfix ul li a.dl {
  color: #2F2F2F;
  background: #FDC50A;
  margin-bottom: 2px;
}
.rightfix ul li a.dl::before {
  content: url("/cc104700/file/251425.png");
  font-size: 0px;
  padding: 0 10px 0 14px;
}
.rightfix ul li a.dl::after {
  content: url("/cc104700/file/251428.png");
  position: absolute;
  right: 14px;
  font-size: 0px;
}
.rightfix ul li a.dl:hover {
  background: #fff;
  border-color: #FDC50A;
}
.rightfix ul li a.dl:hover::before {
  content: url("/cc104700/file/251425.png");
  font-size: 0px;
  padding: 0 10px 0 14px;
}
.rightfix ul li a.dl:hover::after {
  content: url("/cc104700/file/251428.png");
  position: absolute;
  right: 14px;
  font-size: 0px;
}
.rightfix ul li a.contact {
  color: #fff;
  background: #001F50;
}
.rightfix ul li a.contact::before {
  content: url("/cc104700/file/251426.png");
  font-size: 0px;
  padding: 0 10px 0 16px;
}
.rightfix ul li a.contact::after {
  content: url("/cc104700/file/251429.png");
  position: absolute;
  right: 14px;
  font-size: 0px;
}
.rightfix ul li a.contact:hover {
  background: #fff;
  color: #001F50;
  border-color: #001F50;
}
.rightfix ul li a.contact:hover::before {
  content: url("/cc104700/file/251427.png");
  font-size: 0px;
  padding: 0 10px 0 16px;
}
.rightfix ul li a.contact:hover::after {
  content: url("/cc104700/file/251430.png");
  position: absolute;
  right: 14px;
  font-size: 0px;
}

/*-------------------------------------------

other

-------------------------------------------*/
.list-style-disc {
  list-style: disc;
}

.privacy p, .privacy dt, .privacy dd, .privacy ul, .privacy li {
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
.privacy dt {
  margin-top: 1em;
}

/*-------------------------------------------



-------------------------------------------*/
/*-------------------------------------------



-------------------------------------------*/
/*-------------------------------------------



-------------------------------------------*/
/*-------------------------------------------



-------------------------------------------*/
/*-------------------------------------------



-------------------------------------------*/
/*-------------------------------------------



-------------------------------------------*/
/*toppage*/
/*-------------------------------------------

mv

-------------------------------------------*/
.mv {
  background: url("/cc104700/file/251405.png") no-repeat right/cover;
  height: 455px;
  padding: 45px 72px 68px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .mv {
    padding: 0;
    background: url("/cc104700/file/251406.png") no-repeat center/cover;
  }
}
.mv::before {
  content: "";
  display: block;
  width: 64%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #101722 0%, rgba(30, 42, 60, 0.73) 40%, rgba(255, 255, 255, 0) 80%);
}
@media screen and (max-width: 820px) {
  .mv::before {
    background: linear-gradient(to bottom, #101722 0%, rgba(30, 42, 60, 0.73) 60%, rgba(255, 255, 255, 0) 100%);
    width: 100vw;
    height: 60%;
  }
}
.mv .mv-inner {
  color: #222222;
  font-family: "Noto Serif JP";
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 820px) {
  .mv .mv-inner {
    justify-content: flex-start;
    align-items: center;
  }
}
.mv .mv-inner .mvtext {
  max-width: 480px;
}
@media screen and (max-width: 820px) {
  .mv .mv-inner .mvtext {
    width: 100%;
  }
}
.mv .mv-inner .mvtext h1 {
  font-size: 84px;
  font-weight: bold;
  line-height: 0.8;
  margin-bottom: 23px;
  letter-spacing: 0.025em;
  margin-top: 17px;
  white-space: nowrap;
  font-family: "Barlow";
  color: #fff;
  text-align: center;
  font-style: italic;
}
@media screen and (min-width: 621px) and (max-width: 820px) {
  .mv .mv-inner .mvtext h1 {
    padding: 20px;
    font-size: 26px;
    text-align: center;
  }
}
@media screen and (max-width: 620px) {
  .mv .mv-inner .mvtext h1 {
    font-size: 16vw;
    text-align: center;
  }
}
.mv .mv-inner .mvtext h1 .color-bl {
  color: #0098FF;
}
.mv .mv-inner .mvtext h1 + p {
  text-align: center;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP";
  font-weight: bold;
  line-height: 2;
  margin-top: 28px;
}
@media screen and (max-width: 620px) {
  .mv .mv-inner .mvtext h1 + p {
    font-size: 4.2vw;
  }
}
.mv .mv-badge {
  position: absolute;
  right: 42px;
  top: 23px;
  background: linear-gradient(to bottom, #309A91, #184D49);
  color: #fff;
  border: 1px solid #fff;
  width: 178px;
  height: 178px;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 100vh;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.85;
  padding-top: 10px;
}
@media screen and (max-width: 820px) {
  .mv .mv-badge {
    right: 20px;
    bottom: 20px;
    top: auto;
    width: 130px;
    height: 130px;
    font-size: 14px;
  }
}

/*-------------------------------------------

top-bn-wrap

-------------------------------------------*/
.top-bn-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .top-bn-wrap {
    flex-wrap: wrap;
  }
}
.top-bn-wrap .top-bn {
  position: relative;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 260px;
  overflow: hidden;
}
@media screen and (min-width: 821px) {
  .top-bn-wrap .top-bn {
    -webkit-transform: skew(-20deg) translateX(-25%);
            transform: skew(-20deg) translateX(-25%);
    flex: 0 0 65%;
  }
}
@media screen and (max-width: 820px) {
  .top-bn-wrap .top-bn {
    flex: 0 0 auto;
    width: 100%;
  }
}
.top-bn-wrap .top-bn .top-bn-inner {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #fff;
  height: 260px;
}
@media screen and (min-width: 821px) {
  .top-bn-wrap .top-bn .top-bn-inner {
    -webkit-transform: skew(20deg);
            transform: skew(20deg);
  }
}
.top-bn-wrap .top-bn .top-bn-inner .dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 820px) {
  .top-bn-wrap .top-bn .top-bn-inner .dl {
    flex-direction: column;
    justify-content: center;
  }
}
.top-bn-wrap .top-bn .top-bn-inner .dl .dt {
  font-family: "Noto Serif JP";
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  padding-right: 25px;
  letter-spacing: 0.05em;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 820px) {
  .top-bn-wrap .top-bn .top-bn-inner .dl .dt {
    border-right: 0;
    border-bottom: 1px solid #fff;
    padding-right: 0;
    padding-bottom: 25px;
  }
}
.top-bn-wrap .top-bn .top-bn-inner .dl .dt span {
  font-size: 15px;
  font-family: "Noto Sans JP";
}
.top-bn-wrap .top-bn .top-bn-inner .dl .dd {
  padding-left: 19px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 820px) {
  .top-bn-wrap .top-bn .top-bn-inner .dl .dd {
    padding-left: 0;
    padding-top: 20px;
  }
}
.top-bn-wrap .top-bn.top-bn-left::before {
  content: "";
  display: block;
  background: url("/cc104700/file/252432.jpg") no-repeat top center/cover;
  width: 110%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 821px) {
  .top-bn-wrap .top-bn.top-bn-left::before {
    -webkit-transform: skew(20deg);
            transform: skew(20deg);
  }
}
.top-bn-wrap .top-bn.top-bn-left .top-bn-inner::before {
  content: "";
  display: block;
  width: 110%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #2869FC, #0B296C);
  -webkit-filter: opacity(0.71);
          filter: opacity(0.71);
  transition: all 0.1s ease;
}
@media screen and (min-width: 821px) {
  .top-bn-wrap .top-bn.top-bn-left .top-bn-inner::before {
    z-index: -1;
  }
}
.top-bn-wrap .top-bn.top-bn-left .top-bn-inner .dl {
  padding-left: calc(100% - 540px);
}
@media screen and (min-width: 821px) and (max-width: 1000px) {
  .top-bn-wrap .top-bn.top-bn-left .top-bn-inner .dl {
    padding-left: 30%;
  }
}
@media screen and (max-width: 820px) {
  .top-bn-wrap .top-bn.top-bn-left .top-bn-inner .dl {
    padding-left: 0;
  }
}
@media screen and (min-width: 1001px) {
  .top-bn-wrap .top-bn.top-bn-left .top-bn-inner .dl .dd {
    position: relative;
  }
  .top-bn-wrap .top-bn.top-bn-left .top-bn-inner .dl .dd::after {
    content: url("/cc104700/file/251411.png");
    position: absolute;
    right: -40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 1000px) {
  .top-bn-wrap .top-bn.top-bn-left .top-bn-inner .dl::after {
    content: url("/cc104700/file/251411.png");
    position: absolute;
    left: auto;
    right: 20px;
  }
}
.top-bn-wrap .top-bn.top-bn-left .top-bn-inner::before {
  transition: all 0.3s ease;
}
.top-bn-wrap .top-bn.top-bn-left .top-bn-inner:hover::before {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
.top-bn-wrap .top-bn.top-bn-right::before {
  content: "";
  display: block;
  background: url("/cc104700/file/252433.jpg") no-repeat top center/cover;
  width: 105%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 821px) {
  .top-bn-wrap .top-bn.top-bn-right::before {
    -webkit-transform: skew(20deg) translateX(-5%);
            transform: skew(20deg) translateX(-5%);
  }
}
.top-bn-wrap .top-bn.top-bn-right .top-bn-inner::before {
  content: "";
  display: block;
  width: 110%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #4DCBC1, #006A62);
  -webkit-filter: opacity(0.8);
          filter: opacity(0.8);
}
@media screen and (min-width: 821px) {
  .top-bn-wrap .top-bn.top-bn-right .top-bn-inner::before {
    z-index: -1;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
.top-bn-wrap .top-bn.top-bn-right .top-bn-inner .dl {
  justify-content: flex-end;
  padding-right: calc(100% - 540px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: rotate(0.05deg);
          transform: rotate(0.05deg);
}
@media screen and (min-width: 821px) and (max-width: 1000px) {
  .top-bn-wrap .top-bn.top-bn-right .top-bn-inner .dl {
    padding-right: 30%;
  }
}
@media screen and (max-width: 820px) {
  .top-bn-wrap .top-bn.top-bn-right .top-bn-inner .dl {
    justify-content: center;
    padding-right: 0;
  }
}
.top-bn-wrap .top-bn.top-bn-right .top-bn-inner .dl::after {
  content: url("/cc104700/file/251411.png");
}
@media screen and (max-width: 820px) {
  .top-bn-wrap .top-bn.top-bn-right .top-bn-inner .dl::after {
  content: url("/cc104700/file/251411.png");
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 0px;
    right: 20px;
  }
}
@media screen and (min-width: 821px) and (max-width: 1000px) {
  .top-bn-wrap .top-bn.top-bn-right .top-bn-inner .dl::after {
  content: url("/cc104700/file/251411.png");
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 0px;
    right: 20px;
  }
}
.top-bn-wrap .top-bn.top-bn-right .top-bn-inner::before {
  transition: all 0.3s ease;
}
.top-bn-wrap .top-bn.top-bn-right .top-bn-inner:hover::before {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}

#top-library h2 {
  font-family: "Noto Serif JP";
}
#top-library .top-yt-wrap {
  padding-top: 40px;
}
#top-library .top-yt-wrap figure .img {
  position: relative;
}
#top-library .top-yt-wrap figure .img::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("/cc104700/file/272631.png") no-repeat center;
  background-size: 53px auto;
  width: 53px;
  height: 37px;
}
#top-library .top-yt-wrap figcaption {
  padding: 10px;
}
#top-library .top-yt-wrap h3 {
  font-size: 16px;
  font-weight: bold;
  color: #001F50;
  margin-bottom: 10px;
}
#top-library .top-yt-wrap h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 30px;
}
#top-library .top-yt-wrap .width-30 {
  margin: auto;
}
@media screen and (min-width: 768px) {
  #top-library .top-yt-wrap .width-30 {
    width: calc((100% - 2rem) / 3);
  }
}
@media screen and (min-width: 768px) {
  #top-library .top-yt-wrap .flexitem {
    width: calc((100% - 2rem) / 3);
  }
}
#top-library .top-yt-wrap .flexitem iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
/*-------------------------------------------

mente-wrap

-------------------------------------------*/
.mente-wrap {
  padding-top: 43px;
}
.mente-wrap .mente-box a {
  background: url("/cc104700/file/252434.png") no-repeat center/cover;
  padding: 37px;
  text-align: center;
  color: #fff;
  position: relative;
  display: block;
  transition: all 0.3s ease;
}
.mente-wrap .mente-box a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #3693C4;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
  transition: all 0.3s ease;
}
.mente-wrap .mente-box a:hover::before {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
.mente-wrap .mente-box a::after {
  content: url("/cc104700/file/251411.png");
  position: absolute;
  right: 45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 820px) {
  .mente-wrap .mente-box a::after {
    right: 15px;
  }
}
.mente-wrap .mente-box .mente-title {
  position: relative;
  display: block;
}
.mente-wrap .mente-box .mente-title .p {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: block;
}
.mente-wrap .mente-box .mente-title .h3 {
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 820px) {
  .mente-wrap .mente-box .mente-title .h3 {
    font-size: 36px;
  }
}
.mente-wrap .mente-box .mente-title + .p {
  position: relative;
  font-size: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  display: block;
}
@media screen and (max-width: 820px) {
  .mente-wrap .mente-box .mente-title + .p {
    font-size: 14px;
  }
}

/*-------------------------------------------

main

-------------------------------------------*/
section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 820px) {
  section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
section h2 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "MPLUS1p";
  color: #001F50;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  section h2 {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #001F50;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*---top-products--*/
#top-products {
  padding-bottom: 0;
}
#top-products h2 {
  font-family: "Noto Serif JP";
}
#top-products .btn-round {
  padding: 50px 0 0;
}
#top-products .btn-round a {
  width: 320px;
  height: 43px;
  background: #2F2F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2F2F2F;
  color: #fff;
  border-radius: 100vh;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  transition: all 0.1s ease;
  margin: auto;
}
#top-products .btn-round a::after {
  content: url("/cc104700/file/251417.png");
  position: absolute;
  right: 10px;
  font-size: 0px;
}
#top-products .btn-round a:hover {
  background: #fff;
  color: #2F2F2F;
}
#top-products .btn-round a:hover::after {
  content: url("/cc104700/file/251712.png");
}
#top-products .products-list {
  display: flex;
}
@media screen and (max-width: 820px) {
  #top-products .products-list {
    flex-wrap: wrap;
  }
}
#top-products .products-list .products-list-item {
  display: block;
  width: 346px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 820px) {
  #top-products .products-list .products-list-item {
    width: 100%;
  }
}
#top-products .products-list .products-list-item:not(:last-child) {
  margin-right: 21px;
}
@media screen and (max-width: 820px) {
  #top-products .products-list .products-list-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
#top-products .products-list .products-list-item::before {
  background: linear-gradient(to bottom, #fff 69px, #E8EFF5 69px 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transition: 0.3s;
}
#top-products .products-list .products-list-item::after {
  background: linear-gradient(to bottom, #fff 69px, #001F50 69px 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  transition: 0.3s;
}
#top-products .products-list .products-list-item img {
  transition: all 0.3s ease;
  opacity: 1;
}
#top-products .products-list .products-list-item span {
  display: block;
  padding: 25px 0 30px;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  color: #001F50;
  line-height: 1.7;
  position: relative;
}
#top-products .products-list .products-list-item span::after {
  content: url("/cc104700/file/251434.png");
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#top-products .products-list .products-list-item:hover::before {
  opacity: 0;
}
#top-products .products-list .products-list-item:hover img {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
#top-products .products-list .products-list-item:hover span {
  color: #fff;
}
#top-products .products-list .products-list-item:hover span::after {
  content: url("/cc104700/file/251411.png");
}

#top-reason {
  padding-bottom: 0;
}
#top-reason h2 {
  font-family: "Noto Serif JP";
}
#top-reason .btn-round {
  padding: 50px 0 0;
}
#top-reason .btn-round a {
  width: 320px;
  height: 43px;
  background: #2F2F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2F2F2F;
  color: #fff;
  border-radius: 100vh;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  transition: all 0.1s ease;
  margin: auto;
}
#top-reason .btn-round a::after {
  content: url("/cc104700/file/251417.png");
  position: absolute;
  right: 10px;
  font-size: 0px;
}
#top-reason .btn-round a:hover {
  background: #fff;
  color: #2F2F2F;
}
#top-reason .btn-round a:hover::after {
  content: url("/cc104700/file/251712.png");
}
#top-reason .top-reason-inner {
  width: 100%;
  height: 576px;
  overflow: hidden;
  position: relative;
}
#top-reason .top-reason-inner .reason-bg {
  height: 576px;
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner .reason-bg {
    flex-direction: column;
    height: auto;
    position: static;
  }
}
#top-reason .top-reason-inner .reason-bg .reason-item {
  width: 33.3333333333%;
  height: 100%;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  background: transparent;
  transition: all 0.3s ease;
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner .reason-bg .reason-item {
    width: 100%;
    position: relative;
    border-right: none;
    border-left: none;
  }
  #top-reason .top-reason-inner .reason-bg .reason-item::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.69);
    position: absolute;
    top: 0;
    left: 0;
  }
}
#top-reason .top-reason-inner .reason-bg .reason-item:hover {
  background: rgba(34, 34, 34, 0.69);
  border-left: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner .reason-bg .reason-item:hover {
    border-right: none;
    border-left: none;
  }
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner .reason-bg .reason-item.reason-item-01 {
    background: url("/cc104700/file/252468.png") no-repeat center/cover;
  }
  #top-reason .top-reason-inner .reason-bg .reason-item.reason-item-02 {
    background: url("/cc104700/file/252469.jpg") no-repeat center/cover;
  }
  #top-reason .top-reason-inner .reason-bg .reason-item.reason-item-03 {
    background: url("/cc104700/file/252837.png") no-repeat center/cover;
  }
}
#top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  color: #fff;
  padding: 41px 37px;
}
@media screen and (min-width: 821px) {
  #top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner {
    -webkit-animation: slideDown 0.3s forwards;
            animation: slideDown 0.3s forwards;
  }
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner {
    bottom: 0;
  }
}
@media screen and (min-width: 821px) {
  #top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner:hover {
    -webkit-animation: slideUp 0.3s forwards;
            animation: slideUp 0.3s forwards;
  }
  #top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner:hover .reason-item-text {
    opacity: 1;
  }
}
#top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner span {
  display: block;
}
#top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner .num {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}
#top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner .ja {
  font-family: "Noto Serif JP";
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 15px;
}
#top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner .reason-item-text {
  padding-top: 20px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.1;
  min-height: 168px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner .reason-item-text {
    min-height: 1px;
  }
}
@media screen and (min-width: 821px) {
  #top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner .reason-item-text {
    opacity: 0;
  }
}
#top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner .reason-item-text::before {
  content: "";
  display: block;
  width: 27px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
#top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner .reason-item-text .reason-item-arrow {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-top: 35px;
}
#top-reason .top-reason-inner .reason-bg .reason-item .reason-item-inner .reason-item-text .reason-item-arrow img {
  margin-left: 14px;
}
@media screen and (min-width: 821px) {
  #top-reason .top-reason-inner .reason-bg .reason-item:first-child {
    border-left: 1px solid transparent;
    border-right: 1px solid #FFFFFF;
  }
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner .reason-bg .reason-item:first-child {
    border-top: 1px solid transparent;
    border-bottom: 1px solid #FFFFFF;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
  }
}
@media screen and (min-width: 821px) {
  #top-reason .top-reason-inner .reason-bg .reason-item:last-child {
    border-right: 1px solid transparent;
    border-left: 1px solid #FFFFFF;
  }
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner .reason-bg .reason-item:last-child {
    border-bottom: 1px solid transparent;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
  }
}
#top-reason .top-reason-inner .top-reason-imageList {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top-reason .top-reason-inner .top-reason-imageList .top-reason-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#top-reason .top-reason-inner .top-reason-imageList .top-reason-img.reason-img01 {
  background: url("/cc104700/file/252468.png") no-repeat center/cover;
}
#top-reason .top-reason-inner .top-reason-imageList .top-reason-img.reason-img02 {
  background: url("/cc104700/file/252469.jpg") no-repeat center/cover;
}
#top-reason .top-reason-inner .top-reason-imageList .top-reason-img.reason-img03 {
  background: url("/cc104700/file/252837.png") no-repeat center/cover;
}
#top-reason .top-reason-inner .top-reason-imageList .top-reason-img.active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner .top-reason-imageList .top-reason-img {
    position: static;
  }
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner .top-reason-imageList {
    position: static;
  }
}
@media screen and (max-width: 820px) {
  #top-reason .top-reason-inner {
    position: static;
    height: auto;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes slideUp {
  from {
    bottom: -133px;
  }
  to {
    bottom: 0px;
  }
}
@keyframes slideUp {
  from {
    bottom: -133px;
  }
  to {
    bottom: 0px;
  }
}
@-webkit-keyframes slideDown {
  from {
    bottom: 0px;
  }
  to {
    bottom: -133px;
  }
}
@keyframes slideDown {
  from {
    bottom: 0px;
  }
  to {
    bottom: -133px;
  }
}
/*-------------------------------------------

service

-------------------------------------------*/
#service h2 {
  font-family: "Noto Serif JP";
}
#service .service-head {
  margin-bottom: 3px;
}
#service .service-head .service-head-text {
  display: flex;
  flex-direction: column;
  background: #BFDAF0;
  padding: 66px 50px 66px 30px;
  position: relative;
  width: 100%;
}
#service .service-head .service-head-text::after {
  content: url("/cc104700/file/251418.png");
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#service .service-head .service-head-text .title {
  font-size: 24px;
  color: #222222;
  font-weight: bold;
  font-family: "Noto Serif JP";
  margin-bottom: 35px;
}
#service .service-head .service-head-text .text01 {
  color: #2F2F2F;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
}
#service .service-head .service-head-text .text02 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  color: #001F50;
}
#service .service-head .service-head-text .text02 span.disc {
  display: flex;
}
#service .service-head .service-head-text .text02 span.disc::before {
  content: "・";
}
#service .service-head a {
  display: flex;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
@media screen and (max-width: 820px) {
  #service .service-head a {
    flex-direction: column;
  }
}
#service .service-head a:hover {
  color: inherit;
  border: 1px solid #001F50;
}
#service .service-head a:hover .service-head-text {
  background: #fff;
}
#service .service-head a:hover img {
  opacity: 0.9;
}
#service .service-content {
  background: #F7F7F7;
  padding: 56px 53px 60px;
}
#service .service-content .service-content-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  #service .service-content .service-content-items {
    flex-direction: column;
  }
}
#service .service-content .service-content-items .service-content-item {
  width: 292px;
  height: 292px;
  background: #fff;
  border: 1px solid #001F50;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  border-radius: 100vh;
}
@media screen and (max-width: 820px) {
  #service .service-content .service-content-items .service-content-item {
    margin-bottom: 20px;
  }
}
#service .service-content .service-content-items .service-content-item p:first-child {
  font-size: 22px;
  font-family: "Noto Serif JP";
  font-weight: bold;
  padding-bottom: 8px;
  position: relative;
  color: #001F50;
  margin-bottom: 10px;
}
#service .service-content .service-content-items .service-content-item p:first-child::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #001F50;
}
#service .service-content .service-content-items .service-content-item p:first-child span {
  font-size: 24px;
}
#service .service-content .service-content-items .service-content-item p:last-child {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.9;
  color: #001F50;
  margin-bottom: 0;
}
#service .service-content .btn-round {
  padding: 40px 0;
}
#service .service-content .btn-round a {
  width: 321px;
  height: 43px;
  background: #001F50;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #001F50;
  color: #fff;
  border-radius: 100vh;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  transition: all 0.1s ease;
  margin: auto;
}
#service .service-content .btn-round a::after {
  content: url("/cc104700/file/251417.png");
  position: absolute;
  right: 10px;
  font-size: 0px;
}
#service .service-content .btn-round a:hover {
  background: #fff;
  color: #001F50;
}
#service .service-content .btn-round a:hover::after {
  content: url("/cc104700/file/251419.png");
}
@media screen and (max-width: 820px) {
  #service .service-content .btn-round a {
    width: 100%;
    height: auto;
    min-height: 43px;
    padding: 5px 20px;
  }
}
#service .service-content p:last-child {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP";
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 0;
}

/*-------------------------------------------

aside

-------------------------------------------*/
aside {
  background: url("/cc104700/file/252435.jpg") no-repeat center/cover;
  margin: 40px auto 0;
  padding: 80px 0;
}
aside .d-md-flex .glossary-wrap, aside .d-md-flex .faq-wrap {
  width: calc((100% - 32px) / 2);
  background: #FFFFFF;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  padding: 37px 42px 43px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 820px) {
  aside .d-md-flex .glossary-wrap, aside .d-md-flex .faq-wrap {
    width: 100%;
  }
}
aside .d-md-flex .glossary-wrap span.small, aside .d-md-flex .faq-wrap span.small {
  font-size: 13px;
  display: block;
  letter-spacing: 0.05em;
  color: #001F50;
  font-family: "Noto Serif JP";
  text-align: center;
}
aside .d-md-flex .glossary-wrap h3, aside .d-md-flex .faq-wrap h3 {
  color: #001F50;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: "Noto Serif JP";
}
aside .d-md-flex .glossary-wrap h3::before, aside .d-md-flex .glossary-wrap h3::after, aside .d-md-flex .faq-wrap h3::before, aside .d-md-flex .faq-wrap h3::after {
  content: "";
  background: #001F50;
  height: 1px;
  width: 30px;
  margin: 0 10px;
}
aside .d-md-flex .glossary-wrap ul, aside .d-md-flex .faq-wrap ul {
  padding-left: 0;
}
aside .d-md-flex .glossary-wrap ul li a, aside .d-md-flex .faq-wrap ul li a {
  padding: 7px 20px;
  background: #fff;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 9px;
  padding-left: calc(20px + 1em);
  text-indent: -29px;
  display: block;
}
aside .d-md-flex .glossary-wrap ul li a::before, aside .d-md-flex .faq-wrap ul li a::before {
  content: url("/cc104700/file/251420.png");
  margin-right: 14px;
}
aside .d-md-flex .glossary-wrap .linkbtn-round, aside .d-md-flex .faq-wrap .linkbtn-round {
  padding-top: 10px;
  margin-top: auto;
}
aside .d-md-flex .glossary-wrap .linkbtn-round a, aside .d-md-flex .faq-wrap .linkbtn-round a {
  width: 126px;
  height: 37px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2F2F2F;
  color: #2F2F2F;
  border-radius: 100vh;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all 0.1s ease;
  margin: auto;
}
aside .d-md-flex .glossary-wrap .linkbtn-round a:hover, aside .d-md-flex .faq-wrap .linkbtn-round a:hover {
  background: #2F2F2F;
  color: #fff;
}
@media screen and (max-width: 820px) {
  aside .d-md-flex .glossary-wrap {
    margin-bottom: 20px;
  }
}
aside .d-md-flex .faq-wrap h3 {
  margin-top: 19px;
}

/*---------------------------------------------------

top-news

---------------------------------------------------------*/
#top-news {
  background: #F7F7F7;
  padding: 33px 0 40px;
}
#top-news .top-news-title {
  margin-right: 40px;
}
#top-news .top-news-title h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}
#top-news .top-news-title a {
  width: 110px;
  height: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2F2F2F;
  color: #2F2F2F;
  border-radius: 100vh;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all 0.1s ease;
  margin: auto;
  font-size: 14px;
}
#top-news .top-news-title a:hover {
  background: #2F2F2F;
  color: #fff;
}
@media screen and (max-width: 820px) {
  #top-news .top-news-title {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
#top-news .top-news-list a {
  font-size: 16px;
  font-weight: 50;
  line-height: 1.9;
  display: block;
}
@media screen and (max-width: 820px) {
  #top-news .top-news-list a {
    display: flex;
    flex-direction: column;
  }
}
#top-news .top-news-list a span.date {
  margin-right: 30px;
}

.glossary .page-mv {
  background: url("/cc104700/file/252451.jpg") no-repeat top center/cover;
  height: 260px;
}
.glossary .page-mv .mv-inner {
  height: 100%;
}
.glossary .page-mv .mv-inner h1 {
  text-align: center;
  color: #fff;
  font-family: "MPLUS1p";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

#glossary-detail .col-left, #glossary-list .col-left {
  width: 100%;
  max-width: 770px;
}
#glossary-detail .col-left .glossary-tags, #glossary-list .col-left .glossary-tags {
  margin-bottom: 19px;
}
#glossary-detail .col-left .glossary-tags span, #glossary-list .col-left .glossary-tags span {
  background: #001F50;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 2px 11px;
}
#glossary-detail .col-left h2, #glossary-list .col-left h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  padding-bottom: 26px;
  margin-bottom: 40px;
  border-bottom: 1px solid #D4D8DE;
}
#glossary-detail .col-left h2::after, #glossary-list .col-left h2::after {
  display: none;
}
#glossary-detail .col-left .glossary-detail-item, #glossary-list .col-left .glossary-detail-item {
  margin-bottom: 40px;
}
#glossary-detail .col-left .glossary-detail-item h3, #glossary-list .col-left .glossary-detail-item h3 {
  border-left: 3px solid #001F50;
  line-height: 29px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 19px;
  margin-bottom: 20px;
}
#glossary-detail .col-left .glossary-detail-item p, #glossary-list .col-left .glossary-detail-item p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
#glossary-detail .col-left .btn-round, #glossary-list .col-left .btn-round {
  padding-top: 10px;
}
#glossary-detail .col-left .btn-round a, #glossary-list .col-left .btn-round a {
  width: 100%;
  height: 43px;
  background: #2F2F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2F2F2F;
  color: #fff;
  border-radius: 100vh;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  transition: all 0.1s ease;
  margin: auto;
  max-width: 400px;
}
#glossary-detail .col-left .btn-round a::after, #glossary-list .col-left .btn-round a::after {
  content: url("/cc104700/file/251417.png");
  position: absolute;
  right: 10px;
  font-size: 0px;
}
#glossary-detail .col-left .btn-round a:hover, #glossary-list .col-left .btn-round a:hover {
  background: #fff;
  color: #2F2F2F;
}
#glossary-detail .col-left .btn-round a:hover::after, #glossary-list .col-left .btn-round a:hover::after {
  content: url("/cc104700/file/251712.png");
}
#glossary-detail .col-right, #glossary-list .col-right {
  width: 264px;
  margin-left: 47px;
}
@media screen and (max-width: 768px) {
  #glossary-detail .col-right, #glossary-list .col-right {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
}
#glossary-detail .col-right .sidebar .sidebar-item.list, #glossary-list .col-right .sidebar .sidebar-item.list {
  padding-bottom: 20px;
}
#glossary-detail .col-right .sidebar .sidebar-item.list h3, #glossary-list .col-right .sidebar .sidebar-item.list h3 {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: #E8EFF5;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #001F50;
  line-height: 1.65;
  margin-bottom: 20px;
}
#glossary-detail .col-right .sidebar .sidebar-item.list h3.category-list-title::before, #glossary-list .col-right .sidebar .sidebar-item.list h3.category-list-title::before {
  content: url("/cc104700/file/251549.png");
  margin-right: 13px;
}
#glossary-detail .col-right .sidebar .sidebar-item.list h3.word-list-title::before, #glossary-list .col-right .sidebar .sidebar-item.list h3.word-list-title::before {
  content: url("/cc104700/file/251551.png");
  margin-right: 8px;
  margin-left: 8px;
  position: relative;
  top: 3px;
}
#glossary-detail .col-right .sidebar .sidebar-item.list ul li, #glossary-list .col-right .sidebar .sidebar-item.list ul li {
  font-size: 18px;
  color: #001F50;
  margin-bottom: 20px;
}
#glossary-detail .col-right .sidebar .sidebar-item.list ul li a, #glossary-list .col-right .sidebar .sidebar-item.list ul li a {
  font-size: inherit;
}
#glossary-detail .col-right .sidebar .sidebar-item.list ul li a::before, #glossary-list .col-right .sidebar .sidebar-item.list ul li a::before {
  content: url("/cc104700/file/251550.png");
  margin-right: 11px;
}

#glossary-list {
  padding: 80px 0;
}
#glossary-list .col-left ul {
  padding-left: 0;
}
#glossary-list .col-left ul li {
  border: 1px solid #D4D8DE;
}
#glossary-list .col-left ul li:not(:last-child) {
  margin-bottom: 16px;
}
#glossary-list .col-left ul li section.glossary-list-item {
  padding: 0;
  background: #fff;
}
#glossary-list .col-left ul li section.glossary-list-item a {
  display: block;
}
#glossary-list .col-left ul li section.glossary-list-item .glossary-list-item-title {
  display: block;
  margin-bottom: 18px;
  background: #F7F7F7;
  padding: 17px 20px;
  transition: all 0.3s ease;
}
#glossary-list .col-left ul li section.glossary-list-item .glossary-list-item-title span.h2 {
  line-height: 1.4;
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  padding-bottom: 26px;
  margin-bottom: 40px;
  border-bottom: 1px solid #D4D8DE;
  display: block;
  letter-spacing: 0.05em;
  font-family: "MPLUS1p";
  color: #001F50;
}
#glossary-list .col-left ul li section.glossary-list-item .glossary-list-item-title .glossary-tags span {
  font-size: 16px;
}
#glossary-list .col-left ul li section.glossary-list-item .glossary-list-item-title + span {
  display: block;
  padding: 0 28px 28px 20px;
}
#glossary-list .col-left ul li section.glossary-list-item a:hover {
  color: #001F50;
}
#glossary-list .col-left ul li section.glossary-list-item a:hover .glossary-list-item-title {
  background: #001F50;
  color: #fff;
}
#glossary-list .col-left ul li section.glossary-list-item a:hover .glossary-list-item-title .h2 {
  color: #fff;
}
#glossary-list .col-left ul li section.glossary-list-item a:hover .glossary-list-item-title .glossary-tags span {
  background: #fff;
  color: #001F50;
}

/*------news----------------*/
.news-detail .news-detail-title {
  border-bottom: 1px solid #D4D8DE;
  margin-bottom: 40px;
}
.news-detail .news-detail-title h1 {
  font-size: 32px;
  letter-spacing: 0.05em;
  text-align: left;
  margin-bottom: 17px;
  padding-bottom: 0;
  line-height: 1.4;
  font-family: "MPLUS1p";
  color: #001F50;
}
.news-detail .news-detail-title h2 {
  padding: 17px 20px;
  background: #E8EFF5;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  color: #001F50;
  font-family: "Noto Sans JP";
}
.news-detail .news-detail-title h2::after {
  display: none;
}
.news-detail .news-detail-title .date p {
  text-align: right;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 16px;
}
.news-detail .news-detail-body p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
  padding-bottom: 20px;
}
.news-detail .news-detail-body strong {
  font-size: 18px;
  font-weight: 500;
  color: #0F4E8D;
}
.news-detail .news-detail-body .news-detail-body-pic-col1 {
  margin: 20px auto;
}
.news-detail .news-detail-body .news-detail-body-pic-col2 {
  margin: 20px auto;
}
.news-detail .news-detail-body .news-detail-body-pic-col2 img {
  margin: 16px;
  width: 50%;
}
.news-detail .news-detail-body h3 {
  font-size: 20px;
  font-weight: bold;
  padding-left: 18px;
  line-height: 1.45;
  border-left: 3px solid #001F50;
  margin-bottom: 20px;
}
.news-detail .news-detail-body h3:nth-child(n+2) {
  margin-top: 40px;
}
.news-detail .news-detail-body .textbgbox {
  background: #F7F7F7;
  padding: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.news-detail .news-detail-body .textbgbox ul {
  margin-bottom: 0;
  padding-left: 0;
}
.news-detail .news-detail-body .textbgbox ul li {
  padding-left: 2em;
  text-indent: -2em;
}
.news-detail .news-detail-body .relativepost-link a {
  font-size: 18px;
  text-decoration: underline;
  font-weight: bold;
  line-height: 1.8;
}
.news-detail .news-detail-body .relativepost-link a:not(:hover) {
  color: #001F50;
}
.news-detail .news-detail-body .relativepost-link a::before {
  content: url("/cc104700/file/251955.png");
  margin-right: 12px;
}
.news-detail .news-detail-body .relativepost-link a .label-pdf {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  background: #A70017;
  padding: 2px 10px;
  border-radius: 2px;
  margin-left: 12px;
  display: inline-block;
}

.news .btn-round a {
  width: 321px;
  height: 43px;
  background: #2F2F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2F2F2F;
  color: #fff;
  border-radius: 100vh;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  transition: all 0.1s ease;
  margin: auto;
}
.news .btn-round a::after {
  content: url("/cc104700/file/251417.png");
  position: absolute;
  right: 10px;
  font-size: 0px;
}
.news .btn-round a:hover {
  background: #fff;
  color: #2F2F2F;
}
.news .btn-round a:hover::after {
  content: url("/cc104700/file/251712.png");
}

.pagecount {
  text-align: center;
  margin-bottom: 32px;
}
.pagecount p {
  font-size: 18px;
  font-weight: 500;
}
.pagecount p span {
  font-size: 23px;
  font-weight: bold;
}

#news-list h2 {
  font-family: "MPLUS1p";
}

/*-----faq--------*/
.faq .page-mv {
  background: url("/cc104700/file/252450.jpg") no-repeat top center/cover;
  height: 260px;
}
.faq .page-mv .mv-inner {
  height: 100%;
}
.faq .page-mv .mv-inner h1 {
  text-align: center;
  color: #fff;
  font-family: "MPLUS1p";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2;
}

.pagelink ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
}
.pagelink ul li {
  margin: 15px;
}
@media screen and (min-width: 601px) and (max-width: 800px) {
  .pagelink ul li {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 600px) {
  .pagelink ul li {
    width: 100%;
  }
}
.pagelink ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 283.3333333333px;
  background: #EAEAEA;
  border: 1px solid #EAEAEA;
  color: #001F50;
  height: 107px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.8;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 800px) {
  .pagelink ul li a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .pagelink ul li a {
    width: 100%;
  }
}
.pagelink ul li a::after {
  content: url("/cc104700/file/251513.png");
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.pagelink ul li a:hover {
  background: #fff;
  color: #001F50;
  border-color: #001F50;
}
.pagelink ul li a:hover::after {
  /* content:url("/images/faq/pagelink-arrow-on.svg");*/
}
.pagelink.tab ul li a {
  height: 91px;
}
.pagelink.tab ul li a::after {
  display: none;
}

#faq-list h2:nth-child(n+2) {
  margin-top: 60px;
}
#faq-list h2 + .faq-item {
  border-top: 1px solid #D4D8DE;
}
#faq-list .faq-item {
  border-bottom: 1px solid #D4D8DE;
  position: relative;
  cursor: pointer;
}
#faq-list .faq-item p {
  margin-bottom: 0;
}
#faq-list .faq-item .q {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#faq-list .faq-item .q p {
  width: calc(100% - 46px);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
#faq-list .faq-item .q p label {
  cursor: pointer;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #faq-list .faq-item .q p {
    line-height: 1.3;
  }
}
#faq-list .faq-item .q::before {
  content: "Q";
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: bold;
  background: #666;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.6;
  margin-right: 16px;
}
#faq-list .faq-item .a {
  cursor: default;
  margin: 0;
}
#faq-list .faq-item .a p {
  width: calc(100% - 46px);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
#faq-list .faq-item .a p label {
  cursor: default;
}
#faq-list .faq-item .a::before {
  content: "A";
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: bold;
  background: #E12942;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-right: 16px;
}
#faq-list .faq-item .faq-item {
  margin: 3em auto;
  max-width: 60vw;
}
#faq-list .faq-item .toggle {
  display: none;
}
#faq-list .faq-item .option {
  position: relative;
  margin-bottom: 1em;
}
#faq-list .faq-item .title,
#faq-list .faq-item .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  transition: all 0.1s;
}
#faq-list .faq-item .title {
  display: block;
  padding-right: 30px;
}
#faq-list .faq-item .content {
  display: flex;
}
#faq-list .faq-item .title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 8px;
  background: url("/cc104700/file/251512.png") no-repeat center/cover;
  transition: all 0.1s;
  -webkit-transform: transformY(-50%) rotate(0);
          transform: transformY(-50%) rotate(0);
}
#faq-list .faq-item .content {
  max-height: 0;
  overflow: hidden;
}
#faq-list .faq-item .toggle:checked + .q > p .title, #faq-list .faq-item .toggle:checked + .q + .content {
  max-height: 500px;
  transition: all 0.1s;
}
#faq-list .faq-item .toggle:checked + .q + .content {
  margin-top: 20px;
  margin-bottom: 20px;
}
#faq-list .faq-item .toggle:checked + .q > p .title::before {
  -webkit-transform: rotate(180deg) !important;
          transform: rotate(180deg) !important;
}

.faq h2 {
  font-family: "MPLUS1p";
}

/*----contact-----------*/
#contact {
  max-width: 904px;
  margin: 0 auto;
}
#contact h1 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "MPLUS1p";
  color: #001F50;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #contact h1 {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
#contact h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #001F50;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#contact h1 + p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
}
#contact .contact-tel-box {
  max-width: 524px;
  width: 100%;
  margin: 0 auto 40px;
  background: #E8EFF5;
  padding: 20px;
  text-align: center;
  color: #001F50;
}
#contact .contact-tel-box p:first-child {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
#contact .contact-tel-box p:last-child {
  font-size: 14px;
  margin-bottom: 0;
}
#contact .contact-tel-box .tel {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  #contact .contact-tel-box .tel {
    pointer-events: none;
  }
}
#contact .contact-tel-box .tel a {
  font-size: 39px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  #contact .contact-tel-box .tel a {
    font-size: 8.7vw;
  }
}
#contact .ment-text-box {
  width: 100%;
  max-width: 848px;
  border: 2px solid #001F50;
  padding: 22px 20px 28px;
  text-align: center;
  margin: auto;
  margin-bottom: 60px;
}
#contact .ment-text-box h3 {
  font-size: 23px;
  font-weight: bold;
  padding-bottom: 8px;
  margin-bottom: 17px;
  position: relative;
  color: #001F50;
}
#contact .ment-text-box h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 35px;
  height: 3px;
  background: #001F50;
}
#contact .ment-text-box p {
  font-size: 18px;
  margin-bottom: 0;
}
#contact .ment-text-box p a {
  text-decoration: underline;
}
#contact .ment-text-box p a:not(:hover) {
  color: #0F4E8D;
}






#contact_area table {
  border-top: 1px solid #D4D8DE;
}
#contact_area table th, #contact_area table td {
  border-color: #D4D8DE;
}
#contact_area table th {
  padding: 20px 0;
  font-size: 18px;
		font-weight:700;
  color: #001F50;
  width: 266px;
}
#contact_area table th span.req {
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 20px;
  background: #E12942;
  border-radius: 3px;
  position: relative;
  top: -2px;
  margin-left: 14px;
  font-weight: normal;
}
#contact_area table td {
  padding: 20px 0;
  font-size: 16px;
}
#contact_area table td p {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: bold;
}
#contact_area table td.sub2 label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
#contact_area table td.sub2 label input {
  margin-right: 13px;
}
#contact_area table td input[type=text], #contact_area table td input[type=email], #contact_area table td input[type=tel], #contact_area table td textarea {
  background: #F8F8F8;
  border: none !important;
  padding: 10px 18px;
  border-radius: 3px;
  width: 100% !important;
}
#contact_area table td input[type=text]::-webkit-input-placeholder, #contact_area table td input[type=email]::-webkit-input-placeholder, #contact_area table td input[type=tel]::-webkit-input-placeholder, #contact_area table td textarea::-webkit-input-placeholder {
  color: #C8C8C8;
  font-size: 18px;
  letter-spacing: 0.05em;
}
#contact_area table td input[type=text]::-moz-placeholder, #contact_area table td input[type=email]::-moz-placeholder, #contact_area table td input[type=tel]::-moz-placeholder, #contact_area table td textarea::-moz-placeholder {
  color: #C8C8C8;
  font-size: 18px;
  letter-spacing: 0.05em;
}
#contact_area table td input[type=text]::placeholder, #contact_area table td input[type=email]::placeholder, #contact_area table td input[type=tel]::placeholder, #contact_area table td textarea::placeholder {
  color: #C8C8C8;
  font-size: 18px;
  letter-spacing: 0.05em;
}
#contact_area table td select {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #contact_area table, #contact_area table th, #contact_area table td, #contact_area table tbody, #contact_area table thead {
    width: 100%;
    display: block;
  }
}
#contact_area table td.sub {
  font-size: 12px;
		font-weight:700;
		padding: 0 20px;
		white-space: nowrap;
		width: 90px;
}
#contact_area table td.sub2 p input {
    margin: 10px 0 0;
}
#contact_area table td.sub2 p span {
    font-size: 14px;
    margin: 10px 0 0;
    display: block;
}
#contact_area .form_btn_area input {
  background: #001F50;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  max-width: 308px;
  width: 100%;
  margin: 50px auto 0;
  border-radius: 100vh;
  border: 1px solid #001F50;
  position: relative;
  height: 70px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("/cc104700/file/251556.png") ;
		background-repeat: no-repeat;
		background-position: right 15px center;
}
#contact_area .form_btn_area input:hover {
  background: #fff;
  color: #001F50;
  background-image: url("/cc104700/file/251557.png") ;
		background-repeat: no-repeat;
		background-position: right 15px center;
}

footer.contact {
  padding: 49px 0 20px !important;
}
footer.contact .logo {
  width: 100%;
  text-align: center;
}
footer.contact .logo span {
  display: inline;
}
footer.contact .copyright {
  margin-top: 20px;
}
footer.contact.copyright p {
  text-align: center;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

#contact_area table td select {
  position: relative;
  display: inline-block;
}
#contact_area table td select {
    padding: 10px 64px 10px 18px;
    border-radius: 3px;
}
#contact_area table td select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5.5px 0 5.5px;
  border-color: #2f2f2f transparent transparent transparent;
  line-height: 0px;
  _border-color: #2f2f2f #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color="#000000");
}

/*-----dl-------*/
.download .page-mv {
  background: url("/cc104700/file/252452.jpg") no-repeat top center/cover;
  height: 260px;
}
.download .page-mv .mv-inner {
  height: 100%;
}
.download .page-mv .mv-inner h1 {
  text-align: center;
  color: #fff;
  font-family: "MPLUS1p";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

#dl-list p.catch {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 70px;
}
#dl-list .dl-items + h2 {
  padding-top: 70px;
}
#dl-list .dl-items {
  display: flex;
  flex-wrap: wrap;
}
#dl-list .dl-items span {
  display: block;
}
#dl-list .dl-items a {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
#dl-list .dl-items .dl-item {
  width: calc((100% - 147px) / 4);
}
#dl-list .dl-items .dl-item:not(:nth-child(4n)) {
  margin-right: 49px;
  height: auto;
}
#dl-list .dl-items .dl-item:nth-child(n+5) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #dl-list .dl-items .dl-item {
    width: 100%;
    margin-bottom: 30px;
  }
  #dl-list .dl-items .dl-item:not(:nth-child(4n)) {
    margin-right: 0;
  }
  #dl-list .dl-items .dl-item:nth-child(n+5) {
    margin-top: 0;
  }
  #dl-list .dl-items .dl-item .title {
    text-align: center;
  }
  #dl-list .dl-items .dl-item .thumb {
    text-align: center;
  }
}
#dl-list .dl-items .dl-item .thumb {
  overflow: hidden;
  border: 1px solid #2F2F2F;
}
#dl-list .dl-items .dl-item .thumb img {
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: all 0.3s ease-in-out;
}
#dl-list .dl-items .dl-item .title {
  min-height: 60px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
}
#dl-list .dl-items .dl-item .title .small {
  font-size: 17px;
}
#dl-list .dl-items .dl-item .btn {
  margin-top: 20px;
}
#dl-list .dl-items .dl-item .btn span {
  background: #fff;
  border: 1px solid #2F2F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 37px;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-radius: 100vh;
  margin: 0 auto;
  transition: all 0.3s ease;
}
#dl-list .dl-items a:hover .btn span {
  background: #2F2F2F;
  color: #fff;
}
#dl-list .dl-items a:hover .thumb img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.bg {
  background: #F7F7F7;
  margin-bottom: 50px;
}

.ytwrap {
  text-align: center;
}

.cta-dl {
  background: #E8EFF5;
  padding: 50px 108px;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .cta-dl {
    flex-direction: column;
    padding: 20px;
  }
}
.cta-dl p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.65;
  margin-bottom: 0;
}
.cta-dl a {
  width: 321px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #001F50;
  border-radius: 100vh;
  border: 1px solid #001F50;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .cta-dl a {
    width: 100%;
    margin: auto;
    margin-top: 20px;
  }
}
.cta-dl a::before {
  content: url("/cc104700/file/251431.png");
  padding-right: 13px;
  margin-top: 3px;
}
.cta-dl a::after {
  content: url("/cc104700/file/251560.png");
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0px;
}
.cta-dl a:hover {
  background: #fff;
  color: #001F50;
}
.cta-dl a:hover::before {
  content: url("/cc104700/file/251432.png");
}
.cta-dl a:hover::after {
  content: url("/cc104700/file/251561.png");
}

#case-detail h1 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "MPLUS1p";
  color: #001F50;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #case-detail h1 {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
#case-detail h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #001F50;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#case-detail h2 {
  font-family: "Noto Sans JP";
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: #2F2F2F;
}
#case-detail h2::after {
  display: none;
}
#case-detail .case-tag {
  text-align: center;
  margin-bottom: 40px;
}
#case-detail .case-tag span {
  display: inline-block;
  background: #001F50;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 45px;
}
#case-detail .case-imgs {
  padding: 50px 0;
  background: #F7F7F7;
  margin-bottom: 40px;
}
#case-detail .case-imgs .image-l {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #case-detail .case-imgs figure img {
    width: 100%;
    height: auto;
  }
}
#case-detail .case-imgs figure figcaption {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
}
#case-detail .case-imgs .img-s figure:not(:last-child) {
  margin-right: 33px;
}
#case-detail .case-table {
  margin-bottom: 40px;
}
#case-detail .case-table table {
  border-top: 1px solid #D4D8DE;
  border-left: 1px solid #D4D8DE;
  border-right: 1px solid #D4D8DE;
}
#case-detail .case-table table th {
  color: #001F50;
  font-size: 18px;
  font-weight: 500;
  padding: 12px;
  width: 296px;
  background: #E8EFF5;
  text-align: center;
  border-color: #D4D8DE;
}
#case-detail .case-table table td {
  border-color: #D4D8DE;
  font-size: 16px;
  padding: 14px 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #case-detail .case-table table, #case-detail .case-table table th, #case-detail .case-table table td, #case-detail .case-table table tr, #case-detail .case-table table thead, #case-detail .case-table table tbody {
    display: block;
    width: 100%;
  }
}
#case-detail h3 {
  padding-left: 18px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 29px;
  border-left: 3px solid #001F50;
  margin-bottom: 20px;
}
#case-detail h3 + p {
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 60px;
}
#case-detail .btn-round a {
  width: 321px;
  height: 43px;
  background: #2F2F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2F2F2F;
  color: #fff;
  border-radius: 100vh;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  transition: all 0.1s ease;
  margin: auto;
}
#case-detail .btn-round a::after {
  content: url("/cc104700/file/251417.png");
  position: absolute;
  right: 10px;
  font-size: 0px;
}
#case-detail .btn-round a:hover {
  background: #fff;
  color: #2F2F2F;
}
#case-detail .btn-round a:hover::after {
  content: url("/cc104700/file/251712.png");
}

#case-list h2 {
  font-family: "MPLUS1p";
}
/*-------------------------------------------

modal

-------------------------------------------*/
/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal-open {
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
}
.modal-open:hover {
  opacity: 0.8;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 80%;
  width: 100%;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

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

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/*# sourceMappingURL=style.css.map */