@charset "UTF-8";
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1640px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 1639.5px) and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  color: #231815;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a,
button {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
}

button {
  cursor: pointer;
}

/*========================
common
========================*/
.inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 32px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

.center {
  text-align: center;
}

.btn {
  display: inline-block;
  background: #00B900;
  color: white;
  font-size: 23px;
  padding: 24px 55px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 20px;
    padding: 23px;
    width: 100%;
  }
}
.btn::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 20px;
  height: 20px;
  background: url(../img/btn-deco.svg) no-repeat center center/contain;
}
.btn span {
  position: relative;
  padding-right: 28px;
}
@media screen and (max-width: 767px) {
  .btn span {
    padding-right: 18px;
  }
}
.btn span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 13px solid white;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
}
@media screen and (max-width: 767px) {
  .btn span::before {
    border-left: 9px solid white;
    border-bottom: 7px solid transparent;
    border-top: 7px solid transparent;
  }
}

.sec-title {
  text-align: center;
  font-size: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 25px;
  }
}
.sec-title::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 346px;
  height: 2px;
  background: #231815;
}
@media screen and (max-width: 767px) {
  .sec-title::before {
    max-width: 205px;
    height: 1px;
  }
}

/*========================
header
========================*/
.header {
  padding: 25px 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: white;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 30px 0;
  }
}

.header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__flex {
    display: none;
  }
}
.header__flex h1 {
  font-size: 12px;
}

.header__nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  gap: 32px;
}
.header__nav .current {
  color: #C1272D;
}

.consul-btn {
  position: fixed;
  max-width: 200px;
  top: 160px;
  left: 0;
  z-index: 200;
}
@media screen and (max-width: 767px) {
  .consul-btn {
    max-width: 99px;
    top: 0;
  }
}

.menu-btn {
  width: 36px;
  position: fixed;
  z-index: 100;
  top: 12px;
  right: 15px;
}

.drawer {
  background: #1B1464;
  position: fixed;
  width: 100%;
  height: calc(100vh - 60px);
  bottom: 0;
  z-index: 300;
  color: white;
  right: -101%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer.active {
  right: 0;
}
.drawer a {
  font-size: 20px;
  padding: 17px;
  display: block;
  border-bottom: 1px solid white;
}

/*========================
cta
========================*/
.cta {
  background: url(../img/cta.jpg) no-repeat center center/cover;
  color: white;
  padding: 88px 0 72px;
}
.cta h2::before {
  background: white;
}
.cta p {
  text-align: center;
  font-size: 28px;
  margin: 28px 0 44px;
}

.cta__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.cta__flex .tel {
  font-size: 56px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  position: relative;
  padding-left: 88px;
}
.cta__flex .tel::before {
  content: "";
  background: url(../img/tel-icon.svg) no-repeat center center/contain;
  position: absolute;
  width: 73px;
  height: 73px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cta__flex .btn {
  padding-left: 80px;
  padding-right: 31px;
}
.cta__flex .btn span {
  position: relative;
}
.cta__flex .btn span::after {
  content: "";
  background: url(../img/mail-icon.svg) no-repeat center center/contain;
  position: absolute;
  left: -51px;
  width: 46px;
  height: 29px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*========================
bottom
========================*/
.bottom {
  background: #F1F0F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bottom .map {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .bottom .map {
    width: 100%;
    height: 213px;
  }
}
.bottom .map iframe {
  width: 100%;
  height: 100%;
}
.bottom .bottom__box {
  padding: 56px 20px 61px;
  width: 50%;
  background: white;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .bottom .bottom__box {
    width: 100%;
    padding: 40px 20px 21px;
  }
}
.bottom .bottom__box .small {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .bottom .bottom__box .small {
    font-size: 10px;
  }
}
.bottom .bottom__box .logo {
  max-width: 406px;
  display: inline-block;
  margin: 25px 0 13px;
}
@media screen and (max-width: 767px) {
  .bottom .bottom__box .logo {
    max-width: 217px;
    margin: 13px 0 7px;
  }
}
.bottom .bottom__box .name {
  font-size: 23px;
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .bottom .bottom__box .name {
    font-size: 13px;
    margin-bottom: 13px;
  }
}
.bottom .bottom__box p {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 40;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .bottom .bottom__box p {
    font-size: 10px;
  }
}

/*========================
footer
========================*/
.footer {
  padding: 64px 0 20px;
  background: #231815;
  color: white;
  font-size: 16px;
}
.footer .inner {
  max-width: 1300px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 6px 0;
    padding-bottom: 67px;
  }
}

.footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6.5%;
  margin-bottom: 94px;
}

