@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Noto Sans JP", serif;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

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

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5748031496vw;
  }
}
@media (min-width: 1016px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

body {
  background: #F4F3F1;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

button {
  padding: 0;
}

.l-inner {
  width: 100%;
  max-width: 1066px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 70px;
  top: 4.375rem;
  top: 0;
  right: 0;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  padding: 60px 20px 30px;
  padding: 3.75rem 1.25rem 1.875rem;
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__item {
  font-size: 15px;
  font-size: 0.9375rem;
}
.drawer__item a {
  padding: 15px 0;
  padding: 0.9375rem 0;
  display: block;
}

/* entitle */
.entitle {
  text-align: center;
  font-family: "Ephesis", serif;
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .entitle {
    font-size: 1.25rem;
  }
}

/* fnav */
.fnav__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .fnav__item-wrapper {
    display: block;
  }
}

.fnav__items + .fnav__items {
  margin-left: 50px;
  margin-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .fnav__items + .fnav__items {
    margin-left: 0;
  }
}

.fnav__item {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .fnav__item {
    font-size: 0.9375rem;
  }
}
.fnav__item a {
  display: inline-block;
  padding: 3px 0;
  padding: 0.1875rem 0;
}
@media screen and (max-width: 767px) {
  .fnav__item a {
    padding: 0.4375rem 0;
  }
}

.fnav__subitems {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.fnav__subitem {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .fnav__subitem {
    font-size: 0.875rem;
  }
}
.fnav__subitem + .fnav__subitem {
  margin-top: 2px;
  margin-top: 0.125rem;
}
.fnav__subitem a {
  padding-left: 26px;
  padding-left: 1.625rem;
  position: relative;
}
.fnav__subitem a::before {
  position: absolute;
  content: "";
  width: 18px;
  width: 1.125rem;
  height: 1px;
  height: 0.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: #fff;
}

/* footer */
.footer {
  color: #fff;
  background: #494953;
  padding: 64px 0 40px;
  padding: 4rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2.5rem 0 1.25rem;
  }
}
.footer .l-inner {
  max-width: 1270px;
  max-width: 79.375rem;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    display: block;
  }
}

.footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo {
  width: 60px;
  width: 3.75rem;
  max-width: 100%;
}

.footer__company {
  font-size: 18px;
  font-size: 1.125rem;
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .footer__company {
    font-size: 1rem;
    margin-left: 0.9375rem;
  }
}

.footer__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 2.5rem;
  }
}

.footer__copyright {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 3.75rem;
  }
}

/* form */
.form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form__item {
  width: 100%;
}
.form__item + .form__item {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .form__item + .form__item {
    margin-top: 1.875rem;
  }
}

.form__item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__item-label span, .form__item-label label {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
}
.form__item-label span {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  border-radius: 0.25rem;
  padding: 3px 6px;
  padding: 0.1875rem 0.375rem;
}
.form__item-label span.required {
  background: #26416F;
}
.form__item-label span.option {
  background: #747474;
}
.form__item-label label {
  color: #1A1A1A;
  margin-left: 6px;
  margin-left: 0.375rem;
}

