@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #000;
  line-height: 1.5;
}

body {
  background: #FFFEF8;
}

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

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

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

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

*,
*::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: 1150px;
  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-page */
.l-page {
  padding: 150px 0 120px;
  padding: 9.375rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-page {
    padding: 5rem 0;
  }
}

/* l-post */
.l-post {
  width: 71%;
}
@media screen and (max-width: 767px) {
  .l-post {
    width: 100%;
  }
}

/* l-sidebar */
.l-sidebar {
  width: 27%;
}
@media screen and (max-width: 767px) {
  .l-sidebar {
    width: 100%;
    margin-top: 3.75rem;
  }
}

/* l-wrapper */
.l-wrapper {
  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) {
  .l-wrapper {
    display: block;
  }
}

/* btn */
.btn {
  text-align: center;
  display: block;
  width: 343px;
  width: 21.4375rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: url(../img/common/btn-bg01.png) no-repeat center/contain;
  padding: 19px 0;
  padding: 1.1875rem 0;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 18rem;
  }
}
.btn:hover {
  opacity: 1;
  color: #000;
  background: url(../img/common/btn-bg01_hover.png) no-repeat center/contain;
}

.small-btn {
  text-align: center;
  display: block;
  width: 196px;
  width: 12.25rem;
  max-width: 100%;
  font-weight: 600;
  color: #fff;
  background: url(../img/common/btn-bg03.png) no-repeat center/contain;
  padding: 15px 0;
  padding: 0.9375rem 0;
}

/* card */
.card__inner {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid #D6D5CF;
  border: 0.0625rem solid #D6D5CF;
  border-radius: 1.875rem;
  padding: 20px 30px 15px;
  padding: 1.25rem 1.875rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .card__inner {
    border-radius: 1.25rem;
    padding: 1.25rem 1.25rem 0.75rem;
  }
}
.card__inner:hover {
  opacity: 1;
}
.card__inner:hover .card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.card__inner:hover .card__text::after {
  background: url(../img/common/more-icon_hover.png) no-repeat center/contain;
}

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

.card__img {
  margin: 0 -10px;
  margin: 0 -0.625rem;
  border-radius: 0.9375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .card__img {
    width: 7.5rem;
    min-width: 7.5rem;
    margin: 0;
  }
}
.card__img img {
  border-radius: 0.9375rem;
  height: 220px;
  height: 13.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .card__img img {
    height: auto;
    border-radius: 0.625rem;
  }
}

.card__info {
  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: 20px;
  margin-top: 1.25rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .card__info {
    width: 100%;
    margin-top: 0;
    margin-left: 0.625rem;
    padding-right: 0;
  }
}

.card__category span {
  text-align: center;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  border-radius: 2.5rem;
  background: #00A244;
  padding: 4px 14px;
  padding: 0.25rem 0.875rem;
}

.card__date {
  display: inline-block;
  font-family: "Inter", sans-serif;
  color: #BABABA;
}

.card__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  min-height: 50px;
  min-height: 3.125rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 1rem;
    line-height: 1.5;
    min-height: unset;
    margin-top: 0.75rem;
  }
}

.card__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .card__text {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 0.3125rem;
  }
}
.card__text::after {
  position: absolute;
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 20px;
  height: 1.25rem;
  bottom: 8px;
  bottom: 0.5rem;
  right: 0;
  background: url(../img/common/more-icon.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .card__text::after {
    width: 1.875rem;
    height: 0.9375rem;
    bottom: 0.375rem;
  }
}

/* cards */
.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 25px;
  gap: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .cards {
    display: block;
  }
}

.cards__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.04167rem);
          flex: 0 1 calc(33.333% - 1.04167rem);
}
@media screen and (max-width: 767px) {
  .cards__item + .cards__item {
    margin-top: 0.9375rem;
  }
}

/* cv */
.cv {
  background: url(../img/common/cv-bg01_pc.png) repeat-x center top/contain;
  padding: 100px 0 140px;
  padding: 6.25rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .cv {
    background: url(../img/common/cv-bg01_sp.png) repeat-x center top/contain;
    padding: 3.75rem 0 5rem;
  }
}

.cv02 {
  background: url(../img/common/cv-bg02_pc.png) repeat-x center top/contain;
  padding: 130px 0 200px;
  padding: 8.125rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .cv02 {
    background: url(../img/common/cv-bg02_sp.png) repeat-x center top/contain;
    padding: 3.75rem 0 5rem;
  }
}
@media screen and (max-width: 767px) {
  .cv02 .cv__title.title {
    font-size: 2rem;
  }
}
.cv02 .cv__btn {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .cv02 .cv__btn {
    margin-top: 1.25rem;
  }
}
.cv02 .cv__content {
  padding: 60px 80px 80px;
  padding: 3.75rem 5rem 5rem;
}
@media screen and (max-width: 767px) {
  .cv02 .cv__content {
    padding: 1.5625rem 1.25rem 2.5rem;
  }
}
.cv02 .cv__content::before {
  width: 260px;
  width: 16.25rem;
  height: 350px;
  height: 21.875rem;
  right: -130px;
  right: -8.125rem;
}

.cv03 {
  background: url(../img/common/cv-bg03_pc.png) repeat-x center top/contain;
  padding: 100px 0 140px;
  padding: 6.25rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .cv03 {
    background: url(../img/common/cv-bg03_sp.png) repeat-x center top/contain;
    padding: 3.75rem 0 5rem;
  }
}
.cv03 .cv__content {
  padding: 60px 90px 80px;
  padding: 3.75rem 5.625rem 5rem;
}
@media screen and (max-width: 767px) {
  .cv03 .cv__content {
    padding: 1.5625rem 1.25rem 2.5rem;
  }
}
.cv03 .cv__content::before {
  width: 260px;
  width: 16.25rem;
  height: 350px;
  height: 21.875rem;
  right: -130px;
  right: -8.125rem;
}
.cv03 .cv__box {
  padding: 15px 20px 15px 45px;
  padding: 0.9375rem 1.25rem 0.9375rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .cv03 .cv__box {
    padding: 1.25rem 1.25rem;
  }
}

.cv__content {
  background: #fff;
  border-radius: 1.25rem;
  border: 8px solid #D9B838;
  border: 0.5rem solid #D9B838;
  padding: 40px 20px 60px;
  padding: 2.5rem 1.25rem 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv__content {
    border: 0.25rem solid #D9B838;
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.cv__content::before {
  position: absolute;
  content: "";
  width: 290px;
  width: 18.125rem;
  height: 380px;
  height: 23.75rem;
  top: -80px;
  top: -5rem;
  right: -110px;
  right: -6.875rem;
  background: url(../img/common/cv-img.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__content::before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .cv__title {
    margin: 0 -1.25rem;
  }
}
.cv__title.title {
  color: #E54A3B;
}
@media screen and (max-width: 767px) {
  .cv__title.title {
    font-size: 2.25rem;
  }
}
.cv__title span {
  display: inline-block;
  font-size: 38px;
  font-size: 2.375rem;
  color: #D9B838;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv__title span {
    font-size: 1.75rem;
  }
}
.cv__title span::before, .cv__title span::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 50px;
  height: 3.125rem;
  background: #D9B838;
  top: 10px;
  top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cv__title span::before, .cv__title span::after {
    width: 0.25rem;
    height: 2.1875rem;
    top: 0.1875rem;
  }
}
.cv__title span::before {
  left: -25px;
  left: -1.5625rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .cv__title span::before {
    left: -1.25rem;
  }
}
.cv__title span::after {
  right: -25px;
  right: -1.5625rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
  .cv__title span::after {
    right: -1.25rem;
  }
}

.cv__text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cv__text {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
.cv__text span {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cv__text span {
    font-size: 1.75rem;
  }
}

.cv__btn-wrapper {
  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: 75px 80px;
  gap: 4.6875rem 5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .cv__btn-wrapper {
    display: block;
    margin-top: 1.875rem;
  }
}

.cv__btns {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 2.5rem);
          flex: 0 1 calc(50% - 2.5rem);
}
@media screen and (max-width: 767px) {
  .cv__btns + .cv__btns {
    margin-top: 1.875rem;
  }
}
.cv__btns:first-child .cv__btn-text, .cv__btns:nth-child(2) .cv__btn-text {
  color: #1A73E8;
}
.cv__btns:first-child .cv__btn, .cv__btns:nth-child(2) .cv__btn {
  background: url(../img/common/btn-bg06.png) no-repeat center/contain;
}
.cv__btns:first-child .cv__btn:hover, .cv__btns:nth-child(2) .cv__btn:hover {
  background: url(../img/common/btn-bg06_hover.png) no-repeat center/contain;
}
.cv__btns:first-child .cv__btn {
  padding-left: 10px;
  padding-left: 0.625rem;
}
.cv__btns:first-child .cv__btn::before {
  width: 49px;
  width: 3.0625rem;
  height: 51px;
  height: 3.1875rem;
  left: 26px;
  left: 1.625rem;
  background: url(../img/common/email-icon03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btns:first-child .cv__btn::before {
    width: 2.5rem;
    height: 2.5rem;
    left: 1.25rem;
  }
}
.cv__btns:first-child .cv__btn:hover {
  color: #1A73E8;
}
.cv__btns:first-child .cv__btn:hover::before {
  background: url(../img/common/email-icon03_hover.png) no-repeat center/contain;
}
.cv__btns:nth-child(2) .cv__btn {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .cv__btns:nth-child(2) .cv__btn {
    font-size: 1.5rem;
  }
}
.cv__btns:nth-child(2) .cv__btn::before {
  width: 57px;
  width: 3.5625rem;
  height: 54px;
  height: 3.375rem;
  left: 22px;
  left: 1.375rem;
  background: url(../img/common/tel-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btns:nth-child(2) .cv__btn::before {
    width: 2.5rem;
    height: 2.5rem;
    left: 0.9375rem;
  }
}
.cv__btns:nth-child(2) .cv__btn:hover {
  color: #1A73E8;
}
.cv__btns:nth-child(2) .cv__btn:hover::before {
  background: url(../img/common/tel-icon02_hover.png) no-repeat center/contain;
}
.cv__btns:nth-child(3) .cv__btn-text {
  color: #E54A3B;
}
.cv__btns:nth-child(4) .cv__btn-text {
  color: #00A244;
}
.cv__btns:nth-child(4) .cv__btn {
  background: url(../img/common/btn-bg07.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btns:nth-child(4) .cv__btn {
    padding-left: 1.25rem;
  }
}
.cv__btns:nth-child(4) .cv__btn::before {
  width: 74px;
  width: 4.625rem;
  height: 55px;
  height: 3.4375rem;
  left: 25px;
  left: 1.5625rem;
  background: url(../img/common/home-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btns:nth-child(4) .cv__btn::before {
    width: 3.125rem;
    height: 2.5rem;
  }
}
.cv__btns:nth-child(4) .cv__btn:hover {
  color: #00A244;
  background: url(../img/common/btn-bg07_hover.png) no-repeat center/contain;
}
.cv__btns:nth-child(4) .cv__btn:hover::before {
  background: url(../img/common/home-icon_hover.png) no-repeat center/contain;
}
.cv__btns .cv__btn {
  width: 412px;
  width: 25.75rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cv__btns .cv__btn {
    width: 18.375rem;
  }
}

.cv__btn-text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .cv__btn-text {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.cv__btn {
  text-align: center;
  display: block;
  width: 412px;
  width: 25.75rem;
  max-width: 100%;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  background: url(../img/common/btn-bg03.png) no-repeat center/contain;
  padding: 33px 0 33px 55px;
  padding: 2.0625rem 0 2.0625rem 3.4375rem;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .cv__btn {
    width: 18.375rem;
    font-size: 1.375rem;
    padding: 1.375rem 0 1.375rem 2.8125rem;
    margin-top: 1.25rem;
  }
}
.cv__btn::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 22px;
  left: 1.375rem;
  width: 65px;
  width: 4.0625rem;
  height: 48px;
  height: 3rem;
  background: url(../img/common/pc-icon.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .cv__btn::before {
    width: 2.125rem;
    height: 3rem;
    background: url(../img/common/phone-icon.png) no-repeat center/contain;
    left: 1.4375rem;
  }
}
.cv__btn:hover {
  opacity: 1;
  color: #E54A3B;
  background: url(../img/common/btn-bg03_hover.png) no-repeat center/contain;
}
.cv__btn:hover::before {
  background: url(../img/common/pc-icon_hover.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btn:hover::before {
    background: url(../img/common/phone-icon.png) no-repeat center/contain;
  }
}

.cv__box {
  text-align: center;
  background: #F7F7F7;
  border-radius: 1.25rem;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .cv__box {
    padding: 1.25rem 1.25rem;
    margin-top: 1.875rem;
  }
}

.cv__box-text {
  text-align: left;
}

.cv__box-title {
  display: inline-block;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  background: url(../img/common/tel-icon01.png) no-repeat center left/42px;
  background: url(../img/common/tel-icon01.png) no-repeat center left/2.625rem;
  padding-left: 59px;
  padding-left: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .cv__box-title {
    font-size: 1.125rem;
    background-size: 2.375rem;
    padding-left: 3rem;
  }
}

.cv__box-tel {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 500;
  color: #E54A3B;
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cv__box-tel {
    display: block;
    font-size: 2rem;
  }
}

.cv__box-subtext {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #818181;
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  width: 700px;
  width: 43.75rem;
  max-width: 100%;
  height: 100%;
  border-radius: 6.25rem 0 0 6.25rem;
  background: #fff;
  border: 8px solid #D9B838;
  border: 0.5rem solid #D9B838;
  border-right: none;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  overflow-y: auto;
  padding: 85px 20px 60px 105px;
  padding: 5.3125rem 1.25rem 3.75rem 6.5625rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .drawer {
    width: 20.625rem;
    border: 0.375rem solid #D9B838;
    border-right: none;
    border-radius: 1.875rem 0 0 1.875rem;
    padding: 0.9375rem 1.25rem 3.75rem 1.5625rem;
  }
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__header {
  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;
}

.drawer__logo {
  display: block;
  width: 250px;
  width: 15.625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .drawer__logo {
    width: 8.875rem;
  }
}

.drawer__close {
  text-align: center;
  display: block;
  width: 90px;
  width: 5.625rem;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 600;
  color: #D9B838;
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  border-radius: 1.25rem;
  -webkit-box-shadow: 4px 4px 0px rgba(0, 0, 0, .16);
          box-shadow: 4px 4px 0px rgba(0, 0, 0, .16);
  padding: 13px 10px;
  padding: 0.8125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .drawer__close {
    width: 5rem;
    font-size: 1.125rem;
    border-radius: 0.625rem;
    border: 0.125rem solid #D9B838;
    -webkit-box-shadow: 2px 2px 0px rgba(0, 0, 0, .16);
            box-shadow: 2px 2px 0px rgba(0, 0, 0, .16);
    padding: 0.3125rem 0.625rem;
  }
}
.drawer__close:hover {
  opacity: 1;
}

.drawer__items {
  margin-top: 135px;
  margin-top: 8.4375rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .drawer__items {
    margin-top: 3.75rem;
    margin-left: 1.25rem;
  }
}

.drawer__item + .drawer__item {
  margin-top: 95px;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .drawer__item + .drawer__item {
    margin-top: 2.25rem;
  }
}
.drawer__item:first-child a {
  background: url(../img/common/gnav-icon01.png) no-repeat center left/36px;
  background: url(../img/common/gnav-icon01.png) no-repeat center left/2.25rem;
}
@media screen and (max-width: 767px) {
  .drawer__item:first-child a {
    background-size: 1.5rem;
  }
}
.drawer__item:nth-child(2) a {
  background: url(../img/common/gnav-icon02.png) no-repeat center left/36px;
  background: url(../img/common/gnav-icon02.png) no-repeat center left/2.25rem;
}
@media screen and (max-width: 767px) {
  .drawer__item:nth-child(2) a {
    background-size: 1.5rem;
  }
}
.drawer__item:nth-child(3) a {
  background: url(../img/common/gnav-icon04.png) no-repeat center left/36px;
  background: url(../img/common/gnav-icon04.png) no-repeat center left/2.25rem;
}
@media screen and (max-width: 767px) {
  .drawer__item:nth-child(3) a {
    background-size: 1.5rem;
  }
}
.drawer__item:nth-child(4) a {
  background: url(../img/common/gnav-icon05.png) no-repeat center left/36px;
  background: url(../img/common/gnav-icon05.png) no-repeat center left/2.25rem;
}
@media screen and (max-width: 767px) {
  .drawer__item:nth-child(4) a {
    background-size: 1.5rem;
  }
}
.drawer__item a {
  display: inline-block;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  padding-left: 42px;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .drawer__item a {
    font-size: 1.125rem;
    padding-left: 2rem;
  }
}

.drawer__btns {
  margin-top: 64px;
  margin-top: 4rem;
}

.drawer__btn:first-child a::before {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background: url(../img/common/user-icon02.png) no-repeat center/contain;
}
.drawer__btn:nth-child(2) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.drawer__btn:nth-child(2) a::before {
  width: 20px;
  width: 1.25rem;
  height: 15px;
  height: 0.9375rem;
  background: url(../img/common/email-icon02.png) no-repeat center/contain;
}
.drawer__btn a {
  display: block;
  width: 200px;
  width: 12.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: #E54A3B;
  border-radius: 0.3125rem;
  padding: 11px 10px 11px 54px;
  padding: 0.6875rem 0.625rem 0.6875rem 3.375rem;
  margin: 0 auto;
  position: relative;
}
.drawer__btn a::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  left: 1.25rem;
}

.drawer__language {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  border-radius: 0.3125rem;
  margin: 15px auto 0;
  margin: 0.9375rem auto 0;
}
.drawer__language select {
  width: 200px;
  width: 12.5rem;
  height: 47px;
  height: 2.9375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #E54A3B;
  border: 1px solid #E54A3B;
  border: 0.0625rem solid #E54A3B;
  border-radius: 0.3125rem;
  padding: 0 20px 0;
  padding: 0 1.25rem 0;
  background: url(../img/common/language-arrow.png) no-repeat center right 20px/12px;
  background: url(../img/common/language-arrow.png) no-repeat center right 1.25rem/0.75rem;
}

/* fnav */
.fnav {
  padding: 70px 0 110px;
  padding: 4.375rem 0 6.875rem;
}
@media screen and (max-width: 767px) {
  .fnav {
    padding: 5.9375rem 0 7.1875rem;
  }
}

.fnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 850px;
  width: 53.125rem;
  max-width: 100%;
  gap: 50px 0;
  gap: 3.125rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fnav__items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem 0;
  }
}

.fnav__item {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .fnav__item {
    width: 43%;
  }
}
.fnav__item a {
  display: inline-block;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #E54A3B;
  line-height: 1.44;
}

/* footer */
.footer {
  margin-top: -60px;
  margin-top: -3.75rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: -1.875rem;
  }
}

.footer__nav {
  padding-left: 100px;
  padding-left: 6.25rem;
  background: url(../img/common/footer-bg01_pc.png) repeat-x center top/contain;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    padding-left: 1.5625rem;
    background: url(../img/common/footer-bg01_sp.png) repeat-x center top/contain;
  }
}

.footer__content {
  background: url(../img/common/footer-bg02_pc.png) repeat-x center top/contain;
  margin-top: -50px;
  margin-top: -3.125rem;
  padding: 50px 0 25px;
  padding: 3.125rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .footer__content {
    background: url(../img/common/footer-bg02_sp.png) repeat-x center top/contain;
    padding: 2.8125rem 0 2.8125rem;
  }
  .footer__content .l-inner {
    padding: 0 1.25rem;
  }
}

.footer__logos {
  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;
}

.footer__logo {
  width: 190px;
  width: 11.875rem;
  max-width: 100%;
}

.footer__line {
  display: block;
  width: 44px;
  width: 2.75rem;
  margin-left: 25px;
  margin-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .footer__line {
    margin-left: 0.9375rem;
  }
}

.footer__text {
  text-align: center;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .footer__text {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1.63;
    margin-top: 1.875rem;
  }
}

.footer__box {
  width: 562px;
  width: 35.125rem;
  max-width: 100%;
  background: #F7F7F7;
  border-radius: 1.25rem;
  margin: 25px auto 0;
  margin: 1.5625rem auto 0;
  padding: 26px 45px;
  padding: 1.625rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .footer__box {
    margin-top: 2.1875rem;
    padding: 1rem 1.25rem;
  }
}

.footer__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__list-item {
    display: block;
  }
}
.footer__list-item + .footer__list-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer__list-item + .footer__list-item {
    margin-top: 0.9375rem;
  }
}

.footer__list-title {
  min-width: 180px;
  min-width: 11.25rem;
}

.footer__list-text {
  font-weight: 700;
}
.footer__list-text a {
  display: inline-block;
}
.footer__list-text span {
  font-weight: 400;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__links {
    padding-right: 0;
    margin-top: 2.1875rem;
  }
}

.footer__link + .footer__link {
  margin-left: 30px;
  margin-left: 1.875rem;
}
.footer__link a {
  display: inline-block;
}

.footer__copyright {
  text-align: center;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #fff;
  background: #383838;
  padding: 12px 10px;
  padding: 0.75rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 1rem;
    padding: 0.625rem 0.3125rem;
  }
}

