@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Noto Sans", sans-serif;
  color: #313131;
  line-height: 1.5;
  font-weight: 500;
}

@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.766004415vw;
  }
}
@media (min-width: 906px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  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;
  }
}

*,
*::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;
}

/* 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;
}

/* 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: 956px;
  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;
  }
}

/* l-section */
.l-section {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 3.75rem 0;
  }
}

/* cv */
.cv {
  text-align: center;
  padding: 80px 0 180px;
  padding: 5rem 0 11.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv {
    padding: 3.75rem 0 5rem;
  }
}
.cv::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  height: 8.75rem;
  background: url(../img/cv-bg.png) repeat-x center/contain;
}
@media screen and (max-width: 767px) {
  .cv::after {
    height: 3.75rem;
  }
}

.cv__inner {
  padding: 0 15px;
  padding: 0 0.9375rem;
}

.cv__img {
  width: 804px;
  width: 50.25rem;
  max-width: 100%;
  margin: 0 auto;
}

.cv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .cv__btns {
    gap: 0 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .cv__btns {
    display: block;
    margin-top: 2.5rem;
  }
}

.cv__btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 115px;
  min-height: 7.1875rem;
  max-width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0px 4px 2px rgba(123, 129, 141, .44);
          box-shadow: 0px 4px 2px rgba(123, 129, 141, .44);
}
@media screen and (max-width: 1200px) {
  .cv__btn {
    min-height: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .cv__btn {
    min-height: 4.375rem;
    font-size: 0.75rem;
    border-radius: 0.625rem;
    margin: 0 auto;
  }
}
.cv__btn:first-child {
  width: 314px;
  width: 19.625rem;
  background: #f49312;
}
@media screen and (max-width: 1200px) {
  .cv__btn:first-child {
    width: 15.625rem;
  }
}
@media screen and (max-width: 767px) {
  .cv__btn:first-child {
    width: 18.75rem;
  }
}
.cv__btn:nth-child(2) {
  width: 399px;
  width: 24.9375rem;
  background: #1F8748;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 1200px) {
  .cv__btn:nth-child(2) {
    width: 23.125rem;
  }
}
@media screen and (max-width: 767px) {
  .cv__btn:nth-child(2) {
    width: 18.75rem;
    padding-top: 0;
    margin-top: 0.9375rem;
  }
}
.cv__btn:nth-child(2) span {
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .cv__btn:nth-child(2) span {
    width: 12.5rem;
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .cv__btn:nth-child(2) span:first-child {
    display: none;
  }
}
.cv__btn:nth-child(2) span:nth-child(2) {
  display: none;
}
@media screen and (max-width: 767px) {
  .cv__btn:nth-child(2) span:nth-child(2) {
    display: block;
    width: auto;
    background: url(../img/tel-icon.png) no-repeat center left/1.25rem;
    padding-left: 1.5625rem;
  }
}
.cv__btn span {
  display: inline-block;
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 1200px) {
  .cv__btn span {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .cv__btn span {
    font-size: 1.25rem;
  }
}

.cv__text {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .cv__text {
    font-size: 1.125rem;
  }
}
.cv__text span {
  color: #EE7831;
  font-weight: 700;
}

.cv__subtext {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .cv__subtext {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  background: #1F3863;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 613px;
  width: 38.3125rem;
  max-width: 100%;
  padding-top: 85px;
  padding-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .drawer {
    width: 18.75rem;
    padding-top: 3.75rem;
  }
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__item a {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  border-top: 1px solid #fff;
  border-top: 0.0625rem solid #fff;
  padding: 21px 35px;
  padding: 1.3125rem 2.1875rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .drawer__item a {
    font-size: 1.125rem;
    padding: 0.9375rem 1.25rem;
  }
}
.drawer__item a:hover {
  opacity: 1;
  background: #415E90;
}

/* floating */
.floating {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 30px 0;
  padding: 1.875rem 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .floating {
    padding: 0.625rem 0;
  }
}

@media screen and (max-width: 767px) {
  .floating__inner {
    padding: 0 0.625rem;
  }
}

.floating__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 30px;
  gap: 0 1.875rem;
}
@media screen and (max-width: 1200px) {
  .floating__btns {
    gap: 0 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .floating__btns {
    gap: 0 0.625rem;
  }
}

.floating__btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 115px;
  min-height: 7.1875rem;
  max-width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0px 4px 2px rgba(123, 129, 141, .44);
          box-shadow: 0px 4px 2px rgba(123, 129, 141, .44);
}
@media screen and (max-width: 1200px) {
  .floating__btn {
    min-height: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .floating__btn {
    min-height: 4.0625rem;
    font-size: 0.625rem;
    border-radius: 0.625rem;
  }
}
.floating__btn:first-child {
  width: 314px;
  width: 19.625rem;
  background: #f49312;
}
@media screen and (max-width: 1200px) {
  .floating__btn:first-child {
    width: 15.625rem;
  }
}
.floating__btn:nth-child(2) {
  width: 399px;
  width: 24.9375rem;
  background: #1F8748;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 1200px) {
  .floating__btn:nth-child(2) {
    width: 23.125rem;
  }
}
@media screen and (max-width: 767px) {
  .floating__btn:nth-child(2) {
    padding-top: 0;
  }
}
.floating__btn:nth-child(2) span {
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .floating__btn:nth-child(2) span {
    width: 9.375rem;
    margin-bottom: 0.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .floating__btn:nth-child(2) span:first-child {
    display: none;
  }
}
.floating__btn:nth-child(2) span:nth-child(2) {
  display: none;
}
@media screen and (max-width: 767px) {
  .floating__btn:nth-child(2) span:nth-child(2) {
    display: block;
    width: auto;
    background: url(../img/tel-icon.png) no-repeat center left/0.9375rem;
    padding-left: 1.25rem;
  }
}
.floating__btn span {
  display: inline-block;
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 1200px) {
  .floating__btn span {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .floating__btn span {
    font-size: 1rem;
  }
}

/* footer */
.footer {
  padding: 32px 0 200px;
  padding: 2rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 1.25rem 0 6.25rem;
  }
}

.footer__logo {
  width: 237px;
  width: 14.8125rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 9.375rem;
  }
}

/* form */
.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .form__item {
    display: block;
  }
}
.form__item + .form__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.form__item.mt-50 {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .form__item.mt-50 {
    margin-top: 2.5rem;
  }
}

.form__item-label {
  width: 24%;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .form__item-label {
    width: 100%;
    padding-top: 0;
  }
}
.form__item-label label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .form__item-label label {
    font-size: 1.125rem;
  }
}
.form__item-label span {
  display: inline-block;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 9px;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #fff;
  background: #EC0D1F;
  border-radius: 0.3125rem;
  padding: 3px 8px;
  padding: 0.1875rem 0.5rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}

.form__item-input {
  width: 76%;
}
@media screen and (max-width: 767px) {
  .form__item-input {
    width: 100%;
    margin-top: 0.625rem;
  }
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea {
  width: 100%;
  background: #fff;
  border-radius: 0.25rem;
  border: 1px solid #BCBCBC;
  border: 0.0625rem solid #BCBCBC;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email] {
  height: 38px;
  height: 2.375rem;
}
.form__item-input textarea {
  resize: none;
  height: 206px;
  height: 12.875rem;
}

.form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  gap: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__flex {
    gap: 0 1.25rem;
  }
}

.form__flex-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.625rem);
          flex: 0 1 calc(50% - 0.625rem);
  position: relative;
}
.form__flex-item span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  left: 0;
  top: -25px;
  top: -1.5625rem;
}
@media screen and (max-width: 767px) {
  .form__flex-item span {
    position: static;
    font-size: 1rem;
  }
}
.form__flex-item input[type=text] {
  width: 202px;
  width: 12.625rem;
}
@media screen and (max-width: 767px) {
  .form__flex-item input[type=text] {
    width: 100%;
  }
}