.form__item-input {
  margin-top: 6px;
  margin-top: 0.375rem;
  position: relative;
}
.form__item-input label.error {
  font-size: 15px;
  font-size: 0.9375rem;
  color: red;
  position: absolute;
  left: 0;
  bottom: -1.5em;
}
@media screen and (max-width: 767px) {
  .form__item-input label.error {
    font-size: 0.875rem;
  }
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input select, .form__item-input textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #949494;
  border: 0.0625rem solid #949494;
  border-radius: 0.25rem;
  padding: 20px 12px;
  padding: 1.25rem 0.75rem;
}
.form__item-input input[type=text]::-webkit-input-placeholder, .form__item-input input[type=tel]::-webkit-input-placeholder, .form__item-input input[type=email]::-webkit-input-placeholder, .form__item-input select::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder {
  font-size: 14px;
  font-size: 0.875rem;
  color: #CACACA;
}
.form__item-input input[type=text]::-moz-placeholder, .form__item-input input[type=tel]::-moz-placeholder, .form__item-input input[type=email]::-moz-placeholder, .form__item-input select::-moz-placeholder, .form__item-input textarea::-moz-placeholder {
  font-size: 14px;
  font-size: 0.875rem;
  color: #CACACA;
}
.form__item-input input[type=text]::-ms-input-placeholder, .form__item-input input[type=tel]::-ms-input-placeholder, .form__item-input input[type=email]::-ms-input-placeholder, .form__item-input select::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder {
  font-size: 14px;
  font-size: 0.875rem;
  color: #CACACA;
}
.form__item-input input[type=text]::placeholder, .form__item-input input[type=tel]::placeholder, .form__item-input input[type=email]::placeholder, .form__item-input select::placeholder, .form__item-input textarea::placeholder {
  font-size: 14px;
  font-size: 0.875rem;
  color: #CACACA;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input select {
  height: 63px;
  height: 3.9375rem;
}
.form__item-input textarea {
  height: 180px;
  height: 11.25rem;
  resize: none;
}
.form__item-input select {
  background: url(../img/arrow-icon01.png) no-repeat center right 12px/16px;
  background: url(../img/arrow-icon01.png) no-repeat center right 0.75rem/1rem;
  color: #2F2F2F;
}

.form__double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form__double div {
  display: block;
  width: 47%;
}
.form__double span {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #595959;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.form__half {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .form__half {
    width: 100%;
  }
}

.form__short input[type=text] {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .form__short input[type=text] {
    width: 100%;
  }
}

.form__select {
  background: #fff;
  border-radius: 0.25rem;
}

.form__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__tel input[type=tel] {
  width: 98px;
  width: 6.125rem;
}
@media screen and (max-width: 767px) {
  .form__tel input[type=tel] {
    width: 5.625rem;
  }
}
.form__tel input[type=tel]:first-of-type {
  margin-right: 8px;
  margin-right: 0.5rem;
}
.form__tel input[type=tel]:nth-of-type(2) {
  margin: 0 8px;
  margin: 0 0.5rem;
}
.form__tel input[type=tel]:nth-of-type(3) {
  margin-left: 8px;
  margin-left: 0.5rem;
}
.form__tel span {
  font-size: 10px;
  font-size: 0.625rem;
}

.form__submit {
  text-align: center;
  display: block;
  width: 320px;
  width: 20rem;
  max-width: 100%;
  margin: 103px auto 0;
  margin: 6.4375rem auto 0;
  font-weight: 700;
  background: #26416F;
  color: #fff;
  border-radius: 2.8125rem;
  padding: 24px 10px;
  padding: 1.5rem 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__submit {
    margin-top: 3.75rem;
  }
}
.form__submit::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  width: 27px;
  width: 1.6875rem;
  height: 24px;
  height: 1.5rem;
  background: url(../img/arrow-icon02.png) no-repeat center/contain;
}

/* gnav */
.gnav {
  height: inherit;
}

.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.gnav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
.gnav__item + .gnav__item {
  margin-left: 50px;
  margin-left: 3.125rem;
}
.gnav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  width: 100%;
}
.gnav__item.gnav__item--contact {
  text-align: center;
  width: 190px;
  width: 11.875rem;
  color: #fff;
  background: #26416F;
  margin-left: 88px;
  margin-left: 5.5rem;
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 20px;
  right: 1.25rem;
  top: 25px;
  top: 1.5625rem;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  cursor: pointer;
  text-align: center;
}
.hamburger.active .hamburger__border {
  top: 8px;
  top: 0.5rem;
}
.hamburger.active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active .hamburger__border:nth-child(2), .hamburger.active .hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  left: 0;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 0;
}
.hamburger__border:nth-child(2) {
  top: 10px;
  top: 0.625rem;
}
.hamburger__border:nth-child(3) {
  top: 20px;
  top: 1.25rem;
}

