@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1A1A1A;
  line-height: 1.5;
}

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

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

/* ホバー */
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: #F9F4ED;
}

*,
*::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-article */
.l-inner {
  width: 100%;
  max-width: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* btn */
.btn {
  text-align: center;
  display: block;
  width: 240px;
  max-width: 100%;
  font-weight: 700;
  color: #fff;
  background: #F7751E;
  border-radius: 30px;
  padding: 13px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 250px;
    font-size: 15px;
    padding: 18px;
  }
}
.btn::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  background: url(../img/arrow-icon_white.avif) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .btn::after {
    width: 6px;
  }
}

/* cv */
.cv {
  background: #F7751E;
}

.cv01 {
  padding: 88px 0;
}
@media screen and (max-width: 767px) {
  .cv01 {
    padding: 37px 0 45px;
  }
}

.post_content .cv02 {
  margin: 0 calc(50% - 50vw);
}

.cv02 {
  padding: 45px 0 65px;
}
@media screen and (max-width: 767px) {
  .cv02 {
    white-space: nowrap;
    padding: 40px 0 46px;
  }
}

.cv__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;
}
@media screen and (max-width: 767px) {
  .cv__inner {
    display: block;
  }
}

.cv__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .cv__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cv__text {
    font-size: 14px;
  }
}
.cv__text span {
  font-size: 35px;
  line-height: 1.5;
  vertical-align: bottom;
}
@media screen and (max-width: 1200px) {
  .cv__text span {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cv__text span {
    font-size: 19px;
    line-height: 1.7;
  }
}

.cv__btn {
  text-align: center;
  display: block;
  width: 344px;
  min-width: 344px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #084672;
  border-radius: 40px;
  padding: 25px 0 25px 30px;
  margin-top: 15px;
  margin-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv__btn {
    width: 250px;
    min-width: unset;
    font-size: 14px;
    margin: 20px auto 0;
    padding: 19px 0 19px 20px;
  }
}
.cv__btn::before, .cv__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cv__btn::before {
  width: 17px;
  height: 14px;
  left: 65px;
  background: url(../img/mail-icon_white.avif) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btn::before {
    width: 14px;
    height: 12px;
    left: 47px;
  }
}
.cv__btn::after {
  width: 8px;
  height: 14px;
  right: 27px;
  background: url(../img/arrow-icon_white.avif) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btn::after {
    width: 6px;
    right: 18px;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background: rgba(8, 70, 114, .85);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  padding: 80px 26px;
  pointer-events: none;
  opacity: 0;
}
.drawer.active {
  pointer-events: unset;
  opacity: 1;
}

.drawer__item a {
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(227, 203, 171, .4);
  padding: 20px 0;
  position: relative;
}
.drawer__item a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: url(../img/arrow-icon_orange.avif) no-repeat center/contain;
}

.drawer__btn {
  text-align: center;
  display: block;
  width: 250px;
  max-width: 100%;
  color: #fff;
  background: #F7751E;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  padding: 18px 0 18px 15px;
  margin: 40px auto 0;
  position: relative;
}
.drawer__btn::before, .drawer__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer__btn::before {
  width: 12px;
  height: 9px;
  left: 45px;
  background: url(../img/mail-icon_white.avif) no-repeat center/contain;
}
.drawer__btn::after {
  width: 6px;
  height: 8px;
  right: 18px;
  background: url(../img/arrow-icon_white.avif) no-repeat center/contain;
}

/* fnav */
.fnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 32px;
}
@media screen and (max-width: 1200px) {
  .fnav__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 20px;
  }
}

.fnav__item a {
  display: block;
  font-weight: 500;
  letter-spacing: -0.05em;
  background: url(../img/arrow-icon_blue.avif) no-repeat center left/7px;
  padding-left: 13px;
}
@media screen and (max-width: 1200px) {
  .fnav__item a {
    font-size: 15px;
  }
}

/* footer */
.footer {
  background: #fff;
  padding: 40px 0 50px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0 25px;
  }
}

.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;
}
@media screen and (max-width: 767px) {
  .footer__logos {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.footer__logo {
  width: 132px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 92px;
  }
}

.footer__texts {
  margin-left: 37px;
}
@media screen and (max-width: 767px) {
  .footer__texts {
    margin-left: 24px;
  }
}

.footer__text {
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 10px;
  }
}

.footer__tel {
  display: inline-block;
  font-size: 17px;
  color: #084672;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: url(../img/tel-icon_blue.avif) no-repeat center left/12px;
  padding-left: 20px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .footer__tel {
    font-size: 11px;
    background-size: 8px;
    padding-left: 13px;
    margin-top: 0;
  }
}

.footer__body {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .footer__body {
    margin-left: 0;
  }
}

.footer__copyright {
  text-align: right;
  font-size: 12px;
  color: #084672;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    text-align: center;
    font-size: 10px;
  }
}

/* gnav */
.gnav {
  background: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
  padding: 0 48px 0 38px;
}
@media screen and (max-width: 1200px) {
  .gnav {
    padding: 0 20px;
  }
}

.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: 0 22px;
}
@media screen and (max-width: 1200px) {
  .gnav__items {
    gap: 0 10px;
  }
}

.gnav__item.current a {
  color: #F7751E;
}
.gnav__item a {
  display: inline-block;
  font-weight: 500;
  color: #084672;
  padding: 11px 0;
}
@media screen and (max-width: 1200px) {
  .gnav__item a {
    font-size: 12px;
  }
}

/* hamburger */
.hamburger {
  display: block;
  border-radius: 50%;
  background: #F7751E;
  width: 50px;
  height: 50px;
  margin-left: 9px;
  cursor: pointer;
  text-align: center;
  position: relative;
  z-index: 30;
}
.hamburger.active .hamburger__border {
  top: 23px;
}
.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: 19px;
  height: 2px;
  left: 16px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 17px;
}
.hamburger__border:nth-child(2) {
  top: 24px;
}
.hamburger__border:nth-child(3) {
  top: 31px;
}