.form__caution {
  color: #EC0D1F;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.form__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__tel input[type=text] {
  width: 124px;
  width: 7.75rem;
}
@media screen and (max-width: 767px) {
  .form__tel input[type=text] {
    width: 6.25rem;
  }
}
.form__tel span {
  display: inline-block;
  margin: 0 23px;
  margin: 0 1.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__tel span {
    margin: 0 0.625rem;
  }
}
.form__tel span::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 2px;
  height: 0.125rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #333;
}
@media screen and (max-width: 767px) {
  .form__tel span::before {
    width: 0.625rem;
  }
}

.form__address-item {
  position: relative;
}
.form__address-item + .form__address-item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__address-item + .form__address-item {
    margin-top: 1.25rem;
  }
}
.form__address-item > span {
  position: absolute;
  left: 0;
  top: -25px;
  top: -1.5625rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .form__address-item > span {
    position: static;
  }
}

.form__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__post input[type=text] {
  width: 124px;
  width: 7.75rem;
}
@media screen and (max-width: 767px) {
  .form__post input[type=text] {
    width: 6.25rem;
  }
}
.form__post span {
  display: inline-block;
  margin: 0 23px;
  margin: 0 1.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__post span {
    margin: 0 0.625rem;
  }
}
.form__post span::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 2px;
  height: 0.125rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #333;
}
@media screen and (max-width: 767px) {
  .form__post span::before {
    width: 0.625rem;
  }
}
.form__post button {
  display: inline-block;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: #A0A0A0;
  border-radius: 0.3125rem;
  padding: 2px 9px;
  padding: 0.125rem 0.5625rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
.form__post button:hover {
  opacity: 1;
}

.form__chance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .form__chance {
    display: block;
  }
}
.form__chance label:nth-child(odd) {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .form__chance label:nth-child(odd) {
    width: auto;
  }
}
.form__chance label:nth-child(even) {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .form__chance label:nth-child(even) {
    width: auto;
  }
}
.form__chance label:last-child {
  margin-bottom: 0;
}