/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 100px;
  height: 6.25rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    height: 4.375rem;
    padding-left: 1.25rem;
  }
}
.header.header--top {
  background: transparent;
}
.header.active {
  background: #fff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
}

.header__logo {
  width: 60px;
  width: 3.75rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 3.125rem;
  }
}
.header__logo a {
  display: block;
}

/* main */
.main {
  overflow: hidden;
}

/* title */
.title {
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.75rem;
  }
}

/* area */
.area .title, .area .entitle {
  color: #fff;
}

.area__content {
  background: url(../img/area-bg.png) no-repeat center/cover;
  padding: 70px 0 230px;
  padding: 4.375rem 0 14.375rem;
}
@media screen and (max-width: 767px) {
  .area__content {
    padding: 3.125rem 0 7.5rem;
  }
}

.area__header {
  position: relative;
}

.area__img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -100px;
  top: -6.25rem;
  width: 362px;
  width: 22.625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .area__img {
    width: 16.25rem;
    top: -4.375rem;
  }
}

.area__text {
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1B285C;
  letter-spacing: 0;
  background: rgba(255, 255, 255, .8);
  border: 2px solid #1B285C;
  border: 0.125rem solid #1B285C;
  width: 592px;
  width: 37rem;
  max-width: 100%;
  margin: 120px auto 0;
  margin: 7.5rem auto 0;
  padding: 40px 10px;
  padding: 2.5rem 0.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .area__text {
    font-size: 1.25rem;
    padding: 1.875rem 0.625rem;
    margin-top: 5rem;
  }
}
.area__text::before {
  position: absolute;
  content: "";
  width: calc(100% - 1.25rem);
  height: calc(100% - 1.25rem);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid #1B285C;
  border: 0.0625rem solid #1B285C;
}

.area__slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.area__slider {
  -webkit-animation: scroll-left 30s infinite linear 0.5s both;
          animation: scroll-left 30s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.area__slider-item {
  width: 43.4782608696vw;
}

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

@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* company */
.company {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 3.75rem 0;
  }
}
.company .entitle {
  color: #736021;
}
.company .title {
  color: #26416F;
}

.company__content {
  background: #E3E9F7;
  padding: 70px 50px;
  padding: 4.375rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .company__content {
    padding: 2.5rem 1.5625rem 3.125rem;
  }
}

.company__list {
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company__list {
    margin-top: 2.5rem;
  }
}

.company__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  font-size: 1.125rem;
  border-top: 1px solid #fff;
  border-top: 0.0625rem solid #fff;
  padding: 31px 0;
  padding: 1.9375rem 0;
}
@media screen and (max-width: 767px) {
  .company__list-item {
    display: block;
    font-size: 0.9375rem;
    padding: 1.25rem 0;
  }
}

.company__list-title {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .company__list-title {
    width: 100%;
  }
}

.company__list-text {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .company__list-text {
    width: 100%;
    margin-top: 0.625rem;
  }
}

/* contact */
.contact {
  padding: 165px 0 140px;
  padding: 10.3125rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 7.5rem 0 5rem;
  }
}
.contact .entitle {
  color: #736021;
}
.contact .title {
  color: #26416F;
}
.contact .l-inner {
  max-width: 710px;
  max-width: 44.375rem;
}

.contact__content {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact__content {
    margin-top: 2.5rem;
  }
}

/* mv */
.mv {
  padding: 240px 0 130px;
  padding: 15rem 0 8.125rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 6.25rem 0 3.125rem;
  }
}
.mv::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 158px;
  height: 9.875rem;
  background: #fff;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .mv::after {
    height: 4.375rem;
  }
}

.mv__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 69.5%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .mv__img {
    width: 75%;
  }
}
.mv__img img {
  height: 650px;
  height: 40.625rem;
  max-height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .mv__img img {
    height: 23.75rem;
  }
}