.footer__sec {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 9px;
}
.footer__item:not(:last-child) {
  margin-bottom: 30px;
}
.footer__item .big-link {
  color: #E7CD8E;
  display: inline-block;
  border-bottom: 1px solid #E7CD8E;
  padding-bottom: 8px;
  margin-bottom: 8px;
  width: 100%;
}

.footer__copy {
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 8px;
  }
}

/*========================
page-common
========================*/
.page-mv {
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-mv {
    padding-top: 60px;
  }
  .page-mv .inner {
    padding: 0;
  }
}
.page-mv .inner {
  height: 100%;
}

.page-mv__img {
  height: 100%;
  height: 425px;
}
@media screen and (max-width: 767px) {
  .page-mv__img {
    height: 287px;
  }
}
.page-mv__img.page-mv__img--about {
  background: url(../img/about-mv.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-mv__img.page-mv__img--about {
    background: url(../img/about-mv-sp.jpg) no-repeat center center/cover;
  }
}
.page-mv__img.page-mv__img--services {
  background: url(../img/services-mv.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-mv__img.page-mv__img--services {
    background: url(../img/services-mv-sp.jpg) no-repeat center center/cover;
  }
}
.page-mv__img.page-mv__img--company {
  background: url(../img/company-mv.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-mv__img.page-mv__img--company {
    background: url(../img/company-mv-sp.jpg) no-repeat center center/cover;
  }
}
.page-mv__img.page-mv__img--contact {
  background: url(../img/contact-mv.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-mv__img.page-mv__img--contact {
    background: url(../img/contact-mv-sp.jpg) no-repeat center center/cover;
  }
}
.page-mv__img.page-mv__img--privacy {
  background: url(../img/privacy-mv.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-mv__img.page-mv__img--privacy {
    background: url(../img/privacy-mv-sp.jpg) no-repeat center center/cover;
  }
}

.page__title {
  position: absolute;
  background: #1B1464;
  color: white;
  padding: 101px 0 98px;
  right: 0;
  bottom: -122px;
  max-width: 590px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page__title {
    padding: 35px 0 34px;
    max-width: 209px;
    bottom: 0;
    right: inherit;
    left: 0;
  }
}
.page__title::before {
  content: "";
  background: url(../img/page-title.svg) no-repeat center center/contain;
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 13px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page__title::before {
    height: 36px;
    bottom: 5px;
  }
}
.page__title .en {
  font-size: 66px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .page__title .en {
    font-size: 24px;
  }
}
.page__title .jp {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .page__title .jp {
    font-size: 6px;
  }
}

/*========================
breadcrumbs
========================*/
.breadcrumbs {
  padding: 11px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 14px 0;
  }
}

.breadcrumbs__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
}
.breadcrumbs__items a,
.breadcrumbs__items span {
  background: #E6E6E6;
  display: inline-block;
  padding: 5px 15px;
  min-width: 100px;
  text-align: center;
  position: relative;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__items a,
  .breadcrumbs__items span {
    font-size: 13px;
    min-width: 134px;
  }
}
.breadcrumbs__items a:not(:last-child)::before,
.breadcrumbs__items span:not(:last-child)::before {
  content: ">";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -16px;
  font-size: 19px;
  color: #999999;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__items a:not(:last-child)::before,
  .breadcrumbs__items span:not(:last-child)::before {
    font-size: 24px;
    right: -19px;
  }
}

/*========================
privacy
========================*/
.privacy {
  padding: 376px 0 275px;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding: 40px 0 80px;
  }
}
.privacy .inner {
  max-width: 1600px;
}
.privacy h2 {
  font-size: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .privacy h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .privacy p {
    font-size: 15px;
  }
}

.sticky {
  position: fixed;
  bottom: 12px;
  right: 12px;
  width: 100%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .sticky {
    bottom: 0;
    right: 0;
    gap: 1px;
  }
}
.sticky .btn {
  padding: 15px 0 8px;
  padding-left: 40px;
  max-width: 260px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sticky .btn {
    padding: 11px 0 11px;
    padding-left: 30px;
  }
}
.sticky .btn--tel {
  background: #CDAF6D;
  font-family: "Jost", sans-serif;
  position: relative;
  font-size: 24px;
  padding-top: 14px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .sticky .btn--tel {
    font-size: 18px;
    max-width: 140px;
    padding-left: 20px;
    padding-top: 15px;
  }
}
.sticky .btn--tel::before {
  content: "";
  background: url(../img/tel-icon-white.svg) no-repeat center center/contain;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 24px;
}
@media screen and (max-width: 767px) {
  .sticky .btn--tel::before {
    width: 21px;
    height: 21px;
    left: 17px;
  }
}
.sticky .btn--line {
  background: #00B900;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .sticky .btn--line {
    font-size: 15px;
    line-height: 1.1;
  }
  .sticky .btn--line span {
    font-size: 14px;
  }
}
.sticky .btn--line::before {
  content: "";
  background: url(../img/mail-icon.svg) no-repeat center center/contain;
  position: absolute;
  width: 43px;
  height: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 29px;
}
@media screen and (max-width: 767px) {
  .sticky .btn--line::before {
    width: 25px;
    height: 16px;
    left: 12px;
    -webkit-transform: none;
            transform: none;
    top: 15px;
  }
}
.sticky .to-top {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 60px;
}
@media screen and (max-width: 767px) {
  .sticky .to-top {
    width: 53px;
    position: absolute;
    bottom: 63px;
  }
}
.sticky .to-top:hover {
  opacity: 0.7;
}

/*========================
mv
========================*/
.mv {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: 60px;
  }
  .mv .inner {
    padding: 0;
  }
}