.form__checkbox label {
  display: block;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.form__checkbox input[type=checkbox] + span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  cursor: pointer;
  padding-left: 37px;
  padding-left: 2.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__checkbox input[type=checkbox] + span {
    font-size: 1.125rem;
  }
}
.form__checkbox input[type=checkbox] + span::before, .form__checkbox input[type=checkbox] + span::after {
  position: absolute;
  content: "";
}
.form__checkbox input[type=checkbox] + span::before {
  display: block;
  background: #fff;
  border-radius: 0.25rem;
  border: 2px solid #BCBCBC;
  border: 0.125rem solid #BCBCBC;
  top: 3px;
  top: 0.1875rem;
  left: 0;
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
}
@media screen and (max-width: 767px) {
  .form__checkbox input[type=checkbox] + span::before {
    top: 0;
  }
}
.form__checkbox input[type=checkbox] + span::after {
  border-bottom: 3px solid #313131;
  border-bottom: 0.1875rem solid #313131;
  border-left: 3px solid #313131;
  border-left: 0.1875rem solid #313131;
  height: 10px;
  height: 0.625rem;
  width: 15px;
  width: 0.9375rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 5px;
  left: 0.3125rem;
  top: 10px;
  top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__checkbox input[type=checkbox] + span::after {
    top: 0.4375rem;
  }
}
.form__checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__check {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.form__check input[type=checkbox] + span {
  display: inline-block;
  font-size: 22px;
  font-size: 1.375rem;
  cursor: pointer;
  padding-left: 37px;
  padding-left: 2.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__check input[type=checkbox] + span {
    font-size: 1.125rem;
  }
}
.form__check input[type=checkbox] + span::before, .form__check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  display: block;
}
.form__check input[type=checkbox] + span::before {
  background: #fff;
  border: 1px solid #BCBCBC;
  border: 0.0625rem solid #BCBCBC;
  border-radius: 0.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  left: 0;
  top: 50%;
}
.form__check input[type=checkbox] + span::after {
  border-bottom: 3px solid #313131;
  border-bottom: 0.1875rem solid #313131;
  border-left: 3px solid #313131;
  border-left: 0.1875rem solid #313131;
  height: 10px;
  height: 0.625rem;
  width: 15px;
  width: 0.9375rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 5px;
  left: 0.3125rem;
  top: 10px;
  top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__check input[type=checkbox] + span::after {
    top: 0.4375rem;
  }
}
.form__check input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.form__check a {
  display: inline-block;
  color: #036FCC;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-underline-offset: 0.1875rem;
  background: url(../img/privacy-icon.png) no-repeat center right/18px;
  background: url(../img/privacy-icon.png) no-repeat center right/1.125rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.form__submit {
  display: block;
  width: 294px;
  width: 18.375rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border-radius: 1.25rem;
  background: #f49312;
  -webkit-box-shadow: 0px 4px 2px rgba(123, 129, 141, .44);
          box-shadow: 0px 4px 2px rgba(123, 129, 141, .44);
  padding: 19px 0;
  padding: 1.1875rem 0;
  margin: 80px auto 0;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .form__submit {
    font-size: 1.25rem;
    margin-top: 3.75rem;
  }
}

/* gnav */
.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 a {
  display: inline-block;
  padding: 10px 0;
  padding: 0.625rem 0;
}

/* hamburger */
.hamburger {
  position: absolute;
  z-index: 30;
  right: 27px;
  right: 1.6875rem;
  top: 27px;
  top: 1.6875rem;
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .hamburger {
    width: 1.875rem;
    height: 1.875rem;
    top: 0.9375rem;
    right: 0.9375rem;
  }
}
.hamburger.active .hamburger__border {
  top: 15px;
  top: 0.9375rem;
  background: #fff;
}
.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:hover {
  opacity: 1;
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  height: 0.1875rem;
  border-radius: 1.25rem;
  left: 0;
  background: #1F3863;
  -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: 14px;
  top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .hamburger__border:nth-child(2) {
    top: 0.625rem;
  }
}
.hamburger__border:nth-child(3) {
  top: 28px;
  top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .hamburger__border:nth-child(3) {
    top: 1.25rem;
  }
}

/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 110px;
  height: 6.875rem;
  z-index: 100;
  padding-left: 34px;
  padding-left: 2.125rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 4.375rem;
    padding-left: 1.25rem;
  }
}
.header.active {
  background: rgba(255, 255, 255, .3);
}

.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__title {
  width: 220px;
  width: 13.75rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__title {
    width: 9.375rem;
  }
}
.header__title a {
  display: block;
}

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