/* header */
.header {
  height: 127px;
}
@media screen and (max-width: 1200px) {
  .header {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 90px;
  }
}
.header .l-inner {
  height: 100%;
  max-width: 1450px;
}

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

.header__logo {
  width: 133px;
  max-width: 100%;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    width: 100px;
  }
}
.header__logo a {
  display: block;
}

.header__nav {
  margin-left: auto;
}

.header__tel {
  font-weight: 500;
  color: #084672;
  letter-spacing: 0.08em;
  line-height: 1.4;
  background: url(../img/tel-icon_blue.avif) no-repeat center left/22px;
  margin-left: 28px;
  padding-left: 33px;
  position: relative;
  z-index: 30;
}
@media screen and (max-width: 1200px) {
  .header__tel {
    background-size: 15px;
    margin-left: 15px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__tel {
    background: none;
    margin-left: auto;
    padding-left: 0;
  }
}

.header__tel-number {
  font-size: 19px;
}
@media screen and (max-width: 1200px) {
  .header__tel-number {
    font-size: 15px;
  }
}

.header__tel-text {
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .header__tel-text {
    font-size: 11px;
  }
}

.header__tel-icon {
  display: block;
  width: 50px;
  height: 50px;
  background: #084672;
  border-radius: 50%;
  position: relative;
}
.header__tel-icon::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/tel-icon_white.avif) no-repeat center/contain;
}

.header__btn {
  text-align: center;
  display: block;
  width: 216px;
  max-width: 100%;
  color: #fff;
  background: #F7751E;
  font-weight: 700;
  border-radius: 30px;
  margin-left: 16px;
  padding: 10px 0 12px 30px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header__btn {
    width: 150px;
    font-size: 12px;
    margin-left: 10px;
    padding-left: 20px;
  }
}
.header__btn::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 27px;
  background: url(../img/mail-icon_white.avif) no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .header__btn::before {
    left: 10px;
    width: 14px;
    height: 12px;
  }
}

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

/* subtitle */
.subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 112px;
  font-weight: 700;
  color: #F7751E;
  line-height: 0.9;
}
@media screen and (max-width: 1200px) {
  .subtitle {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 56px;
    line-height: 1;
  }
}
.subtitle span {
  display: inline-block;
}
.subtitle .blank {
  width: 0.2em;
}

/* text */
.text {
  font-size: 18px;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 16px;
    line-height: 1.9;
  }
}

/* title */
.title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #084672;
  padding-left: 18px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 18px;
    padding-left: 10px;
  }
}
.title::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 15px;
  background: #F7751E;
  left: 0;
}
@media screen and (max-width: 767px) {
  .title::before {
    width: 3px;
    height: 3px;
    top: 11px;
  }
}

/* about */
.about {
  position: relative;
}
.about::before, .about::after {
  position: absolute;
  content: "";
}
.about::before {
  width: 980px;
  max-width: 100%;
  height: 980px;
  left: 0;
  top: -50px;
  background: url(../img/about-bg01.avif) no-repeat center top/contain;
}
@media screen and (max-width: 767px) {
  .about::before {
    width: 325px;
    height: 325px;
    top: unset;
    bottom: 0;
  }
}
.about::after {
  width: 100%;
  height: 304px;
  left: 0;
  bottom: -200px;
  background: url(../img/about-bg02.avif) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .about::after {
    height: 152px;
    bottom: 0;
  }
}
.about .l-inner {
  max-width: 1450px;
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0 190px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__inner {
    padding: 55px 0 330px;
    display: block;
  }
}

.about__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 43px;
  font-weight: 700;
  color: #084672;
  line-height: 1.7;
}
@media screen and (max-width: 1200px) {
  .about__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 23px;
    line-height: 1.4;
  }
}
.about__title span {
  color: #F7751E;
}

.about__body {
  width: 58%;
  margin-left: 20px;
  padding-top: 15px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .about__body {
    width: 65%;
  }
}
@media screen and (max-width: 767px) {
  .about__body {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    margin-top: 15px;
    z-index: 1;
  }
}

.about__text {
  font-weight: 500;
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-weight: 400;
    margin-top: 10px;
  }
}

.about__btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .about__btn {
    margin: 20px auto 0;
  }
}

.about__img {
  position: absolute;
  z-index: 1;
}
.about__img img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .about__img img {
    border-radius: 5px;
  }
}

.about__img01 {
  width: 14%;
  top: 48%;
  left: -9%;
}
@media screen and (max-width: 767px) {
  .about__img01 {
    width: 100px;
    top: unset;
    left: -5px;
    bottom: 120px;
  }
}

.about__img02 {
  width: 16%;
  top: 67%;
  left: 11%;
}
@media screen and (max-width: 767px) {
  .about__img02 {
    width: 111px;
    top: unset;
    left: unset;
    bottom: 60px;
    right: 0;
  }
}

.about__img03 {
  width: 11%;
  top: 44%;
  left: 26%;
}
@media screen and (max-width: 767px) {
  .about__img03 {
    width: 72px;
    top: unset;
    bottom: 210px;
    left: unset;
    right: 40px;
  }
}