.mv__area {
  height: calc(100vh - 80px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__area {
    height: 391px;
  }
}

.mv__slide {
  height: 100%;
  max-height: 877px;
}
.mv__slide .mv__img {
  height: 100%;
}
.mv__slide .mv__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__text {
  position: absolute;
  top: 109px;
  right: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  padding: 70px 36px;
  letter-spacing: 0.06em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .mv__text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 15px;
    padding: 11px 19px 13px;
    top: inherit;
    bottom: 48px;
  }
}

.mv__circle {
  position: absolute;
  max-width: 1100px;
  bottom: 13px;
  right: 18px;
  left: 18px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv__circle {
    position: inherit;
    padding: 0 16px;
    margin-top: 19px;
  }
}

/*========================
problem
========================*/
.problem {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .problem {
    padding: 32px 0 0;
  }
}
.problem h2 {
  font-size: 34px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .problem h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 21px;
  }
}

.problem__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .problem__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    margin-bottom: 52px;
  }
}
.problem__flex .img {
  max-width: 820px;
  width: calc(100% - 650px - 40px);
}
.problem__flex .content {
  max-width: 650px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .problem__flex .content {
    width: 100%;
  }
}
.problem__flex ul {
  padding-left: 21px;
  margin: 40px 0;
  max-width: 514px;
}
@media screen and (max-width: 767px) {
  .problem__flex ul {
    padding-left: 0;
    margin-bottom: 23px;
  }
}
.problem__flex li {
  position: relative;
  margin-left: 41px;
  font-size: 21px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #231815;
}
@media screen and (max-width: 767px) {
  .problem__flex li {
    font-size: 17px;
    margin-left: 29px;
  }
}
.problem__flex li:not(:last-child) {
  margin-bottom: 20px;
}
.problem__flex li::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background: url(../img/check.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .problem__flex li::before {
    width: 20px;
    height: 20px;
    left: -29px;
  }
}
.problem__flex p {
  font-size: 23px;
}
@media screen and (max-width: 767px) {
  .problem__flex p {
    font-size: 17px;
  }
}