/* title */
.title {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 65px;
  padding-bottom: 4.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .title {
    padding-bottom: 2.5rem;
  }
}
.title::after {
  position: absolute;
  content: "";
  width: 446px;
  width: 27.875rem;
  height: 46px;
  height: 2.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: url(../img/title-bg.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .title::after {
    width: 12.5rem;
    height: 1.5625rem;
  }
}

/* area */
.area {
  background: url(../img/area-bg.png) no-repeat center/cover;
}

.area__inner {
  max-width: 1250px;
  max-width: 78.125rem;
}
@media screen and (max-width: 767px) {
  .area__inner {
    padding: 0 0.625rem;
  }
}

.area__title {
  width: 770px;
  width: 48.125rem;
}
@media screen and (max-width: 767px) {
  .area__title {
    width: 18.75rem;
  }
}

.area__img {
  width: 1220px;
  width: 76.25rem;
  max-width: 100%;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .area__img {
    margin-top: 1.25rem;
  }
}

/* company */
.company {
  text-align: center;
  background: #1F3863;
  padding: 75px 0 65px;
  padding: 4.6875rem 0 4.0625rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 3.75rem 0;
  }
}

.company__title {
  width: 637px;
  width: 39.8125rem;
}
@media screen and (max-width: 767px) {
  .company__title {
    width: 12.5rem;
  }
}

.company__text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.42;
  color: #fff;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company__text {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}
.company__text span {
  font-weight: 700;
}

.company__subtitle {
  text-align: center;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  color: #fff;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .company__subtitle {
    font-size: 1.75rem;
    margin-top: 2.5rem;
  }
}

.company__img {
  width: 248px;
  width: 15.5rem;
  max-width: 100%;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .company__img {
    margin-top: 1.875rem;
  }
}

.company__link {
  display: block;
  width: 294px;
  width: 18.375rem;
  max-width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #EE7831;
  border-radius: 1.25rem;
  padding: 19px;
  padding: 1.1875rem;
  margin: 45px auto 0;
  margin: 2.8125rem auto 0;
}
@media screen and (max-width: 767px) {
  .company__link {
    font-size: 1.25rem;
  }
}

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

.company__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .company__list-item {
    display: block;
  }
}
.company__list-item + .company__list-item {
  border-top: 1px solid #C1C1C1;
  border-top: 0.0625rem solid #C1C1C1;
}
.company__list-item:first-child .company__list-title {
  border-radius: 0.9375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .company__list-item:first-child .company__list-title {
    border-radius: 0.9375rem 0.9375rem 0 0;
  }
}
.company__list-item:first-child .company__list-text {
  border-radius: 0 0.9375rem 0 0;
}
@media screen and (max-width: 767px) {
  .company__list-item:first-child .company__list-text {
    border-radius: 0;
  }
}
.company__list-item:last-child .company__list-title {
  border-radius: 0 0 0 0.9375rem;
}
@media screen and (max-width: 767px) {
  .company__list-item:last-child .company__list-title {
    border-radius: 0;
  }
}
.company__list-item:last-child .company__list-text {
  border-radius: 0 0 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .company__list-item:last-child .company__list-text {
    border-radius: 0 0 0.9375rem 0.9375rem;
  }
}

.company__list-title, .company__list-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.company__list-title {
  width: 34%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  background: #DBE2F3;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .company__list-title {
    width: 100%;
    font-size: 1.25rem;
    padding: 0.9375rem 1.25rem;
  }
}

.company__list-text {
  width: 66%;
  text-align: left;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.55;
  background: #fff;
  padding: 23px 40px;
  padding: 1.4375rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .company__list-text {
    width: 100%;
    font-size: 1.125rem;
    padding: 1.25rem 1.25rem;
  }
}

/* contact */
.contact {
  background: #FFFCF4;
}

.contact__title {
  width: 723px;
  width: 45.1875rem;
}
@media screen and (max-width: 767px) {
  .contact__title {
    width: 21.875rem;
  }
}

.contact__text {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.45;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}
.contact__text span {
  font-weight: 700;
}

.contact__form {
  margin-top: 60px;
  margin-top: 3.75rem;
}

/* difference */
.difference {
  position: relative;
  z-index: 1;
}
.difference::before, .difference::after {
  position: absolute;
  content: "";
  width: 100%;
  z-index: -1;
  height: 553px;
  height: 34.5625rem;
}
@media screen and (min-width: 1600px) {
  .difference::before, .difference::after {
    height: 43.75rem;
  }
}
.difference::before {
  top: 20px;
  top: 1.25rem;
  background: url(../img/difference-bg.png) no-repeat center top/cover;
}
@media screen and (min-width: 1600px) {
  .difference::before {
    top: -3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .difference::before {
    top: 5rem;
  }
}
.difference::after {
  bottom: 190px;
  bottom: 11.875rem;
  background: url(../img/difference-bg.png) no-repeat center bottom/cover;
}
@media screen and (min-width: 1600px) {
  .difference::after {
    bottom: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .difference::after {
    bottom: 12.5rem;
  }
}

.difference__wrapper {
  padding-top: 0;
}

.difference__inner {
  padding: 0 15px;
  padding: 0 0.9375rem;
}

.difference__title {
  width: 570px;
  width: 35.625rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .difference__title {
    width: 21.875rem;
  }
}

.difference__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 43px;
  margin-top: 2.6875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .difference__units {
    margin-top: 1.875rem;
  }
}
.difference__units::before, .difference__units::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #F5BBBB;
  z-index: -1;
}