/* 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 + .gnav__item {
  margin-left: 50px;
  margin-left: 3.125rem;
}
.gnav__item:first-child a {
  background: url(../img/common/gnav-icon01.png) no-repeat center left/26px;
  background: url(../img/common/gnav-icon01.png) no-repeat center left/1.625rem;
}
.gnav__item:nth-child(2) a {
  background: url(../img/common/gnav-icon02.png) no-repeat center left/26px;
  background: url(../img/common/gnav-icon02.png) no-repeat center left/1.625rem;
}
.gnav__item:nth-child(3) a {
  background: url(../img/common/gnav-icon04.png) no-repeat center left/26px;
  background: url(../img/common/gnav-icon04.png) no-repeat center left/1.625rem;
}
.gnav__item:nth-child(4) a {
  background: url(../img/common/gnav-icon05.png) no-repeat center left/26px;
  background: url(../img/common/gnav-icon05.png) no-repeat center left/1.625rem;
}
.gnav__item a {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  padding-left: 32px;
  padding-left: 2rem;
}

/* header */
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 90px;
  padding-top: 5.625rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    padding-top: 0;
  }
}

.header__top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 64px;
  height: 4rem;
  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;
  background: url(../img/common/header-bg.png) repeat-x center bottom/contain;
  padding: 0 20px 10px 15px;
  padding: 0 1.25rem 0.625rem 0.9375rem;
}
.header__top .header__logo {
  width: 159px;
  width: 9.9375rem;
}

.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

.header__btn:first-child a::before {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background: url(../img/common/user-icon01.png) no-repeat center/contain;
}
.header__btn:nth-child(2) {
  margin-left: 10px;
  margin-left: 0.625rem;
}
.header__btn:nth-child(2) a::before {
  width: 16px;
  width: 1rem;
  height: 12px;
  height: 0.75rem;
  background: url(../img/common/email-icon01.png) no-repeat center/contain;
}
.header__btn a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #E54A3B;
  background: #fff;
  border-radius: 0.3125rem;
  padding: 6px 15px 6px 32px;
  padding: 0.375rem 0.9375rem 0.375rem 2rem;
  position: relative;
}
.header__btn a::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  left: 0.625rem;
}

.header__language {
  background: #FEE276;
  margin-left: 10px;
  margin-left: 0.625rem;
}
.header__language select {
  width: 110px;
  width: 6.875rem;
  height: 32px;
  height: 2rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #E54A3B;
  border: 1px solid #E54A3B;
  border: 0.0625rem solid #E54A3B;
  border-radius: 0.3125rem;
  padding: 0 20px 0 10px;
  padding: 0 1.25rem 0 0.625rem;
  background: url(../img/common/language-arrow.png) no-repeat center right 9px/8px;
  background: url(../img/common/language-arrow.png) no-repeat center right 0.5625rem/0.5rem;
}

.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;
  padding: 0 20px 0 40px;
  padding: 0 1.25rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0.75rem 0.3125rem;
  }
}
.header__inner .header__logo {
  width: 190px;
  width: 11.875rem;
}
@media screen and (max-width: 767px) {
  .header__inner .header__logo {
    width: 8.875rem;
  }
}

.header__logo {
  max-width: 100%;
}
.header__logo a {
  display: block;
}

.header__nav {
  margin-left: auto;
}

.header__menu {
  text-align: center;
  display: block;
  width: 90px;
  width: 5.625rem;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 600;
  color: #D9B838;
  background: #fff;
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  border-radius: 1.25rem;
  -webkit-box-shadow: 4px 4px 0px rgba(0, 0, 0, .16);
          box-shadow: 4px 4px 0px rgba(0, 0, 0, .16);
  padding: 13px 10px;
  padding: 0.8125rem 0.625rem;
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .header__menu {
    position: fixed;
    top: 0.625rem;
    right: 0.625rem;
    width: 5rem;
    font-size: 1.125rem;
    border-radius: 0.625rem;
    border: 0.125rem solid #D9B838;
    -webkit-box-shadow: 2px 2px 0px rgba(0, 0, 0, .16);
            box-shadow: 2px 2px 0px rgba(0, 0, 0, .16);
    padding: 0.3125rem 0.625rem;
  }
}
.header__menu:hover {
  opacity: 1;
}

/* heading */
.heading {
  text-align: center;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 2rem;
    line-height: 1.3;
  }
}

/* loading */
.has-visited #loading-screen {
  display: none !important;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  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;
  z-index: 9999;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.scene {
  position: relative;
  width: 1600px;
  height: 800px;
  -webkit-perspective: 2000px;
          perspective: 2000px;
}

/* えびでんくんのスタイル */
.ebi-character {
  position: absolute;
  bottom: 160px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  height: 200px;
  z-index: 10;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-animation: walk-animation 0.8s infinite;
          animation: walk-animation 0.8s infinite;
}