/*========================
strength
========================*/
.strength {
  background: url(../img/strength-bg.jpg) no-repeat center center/cover;
  padding: 228px 0 400px;
}
@media screen and (max-width: 767px) {
  .strength {
    background: url(../img/strength-bg-sp.jpg) no-repeat center center/cover;
    padding: 164px 0 68px;
    margin-top: -106px;
  }
}
.strength .inner {
  max-width: 1160px;
}
.strength p {
  text-align: center;
  margin: 58px 0 128px;
}
@media screen and (max-width: 767px) {
  .strength p {
    margin: 20px 0 29px;
    font-size: 13px;
  }
}

.strength__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 38px;
}
@media screen and (max-width: 767px) {
  .strength__items {
    gap: 5px;
  }
}
.strength__items .item {
  text-align: center;
  background: white;
  width: calc(33.333% - 25.333px);
  border: 1px solid #1B1464;
  padding: 21px 16px 30px;
}
@media screen and (max-width: 767px) {
  .strength__items .item {
    width: calc(50% - 2.5px);
    padding: 12px 10px 14px;
  }
}
.strength__items .img {
  max-width: 150px;
  display: inline-block;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .strength__items .img {
    max-width: 71px;
    margin-bottom: 5px;
  }
}
.strength__items .text {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .strength__items .text {
    font-size: 11px;
  }
}
.strength__items .text span {
  color: #C1272D;
}

/*========================
news
========================*/
.news {
  padding: 142px 0 211px;
  background: #F1F0F0;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 48px 0 58px;
  }
}
.news .inner {
  max-width: 1160px;
}

.news__items {
  margin-top: 120px;
  background: white;
}
@media screen and (max-width: 767px) {
  .news__items {
    margin-top: 41px;
  }
}
.news__items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 36px;
}
@media screen and (max-width: 767px) {
  .news__items .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 26px 27px;
    gap: 10px 0;
  }
}
.news__items .item:not(:last-child) {
  border-bottom: 1px solid #000000;
}
.news__items .date {
  width: 75px;
  margin-right: 71px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .news__items .date {
    margin-right: 41px;
    font-size: 11px;
    width: 60px;
  }
}
.news__items .tag {
  width: 166px;
}
.news__items .tag span {
  background: #B1706F;
  color: white;
  font-size: 14px;
  padding: 6px 27px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .news__items .tag span {
    font-size: 11px;
    padding: 4px 20px 5px;
  }
}
.news__items .title {
  width: calc(100% - 75px - 71px - 166px);
}
@media screen and (max-width: 767px) {
  .news__items .title {
    width: 100%;
    font-size: 11px;
  }
}
.news__items .title a {
  text-decoration: underline;
}

/*========================
about-intro
========================*/
.about-intro {
  background: url(../img/about-intro.jpg) no-repeat center center/cover;
  padding: 244px 0 227px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about-intro {
    padding: 50px 0 80px;
  }
}
.about-intro h2 {
  font-size: 39px;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .about-intro h2 {
    font-size: 20px;
    margin-bottom: 23px;
  }
}
.about-intro p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about-intro p {
    font-size: 12px;
    line-height: 1.7;
  }
}