.difference__unit {
  width: 50%;
  padding: 40px 24px 47px;
  padding: 2.5rem 1.5rem 2.9375rem;
}
@media screen and (max-width: 767px) {
  .difference__unit {
    padding: 1.875rem 0.625rem;
  }
}
.difference__unit:first-child {
  background: #EAEAEA;
  border-radius: 0.9375rem 0 0 0.9375rem;
}
.difference__unit:first-child .difference__subtitle {
  background: #2F3F98;
}
.difference__unit:first-child .difference__item:nth-child(2)::after {
  width: 204px;
  width: 12.75rem;
  background: url(../img/difference-arrow02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .difference__unit:first-child .difference__item:nth-child(2)::after {
    width: 5.3125rem;
  }
}
.difference__unit:first-child .difference__item:nth-child(3) {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .difference__unit:first-child .difference__item:nth-child(3) {
    padding-bottom: 0.5rem;
  }
}
.difference__unit:first-child .difference__item:nth-child(3) .difference__item-title {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .difference__unit:first-child .difference__item:nth-child(3) .difference__item-title {
    margin-bottom: 0.625rem;
  }
}
.difference__unit:first-child .difference__item:nth-child(3) .difference__item-img {
  width: 317px;
  width: 19.8125rem;
}
.difference__unit:first-child .difference__item-title {
  width: 336px;
  width: 21rem;
  background: #898989;
}
.difference__unit:nth-child(2) {
  background: #FAEEE4;
  border-radius: 0 0.9375rem 0.9375rem 0;
}
.difference__unit:nth-child(2) .difference__subtitle {
  background: #FF0000;
}
.difference__unit:nth-child(2) .difference__item-title {
  width: 236px;
  width: 14.75rem;
  background: #EE7831;
}
@media screen and (max-width: 767px) {
  .difference__unit:nth-child(2) .difference__item-title {
    padding-top: 0.9375rem;
  }
}

.difference__subtitle {
  text-align: center;
  width: 179px;
  width: 11.1875rem;
  max-width: 100%;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.5625rem;
  padding: 8px;
  padding: 0.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .difference__subtitle {
    font-size: 1.25rem;
  }
}

.difference__items {
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .difference__items {
    margin-top: 0.9375rem;
  }
}

.difference__item {
  text-align: center;
  background: #fff;
  border-radius: 0.9375rem;
  padding: 25px 15px 15px;
  padding: 1.5625rem 0.9375rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .difference__item {
    border-radius: 0.9375rem;
    padding: 1.25rem 0.625rem 0.625rem;
  }
}
.difference__item + .difference__item {
  margin-top: 92px;
  margin-top: 5.75rem;
}
@media screen and (max-width: 767px) {
  .difference__item + .difference__item {
    margin-top: 2.5rem;
  }
}
.difference__item:first-child .difference__item-img {
  width: 335px;
  width: 20.9375rem;
}
.difference__item:first-child, .difference__item:nth-child(2) {
  position: relative;
}
.difference__item:first-child::after, .difference__item:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 58px;
  width: 3.625rem;
  height: 62px;
  height: 3.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -80px;
  bottom: -5rem;
  background: url(../img/difference-arrow01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .difference__item:first-child::after, .difference__item:nth-child(2)::after {
    width: 1.5625rem;
    height: 1.875rem;
    bottom: -2.1875rem;
  }
}
.difference__item:last-child {
  min-height: 421px;
  min-height: 26.3125rem;
  padding: 35px 25px 20px;
  padding: 2.1875rem 1.5625rem 1.25rem;
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .difference__item:last-child {
    min-height: 28.125rem;
    margin-top: 1.25rem;
    padding: 1.25rem 0.625rem;
  }
}

.difference__item-img {
  width: 375px;
  width: 23.4375rem;
  max-width: 100%;
  margin: 0 auto;
}

.difference__item-title {
  display: inline-block;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.75rem;
  max-width: 100%;
  margin: 0 auto 17px;
  margin: 0 auto 1.0625rem;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .difference__item-title {
    font-size: 1rem;
    line-height: 1.3;
    min-height: 3.125rem;
    border-radius: 0.5rem;
  }
}
.difference__item-title span {
  display: inline-block;
  width: 33px;
  width: 2.0625rem;
  min-width: 33px;
  min-width: 2.0625rem;
  height: 33px;
  height: 2.0625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 50%;
  margin-right: 12px;
  margin-right: 0.75rem;
}
@media screen and (max-width: 767px) {
  .difference__item-title span {
    width: 1.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
    font-size: 0.875rem;
    margin-right: 0.3125rem;
  }
}

.difference__item-subtitle {
  text-align: left;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: -0.2em;
}
@media screen and (max-width: 767px) {
  .difference__item-subtitle {
    font-size: 1.125rem;
  }
}

.difference__item-text {
  text-align: left;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.67;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .difference__item-text {
    font-size: 1rem;
  }
}
.difference__item-text span {
  color: #EE7831;
  font-weight: 700;
}

.difference__box {
  background: #1F3863;
  border-radius: 2.5rem;
  margin-top: 108px;
  margin-top: 6.75rem;
  padding: 55px 162px 45px;
  padding: 3.4375rem 10.125rem 2.8125rem;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .difference__box {
    border-radius: 1.25rem;
    padding: 1.875rem 1.25rem;
    margin-top: 2.5rem;
  }
}
.difference__box::before {
  position: absolute;
  content: "";
  width: 168px;
  width: 10.5rem;
  height: 168px;
  height: 10.5rem;
  left: 0;
  top: -35px;
  top: -2.1875rem;
  background: url(../img/difference-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .difference__box::before {
    width: 5rem;
    height: 5rem;
    left: unset;
    top: 0;
    right: 0;
  }
}

.difference__box-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .difference__box-title {
    font-size: 1.5rem;
  }
}

.difference__box-list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.difference__box-list-item {
  font-size: 26px;
  font-size: 1.625rem;
  background: url(../img/check-icon.png) no-repeat left top 5px/30px;
  background: url(../img/check-icon.png) no-repeat left top 0.3125rem/1.875rem;
  padding-left: 38px;
  padding-left: 2.375rem;
}
@media screen and (max-width: 767px) {
  .difference__box-list-item {
    font-size: 1.125rem;
    background-size: 1.25rem;
    padding-left: 1.5625rem;
  }
}
.difference__box-list-item + .difference__box-list-item {
  margin-top: 12px;
  margin-top: 0.75rem;
}

/* flow */
.flow {
  background: #F3F2F2;
}

.flow__title {
  width: 364px;
  width: 22.75rem;
}
@media screen and (max-width: 767px) {
  .flow__title {
    width: 8.125rem;
  }
}

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

.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 103px;
  min-height: 6.4375rem;
}
@media screen and (max-width: 767px) {
  .flow__item {
    display: block;
    min-height: unset;
  }
}
.flow__item + .flow__item {
  margin-top: 90px;
  margin-top: 5.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__item + .flow__item {
    margin-top: 3.75rem;
  }
}
.flow__item + .flow__item::before {
  position: absolute;
  content: "";
  width: 56px;
  width: 3.5rem;
  height: 50px;
  height: 3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -70px;
  top: -4.375rem;
  background: url(../img/flow-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .flow__item + .flow__item::before {
    width: 2.5rem;
    height: 2.1875rem;
    top: -2.8125rem;
  }
}

.flow__item-title {
  width: 34%;
  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;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  background: #1F3863;
  border-radius: 0.9375rem 0 0 0.9375rem;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    width: 100%;
    font-size: 1.25rem;
    border-radius: 0.9375rem 0.9375rem 0 0;
    padding: 1.25rem;
  }
}