.about__img04 {
  width: 13%;
  top: 76%;
  right: 15%;
}
@media screen and (max-width: 767px) {
  .about__img04 {
    width: 75px;
    top: unset;
    bottom: 140px;
    left: 52%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.about__img05 {
  width: 14%;
  top: 33%;
  right: -5%;
}
@media screen and (max-width: 767px) {
  .about__img05 {
    width: 100px;
    top: unset;
    bottom: 235px;
    left: 50px;
  }
}

/* case */
.case {
  padding: 95px 0 145px;
}
@media screen and (max-width: 767px) {
  .case {
    padding: 45px 0 50px;
  }
}

.case__items {
  margin-top: 85px;
}
@media screen and (max-width: 767px) {
  .case__items {
    margin-top: 35px;
  }
}

.case__item {
  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;
}
@media screen and (max-width: 767px) {
  .case__item {
    display: block;
  }
}
.case__item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.case__item + .case__item {
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .case__item + .case__item {
    margin-top: 50px;
  }
}

.case__item-img-wrapper {
  width: 45%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .case__item-img-wrapper {
    width: 100%;
  }
}

.case__item-subtitle {
  position: absolute;
  left: 9px;
  top: -20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  background: #084672;
  border-radius: 0 0 24px 0;
  padding: 12px 42px 12px 26px;
}
@media screen and (max-width: 1200px) {
  .case__item-subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .case__item-subtitle {
    left: 0;
    top: -12px;
    font-size: 15px;
    border-radius: 0 0 12px 0;
    padding: 7px 25px 7px 15px;
  }
}
.case__item-subtitle::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: -20px;
  top: 0;
  background: #084672;
  background: url(../img/case-arrow.avif) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .case__item-subtitle::after {
    width: 12px;
    height: 12px;
    right: -12px;
  }
}

.case__item-body {
  width: 51%;
}
@media screen and (max-width: 767px) {
  .case__item-body {
    width: 100%;
    margin-top: 20px;
  }
}

.case__item-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #084672;
}
@media screen and (max-width: 1200px) {
  .case__item-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .case__item-title {
    font-size: 20px;
  }
}

.case__item-text {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .case__item-text {
    margin-top: 10px;
    line-height: 1.9;
  }
}

/* contact */
.contact {
  background: #F7751E;
  padding: 85px 0 100px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 40px 0 38px;
  }
}
.contact .title::before {
  background: #fff;
}
.contact .subtitle {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact .subtitle {
    margin-top: 10px;
  }
}

.contact__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .contact__header {
    display: block;
  }
}

.contact__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.77;
  margin-left: 105px;
  margin-bottom: -10px;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 16px;
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 10px;
  }
}