/*========================
about-strength
========================*/
.about-strength {
  padding: 90px 0 264px;
  background: url(../img/about-strength-bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .about-strength {
    padding: 0px 0 80px;
  }
}
.about-strength .inner {
  max-width: 1325px;
}

.about-strength__items {
  margin-top: 143px;
}
@media screen and (max-width: 767px) {
  .about-strength__items {
    margin-top: 39px;
  }
}

.about-strength__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about-strength__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.about-strength__item:not(:last-child) {
  margin-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .about-strength__item:not(:last-child) {
    margin-bottom: 80px;
  }
}
.about-strength__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .about-strength__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .about-strength__item:nth-child(5) .icon {
    right: 0cap;
  }
}
.about-strength__item:nth-child(6) .icon {
  right: -55px;
}
@media screen and (max-width: 767px) {
  .about-strength__item:nth-child(6) .icon {
    right: -16px;
  }
}
.about-strength__item .content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about-strength__item .content {
    width: 100%;
  }
}
.about-strength__item .head {
  position: relative;
  border-left: 1px solid #1B1464;
  padding: 8px 150px 8px 27px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about-strength__item .head {
    padding: 5px 104px 5px 15px;
    margin-bottom: 16px;
  }
}
.about-strength__item .num {
  background: #1B1464;
  color: white;
  display: inline-block;
  font-size: 24px;
  padding: 1px 30px 3px;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .about-strength__item .num {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.about-strength__item h3 {
  font-size: 34px;
  color: #1B1464;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .about-strength__item h3 {
    font-size: 19px;
  }
}
.about-strength__item .icon {
  max-width: 261px;
  position: absolute;
  right: -51px;
  bottom: 10px;
}
@media screen and (max-width: 767px) {
  .about-strength__item .icon {
    max-width: 143px;
    right: -16px;
  }
}
.about-strength__item p {
  letter-spacing: 0.06em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .about-strength__item p {
    font-size: 13px;
    line-height: 1.5;
  }
}
.about-strength__item .img {
  width: 50%;
  padding-right: 40px;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about-strength__item .img {
    width: 100%;
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
.about-strength__item .img::after {
  content: "";
  background: #CCD3DF;
  position: absolute;
  top: 40px;
  left: 40px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
@media screen and (max-width: 767px) {
  .about-strength__item .img::after {
    top: 20px;
    left: 20px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.about-strength__item .img img {
  position: relative;
  z-index: 1;
}

/*========================
about-message
========================*/
.about-message {
  padding: 0px 0 100px;
}
@media screen and (max-width: 767px) {
  .about-message {
    padding: 55px 0 77px;
  }
}
.about-message .page__title {
  position: relative;
  right: inherit;
  bottom: inherit;
}
@media screen and (max-width: 767px) {
  .about-message .page__title {
    margin-left: -16px;
  }
}
.about-message .page__title::before {
  display: none;
}

.about-message__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 88px;
}
@media screen and (max-width: 767px) {
  .about-message__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 38px;
  }
}
.about-message__flex .content {
  width: 48%;
  max-width: 757px;
}
@media screen and (max-width: 767px) {
  .about-message__flex .content {
    width: 100%;
  }
}
.about-message__flex .content h3 {
  font-size: 25px;
  color: #C1272D;
  margin: 48px 0 38px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .about-message__flex .content h3 {
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
    margin: 40px 0 32px;
  }
}
.about-message__flex .content p {
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .about-message__flex .content p {
    font-size: 13px;
  }
}
.about-message__flex .content .name {
  margin-top: 32px;
  max-width: 260px;
  margin-left: auto;
}
.about-message__flex .img {
  width: 52%;
  max-width: 830px;
}
@media screen and (max-width: 767px) {
  .about-message__flex .img {
    width: 100%;
  }
}

.about-message__profile {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .about-message__profile {
    margin-top: 55px;
  }
}
.about-message__profile h3 {
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .about-message__profile h3 {
    text-align: center;
  }
}
.about-message__profile .table {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .about-message__profile .table {
    margin-top: 24px;
  }
}
.about-message__profile .table .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .about-message__profile .table .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 2px solid #231815;
  }
}
.about-message__profile .table .row:last-child .year {
  border-bottom: 2px solid #2E3192;
}
.about-message__profile .table .row:last-child .text {
  border-bottom: 2px solid #231815;
}
.about-message__profile .table .row .year {
  padding: 20px 0;
  text-align: center;
  max-width: 232px;
  width: 100%;
  border-top: 2px solid #2E3192;
}
@media screen and (max-width: 767px) {
  .about-message__profile .table .row .year {
    border-bottom: 2px solid #2E3192;
    margin: -2px 0 -2px;
    position: relative;
    z-index: 1;
    font-size: 18px;
    letter-spacing: 0.05em;
    padding: 18px 0;
  }
}
.about-message__profile .table .row .text {
  padding: 20px 0;
  padding-left: 60px;
  width: calc(100% - 232px);
  border-top: 2px solid #231815;
}
@media screen and (max-width: 767px) {
  .about-message__profile .table .row .text {
    width: 100%;
    padding: 20px 26px;
    font-size: 13px;
  }
}

/*========================
services
========================*/
.services-section {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .services-section {
    padding: 54px 0;
  }
}
.services-section:nth-child(even) {
  background: #EEF1F9;
}
.services-section:last-child {
  background: #EEF1F3;
}
.services-section .inner {
  max-width: 1180px;
}
.services-section .icon {
  max-width: 58px;
  margin: 0 auto 19px;
}
@media screen and (max-width: 767px) {
  .services-section .icon {
    max-width: 38px;
    margin: 0 auto 12px;
  }
}
.services-section .top-txt {
  text-align: center;
  margin: 54px 0 100px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .services-section .top-txt {
    margin: 29px 0 26px;
    line-height: 1.6;
    font-size: 12.6px;
  }
}
.services-section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .services-section .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 36px;
  }
}
.services-section .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .services-section .img {
    width: 100%;
  }
}
.services-section .content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .services-section .content {
    width: 100%;
  }
}
.services-section .content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  background: #1B1464;
  color: white;
  font-size: 25px;
  padding: 5px 12px 7px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .services-section .content h3 {
    font-size: 16px;
    letter-spacing: normal;
    margin-bottom: 14px;
  }
}
.services-section .content p {
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .services-section .content p {
    font-size: 13px;
  }
}