.flow__item-text {
  width: 66%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.55;
  background: #fff;
  border-radius: 0 0.9375rem 0.9375rem 0;
  padding: 18px 40px;
  padding: 1.125rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__item-text {
    width: 100%;
    font-size: 1.125rem;
    border-radius: 0 0 0.9375rem 0.9375rem;
    padding: 1.25rem 1.25rem;
  }
}

/* merit */
.merit__wrapper {
  padding-top: 60px;
  padding-top: 3.75rem;
}

.merit__title {
  width: 826px;
  width: 51.625rem;
}
@media screen and (max-width: 767px) {
  .merit__title {
    width: 18.75rem;
  }
}

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

.merit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 357px;
  min-height: 22.3125rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .merit__item {
    display: block;
    min-height: unset;
  }
}
.merit__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #1F3863;
  z-index: -1;
}
.merit__item + .merit__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .merit__item + .merit__item {
    margin-top: 1.25rem;
  }
}
.merit__item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.merit__item-img {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .merit__item-img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.merit__item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .merit__item-img img {
    height: auto;
  }
}

.merit__item-body {
  width: 40%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
  padding: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .merit__item-body {
    width: 100%;
    padding: 1.875rem 0;
  }
}

.merit__item-number {
  text-align: center;
  width: 198px;
  width: 12.375rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #666160;
  background: #fff;
  border-radius: 1.3125rem;
  padding: 4px;
  padding: 0.25rem;
}
@media screen and (max-width: 767px) {
  .merit__item-number {
    width: 9.375rem;
    font-size: 1.125rem;
  }
}
.merit__item-number span {
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .merit__item-number span {
    font-size: 1.25rem;
  }
}

.merit__item-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-underline-offset: 0.3125rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .merit__item-title {
    font-size: 1.5rem;
  }
}

.merit__item-text {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.42;
  color: #fff;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .merit__item-text {
    font-size: 1.125rem;
  }
}

/* message */
.message {
  background: url(../img/message-bg.png) no-repeat center/cover;
}

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

.message__inner {
  max-width: 983px;
  max-width: 61.4375rem;
}

.message__title {
  width: 850px;
  width: 53.125rem;
  margin-right: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .message__title {
    width: 25rem;
    margin-right: auto;
  }
}
.message__title::after {
  display: none;
}