.contact__content {
  margin-top: 60px;
  background: #fff;
  border-radius: 12px;
  padding: 45px 50px 90px;
}
@media screen and (max-width: 1200px) {
  .contact__content {
    padding: 30px 20px 60px;
  }
}
@media screen and (max-width: 767px) {
  .contact__content {
    border-radius: 6px;
    padding: 10px 20px 38px;
    margin-top: 22px;
  }
}
.contact__content .contact-form-body {
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-body {
    gap: 30px;
  }
}
.contact__content .contact-form-item {
  max-width: 100%;
  position: relative;
}
.contact__content .contact-form-item:nth-child(6) .contact-form-error {
  text-align: center;
  width: 100%;
  margin-left: 0;
  right: unset;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -2em;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-item:nth-child(6) .contact-form-error {
    -webkit-transform: unset;
            transform: unset;
  }
}
.contact__content .contact-form-item:nth-child(7) .contact-form-item__inner {
  display: block;
  padding: 0;
}
.contact__content .contact-form-item:nth-child(6) .contact-form-item__inner, .contact__content .contact-form-item:nth-child(7) .contact-form-item__inner {
  border-bottom: none;
  padding-bottom: 0;
}
.contact__content .contact-form-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid rgba(227, 203, 171, .4);
  padding: 0 14px 20px;
}
@media screen and (max-width: 1200px) {
  .contact__content .contact-form-item__inner {
    padding: 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-item__inner {
    display: block;
    padding: 0;
    border-bottom: none;
  }
}
.contact__content .contact-form-label {
  width: 37%;
  padding-top: 5px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-label {
    width: 100%;
    gap: 7px;
    margin-bottom: 5px;
  }
}
.contact__content .contact-form-label .contact-form-label__text {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-label .contact-form-label__text {
    font-size: 16px;
  }
}
.contact__content .contact-form-required {
  font-size: 11px;
  font-weight: 400;
  background: #F7751E;
  border-radius: 4px;
  padding: 0 12px;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-required {
    font-size: 8px;
    border-radius: 2px;
    padding: 0 9px;
  }
}
.contact__content .contact-form-textbox {
  width: 63%;
  padding-right: 50px;
}
@media screen and (max-width: 1200px) {
  .contact__content .contact-form-textbox {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-textbox {
    width: 100%;
  }
}
.contact__content .contact-form-textbox input[type=text], .contact__content .contact-form-textbox input[type=tel], .contact__content .contact-form-textbox input[type=email], .contact__content .contact-form-textbox textarea {
  background: rgba(249, 244, 237, .4);
  border: none;
  max-width: 100%;
  font-size: 18px;
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-textbox input[type=text], .contact__content .contact-form-textbox input[type=tel], .contact__content .contact-form-textbox input[type=email], .contact__content .contact-form-textbox textarea {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.contact__content .contact-form-textbox input[type=text]::-webkit-input-placeholder, .contact__content .contact-form-textbox input[type=tel]::-webkit-input-placeholder, .contact__content .contact-form-textbox input[type=email]::-webkit-input-placeholder, .contact__content .contact-form-textbox textarea::-webkit-input-placeholder {
  color: #ccc;
}
.contact__content .contact-form-textbox input[type=text]::-moz-placeholder, .contact__content .contact-form-textbox input[type=tel]::-moz-placeholder, .contact__content .contact-form-textbox input[type=email]::-moz-placeholder, .contact__content .contact-form-textbox textarea::-moz-placeholder {
  color: #ccc;
}
.contact__content .contact-form-textbox input[type=text]::-ms-input-placeholder, .contact__content .contact-form-textbox input[type=tel]::-ms-input-placeholder, .contact__content .contact-form-textbox input[type=email]::-ms-input-placeholder, .contact__content .contact-form-textbox textarea::-ms-input-placeholder {
  color: #ccc;
}
.contact__content .contact-form-textbox input[type=text]::placeholder, .contact__content .contact-form-textbox input[type=tel]::placeholder, .contact__content .contact-form-textbox input[type=email]::placeholder, .contact__content .contact-form-textbox textarea::placeholder {
  color: #ccc;
}
.contact__content .contact-form-textbox input[type=text]:focus-visible, .contact__content .contact-form-textbox input[type=tel]:focus-visible, .contact__content .contact-form-textbox input[type=email]:focus-visible, .contact__content .contact-form-textbox textarea:focus-visible {
  outline: none;
}
.contact__content .contact-form-textbox input[type=text], .contact__content .contact-form-textbox input[type=tel], .contact__content .contact-form-textbox input[type=email] {
  height: 53px;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-textbox input[type=text], .contact__content .contact-form-textbox input[type=tel], .contact__content .contact-form-textbox input[type=email] {
    height: 40px;
  }
}
.contact__content .contact-form-textbox input[type=text], .contact__content .contact-form-textbox input[type=tel] {
  width: 340px;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-textbox input[type=text], .contact__content .contact-form-textbox input[type=tel] {
    width: 100%;
  }
}
.contact__content .contact-form-textbox input[type=email] {
  width: 490px;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-textbox input[type=email] {
    width: 100%;
  }
}
.contact__content .contact-form-textbox textarea {
  width: 640px;
  height: 170px;
  resize: none;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-textbox textarea {
    width: 100%;
    height: 158px;
  }
}
.contact__content .contact-form-privacy-policy-checkbox {
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-privacy-policy-checkbox {
    margin-top: 0;
  }
}
.contact__content .contact-form-privacy-policy-checkbox-item-icon {
  width: 19px;
  height: 19px;
  border-color: rgba(207, 166, 111, .4);
}
.contact__content .contact-form-privacy-policy-text {
  text-align: center;
  font-size: 13px;
}
.contact__content .contact-form-privacy-policy-text a {
  color: #F7751E;
}
.contact__content .contact-form-submit-outer {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-submit-outer {
    margin-top: 0;
  }
}
.contact__content .contact-form-submit {
  display: block;
  width: 464px;
  max-width: 100%;
  font-size: 20px;
  background: #F7751E;
  border-radius: 40px;
  padding: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-submit {
    width: 250px;
    font-size: 15px;
    padding: 16px;
  }
}
.contact__content .contact-form-submit::after {
  width: 13px;
  height: 13px;
  right: 25px;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-submit::after {
    width: 7px;
    height: 7px;
    right: 20px;
  }
}
.contact__content .contact-form-error {
  position: absolute;
  right: 0;
  bottom: -0.5em;
  width: 63%;
  margin: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .contact__content .contact-form-error {
    position: static;
    font-size: 14px;
    width: 100%;
    bottom: -2em;
    margin-left: 0;
  }
}

/* faq */
.faq {
  padding: 140px 0 130px;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 35px 0 55px;
  }
}
.faq .subtitle {
  font-size: 60px;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .faq .subtitle {
    font-size: 38px;
  }
}

.faq__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) {
  .faq__inner {
    display: block;
  }
}

.faq__items {
  width: 70%;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .faq__items {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}

.faq__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .faq__item-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.faq__item-title, .faq__item-text {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .faq__item-title, .faq__item-text {
    font-size: 16px;
    line-height: 1.6;
  }
}
.faq__item-title span, .faq__item-text span {
  text-align: center;
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  width: 40px;
  min-width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  border-radius: 50%;
  color: #fff;
  margin-right: 20px;
  margin-top: -3px;
}
@media screen and (max-width: 767px) {
  .faq__item-title span, .faq__item-text span {
    width: 30px;
    min-width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 0;
    padding-top: 2px;
  }
}

.faq__item-title {
  border-bottom: 1px solid rgba(227, 203, 171, .4);
  padding: 21px 70px 21px 20px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__item-title {
    padding: 10px 30px 10px 11px;
  }
}
.faq__item-title::after {
  position: absolute;
  content: "";
  width: 36px;
  height: 33px;
  background: url(../img/dropdown-icon01_orange.avif) no-repeat center/contain;
  right: 30px;
  top: 20px;
}
@media screen and (max-width: 767px) {
  .faq__item-title::after {
    width: 18px;
    height: 17px;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.faq__item-title.active {
  border-color: transparent;
}
.faq__item-title.active::after {
  background: url(../img/dropdown-icon02_orange.avif) no-repeat center/contain;
}
.faq__item-title span {
  background: #F7751E;
}

.faq__item-text {
  display: none;
  background: #fff;
  border-radius: 16px;
  padding: 19px 38px 25px 22px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .faq__item-text {
    border-radius: 8px;
    padding: 10px 20px 10px 11px;
    margin-bottom: 10px;
  }
}
.faq__item-text span {
  background: #084672;
}
.faq__item-text a {
  text-decoration: underline;
  color: #084672;
}

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

.genre__img-wrapper {
  width: 766px;
  max-width: 100%;
  margin-left: 38px;
  margin-top: -20px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .genre__img-wrapper {
    width: 500px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .genre__img-wrapper {
    width: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .genre__img {
    width: 240px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.genre__text {
  position: absolute;
  top: 120px;
  right: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #084672;
}
@media screen and (max-width: 1200px) {
  .genre__text {
    top: 60px;
    font-size: 18px;
    right: -20px;
  }
}
@media screen and (max-width: 767px) {
  .genre__text {
    position: static;
    text-align: center;
    font-size: 20px;
  }
}

.genre__content {
  background: #fff;
  border-radius: 12px;
  margin-top: 60px;
  padding: 38px 44px 46px;
}
@media screen and (max-width: 767px) {
  .genre__content {
    border-radius: 8px;
    margin-top: 18px;
    padding: 17px 16px 24px;
  }
}

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

.genre__tab-item {
  text-align: center;
  width: 50%;
}
.genre__tab-item.current button {
  color: #fff;
  background: #084672;
}
.genre__tab-item.current button::after {
  background: url(../img/genre-arrow01.avif) no-repeat center/contain;
}
.genre__tab-item:first-child button {
  border-radius: 30px 0 0 30px;
}
.genre__tab-item:nth-child(2) button {
  border-radius: 0 30px 30px 0;
}
.genre__tab-item button {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  color: #F7751E;
  background: #FEEADD;
  padding: 14px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .genre__tab-item button {
    font-size: 16px;
    padding: 4px 0 6px;
  }
}
.genre__tab-item button::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 27px;
  height: 12px;
  bottom: -11px;
  background: url(../img/genre-arrow02.avif) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .genre__tab-item button::after {
    width: 16px;
    height: 8px;
    bottom: -7px;
  }
}
.genre__tab-item button:hover {
  opacity: 1;
}

.genre__menu {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .genre__menu {
    margin-top: 30px;
  }
}

.genre__menu-item {
  display: none;
}
.genre__menu-item.active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.genre__unit {
  border-radius: 10px;
  background: rgba(249, 244, 237, .4);
  padding: 31px 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .genre__unit {
    border-radius: 0;
    padding: 20px 22px 15px;
  }
}
.genre__unit + .genre__unit {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .genre__unit + .genre__unit {
    margin-top: 40px;
  }
}

.genre__subtitle {
  position: absolute;
  top: -15px;
  left: 47px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: #084672;
}
@media screen and (max-width: 767px) {
  .genre__subtitle {
    font-size: 16px;
    top: -10px;
    left: 18px;
  }
}

.genre__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 43px;
}
@media screen and (max-width: 767px) {
  .genre__items {
    gap: 10px 32px;
  }
}

.genre__item a {
  display: inline-block;
  font-size: 18px;
  color: #084672;
  background: url(../img/arrow-icon_orange.avif) no-repeat center left/8px;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .genre__item a {
    font-size: 16px;
    background-size: 5px;
    padding-left: 8px;
  }
}

/* message */
.message {
  padding-bottom: 110px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .message {
    padding-bottom: 200px;
  }
}

.message__title {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #084672;
}
@media screen and (max-width: 1200px) {
  .message__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .message__title {
    font-size: 23px;
  }
}

.message__content {
  margin-top: 85px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message__content {
    width: 350px;
    max-width: 100%;
    margin: 180px auto 0;
  }
}

.message__img {
  width: 314px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .message__img {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .message__img {
    width: 175px;
  }
}

.message__item {
  position: absolute;
  max-width: 100%;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  border-radius: 12px;
  line-height: 1.6;
  padding: 19px 35px;
}
@media screen and (max-width: 1200px) {
  .message__item {
    font-size: 13px;
    line-height: 1.9;
    border-radius: 8px;
    padding: 15px 15px;
  }
}
@media screen and (max-width: 767px) {
  .message__item {
    font-size: 11px;
    padding: 9px 16px;
  }
}
.message__item::before {
  position: absolute;
  content: "";
  width: 29px;
  height: 29px;
}
@media screen and (max-width: 1200px) {
  .message__item::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .message__item::before {
    width: 12px;
    height: 12px;
  }
}
.message__item:nth-child(odd) {
  background: #084672;
}
.message__item:nth-child(even) {
  background: #2D6287;
}
.message__item:first-child {
  top: -6%;
  left: 10%;
}
@media screen and (max-width: 767px) {
  .message__item:first-child {
    top: -165px;
    left: 5px;
    padding: 9px 10px;
  }
}
.message__item:first-child::before {
  bottom: 20px;
  right: -24px;
  background: url(../img/message-arrow01_pc.avif) no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .message__item:first-child::before {
    right: -16px;
  }
}
@media screen and (max-width: 767px) {
  .message__item:first-child::before {
    right: 25px;
    bottom: -9px;
    background: url(../img/message-arrow01_sp.avif) no-repeat center/contain;
  }
}
.message__item:nth-child(2) {
  top: 32%;
  left: -3%;
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(2) {
    top: -65px;
    left: 45px;
  }
}
.message__item:nth-child(2)::before {
  top: 40px;
  right: -24px;
  background: url(../img/message-arrow02_pc.avif) no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .message__item:nth-child(2)::before {
    top: 25px;
    right: -16px;
  }
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(2)::before {
    top: unset;
    right: 36px;
    bottom: -9px;
    background: url(../img/message-arrow02_sp.avif) no-repeat center/contain;
  }
}
.message__item:nth-child(3) {
  top: 72%;
  left: 8%;
}
@media screen and (max-width: 1200px) {
  .message__item:nth-child(3) {
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(3) {
    top: -140px;
    left: unset;
    right: 5px;
  }
}
.message__item:nth-child(3)::before {
  top: 19px;
  right: -24px;
  background: url(../img/message-arrow03_pc.avif) no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .message__item:nth-child(3)::before {
    top: 5px;
    right: -16px;
  }
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(3)::before {
    top: unset;
    right: 55px;
    bottom: -9px;
    background: url(../img/message-arrow03_sp.avif) no-repeat center/contain;
  }
}
.message__item:nth-child(4) {
  top: -13%;
  right: 6%;
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(4) {
    top: unset;
    bottom: -80px;
    right: 5px;
  }
}
.message__item:nth-child(4)::before {
  top: 46px;
  left: -24px;
  background: url(../img/message-arrow04_pc.avif) no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .message__item:nth-child(4)::before {
    top: 20px;
    left: -16px;
  }
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(4)::before {
    top: -9px;
    left: 50px;
    background: url(../img/message-arrow04_sp.avif) no-repeat center/contain;
  }
}
.message__item:nth-child(5) {
  top: 24%;
  right: -3%;
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(5) {
    top: unset;
    right: unset;
    bottom: -80px;
    left: -5px;
  }
}
.message__item:nth-child(5)::before {
  top: 21px;
  left: -24px;
  background: url(../img/message-arrow05_pc.avif) no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .message__item:nth-child(5)::before {
    top: 5px;
    left: -16px;
  }
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(5)::before {
    top: -9px;
    left: 90px;
  }
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(5)::before {
    background: url(../img/message-arrow05_sp.avif) no-repeat center/contain;
  }
}
.message__item:nth-child(6) {
  top: 53%;
  right: -8%;
}
@media screen and (max-width: 1200px) {
  .message__item:nth-child(6) {
    right: -4%;
  }
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(6) {
    background: #084672;
    top: unset;
    right: 5px;
    bottom: -155px;
  }
}
.message__item:nth-child(6)::before {
  top: 18px;
  left: -24px;
  background: url(../img/message-arrow06_pc.avif) no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .message__item:nth-child(6)::before {
    top: 5px;
    left: -16px;
  }
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(6)::before {
    top: -9px;
    left: 42px;
    background: url(../img/message-arrow06_sp.avif) no-repeat center/contain;
  }
}
.message__item:nth-child(7) {
  top: 85%;
  right: 1%;
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(7) {
    background: #2D6287;
    top: unset;
    right: unset;
    bottom: -170px;
    left: 0;
  }
}
.message__item:nth-child(7)::before {
  top: 20px;
  left: -24px;
  background: url(../img/message-arrow07_pc.avif) no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .message__item:nth-child(7)::before {
    top: 5px;
    left: -16px;
  }
}
@media screen and (max-width: 767px) {
  .message__item:nth-child(7)::before {
    top: -9px;
    left: 25px;
    background: url(../img/message-arrow07_sp.avif) no-repeat center/contain;
  }
}

/* mv */
.mv {
  margin-top: -20px;
}
.mv .l-inner {
  max-width: 1450px;
}

.mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    display: block;
  }
}

.mv__img {
  width: 54%;
  margin-right: -50px;
}
@media screen and (max-width: 1200px) {
  .mv__img {
    width: 44%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__img {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.mv__body {
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .mv__body {
    width: 56%;
  }
}
@media screen and (max-width: 767px) {
  .mv__body {
    width: 100%;
    margin-top: -15px;
  }
}

.mv__subtitle {
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  background: #F7751E;
  color: #fff;
  letter-spacing: 0.1em;
  border-radius: 8px;
  padding: 4px 20px;
}
@media screen and (max-width: 767px) {
  .mv__subtitle {
    font-size: 11px;
    border-radius: 4px;
    padding: 3px 11px;
  }
}

.mv__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 58px;
  color: #084672;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .mv__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 30px;
    margin-top: 10px;
  }
}
.mv__title .color-orange {
  color: #F7751E;
}
.mv__title .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mv__box {
  margin-top: 60px;
  padding: 10px 20px 0 26px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .mv__box {
    margin-top: 30px;
    padding: 10px 20px 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .mv__box {
    margin-top: 20px;
    padding: 0 10px 0 10px;
  }
}
.mv__box::before {
  position: absolute;
  content: "";
  left: -5px;
  top: -15px;
  width: 620px;
  max-width: 100%;
  height: 150px;
  background: url(../img/mv-bg.avif) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .mv__box::before {
    width: 450px;
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .mv__box::before {
    width: 330px;
    height: 80px;
  }
}

.mv__box-title {
  font-weight: 500;
  color: #084672;
}
@media screen and (max-width: 1200px) {
  .mv__box-title {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .mv__box-title {
    font-size: 9px;
  }
}

.mv__box-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 22px;
  margin-top: 25px;
}
@media screen and (max-width: 1200px) {
  .mv__box-logos {
    gap: 0 18px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .mv__box-logos {
    gap: 0 10px;
    margin-top: 10px;
  }
}

.mv__box-logo {
  max-width: 100%;
}
.mv__box-logo:first-child {
  width: 89px;
}
@media screen and (max-width: 1200px) {
  .mv__box-logo:first-child {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .mv__box-logo:first-child {
    width: 50px;
  }
}
.mv__box-logo:nth-child(2) {
  width: 66px;
}
@media screen and (max-width: 1200px) {
  .mv__box-logo:nth-child(2) {
    width: 50px;
  }
}
@media screen and (max-width: 767px) {
  .mv__box-logo:nth-child(2) {
    width: 40px;
  }
}
.mv__box-logo:nth-child(3) {
  width: 85px;
}
@media screen and (max-width: 1200px) {
  .mv__box-logo:nth-child(3) {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .mv__box-logo:nth-child(3) {
    width: 50px;
  }
}
.mv__box-logo:nth-child(4) {
  width: 120px;
}
@media screen and (max-width: 1200px) {
  .mv__box-logo:nth-child(4) {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .mv__box-logo:nth-child(4) {
    width: 60px;
  }
}
.mv__box-logo:nth-child(5) {
  width: 100px;
}
@media screen and (max-width: 1200px) {
  .mv__box-logo:nth-child(5) {
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .mv__box-logo:nth-child(5) {
    width: 50px;
  }
}

/* news */
.news {
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .news {
    padding-bottom: 50px;
  }
}
.news .subtitle {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .news .subtitle {
    font-size: 38px;
    margin-bottom: 0;
  }
}

.news__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) {
  .news__inner {
    display: block;
  }
}

.news__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .news__titles {
    display: block;
  }
}

.news__btn {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .news__btn {
    margin: 35px auto 0;
  }
}

.news__items {
  width: 70%;
  margin-top: -15px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .news__items {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
}

.news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(227, 203, 171, .4);
  padding: 27px 50px 27px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news__item-inner {
    display: block;
    padding: 8px 20px 8px 0;
  }
}
.news__item-inner::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  background: url(../img/arrow-icon_orange.avif) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .news__item-inner::after {
    width: 6px;
    right: 5px;
  }
}

.news__item-date {
  display: inline-block;
  font-weight: 900;
  color: #F7751E;
  min-width: 90px;
}
@media screen and (max-width: 767px) {
  .news__item-date {
    min-width: unset;
  }
}

.news__item-title {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 16px;
    margin-top: 5px;
  }
}

/* plan */
.post_content .plan {
  padding: 90px 0 70px;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .post_content .plan {
    padding: 70px 0 20px;
  }
}
.post_content .plan .title {
  font-size: 22px;
  border-left: none;
  margin: 0;
  padding: 0;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .post_content .plan .title {
    font-size: 18px;
    padding-left: 10px;
  }
}
.post_content .plan__units {
  padding-left: 0;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__units {
    margin-top: 20px;
  }
}
.post_content .plan__unit {
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .2509803922);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .2509803922);
  padding: 50px 42px 40px;
}
@media screen and (max-width: 1200px) {
  .post_content .plan__unit {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .post_content .plan__unit {
    border-radius: 4px;
    padding: 20px 22px;
  }
}
.post_content .plan__unit:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__unit:not(:first-child) {
    margin-top: 15px;
  }
}
.post_content .plan__unit:first-child .plan__box {
  padding: 25px 20px;
}
.post_content .plan__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__inner {
    display: block;
    padding-left: 0;
  }
}
.post_content .plan__inner .plan__subtitle {
  padding-left: 0;
}
.post_content .plan__img {
  width: 36%;
  margin-top: -20px;
}
@media screen and (max-width: 1200px) {
  .post_content .plan__img {
    width: 39%;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .post_content .plan__img {
    width: 180px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.post_content .plan__texts {
  width: 59%;
}
@media screen and (max-width: 767px) {
  .post_content .plan__texts {
    width: 100%;
    margin-top: 20px;
  }
}
.post_content .plan__subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 31px;
  font-weight: 700;
  color: #084672;
  padding: 0;
  margin: 0;
  padding-left: 15px;
}
@media screen and (max-width: 1200px) {
  .post_content .plan__subtitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .post_content .plan__subtitle {
    font-size: 19px;
    padding-left: 0;
  }
}
.post_content .plan__subtitle::before {
  display: none;
}
.post_content .plan__subtitle span {
  display: inline-block;
  color: #F7751E;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__subtitle span {
    margin-right: 10px;
  }
}
.post_content .plan__text {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__text {
    margin-top: 10px;
  }
}
.post_content .plan__btn {
  text-align: center;
  display: block;
  width: 216px;
  max-width: 100%;
  font-weight: 700;
  color: #fff;
  background: #F7751E;
  border-radius: 30px;
  margin-top: 25px;
  padding: 11px 0 11px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post_content .plan__btn {
    width: 250px;
    font-size: 15px;
    padding: 18px 0 18px 20px;
    margin: 10px auto 0;
  }
}
.post_content .plan__btn::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 57px;
  background: url(../img/mail-icon_white.avif) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .post_content .plan__btn::before {
    width: 13px;
    height: 10px;
    left: 75px;
  }
}
.post_content .plan__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 80px;
  border: 4px solid #F2F2F2;
  border-radius: 4px;
  padding: 25px 20px;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .post_content .plan__list-wrapper {
    gap: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .post_content .plan__list-wrapper {
    display: block;
    border: 2px solid #F2F2F2;
    padding: 7px 20px 15px;
  }
}
.post_content .plan__list {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .post_content .plan__list {
    margin-top: 8px;
  }
  .post_content .plan__list:not(:first-child) {
    display: none;
  }
}
.post_content .plan__list-item {
  margin: 0;
  padding-left: 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post_content .plan__list-item {
    padding-left: 12px;
  }
}
.post_content .plan__list-item:not(:first-child) {
  margin-top: 8px;
}
.post_content .plan__list-item::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 10px;
  left: 0;
  background: #F7751E;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .post_content .plan__list-item::before {
    width: 5px;
    height: 5px;
    top: 8px;
  }
}
.post_content .plan__more {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 14px;
  color: #084672;
  border-radius: 8px;
  border: 1px solid #084672;
  padding: 7px;
  margin-top: 15px;
  position: relative;
}
.post_content .plan__more::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 13px;
  background: url(../img/more-icon.avif) no-repeat center/contain;
}
.post_content .plan__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px 13px;
  padding-left: 0;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__items {
    display: block;
    margin-top: 10px;
  }
}
.post_content .plan__item {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 6.5px);
          flex: 0 1 calc(50% - 6.5px);
}
@media screen and (max-width: 767px) {
  .post_content .plan__item:not(:first-child) {
    margin-top: 6px;
  }
}
.post_content .plan__item button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: #F9914B;
  border-radius: 12px;
  padding: 16px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post_content .plan__item button {
    border-radius: 8px;
    padding: 8px;
  }
}
.post_content .plan__item button::after {
  position: absolute;
  content: "";
  width: 36px;
  height: 33px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 23px;
  background: url(../img/dropdown-icon01_white.avif) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .post_content .plan__item button::after {
    width: 18px;
    height: 18px;
    right: 12px;
  }
}
.post_content .plan__item button:hover {
  opacity: 1;
  background: #F7751E;
}
.post_content .plan__item.active button {
  background: #F7751E;
}
.post_content .plan__item.active button::after {
  background: url(../img/dropdown-icon02_white.avif) no-repeat center/contain;
}
.post_content .plan__item-icon {
  display: block;
  width: 84px;
  min-width: 84px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .2509803922);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .2509803922);
}
@media screen and (max-width: 1200px) {
  .post_content .plan__item-icon {
    width: 60px;
    min-width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .post_content .plan__item-icon {
    width: 42px;
    min-width: 42px;
  }
}
.post_content .plan__item-text {
  text-align: left;
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  margin-left: 18px;
}
@media screen and (max-width: 1200px) {
  .post_content .plan__item-text {
    font-size: 20px;
    margin-left: 9px;
  }
}
@media screen and (max-width: 767px) {
  .post_content .plan__item-text {
    font-size: 16px;
  }
}
.post_content .plan__item-text span {
  display: inline-block;
  font-size: 19px;
  font-weight: 400;
  margin-left: 10px;
}
@media screen and (max-width: 1200px) {
  .post_content .plan__item-text span {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .post_content .plan__item-text span {
    font-size: 10px;
  }
}
.post_content .plan__boxes {
  padding-left: 0;
}
.post_content .plan__box {
  display: none;
  border: 4px solid #F2F2F2;
  border-radius: 4px;
  padding: 30px 40px;
  margin: 0;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .post_content .plan__box {
    padding: 25px 20px;
  }
}
@media screen and (max-width: 767px) {
  .post_content .plan__box {
    border: 2px solid #F2F2F2;
    margin-top: 10px;
    padding: 10px 10px;
  }
}
.post_content .plan__box.active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.post_content .plan__box-text {
  line-height: 1.5;
}
.post_content .plan__box-subtitle {
  font-size: 21px;
  font-weight: 700;
  color: #084672;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__box-subtitle {
    font-size: 12px;
    margin-top: 10px;
  }
}
.post_content .plan__box-img {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__box-img {
    margin-top: 10px;
  }
}
.post_content .plan__box-img.example {
  width: 538px;
  max-width: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: 70px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__box-img.example {
    width: 100%;
    margin: 20px auto 0;
  }
}
.post_content .plan__box-logos {
  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;
  gap: 0 25px;
  padding-left: 0;
  margin: 25px auto 0;
}
@media screen and (max-width: 767px) {
  .post_content .plan__box-logos {
    width: 200px;
    max-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 10px;
    margin-top: 10px;
  }
}
.post_content .plan__box-logo:first-child {
  width: 92px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__box-logo:first-child {
    width: 51px;
  }
}
.post_content .plan__box-logo:nth-child(2) {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__box-logo:nth-child(2) {
    width: 70px;
  }
}
.post_content .plan__box-logo:nth-child(3) {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__box-logo:nth-child(3) {
    width: 90px;
  }
}
.post_content .plan__box-logo:nth-child(4) {
  width: 138px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__box-logo:nth-child(4) {
    width: 78px;
  }
}
.post_content .plan__box-icon {
  width: 170px;
  max-width: 100%;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .post_content .plan__box-icon {
    width: 80px;
    margin-top: 10px;
  }
}
.post_content .plan__subtext {
  text-align: center;
  font-size: 23px;
  font-weight: 500;
  color: #084672;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .post_content .plan__subtext {
    font-size: 14px;
    margin-top: 18px;
  }
}