/* 歩行アニメーション（画像切り替え + 上下動） */
@-webkit-keyframes walk-animation {
  0% {
    background-image: url("../img/common/ebi-kun-walk1.png");
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
  25% {
    background-image: url("../img/common/ebi-kun-walk1.png");
    -webkit-transform: translateX(-50%) translateY(-8px);
            transform: translateX(-50%) translateY(-8px);
  }
  50% {
    background-image: url("../img/common/ebi-kun-walk2.png");
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
  75% {
    background-image: url("../img/common/ebi-kun-walk2.png");
    -webkit-transform: translateX(-50%) translateY(-8px);
            transform: translateX(-50%) translateY(-8px);
  }
  100% {
    background-image: url("../img/common/ebi-kun-walk1.png");
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
}
@keyframes walk-animation {
  0% {
    background-image: url("../img/common/ebi-kun-walk1.png");
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
  25% {
    background-image: url("../img/common/ebi-kun-walk1.png");
    -webkit-transform: translateX(-50%) translateY(-8px);
            transform: translateX(-50%) translateY(-8px);
  }
  50% {
    background-image: url("../img/common/ebi-kun-walk2.png");
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
  75% {
    background-image: url("../img/common/ebi-kun-walk2.png");
    -webkit-transform: translateX(-50%) translateY(-8px);
            transform: translateX(-50%) translateY(-8px);
  }
  100% {
    background-image: url("../img/common/ebi-kun-walk1.png");
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
}
/* 鳥居のスタイル */
.torii-container {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.torii {
  position: absolute;
  left: 50%;
  bottom: 220px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: torii-approach 6s infinite linear;
          animation: torii-approach 6s infinite linear;
}

.torii:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.torii:nth-child(2) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}

.torii:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}

.torii-structure {
  width: 320px;
  height: 288px;
  position: relative;
  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;
}

.torii-image {
  width: 100%;
  height: 100%;
  background-image: url("../img/common/torii.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="9" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.3)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .3));
          filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .3));
}

@-webkit-keyframes torii-approach {
  0% {
    -webkit-transform: translateX(-50%) translateZ(800px) scale(0.3);
            transform: translateX(-50%) translateZ(800px) scale(0.3);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateZ(-200px) scale(2);
            transform: translateX(-50%) translateZ(-200px) scale(2);
    opacity: 0;
  }
}

@keyframes torii-approach {
  0% {
    -webkit-transform: translateX(-50%) translateZ(800px) scale(0.3);
            transform: translateX(-50%) translateZ(800px) scale(0.3);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateZ(-200px) scale(2);
            transform: translateX(-50%) translateZ(-200px) scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ローディングテキスト */
.loading-text {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #333;
  font-size: 19.2px;
  font-size: 1.2rem;
  font-weight: bold;
  -webkit-animation: pulse 1.5s infinite;
          animation: pulse 1.5s infinite;
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .scene {
    width: 100vw;
    height: 600px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media (max-width: 768px) {
  .scene {
    width: 100vw;
    height: 400px;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  .loading-text {
    font-size: 1rem;
  }
}
/* main */
.main {
  overflow: hidden;
}

/* mv */
.mv {
  background: url(../img/common/mv-bg_pc.png) repeat-x center/cover;
  padding: 160px 0 90px;
  padding: 10rem 0 5.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    background: url(../img/common/mv-bg_sp.png) repeat-x center top/cover;
    padding: 5rem 0 3.75rem;
  }
  .mv .l-inner {
    padding: 0 0.625rem;
  }
}
.mv::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  height: 0.875rem;
  background: url(../img/common/border02_pc.png) repeat-x center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv::after {
    background: url(../img/common/border02_sp.png) repeat-x center/contain;
  }
}

.mv--post::after {
  display: none;
}

.mv--ebidenkun .mv__title span {
  display: inline-block;
  width: 450px;
  width: 28.125rem;
  max-width: 100%;
  margin: 0 auto -20px;
  margin: 0 auto -1.25rem;
}
@media screen and (max-width: 767px) {
  .mv--ebidenkun .mv__title span {
    width: 17.5rem;
    margin-bottom: -0.625rem;
  }
}

.mv__title {
  text-align: center;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}

.mv__links {
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.mv__link {
  display: inline;
}
.mv__link + .mv__link {
  margin-left: 35px;
  margin-left: 2.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__link + .mv__link {
    margin-left: 1.5625rem;
  }
}
.mv__link + .mv__link::before {
  position: absolute;
  content: "";
  width: 5px;
  width: 0.3125rem;
  height: 10px;
  height: 0.625rem;
  top: 2px;
  top: 0.125rem;
  left: -22px;
  left: -1.375rem;
  background: url(../img/common/mv-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .mv__link + .mv__link::before {
    left: -0.9375rem;
  }
}
.mv__link a, .mv__link span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .mv__link a, .mv__link span {
    font-size: 1rem;
  }
}
.mv__link span {
  font-weight: 600;
}

/* news */
.news__item {
  background: url(../img/common/news-border_pc.png) repeat-x center bottom/contain;
  padding-bottom: 34px;
  padding-bottom: 2.125rem;
}
@media screen and (max-width: 767px) {
  .news__item {
    background: url(../img/common/news-border_sp.png) repeat-x center bottom/contain;
    padding-bottom: 1.75rem;
  }
}
.news__item + .news__item {
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .news__item + .news__item {
    margin-top: 1.125rem;
  }
}

.news__item-inner {
  display: block;
}

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

.news__item-date {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #BABABA;
  min-width: 116px;
  min-width: 7.25rem;
}

.news__item-category span {
  display: inline-block;
  color: #00A244;
  border: 1px solid #00A244;
  border: 0.0625rem solid #00A244;
  letter-spacing: 0.05em;
  border-radius: 1rem;
  padding: 1px 12px;
  padding: 0.0625rem 0.75rem;
}

.news__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 1rem;
  }
}

/* other */
.other {
  background: url(../img/common/bg_pc.png) no-repeat center top/cover;
  padding: 40px 0 140px;
  padding: 2.5rem 0 8.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .other {
    background: url(../img/common/bg_sp.png) repeat-y center top/contain;
    padding: 2.5rem 0 6.25rem;
  }
}

.other__heading {
  color: #00A244;
}

.other__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 25px;
  gap: 0 1.5625rem;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .other__items {
    display: block;
    margin-top: 1.875rem;
  }
}

.other__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.04167rem);
          flex: 0 1 calc(33.333% - 1.04167rem);
}
@media screen and (max-width: 767px) {
  .other__item + .other__item {
    margin-top: 3.125rem;
  }
}
.other__item:first-child .other__item-icon {
  width: 78px;
  width: 4.875rem;
}
.other__item:first-child .other__item-title {
  margin-top: 18px;
  margin-top: 1.125rem;
}
.other__item:nth-child(2) .other__item-icon {
  width: 116px;
  width: 7.25rem;
}
.other__item:nth-child(2) .other__item-title {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.other__item:nth-child(3) .other__item-icon {
  width: 112px;
  width: 7rem;
}
.other__item:nth-child(3) .other__item-title {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.other__item-inner {
  display: block;
  min-height: 280px;
  min-height: 17.5rem;
  background: #00A244;
  border-radius: 1.25rem;
  border: 5px solid #00A244;
  border: 0.3125rem solid #00A244;
  padding: 40px 20px 20px;
  padding: 2.5rem 1.25rem 1.25rem;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .other__item-inner {
    min-height: 15.625rem;
    padding: 1.875rem 1.25rem;
  }
}
.other__item-inner:hover {
  opacity: 1;
  background: #fff;
}
.other__item-inner:hover .other__item-title {
  color: #00A244;
}

.other__item-icon {
  max-width: 100%;
  margin: 0 auto;
}

.other__item-title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .other__item-title {
    font-size: 1.375rem;
  }
}

.other__item-text {
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -30px;
  bottom: -1.875rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  border: 3px solid #000;
  border: 0.1875rem solid #000;
  background: #fff;
  border-radius: 3.125rem;
  min-width: 275px;
  min-width: 17.1875rem;
  padding: 8px 5px;
  padding: 0.5rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .other__item-text {
    font-size: 1.125rem;
    min-width: 15.625rem;
    bottom: -1.5625rem;
  }
}
.other__item-text::after {
  position: absolute;
  content: "";
  width: 18px;
  width: 1.125rem;
  height: 20px;
  height: 1.25rem;
  left: 35px;
  left: 2.1875rem;
  top: -17px;
  top: -1.0625rem;
  background: url(../img/ebidenkun/hukidashi-bg.png) no-repeat center/contain;
}

/* pagination */
.pagination__items {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 10px;
  gap: 0.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .pagination__items {
    gap: 0.4375rem 0.4375rem;
  }
}

.pagination__item a, .pagination__item span {
  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: 60px;
  width: 3.75rem;
  min-width: 60px;
  min-width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #D9B838;
  border: 1px solid #D9B838;
  border: 0.0625rem solid #D9B838;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .pagination__item a, .pagination__item span {
    width: 3.125rem;
    min-width: 3.125rem;
    height: 3.125rem;
  }
}
.pagination__item .current {
  background: #D9B838;
  color: #fff;
}
.pagination__item .prev {
  background: url(../img/common/prev-arrow.png) no-repeat center left 22px/10px;
  background: url(../img/common/prev-arrow.png) no-repeat center left 1.375rem/0.625rem;
}
@media screen and (max-width: 767px) {
  .pagination__item .prev {
    background-position: center left 1.0625rem;
  }
}
.pagination__item .next {
  background: url(../img/common/next-arrow.png) no-repeat center left 26px/10px;
  background: url(../img/common/next-arrow.png) no-repeat center left 1.625rem/0.625rem;
}
@media screen and (max-width: 767px) {
  .pagination__item .next {
    background-position: center left 1.3125rem;
  }
}

/* post */
.post {
  overflow: hidden;
  background: #fff;
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  border-radius: 1.25rem;
  padding: 80px 50px 110px;
  padding: 5rem 3.125rem 6.875rem;
}
@media screen and (max-width: 767px) {
  .post {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}

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

.post__date {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #BABABA;
  min-width: 116px;
  min-width: 7.25rem;
}

.post__category span {
  display: inline-block;
  color: #00A244;
  border: 1px solid #00A244;
  border: 0.0625rem solid #00A244;
  letter-spacing: 0.05em;
  border-radius: 1rem;
  padding: 0 12px;
  padding: 0 0.75rem;
}

.post__title {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .post__title {
    font-size: 1.75rem;
  }
}

.post__img {
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
.post__img img {
  border-radius: 1.25rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.post__content {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.post__content h2, .post__content h3, .post__content h4, .post__content h5, .post__content h6 {
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.post__content h2 {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .post__content h2 {
    font-size: 1.5rem;
  }
}
.post__content h3 {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .post__content h3 {
    font-size: 1.25rem;
  }
}
.post__content h4 {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .post__content h4 {
    font-size: 1.125rem;
  }
}
.post__content h5 {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .post__content h5 {
    font-size: 1rem;
  }
}
.post__content h6 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .post__content h6 {
    font-size: 1rem;
  }
}
.post__content p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .post__content p {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.post__content p:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.post__content p a {
  color: #1A73E8;
}
.post__content p a:hover {
  text-decoration: underline;
}
.post__content ul:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.post__content ul li {
  padding-left: 1em;
  position: relative;
}
.post__content ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.post__content ol {
  padding-left: 1.5em;
  list-style: unset;
}
.post__content ol:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.post__content ol li {
  list-style-type: decimal;
}
.post__content li {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .post__content li {
    font-size: 1rem;
  }
}
.post__content li:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.post__content figure:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.post__content figcaption {
  text-align: center;
  margin-bottom: 0;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .post__content figcaption {
    text-align: left;
  }
}
.post__content img {
  border-radius: 1.25rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.post__content .wp-block-table .has-fixed-layout {
  table-layout: unset;
}
.post__content .wp-block-table {
  overflow: auto;
}
.post__content .content_area table {
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .post__content .content_area table {
    width: auto;
    min-width: unset;
  }
}
.post__content table {
  font-size: 18px;
  font-size: 1.125rem;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ddd;
  border: 0.0625rem solid #ddd;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .post__content table {
    font-size: 1rem;
    width: 50rem;
    min-width: 50rem;
  }
}
.post__content table tr:nth-child(even) {
  background: #F7F7F7;
}
.post__content table tr > :first-child {
  width: 25%;
}
.post__content table tr > :not(:first-child) {
  border-left: 1px solid #ddd;
  border-left: 0.0625rem solid #ddd;
}
.post__content table th, .post__content table td {
  border: none;
  padding: 21px 20px 21px 40px;
  padding: 1.3125rem 1.25rem 1.3125rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content table th, .post__content table td {
    padding: 1rem 1.25rem;
  }
}
.post__content .wp-block-quote {
  border-radius: 0.9375rem;
  background: #FFFBEA;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__content .wp-block-quote {
    padding: 1.25rem 1.25rem;
  }
}
.post__content .wp-block-quote p:not(:last-child) {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
.post__content a.post__btn {
  text-align: center;
  display: block;
  width: 287px;
  width: 17.9375rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  padding: 14px 10px;
  padding: 0.875rem 0.625rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 767px) {
  .post__content a.post__btn {
    width: 15rem;
    font-size: 1.25rem;
    padding: 1rem 0.625rem;
  }
}
.post__content a.post__btn.red {
  background: url(../img/common/btn-bg03.png) no-repeat center/contain;
}
.post__content a.post__btn.red:hover {
  color: #E54A3B;
  background: url(../img/common/btn-bg03_hover.png) no-repeat center/contain;
}
.post__content a.post__btn.yellow {
  background: url(../img/common/btn-bg08.png) no-repeat center/contain;
}
.post__content a.post__btn.yellow:hover {
  color: #D9B838;
  background: url(../img/common/btn-bg08_hover.png) no-repeat center/contain;
}
.post__content a.post__btn.black {
  background: url(../img/common/btn-bg02.png) no-repeat center/contain;
}
.post__content a.post__btn.black:hover {
  color: #383838;
  background: url(../img/common/btn-bg02_hover.png) no-repeat center/contain;
}
.post__content a.post__btn:hover {
  opacity: 1;
  text-decoration: none;
}
.post__content .post__border {
  display: block;
  width: 100%;
  height: 12px;
  height: 0.75rem;
  margin: 80px 0;
  margin: 5rem 0;
}
@media screen and (max-width: 767px) {
  .post__content .post__border {
    margin: 3.75rem 0;
  }
}
.post__content .post__border.yellow {
  background: url(../img/common/border01_pc.png) no-repeat center/contain;
}
.post__content .post__border.gray {
  background: url(../img/common/border03_pc.png) no-repeat center/contain;
}

.post__other {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .post__other {
    margin-top: 3.75rem;
  }
}

.post__other-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  color: #00A244;
}
@media screen and (max-width: 767px) {
  .post__other-title {
    font-size: 1.5rem;
  }
}

.post__other-cards-wrapper {
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post__other-cards-wrapper {
    margin-top: 1.25rem;
  }
}
.post__other-cards-wrapper .slide-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .post__other-cards-wrapper .slide-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.post__other-cards-wrapper .slide-arrow:hover {
  opacity: 1;
}
.post__other-cards-wrapper .prev-arrow {
  background: url(../img/common/prev-icon01.png) no-repeat center/contain;
  left: -30px;
  left: -1.875rem;
}
@media screen and (max-width: 767px) {
  .post__other-cards-wrapper .prev-arrow {
    left: -0.9375rem;
  }
}
.post__other-cards-wrapper .next-arrow {
  background: url(../img/common/next-icon01.png) no-repeat center/contain;
  right: -30px;
  right: -1.875rem;
}
@media screen and (max-width: 767px) {
  .post__other-cards-wrapper .next-arrow {
    right: -0.9375rem;
  }
}

.post__other-cards {
  margin-right: calc(50% - 50vw);
  display: none;
}
@media screen and (max-width: 767px) {
  .post__other-cards {
    margin-right: 0;
  }
}
.post__other-cards.slick-initialized {
  display: block;
}

.post__other-card {
  width: 350px;
  width: 21.875rem;
  margin: 0 12px;
  margin: 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .post__other-card {
    width: 100%;
    margin: 0;
  }
  .post__other-card .card__header {
    display: block;
  }
  .post__other-card .card__img {
    width: 100%;
  }
  .post__other-card .card__info {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.post__footer {
  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;
  background: #F7F7F7;
  border-radius: 1.25rem;
  margin-top: 80px;
  margin-top: 5rem;
  padding: 18px 30px;
  padding: 1.125rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__footer {
    display: block;
    padding: 1.875rem 1.25rem;
    margin-top: 3.75rem;
  }
}

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

.post__sns-item + .post__sns-item {
  margin-left: 30px;
  margin-left: 1.875rem;
}
.post__sns-item a {
  display: block;
  width: 36px;
  width: 2.25rem;
}

.post__back {
  text-align: center;
  display: block;
  width: 192px;
  width: 12rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  background: url(../img/common/btn-bg09.png) no-repeat center/contain;
  padding: 12px 10px;
  padding: 0.75rem 0.625rem;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 767px) {
  .post__back {
    font-size: 1rem;
    margin: 1.875rem auto 0;
    padding: 1rem 0.625rem;
  }
}
.post__back:hover {
  opacity: 1;
  color: #fff;
  background: url(../img/common/btn-bg09_hover.png) no-repeat center/contain;
}

.wp-block-embed__wrapper a {
  text-decoration: underline;
}

/* qa */
.qa__item {
  background: #fff;
  border-radius: 0.625rem;
}
.qa__item + .qa__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .qa__item + .qa__item {
    margin-top: 1.25rem;
  }
}

.qa__item-question, .qa__item-answer {
  text-align: center;
  min-width: 30px;
  min-width: 1.875rem;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 30px;
  margin-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .qa__item-question, .qa__item-answer {
    font-size: 2.25rem;
    margin-right: 0.8125rem;
  }
}

.qa__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 50px 20px 30px;
  padding: 1.25rem 3.125rem 1.25rem 1.875rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa__item-header {
    min-height: 5rem;
    padding: 0.625rem 0.625rem;
  }
}

.qa__item-btn {
  display: block;
  position: absolute;
  top: 10px;
  top: 0.625rem;
  right: 10px;
  right: 0.625rem;
  border-radius: 0.625rem;
  background: #F7F7F7;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .qa__item-btn {
    display: none;
  }
}
.qa__item-btn::after, .qa__item-btn::before {
  position: absolute;
  content: "";
  width: 14px;
  width: 0.875rem;
  height: 3px;
  height: 0.1875rem;
  background: #383838;
  top: 50%;
  right: 23px;
  right: 1.4375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.qa__item-btn::before {
  top: 48%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.qa__item-btn.active::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.qa__item-question {
  color: #E54A3B;
}

.qa__item-title {
  font-weight: 600;
}

.qa__item-body {
  display: none;
  padding: 10px;
  padding: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa__item-body {
    padding: 0 0.625rem 3.125rem;
  }
}

.qa__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 20px 30px 20px 20px;
  padding: 1.25rem 1.875rem 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .qa__item-inner {
    padding: 0.875rem 1.25rem;
  }
}

.qa__item-answer {
  color: #00A244;
}
@media screen and (max-width: 767px) {
  .qa__item-answer {
    display: none;
  }
}

.qa__item-close {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
  bottom: 0.625rem;
  width: 100%;
  height: 30px;
  height: 1.875rem;
}
.qa__item-close::before {
  position: absolute;
  content: "";
  width: 14px;
  width: 0.875rem;
  height: 3px;
  height: 0.1875rem;
  background: #383838;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* search */
.search {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.search input[type=text] {
  width: 100%;
  height: 50px;
  height: 3.125rem;
  background: #fff;
  border-radius: 0.625rem;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
}
.search input[type=text]::-webkit-input-placeholder {
  color: #BEBEBE;
}
.search input[type=text]::-moz-placeholder {
  color: #BEBEBE;
}
.search input[type=text]::-ms-input-placeholder {
  color: #BEBEBE;
}
.search input[type=text]::placeholder {
  color: #BEBEBE;
}

/* sidebar */
.sidebar__unit {
  background: #F7F7F7;
  border-radius: 1.25rem;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}
.sidebar__unit + .sidebar__unit {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.sidebar__unit:first-child .sidebar__unit-title {
  background: url(../img/common/search-icon.png) no-repeat center left/28px;
  background: url(../img/common/search-icon.png) no-repeat center left/1.75rem;
}
.sidebar__unit:nth-child(2) .sidebar__unit-title {
  background: url(../img/common/category-icon.png) no-repeat center left/28px;
  background: url(../img/common/category-icon.png) no-repeat center left/1.75rem;
}
.sidebar__unit:nth-child(3) .sidebar__unit-title {
  background: url(../img/common/popular-icon.png) no-repeat center left/28px;
  background: url(../img/common/popular-icon.png) no-repeat center left/1.75rem;
}
.sidebar__unit:nth-child(4) .sidebar__unit-title {
  background: url(../img/common/calendar-icon.png) no-repeat center left/28px;
  background: url(../img/common/calendar-icon.png) no-repeat center left/1.75rem;
}

.sidebar__unit-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  padding-left: 37px;
  padding-left: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-title {
    font-size: 1rem;
    line-height: 1.7;
  }
}

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

.sidebar__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #707070;
  border-bottom: 0.0625rem solid #707070;
  padding: 5px 0;
  padding: 0.3125rem 0;
}

.sidebar__item-img {
  width: 80px;
  width: 5rem;
  min-width: 80px;
  min-width: 5rem;
}
.sidebar__item-img img {
  min-height: 60px;
  min-height: 3.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3125rem;
}

.sidebar__item-body {
  width: 100%;
  margin-left: 10px;
  margin-left: 0.625rem;
  position: relative;
}

.sidebar__item-title {
  font-weight: 600;
  line-height: 1.375;
}

.sidebar__item-date {
  display: inline-block;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #BABABA;
  position: absolute;
  right: 0;
  bottom: 0;
}

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

.sidebar__list-item + .sidebar__list-item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .sidebar__list-item + .sidebar__list-item {
    margin-top: 1.25rem;
  }
}
.sidebar__list-item a {
  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;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .sidebar__list-item a {
    font-size: 1rem;
  }
}
.sidebar__list-item span {
  font-weight: 400;
}

/* subtitle */
.subtitle {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 1.75rem;
  }
}

/* tab */
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  gap: 0 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.4375rem 0.4375rem;
  }
}
.tab::after {
  position: absolute;
  content: "";
  bottom: -6px;
  bottom: -0.375rem;
  left: 0;
  width: 100%;
  height: 6px;
  height: 0.375rem;
  background: #E54A3B;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .tab::after {
    display: none;
  }
}

.tab__item {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 0.46875rem);
          flex: 0 1 calc(25% - 0.46875rem);
}
@media screen and (max-width: 767px) {
  .tab__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.21875rem);
            flex: 0 1 calc(50% - 0.21875rem);
  }
}
.tab__item.current button {
  background: #fff;
  color: #E54A3B;
  min-height: 85px;
  min-height: 5.3125rem;
  border-bottom: none;
  border-radius: 1.25rem 1.25rem 0 0;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tab__item.current button {
    min-height: 3.5rem;
    border: 0.25rem solid #E54A3B;
    border-radius: 1.25rem;
    padding-bottom: 0;
  }
}
.tab__item.current button::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -6px;
  bottom: -0.375rem;
  width: 100%;
  height: 6px;
  height: 0.375rem;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .tab__item.current button::after {
    display: none;
  }
}
.tab__item button {
  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: 80px;
  min-height: 5rem;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  border: 6px solid #E54A3B;
  border: 0.375rem solid #E54A3B;
  border-radius: 0.9375rem;
  background: #E54A3B;
}
@media screen and (max-width: 767px) {
  .tab__item button {
    min-height: 3.5rem;
    font-size: 1rem;
    border: 0.25rem solid #E54A3B;
  }
}
.tab__item button:hover {
  opacity: 1;
}

/* text */
.text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

/* title */
.title {
  text-align: center;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
  color: #383838;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 2.5rem;
    line-height: 1.375;
  }
}

/* about-faq */
.about-faq {
  background: #fff;
  padding: 120px 0 100px;
  padding: 7.5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .about-faq {
    padding: 3.75rem 0;
  }
}

.about-faq__text {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.about-faq__btn {
  margin: 25px auto 0;
  margin: 1.5625rem auto 0;
}

/* about */
/* check */
.check {
  background: #fff;
  padding: 115px 0 310px;
  padding: 7.1875rem 0 19.375rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .check {
    padding: 3.75rem 0;
  }
}
.check::before, .check::after {
  position: absolute;
  content: "";
}
.check::before {
  left: 52%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -220px;
  top: -13.75rem;
  width: 700px;
  width: 43.75rem;
  height: 800px;
  height: 50rem;
  background: url(../img/about/check-bg01.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .check::before {
    width: 18.75rem;
    height: 25rem;
    top: -7.5rem;
  }
}
.check::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  height: 0.875rem;
  background: url(../img/common/border02_pc.png) repeat-x center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .check::after {
    background: url(../img/common/border02_sp.png) repeat-x center/contain;
  }
}

@media screen and (max-width: 767px) {
  .check__heading {
    font-size: 1.625rem;
  }
}

.check__content {
  margin-top: 195px;
  margin-top: 12.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .check__content {
    margin-top: 2.5rem;
  }
}

.check__img {
  width: 780px;
  width: 48.75rem;
  max-width: 100%;
  margin: 0 auto;
}

.check__item {
  position: absolute;
  padding: 25px 15px 20px 30px;
  padding: 1.5625rem 0.9375rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .check__item {
    position: static;
    border: 0.1875rem solid #0E78BA;
    border-radius: 1.25rem;
    padding: 1.5625rem 1.25rem;
    margin-top: 1.5625rem;
  }
}
.check__item:nth-child(2) {
  left: 0;
  top: -150px;
  top: -9.375rem;
  width: 390px;
  width: 24.375rem;
  height: 265px;
  height: 16.5625rem;
  background: url(../img/about/check-bg02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .check__item:nth-child(2) {
    width: 100%;
    height: auto;
    background: #fff;
  }
}
.check__item:nth-child(3) {
  right: 20px;
  right: 1.25rem;
  top: -85px;
  top: -5.3125rem;
  width: 410px;
  width: 25.625rem;
  height: 295px;
  height: 18.4375rem;
  background: url(../img/about/check-bg03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .check__item:nth-child(3) {
    width: 100%;
    height: auto;
    background: #fff;
  }
}
.check__item:nth-child(4) {
  padding-top: 80px;
  padding-top: 5rem;
  left: 0;
  bottom: -160px;
  bottom: -10rem;
  width: 516px;
  width: 32.25rem;
  height: 258px;
  height: 16.125rem;
  background: url(../img/about/check-bg04.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .check__item:nth-child(4) {
    padding-top: 1.875rem;
    width: 100%;
    height: auto;
    background: #fff;
  }
}
.check__item:nth-child(5) {
  text-align: center;
  right: 20px;
  right: 1.25rem;
  bottom: -160px;
  bottom: -10rem;
  width: 296px;
  width: 18.5rem;
  background: #fff;
  border: 3px solid #0E78BA;
  border: 0.1875rem solid #0E78BA;
  border-radius: 1.25rem;
  padding: 20px 10px 20px;
  padding: 1.25rem 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .check__item:nth-child(5) {
    width: 100%;
  }
}

.check__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0E78BA;
}
@media screen and (max-width: 767px) {
  .check__item-title {
    font-size: 1.25rem;
  }
}

.check__item-text {
  font-weight: 600;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

/* features */
.features {
  background: url(../img/common/bg_pc.png) no-repeat center top/cover;
  padding: 90px 0 110px;
  padding: 5.625rem 0 6.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .features {
    background: url(../img/common/bg_sp.png) repeat-y center top/contain;
    padding: 3.75rem 0;
  }
}
.features::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  height: 0.875rem;
  background: url(../img/common/border02_pc.png) repeat-x center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .features::after {
    background: url(../img/common/border02_sp.png) repeat-x center/contain;
  }
}

.features__heading {
  color: #E54A3B;
}

.features__items {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .features__items {
    margin-top: 3.75rem;
  }
}

.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 1.25rem;
  border: 3px solid #FFE37B;
  border: 0.1875rem solid #FFE37B;
  padding: 40px 30px 27px 40px;
  padding: 2.5rem 1.875rem 1.6875rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .features__item {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}
.features__item + .features__item {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .features__item + .features__item {
    margin-top: 2.5rem;
  }
}

.features__item-number {
  text-align: center;
  position: absolute;
  left: 26px;
  left: 1.625rem;
  top: -25px;
  top: -1.5625rem;
  width: 110px;
  width: 6.875rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: url(../img/about/features-bg.png) no-repeat center/contain;
  padding: 5px 9px;
  padding: 0.3125rem 0.5625rem;
}
@media screen and (max-width: 767px) {
  .features__item-number {
    width: 6.25rem;
    font-size: 1.125rem;
    left: 0.9375rem;
  }
}

.features__item-img {
  width: 220px;
  width: 13.75rem;
  min-width: 220px;
  min-width: 13.75rem;
}
@media screen and (max-width: 767px) {
  .features__item-img {
    width: 11.25rem;
    min-width: 11.25rem;
    margin: 0 auto;
  }
}

.features__item-body {
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .features__item-body {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.features__item-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  color: #E54A3B;
}
@media screen and (max-width: 767px) {
  .features__item-title {
    text-align: center;
    font-size: 1.25rem;
  }
}

.features__item-text {
  font-weight: 600;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .features__item-text {
    margin-top: 0.9375rem;
  }
}

/* flow */
.flow {
  background: #FFE37B;
  padding: 70px 0 90px;
  padding: 4.375rem 0 5.625rem;
  position: relative;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 3.75rem 0;
  }
}
.flow::before, .flow::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
}
.flow::before {
  top: -20px;
  top: -1.25rem;
  background: url(../img/about/flow-bg_pc.png) repeat-x center top/contain;
}
@media screen and (max-width: 767px) {
  .flow::before {
    background: url(../img/about/flow-bg_sp.png) repeat-x center top/contain;
  }
}
.flow::after {
  bottom: -20px;
  bottom: -1.25rem;
  background: url(../img/about/flow-bg_pc.png) repeat-x center bottom/contain;
}
@media screen and (max-width: 767px) {
  .flow::after {
    background: url(../img/about/flow-bg_sp.png) repeat-x center bottom/contain;
  }
}

.flow__heading {
  color: #E54A3B;
}

.flow__items {
  margin-top: 70px;
  margin-top: 4.375rem;
  padding-left: 50px;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .flow__items {
    margin-top: 2.5rem;
    padding-left: 0;
  }
}

.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 138px;
  min-height: 8.625rem;
  background: #fff;
  border-radius: 1.25rem;
  padding: 15px 40px 15px 80px;
  padding: 0.9375rem 2.5rem 0.9375rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__item {
    display: block;
    min-height: unset;
    padding: 1.875rem 1.25rem;
  }
}
.flow__item + .flow__item {
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
}
.flow__item + .flow__item::before {
  position: absolute;
  content: "";
  width: 41px;
  width: 2.5625rem;
  height: 16px;
  height: 1rem;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -40px;
  top: -2.5rem;
  background: url(../img/about/flow-arrow.png) no-repeat center/contain;
}

.flow__item-number {
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -50px;
  left: -3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #fff;
  background: #383838;
  border-radius: 50%;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow__item-number {
    position: static;
    -webkit-transform: unset;
            transform: unset;
    width: 5rem;
    height: 5rem;
    font-size: 1.125rem;
    margin: 0 auto;
  }
}
.flow__item-number span {
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .flow__item-number span {
    font-size: 1.875rem;
  }
}

.flow__item-icon {
  width: 100px;
  width: 6.25rem;
  min-width: 100px;
  min-width: 6.25rem;
}
@media screen and (max-width: 767px) {
  .flow__item-icon {
    margin: 0 auto;
  }
}

.flow__item-title {
  width: 226px;
  width: 14.125rem;
  min-width: 226px;
  min-width: 14.125rem;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #E54A3B;
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    text-align: center;
    width: 100%;
    min-width: unset;
    font-size: 1.5rem;
    margin-left: 0;
  }
}