.message__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px 60px;
  gap: 2.1875rem 3.75rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .message__items {
    display: block;
    margin-top: 1.25rem;
  }
}

.message__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 2.5rem);
          flex: 0 1 calc(33.333% - 2.5rem);
}
@media screen and (max-width: 767px) {
  .message__item + .message__item {
    margin-top: 0.9375rem;
  }
}
.message__item:nth-child(4) .message__item-text {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(4) .message__item-text {
    padding-top: 1.25rem;
  }
}

.message__item-img {
  width: 95px;
  width: 5.9375rem;
  margin-left: auto;
  margin-right: 35px;
  margin-right: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .message__item-img {
    width: 5rem;
    right: 3.75rem;
  }
}

.message__item-text {
  min-height: 156px;
  min-height: 9.75rem;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.42;
  background: #fff;
  border: 3px solid #B7B09C;
  border: 0.1875rem solid #B7B09C;
  border-radius: 1.25rem;
  padding: 25px 32px 20px;
  padding: 1.5625rem 2rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message__item-text {
    min-height: unset;
    font-size: 1.25rem;
    padding: 1.25rem 1.25rem;
  }
}
.message__item-text::before {
  position: absolute;
  content: "";
  width: 45px;
  width: 2.8125rem;
  height: 50px;
  height: 3.125rem;
  left: 50px;
  left: 3.125rem;
  top: -45px;
  top: -2.8125rem;
  background: url(../img/message-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .message__item-text::before {
    width: 2.1875rem;
    height: 2.5rem;
    top: -2.25rem;
    left: 5rem;
  }
}
.message__item-text span {
  color: #EE7831;
  font-weight: 700;
}

.message__text {
  text-align: center;
  width: 808px;
  width: 50.5rem;
  max-width: 100%;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.61;
  background: #D3BA74;
  border-radius: 2.5rem;
  padding: 44px 53px;
  padding: 2.75rem 3.3125rem;
  margin: 72px auto 0;
  margin: 4.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .message__text {
    text-align: left;
    font-size: 1.25rem;
    padding: 1.875rem 1.25rem;
    border-radius: 1.25rem;
    margin-top: 2.5rem;
  }
}

/* mv */
.mv {
  padding: 180px 0 200px;
  padding: 11.25rem 0 12.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 6.25rem 0 5.625rem;
  }
}
.mv::before, .mv::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.mv::before {
  height: 365px;
  height: 22.8125rem;
  background: url(../img/mv-bg01.png) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .mv::before {
    height: 15.625rem;
  }
}
.mv::after {
  height: 140px;
  height: 8.75rem;
  background: url(../img/mv-bg02.png) repeat-x center/contain;
}
@media screen and (max-width: 767px) {
  .mv::after {
    height: 3.75rem;
  }
}

.mv__inner {
  max-width: 1240px;
  max-width: 77.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    padding: 0 0.9375rem;
  }
}