/* strength */
.strength {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .strength {
    padding-top: 50px;
  }
}

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

.strength__subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #084672;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .strength__subtitle {
    font-size: 20px;
    margin-top: 15px;
  }
}

.strength__text {
  width: 51%;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .strength__text {
    width: 100%;
    line-height: 1.9;
    margin-left: 0;
    margin-top: 15px;
  }
}

.strength__img-wrapper {
  margin-top: 75px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .strength__img-wrapper {
    margin-top: 40px;
  }
}

.strength__entext {
  position: absolute;
  left: -50%;
  top: 50%;
  width: 100vw;
  white-space: nowrap;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 252px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  z-index: -1;
  -webkit-animation: infinity-scroll-left 8s infinite linear 0.5s both;
          animation: infinity-scroll-left 8s infinite linear 0.5s both;
}
@media screen and (max-width: 1200px) {
  .strength__entext {
    font-size: 150px;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  to {
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  to {
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
  }
}
.strength__texts {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .strength__texts {
    position: static;
    -webkit-transform: unset;
            transform: unset;
  }
}

.strength__heading {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  color: #084672;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .strength__heading {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .strength__heading {
    font-size: 20px;
  }
}

.strength__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 51px;
  width: 480px;
  max-width: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 11px;
  margin: 25px auto 0;
}
@media screen and (max-width: 1200px) {
  .strength__list {
    gap: 0 30px;
    width: 400px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .strength__list {
    width: 280px;
    margin-top: 5px;
    padding: 7px;
  }
}

.strength__list-item {
  font-size: 20px;
  color: #084672;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .strength__list-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .strength__list-item {
    font-size: 12px;
  }
}
.strength__list-item + .strength__list-item {
  position: relative;
}
.strength__list-item + .strength__list-item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -28px;
  background: url(../img/arrow-icon02_orange.avif) no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .strength__list-item + .strength__list-item::before {
    left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .strength__list-item + .strength__list-item::before {
    width: 5px;
    height: 8px;
    left: -17px;
  }
}

.strength__img {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .strength__img {
    width: 400px;
    max-width: 103%;
    margin-top: 20px;
  }
}

.strength__subtext {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .strength__subtext {
    text-align: left;
    line-height: 1.9;
    margin-top: 25px;
  }
}
/*# sourceMappingURL=style.css.map */