.flow__item-text {
  font-weight: 600;
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__item-text {
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.flow__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .flow__btns {
    display: block;
    margin-top: 2.5rem;
  }
}

.flow__btn:first-child a {
  background: url(../img/common/btn-bg03.png) no-repeat center/contain;
}
.flow__btn:first-child a::before {
  width: 65px;
  width: 4.0625rem;
  height: 48px;
  height: 3rem;
  left: 22px;
  left: 1.375rem;
  background: url(../img/common/pc-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .flow__btn:first-child a::before {
    background: url(../img/common/phone-icon.png) no-repeat center/contain;
  }
}
.flow__btn:first-child a:hover {
  color: #E54A3B;
  background: url(../img/common/btn-bg03_hover.png) no-repeat center/contain;
}
.flow__btn:first-child a:hover::before {
  background: url(../img/common/pc-icon_hover.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .flow__btn:first-child a:hover::before {
    background: url(../img/common/phone-icon.png) no-repeat center/contain;
  }
}
.flow__btn:nth-child(2) {
  margin-left: 80px;
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .flow__btn:nth-child(2) {
    margin-left: 0;
    margin-top: 1.875rem;
  }
}
.flow__btn:nth-child(2) a {
  background: url(../img/common/btn-bg07.png) no-repeat center/contain;
}
.flow__btn:nth-child(2) a::before {
  width: 74px;
  width: 4.625rem;
  height: 65px;
  height: 4.0625rem;
  left: 24px;
  left: 1.5rem;
  background: url(../img/common/home-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .flow__btn:nth-child(2) a::before {
    width: 3.125rem;
    height: 2.5rem;
  }
}
.flow__btn:nth-child(2) a:hover {
  color: #00A244;
  background: url(../img/common/btn-bg07_hover.png) no-repeat center/contain;
}
.flow__btn:nth-child(2) a:hover::before {
  background: url(../img/common/home-icon_hover.png) no-repeat center/contain;
}
.flow__btn a {
  text-align: center;
  display: block;
  width: 412px;
  width: 25.75rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.33;
  padding: 22px 0 22px 40px;
  padding: 1.375rem 0 1.375rem 2.5rem;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .flow__btn a {
    width: 21.875rem;
    font-size: 1.25rem;
    padding: 1.125rem 0 1.125rem 2.5rem;
    margin: 0 auto;
  }
}
.flow__btn a::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.flow__btn a:hover {
  opacity: 1;
}

/* info */
.info {
  background: url(../img/common/bg_pc.png) no-repeat center top/cover;
  padding: 120px 0 140px;
  padding: 7.5rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .info {
    background: url(../img/common/bg_sp.png) repeat-y center top/contain;
    padding: 3.75rem 0 5rem;
  }
}

.info__content {
  background: #fff;
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  border-radius: 1.25rem;
  padding: 40px 50px 80px;
  padding: 2.5rem 3.125rem 5rem;
}
@media screen and (max-width: 767px) {
  .info__content {
    padding: 2.5rem 1.25rem;
  }
}

.info__title {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  background: url(../img/common/border01_pc.png) no-repeat center bottom/contain;
  padding-bottom: 23px;
  padding-bottom: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .info__title {
    font-size: 1.375rem;
    padding-bottom: 0.9375rem;
  }
}

.info__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .info__text {
    margin-top: 1.25rem;
  }
}
.info__text a {
  color: #1A73E8;
  font-weight: 600;
}

.info__img {
  width: 840px;
  width: 52.5rem;
  max-width: 100%;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .info__img {
    margin-top: 1.875rem;
  }
}

.info__link {
  display: block;
  width: 870px;
  width: 54.375rem;
  max-width: 100%;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .info__link {
    margin-top: 1.875rem;
  }
}

/* introduction */
.introduction {
  background: #fff;
  padding: 90px 0 100px;
  padding: 5.625rem 0 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .introduction {
    padding: 3.75rem 0;
  }
}
.introduction::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  height: 0.875rem;
  background: url(../img/common/border02_pc.png) repeat-x center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .introduction::after {
    background: url(../img/common/border02_sp.png) repeat-x center/contain;
  }
}

.introduction__heading {
  color: #E54A3B;
}
@media screen and (max-width: 767px) {
  .introduction__heading {
    font-size: 1.75rem;
  }
}

.introduction__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: 60px;
  margin-top: 3.75rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .introduction__inner {
    display: block;
    margin-top: 1.875rem;
    padding-right: 0;
  }
}

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

.introduction__img {
  width: 31%;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@media screen and (max-width: 767px) {
  .introduction__img {
    width: 15.625rem;
    max-width: 100%;
    margin: 1.25rem auto 0;
  }
}

@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
  100% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
}

@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
  100% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
}
/* blog-archive */
.blog-archive__header {
  background: url(../img/common/bg_pc.png) no-repeat center top/cover;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .blog-archive__header {
    background: url(../img/common/bg_sp.png) repeat-y center top/contain;
  }
  .blog-archive__header .l-inner {
    padding: 0 1.875rem;
  }
}

.blog-archive__items {
  display: none;
  position: relative;
  z-index: 1;
}
.blog-archive__items.slick-initialized {
  display: block;
}
.blog-archive__items .slide-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 30px;
  width: 1.875rem;
  height: 60px;
  height: 3.75rem;
  z-index: -1;
}
.blog-archive__items .slide-arrow:hover {
  opacity: 1;
}
.blog-archive__items .prev-arrow {
  background: url(../img/common/prev-icon02.png) no-repeat center/contain;
  left: -28px;
  left: -1.75rem;
}
.blog-archive__items .next-arrow {
  background: url(../img/common/next-icon02.png) no-repeat center/contain;
  right: -28px;
  right: -1.75rem;
}

.blog-archive__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 1.25rem;
  border: 3px solid #FFE37B;
  border: 0.1875rem solid #FFE37B;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .blog-archive__item-inner {
    display: block;
    padding: 1.25rem;
  }
}
.blog-archive__item-inner:hover .blog-archive__item-body::after {
  background: url(../img/common/more-icon_hover.png) no-repeat center/contain;
}

.blog-archive__item-img {
  width: 43%;
}
@media screen and (max-width: 767px) {
  .blog-archive__item-img {
    width: 100%;
  }
}
.blog-archive__item-img img {
  border-radius: 0.9375rem;
}

.blog-archive__item-body {
  width: 54%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog-archive__item-body {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.blog-archive__item-body::after {
  position: absolute;
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 20px;
  height: 1.25rem;
  bottom: 0;
  right: 0;
  background: url(../img/common/more-icon.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .blog-archive__item-body::after {
    width: 1.875rem;
    height: 0.9375rem;
    bottom: 0.375rem;
  }
}

.blog-archive__item-header {
  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;
}

.blog-archive__item-category span {
  text-align: center;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  border-radius: 2.5rem;
  background: #00A244;
  padding: 4px 14px;
  padding: 0.25rem 0.875rem;
}

.blog-archive__item-date {
  display: inline-block;
  font-family: "Inter", sans-serif;
  color: #BABABA;
}

.blog-archive__item-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .blog-archive__item-title {
    font-size: 1.5rem;
  }
}

.blog-archive__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .blog-archive__item-text {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.blog-archive__content {
  background: #fff;
  padding: 75px 0 100px;
  padding: 4.6875rem 0 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog-archive__content {
    padding: 3.75rem 0 5rem;
  }
}
.blog-archive__content::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  height: 0.875rem;
  background: url(../img/common/border02_pc.png) repeat-x center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .blog-archive__content::before {
    background: url(../img/common/border02_sp.png) repeat-x center/contain;
  }
}

.blog-archive__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 20px;
  gap: 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .blog-archive__cards {
    display: block;
  }
}

.blog-archive__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.625rem);
          flex: 0 1 calc(50% - 0.625rem);
}
@media screen and (max-width: 767px) {
  .blog-archive__card + .blog-archive__card {
    margin-top: 1.25rem;
  }
  .blog-archive__card .card__category span {
    font-size: 0.875rem;
    padding: 0.1875rem 0.625rem;
  }
  .blog-archive__card .card__date {
    font-size: 0.875rem;
  }
}

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

/* blog-single */
.blog-single {
  background: url(../img/common/bg_pc.png) no-repeat center top/cover;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .blog-single {
    background: url(../img/common/bg_sp.png) repeat-y center top/contain;
    padding-bottom: 6.25rem;
  }
}
.blog-single .post__category span {
  color: #fff;
  background: #00A244;
  font-weight: 600;
}

/* company */
.company {
  background: #fff;
}

/* office */
.office {
  padding-top: 110px;
  padding-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .office {
    padding-top: 3.75rem;
  }
}

.office__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}
.office__item + .office__item {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .office__item + .office__item {
    margin-top: 3.75rem;
  }
}

.office__item-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  color: #E54A3B;
}
@media screen and (max-width: 767px) {
  .office__item-title {
    font-size: 1.25rem;
  }
}

.office__item-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.office__item-map {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
  padding-top: 53.9090909091%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .office__item-map {
    margin-top: 1.25rem;
  }
}
.office__item-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.office__item-box {
  background: #F7F7F7;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 30px 40px;
  padding: 1.875rem 2.5rem;
  margin-top: -10px;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .office__item-box {
    padding: 1.875rem 1.25rem;
  }
}

.office__item-box-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .office__item-box-title {
    font-size: 1.25rem;
  }
}

.office__item-box-text {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

/* profile */
.profile {
  background: url(../img/common/border01_pc.png) repeat-x center bottom/contain;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 767px) {
  .profile {
    padding-bottom: 3.75rem;
    background: url(../img/common/border01_sp.png) repeat-x center bottom/contain;
  }
}

.profile__list {
  border: 1px solid #ddd;
  border: 0.0625rem solid #ddd;
  border-radius: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .profile__list {
    margin-top: 1.875rem;
  }
}

.profile__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .profile__list-item {
    display: block;
  }
}
.profile__list-item:nth-child(even) .profile__list-title {
  background: #F7F7F7;
}
.profile__list-item:nth-child(even) .profile__list-text {
  background: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .profile__list-item:nth-child(even) .profile__list-text {
    background: none;
  }
}
.profile__list-item:first-child .profile__list-title {
  border-radius: 1.25rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .profile__list-item:first-child .profile__list-title {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
.profile__list-item:first-child .profile__list-text {
  border-radius: 0 1.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .profile__list-item:first-child .profile__list-text {
    border-radius: 0;
  }
}
.profile__list-item:last-child .profile__list-title {
  border-radius: 0 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .profile__list-item:last-child .profile__list-title {
    border-radius: 0;
  }
}
.profile__list-item:last-child .profile__list-text {
  border-radius: 0 0 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .profile__list-item:last-child .profile__list-text {
    border-radius: 0 0 1.25rem 1.25rem;
  }
}

.profile__list-title, .profile__list-text {
  padding: 17px 20px 17px 40px;
  padding: 1.0625rem 1.25rem 1.0625rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .profile__list-title, .profile__list-text {
    border-top: 0.0625rem solid #ddd;
    padding: 0.9375rem 1.25rem;
  }
}

.profile__list-title {
  width: 22.5%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .profile__list-title {
    width: 100%;
    background: #F7F7F7;
  }
}

.profile__list-text {
  width: 77.5%;
  border-left: 1px solid #ddd;
  border-left: 0.0625rem solid #ddd;
}
@media screen and (max-width: 767px) {
  .profile__list-text {
    width: 100%;
    border-left: none;
  }
}

/* construct */
.construct {
  background: #fff;
}

.construct__group + .construct__group {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.construct__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .construct__text {
    margin-top: 1.25rem;
  }
}
.construct__text span {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.construct__table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #ddd;
  border: 0.0625rem solid #ddd;
  border-radius: 1.25rem;
  width: 100%;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .construct__table {
    margin-top: 1.875rem;
  }
}
.construct__table tr:first-child th {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background: #E54A3B;
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .construct__table tr:first-child th {
    font-size: 1.125rem;
  }
}
.construct__table tr:nth-child(3) {
  background: #F7F7F7;
}
.construct__table tr:nth-child(3) th {
  border-radius: 0 0 0 1.25rem;
}
.construct__table tr:nth-child(3) td {
  border-radius: 0 0 1.25rem 0;
}
.construct__table th, .construct__table td {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  padding: 15px 40px;
  padding: 0.9375rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .construct__table th, .construct__table td {
    font-size: 1rem;
    line-height: 1.75;
    padding: 0.9375rem 0.9375rem;
  }
}
.construct__table th {
  text-align: left;
  width: 247px;
  width: 15.4375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #E54A3B;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .construct__table th {
    font-size: 1rem;
    width: 7.5rem;
  }
}
.construct__table td {
  border-left: 1px solid #ddd;
  border-left: 0.0625rem solid #ddd;
}
@media screen and (max-width: 767px) {
  .construct__table td {
    font-size: 0.9375rem;
  }
}

.construct__units {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .construct__units {
    margin-top: 3.75rem;
  }
}

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

.construct__unit-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  color: #D9B838;
}
@media screen and (max-width: 767px) {
  .construct__unit-title {
    font-size: 1.25rem;
  }
}

.construct__unit-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.construct__box {
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  border-radius: 1.25rem;
  margin-top: 70px;
  margin-top: 4.375rem;
  padding: 45px 40px 40px 45px;
  padding: 2.8125rem 2.5rem 2.5rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .construct__box {
    margin-top: 2.5rem;
    padding: 1.875rem 1.25rem;
  }
}

.construct__box-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .construct__box-title {
    font-size: 1.25rem;
  }
}

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

.construct__box-list-item {
  padding-left: 1em;
  text-indent: -1em;
}
.construct__box-list-item + .construct__box-list-item {
  margin-top: 12px;
  margin-top: 0.75rem;
}

@media screen and (max-width: 767px) {
  .construct__list-wrapper {
    overflow: auto;
  }
}

.construct__list {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #ddd;
  border: 0.0625rem solid #ddd;
  border-radius: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .construct__list {
    width: 62.5rem;
    margin-top: 1.5625rem;
  }
}
.construct__list tr:first-child th {
  text-align: center;
  color: #E54A3B;
  vertical-align: middle;
}
.construct__list tr:nth-child(even) {
  background: #F7F7F7;
}
.construct__list tr > :not(:first-child) {
  border-left: 1px solid #ddd;
  border-left: 0.0625rem solid #ddd;
}
.construct__list th, .construct__list td {
  vertical-align: top;
  padding: 17px 35px;
  padding: 1.0625rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .construct__list th, .construct__list td {
    padding: 0.9375rem 0.9375rem;
  }
}
.construct__list th {
  text-align: left;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.56;
}
@media screen and (max-width: 767px) {
  .construct__list th {
    font-size: 1rem;
  }
}
.construct__list th:first-child {
  width: 212px;
  width: 13.25rem;
}
@media screen and (max-width: 767px) {
  .construct__list th:first-child {
    width: 9.375rem;
  }
}
.construct__list th:nth-child(3) {
  width: 270px;
  width: 16.875rem;
}
@media screen and (max-width: 767px) {
  .construct__list th:nth-child(3) {
    width: 12.5rem;
  }
}
.construct__list td {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .construct__list td {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}
.construct__list td span {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}
.construct__list td a {
  color: #E54A3B;
  text-decoration: underline;
}
.construct__list td:nth-child(3) {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .construct__list td:nth-child(3) {
    font-size: 0.875rem;
  }
}

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

/* contact */
.contact {
  background: #fff;
  padding: 100px 0 180px;
  padding: 6.25rem 0 11.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 5rem 0;
  }
}
.contact::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 14px;
  height: 0.875rem;
  background: url(../img/common/border02_pc.png) repeat-x center/contain;
}
@media screen and (max-width: 767px) {
  .contact::after {
    background: url(../img/common/border02_sp.png) repeat-x center/contain;
  }
}

.contact__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__text {
    text-align: left;
  }
}

.contact__boxes {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.contact__box {
  background: #fff;
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  border-radius: 1.25rem;
}
.contact__box + .contact__box {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .contact__box + .contact__box {
    margin-top: 2.5rem;
  }
}
.contact__box:first-child {
  padding: 70px 50px 80px;
  padding: 4.375rem 3.125rem 5rem;
}
@media screen and (max-width: 767px) {
  .contact__box:first-child {
    padding: 2.5rem 1.25rem;
  }
}
.contact__box:nth-child(2) {
  padding: 40px 50px;
  padding: 2.5rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .contact__box:nth-child(2) {
    padding: 2.5rem 1.25rem;
  }
}

.contact__box-title {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  background: url(../img/common/border01_pc.png) repeat-x center bottom/contain;
}
@media screen and (max-width: 767px) {
  .contact__box-title {
    font-size: 1.5rem;
    background: url(../img/common/border01_sp.png) repeat-x center bottom/contain;
    padding-bottom: 1.25rem;
  }
}

.contact__box-subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact__box-subtitle {
    font-size: 1.25rem;
  }
}

.contact__box-text {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .contact__box-text {
    margin-top: 1.25rem;
  }
}

.contact__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 20px;
  gap: 1.5625rem 1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact__tab {
    gap: 0.625rem 0.625rem;
    margin-top: 2.5rem;
  }
}

.contact__tab-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.83333rem);
          flex: 0 1 calc(33.333% - 0.83333rem);
}
@media screen and (max-width: 767px) {
  .contact__tab-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.3125rem);
            flex: 0 1 calc(50% - 0.3125rem);
  }
}
.contact__tab-item.current button {
  color: #fff;
  background: #D9B838;
}
.contact__tab-item button {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #D9B838;
  border-radius: 0.6875rem;
  border: 2px solid #D9B838;
  border: 0.125rem solid #D9B838;
  height: 100%;
  padding: 11px 5px;
  padding: 0.6875rem 0.3125rem;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__tab-item button {
    font-size: 0.9375rem;
  }
}
.contact__tab-item button:hover {
  opacity: 1;
  color: #fff;
  background: #D9B838;
}

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