.mv__img {
  position: absolute;
  right: 0;
  bottom: -200px;
  bottom: -12.5rem;
  width: 35%;
}
@media screen and (max-width: 1200px) {
  .mv__img {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .mv__img {
    width: 25%;
    bottom: -5.625rem;
  }
}

.mv__title {
  width: 682px;
  width: 42.625rem;
  max-width: 100%;
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .mv__title {
    width: 18.75rem;
    margin-left: 0;
  }
}

.mv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 1200px) {
  .mv__btns {
    gap: 0 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__btns {
    display: block;
    margin-top: 2.5rem;
  }
}

.mv__btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 115px;
  min-height: 7.1875rem;
  max-width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0px 5px 0px #122445;
          box-shadow: 0px 5px 0px #122445;
}
@media screen and (max-width: 1200px) {
  .mv__btn {
    min-height: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__btn {
    min-height: 4.375rem;
    font-size: 0.75rem;
    border-radius: 0.625rem;
  }
}
.mv__btn:first-child {
  width: 314px;
  width: 19.625rem;
  background: #f49312;
}
@media screen and (max-width: 1200px) {
  .mv__btn:first-child {
    width: 15.625rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__btn:first-child {
    width: 18.75rem;
  }
}
.mv__btn:nth-child(2) {
  width: 399px;
  width: 24.9375rem;
  background: #1F8748;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 1200px) {
  .mv__btn:nth-child(2) {
    width: 23.125rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__btn:nth-child(2) {
    width: 18.75rem;
    padding-top: 0;
    margin-top: 0.9375rem;
  }
}
.mv__btn:nth-child(2) span {
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .mv__btn:nth-child(2) span {
    width: 12.5rem;
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__btn:nth-child(2) span:first-child {
    display: none;
  }
}
.mv__btn:nth-child(2) span:nth-child(2) {
  display: none;
}
@media screen and (max-width: 767px) {
  .mv__btn:nth-child(2) span:nth-child(2) {
    display: block;
    width: auto;
    background: url(../img/tel-icon.png) no-repeat center left/1.25rem;
    padding-left: 1.5625rem;
  }
}
.mv__btn span {
  display: inline-block;
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 1200px) {
  .mv__btn span {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__btn span {
    font-size: 1.25rem;
  }
}

/* point */
.point {
  background: #F3F2F2;
}

.point__title {
  width: 645px;
  width: 40.3125rem;
}
@media screen and (max-width: 767px) {
  .point__title {
    width: 13.75rem;
  }
}

.point__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 33px 30px;
  gap: 2.0625rem 1.875rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .point__items {
    display: block;
    margin-top: 1.875rem;
  }
}

.point__item {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.25rem);
          flex: 0 1 calc(33.333% - 1.25rem);
  border-radius: 0.875rem;
  background: #fff;
  padding: 30px 5px;
  padding: 1.875rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .point__item + .point__item {
    margin-top: 1.25rem;
  }
}
.point__item:first-child .point__item-icon, .point__item:nth-child(4) .point__item-icon {
  width: 76px;
  width: 4.75rem;
}

.point__item-number {
  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;
  width: 52px;
  width: 3.25rem;
  height: 52px;
  height: 3.25rem;
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 700;
  border-radius: 50%;
  color: #fff;
  background: #EE7831;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .point__item-number {
    font-size: 1.5rem;
  }
}

.point__item-title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.23;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .point__item-title {
    font-size: 1.25rem;
  }
}
.point__item-title span {
  color: #EE7831;
}

.point__item-icon {
  width: 84px;
  width: 5.25rem;
  max-width: 100%;
  margin: 15px auto 0;
  margin: 0.9375rem auto 0;
}

.point__item-text {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.36;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .point__item-text {
    font-size: 1.125rem;
  }
}

.point__footer {
  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;
  padding-left: 80px;
  padding-left: 5rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .point__footer {
    display: block;
    padding-left: 0;
    margin-top: 1.875rem;
  }
}

.point__img {
  width: 155px;
  width: 9.6875rem;
}
@media screen and (max-width: 767px) {
  .point__img {
    width: 6.25rem;
    margin: 0 auto;
  }
}

.point__text {
  width: 506px;
  width: 31.625rem;
  max-width: 100%;
  font-size: 28px;
  font-size: 1.75rem;
  background: #fff;
  line-height: 1.57;
  border: 2px solid #D6D6D6;
  border: 0.125rem solid #D6D6D6;
  border-radius: 1.875rem;
  margin-left: 95px;
  margin-left: 5.9375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 38px 52px;
  padding: 2.375rem 3.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__text {
    font-size: 1.25rem;
    margin: 2.5rem auto 0;
    padding: 1.875rem 1.25rem;
  }
}
.point__text::before {
  position: absolute;
  content: "";
  width: 50px;
  width: 3.125rem;
  height: 65px;
  height: 4.0625rem;
  top: 45px;
  top: 2.8125rem;
  left: -50px;
  left: -3.125rem;
  background: url(../img/point-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .point__text::before {
    width: 2.1875rem;
    height: 1.5625rem;
    top: -0.75rem;
    left: 43%;
    -webkit-transform: rotate(90deg) translateX(-50%);
            transform: rotate(90deg) translateX(-50%);
  }
}
.point__text span {
  display: inline-block;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.point__text span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  height: 0.5rem;
  bottom: 5px;
  bottom: 0.3125rem;
  left: 0;
  background: #FFFF7B;
  z-index: -1;
}

/* professional */
.professional {
  background: #FFFCF4;
}

.professional__title {
  width: 645px;
  width: 40.3125rem;
}
@media screen and (max-width: 767px) {
  .professional__title {
    width: 12.5rem;
  }
}

.professional__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;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .professional__inner {
    display: block;
    margin-top: 1.875rem;
  }
}

.professional__img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .professional__img {
    width: 15.625rem;
    max-width: 100%;
    margin: 0 auto;
  }
}
.professional__img img {
  border-radius: 0.9375rem;
}

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

.professional__enname {
  font-size: 26px;
  font-size: 1.625rem;
  color: #EE7831;
}
@media screen and (max-width: 767px) {
  .professional__enname {
    font-size: 1.25rem;
  }
}

.professional__name {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .professional__name {
    font-size: 1.75rem;
  }
}

.professional__text {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.58;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .professional__text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.professional__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 26px;
  gap: 1.25rem 1.625rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .professional__items {
    display: block;
    margin-top: 1.25rem;
  }
}

.professional__item {
  text-align: center;
  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;
  min-height: 140px;
  min-height: 8.75rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.8125rem);
          flex: 0 1 calc(50% - 0.8125rem);
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.23;
  border-radius: 0.9375rem;
  border: 2px solid #ED935D;
  border: 0.125rem solid #ED935D;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .professional__item {
    font-size: 1.25rem;
    min-height: unset;
    padding: 1.25rem;
  }
  .professional__item + .professional__item {
    margin-top: 0.625rem;
  }
}
/*# sourceMappingURL=style.css.map */