.mv__text span {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #fff;
  letter-spacing: 0.05em;
  background: #26416F;
  padding: 5px 0 5px 8px;
  padding: 0.3125rem 0 0.3125rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .mv__text span {
    font-size: 0.6875rem;
  }
}
.mv__text span:not(:first-child) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .mv__text span:not(:first-child) {
    margin-top: 0.3125rem;
  }
}

.mv__subimg {
  width: 439px;
  width: 27.4375rem;
  max-width: 100%;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .mv__subimg {
    width: 21.875rem;
    margin-top: 0.9375rem;
  }
}

.mv__entext {
  width: 400px;
  width: 25rem;
  max-width: 100%;
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin-left: -20px;
  margin-left: -1.25rem;
}
@media screen and (max-width: 767px) {
  .mv__entext {
    width: 17.5rem;
    margin-left: 0;
    margin-top: 0.3125rem;
  }
}

/* service */
.service .title, .service .entitle {
  color: #fff;
}

.service__header {
  background: #26416F;
  padding: 70px 0 80px;
  padding: 4.375rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .service__header {
    padding: 3.125rem 0 3.75rem;
  }
}

.service__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .service__anchor {
    display: block;
    margin-top: 3.75rem;
  }
}

.service__anchor-item {
  width: 210px;
  width: 13.125rem;
  max-width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .service__anchor-item {
    width: 100%;
  }
  .service__anchor-item + .service__anchor-item {
    margin-top: 1.25rem;
  }
}
.service__anchor-item a {
  display: block;
  background: url(../img/anchor-icon.png) no-repeat top right/23px;
  background: url(../img/anchor-icon.png) no-repeat top right/1.4375rem;
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .service__anchor-item a {
    padding-bottom: 0.75rem;
  }
}

.service__content {
  padding: 80px 0 85px;
  padding: 5rem 0 5.3125rem;
}
@media screen and (max-width: 767px) {
  .service__content {
    padding: 3.75rem 0;
  }
}

.service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 115px 80px;
  gap: 7.1875rem 5rem;
}
@media screen and (max-width: 767px) {
  .service__items {
    display: block;
  }
}

.service__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 2.5rem);
          flex: 0 1 calc(50% - 2.5rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__item + .service__item {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 0.0625rem solid #A4B3CC;
  }
}
.service__item::before, .service__item::after {
  position: absolute;
  content: "";
  background: #A4B3CC;
}
@media screen and (max-width: 767px) {
  .service__item::before, .service__item::after {
    display: none;
  }
}
.service__item:first-child::after, .service__item:nth-child(2)::after {
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  bottom: -55px;
  bottom: -3.4375rem;
}
.service__item:nth-child(even)::before {
  width: 1px;
  width: 0.0625rem;
  height: 100%;
  top: 0;
  left: -40px;
  left: -2.5rem;
}

.service__item-title {
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .service__item-title {
    font-size: 1.25rem;
  }
}

.service__item-img {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.service__item-text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

/* thanks */
.thanks {
  padding: 165px 0 140px;
  padding: 10.3125rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding: 7.5rem 0 5rem;
  }
}
.thanks .entitle {
  color: #736021;
}
.thanks .title {
  color: #26416F;
}
.thanks .l-inner {
  max-width: 710px;
  max-width: 44.375rem;
}

.thanks__text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}

.thanks__btn {
  text-align: center;
  display: block;
  width: 320px;
  width: 20rem;
  max-width: 100%;
  margin: 103px auto 0;
  margin: 6.4375rem auto 0;
  font-weight: 700;
  background: #26416F;
  color: #fff;
  border-radius: 2.8125rem;
  padding: 24px 10px;
  padding: 1.5rem 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .thanks__btn {
    margin-top: 3.75rem;
  }
}
.thanks__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  width: 27px;
  width: 1.6875rem;
  height: 24px;
  height: 1.5rem;
  background: url(../img/arrow-icon02.png) no-repeat center/contain;
}
/*# sourceMappingURL=style.css.map */