.contact__form {
  display: none;
}
.contact__form.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;
}
.contact__form iframe {
  width: 100%;
}

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

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* thanks */
.thanks {
  background: #fff;
}
.thanks .l-page {
  padding-bottom: 160px;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .thanks .l-page {
    padding-bottom: 6.25rem;
  }
}

.thanks__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    text-align: left;
  }
}

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

/* ebidenkun-archive */
.ebidenkun-archive__mv {
  background: url(../img/ebidenkun/ebidenkun-bg04.png) no-repeat center bottom/cover;
  padding: 120px 0 30px;
  padding: 7.5rem 0 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv {
    background-position: center top;
    padding: 5rem 0 2.5rem;
  }
}
.ebidenkun-archive__mv::after {
  position: absolute;
  content: "";
  bottom: -60px;
  bottom: -3.75rem;
  left: 0;
  width: 100%;
  height: 75px;
  height: 4.6875rem;
  background: url(../img/ebidenkun/ebidenkun-bg06_pc.png) repeat-x center top/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv::after {
    background: url(../img/ebidenkun/ebidenkun-bg06_sp.png) repeat-x center top/contain;
  }
}

.ebidenkun-archive__mv-content {
  background: #6D3C17;
  padding: 20px;
  padding: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-content {
    padding: 0.9375rem;
  }
}

.ebidenkun-archive__mv-body {
  background: #005726;
  padding: 30px 20px 40px;
  padding: 1.875rem 1.25rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-body {
    padding: 1.875rem 0.9375rem 2.5rem;
  }
}
.ebidenkun-archive__mv-body::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 20px;
  left: 1.25rem;
  width: 648px;
  width: 40.5rem;
  max-width: 100%;
  height: 47px;
  height: 2.9375rem;
  background: url(../img/ebidenkun/ebidenkun-bg05.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-body::before {
    width: 12.5rem;
    height: 1.25rem;
  }
}

.ebidenkun-archive__mv-title {
  text-align: center;
  font-family: corporate-logo-ver2, sans-serif;
  font-weight: 700;
  font-size: 46px;
  font-size: 2.875rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-title {
    font-size: 1.5rem;
  }
}
.ebidenkun-archive__mv-title span {
  display: inline-block;
  width: 520px;
  width: 32.5rem;
  max-width: 100%;
  margin: 0 auto -20px;
  margin: 0 auto -1.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-title span {
    margin-bottom: -0.625rem;
  }
}

.ebidenkun-archive__mv-text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-text {
    font-size: 1.125rem;
  }
}

.ebidenkun-archive__mv-box {
  text-align: center;
  font-family: corporate-logo-ver2, sans-serif;
  font-weight: 700;
  width: 560px;
  width: 35rem;
  max-width: 100%;
  border-radius: 0.625rem;
  margin: 25px auto 0;
  margin: 1.5625rem auto 0;
}

.ebidenkun-archive__mv-box-title {
  font-size: 36px;
  font-size: 2.25rem;
  background: #00A244;
  color: #fff;
  border-radius: 0.625rem 0.625rem 0 0;
  padding: 3px;
  padding: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-box-title {
    font-size: 1.5rem;
  }
}

.ebidenkun-archive__mv-box-text {
  font-size: 73px;
  font-size: 4.5625rem;
  background: #fff;
  color: #00A244;
  border-radius: 0 0 0.625rem 0.625rem;
  padding: 15px;
  padding: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-box-text {
    font-size: 2rem;
  }
}

.ebidenkun-archive__mv-img01, .ebidenkun-archive__mv-img02 {
  position: absolute;
  bottom: -120px;
  bottom: -7.5rem;
  max-width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-img01, .ebidenkun-archive__mv-img02 {
    bottom: -2.5rem;
  }
}

.ebidenkun-archive__mv-img01 {
  width: 381px;
  width: 23.8125rem;
  left: -60px;
  left: -3.75rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-img01 {
    width: 8.125rem;
    left: -2.1875rem;
  }
}

.ebidenkun-archive__mv-img02 {
  width: 396px;
  width: 24.75rem;
  right: -75px;
  right: -4.6875rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-img02 {
    width: 8.75rem;
    right: -2.5rem;
  }
}

.ebidenkun-archive__mv-links {
  text-align: center;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-links {
    margin-top: 2.5rem;
  }
}

.ebidenkun-archive__mv-link {
  display: inline;
}
.ebidenkun-archive__mv-link + .ebidenkun-archive__mv-link {
  margin-left: 35px;
  margin-left: 2.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-link + .ebidenkun-archive__mv-link {
    margin-left: 1.5625rem;
  }
}
.ebidenkun-archive__mv-link + .ebidenkun-archive__mv-link::before {
  position: absolute;
  content: "";
  width: 5px;
  width: 0.3125rem;
  height: 10px;
  height: 0.625rem;
  top: 2px;
  top: 0.125rem;
  left: -22px;
  left: -1.375rem;
  background: url(../img/common/mv-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-link + .ebidenkun-archive__mv-link::before {
    left: -0.9375rem;
  }
}
.ebidenkun-archive__mv-link a, .ebidenkun-archive__mv-link span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__mv-link a, .ebidenkun-archive__mv-link span {
    font-size: 1rem;
  }
}
.ebidenkun-archive__mv-link span {
  font-weight: 600;
}

.ebidenkun-archive__unit {
  padding: 110px 0 100px;
  padding: 6.875rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit {
    padding: 3.75rem 0;
  }
}
.ebidenkun-archive__unit:nth-child(odd) {
  background: #00A244;
  position: relative;
  z-index: 1;
}
.ebidenkun-archive__unit:nth-child(odd)::before, .ebidenkun-archive__unit:nth-child(odd)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
}
.ebidenkun-archive__unit:nth-child(odd)::before {
  background: url(../img/ebidenkun/ebidenkun-bg01_pc.png) repeat-x center top/contain;
  top: -20px;
  top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit:nth-child(odd)::before {
    background: url(../img/ebidenkun/ebidenkun-bg01_sp.png) repeat-x center top/contain;
  }
}
.ebidenkun-archive__unit:nth-child(odd)::after {
  background: url(../img/ebidenkun/ebidenkun-bg01_pc.png) repeat-x center bottom/contain;
  bottom: -20px;
  bottom: -1.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit:nth-child(odd)::after {
    background: url(../img/ebidenkun/ebidenkun-bg01_sp.png) repeat-x center bottom/contain;
  }
}
.ebidenkun-archive__unit:nth-child(odd) .ebidenkun-archive__unit-body {
  background: #fff;
}
.ebidenkun-archive__unit:nth-child(odd) .ebidenkun-archive__unit-body::before {
  background: url(../img/ebidenkun/ebidenkun-bg03.png) no-repeat center/contain;
}
.ebidenkun-archive__unit:nth-child(odd) .ebidenkun-archive__unit-title {
  color: #00A244;
}
.ebidenkun-archive__unit:nth-child(odd) .ebidenkun-archive__card-inner {
  background: #F7F7F7;
}
.ebidenkun-archive__unit:nth-child(even) {
  background: url(../img/common/bg_pc.png) no-repeat center top/cover;
  padding: 150px 0;
  padding: 9.375rem 0;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit:nth-child(even) {
    background: url(../img/common/bg_sp.png) repeat-y center top/contain;
    padding: 5rem 0;
  }
}
.ebidenkun-archive__unit:nth-child(even) .ebidenkun-archive__unit-body {
  background: #00A244;
}
.ebidenkun-archive__unit:nth-child(even) .ebidenkun-archive__unit-body::before {
  background: url(../img/ebidenkun/ebidenkun-bg02.png) no-repeat center/contain;
}
.ebidenkun-archive__unit:nth-child(even) .ebidenkun-archive__unit-title {
  color: #fff;
}
.ebidenkun-archive__unit:nth-child(even) .ebidenkun-archive__card-inner {
  background: #fff;
}
.ebidenkun-archive__unit:first-child .ebidenkun-archive__unit-icon {
  width: 78px;
  width: 4.875rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit:first-child .ebidenkun-archive__unit-icon {
    width: 2.8125rem;
  }
}
.ebidenkun-archive__unit:nth-child(2) .ebidenkun-archive__unit-icon {
  width: 116px;
  width: 7.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit:nth-child(2) .ebidenkun-archive__unit-icon {
    width: 5.625rem;
  }
}
.ebidenkun-archive__unit:nth-child(3) .ebidenkun-archive__unit-icon {
  width: 112px;
  width: 7rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit:nth-child(3) .ebidenkun-archive__unit-icon {
    width: 5.625rem;
  }
}

.ebidenkun-archive__unit-inner {
  position: relative;
}

.ebidenkun-archive__unit-icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -55px;
  top: -3.4375rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit-icon {
    top: -1.875rem;
  }
}

.ebidenkun-archive__unit-body {
  min-height: 750px;
  min-height: 46.875rem;
  border-radius: 1.25rem;
  padding: 80px 30px 30px;
  padding: 5rem 1.875rem 1.875rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit-body {
    min-height: 31.25rem;
    padding: 3.75rem 1.25rem 2.5rem;
  }
}
.ebidenkun-archive__unit-body::before {
  position: absolute;
  content: "";
  width: 1100px;
  width: 68.75rem;
  height: 750px;
  height: 46.875rem;
  right: 0;
  bottom: -10px;
  bottom: -0.625rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit-body::before {
    width: 18.75rem;
    height: 12.5rem;
  }
}

.ebidenkun-archive__unit-title {
  text-align: center;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit-title {
    font-size: 2rem;
  }
}

.ebidenkun-archive__unit-text {
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.ebidenkun-archive__unit-text span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  background: #fff;
  border: 3px solid #000;
  border: 0.1875rem solid #000;
  border-radius: 3.125rem;
  padding: 7px 26px 8px;
  padding: 0.4375rem 1.625rem 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit-text span {
    font-size: 1rem;
    padding: 0.3125rem 1.25rem 0.375rem;
  }
}
.ebidenkun-archive__unit-text span::before, .ebidenkun-archive__unit-text span::after {
  position: absolute;
  content: "";
}
.ebidenkun-archive__unit-text span::before {
  width: 18px;
  width: 1.125rem;
  height: 20px;
  height: 1.25rem;
  right: 40px;
  right: 2.5rem;
  top: -17px;
  top: -1.0625rem;
  background: url(../img/ebidenkun/hukidashi-bg.png) no-repeat center/contain;
}
.ebidenkun-archive__unit-text span::after {
  width: 150px;
  width: 9.375rem;
  height: 160px;
  height: 10rem;
  top: -95px;
  top: -5.9375rem;
  right: -120px;
  right: -7.5rem;
  background: url(../img/ebidenkun/ebidenkun-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__unit-text span::after {
    width: 5rem;
    height: 5.625rem;
    top: unset;
    bottom: -3.125rem;
    right: -1.5625rem;
  }
}

.ebidenkun-archive__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 25px;
  gap: 1.5625rem 1.5625rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__cards {
    display: block;
    margin-top: 3.75rem;
  }
}

.ebidenkun-archive__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.04167rem);
          flex: 0 1 calc(33.333% - 1.04167rem);
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__card + .ebidenkun-archive__card {
    margin-top: 1.25rem;
  }
}

.ebidenkun-archive__card-inner {
  display: block;
  min-height: 488px;
  min-height: 30.5rem;
  border-radius: 1.25rem;
  padding: 20px 20px 40px;
  padding: 1.25rem 1.25rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__card-inner {
    min-height: 25rem;
  }
}
.ebidenkun-archive__card-inner::after {
  position: absolute;
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 20px;
  height: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/more-icon.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__card-inner::after {
    width: 1.875rem;
  }
}
.ebidenkun-archive__card-inner:hover {
  opacity: 1;
}
.ebidenkun-archive__card-inner:hover::after {
  background: url(../img/common/more-icon_hover.png) no-repeat center/contain;
}
.ebidenkun-archive__card-inner:hover .ebidenkun-archive__card-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.ebidenkun-archive__card-img {
  overflow: hidden;
  border-radius: 0.625rem;
}
.ebidenkun-archive__card-img img {
  border-radius: 0.625rem;
  height: 205px;
  height: 12.8125rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__card-img img {
    height: auto;
    border-radius: 0.625rem;
  }
}

.ebidenkun-archive__card-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 10px;
  margin-top: 0.625rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__card-title {
    font-size: 1.25rem;
  }
}

.ebidenkun-archive__card-text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.ebidenkun-archive__footer {
  background: url(../img/common/bg_pc.png) no-repeat center top/cover;
  padding: 120px 0 200px;
  padding: 7.5rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__footer {
    background: url(../img/common/bg_sp.png) repeat-y center top/contain;
    padding: 5rem 0 6.25rem;
  }
}

.ebidenkun-archive__heading-wrapper {
  text-align: center;
}

.ebidenkun-archive__heading {
  display: inline-block;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__heading {
    font-size: 1.75rem;
  }
}
.ebidenkun-archive__heading::before, .ebidenkun-archive__heading::after {
  position: absolute;
  content: "";
}
.ebidenkun-archive__heading::before {
  width: 230px;
  width: 14.375rem;
  height: 190px;
  height: 11.875rem;
  background: url(../img/ebidenkun/ebidenkun-icon05.png) no-repeat center/contain;
  top: -15px;
  top: -0.9375rem;
  left: -250px;
  left: -15.625rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__heading::before {
    width: 6.25rem;
    height: 5rem;
    left: -5rem;
  }
}
.ebidenkun-archive__heading::after {
  width: 60px;
  width: 3.75rem;
  height: 120px;
  height: 7.5rem;
  background: url(../img/ebidenkun/ebidenkun-icon06.png) no-repeat center/contain;
  right: -75px;
  right: -4.6875rem;
  top: 20px;
  top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__heading::after {
    width: 2.5rem;
    height: 5rem;
    right: -2.5rem;
    top: 0;
  }
}
.ebidenkun-archive__heading span {
  display: inline-block;
  position: relative;
}
.ebidenkun-archive__heading span::before, .ebidenkun-archive__heading span::after {
  position: absolute;
  content: "";
  width: 4px;
  width: 0.25rem;
  height: 65px;
  height: 4.0625rem;
  top: 3px;
  top: 0.1875rem;
  background: #000;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__heading span::before, .ebidenkun-archive__heading span::after {
    width: 0.1875rem;
    height: 2.1875rem;
  }
}
.ebidenkun-archive__heading span::before {
  left: -30px;
  left: -1.875rem;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__heading span::before {
    left: -1.25rem;
  }
}
.ebidenkun-archive__heading span::after {
  right: -30px;
  right: -1.875rem;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__heading span::after {
    right: -1.25rem;
  }
}