/*========================
company
========================*/
.company-intro {
  padding: 290px 0 170px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company-intro {
    padding: 40px 0 94px;
  }
}
.company-intro h2 {
  font-size: 40px;
  letter-spacing: 0.06em;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .company-intro h2 {
    font-size: 21px;
    margin-bottom: 35px;
  }
}
.company-intro p {
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .company-intro p {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}

.company-info {
  padding-bottom: 390px;
}
@media screen and (max-width: 767px) {
  .company-info {
    padding-bottom: 89px;
  }
}
.company-info .inner {
  max-width: 1160px;
}
.company-info .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 65px;
  margin: 80px 0 110px;
}
@media screen and (max-width: 767px) {
  .company-info .flex {
    margin: 29px 0 14px;
    gap: 22px;
  }
}
.company-info .img {
  width: 50%;
}
.company-info .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 2px solid #B8AFA9;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .company-info .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company-info .item:last-child {
  border-bottom: 2px solid #B8AFA9;
}
.company-info .head {
  width: 248px;
  text-align: center;
  color: #C1272D;
  padding: 21px 0;
}
@media screen and (max-width: 767px) {
  .company-info .head {
    border-bottom: 2px solid #B8AFA9;
    width: 100%;
    font-size: 18px;
  }
}
.company-info .body {
  width: calc(100% - 248px);
  padding: 21px 0;
}
@media screen and (max-width: 767px) {
  .company-info .body {
    width: 100%;
    text-align: center;
    font-size: 13px;
  }
}

/*========================
contact
========================*/
.contact-info {
  padding: 220px 0 180px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-info {
    padding: 40px 0 80px;
  }
}
.contact-info h2 {
  font-size: 40px;
  margin-bottom: 60px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .contact-info h2 {
    font-size: 26px;
    margin-bottom: 35px;
  }
}
.contact-info p {
  font-size: 18px;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .contact-info p {
    font-size: 13px;
  }
}