.ebidenkun-archive__text {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__text {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.ebidenkun-archive__content {
  margin-top: 90px;
  margin-top: 5.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__content {
    margin-top: 2.5rem;
  }
}
.ebidenkun-archive__content::before, .ebidenkun-archive__content::after {
  position: absolute;
  content: "";
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  top: -3px;
  top: -0.1875rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__content::before, .ebidenkun-archive__content::after {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.ebidenkun-archive__content::before {
  left: -3px;
  left: -0.1875rem;
  background: url(../img/ebidenkun/ebidenkun-border01.png) no-repeat center/contain;
}
.ebidenkun-archive__content::after {
  right: -3px;
  right: -0.1875rem;
  background: url(../img/ebidenkun/ebidenkun-border02.png) no-repeat center/contain;
}

.ebidenkun-archive__inner {
  background: #D9C2AA;
  border-radius: 0.9375rem;
  padding: 60px;
  padding: 3.75rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__inner {
    padding: 0.9375rem;
  }
}
.ebidenkun-archive__inner::before, .ebidenkun-archive__inner::after {
  position: absolute;
  content: "";
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  bottom: -3px;
  bottom: -0.1875rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__inner::before, .ebidenkun-archive__inner::after {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.ebidenkun-archive__inner::before {
  left: -3px;
  left: -0.1875rem;
  background: url(../img/ebidenkun/ebidenkun-border03.png) no-repeat center/contain;
}
.ebidenkun-archive__inner::after {
  right: -3px;
  right: -0.1875rem;
  background: url(../img/ebidenkun/ebidenkun-border04.png) no-repeat center/contain;
}

.ebidenkun-archive__body {
  border-radius: 0.9375rem;
  background: #fff;
  padding: 105px 60px 80px;
  padding: 6.5625rem 3.75rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__body {
    border-radius: 0.625rem;
    padding: 3.75rem 0.9375rem 2.5rem;
  }
}
.ebidenkun-archive__body::before, .ebidenkun-archive__body::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ebidenkun-archive__body::before {
  width: 48px;
  width: 3rem;
  height: 28px;
  height: 1.75rem;
  top: -85px;
  top: -5.3125rem;
  background: url(../img/ebidenkun/ebidenkun-border05.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__body::before {
    width: 1.625rem;
    height: 1rem;
    top: -1.875rem;
  }
}
.ebidenkun-archive__body::after {
  width: 980px;
  width: 61.25rem;
  max-width: 100%;
  height: 83px;
  height: 5.1875rem;
  top: -25px;
  top: -1.5625rem;
  background: url(../img/ebidenkun/ebidenkun-border06.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__body::after {
    height: 2.5rem;
    top: -0.625rem;
  }
}

.ebidenkun-archive__subtitle {
  text-align: center;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
  color: #00A244;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__subtitle {
    font-size: 1.625rem;
  }
}

.ebidenkun-archive__subtext {
  text-align: center;
  font-weight: 600;
  color: #00A244;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__subtext {
    text-align: left;
  }
}

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

.ebidenkun-archive__box {
  border: 5px solid #00A244;
  border: 0.3125rem solid #00A244;
  border-radius: 1.25rem;
  margin-top: 80px;
  margin-top: 5rem;
  padding: 45px 80px;
  padding: 2.8125rem 5rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__box {
    border: 0.1875rem solid #00A244;
    margin-top: 2.5rem;
    padding: 1.875rem 0.9375rem;
  }
}

.ebidenkun-archive__box-title {
  text-align: center;
}
.ebidenkun-archive__box-title span {
  display: inline-block;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  color: #00A244;
  line-height: 1.6;
  background: url(../img/common/announce-icon.png) no-repeat center left/54px;
  background: url(../img/common/announce-icon.png) no-repeat center left/3.375rem;
  padding-left: 65px;
  padding-left: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__box-title span {
    font-size: 1.25rem;
    line-height: 1.3;
    background: url(../img/common/announce-icon.png) no-repeat center left/2.5rem;
    padding-left: 2.8125rem;
  }
}

.ebidenkun-archive__box-list {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__box-list {
    margin-top: 1.875rem;
  }
}

.ebidenkun-archive__box-list-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  background: url(../img/common/comment-icon.png) no-repeat left top 5px/30px;
  background: url(../img/common/comment-icon.png) no-repeat left top 0.3125rem/1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__box-list-item {
    background: url(../img/common/comment-icon.png) no-repeat left top/1.5625rem;
    font-size: 1rem;
  }
}
.ebidenkun-archive__box-list-item + .ebidenkun-archive__box-list-item {
  border-top: 2px solid #00A244;
  border-top: 0.125rem solid #00A244;
  background: url(../img/common/comment-icon.png) no-repeat left top 35px/30px;
  background: url(../img/common/comment-icon.png) no-repeat left top 2.1875rem/1.875rem;
  padding-top: 35px;
  padding-top: 2.1875rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-archive__box-list-item + .ebidenkun-archive__box-list-item {
    background: url(../img/common/comment-icon.png) no-repeat left top 1.25rem/1.5625rem;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
  }
}

/* ebidenkun-single */
.ebidenkun-single .other {
  padding: 100px 0 200px;
  padding: 6.25rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single .other {
    padding: 3.75rem 0 7.5rem;
  }
}

.ebidenkun-single__content {
  background: #00A244;
  padding: 120px 0;
  padding: 7.5rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__content {
    padding: 3.75rem 0;
  }
}
.ebidenkun-single__content::before, .ebidenkun-single__content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
}
.ebidenkun-single__content::before {
  background: url(../img/ebidenkun/ebidenkun-bg01_pc.png) repeat-x center top/contain;
  top: -20px;
  top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__content::before {
    background: url(../img/ebidenkun/ebidenkun-bg01_sp.png) repeat-x center top/contain;
  }
}
.ebidenkun-single__content::after {
  background: url(../img/ebidenkun/ebidenkun-bg01_pc.png) repeat-x center bottom/contain;
  bottom: -20px;
  bottom: -1.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__content::after {
    background: url(../img/ebidenkun/ebidenkun-bg01_sp.png) repeat-x center bottom/contain;
  }
}

.ebidenkun-single__body {
  background: #fff;
  border-radius: 1.25rem;
  padding: 110px 50px 80px;
  padding: 6.875rem 3.125rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__body {
    padding: 3.75rem 1.25rem 2.5rem;
  }
}

.ebidenkun-single__icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -55px;
  top: -3.4375rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__icon {
    top: -1.875rem;
  }
}

.ebidenkun-single__icon01 {
  width: 78px;
  width: 4.875rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__icon01 {
    width: 2.8125rem;
  }
}

.ebidenkun-single__icon02 {
  width: 116px;
  width: 7.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__icon02 {
    width: 5.625rem;
  }
}

.ebidenkun-single__icon03 {
  width: 112px;
  width: 7rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__icon03 {
    width: 5.625rem;
  }
}

.ebidenkun-single__title {
  text-align: center;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
  color: #00A244;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__title {
    font-size: 1.5rem;
  }
}

.ebidenkun-single__subtitle {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__subtitle {
    font-size: 1.25rem;
  }
}

.ebidenkun-single__img {
  width: 780px;
  width: 48.75rem;
  max-width: 100%;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}
.ebidenkun-single__img img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__img img {
    border-radius: 0.625rem;
  }
}

.ebidenkun-single__lead {
  width: 780px;
  width: 48.75rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2.1;
  background: url(../img/ebidenkun/ebidenkun-border.png) no-repeat center bottom/contain;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__lead {
    font-size: 1rem;
    margin-top: 1.875rem;
    padding-bottom: 1.25rem;
  }
}
.ebidenkun-single__lead span {
  color: #E54A3B;
}

.ebidenkun-single__subicon {
  width: 154px;
  width: 9.625rem;
  max-width: 100%;
  margin: 15px auto 0;
  margin: 0.9375rem auto 0;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__subicon {
    width: 6.25rem;
  }
}

.ebidenkun-single__post {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post {
    margin-top: 2.5rem;
  }
}
.ebidenkun-single__post h2, .ebidenkun-single__post h3, .ebidenkun-single__post h4, .ebidenkun-single__post h5, .ebidenkun-single__post h6 {
  font-weight: 700;
  color: #00A244;
  margin: 0;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post h2, .ebidenkun-single__post h3, .ebidenkun-single__post h4, .ebidenkun-single__post h5, .ebidenkun-single__post h6 {
    margin-top: 3.125rem;
  }
}
.ebidenkun-single__post h2 {
  font-size: 32px;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post h2 {
    font-size: 1.5rem;
  }
}
.ebidenkun-single__post h3 {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post h3 {
    font-size: 1.25rem;
  }
}
.ebidenkun-single__post h4, .ebidenkun-single__post h5, .ebidenkun-single__post h6 {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post h4, .ebidenkun-single__post h5, .ebidenkun-single__post h6 {
    font-size: 1.125rem;
  }
}
.ebidenkun-single__post p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post p {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.ebidenkun-single__post ul li {
  padding-left: 1em;
  position: relative;
}
.ebidenkun-single__post ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.ebidenkun-single__post ol {
  padding-left: 1.5em;
  list-style: unset;
}
.ebidenkun-single__post ol li {
  list-style-type: decimal;
}
.ebidenkun-single__post li {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post li {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.ebidenkun-single__post figcaption {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post figcaption {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.ebidenkun-single__post img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post img {
    border-radius: 0.625rem;
  }
}
.ebidenkun-single__post .wp-block-table .has-fixed-layout {
  table-layout: unset;
}
.ebidenkun-single__post .wp-block-table {
  overflow: auto;
}
.ebidenkun-single__post .content_area table {
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post .content_area table {
    width: auto;
    min-width: unset;
  }
}
.ebidenkun-single__post table {
  font-size: 18px;
  font-size: 1.125rem;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ddd;
  border: 0.0625rem solid #ddd;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post table {
    font-size: 1rem;
    width: 50rem;
    min-width: 50rem;
  }
}
.ebidenkun-single__post table tr:nth-child(even) {
  background: #F7F7F7;
}
.ebidenkun-single__post table tr > :first-child {
  width: 25%;
}
.ebidenkun-single__post table tr > :not(:first-child) {
  border-left: 1px solid #ddd;
  border-left: 0.0625rem solid #ddd;
}
.ebidenkun-single__post table th, .ebidenkun-single__post table td {
  border: none;
  padding: 21px 20px 21px 40px;
  padding: 1.3125rem 1.25rem 1.3125rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__post table th, .ebidenkun-single__post table td {
    padding: 1rem 1.25rem;
  }
}
.ebidenkun-single__post .wp-block-quote {
  font-weight: 700;
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
}
.ebidenkun-single__post .wp-block-quote::before {
  position: absolute;
  content: "";
  width: 4px;
  width: 0.25rem;
  height: 80%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #00A244;
}

.ebidenkun-single__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1.25rem;
  background: #F7F7F7;
  padding: 40px 40px;
  padding: 2.5rem 2.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__box {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

.ebidenkun-single__box-icon {
  min-width: 112px;
  min-width: 7rem;
  width: 112px;
  width: 7rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__box-icon {
    margin: 0 auto;
  }
}

.ebidenkun-single__box-name {
  text-align: center;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.ebidenkun-single__box-body {
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__box-body {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.ebidenkun-single__box-title {
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00A244;
}
@media screen and (max-width: 767px) {
  .ebidenkun-single__box-title {
    font-size: 1.25rem;
  }
}

.ebidenkun-single__box-text {
  font-weight: 700;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

/* faq */
.faq {
  background: #fff;
}

.faq__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .faq__text {
    text-align: left;
  }
}

/* news-archive */
.news-archive {
  background: url(../img/common/bg_pc.png) no-repeat center top/cover;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .news-archive {
    background: url(../img/common/bg_sp.png) repeat-y center top/contain;
    padding-bottom: 6.25rem;
  }
}

.news-archive__content {
  background: #fff;
  border-radius: 1.25rem;
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  padding: 75px 45px 70px;
  padding: 4.6875rem 2.8125rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .news-archive__content {
    padding: 2.5rem 1.25rem;
  }
}

.news-archive__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 10px;
  gap: 0.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-archive__category {
    gap: 0.4375rem 0.4375rem;
  }
}

.news-archive__category-item a {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #00A244;
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 16px 28px;
  padding: 1rem 1.75rem;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 767px) {
  .news-archive__category-item a {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
  }
}
.news-archive__category-item a:hover {
  opacity: 1;
  color: #fff;
  background: #00A244;
}
.news-archive__category-item.current a {
  color: #fff;
  background: #383838;
}
.news-archive__category-item.current a:hover {
  background: #F7F7F7;
  color: #383838;
}

.news-archive__body {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .news-archive__body {
    margin-top: 3.75rem;
  }
}

.news-archive__pagination {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .news-archive__pagination {
    margin-top: 3.75rem;
  }
}

.news-archive__footer {
  margin-top: 70px;
  margin-top: 4.375rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-archive__footer {
    padding: 0;
    margin-top: 3.125rem;
  }
}

.news-archive__subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #D9B838;
}
@media screen and (max-width: 767px) {
  .news-archive__subtitle {
    font-size: 1.5rem;
  }
}

.news-archive__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* news-single */
.news-single {
  background: url(../img/common/bg_pc.png) no-repeat center top/cover;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .news-single {
    background: url(../img/common/bg_sp.png) repeat-y center top/contain;
    padding-bottom: 6.25rem;
  }
}

/* notfound */
.notfound {
  padding: 200px 0;
  padding: 12.5rem 0;
}

/* partner */
.partner {
  margin-bottom: -30px;
  margin-bottom: -1.875rem;
}

.partner__header {
  background: #fff;
  padding: 150px 0 180px;
  padding: 9.375rem 0 11.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .partner__header {
    padding: 3.75rem 0 5rem;
  }
}
.partner__header::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 14px;
  height: 0.875rem;
  background: url(../img/common/border02_pc.png) repeat-x center/contain;
}
@media screen and (max-width: 767px) {
  .partner__header::after {
    background: url(../img/common/border02_sp.png) repeat-x center/contain;
  }
}

.partner__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .partner__text {
    text-align: left;
  }
}

.partner__subtitle {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .partner__subtitle {
    font-size: 1.625rem;
    margin-top: 3.75rem;
  }
}

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

.partner__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
  border: 3px solid #FFE37B;
  border: 0.1875rem solid #FFE37B;
  border-radius: 1.25rem;
  padding: 60px 60px 55px;
  padding: 3.75rem 3.75rem 3.4375rem;
}
@media screen and (max-width: 767px) {
  .partner__item {
    padding: 1.875rem 1.25rem;
  }
  .partner__item + .partner__item {
    margin-top: 1.25rem;
  }
}

.partner__item-icon {
  width: 150px;
  width: 9.375rem;
  max-width: 100%;
  margin: 0 auto;
}

.partner__item-title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .partner__item-title {
    font-size: 1.25rem;
  }
}

.partner__item-text {
  font-weight: 600;
  min-height: 108px;
  min-height: 6.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .partner__item-text {
    min-height: unset;
  }
}

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

.partner__item-list-item {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
  background: url(../img/common/check-icon.png) no-repeat left top 7px/20px;
  background: url(../img/common/check-icon.png) no-repeat left top 0.4375rem/1.25rem;
  padding-left: 28px;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .partner__item-list-item {
    font-size: 1rem;
    background: url(../img/common/check-icon.png) no-repeat left top 0.375rem/0.9375rem;
    padding-left: 1.25rem;
  }
}
.partner__item-list-item + .partner__item-list-item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .partner__item-list-item + .partner__item-list-item {
    margin-top: 0.3125rem;
  }
}

.partner__content {
  background: url(../img/partner/partner-bg01.png) repeat-x center top/contain;
  padding: 135px 0 250px;
  padding: 8.4375rem 0 15.625rem;
}
@media screen and (max-width: 767px) {
  .partner__content {
    background: url(../img/common/bg_sp.png) repeat-y center top/contain;
    padding: 3.75rem 0 5rem;
  }
}

.partner__box {
  background: #fff;
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  border-radius: 1.25rem;
  padding: 70px 45px 80px;
  padding: 4.375rem 2.8125rem 5rem;
}
@media screen and (max-width: 767px) {
  .partner__box {
    padding: 2.5rem 1.25rem;
  }
}
.partner__box + .partner__box {
  margin-top: 135px;
  margin-top: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .partner__box + .partner__box {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .partner__box-title {
    font-size: 1.5rem;
  }
}

.partner__box-text {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .partner__box-text {
    margin-top: 1.25rem;
  }
}

.partner__box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 80px;
  gap: 0 5rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .partner__box-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem 1.25rem;
    margin-top: 1.875rem;
  }
}

.partner__box-item {
  min-width: 140px;
  min-width: 8.75rem;
}
@media screen and (max-width: 767px) {
  .partner__box-item {
    min-width: 7.5rem;
  }
}

.partner__box-item-icon {
  width: 100px;
  width: 6.25rem;
  max-width: 100%;
  margin: 0 auto;
}

.partner__box-item-text {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .partner__box-item-text {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}

.partner__box-units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 32px;
  gap: 2.5rem 2rem;
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .partner__box-units {
    display: block;
    margin-top: 2.5rem;
  }
}

.partner__box-unit {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1rem);
          flex: 0 1 calc(50% - 1rem);
  border-radius: 1.25rem;
  background: #F7F7F7;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .partner__box-unit {
    padding: 1.875rem 1.25rem;
  }
  .partner__box-unit + .partner__box-unit {
    margin-top: 1.25rem;
  }
}

.partner__box-unit-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .partner__box-unit-title {
    font-size: 1.25rem;
  }
}

.partner__box-unit-text {
  margin-top: 12px;
  margin-top: 0.75rem;
}

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

.partner__flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F7F7F7;
  border-radius: 1.25rem;
  padding: 45px 45px;
  padding: 2.8125rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .partner__flow-item {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}
.partner__flow-item + .partner__flow-item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .partner__flow-item + .partner__flow-item {
    margin-top: 1.25rem;
  }
}

.partner__flow-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: 67px;
  width: 4.1875rem;
  min-width: 67px;
  min-width: 4.1875rem;
  height: 67px;
  height: 4.1875rem;
  border-radius: 50%;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 600;
  color: #fff;
  background: #D9B838;
}
@media screen and (max-width: 767px) {
  .partner__flow-item-number {
    width: 3.4375rem;
    min-width: 3.4375rem;
    height: 3.4375rem;
    font-size: 1.75rem;
    margin: 0 auto;
  }
}

.partner__flow-item-body {
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .partner__flow-item-body {
    margin-left: 0;
    margin-top: 0.9375rem;
  }
}

.partner__flow-item-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .partner__flow-item-title {
    text-align: center;
    font-size: 1.25rem;
  }
}

.partner__flow-item-text {
  line-height: 1.56;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.partner__flow-item-text a {
  color: #E54A3B;
  text-decoration: underline;
}

.partner__btn {
  width: 232px;
  width: 14.5rem;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .partner__btn {
    margin-top: 2.5rem;
  }
}

.partner__footer {
  background: url(../img/partner/partner-bg02.png) repeat-x center top/contain;
  padding: 110px 0 170px;
  padding: 6.875rem 0 10.625rem;
}
@media screen and (max-width: 767px) {
  .partner__footer {
    background-size: cover;
    padding: 3.75rem 0 5rem;
  }
}

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

.partner__bottom {
  background: #fff;
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  border-radius: 1.25rem;
  margin-top: 80px;
  margin-top: 5rem;
  padding: 40px 45px;
  padding: 2.5rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .partner__bottom {
    margin-top: 2.5rem;
    padding: 1.875rem 1.25rem;
  }
}

.partner__bottom-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .partner__bottom-title {
    font-size: 1.375rem;
  }
}

.partner__bottom-text {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .partner__bottom-text {
    margin-top: 1.25rem;
  }
}

/* plan */
.plan {
  background: #fff;
}

.plan__contents {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .plan__contents {
    margin-top: 3.75rem;
  }
}

.plan__content {
  display: none;
}
.plan__content.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;
}
.plan__content:first-child .plan__unit:first-child {
  width: 260px;
  width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .plan__content:first-child .plan__unit:first-child {
    width: 100%;
  }
}
.plan__content:first-child .plan__unit:nth-child(2) {
  width: 430px;
  width: 26.875rem;
}
@media screen and (max-width: 767px) {
  .plan__content:first-child .plan__unit:nth-child(2) {
    width: 100%;
  }
}
.plan__content:first-child .plan__unit:nth-child(3) {
  width: 270px;
  width: 16.875rem;
}
.plan__content:first-child .plan__unit:nth-child(3)::before {
  height: 20px;
  height: 1.25rem;
  background: url(../img/common/plus-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .plan__content:first-child .plan__unit:nth-child(3) {
    width: 100%;
  }
}
.plan__content:first-child .plan__card:first-child .plan__card-icon {
  width: 134px;
  width: 8.375rem;
}
.plan__content:first-child .plan__card:nth-child(2) .plan__card-icon {
  width: 140px;
  width: 8.75rem;
}
.plan__content:first-child .plan__card:nth-child(3) .plan__card-icon {
  width: 88px;
  width: 5.5rem;
}
.plan__content:nth-child(2) .plan__cards {
  gap: 66px 40px;
  gap: 4.125rem 2.5rem;
}
.plan__content:nth-child(2) .plan__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 45px 20px 30px 40px;
  padding: 2.8125rem 1.25rem 1.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan__content:nth-child(2) .plan__card {
    display: block;
    padding: 3.125rem 1.25rem 1.5625rem;
  }
}
.plan__content:nth-child(2) .plan__card:first-child {
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .plan__content:nth-child(2) .plan__card:first-child {
    padding-left: 1.25rem;
  }
}
.plan__content:nth-child(2) .plan__card:first-child .plan__card-icon {
  width: 165px;
  width: 10.3125rem;
}
.plan__content:nth-child(2) .plan__card:nth-child(2) .plan__card-icon {
  width: 154px;
  width: 9.625rem;
}
.plan__content:nth-child(2) .plan__card:nth-child(3) {
  padding-left: 50px;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .plan__content:nth-child(2) .plan__card:nth-child(3) {
    padding-left: 1.25rem;
  }
}
.plan__content:nth-child(2) .plan__card:nth-child(3) .plan__card-icon {
  width: 120px;
  width: 7.5rem;
}
.plan__content:nth-child(2) .plan__card:nth-child(4) .plan__card-icon {
  width: 158px;
  width: 9.875rem;
}
.plan__content:nth-child(2) .plan__card-icon {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .plan__content:nth-child(2) .plan__card-icon {
    margin: 0 auto;
  }
}
.plan__content:nth-child(2) .plan__card-text {
  text-align: left;
  width: 60%;
  margin-top: 0;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .plan__content:nth-child(2) .plan__card-text {
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-top: 1.25rem;
  }
}
.plan__content:nth-child(3) .plan__card:first-child .plan__card-title {
  padding: 7px 40px;
  padding: 0.4375rem 2.5rem;
}
.plan__content:nth-child(3) .plan__card:first-child .plan__card-icon {
  width: 165px;
  width: 10.3125rem;
}
.plan__content:nth-child(3) .plan__card:nth-child(2) .plan__card-icon {
  width: 145px;
  width: 9.0625rem;
}
.plan__content:nth-child(3) .plan__card:nth-child(3) .plan__card-icon {
  width: 116px;
  width: 7.25rem;
}
.plan__content:nth-child(4) .plan__card:first-child .plan__card-title {
  padding: 7px 40px;
  padding: 0.4375rem 2.5rem;
}
.plan__content:nth-child(4) .plan__card:first-child .plan__card-icon {
  width: 165px;
  width: 10.3125rem;
}
.plan__content:nth-child(4) .plan__card:nth-child(2) .plan__card-icon {
  width: 140px;
  width: 8.75rem;
}
.plan__content:nth-child(4) .plan__card:nth-child(3) .plan__card-icon {
  width: 158px;
  width: 9.875rem;
}

.plan__group + .plan__group {
  margin-top: 85px;
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .plan__group + .plan__group {
    margin-top: 3.75rem;
  }
}

.plan__subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .plan__subtitle {
    font-size: 1.375rem;
  }
}

.plan__text {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .plan__text {
    margin-top: 1.25rem;
  }
}

.plan__units {
  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: 0 70px;
  gap: 0 4.375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan__units {
    display: block;
    margin-top: 1.5625rem;
  }
}

.plan__unit {
  text-align: center;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  border-radius: 1.25rem;
  background: #F7F7F7;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .plan__unit {
    border-radius: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }
}
.plan__unit + .plan__unit {
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan__unit + .plan__unit {
    margin-top: 2.5rem;
  }
}
.plan__unit + .plan__unit::before {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -47px;
  left: -2.9375rem;
  background: url(../img/common/plus-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .plan__unit + .plan__unit::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -1.875rem;
  }
}
.plan__unit:first-child {
  width: 282px;
  width: 17.625rem;
}
@media screen and (max-width: 767px) {
  .plan__unit:first-child {
    width: 100%;
  }
}
.plan__unit:nth-child(2) {
  width: 282px;
  width: 17.625rem;
}
@media screen and (max-width: 767px) {
  .plan__unit:nth-child(2) {
    width: 100%;
  }
}
.plan__unit:nth-child(3) {
  width: 396px;
  width: 24.75rem;
}
@media screen and (max-width: 767px) {
  .plan__unit:nth-child(3) {
    width: 100%;
    margin-top: 3.125rem;
  }
}
.plan__unit:nth-child(3)::before {
  height: 27px;
  height: 1.6875rem;
  background: url(../img/common/plusminus-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .plan__unit:nth-child(3)::before {
    top: -2.5rem;
  }
}
.plan__unit:nth-child(4) {
  width: 564px;
  width: 35.25rem;
  margin: 80px auto 0;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .plan__unit:nth-child(4) {
    width: 100%;
    margin-top: 2.5rem;
  }
}
.plan__unit:nth-child(4)::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -45px;
  top: -2.8125rem;
}
@media screen and (max-width: 767px) {
  .plan__unit:nth-child(4)::before {
    top: -1.875rem;
  }
}

.plan__unit-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

.plan__unit-text {
  line-height: 1.78;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .plan__unit-text {
    margin-top: 0.3125rem;
  }
}

.plan__unit-subtext {
  width: 100%;
  background: #fff;
  line-height: 1.75;
  border-radius: 1.25rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .plan__unit-subtext {
    padding: 0.625rem 0.625rem;
    margin-top: 0.625rem;
  }
}

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

.plan__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 25px;
  gap: 0 1.5625rem;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .plan__cards {
    display: block;
    margin-top: 3.125rem;
  }
}

.plan__card {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.04167rem);
          flex: 0 1 calc(33.333% - 1.04167rem);
  border-radius: 1.25rem;
  border: 3px solid #00A244;
  border: 0.1875rem solid #00A244;
  padding: 66px 16px 25px;
  padding: 4.125rem 1rem 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan__card {
    padding: 3.125rem 1.25rem 1.5625rem;
  }
  .plan__card + .plan__card {
    margin-top: 2.5rem;
  }
}

.plan__card-title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -30px;
  top: -1.875rem;
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  border-radius: 3.125rem;
  background: #00A244;
  white-space: nowrap;
  padding: 11px 24px;
  padding: 0.6875rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .plan__card-title {
    font-size: 1.25rem;
    top: -1.5625rem;
  }
}

.plan__card-icon {
  max-width: 100%;
  margin: 0 auto;
}

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

.plan__body {
  border-radius: 1.25rem;
  background: #F7F7F7;
  padding: 30px;
  padding: 1.875rem;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .plan__body {
    padding: 0.9375rem;
    margin-top: 3.75rem;
  }
}

.plan__body-inner {
  background: #fff;
  border-radius: 0.625rem;
  padding: 45px 110px 50px;
  padding: 2.8125rem 6.875rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .plan__body-inner {
    overflow: hidden;
    padding: 1.875rem 0.9375rem;
  }
}

.plan__heading {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .plan__heading {
    line-height: 1.8;
    font-size: 1.125rem;
  }
}
.plan__heading span {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .plan__img-wrapper {
    margin-right: calc(50% - 50vw);
    overflow-x: auto;
    padding-left: 0.625rem;
    padding-right: 3.125rem;
    padding-bottom: 1.25rem;
  }
  .plan__img-wrapper::-webkit-scrollbar {
    height: 0.5rem;
    border-radius: 1.25rem;
  }
  .plan__img-wrapper::-webkit-scrollbar-track {
    background: #F7F7F7;
  }
  .plan__img-wrapper::-webkit-scrollbar-thumb {
    background: #FFE37B;
    border-radius: 1.25rem;
  }
}

.scroll-container {
  height: 8px;
  height: 0.5rem;
  border-radius: 1.25rem;
  scrollbar-color: #FFE37B #F7F7F7;
}

.plan__img {
  width: 688px;
  width: 43rem;
  max-width: 100%;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .plan__img {
    min-width: 43rem;
    max-width: unset;
    margin-top: 1.25rem;
  }
}

.plan__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .plan__items {
    display: block;
    margin-top: 1.875rem;
  }
}

.plan__item {
  background: #F7F7F7;
  border-radius: 0.625rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.83333rem);
          flex: 0 1 calc(33.333% - 0.83333rem);
  padding: 25px 20px 15px;
  padding: 1.5625rem 1.25rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .plan__item {
    padding: 0.9375rem 0.9375rem 0.625rem;
  }
  .plan__item + .plan__item {
    margin-top: 1.25rem;
  }
}
.plan__item:first-child .plan__item-icon {
  width: 35px;
  width: 2.1875rem;
}
.plan__item:nth-child(2) .plan__item-icon {
  width: 36px;
  width: 2.25rem;
}
.plan__item:nth-child(3) .plan__item-icon {
  width: 33px;
  width: 2.0625rem;
}

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

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

.plan__item-title {
  text-align: center;
  font-weight: 600;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .plan__item-title {
    margin-top: 0;
    margin-left: 0.625rem;
  }
}

.plan__item-text {
  line-height: 1.78;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .plan__item-text {
    margin-top: 0.375rem;
  }
}

.plan__box {
  border: 1px solid #E54A3B;
  border: 0.0625rem solid #E54A3B;
  border-radius: 1.25rem;
  margin-top: 100px;
  margin-top: 6.25rem;
  padding: 45px 48px 40px;
  padding: 2.8125rem 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan__box {
    margin-top: 3.75rem;
    padding: 1.875rem 1.25rem;
  }
}

.plan__box-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #E54A3B;
}
@media screen and (max-width: 767px) {
  .plan__box-title {
    font-size: 1.125rem;
  }
}

.plan__box-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.plan__box-text + .plan__box-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.plan__price {
  background: #F7F7F7;
  border-radius: 1.25rem;
  padding: 50px 30px 30px;
  padding: 3.125rem 1.875rem 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan__price {
    padding: 1.875rem 1.25rem;
    margin-top: 1.5625rem;
  }
}

.plan__price-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4px;
  gap: 0 0.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan__price-tab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.4375rem 0.4375rem;
  }
}
.plan__price-tab::after {
  position: absolute;
  content: "";
  bottom: -6px;
  bottom: -0.375rem;
  left: 0;
  width: 100%;
  height: 6px;
  height: 0.375rem;
  background: #E54A3B;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .plan__price-tab::after {
    display: none;
  }
}

.plan__price-tab-item {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(11.111% - 0.22222rem);
          flex: 0 1 calc(11.111% - 0.22222rem);
}
@media screen and (max-width: 767px) {
  .plan__price-tab-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.21875rem);
            flex: 0 1 calc(50% - 0.21875rem);
  }
}
.plan__price-tab-item.current button {
  background: #fff;
  color: #E54A3B;
  min-height: 52px;
  min-height: 3.25rem;
  border-bottom: none;
  border-radius: 0.625rem 0.625rem 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan__price-tab-item.current button {
    min-height: 3.5rem;
    border: 0.125rem solid #E54A3B;
    border-radius: 0.625rem;
    padding-bottom: 0;
  }
}
.plan__price-tab-item.current button::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -6px;
  bottom: -0.375rem;
  width: 100%;
  height: 6px;
  height: 0.375rem;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .plan__price-tab-item.current button::after {
    display: none;
  }
}
.plan__price-tab-item button {
  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: 52px;
  min-height: 3.25rem;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  border: 2px solid #E54A3B;
  border: 0.125rem solid #E54A3B;
  border-radius: 0.625rem 0.625rem 0 0;
  background: #E54A3B;
}
@media screen and (max-width: 767px) {
  .plan__price-tab-item button {
    min-height: 3.5rem;
    font-size: 1rem;
    border-radius: 0.625rem;
  }
}
.plan__price-tab-item button:hover {
  opacity: 1;
}

.plan__price-inner {
  background: #fff;
  border-radius: 0 0 0.625rem 0.625rem;
  padding: 40px 20px 10px;
  padding: 2.5rem 1.25rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .plan__price-inner {
    overflow: hidden;
    border-radius: 0.625rem;
    margin-top: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}

.plan__price-menu-item {
  display: none;
}
@media screen and (max-width: 767px) {
  .plan__price-menu-item {
    overflow: auto;
    margin-right: calc(50% - 50vw);
    padding-right: 3.75rem;
  }
}
.plan__price-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;
}

.plan__price-table {
  font-size: 18px;
  font-size: 1.125rem;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ddd;
  border: 0.0625rem solid #ddd;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .plan__price-table {
    font-size: 1rem;
    width: 50rem;
    min-width: 50rem;
  }
}
.plan__price-table tr:nth-child(even) {
  background: #F7F7F7;
}
.plan__price-table tr:nth-child(2) {
  background: #FFF5CE;
}
.plan__price-table tr > :not(:first-child) {
  border-left: 1px solid #ddd;
  border-left: 0.0625rem solid #ddd;
}
.plan__price-table th, .plan__price-table td {
  width: 33.333%;
  border: none;
}
.plan__price-table th {
  padding: 21px 20px 21px 40px;
  padding: 1.3125rem 1.25rem 1.3125rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan__price-table th {
    padding: 1rem 1.25rem;
  }
}
.plan__price-table th span {
  display: inline-block;
  color: #E54A3B;
  position: relative;
}
.plan__price-table th span::after {
  position: absolute;
  content: "";
  width: 70px;
  width: 4.375rem;
  height: 65px;
  height: 4.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -75px;
  right: -4.6875rem;
  background: url(../img/plan/plan-icon.png) no-repeat center/contain;
}
.plan__price-table td {
  padding: 15px 20px 15px 40px;
  padding: 0.9375rem 1.25rem 0.9375rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan__price-table td {
    padding: 1rem 1.25rem;
  }
}
.plan__price-table td > span {
  text-align: center;
  display: inline-block;
  width: 71px;
  width: 4.4375rem;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 700;
  background: url(../img/plan/plan-bg.png) no-repeat center/contain;
  margin-left: 10px;
  margin-left: 0.625rem;
  padding: 5px 0;
  padding: 0.3125rem 0;
}
.plan__price-table td > span span {
  font-size: 20px;
  font-size: 1.25rem;
}

.plan__price-text {
  line-height: 1.75;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .plan__price-text {
    margin-top: 1.25rem;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* privacy */
.privacy {
  background: #fff;
}

.privacy__text {
  text-align: right;
}

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

.privacy__list-item + .privacy__list-item {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.privacy__list-title {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .privacy__list-title {
    font-size: 1.5rem;
  }
}

.privacy__list-body {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .privacy__list-body {
    margin-top: 1.25rem;
  }
}

.privacy__list-text li, .privacy__sublist-text li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.56;
}
.privacy__list-text li:not(:first-child), .privacy__sublist-text li:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.privacy__list-text li span, .privacy__sublist-text li span {
  display: inline-block;
  font-weight: 600;
  color: #D9B838;
  margin-right: 12px;
  margin-right: 0.75rem;
}
.privacy__list-text .bold, .privacy__sublist-text .bold {
  font-weight: 600;
}
.privacy__list-text .tel, .privacy__sublist-text .tel {
  color: #D9B838;
  font-weight: 600;
}
.privacy__list-text .link, .privacy__sublist-text .link {
  color: #E54A3B;
  text-decoration: underline;
}

.privacy__list-text:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.privacy__sublist:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.privacy__sublist-item + .privacy__sublist-item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.privacy__sublist-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  color: #E54A3B;
}
@media screen and (max-width: 767px) {
  .privacy__sublist-title {
    font-size: 1.25rem;
  }
}

.privacy__sublist-body {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .privacy__sublist-body {
    margin-top: 1.25rem;
  }
}

.privacy__sublist-text:not(:first-child) {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.privacy__box {
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  border-radius: 1.25rem;
  margin-top: 70px;
  margin-top: 4.375rem;
  padding: 40px 50px;
  padding: 2.5rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .privacy__box {
    padding: 1.875rem 1.25rem;
    margin-top: 3.125rem;
  }
}

.privacy__box-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .privacy__box-title {
    font-size: 1.25rem;
  }
}

.privacy__box-text {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .privacy__box-text {
    margin-top: 1.25rem;
  }
}
.privacy__box-text a {
  display: inline-block;
  font-weight: 600;
}
.privacy__box-text a.tel {
  color: #E54A3B;
}
.privacy__box-text a.mail {
  color: #D9B838;
}

/* terms */
.terms {
  background: #fff;
}

.terms__date {
  text-align: right;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.terms__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.terms__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 40px;
  gap: 2.5rem 2.5rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .terms__items {
    display: block;
  }
}

.terms__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
  background: #fff;
  border: 3px solid #FFE37B;
  border: 0.1875rem solid #FFE37B;
  border-radius: 1.25rem;
  padding: 50px 60px 60px;
  padding: 3.125rem 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .terms__item {
    padding: 1.875rem 1.25rem;
  }
  .terms__item + .terms__item {
    margin-top: 1.25rem;
  }
}

.terms__item-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.29;
}
@media screen and (max-width: 767px) {
  .terms__item-title {
    font-size: 1.25rem;
  }
}

.terms__item-text {
  font-weight: 700;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.terms__item-btn {
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .terms__item-btn {
    margin-top: 1.25rem;
  }
}
.terms__item-btn::before {
  position: absolute;
  content: "";
  width: 18px;
  width: 1.125rem;
  height: 24px;
  height: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 32px;
  left: 2rem;
  background: url(../img/common/pdf-icon.png) no-repeat center/contain;
}

.terms__box {
  background: #F7F7F7;
  border-radius: 1.25rem;
  margin-top: 80px;
  margin-top: 5rem;
  padding: 45px 50px;
  padding: 2.8125rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .terms__box {
    margin-top: 2.5rem;
    padding: 1.875rem 1.25rem;
  }
}

.terms__box-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .terms__box-title {
    font-size: 1.25rem;
  }
}

.terms__box-text {
  line-height: 1.56;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .terms__box-text {
    margin-top: 1.25rem;
  }
}

/* top-about */
.top-about {
  padding: 135px 0 105px;
  padding: 8.4375rem 0 6.5625rem;
  background: url(../img/top/top-about-border_pc.png) repeat-x center top/contain;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding: 3.125rem 0;
    background: url(../img/top/top-about-border_sp.png) repeat-x center top/contain;
  }
  .top-about .l-inner {
    padding: 0 0.625rem;
  }
}
.top-about::before, .top-about::after {
  position: absolute;
  content: "";
}
.top-about::before {
  width: 234px;
  width: 14.625rem;
  height: 203px;
  height: 12.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -105px;
  top: -6.5625rem;
  background: url(../img/top/top-about-img05.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-about::before {
    display: none;
  }
}
.top-about::after {
  width: 1511px;
  width: 94.4375rem;
  height: 1434px;
  height: 89.625rem;
  z-index: -1;
  top: 53%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/top/top-about-bg.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-about::after {
    display: none;
  }
}

.top-about__title {
  color: #E54A3B;
}

.top-about__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 40px;
  gap: 2.5rem 2.5rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .top-about__items {
    display: block;
    margin-top: 2.1875rem;
  }
}

.top-about__item {
  background: #fff;
  border: 3px solid #FFE37B;
  border: 0.1875rem solid #FFE37B;
  border-radius: 1.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
  padding: 60px 65px 45px;
  padding: 3.75rem 4.0625rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-about__item {
    padding: 1.875rem 1.25rem 1.5625rem;
  }
  .top-about__item + .top-about__item {
    margin-top: 1.25rem;
  }
}
.top-about__item:first-child .top-about__item-img {
  width: 249px;
  width: 15.5625rem;
}
@media screen and (max-width: 767px) {
  .top-about__item:first-child .top-about__item-img {
    width: 11.375rem;
  }
}
.top-about__item:nth-child(2) .top-about__item-img {
  width: 204px;
  width: 12.75rem;
}
@media screen and (max-width: 767px) {
  .top-about__item:nth-child(2) .top-about__item-img {
    width: 9.375rem;
  }
}
.top-about__item:nth-child(3) .top-about__item-img {
  width: 221px;
  width: 13.8125rem;
}
@media screen and (max-width: 767px) {
  .top-about__item:nth-child(3) .top-about__item-img {
    width: 10.125rem;
  }
}
.top-about__item:nth-child(4) .top-about__item-img {
  width: 185px;
  width: 11.5625rem;
}
@media screen and (max-width: 767px) {
  .top-about__item:nth-child(4) .top-about__item-img {
    width: 8.5rem;
  }
}

.top-about__item-img {
  max-width: 100%;
  margin: 0 auto;
}

.top-about__item-title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  color: #E54A3B;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-about__item-title {
    font-size: 1.5rem;
  }
}

.top-about__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 600;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .top-about__item-text {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 1rem;
  }
}

.top-about__btn {
  width: 412px;
  width: 25.75rem;
  font-size: 28px;
  font-size: 1.75rem;
  background: url(../img/common/btn-bg03.png) no-repeat center/contain;
  padding: 33px 0;
  padding: 2.0625rem 0;
  margin: 80px auto 0;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-about__btn {
    width: 18rem;
    margin-top: 2.5rem;
    padding: 1rem 0;
  }
}
.top-about__btn:hover {
  background: url(../img/common/btn-bg03_hover.png) no-repeat center/contain;
  color: #E54A3B;
}