.contact-form {
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding-bottom: 120px;
  }
}
.contact-form .inner {
  max-width: 890px;
}
.contact-form .item {
  gap: 47px;
}
@media screen and (max-width: 767px) {
  .contact-form .item {
    gap: 8px;
  }
}
.contact-form .item:not(.item--check) {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .contact-form .item:not(.item--check) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 24px;
  }
}
.contact-form .item:last-child, .contact-form .item:nth-last-child(2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 24px;
}
.contact-form .item:last-child .body, .contact-form .item:nth-last-child(2) .body {
  width: 100%;
}
.contact-form .item.item--check .head {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .contact-form .item.item--check .head {
    font-size: 20px;
  }
}
.contact-form .head {
  max-width: 240px;
  width: 100%;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #1C2A53;
}
@media screen and (max-width: 767px) {
  .contact-form .head {
    font-size: 20px;
  }
}
.contact-form .head.required::after {
  content: "必須";
  background: #FF0000;
  color: white;
  font-size: 14px;
  display: inline-block;
  padding: 2px 14px 5px;
  border-radius: 200px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact-form .head.required::after {
    padding: 2px 14px 3px;
  }
}
.contact-form .body {
  width: calc(100% - 240px - 47px);
}
@media screen and (max-width: 767px) {
  .contact-form .body {
    width: 100%;
  }
}
.contact-form .body input,
.contact-form .body textarea {
  width: 100%;
  border: 2px solid #2A2F88;
  padding: 10px 16px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .contact-form .body input,
  .contact-form .body textarea {
    font-size: 16px;
  }
}
.contact-form .body input::-webkit-input-placeholder, .contact-form .body textarea::-webkit-input-placeholder {
  color: #B3B3B3;
}
.contact-form .body input::-moz-placeholder, .contact-form .body textarea::-moz-placeholder {
  color: #B3B3B3;
}
.contact-form .body input:-ms-input-placeholder, .contact-form .body textarea:-ms-input-placeholder {
  color: #B3B3B3;
}
.contact-form .body input::-ms-input-placeholder, .contact-form .body textarea::-ms-input-placeholder {
  color: #B3B3B3;
}
.contact-form .body input::placeholder,
.contact-form .body textarea::placeholder {
  color: #B3B3B3;
}
.contact-form .body textarea {
  height: 386px;
  resize: vertical;
}
.contact-form .note {
  font-size: 15px;
  font-weight: 500;
  color: #1C2A53;
}
@media screen and (max-width: 767px) {
  .contact-form .note {
    font-size: 13px;
    font-weight: 400;
  }
}
.contact-form .btns .check-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
  margin: 22px 0 0;
}
@media screen and (max-width: 767px) {
  .contact-form .btns .check-btn {
    gap: 16px 16px;
  }
}
.contact-form .btns .check-btn .wpcf7-list-item {
  margin: 0;
  width: calc((100% - 56px) / 3);
}
@media screen and (max-width: 767px) {
  .contact-form .btns .check-btn .wpcf7-list-item {
    width: calc(50% - 12px);
  }
}
.contact-form .btns .check-btn label {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact-form .btns .check-btn label:hover {
  opacity: 0.7;
}
.contact-form .btns .check-btn label input {
  display: none;
}
.contact-form .btns .check-btn label input:checked + span {
  background-color: #1B1464;
  color: white;
}
.contact-form .btns .check-btn label span {
  font-weight: 500;
  padding: 28px;
  display: block;
  -webkit-box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.4);
          box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.4);
  border: 2px solid #1B1464;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  font-size: 20px;
  text-align: center;
  color: #1C2A53;
}
@media screen and (max-width: 767px) {
  .contact-form .btns .check-btn label span {
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
    font-size: 16px;
    padding: 20px;
  }
}
.contact-form .submit .head {
  max-width: none;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .contact-form .submit .head {
    font-size: 15px;
  }
}
.contact-form .submit a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.contact-form .submit input {
  border: none;
  display: block;
  background: #2BAB38;
  color: white;
  text-align: center;
  width: 100%;
  font-size: 24px;
  padding: 26px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .contact-form .submit input {
    padding: 11px;
    font-size: 17px;
  }
}
.contact-form .submit input:hover {
  opacity: 0.7;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 20px;
  margin-top: 8px;
}