/* top-banner */
.top-banner {
  background: url(../img/top/top-banner-bg_pc.png) repeat-x center/contain;
  padding: 75px 0 70px;
  padding: 4.6875rem 0 4.375rem;
}
@media screen and (max-width: 767px) {
  .top-banner {
    background: url(../img/top/top-banner-bg_sp.png) repeat-x center/contain;
    padding: 2.1875rem 0;
  }
  .top-banner .l-inner {
    padding: 0 0.625rem;
  }
}

@media screen and (max-width: 1400px) {
  .top-banner__items {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1400px) {
  .top-banner__items {
    max-width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .top-banner__items {
    width: 22.25rem;
    max-width: 100%;
  }
}

.top-banner__item + .top-banner__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.top-banner__item a {
  display: block;
}

/* top-blog */
.top-blog {
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .top-blog {
    padding-top: 2.5rem;
  }
  .top-blog .l-inner {
    padding: 0 0.625rem;
  }
}

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

.top-blog__btn {
  width: 287px;
  width: 17.9375rem;
  background: url(../img/common/btn-bg02.png) no-repeat center/contain;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-blog__btn {
    margin-top: 2.5rem;
  }
}
.top-blog__btn:hover {
  background: url(../img/common/btn-bg02_hover.png) no-repeat center/contain;
}

/* top-campaign */
.top-campaign {
  padding: 65px 0 60px;
  padding: 4.0625rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-campaign {
    padding: 2.8125rem 0 2.5rem;
  }
}

.top-campaign__content {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 960px;
  width: 60rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  padding: 2.5rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-campaign__content {
    display: block;
    padding: 2.5rem 0 3.4375rem;
  }
}
.top-campaign__content::before, .top-campaign__content::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 15px;
  height: 0.9375rem;
  background: url(../img/top/top-campaign-border_pc.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-campaign__content::before, .top-campaign__content::after {
    height: 1.125rem;
    background: url(../img/top/top-campaign-border_sp.png) no-repeat center/contain;
  }
}
.top-campaign__content::before {
  top: 0;
}
.top-campaign__content::after {
  bottom: 0;
}

.top-campaign__texts {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-campaign__texts {
    width: 100%;
  }
}
.top-campaign__texts::before {
  position: absolute;
  content: "";
  top: -15px;
  top: -0.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 110%;
  height: 110%;
  background: url(../img/top/top-campaign-bg_pc.png) no-repeat center top/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-campaign__texts::before {
    width: 100%;
    height: 100%;
    background: url(../img/top/top-campaign-bg_sp.png) no-repeat center top/contain;
  }
}

.top-campaign__subtitle {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 35px;
  font-size: 2.1875rem;
  color: #ABD202;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-campaign__subtitle {
    font-size: 1.75rem;
  }
}
.top-campaign__subtitle::before, .top-campaign__subtitle::after {
  position: absolute;
  content: "";
  width: 3px;
  width: 0.1875rem;
  height: 60px;
  height: 3.75rem;
  background: #ABD202;
  top: -10px;
  top: -0.625rem;
}
.top-campaign__subtitle::before {
  left: -25px;
  left: -1.5625rem;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.top-campaign__subtitle::after {
  right: -25px;
  right: -1.5625rem;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.top-campaign__title {
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-campaign__title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-top: 1.5625rem;
  }
}
.top-campaign__title span {
  font-size: 46px;
  font-size: 2.875rem;
}
@media screen and (max-width: 767px) {
  .top-campaign__title span {
    font-size: 2.5rem;
  }
}

.top-campaign__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #6A6A6A;
}
@media screen and (max-width: 767px) {
  .top-campaign__text {
    font-size: 1rem;
    margin-top: 0.9375rem;
  }
}

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

.top-campaign__subtext {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.56;
  color: #8BAC00;
  border-radius: 0.625rem;
  border: 1px solid #8BAC00;
  border: 0.0625rem solid #8BAC00;
  padding: 10px 14px;
  padding: 0.625rem 0.875rem;
}

.top-campaign__heading {
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 700;
  color: #ABD202;
  line-height: 1.1;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-campaign__heading {
    font-size: 2.25rem;
  }
}
.top-campaign__heading > span {
  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;
}
.top-campaign__heading > span > span:first-of-type {
  display: inline-block;
  width: 81px;
  width: 5.0625rem;
  min-width: 81px;
  min-width: 5.0625rem;
  height: 81px;
  height: 5.0625rem;
  border-radius: 50%;
  background: #ABD202;
  font-size: 29px;
  font-size: 1.8125rem;
  color: #fff;
  padding-top: 25px;
  padding-top: 1.5625rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-campaign__heading > span > span:first-of-type {
    width: 4.1875rem;
    min-width: 4.1875rem;
    height: 4.1875rem;
    font-size: 1.5rem;
    padding-top: 1.25rem;
    margin-right: 0;
  }
}
.top-campaign__heading > span > span:nth-of-type(2) {
  font-size: 64px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .top-campaign__heading > span > span:nth-of-type(2) {
    font-size: 3.3125rem;
  }
}
.top-campaign__heading > span > span:nth-of-type(2) span {
  font-size: 88px;
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .top-campaign__heading > span > span:nth-of-type(2) span {
    font-size: 4.5625rem;
  }
}

/* top-cv */
/* top-faq */
.top-faq {
  background: url(../img/top/top-faq-bg_pc.png) repeat-x center top/contain;
  padding: 110px 0 150px;
  padding: 6.875rem 0 9.375rem;
}
@media screen and (max-width: 767px) {
  .top-faq {
    background: url(../img/top/top-faq-bg_sp.png) repeat-x center top/contain;
    padding: 3.4375rem 0 5rem;
  }
  .top-faq .l-inner {
    padding: 0 0.625rem;
  }
}

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

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

/* top-flow */
.top-flow {
  background: url(../img/top/top-flow-bg01_pc.png) repeat-x center top/contain;
  padding: 105px 0 115px;
  padding: 6.5625rem 0 7.1875rem;
}
@media screen and (max-width: 767px) {
  .top-flow {
    background: url(../img/top/top-flow-bg01_sp.png) repeat-x center top/contain;
    padding: 3.125rem 0 4.6875rem;
  }
}

.top-flow__title {
  color: #E54A3B;
}

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

.top-flow__item {
  text-align: center;
  width: 380px;
  width: 23.75rem;
  min-width: 380px;
  min-width: 23.75rem;
  height: 380px;
  height: 23.75rem;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-flow__item {
    text-align: left;
    width: 100%;
    min-width: unset;
    border-radius: 1.25rem;
    height: auto;
    padding: 1.875rem 1.25rem 1.5625rem;
  }
}
.top-flow__item + .top-flow__item {
  margin-left: -20px;
  margin-left: -1.25rem;
}
@media screen and (max-width: 767px) {
  .top-flow__item + .top-flow__item {
    margin-left: 0;
    margin-top: 3.4375rem;
  }
}
.top-flow__item + .top-flow__item::before {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 41px;
  height: 2.5625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5px;
  left: 0.3125rem;
  background: url(../img/top/top-flow-arrow_pc.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-flow__item + .top-flow__item::before {
    width: 2.5625rem;
    height: 1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -3.875rem;
    background: url(../img/top/top-flow-arrow_sp.png) no-repeat center/contain;
  }
}
.top-flow__item:first-child {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-flow__item:first-child {
    padding-top: 1.875rem;
  }
}
.top-flow__item:first-child .top-flow__item-icon {
  width: 109px;
  width: 6.8125rem;
}
.top-flow__item:nth-child(2) {
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-flow__item:nth-child(2) {
    padding-top: 1.875rem;
  }
}
.top-flow__item:nth-child(2) .top-flow__item-icon {
  width: 84px;
  width: 5.25rem;
}
.top-flow__item:nth-child(3) {
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-flow__item:nth-child(3) {
    padding-top: 1.875rem;
  }
}
.top-flow__item:nth-child(3) .top-flow__item-icon {
  width: 77px;
  width: 4.8125rem;
}

.top-flow__item-number {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  left: 0;
  top: -10px;
  top: -0.625rem;
  width: 100px;
  width: 6.25rem;
  min-width: 100px;
  min-width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  background: #383838;
}
@media screen and (max-width: 767px) {
  .top-flow__item-number {
    width: 3.75rem;
    min-width: 3.75rem;
    height: 3.75rem;
    font-size: 0.875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -1.875rem;
  }
}
.top-flow__item-number span {
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-flow__item-number span {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .top-flow__item-header {
    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;
  }
}

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

.top-flow__item-title {
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #E54A3B;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-flow__item-title {
    font-size: 1.625rem;
    margin-top: 0;
    margin-left: 2.5rem;
  }
}

.top-flow__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-flow__item-text {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 0.9375rem;
  }
}

.top-flow__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;
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-right: 70px;
  padding-right: 4.375rem;
}
@media screen and (max-width: 767px) {
  .top-flow__footer {
    margin-top: 0.75rem;
    padding-right: 0;
  }
}

.top-flow__img {
  width: 97px;
  width: 6.0625rem;
}

.top-flow__text {
  line-height: 1.75;
  font-weight: 600;
  margin-left: 35px;
  margin-left: 2.1875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-flow__text {
    margin: 0;
    padding-left: 1em;
    text-indent: -1em;
  }
}
.top-flow__text::before {
  position: absolute;
  content: "";
  width: 700px;
  width: 43.75rem;
  height: 60px;
  height: 3.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -60px;
  left: -3.75rem;
  background: url(../img/top/top-flow-bg02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-flow__text::before {
    display: none;
  }
}

/* top-mv */
.top-mv {
  background: url(../img/top/top-mv-bg01_pc.png) repeat-x center top/cover;
  padding: 170px 0 85px;
  padding: 10.625rem 0 5.3125rem;
}
@media screen and (max-width: 767px) {
  .top-mv {
    background: url(../img/top/top-mv-bg01_sp.png) repeat-x center top/cover;
    padding: 4.0625rem 0 3.75rem;
  }
}
.top-mv .l-inner {
  max-width: 1300px;
  max-width: 81.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv .l-inner {
    padding: 0 0.625rem;
  }
}

.top-mv__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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-mv__inner {
    display: block;
  }
}

.top-mv__body {
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .top-mv__body {
    width: 100%;
    padding-bottom: 0;
    margin-top: 1.5625rem;
  }
}

.top-mv__title-wrapper {
  width: 470px;
  width: 29.375rem;
  max-width: 100%;
  padding-top: 250px;
  padding-top: 15.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-mv__title-wrapper {
    width: 17.125rem;
    margin: 0 auto;
    padding-top: 9.375rem;
  }
}

.top-mv__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 391px;
  width: 24.4375rem;
  max-width: 100%;
  animation: floating-y 1.5s ease-in-out infinite alternate-reverse;
}
@media screen and (max-width: 767px) {
  .top-mv__img {
    width: 15.625rem;
  }
}

@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
  100% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
}
.top-mv__title {
  display: block;
  position: relative;
  z-index: 1;
}

.top-mv__text {
  line-height: 1.875;
  font-weight: 600;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    text-align: center;
    margin-top: 1.5625rem;
  }
}

.top-mv__btn {
  width: 287px;
  width: 17.9375rem;
  background: url(../img/common/btn-bg03.png) no-repeat center/contain;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__btn {
    margin: 1.875rem auto 0;
  }
}
.top-mv__btn:hover {
  color: #E54A3B;
  background: url(../img/common/btn-bg03_hover.png) no-repeat center/contain;
}

.top-mv__content {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .top-mv__content {
    width: 22.5rem;
    max-width: 100%;
    margin: 0 auto;
  }
}

.top-mv__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #E54A3B;
  border: 0.1875rem solid #E54A3B;
  background: #fff;
  border-radius: 1.25rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.top-mv__news-title {
  font-family: corporate-logo-ver2, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #E54A3B;
  border-radius: 0.625rem 0 0 0.625rem;
  padding: 9px 18px;
  padding: 0.5625rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__news-title {
    font-size: 0.875rem;
    padding: 0.5625rem 0.625rem;
  }
}

.top-mv__news-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 0 1.25rem 1.25rem 0;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__news-body {
    padding: 0.375rem 0.625rem;
  }
}

.top-mv__news-date {
  display: inline-block;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-mv__news-date {
    font-size: 0.75rem;
  }
}

.top-mv__news-text {
  width: 450px;
  width: 28.125rem;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 5px;
  margin-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__news-text {
    width: 11.875rem;
    font-size: 0.875rem;
  }
}

.top-mv__item-wrapper {
  position: relative;
  z-index: 1;
}
.top-mv__item-wrapper .slide-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 30px;
  width: 1.875rem;
  height: 60px;
  height: 3.75rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-mv__item-wrapper .slide-arrow {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.top-mv__item-wrapper .slide-arrow:hover {
  opacity: 1;
}
.top-mv__item-wrapper .prev-arrow {
  background: url(../img/common/prev-icon02.png) no-repeat center/contain;
  left: -30px;
  left: -1.875rem;
}
@media screen and (max-width: 767px) {
  .top-mv__item-wrapper .prev-arrow {
    background: url(../img/common/prev-icon03.png) no-repeat center/contain;
    left: -0.3125rem;
  }
}
.top-mv__item-wrapper .next-arrow {
  background: url(../img/common/next-icon02.png) no-repeat center/contain;
  right: -30px;
  right: -1.875rem;
}
@media screen and (max-width: 767px) {
  .top-mv__item-wrapper .next-arrow {
    background: url(../img/common/next-icon03.png) no-repeat center/contain;
    right: -0.3125rem;
  }
}

.top-mv__items {
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .top-mv__items {
    margin: 0 auto;
  }
}
.top-mv__items .slick-track {
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-mv__items .slick-track {
    padding-bottom: 0.3125rem;
  }
}

.top-mv__item {
  text-align: center;
  width: 700px;
  width: 43.75rem;
  margin: 0 18px;
  margin: 0 1.125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__item {
    width: 100%;
    margin: 0 0.3125rem;
  }
}
.top-mv__item a {
  display: block;
}
.top-mv__item img {
  border-radius: 4.375rem;
  -webkit-box-shadow: 10px 10px 0px rgba(0, 0, 0, .16);
          box-shadow: 10px 10px 0px rgba(0, 0, 0, .16);
}
@media screen and (max-width: 767px) {
  .top-mv__item img {
    border-radius: 2.1875rem;
    -webkit-box-shadow: 3px 3px 0px rgba(0, 0, 0, .16);
            box-shadow: 3px 3px 0px rgba(0, 0, 0, .16);
  }
}

/* top-news */
.top-news {
  padding: 110px 0 160px;
  padding: 6.875rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 4.375rem 0 3.75rem;
  }
  .top-news .l-inner {
    padding: 0 0.625rem;
  }
}

.top-news__title {
  color: #D9B838;
}
@media screen and (max-width: 767px) {
  .top-news__title {
    color: #000;
  }
}

.top-news__content {
  background: #fff;
  border-radius: 1.25rem;
  border: 3px solid #D9B838;
  border: 0.1875rem solid #D9B838;
  padding: 75px 70px 80px;
  padding: 4.6875rem 4.375rem 5rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .top-news__content {
    margin-top: 2.1875rem;
    padding: 2.1875rem 1.25rem 2.5rem;
  }
}

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

/* top-plan */
.top-plan {
  background: #fff;
  padding: 70px 0 150px;
  padding: 4.375rem 0 9.375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-plan {
    padding: 1.875rem 0 4.375rem;
  }
  .top-plan .l-inner {
    padding: 0 0.625rem;
  }
}
.top-plan::before {
  position: absolute;
  content: "";
  width: 330px;
  width: 20.625rem;
  height: 400px;
  height: 25rem;
  background: url(../img/top/top-plan-img01.png) no-repeat center/contain;
  right: -125px;
  right: -7.8125rem;
  top: -80px;
  top: -5rem;
}
@media screen and (max-width: 767px) {
  .top-plan::before {
    display: none;
  }
}

.top-plan__title {
  color: #E54A3B;
}

.top-plan__box {
  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;
  background: #F7F7F7;
  border-radius: 1.25rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
  padding: 20px 30px 20px 50px;
  padding: 1.25rem 1.875rem 1.25rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-plan__box {
    display: block;
    margin-top: 2.1875rem;
    padding: 1.5625rem 0.9375rem 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .top-plan__box-body {
    text-align: center;
  }
}

.top-plan__box-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  color: #E54A3B;
}
@media screen and (max-width: 767px) {
  .top-plan__box-title {
    font-size: 1.5rem;
  }
}

.top-plan__box-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 600;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-plan__box-text {
    font-size: 1rem;
    margin-top: 0.9375rem;
  }
}

.top-plan__box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-plan__box-items {
    display: block;
    margin-left: 0;
    margin-top: 1.5625rem;
  }
}

.top-plan__box-item {
  width: 190px;
  width: 11.875rem;
  max-width: 100%;
  background: #fff;
  border-radius: 1.25rem;
  padding: 20px 10px 35px;
  padding: 1.25rem 0.625rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .top-plan__box-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    border-radius: 0.625rem;
    padding: 0.5rem 1.5625rem;
  }
}
.top-plan__box-item + .top-plan__box-item {
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-plan__box-item + .top-plan__box-item {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}
.top-plan__box-item:first-child .top-plan__box-item-icon {
  width: 75px;
  width: 4.6875rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-plan__box-item:first-child .top-plan__box-item-icon {
    width: 2.875rem;
    margin: 0;
  }
}
.top-plan__box-item:nth-child(2) .top-plan__box-item-icon {
  width: 60px;
  width: 3.75rem;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-plan__box-item:nth-child(2) .top-plan__box-item-icon {
    width: 2.125rem;
    margin: 0 0.3125rem;
  }
}
.top-plan__box-item:nth-child(3) .top-plan__box-item-icon {
  width: 95px;
  width: 5.9375rem;
  margin: 25px auto 0;
  margin: 1.5625rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-plan__box-item:nth-child(3) .top-plan__box-item-icon {
    width: 2.875rem;
    margin: 0;
  }
}

.top-plan__box-item-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-plan__box-item-text {
    margin-left: 0.9375rem;
  }
}

.top-plan__box-item-icon {
  max-width: 100%;
  margin: 25px auto 0;
  margin: 1.5625rem auto 0;
}

.top-plan__tab {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .top-plan__tab {
    margin-top: 3.125rem;
  }
}

.top-plan__contents {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.top-plan__content {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .top-plan__content {
    margin-top: 3.75rem;
  }
}

/* top-post */
.top-post {
  background: url(../img/top/top-post-bg_pc.png) repeat-x center top/contain;
}
@media screen and (max-width: 767px) {
  .top-post {
    background: url(../img/top/top-post-bg_sp.png) repeat-x center top/contain;
  }
}
/*# sourceMappingURL=style.css.map */
