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

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

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

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@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;
  }
}

body {
  background: #F0FAFF;
}

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

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

button {
  padding: 0;
}

/* l-article */
.l-article {
  width: 69%;
}
@media screen and (max-width: 767px) {
  .l-article {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

/* l-bg */
.l-bg {
  background: #fff;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-bg {
    border-radius: 0.625rem;
  }
}

/* l-btn */
.l-btn {
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-btn {
    margin-top: 1.875rem;
  }
}

.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-inner--wide {
  width: 100%;
  max-width: 1330px;
  max-width: 83.125rem;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner--wide {
    padding-right: 20px;
    padding-left: 20px;
  }
}

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

/* l-page */
.l-page {
  margin-top: 157px;
  margin-top: 9.8125rem;
}
@media screen and (max-width: 767px) {
  .l-page {
    margin-top: 7rem;
  }
}

/* l-post */
/* l-section */
.l-section {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 1.875rem 0;
  }
}

.l-section--narrow {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .l-section--narrow {
    padding: 1.875rem 0;
  }
}

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

/* l-sidenar */
.l-sidebar {
  width: 28%;
}
@media screen and (max-width: 767px) {
  .l-sidebar {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    margin-top: 2.5rem;
  }
}

/* l-wrapper */
.l-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 60px 90px;
  padding: 3.75rem 5.625rem;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    padding: 1.875rem 1.25rem;
  }
}

/* breadcrumb */
.breadcrumb {
  background: #fff;
  padding: 4px 0;
  padding: 0.25rem 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0.375rem 0;
  }
}
.breadcrumb .l-inner {
  max-width: 1330px;
  max-width: 83.125rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb .l-inner {
    padding: 0 0.625rem;
  }
}

.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item {
  margin-left: 24px;
  margin-left: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item + .breadcrumb__item {
    margin-left: 1rem;
  }
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 12px;
  height: 0.75rem;
  top: 7px;
  top: 0.4375rem;
  left: -18px;
  left: -1.125rem;
  background: url(../img/common/breadcrumb-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item + .breadcrumb__item::before {
    width: 0.375rem;
    height: 0.625rem;
    top: 0.5rem;
    left: -0.875rem;
  }
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item a, .breadcrumb__item span {
    display: inline;
    font-size: 0.875rem;
  }
}

/* btn */
.btn {
  display: block;
  text-align: center;
  width: 363px;
  width: 22.6875rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #1C2086;
  border-radius: 0.5rem;
  padding: 19px 20px 19px 0;
  padding: 1.1875rem 1.25rem 1.1875rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 17.75rem;
    font-size: 1.125rem;
    padding: 0.9375rem 0;
  }
}
.btn::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .btn::after {
    right: 1.25rem;
  }
}

/* cta */
.cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  padding: 8px 0;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 0.75rem 0;
  }
}
.cta .l-inner {
  max-width: 1330px;
  max-width: 83.125rem;
}

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

.cta__text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.34;
}
@media screen and (max-width: 767px) {
  .cta__text {
    text-align: center;
    font-size: 1.25rem;
  }
}

.cta__tel {
  display: inline-block;
  font-family: "Akshar", sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  color: #FFFCAA;
  font-weight: 600;
  line-height: 0.8;
  background: #CE3D20;
  border-radius: 0.625rem;
  padding: 10px 20px 10px 10px;
  padding: 0.625rem 1.25rem 0.625rem 0.625rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .cta__tel {
    text-align: center;
    display: block;
    width: 18.75rem;
    max-width: 100%;
    font-size: 2.625rem;
    margin: 0.625rem auto 0;
    padding: 0.625rem;
  }
}
.cta__tel span {
  text-align: center;
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #fff;
  line-height: 1.4;
  color: #CE3D20;
  border-radius: 0.5rem;
  padding: 0 10px;
  padding: 0 0.625rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cta__tel span {
    display: block;
    margin-right: 0;
    margin-bottom: 0.9375rem;
  }
}

.cta__btn {
  display: block;
  width: 340px;
  width: 21.25rem;
  max-width: 100%;
  background: #41459B;
  border-radius: 0.625rem;
  margin-left: 20px;
  margin-left: 1.25rem;
  padding: 10px;
  padding: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta__btn {
    width: 18.75rem;
    margin: 0.625rem auto 0;
  }
}
.cta__btn::after {
  position: absolute;
  content: "";
  width: 81px;
  width: 5.0625rem;
  height: 92px;
  height: 5.75rem;
  right: 0;
  bottom: 0;
  background: url(../img/common/document-img.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cta__btn::after {
    width: 4.375rem;
    height: 5rem;
    right: 0.625rem;
  }
}
.cta__btn span {
  display: inline-block;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  background: #fff;
  color: #41459B;
  border-radius: 0.625rem;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .cta__btn span {
    font-size: 1.25rem;
    padding: 0.3125rem 1.5625rem;
  }
}

/* cv */
.cv {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .cv {
    text-align: center;
    padding-bottom: 2.5rem;
  }
}
.cv .l-inner {
  max-width: 1330px;
  max-width: 83.125rem;
}

.cv__content {
  overflow: hidden;
  border-radius: 2.5rem;
  background: url(../img/common/cv-bg_pc.jpg) no-repeat center right/cover;
  padding: 80px 150px 90px;
  padding: 5rem 9.375rem 5.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv__content {
    border-radius: 1.25rem;
    background: url(../img/common/cv-bg_sp.jpg) no-repeat center bottom/cover;
    padding: 1.875rem 0.625rem 0;
  }
}

.cv__subtitle {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  border: 1px solid #EF6E00;
  border: 0.0625rem solid #EF6E00;
  color: #EF6E00;
  line-height: 1.4;
  border-radius: 0.625rem;
  padding: 0 17px;
  padding: 0 1.0625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cv__subtitle {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
  }
}
.cv__subtitle span {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .cv__subtitle span {
    font-size: 1.5rem;
  }
}

.cv__title {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cv__title {
    font-size: 1.75rem;
    line-height: 1.43;
  }
}

.cv__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .cv__text {
    font-size: 1.125rem;
    line-height: 1.56;
    margin-top: 0.625rem;
  }
}

.cv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  gap: 2.125rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cv__btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.625rem;
    margin-top: 0.9375rem;
  }
}

.cv__btn:first-child button {
  width: 284px;
  width: 17.75rem;
  color: #fff;
  background: #1C2087;
  border: 4px solid #1C2087;
  border: 0.25rem solid #1C2087;
}
@media screen and (max-width: 767px) {
  .cv__btn:first-child button {
    width: 10.125rem;
    border: 0.125rem solid #1C2087;
  }
}
.cv__btn:first-child button::after {
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
.cv__btn:nth-child(2) a {
  width: 260px;
  width: 16.25rem;
  color: #2099D1;
  background: #fff;
  border: 4px solid #2099D1;
  border: 0.25rem solid #2099D1;
}
@media screen and (max-width: 767px) {
  .cv__btn:nth-child(2) a {
    width: 9rem;
    border: 0.125rem solid #2099D1;
  }
}
.cv__btn:nth-child(2) a::after {
  background: url(../img/common/arrow-icon02.png) no-repeat center/contain;
}
.cv__btn button, .cv__btn a {
  text-align: center;
  display: block;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 16px 15px 16px 0;
  padding: 1rem 0.9375rem 1rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv__btn button, .cv__btn a {
    font-size: 1.125rem;
    padding: 0.8125rem 0.9375rem 0.8125rem 0;
  }
}
.cv__btn button::after, .cv__btn a::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 45px;
  right: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .cv__btn button::after, .cv__btn a::after {
    right: 0.625rem;
  }
}

.cv__img {
  position: absolute;
  bottom: -40px;
  bottom: -2.5rem;
  right: 110px;
  right: 6.875rem;
  width: 381px;
  width: 23.8125rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .cv__img {
    position: static;
    width: 14.375rem;
    max-width: 100%;
    margin: 0 auto -1.25rem;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 345px;
  width: 21.5625rem;
  max-width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__content {
  padding: 40px 0 10px;
  padding: 2.5rem 0 0.625rem;
}

.drawer__item:first-child > a, .drawer__item:first-child > span {
  background: url(../img/common/gnav-icon02.png) no-repeat center left/12px;
  background: url(../img/common/gnav-icon02.png) no-repeat center left/0.75rem;
  padding-left: 18px;
  padding-left: 1.125rem;
}
.drawer__item:nth-child(2) > a, .drawer__item:nth-child(2) > span {
  background: url(../img/common/gnav-icon03.png) no-repeat center left/15px;
  background: url(../img/common/gnav-icon03.png) no-repeat center left/0.9375rem;
  padding-left: 19px;
  padding-left: 1.1875rem;
}
.drawer__item:nth-child(3) > a, .drawer__item:nth-child(3) > span {
  background: url(../img/common/gnav-icon04.png) no-repeat center left/15px;
  background: url(../img/common/gnav-icon04.png) no-repeat center left/0.9375rem;
  padding-left: 22px;
  padding-left: 1.375rem;
}
.drawer__item:nth-child(4) > a, .drawer__item:nth-child(4) > span {
  background: url(../img/common/gnav-icon05.png) no-repeat center left/22px;
  background: url(../img/common/gnav-icon05.png) no-repeat center left/1.375rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}
.drawer__item:nth-child(5) > a, .drawer__item:nth-child(5) > span {
  background: url(../img/common/gnav-icon06.png) no-repeat center left/18px;
  background: url(../img/common/gnav-icon06.png) no-repeat center left/1.125rem;
  padding-left: 22px;
  padding-left: 1.375rem;
}
.drawer__item:nth-child(6) > a, .drawer__item:nth-child(6) > span {
  background: url(../img/common/gnav-icon07.png) no-repeat center left/20px;
  background: url(../img/common/gnav-icon07.png) no-repeat center left/1.25rem;
  padding-left: 24px;
  padding-left: 1.5rem;
}
.drawer__item:nth-child(7) > a, .drawer__item:nth-child(7) > span {
  background: url(../img/common/gnav-icon08.png) no-repeat center left/22px;
  background: url(../img/common/gnav-icon08.png) no-repeat center left/1.375rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}
.drawer__item > a, .drawer__item > span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  margin: 0 40px;
  margin: 0 2.5rem;
}
.drawer__item > span {
  padding-right: 18px;
  padding-right: 1.125rem;
  position: relative;
}
.drawer__item > span::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 6px;
  height: 0.375rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/dropdown-icon.png) no-repeat center/contain;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.3s;
  transition: transform 0.3s, top 0.3s, -webkit-transform 0.3s;
}
.drawer__item > span.active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 45%;
}

.drawer__subitems {
  display: none;
  padding: 20px 0 20px 78px;
  padding: 1.25rem 0 1.25rem 4.875rem;
  background: #F0FAFF;
}

.drawer__subitem + .drawer__subitem {
  margin-top: 19px;
  margin-top: 1.1875rem;
}
.drawer__subitem a {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  background: url(../img/common/arrow-icon10.png) no-repeat center right/7px;
  background: url(../img/common/arrow-icon10.png) no-repeat center right/0.4375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.drawer__links {
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.drawer__link + .drawer__link {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.drawer__link:first-child a {
  background: #00A0E9;
}
.drawer__link:first-child a::before {
  width: 33px;
  width: 2.0625rem;
  height: 24px;
  height: 1.5rem;
  left: 29px;
  left: 1.8125rem;
  background: url(../img/common/floating-icon02.png) no-repeat center/contain;
}
.drawer__link:nth-child(2) a {
  background: #1C2087;
}
.drawer__link:nth-child(2) a::before {
  width: 24px;
  width: 1.5rem;
  height: 30px;
  height: 1.875rem;
  left: 33px;
  left: 2.0625rem;
  background: url(../img/common/floating-icon03.png) no-repeat center/contain;
}
.drawer__link:nth-child(3) a {
  background: #E85884;
}
.drawer__link:nth-child(3) a::before {
  width: 51px;
  width: 3.1875rem;
  height: 31px;
  height: 1.9375rem;
  left: 18px;
  left: 1.125rem;
  background: url(../img/common/floating-icon04.png) no-repeat center/contain;
}
.drawer__link a {
  display: block;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.5rem;
  padding: 14px 10px 14px 90px;
  padding: 0.875rem 0.625rem 0.875rem 5.625rem;
  position: relative;
}
.drawer__link a::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer__link a span {
  display: inline-block;
  background: url(../img/common/arrow-icon01.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon01.png) no-repeat center right/0.375rem;
  padding-right: 16px;
  padding-right: 1rem;
}

.drawer__footer {
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background: #EFF0F7;
  padding: 20px 24px 15px;
  padding: 1.25rem 1.5rem 0.9375rem;
}

.drawer__tel + .drawer__tel {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.drawer__tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  color: #1C2087;
  background: #fff;
  border-radius: 0.3125rem;
  padding: 3px 10px 0;
  padding: 0.1875rem 0.625rem 0;
}
.drawer__tel a span {
  font-family: "Akshar", sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 600;
}

.drawer__text {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #666;
  background: url(../img/common/tel-icon.png) no-repeat center left/33px;
  background: url(../img/common/tel-icon.png) no-repeat center left/2.0625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-left: 37px;
  padding-left: 2.3125rem;
}
.drawer__text span:nth-child(2) {
  padding-left: 8px;
  padding-left: 0.5rem;
  margin-left: 8px;
  margin-left: 0.5rem;
  position: relative;
  z-index: 1;
}
.drawer__text span:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 20px;
  height: 1.25rem;
  left: 0;
  z-index: -1;
  background: #666;
}

/* entitle */
/* floating */
.floating {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 50;
}

.floating__item:first-child a {
  background: #CE3D20;
  letter-spacing: -0.1em;
  border-radius: 0.625rem 0 0 0;
}
.floating__item:first-child a::before {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  top: 15px;
  top: 0.9375rem;
  background: url(../img/common/floating-icon01.png) no-repeat center/contain;
}
.floating__item:nth-child(2) a {
  background: #1F99D1;
}
.floating__item:nth-child(2) a::before {
  top: 20px;
  top: 1.25rem;
  width: 35px;
  width: 2.1875rem;
  height: 26px;
  height: 1.625rem;
  background: url(../img/common/floating-icon02.png) no-repeat center/contain;
}
.floating__item:nth-child(3) a {
  background: #42459B;
}
.floating__item:nth-child(3) a::before {
  top: 15px;
  top: 0.9375rem;
  width: 26px;
  width: 1.625rem;
  height: 32px;
  height: 2rem;
  background: url(../img/common/floating-icon03.png) no-repeat center/contain;
}
.floating__item:nth-child(4) a {
  background: #E85884;
  border-radius: 0 0 0 0.625rem;
}
.floating__item:nth-child(4) a::before {
  top: 15px;
  top: 0.9375rem;
  width: 51px;
  width: 3.1875rem;
  height: 31px;
  height: 1.9375rem;
  background: url(../img/common/floating-icon04.png) no-repeat center/contain;
}
.floating__item a {
  text-align: center;
  display: block;
  width: 100px;
  width: 6.25rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  padding: 55px 0 13px;
  padding: 3.4375rem 0 0.8125rem;
  position: relative;
}
.floating__item a::before {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* fnav */
.fnav {
  background: #fff;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .fnav {
    padding: 3.75rem 0;
  }
}

.fnav__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px;
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .fnav__units {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .fnav__unit {
    border-bottom: 0.0625rem solid #EAEAEA;
    padding-bottom: 1.25rem;
  }
  .fnav__unit + .fnav__unit {
    margin-top: 1.25rem;
  }
}

.fnav__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00A0E9;
}
@media screen and (max-width: 767px) {
  .fnav__subtitle {
    position: relative;
  }
  .fnav__subtitle::after, .fnav__subtitle::before {
    position: absolute;
    content: "";
    width: 1.25rem;
    height: 0.0625rem;
    background: #00A0E9;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .fnav__subtitle::before {
    top: 48%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .fnav__subtitle.active::before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@media screen and (max-width: 767px) {
  .fnav__item-wrapper {
    display: none;
    padding: 0 0.9375rem 2.5rem;
  }
}

.fnav__items {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .fnav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: -0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .fnav__item {
    width: 48%;
    margin-top: 3.4375rem;
  }
}
.fnav__item + .fnav__item {
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .fnav__item + .fnav__item {
    margin-top: 3.4375rem;
  }
}
.fnav__item a {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

/* footer */
.footer__copyright {
  text-align: center;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #fff;
  background: #00A0E9;
  padding: 7px;
  padding: 0.4375rem;
}

/* form */
.form__item-label label {
  display: inline-block;
}

/* gnav */
.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
}

.gnav__item:first-child > a, .gnav__item:first-child > span {
  background: url(../img/common/gnav-icon01.png) no-repeat center top 25px/19px;
  background: url(../img/common/gnav-icon01.png) no-repeat center top 1.5625rem/1.1875rem;
  width: 60px;
  width: 3.75rem;
  padding: 20px;
  padding: 1.25rem;
}
.gnav__item:nth-child(2) > a, .gnav__item:nth-child(2) > span {
  background: url(../img/common/gnav-icon02.png) no-repeat center left 20px/12px;
  background: url(../img/common/gnav-icon02.png) no-repeat center left 1.25rem/0.75rem;
}
.gnav__item:nth-child(3) > a, .gnav__item:nth-child(3) > span {
  background: url(../img/common/gnav-icon03.png) no-repeat center left 20px/15px;
  background: url(../img/common/gnav-icon03.png) no-repeat center left 1.25rem/0.9375rem;
}
.gnav__item:nth-child(4) > a, .gnav__item:nth-child(4) > span {
  background: url(../img/common/gnav-icon04.png) no-repeat center left 20px/15px;
  background: url(../img/common/gnav-icon04.png) no-repeat center left 1.25rem/0.9375rem;
}
.gnav__item:nth-child(5) > a, .gnav__item:nth-child(5) > span {
  background: url(../img/common/gnav-icon05.png) no-repeat center left 15px/22px;
  background: url(../img/common/gnav-icon05.png) no-repeat center left 0.9375rem/1.375rem;
}
.gnav__item:nth-child(6) > a, .gnav__item:nth-child(6) > span {
  background: url(../img/common/gnav-icon06.png) no-repeat center left 20px/18px;
  background: url(../img/common/gnav-icon06.png) no-repeat center left 1.25rem/1.125rem;
}
.gnav__item:nth-child(7) > a, .gnav__item:nth-child(7) > span {
  background: url(../img/common/gnav-icon07.png) no-repeat center left 17px/21px;
  background: url(../img/common/gnav-icon07.png) no-repeat center left 1.0625rem/1.3125rem;
}
.gnav__item:nth-child(8) > a, .gnav__item:nth-child(8) > span {
  background: url(../img/common/gnav-icon08.png) no-repeat center left 15px/22px;
  background: url(../img/common/gnav-icon08.png) no-repeat center left 0.9375rem/1.375rem;
}
.gnav__item.current > a, .gnav__item.current > span {
  border-bottom: 4px solid #00A0E9;
  border-bottom: 0.25rem solid #00A0E9;
}
.gnav__item > a, .gnav__item > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 66px;
  height: 4.125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 4px solid transparent;
  border-bottom: 0.25rem solid transparent;
  padding: 20px 20px 20px 40px;
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.gnav__item > a:hover, .gnav__item > span:hover {
  color: #00A0E9;
}

.gnav__dropdown > a, .gnav__dropdown > span {
  cursor: pointer;
  padding-right: 18px;
  padding-right: 1.125rem;
  position: relative;
}
.gnav__dropdown > a::after, .gnav__dropdown > span::after {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 6px;
  height: 0.375rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/dropdown-icon.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.gnav__dropdown > a:hover::after, .gnav__dropdown > span:hover::after {
  background-image: url(../img/common/dropdown-icon02.png);
}

.gnav__body {
  display: none;
  position: absolute;
  top: 157px;
  top: 9.8125rem;
  left: 0;
  width: 100%;
  background: #F0FAFF;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

.gnav__subitems {
  width: 900px;
  width: 56.25rem;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 80px;
  gap: 2.5rem 5rem;
}

.gnav__subitem a {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  background: url(../img/common/arrow-icon10.png) no-repeat center right/7px;
  background: url(../img/common/arrow-icon10.png) no-repeat center right/0.4375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.gnav__inner {
  width: 980px;
  width: 61.25rem;
  max-width: 100%;
  margin: 0 auto;
}

.gnav__unit-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  gap: 0.625rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.gnav__unit-wrapper .gnav__unit {
  width: 540px;
  width: 33.75rem;
  max-width: 100%;
}

.gnav__input form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}
.gnav__input label {
  position: absolute;
}
.gnav__input input[type=text] {
  width: 100%;
  height: 50px;
  height: 3.125rem;
  font-size: 20px;
  font-size: 1.25rem;
  background: #fff;
  border: 1px solid #EAEAEA;
  border: 0.0625rem solid #EAEAEA;
  border-radius: 0.5rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
.gnav__input input[type=text]::-webkit-input-placeholder {
  color: #989898;
}
.gnav__input input[type=text]::-moz-placeholder {
  color: #989898;
}
.gnav__input input[type=text]::-ms-input-placeholder {
  color: #989898;
}
.gnav__input input[type=text]::placeholder {
  color: #989898;
}
.gnav__input input[type=submit], .gnav__input button {
  text-align: center;
  display: block;
  width: 100px;
  width: 6.25rem;
  min-width: 100px;
  min-width: 6.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #00A0E9;
  border-radius: 0.5rem;
  padding: 10px 0;
  padding: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .gnav__input input[type=submit], .gnav__input button {
    width: 5.75rem;
    min-width: 5.75rem;
    font-size: 1.125rem;
    padding: 0.75rem;
  }
}

.gnav__search {
  display: block;
  width: 370px;
  width: 23.125rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.5rem;
  background: #fff;
  padding: 10px;
  padding: 0.625rem;
}
.gnav__search span {
  display: block;
  background: #29B100;
  border-radius: 0.5rem;
  padding: 12px 20px 12px 58px;
  padding: 0.75rem 1.25rem 0.75rem 3.625rem;
  position: relative;
}
.gnav__search span::before {
  position: absolute;
  content: "";
  width: 23px;
  width: 1.4375rem;
  height: 30px;
  height: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25px;
  left: 1.5625rem;
  background: url(../img/common/map-icon.png) no-repeat center/contain;
}

.gnav__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 2px solid #1C2087;
  border-bottom: 0.125rem solid #1C2087;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.gnav__subtitle span {
  color: #1C2087;
}

.gnav__tab-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}

.gnav__tab-item {
  text-align: center;
  display: block;
  width: 100px;
  width: 6.25rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.5rem;
  color: #1C2087;
  background: #fff;
  border: 1px solid #1C2087;
  border: 0.0625rem solid #1C2087;
  padding: 9px;
  padding: 0.5625rem;
}
.gnav__tab-item + .gnav__tab-item {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.gnav__tab-item:hover {
  opacity: 1;
}
.gnav__tab-item.current {
  background: #1C2087;
  color: #fff;
}

.gnav__links {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 50px;
  gap: 1rem 3.125rem;
  background: #fff;
  border: 1px solid #BDBFE3;
  border: 0.0625rem solid #BDBFE3;
  border-radius: 0.5rem;
  min-height: 100%;
  padding: 15px 20px 15px 34px;
  padding: 0.9375rem 1.25rem 0.9375rem 2.125rem;
  position: relative;
}
.gnav__links::before {
  position: absolute;
  content: "";
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  left: -17px;
  left: -1.0625rem;
  background: url(../img/common/gnav-arrow.png) no-repeat center/contain;
}
.gnav__links:first-child::before {
  top: 15px;
  top: 0.9375rem;
}
.gnav__links:nth-child(2)::before {
  bottom: 15px;
  bottom: 0.9375rem;
}
.gnav__links.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.gnav__link a {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  background: url(../img/common/arrow-icon10.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon10.png) no-repeat center right/0.375rem;
  padding-right: 14px;
  padding-right: 0.875rem;
}

/* hall-card */
.hall-card__inner {
  display: block;
  background: #fff;
  border-radius: 1.25rem;
  padding: 10px 10px 20px;
  padding: 0.625rem 0.625rem 1.25rem;
}

.hall-card__img img {
  aspect-ratio: 336/224;
  border-radius: 0.625rem;
}

.hall-card__body {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hall-card__body {
    padding: 0 0.625rem;
  }
}

.hall-card__subtitle {
  position: absolute;
  right: 10px;
  right: 0.625rem;
  top: -90px;
  top: -5.625rem;
  width: 90px;
  width: 5.625rem;
  height: 90px;
  height: 5.625rem;
  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;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .hall-card__subtitle {
    width: 5rem;
    height: 5rem;
    top: -5rem;
    font-size: 1rem;
  }
}
.hall-card__subtitle.orange {
  line-height: 1.1;
  color: #EF6E00;
  background: #FFF4EB;
  border: 1px solid #EF6E00;
  border: 0.0625rem solid #EF6E00;
  padding-left: 5px;
  padding-left: 0.3125rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
.hall-card__subtitle.blue {
  line-height: 1.4;
  color: #2988B2;
  background: #E2F6FF;
  border: 1px solid #2988B2;
  border: 0.0625rem solid #2988B2;
}

.hall-card__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1C2087;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .hall-card__title {
    font-size: 1.25rem;
  }
}

.hall-card__address {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .hall-card__address {
    font-size: 1.125rem;
    margin-top: 0.3125rem;
  }
}

.hall-card__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-card__tag {
    margin-top: 0.9375rem;
  }
}
.hall-card__tag span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #F7F7F7;
  border-radius: 1.25rem;
  padding: 5px 8px 5px 32px;
  padding: 0.3125rem 0.5rem 0.3125rem 2rem;
  position: relative;
}
.hall-card__tag span::before {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 6px;
  left: 0.375rem;
  background: url(../img/common/check-icon.png) no-repeat center/contain;
}

.hall-card__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  gap: 0.625rem;
  margin: 20px -10px 0;
  margin: 1.25rem -0.625rem 0;
}

.hall-card__btn {
  text-align: center;
}
.hall-card__btn.tel a {
  background: #1C2087;
}
.hall-card__btn.tel a::after {
  right: 16px;
  right: 1rem;
}
.hall-card__btn.more a {
  background: #00A0E9;
}
.hall-card__btn.more a::after {
  right: 20px;
  right: 1.25rem;
}
.hall-card__btn a {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.625rem;
  position: relative;
  padding: 4px 12px 6px 0;
  padding: 0.25rem 0.75rem 0.375rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hall-card__btn a {
    font-size: 1rem;
  }
}
.hall-card__btn a::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

/* hall-cards */
.hall-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .hall-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* hall-unit */
.hall-unit {
  background: #fff;
  border-radius: 1.25rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="15" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.06)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, .06));
          filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, .06));
  padding: 30px 30px 20px;
  padding: 1.875rem 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-unit {
    padding: 1.875rem 1.25rem;
  }
}
.hall-unit + .hall-unit {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .hall-unit + .hall-unit {
    margin-top: 1.25rem;
  }
}

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

.hall-unit__img {
  width: 300px;
  width: 18.75rem;
  min-width: 300px;
  min-width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .hall-unit__img {
    width: 100%;
    min-width: unset;
  }
}
.hall-unit__img img {
  border-radius: 0.625rem;
}

.hall-unit__body {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hall-unit__body {
    margin-top: 1.25rem;
  }
}

.hall-unit__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1C2087;
}
@media screen and (max-width: 767px) {
  .hall-unit__title {
    font-size: 1.25rem;
  }
}

.hall-unit__address {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .hall-unit__address {
    font-size: 1.125rem;
  }
}

.hall-unit__tel {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #CE3D20;
  background: url(../img/common/tel-icon02.png) no-repeat center left/18px;
  background: url(../img/common/tel-icon02.png) no-repeat center left/1.125rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  margin-top: 2px;
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .hall-unit__tel {
    font-size: 1.125rem;
    background-size: 0.9375rem;
    padding-left: 1.25rem;
  }
}

.hall-unit__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.hall-unit__tag > span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #F7F7F7;
  border-radius: 1.25rem;
  padding: 5px 8px 5px 32px;
  padding: 0.3125rem 0.5rem 0.3125rem 2rem;
  position: relative;
}
.hall-unit__tag > span::before {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 6px;
  left: 0.375rem;
  background: url(../img/common/check-icon.png) no-repeat center/contain;
}
.hall-unit__tag > span span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}

.hall-unit__subtitle {
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  width: 5.625rem;
  height: 90px;
  height: 5.625rem;
  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;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .hall-unit__subtitle {
    width: 5rem;
    height: 5rem;
    top: -3.75rem;
    font-size: 1rem;
  }
}
.hall-unit__subtitle.orange {
  line-height: 1.1;
  color: #EF6E00;
  background: #FFF4EB;
  border: 1px solid #EF6E00;
  border: 0.0625rem solid #EF6E00;
  padding-left: 5px;
  padding-left: 0.3125rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
.hall-unit__subtitle.blue {
  line-height: 1.4;
  color: #2988B2;
  background: #E2F6FF;
  border: 1px solid #2988B2;
  border: 0.0625rem solid #2988B2;
}

.hall-unit__btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  gap: 1rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-unit__btns {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
  }
}

.hall-unit__btn a {
  text-align: center;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.5rem;
  padding: 15px 10px 15px 0;
  padding: 0.9375rem 0.625rem 0.9375rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hall-unit__btn a {
    font-size: 1.125rem;
  }
}
.hall-unit__btn a::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  right: 90px;
  right: 5.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
.hall-unit__btn a.tel {
  background: #41459B;
}
.hall-unit__btn a.tel::after {
  right: 80px;
  right: 5rem;
}
.hall-unit__btn a.map {
  background: #E85884;
}
.hall-unit__btn a.more {
  background: #00A0E9;
}

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

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

/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}

.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;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  border-bottom: 1px solid #E2E2E2;
  border-bottom: 0.0625rem solid #E2E2E2;
  padding: 10px 20px 10px 30px;
  padding: 0.625rem 1.25rem 0.625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0.5rem 1.25rem;
  }
}

.header__logo {
  width: 180px;
  width: 11.25rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 8.125rem;
  }
}
.header__logo a {
  display: block;
}

.header__body {
  text-align: right;
}

.header__tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}

.header__tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  gap: 0.4375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1C2087;
  background: rgba(28, 32, 135, .07);
  border-radius: 0.3125rem;
  padding: 3px 10px 0;
  padding: 0.1875rem 0.625rem 0;
}
.header__tel a span {
  font-family: "Akshar", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

.header__text {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #666;
  background: url(../img/common/tel-icon.png) no-repeat center left/33px;
  background: url(../img/common/tel-icon.png) no-repeat center left/2.0625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-left: 37px;
  padding-left: 2.3125rem;
}
.header__text span:nth-child(2) {
  padding-left: 8px;
  padding-left: 0.5rem;
  margin-left: 8px;
  margin-left: 0.5rem;
  position: relative;
  z-index: 1;
}
.header__text span:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 20px;
  height: 1.25rem;
  left: 0;
  z-index: -1;
  background: #666;
}

.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="3" /><feOffset dx="1" dy="4" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.06)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, .06));
          filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, .06));
}

.header__link + .header__link {
  border-left: 1px solid #E2E2E2;
  border-left: 0.0625rem solid #E2E2E2;
}
.header__link:first-child {
  width: 26%;
}
.header__link:first-child a {
  background: url(../img/common/gnav-icon02.png) no-repeat center top 11px/13px;
  background: url(../img/common/gnav-icon02.png) no-repeat center top 0.6875rem/0.8125rem;
}
.header__link:nth-child(2) {
  width: 24%;
}
.header__link:nth-child(2) a {
  background: url(../img/common/gnav-icon03.png) no-repeat center top 11px/17px;
  background: url(../img/common/gnav-icon03.png) no-repeat center top 0.6875rem/1.0625rem;
}
.header__link:nth-child(3) {
  width: 28%;
}
.header__link:nth-child(3) a {
  background: url(../img/common/gnav-icon04.png) no-repeat center top 11px/17px;
  background: url(../img/common/gnav-icon04.png) no-repeat center top 0.6875rem/1.0625rem;
}
.header__link:nth-child(4) {
  width: 22%;
}
.header__link:nth-child(4) a {
  color: #fff;
  background: url(../img/common/gnav-icon09.png) no-repeat center top 11px/22px;
  background: url(../img/common/gnav-icon09.png) no-repeat center top 0.6875rem/1.375rem;
  position: relative;
}
.header__link:nth-child(4) a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #CE3D20;
  z-index: -1;
}
.header__link a {
  text-align: center;
  display: block;
  height: 100%;
  font-size: 16px;
  font-size: 1rem;
  color: #00A0E9;
  font-weight: 700;
  white-space: nowrap;
  padding: 34px 0 2px;
  padding: 2.125rem 0 0.125rem;
}

/* heading */
.heading {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
  color: #1C2087;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 1.5rem;
  }
}

/* u-hidden */
.u-hidden {
  display: none !important;
}

/* included */
.included__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .included__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}

.included__item {
  text-align: center;
  border: 1px solid #2988B2;
  border: 0.0625rem solid #2988B2;
  border-radius: 0.625rem;
  background: #fff;
  padding: 10px 5px 15px;
  padding: 0.625rem 0.3125rem 0.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .included__item {
    min-height: 7.5rem;
    padding-bottom: 0.625rem;
  }
}
.included__item:hover .included__item-subtext {
  opacity: 1;
  pointer-events: unset;
}

.included__item-subtext {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  bottom: 160px;
  bottom: 10rem;
  min-height: 80px;
  min-height: 5rem;
  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: 304px;
  width: 19rem;
  background: #CBE3F2;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  border-radius: 0.625rem;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 5px 15px;
  padding: 0.3125rem 0.9375rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .included__item-subtext {
    min-height: 3.75rem;
    width: 12.5rem;
    bottom: 8.125rem;
    font-size: 0.875rem;
  }
}
.included__item-subtext::after {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 40px;
  height: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -37px;
  bottom: -2.3125rem;
  background: url(../img/common/included-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .included__item-subtext::after {
    width: 0.9375rem;
    height: 1.25rem;
    bottom: -1.1875rem;
  }
}

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

.included__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.44;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .included__item-text {
    font-size: 0.9375rem;
    margin-top: 0.3125rem;
  }
}
.included__item-text span {
  font-weight: 700;
}

/* interview-card */
.interview-card__inner {
  display: block;
  background: rgba(255, 255, 255, .8);
  border-radius: 1.25rem;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .16);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, .16);
}

.interview-card__img img {
  aspect-ratio: 356/200;
  border-radius: 1.25rem 1.25rem 0 0;
}

.interview-card__body {
  text-align: center;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .interview-card__body {
    padding: 0.625rem 0.625rem 1.25rem;
  }
}

.interview-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.interview-card__name {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #00A0E9;
  background: url(../img/common/arrow-icon07.png) no-repeat center right/20px;
  background: url(../img/common/arrow-icon07.png) no-repeat center right/1.25rem;
  padding-right: 26px;
  padding-right: 1.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .interview-card__name {
    font-size: 1.125rem;
    margin-top: 0;
  }
}

.interview-card__position {
  font-size: 18px;
  font-size: 1.125rem;
  color: #666;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

/* interview-cards */
.interview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 16px;
  gap: 2.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .interview-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
  }
}

/* lead */
.lead {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .lead {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

/* member-card */
.member-card {
  background: #F7F7F7;
  border-radius: 1.25rem;
}
.member-card:first-child .member-card__box::after {
  width: 84px;
  width: 5.25rem;
  height: 112px;
  height: 7rem;
  top: -38px;
  top: -2.375rem;
  right: 0;
  background: url(../img/common/member-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .member-card:first-child .member-card__box::after {
    width: 4.625rem;
    height: 6.1875rem;
    top: 2.3125rem;
    right: -1.625rem;
  }
}
.member-card:nth-child(2) .member-card__box {
  text-align: center;
}
.member-card:nth-child(2) .member-card__box::before {
  width: 72px;
  width: 4.5rem;
  height: 117px;
  height: 7.3125rem;
  left: 19px;
  left: 1.1875rem;
  bottom: -5px;
  bottom: -0.3125rem;
  background: url(../img/common/member-icon02_pc.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .member-card:nth-child(2) .member-card__box::before {
    width: 3.1875rem;
    height: 7.9375rem;
    left: -1.875rem;
    bottom: -1.1875rem;
    background: url(../img/common/member-icon02_sp.png) no-repeat center/contain;
  }
}
.member-card:nth-child(2) .member-card__box::after {
  width: 84px;
  width: 5.25rem;
  height: 116px;
  height: 7.25rem;
  right: 10px;
  right: 0.625rem;
  bottom: 5px;
  bottom: 0.3125rem;
  background: url(../img/common/member-icon03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .member-card:nth-child(2) .member-card__box::after {
    width: 4.25rem;
    height: 5.875rem;
    right: -2.5rem;
    bottom: -0.5625rem;
  }
}

.member-card__img img {
  border-radius: 1.25rem 1.25rem 0 0;
}

.member-card__body {
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 10px 20px 30px;
  padding: 0.625rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .member-card__body {
    padding-bottom: 1.25rem;
  }
}

.member-card__title {
  text-align: center;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
  color: #1C2087;
  padding: 20px 0 5px;
  padding: 1.25rem 0 0.3125rem;
}
@media screen and (max-width: 767px) {
  .member-card__title {
    font-size: 1.75rem;
    padding: 0;
  }
}

.member-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .member-card__header {
    display: block;
  }
}

.member-card__logo {
  width: 250px;
  width: 15.625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .member-card__logo {
    width: 12.5rem;
    margin: 0 auto;
  }
}

.member-card__heading {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .member-card__heading {
    text-align: center;
    margin-top: 0.3125rem;
    margin-bottom: 1.25rem;
  }
}

.member-card__box {
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .member-card__box {
    margin-top: 0.625rem;
  }
}
.member-card__box::before, .member-card__box::after {
  position: absolute;
  content: "";
}

.member-card__box-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #EF6E00;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 7px;
  padding: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .member-card__box-title {
    font-size: 1.125rem;
    padding: 0.625rem;
  }
}

.member-card__box-body {
  background: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .member-card__box-body {
    padding: 0.9375rem 0.625rem;
  }
}

.member-card__box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .member-card__box-inner {
    display: block;
  }
}

.member-card__box-texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .member-card__box-texts {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0.625rem;
  }
}

.member-card__box-text {
  font-size: 28px;
  font-size: 1.75rem;
  color: #CB4F4A;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .member-card__box-text {
    text-align: center;
    font-size: 1.5rem;
  }
}
.member-card__box-text span {
  font-family: "Akshar", sans-serif;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 600;
}

.member-card__box-subtitle {
  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: 76px;
  width: 4.75rem;
  min-width: 76px;
  min-width: 4.75rem;
  height: 76px;
  height: 4.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #CB4F4A;
  border-radius: 50%;
  border: 1px solid #CB4F4A;
  border: 0.0625rem solid #CB4F4A;
}
@media screen and (max-width: 767px) {
  .member-card__box-subtitle {
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
    font-size: 1.125rem;
  }
}

.member-card__box-subtext {
  font-size: 38px;
  font-size: 2.375rem;
  color: #CB4F4A;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .member-card__box-subtext {
    font-size: 1.75rem;
  }
}
.member-card__box-subtext span:first-child {
  font-family: "Akshar", sans-serif;
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .member-card__box-subtext span:nth-child(2) {
    font-size: 2.375rem;
  }
}

.member-card__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .member-card__text {
    margin-top: 1.25rem;
    padding: 0;
  }
}

.member-card__btn {
  text-align: center;
  display: block;
  width: 236px;
  width: 14.75rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #1C2086;
  border-radius: 0.5rem;
  padding: 19px 20px 19px 0;
  padding: 1.1875rem 1.25rem 1.1875rem 0;
  margin: 25px auto 0;
  margin: 1.5625rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .member-card__btn {
    width: 9.125rem;
    font-size: 1.125rem;
    margin-top: 0.9375rem;
    padding: 0.875rem 1.25rem 0.875rem 0;
  }
}
.member-card__btn::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 50px;
  right: 3.125rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .member-card__btn::after {
    right: 1.25rem;
  }
}

/* member-cards */
.member-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .member-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

/* membership */
.membership {
  background: #fff;
}
.membership .l-section {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .membership .l-section {
    padding-top: 0.9375rem;
  }
}

.membership__subtitle {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
.membership__subtitle span {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.4;
}

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

/* modal */
.modal {
  display: none;
  z-index: 100;
  position: relative;
}
.modal.is-open {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  left: 0;
  top: 0;
  z-index: 100;
}

.modal__content {
  position: absolute;
  width: 860px;
  width: 53.75rem;
  max-width: 90%;
  background: #fff;
  border-radius: 1.25rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  padding: 80px;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .modal__content {
    max-height: 95%;
    overflow-y: auto;
    padding: 1.5625rem 1.25rem;
  }
}

.modal__close {
  position: absolute;
  right: 30px;
  right: 1.875rem;
  top: 30px;
  top: 1.875rem;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background: url(../img/common/close-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .modal__close {
    right: 0.625rem;
    top: 0.625rem;
  }
}

.modal__title {
  display: inline-block;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  background: url(../img/common/tel-icon02.png) no-repeat center left/36px;
  background: url(../img/common/tel-icon02.png) no-repeat center left/2.25rem;
  padding-left: 48px;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .modal__title {
    font-size: 1.375rem;
    background-size: 1.5625rem;
    padding-left: 1.875rem;
  }
}

.modal__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .modal__text {
    display: block;
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}
.modal__text span {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background: #CB4F4A;
  border-radius: 0.625rem;
  padding: 5px 15px;
  padding: 0.3125rem 0.9375rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .modal__text span {
    margin-right: 0.625rem;
    padding: 0.3125rem 0.625rem;
  }
}

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

.modal__item {
  width: 260px;
  width: 16.25rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .modal__item {
    width: 100%;
  }
  .modal__item + .modal__item {
    margin-top: 0.625rem;
  }
}

.modal__item-inner {
  display: block;
  border-radius: 1.25rem;
}

.modal__item-text {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: #2988B2;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .modal__item-text {
    font-size: 1.375rem;
  }
}

.modal__item-number {
  font-family: "Akshar", sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  color: #2988B2;
  font-weight: 600;
  background: #F7F7F7;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 18px 5px;
  padding: 1.125rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .modal__item-number {
    font-size: 1.75rem;
    padding: 0.625rem;
  }
}

/* mv */
.mv {
  text-align: center;
  font-weight: 700;
  padding: 50px 0;
  padding: 3.125rem 0;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 2.5rem 0;
  }
}

.mv--plan {
  background: url(../img/plan/plan-mv.jpg) no-repeat center/cover;
}

.mv--news, .mv--event {
  background: url(../img/news/news-mv.jpg) no-repeat center/cover;
}

.mv--column {
  color: #fff;
  background: url(../img/column/column-mv.jpg) no-repeat center/cover;
}

.mv--interview {
  background: url(../img/interview/interview-mv.png) no-repeat center/cover;
  color: #fff;
}
.mv--interview .mv__title, .mv--interview .mv__text {
  text-shadow: 0px 0px 6px rgba(16, 135, 213, .4);
}

.mv--flowers {
  background: url(../img/flowers/flowers-mv.jpg) no-repeat center/cover;
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .mv--flowers {
    padding: 2.5rem 0;
  }
}

.mv__title {
  font-size: 38px;
  font-size: 2.375rem;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.75rem;
  }
}

.mv__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 1.125rem;
  }
}

/* nav */
.nav__items {
  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) {
  .nav__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .nav__item {
    text-align: center;
    width: 50%;
  }
}
.nav__item.recommend a {
  padding-left: 50px;
  padding-left: 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .nav__item.recommend a {
    padding-left: 1.25rem;
  }
}
.nav__item.recommend a::before {
  position: absolute;
  content: "";
  width: 29px;
  width: 1.8125rem;
  height: 37px;
  height: 2.3125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
  left: 0.9375rem;
  background: url(../img/common/recommend-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .nav__item.recommend a::before {
    width: 1.25rem;
    height: 1.875rem;
  }
}
.nav__item.current a {
  border-bottom: 4px solid #1C2087;
  border-bottom: 0.25rem solid #1C2087;
}
@media screen and (max-width: 767px) {
  .nav__item.current a {
    border-bottom: 0.1875rem solid #1C2087;
  }
}
.nav__item a {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2087;
  border-bottom: 4px solid transparent;
  border-bottom: 0.25rem solid transparent;
  padding: 13px 20px;
  padding: 0.8125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .nav__item a {
    font-size: 1rem;
    border-bottom: 0.1875rem solid transparent;
    padding: 0.625rem 0;
  }
}

/* news */
/* pagenaton */
.pagination {
  width: 100%;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1.875rem;
  }
}
.pagination ul {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .pagination ul {
    gap: 0.5rem;
  }
}
.pagination a, .pagination 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: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #AEA69F;
  border-radius: 0.625rem;
  border: 2px solid #AEA69F;
  border: 0.125rem solid #AEA69F;
}
@media screen and (max-width: 767px) {
  .pagination a, .pagination span {
    width: 2.8125rem;
    min-width: 2.8125rem;
    height: 2.8125rem;
    font-size: 1.125rem;
  }
}
.pagination .current {
  color: #fff;
  background: #AEA69F;
}
.pagination .dots {
  width: 35px;
  width: 2.1875rem;
  min-width: 35px;
  min-width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
  border: none;
}
@media screen and (max-width: 767px) {
  .pagination .dots {
    width: 1.875rem;
    min-width: 1.875rem;
    height: 1.875rem;
  }
}
.pagination .prev, .pagination .next {
  width: 95px;
  width: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .pagination .prev, .pagination .next {
    width: 3.75rem;
  }
}

/* plan-card */
.plan-card {
  background: #fff;
  border-radius: 1.25rem;
}
.plan-card.orange {
  border: 1px solid #D57807;
  border: 0.0625rem solid #D57807;
}
.plan-card.orange .plan-card__title {
  background: #D57807;
}
.plan-card.orange .plan-card__subtitle {
  color: #D57807;
}
.plan-card.orange .plan-card__category span.active {
  background: #D57807;
}
.plan-card.orange .plan-card__more span {
  background: url(../img/common/arrow-icon04.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon04.png) no-repeat center right/0.375rem;
}
.plan-card.green {
  border: 1px solid #749617;
  border: 0.0625rem solid #749617;
}
.plan-card.green .plan-card__title {
  background: #749617;
}
.plan-card.green .plan-card__subtitle {
  color: #749617;
}
.plan-card.green .plan-card__category span.active {
  background: #749617;
}
.plan-card.green .plan-card__more span {
  background: url(../img/common/arrow-icon05.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon05.png) no-repeat center right/0.375rem;
}
.plan-card.blue {
  border: 1px solid #4C88AF;
  border: 0.0625rem solid #4C88AF;
}
.plan-card.blue .plan-card__title {
  background: #4C88AF;
}
.plan-card.blue .plan-card__subtitle {
  color: #4C88AF;
}
.plan-card.blue .plan-card__category span.active {
  background: #4C88AF;
}
.plan-card.blue .plan-card__more span {
  background: url(../img/common/arrow-icon06.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon06.png) no-repeat center right/0.375rem;
}
.plan-card.pink {
  border: 1px solid #C15B9E;
  border: 0.0625rem solid #C15B9E;
}
.plan-card.pink .plan-card__title {
  background: #C15B9E;
}
.plan-card.pink .plan-card__subtitle {
  color: #C15B9E;
}
.plan-card.pink .plan-card__category span.active {
  background: #C15B9E;
}
.plan-card.pink .plan-card__more span {
  background: url(../img/common/arrow-icon11.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon11.png) no-repeat center right/0.375rem;
}
.plan-card.green02 {
  border: 1px solid #4B967F;
  border: 0.0625rem solid #4B967F;
}
.plan-card.green02 .plan-card__title {
  background: #4B967F;
}
.plan-card.green02 .plan-card__subtitle {
  color: #4B967F;
}
.plan-card.green02 .plan-card__category span.active {
  background: #4B967F;
}
.plan-card.green02 .plan-card__more span {
  background: url(../img/common/arrow-icon12.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon12.png) no-repeat center right/0.375rem;
}
.plan-card.brown {
  border: 1px solid #9F966D;
  border: 0.0625rem solid #9F966D;
}
.plan-card.brown .plan-card__title {
  background: #9F966D;
}
.plan-card.brown .plan-card__subtitle {
  color: #9F966D;
}
.plan-card.brown .plan-card__category span.active {
  background: #9F966D;
}
.plan-card.brown .plan-card__more span {
  background: url(../img/common/arrow-icon13.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon13.png) no-repeat center right/0.375rem;
}

.plan-card__inner {
  display: block;
}

.plan-card__title {
  text-align: center;
  min-height: 60px;
  min-height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  border-radius: 1.25rem 1.25rem 0 0;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .plan-card__title {
    font-size: 1.5rem;
    padding: 0.5625rem;
  }
}
.plan-card__title span {
  display: inline-block;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  margin-top: -5px;
  margin-top: -0.3125rem;
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .plan-card__title span {
    font-size: 1.5rem;
  }
}

.plan-card__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.78;
  padding: 18px 0;
  padding: 1.125rem 0;
}
@media screen and (max-width: 767px) {
  .plan-card__text {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.875rem 0;
  }
}

.plan-card__subtitle {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
  padding: 17px 0;
  padding: 1.0625rem 0;
}
@media screen and (max-width: 767px) {
  .plan-card__subtitle {
    font-size: 1.125rem;
    padding: 0.875rem 0;
  }
}

@media screen and (max-width: 767px) {
  .plan-card__img {
    width: 90%;
    margin: 0 auto;
  }
}
.plan-card__img img {
  height: 200px;
  height: 12.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.plan-card__body {
  padding: 15px 10px 10px;
  padding: 0.9375rem 0.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .plan-card__body {
    padding: 0.75rem 0.625rem 0.75rem;
  }
}

.plan-card__box {
  border-radius: 0.625rem;
  background: #F7F7F7;
  padding: 10px 5px 15px;
  padding: 0.625rem 0.3125rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .plan-card__box {
    padding: 0.9375rem 0.3125rem 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .plan-card__prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.3125rem;
    white-space: nowrap;
  }
}

.plan-card__price {
  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;
  color: #CB4F4A;
}
.plan-card__price > span:first-child {
  font-family: "Akshar", sans-serif;
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .plan-card__price > span:first-child {
    font-size: 2.875rem;
  }
}
.plan-card__price > span:nth-child(2) {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .plan-card__price > span:nth-child(2) {
    font-size: 1.125rem;
    line-height: 1.2;
  }
}
.plan-card__price > span:nth-child(2) span {
  text-align: left;
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  padding-left: 2px;
  padding-left: 0.125rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .plan-card__price > span:nth-child(2) span {
    font-size: 0.75rem;
    padding-left: 0;
  }
}

.plan-card__tax {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #CB4F4A;
  letter-spacing: 0.1em;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .plan-card__tax {
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.2;
    padding-right: 0;
  }
}
.plan-card__tax .number {
  font-family: "Akshar", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .plan-card__tax .number {
    font-size: 1.25rem;
  }
}

.plan-card__subtext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #6E6E6E;
  line-height: 1.78;
  padding: 5px 0;
  padding: 0.3125rem 0;
}
@media screen and (max-width: 767px) {
  .plan-card__subtext {
    display: block;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 0 0.625rem;
  }
}

.plan-card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  gap: 0.375rem;
  padding: 0 5px;
  padding: 0 0.3125rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .plan-card__category {
    margin-top: 0.3125rem;
    padding: 0;
  }
}
.plan-card__category span {
  text-align: center;
  display: inline-block;
  width: 58px;
  width: 3.625rem;
  max-width: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #C1C1C1;
  border-radius: 0.25rem;
  padding: 1px;
  padding: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .plan-card__category span {
    width: 3.4375rem;
  }
}

.plan-card__more {
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.plan-card__more span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding-right: 13px;
  padding-right: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .plan-card__more span {
    font-size: 1.125rem;
  }
}

/* plan-cards */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .plan-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

/* post */
.post__wrapper {
  border-radius: 1.25rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
  padding: 40px;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__wrapper {
    padding: 1.875rem 0.9375rem;
  }
}

.post__content {
  padding: 60px 120px;
  padding: 3.75rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .post__content {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}

.post__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__header {
    display: block;
  }
}

.post__date {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #C1C1C1;
}
@media screen and (max-width: 767px) {
  .post__date {
    margin-bottom: 0.625rem;
  }
}

.post__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}
.post__category span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #289DD1;
  border: 1px solid #289DD1;
  border: 0.0625rem solid #289DD1;
  border-radius: 1.875rem;
  line-height: 1.4;
  padding: 0 9px;
  padding: 0 0.5625rem;
}
@media screen and (max-width: 767px) {
  .post__category span {
    font-size: 1rem;
  }
}
.post__category span.white {
  color: #289DD1;
  border: 1px solid #289DD1;
  border: 0.0625rem solid #289DD1;
}
.post__category span.blue {
  color: #fff;
  background: #2988B2;
  border-color: #2988B2;
}
.post__category span.gray {
  color: #fff;
  background: #808080;
  border-color: #808080;
}

.post__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__subtitle {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.post__lead {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__lead {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.post__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.36;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .post__title {
    font-size: 1.5rem;
  }
}

.post__img {
  margin-top: 45px;
  margin-top: 2.8125rem;
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .post__img {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}

.post__toc {
  background: #F7F7F7;
  border-radius: 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 35px 45px 50px;
  padding: 2.1875rem 2.8125rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .post__toc {
    padding: 1.25rem;
    margin-top: 1.25rem;
  }
}

.post__toc-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2087;
}
@media screen and (max-width: 767px) {
  .post__toc-title {
    font-size: 1.125rem;
  }
}

.post__toc-list {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .post__toc-list {
    margin-top: 0.625rem;
  }
}

.post__toc-list-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  background: url(../img/common/arrow-icon10.png) no-repeat left top 8px/6px;
  background: url(../img/common/arrow-icon10.png) no-repeat left top 0.5rem/0.375rem;
  padding-left: 13px;
  padding-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .post__toc-list-item {
    font-size: 1rem;
    background-position: left top 0.3125rem;
  }
}
.post__toc-list-item + .post__toc-list-item {
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .post__toc-list-item + .post__toc-list-item {
    margin-top: 0.3125rem;
  }
}
.post__toc-list-item a {
  display: inline-block;
}

.post__body {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .post__body {
    margin-top: 1.875rem;
  }
}
.post__body h2, .post__body h3, .post__body h4, .post__body h5, .post__body h6 {
  margin: 0;
}
.post__body h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #00A0E9;
  border-bottom: 2px solid #00A0E9;
  border-bottom: 0.125rem solid #00A0E9;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__body h2 {
    font-size: 1.375rem;
    margin-bottom: 1.875rem;
  }
}
.post__body h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  color: #1C2087;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .post__body h3 {
    font-size: 1.125rem;
  }
}
.post__body h4 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #1C2087;
  line-height: 1.78;
  font-weight: 700;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .post__body h4 {
    font-size: 1rem;
  }
}
.post__body h5, .post__body h6 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  color: #666;
  font-weight: 700;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .post__body h5, .post__body h6 {
    font-size: 1rem;
  }
}
.post__body p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .post__body p {
    font-size: 1rem;
  }
}
.post__body p:not(:last-child) {
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .post__body p:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__body p a {
  color: #2988B2;
  font-weight: 500;
  text-decoration: underline;
}
.post__body p.has-background {
  border-radius: 0.625rem;
  padding: 17px 20px;
  padding: 1.0625rem 1.25rem;
  font-weight: 500;
}
.post__body figure:not(:last-child) {
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .post__body figure:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__body figcaption {
  font-size: 18px;
  font-size: 1.125rem;
  color: #666;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .post__body figcaption {
    font-size: 1rem;
  }
}
.post__body ul:not(:last-child), .post__body ol:not(:last-child) {
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .post__body ul:not(:last-child), .post__body ol:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__body ul li {
  padding-left: 1em;
  position: relative;
}
.post__body ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
  font-weight: 700;
}
.post__body ol {
  margin-left: 1.5em;
}
.post__body ol li {
  list-style: decimal;
}
.post__body ol li::marker {
  font-weight: 700;
}
.post__body li {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .post__body li {
    font-size: 1rem;
  }
}
.post__body li:not(:first-child) {
  margin-top: 1em;
}
.post__body table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 0.625rem;
  border: 1px solid #C1C1C1;
  border: 0.0625rem solid #C1C1C1;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .post__body table {
    table-layout: fixed;
  }
}
.post__body table:not(:last-child) {
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .post__body table:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__body table tr:first-child th, .post__body table tr:first-child td {
  border-top: none;
}
.post__body table th, .post__body table td {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 11px 45px;
  padding: 0.6875rem 2.8125rem;
  border-top: 1px solid #C1C1C1;
  border-top: 0.0625rem solid #C1C1C1;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .post__body table th, .post__body table td {
    font-size: 1rem;
    padding: 1.25rem;
  }
}
.post__body table th:not(:first-child), .post__body table td:not(:first-child) {
  border-left: 1px solid #C1C1C1;
  border-left: 0.0625rem solid #C1C1C1;
}

.post__back {
  text-align: center;
  display: block;
  width: 270px;
  width: 16.875rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2087;
  border-radius: 0.5rem;
  border: 2px solid #1C2087;
  border: 0.125rem solid #1C2087;
  padding: 13px 0 13px 20px;
  padding: 0.8125rem 0 0.8125rem 1.25rem;
  margin: 110px auto 0;
  margin: 6.875rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post__back {
    font-size: 1.125rem;
    margin-top: 2.5rem;
  }
}
.post__back::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 72px;
  left: 4.5rem;
  background: url(../img/common/back-icon.png) no-repeat center/contain;
}

.post__related {
  border-top: 2px solid #C1C1C1;
  border-top: 0.125rem solid #C1C1C1;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .post__related {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
}

.post__related-title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .post__related-title {
    font-size: 1.5rem;
  }
}

.post__related-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  gap: 1.125rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .post__related-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.post__related-item-inner {
  display: block;
  height: 100%;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
}

.post__related-item-img img {
  border-radius: 1.25rem 1.25rem 0 0;
}

.post__related-item-body {
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .post__related-item-body {
    padding: 1.25rem 0.9375rem;
  }
}

.post__related-item-category span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  background: #808080;
  border-radius: 1.875rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .post__related-item-category span {
    font-size: 1rem;
  }
}
.post__related-item-category span.gray {
  background: #808080;
}
.post__related-item-category span.yellow {
  background: #E4B96F;
}
.post__related-item-category span.green {
  background: #67A460;
}

.post__related-item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .post__related-item-title {
    font-size: 1rem;
  }
}

.post__list {
  border-radius: 0.625rem;
  border: 1px solid #C1C1C1;
  border: 0.0625rem solid #C1C1C1;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .post__list {
    margin-top: 1.875rem;
  }
}

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

.post__list-item-title {
  width: 20%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  background: #F7F7F7;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .post__list-item-title {
    width: 100%;
    font-size: 1.125rem;
    padding: 1.25rem 0.9375rem;
  }
}

.post__list-item-body {
  width: 80%;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  border-left: 1px solid #C1C1C1;
  border-left: 0.0625rem solid #C1C1C1;
  padding: 30px 30px;
  padding: 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__list-item-body {
    width: 100%;
    border-top: 0.0625rem solid #C1C1C1;
    border-left: none;
    padding: 1.25rem 0.9375rem;
  }
}
.post__list-item-body *:not(:last-child) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.post__list-item-body a[href^="tel:"] {
  display: inline-block;
  font-weight: 500;
  background: url(../img/common/tel-icon03.png) no-repeat center left/18px;
  background: url(../img/common/tel-icon03.png) no-repeat center left/1.125rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}

.post__box {
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 20px;
  padding: 1.25rem;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .post__box {
    margin-top: 2.5rem;
    padding: 0.625rem;
  }
}

.post__box-inner {
  text-align: center;
  background: #fff;
  border-radius: 0.625rem;
  padding: 35px 20px 50px;
  padding: 2.1875rem 1.25rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .post__box-inner {
    padding: 1.875rem 0.9375rem;
  }
}

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

.post__box-text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .post__box-text {
    font-size: 1rem;
  }
}

.post__box-btn {
  display: block;
  width: 332px;
  width: 20.75rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #E5700C;
  border-radius: 0.5rem;
  padding: 20px 20px 20px 0;
  padding: 1.25rem 1.25rem 1.25rem 0;
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post__box-btn {
    font-size: 1.25rem;
    margin-top: 1.875rem;
  }
}
.post__box-btn::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 50px;
  right: 3.125rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .post__box-btn::after {
    right: 1.5625rem;
  }
}

.post__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .post__links {
    display: block;
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .post__link + .post__link {
    margin-top: 0.625rem;
  }
}
.post__link a {
  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;
  height: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  border: 2px solid #1C2087;
  border: 0.125rem solid #1C2087;
  border-radius: 0.5rem;
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .post__link a {
    font-size: 1rem;
  }
}
.post__link span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2087;
}
@media screen and (max-width: 767px) {
  .post__link span {
    font-size: 1.125rem;
  }
}

.post__prev, .post__next {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .post__prev, .post__next {
    width: 100%;
  }
}
.post__prev span, .post__next span {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .post__prev span, .post__next span {
    margin-bottom: 0.3125rem;
  }
}

.post__prev span {
  background: url(../img/common/back-icon.png) no-repeat center left/6px;
  background: url(../img/common/back-icon.png) no-repeat center left/0.375rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}

.post__return {
  width: 28%;
}
@media screen and (max-width: 767px) {
  .post__return {
    width: 100%;
  }
}
.post__return a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.post__next span {
  background: url(../img/common/arrow-icon10.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon10.png) no-repeat center right/0.375rem;
  padding-right: 26px;
  padding-right: 1.625rem;
}

/* qa */
.qa__item {
  border-radius: 0.625rem;
  background: #F7F7F7;
  padding: 10px;
  padding: 0.625rem;
}
.qa__item + .qa__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .qa__item + .qa__item {
    margin-top: 1.25rem;
  }
}

.qa__item-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 10px 50px 15px 30px;
  padding: 0.625rem 3.125rem 0.9375rem 1.875rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .qa__item-question {
    font-size: 1.125rem;
    gap: 0.75rem;
    padding: 0.625rem 1.875rem 0.3125rem 0.625rem;
  }
}
.qa__item-question::after, .qa__item-question::before {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: 1px;
  height: 0.0625rem;
  background: #000;
  top: 25px;
  top: 1.5625rem;
  right: 30px;
  right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .qa__item-question::after, .qa__item-question::before {
    width: 1.25rem;
    right: 0.625rem;
  }
}
.qa__item-question::before {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.qa__item-question.active::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.qa__item-question span {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .qa__item-question span {
    font-size: 1.5rem;
  }
}

.qa__item-answer {
  display: none;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.1;
  background: #fff;
  border-radius: 0.625rem;
  padding: 20px 40px;
  padding: 1.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .qa__item-answer {
    font-size: 1rem;
    line-height: 1.8;
    padding: 0.9375rem 1.25rem;
  }
}

/* search */
.search__unit {
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, .06);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, .06);
}
.search__unit + .search__unit {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.search__unit:first-child {
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .search__unit:first-child {
    padding: 0.9375rem 1.25rem 1.25rem;
  }
}
.search__unit:nth-child(2) {
  padding: 40px 40px;
  padding: 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .search__unit:nth-child(2) {
    padding: 0.9375rem 1.25rem 1.25rem;
  }
}
.search__unit:nth-child(3) {
  padding: 30px 25px 40px;
  padding: 1.875rem 1.5625rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .search__unit:nth-child(3) {
    padding: 0.9375rem 0.625rem 1.25rem;
  }
}

.search__word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .search__word {
    display: block;
  }
}

.search__subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.36;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .search__subtitle {
    text-align: center;
    font-size: 1.375rem;
  }
}
.search__subtitle span {
  color: #1C2087;
}

.search__word-input {
  width: 100%;
}
.search__word-input form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .search__word-input form {
    gap: 0.9375rem;
    margin-top: 1.25rem;
  }
}
.search__word-input label {
  position: absolute;
}
.search__word-input input[type=text] {
  width: 100%;
  height: 66px;
  height: 4.125rem;
  background: #F7F7F7;
  border: 1px solid #EAEAEA;
  border: 0.0625rem solid #EAEAEA;
  border-radius: 0.625rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .search__word-input input[type=text] {
    height: 3.125rem;
  }
}
.search__word-input input[type=submit], .search__word-input button {
  text-align: center;
  display: block;
  width: 140px;
  width: 8.75rem;
  min-width: 140px;
  min-width: 8.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #00A0E9;
  border-radius: 0.5rem;
  padding: 15px 0;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .search__word-input input[type=submit], .search__word-input button {
    width: 5.75rem;
    min-width: 5.75rem;
    font-size: 1.125rem;
    padding: 0.75rem;
  }
}

.search__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 740px;
  width: 46.25rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .search__location {
    margin-top: 0.625rem;
  }
}
.search__location:hover {
  opacity: 1;
}
.search__location 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: 100%;
  font-weight: 700;
  color: #fff;
  padding: 12px;
  padding: 0.75rem;
}
.search__location span:first-child {
  font-size: 28px;
  font-size: 1.75rem;
  background: #00AFFF;
  border-radius: 0.625rem 0 0 0.625rem;
  padding-right: 50px;
  padding-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .search__location span:first-child {
    display: none;
  }
}
.search__location span:nth-child(2) {
  width: 160px;
  width: 10rem;
  min-width: 160px;
  min-width: 10rem;
  font-size: 20px;
  font-size: 1.25rem;
  background: #00A0E9;
  border-radius: 0 0.5rem 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .search__location span:nth-child(2) {
    font-size: 1.125rem;
    border-radius: 0.5rem;
    margin: 0 auto;
  }
}

.search__area {
  text-align: center;
}

.search__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
  gap: 6.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .search__tab {
    gap: 1.25rem;
    margin-top: 0.9375rem;
  }
}

.search__tab-item {
  position: relative;
}
.search__tab-item::after {
  position: absolute;
  content: "";
  width: 930px;
  width: 58.125rem;
  height: 84px;
  height: 5.25rem;
  top: -10px;
  top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .search__tab-item::after {
    width: 19.625rem;
    height: 4.25rem;
    top: -0.5rem;
  }
}
.search__tab-item:first-child.current::after {
  left: -160px;
  left: -10rem;
  background: url(../img/common/search-border01_pc.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .search__tab-item:first-child.current::after {
    left: -1.375rem;
    background: url(../img/common/search-border01_sp.png) no-repeat center/contain;
  }
}
.search__tab-item:first-child button {
  background: #448032;
}
.search__tab-item:nth-child(2).current::after {
  right: -160px;
  right: -10rem;
  background: url(../img/common/search-border02_pc.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .search__tab-item:nth-child(2).current::after {
    right: -1.375rem;
    background: url(../img/common/search-border02_sp.png) no-repeat center/contain;
  }
}
.search__tab-item:nth-child(2) button {
  background: #2988B2;
}
.search__tab-item button {
  text-align: center;
  display: block;
  width: 250px;
  width: 15.625rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.5rem;
  padding: 18px;
  padding: 1.125rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .search__tab-item button {
    width: 8rem;
    font-size: 1.125rem;
    padding: 0.75rem;
  }
}
.search__tab-item button:hover {
  opacity: 1;
}

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

.search__content {
  display: none;
}
.search__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;
}
.search__content:first-child .search__link a {
  color: #448032;
}
.search__content:nth-child(2) .search__link a {
  color: #2988B2;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.search__links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .search__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem 1.25rem;
    padding: 0 0.9375rem;
  }
}

.search__link a {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  background: #F7F7F7;
  border-radius: 0.5rem;
  padding: 18px 0;
  padding: 1.125rem 0;
}
@media screen and (max-width: 767px) {
  .search__link a {
    font-size: 1.125rem;
    padding: 0.75rem 0;
  }
}

.search__map {
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .search__map {
    margin-top: 1.25rem;
  }
}
.search__map iframe {
  aspect-ratio: 980/420;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .search__map iframe {
    aspect-ratio: 400/400;
  }
}

/* sidebar */
.sidebar__unit {
  border: 1px solid #AEA69F;
  border: 0.0625rem solid #AEA69F;
  border-radius: 1.25rem;
}
.sidebar__unit + .sidebar__unit {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit + .sidebar__unit {
    margin-top: 1.25rem;
  }
}

.sidebar__unit--document {
  position: relative;
}
.sidebar__unit--document::before {
  position: absolute;
  content: "";
  width: 88px;
  width: 5.5rem;
  height: 100px;
  height: 6.25rem;
  top: 0;
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/document-img.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .sidebar__unit--document::before {
    width: 4.375rem;
    height: 5.3125rem;
  }
}
.sidebar__unit--document .sidebar__unit-title {
  padding-right: 80px;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit--document .sidebar__unit-title {
    padding-right: 2.5rem;
  }
}

.sidebar__unit-title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  background: #AEA69F;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 14px;
  padding: 0.875rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-title {
    font-size: 1.375rem;
  }
}

.sidebar__unit-body {
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}

.sidebar__unit-select-wrapper:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.sidebar__unit-select-wrapper:last-of-type {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-select-wrapper:last-of-type {
    margin-bottom: 1.875rem;
  }
}

.sidebar__unit-label {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #867B71;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-label {
    font-size: 1.125rem;
  }
}

.sidebar__unit-select {
  text-align: center;
  background: #F7F7F7;
  border-radius: 0.5rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.sidebar__unit-select select {
  text-align: center;
  width: 100%;
  height: 60px;
  height: 3.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #C1C1C1;
  background: url(../img/common/select-icon.png) no-repeat center right 20px/14px;
  background: url(../img/common/select-icon.png) no-repeat center right 1.25rem/0.875rem;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-select select {
    font-size: 1.125rem;
  }
}
.sidebar__unit-select select.active {
  color: #000;
}

.sidebar__unit-input input[type=text] {
  text-align: center;
  background: #F7F7F7;
  border-radius: 0.5rem;
  width: 100%;
  height: 60px;
  height: 3.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-input input[type=text] {
    font-size: 1.125rem;
  }
}
.sidebar__unit-input input[type=text]::-webkit-input-placeholder {
  color: #C1C1C1;
}
.sidebar__unit-input input[type=text]::-moz-placeholder {
  color: #C1C1C1;
}
.sidebar__unit-input input[type=text]::-ms-input-placeholder {
  color: #C1C1C1;
}
.sidebar__unit-input input[type=text]::placeholder {
  color: #C1C1C1;
}

.sidebar__unit-text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: #AEA69F;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-text {
    font-size: 1.125rem;
  }
}

.sidebar__unit-btn {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  padding: 15px;
  padding: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-btn {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}
.sidebar__unit-btn.bg-blue {
  background: #41459B;
}
.sidebar__unit-btn.bg-gray {
  background: #AEA69F;
}

.sidebar__unit-link + .sidebar__unit-link {
  border-top: 1px solid #AEA69F;
  border-top: 0.0625rem solid #AEA69F;
}
.sidebar__unit-link.current a {
  background: #F7F7F7;
}
.sidebar__unit-link:first-child.current a {
  color: #C44D4E;
}
.sidebar__unit-link:first-child a::before {
  background: #C44D4E;
}
.sidebar__unit-link:nth-child(2).current a {
  color: #75ACCE;
}
.sidebar__unit-link:nth-child(2) a::before {
  background: #75ACCE;
}
.sidebar__unit-link:nth-child(3).current a {
  color: #DF8C86;
}
.sidebar__unit-link:nth-child(3) a::before {
  background: #DF8C86;
}
.sidebar__unit-link:nth-child(4).current a {
  color: #67A460;
}
.sidebar__unit-link:nth-child(4) a::before {
  background: #67A460;
}
.sidebar__unit-link:nth-child(5).current a {
  color: #BD8B72;
}
.sidebar__unit-link:nth-child(5) a::before {
  background: #BD8B72;
}
.sidebar__unit-link:nth-child(6).current a {
  color: #5B5497;
}
.sidebar__unit-link:nth-child(6) a::before {
  background: #5B5497;
}
.sidebar__unit-link:nth-child(7).current a {
  color: #808080;
}
.sidebar__unit-link:nth-child(7) a::before {
  background: #808080;
}
.sidebar__unit-link:nth-child(8).current a {
  color: #E4B96F;
}
.sidebar__unit-link:nth-child(8) a::before {
  background: #E4B96F;
}
.sidebar__unit-link:nth-child(9).current a {
  color: #D798B2;
}
.sidebar__unit-link:nth-child(9) a::before {
  background: #D798B2;
}
.sidebar__unit-link:nth-child(10).current a {
  color: #A5D0A0;
}
.sidebar__unit-link:nth-child(10) a::before {
  background: #A5D0A0;
}
.sidebar__unit-link a {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 10px 10px 10px 30px;
  padding: 0.625rem 0.625rem 0.625rem 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-link a {
    font-size: 1.125rem;
  }
}
.sidebar__unit-link a::before {
  position: absolute;
  content: "";
  width: 4px;
  width: 0.25rem;
  height: 26px;
  height: 1.625rem;
  top: 13px;
  top: 0.8125rem;
  left: 20px;
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-link a::before {
    top: 0.6875rem;
  }
}

.sidebar__unit-item + .sidebar__unit-item {
  border-top: 1px solid #AEA69F;
  border-top: 0.0625rem solid #AEA69F;
  padding-top: 20px;
  padding-top: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-item + .sidebar__unit-item {
    padding-top: 0.9375rem;
    margin-top: 0.9375rem;
  }
}
.sidebar__unit-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-item a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
    font-size: 1rem;
  }
}
.sidebar__unit-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: 40px;
  width: 2.5rem;
  min-width: 40px;
  min-width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  background: #AEA69F;
  border-radius: 50%;
  color: #fff;
  line-height: 1;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sidebar__unit-item span {
    width: 2.1875rem;
    min-width: 2.1875rem;
    height: 2.1875rem;
    font-size: 1.5rem;
    margin-top: 0;
  }
}

.sidebar__calendar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  gap: 1.5625rem;
}

.sidebar__calendar-arrow {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}
.sidebar__calendar-arrow button {
  display: block;
  width: 100%;
  height: 100%;
}
.sidebar__calendar-arrow button:hover {
  opacity: 1;
}

.sidebar__calendar-prev button {
  background: url(../img/common/prev-icon02.png) no-repeat center/contain;
}

.sidebar__calendar-next button {
  background: url(../img/common/next-icon02.png) no-repeat center/contain;
}

.sidebar__calendar-date {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #867B71;
}

.sidebar__calendar-table {
  width: 190px;
  width: 11.875rem;
  max-width: 100%;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .sidebar__calendar-table {
    margin-top: 1.25rem;
  }
}
.sidebar__calendar-table th, .sidebar__calendar-table td {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.sidebar__calendar-table th {
  font-weight: 500;
  color: #867B71;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
.sidebar__calendar-table td.gray {
  color: #C1C1C1;
}
.sidebar__calendar-table td a {
  display: block;
}

/* subheading */
.subheading {
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.subheading span {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  color: #1C2087;
  border-radius: 1.875rem;
  border: 1px solid #1C2087;
  border: 0.0625rem solid #1C2087;
  padding: 4px 25px;
  padding: 0.25rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .subheading span {
    font-size: 1.125rem;
    padding: 0.1875rem 0.9375rem;
  }
}

/* subtitle */
.subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  color: #1C2087;
  border-bottom: 2px solid #1C2087;
  border-bottom: 0.125rem solid #1C2087;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 1.5rem;
  }
}

/* title */
.title {
  text-align: center;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.44;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.75rem;
  }
}

/* 更新用 */
section .tel-banner__box {
  max-width: unset;
  border-radius: 2.5rem;
  background: url(../img/common/tel-banner-bg.png) no-repeat center/cover;
  padding: 60px 90px;
  padding: 3.75rem 5.625rem;
}
@media screen and (max-width: 767px) {
  section .tel-banner__box {
    border-radius: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}
section .tel-banner__bg::after {
  display: none;
}
section .tel-banner__meta {
  color: #000;
}
section .tel-banner__phone {
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  section .tel-banner__phone {
    border-radius: 0.625rem;
  }
}
section .tel-banner__title {
  font-size: 38px;
  font-size: 2.375rem;
  border-radius: 1.25rem 1.25rem 0 0;
  border-radius: 1.25rem 1.25rem 0 0;
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  section .tel-banner__title {
    font-size: 1.5rem;
    border-radius: 0.625rem 0.625rem 0 0;
    margin-bottom: 1.25rem;
  }
}
section .tel-banner__title span {
  color: #CB4F4A;
}
section .tel-banner__phone-area {
  padding: 7px 0;
  padding: 0.4375rem 0;
}
section .tel-banner__phone-num {
  font-family: "Akshar", sans-serif;
  font-weight: 600;
  border-radius: 0 0 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  section .tel-banner__phone-num {
    border-radius: 0 0 0.625rem 0.625rem;
  }
}
section .tel-banner__staff {
  background: rgba(255, 255, 255, .6);
  padding: 17px 30px 17px 130px;
  padding: 1.0625rem 1.875rem 1.0625rem 8.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  section .tel-banner__staff {
    padding: 0.75rem 0.9375rem 3.75rem;
  }
}
section .tel-banner__staff::before {
  position: absolute;
  content: "";
  width: 95px;
  width: 5.9375rem;
  height: 120px;
  height: 7.5rem;
  left: 20px;
  left: 1.25rem;
  bottom: 0;
  background: url(../img/common/tel-banner-img.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  section .tel-banner__staff::before {
    width: 4.0625rem;
    height: 5rem;
    left: unset;
    right: 0.625rem;
  }
}
section .tel-banner__staff-text {
  font-size: 22px;
  font-size: 1.375rem;
  color: #CB4F4A;
}
@media screen and (max-width: 767px) {
  section .tel-banner__staff-text {
    font-size: 1rem;
  }
}
section .tel-banner__check-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  background: url(../img/common/check-icon04.png) no-repeat left top 6px/23px;
  background: url(../img/common/check-icon04.png) no-repeat left top 0.375rem/1.4375rem;
  padding-left: 28px;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  section .tel-banner__check-item {
    font-size: 1rem;
    background-size: 1.0625rem;
    padding-left: 1.25rem;
  }
}
section .tel-banner__check-item::before {
  display: none;
}
section .tel-banner__check-item:not(:last-child) {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  section .tel-banner__check-item:not(:last-child) {
    margin-bottom: 0.375rem;
  }
}
section .member-price-card {
  background: #F7F7F7;
  border-radius: 1.25rem;
  border: none;
  padding: 10px;
  padding: 0.625rem;
}
section .member-price-card__img {
  width: 49%;
  background: none;
}
@media screen and (max-width: 767px) {
  section .member-price-card__img {
    width: 100%;
  }
}
section .member-price-card__img img {
  border-radius: 1.25rem;
}
section .member-price-card__body {
  padding: 30px 20px 0;
  padding: 1.875rem 1.25rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  section .member-price-card__body {
    padding: 1.25rem 0.625rem;
  }
}
section .member-price-card__body::after {
  position: absolute;
  content: "";
  width: 84px;
  width: 5.25rem;
  height: 112px;
  height: 7rem;
  right: 20px;
  right: 1.25rem;
  top: 20px;
  top: 1.25rem;
  background: url(../img/common/member-price-card-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  section .member-price-card__body::after {
    width: 3.75rem;
    height: 5.625rem;
    top: -0.9375rem;
    right: 0;
  }
}
section .member-price-card__price-wrapper {
  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;
  color: #CB4F4A;
  line-height: 1.1;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  padding-right: 50px;
  padding-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  section .member-price-card__price-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0.9375rem;
    padding-right: 0;
  }
}
section .member-price-card__price-title {
  width: 76px;
  width: 4.75rem;
  height: 76px;
  height: 4.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #CB4F4A;
  border: 0.0625rem solid #CB4F4A;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  section .member-price-card__price-title {
    width: 3.4375rem;
    min-width: 3.4375rem;
    height: 3.4375rem;
    font-size: 1rem;
    margin-right: 0.375rem;
  }
}
section .member-price-card__price-number {
  font-family: "Akshar", sans-serif;
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  section .member-price-card__price-number {
    font-size: 3.125rem;
  }
}
section .member-price-card__price-text {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  section .member-price-card__price-text {
    font-size: 1.5rem;
  }
}
section .member-price-card__price-text span {
  display: block;
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  section .member-price-card__price-text span {
    font-size: 1rem;
  }
}
section .member-price-card__points {
  background: #fff;
  border: none;
  border-radius: 1.25rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  section .member-price-card__points {
    display: block;
  }
}
section .member-price-card__point {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  padding: 13px 0;
  padding: 0.8125rem 0;
}
@media screen and (max-width: 767px) {
  section .member-price-card__point {
    padding: 0;
  }
}
section .member-price-card__point:not(:last-child) {
  border-right: 1px solid #000;
  border-right: 0.0625rem solid #000;
  padding-right: 12px;
  padding-right: 0.75rem;
  margin-right: 12px;
  margin-right: 0.75rem;
}
@media screen and (max-width: 767px) {
  section .member-price-card__point:not(:last-child) {
    border-right: none;
    border-bottom: 0.0625rem solid #000;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
section .member-price-card__point-label {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}
@media screen and (max-width: 767px) {
  section .member-price-card__point-label {
    font-size: 1.125rem;
    margin-bottom: 0.1875rem;
  }
}
section .member-price-card__point-value {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #CB4F4A;
}
@media screen and (max-width: 767px) {
  section .member-price-card__point-value {
    font-size: 1.125rem;
  }
}

.kyosai-plan-card {
  background: #fff;
  border: 10px solid #CBE3F2;
  border: 0.625rem solid #CBE3F2;
  border-radius: 1.25rem;
  padding: 30px 50px;
  padding: 1.875rem 3.125rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card {
    border: 0.3125rem solid #CBE3F2;
    padding: 1.25rem;
    margin-top: 1.25rem;
  }
}

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

.kyosai-plan-card__img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__img {
    width: 100%;
  }
}
.kyosai-plan-card__img img {
  border-radius: 0.625rem;
}

.kyosai-plan-card__body {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.kyosai-plan-card__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__subtitle {
    font-size: 1.125rem;
  }
}

.kyosai-plan-card__title {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
  color: #4B88AF;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__title {
    font-size: 1.75rem;
  }
}

.kyosai-plan-card__price-wrapper {
  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;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__price-wrapper {
    display: block;
    margin-top: 0.9375rem;
  }
}

.kyosai-plan-card__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #CB4F4A;
}

.kyosai-plan-card__price {
  font-family: "Akshar", sans-serif;
  font-size: 75px;
  font-size: 4.6875rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__price {
    font-size: 3.4375rem;
  }
}

.kyosai-plan-card__tax {
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__tax {
    font-size: 1.5rem;
  }
}
.kyosai-plan-card__tax span {
  text-align: center;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: -5px;
  margin-bottom: -0.3125rem;
}

.kyosai-plan-card__general-prices {
  border-radius: 0.625rem;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  line-height: 1.4;
  padding: 3px 10px 2px;
  padding: 0.1875rem 0.625rem 0.125rem;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__general-prices {
    display: inline-block;
    margin-top: 0.625rem;
  }
}

.kyosai-plan-card__general-tax span {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__general-tax span {
    font-size: 1.125rem;
  }
}

.kyosai-plan-card__general-price {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__general-price {
    font-size: 1rem;
  }
}
.kyosai-plan-card__general-price span {
  font-family: "Akshar", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__general-price span {
    font-size: 1.375rem;
  }
}

.kyosai-plan-card__category {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  gap: 0.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__category {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem;
    margin-top: 1.25rem;
  }
}
.kyosai-plan-card__category span {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #2988B2;
  border-radius: 0.3125rem;
  padding: 6px;
  padding: 0.375rem;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__category span {
    font-size: 1rem;
  }
}

.kyosai-plan-card__subheading {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2988B2;
  border-bottom: 1px solid #2988B2;
  border-bottom: 0.0625rem solid #2988B2;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__subheading {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}

.kyosai-plan-card__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  gap: 3.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__check {
    display: block;
    margin-top: 0.625rem;
  }
}

.kyosai-plan-card__check-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  background: url(../img/common/check-icon04.png) no-repeat left top 6px/23px;
  background: url(../img/common/check-icon04.png) no-repeat left top 0.375rem/1.4375rem;
  padding-left: 36px;
  padding-left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .kyosai-plan-card__check-item {
    font-size: 1rem;
    background-size: 1.0625rem;
    padding-left: 1.25rem;
  }
  .kyosai-plan-card__check-item + .kyosai-plan-card__check-item {
    margin-top: 0.3125rem;
  }
}
.kyosai-plan-card__check-item::before {
  display: none;
}

/* hall-card tel: SP=「電話をかける」/ PC=電話番号のみ */
.hall-card__btn.tel .tel__label {
  display: inline;
}

.hall-card__btn.tel .tel__number {
  display: none;
}

@media (min-width: 768px) {
  .hall-card__btn.tel .tel__label {
    display: none;
  }
  .hall-card__btn.tel .tel__number {
    display: inline;
  }
}
/* 斎場カード telボタン: PC=電話番号表示 / SP=テキスト表示 */
.hall-unit__btn a.tel .tel__number {
  display: none;
}

.hall-unit__btn a.tel .tel__label {
  display: inline;
}

@media (min-width: 769px) {
  .hall-unit__btn a.tel .tel__label {
    display: none;
  }
  .hall-unit__btn a.tel .tel__number {
    display: inline;
  }
}
/* voice-card */
.voice-card {
  background: rgba(251, 249, 246, .8);
  border-radius: 1.25rem;
  padding: 25px 30px 25px;
  padding: 1.5625rem 1.875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .voice-card {
    padding: 1.25rem;
  }
}
.voice-card::after {
  content: "";
  display: block;
  clear: both;
}

.voice-card__icon {
  float: left;
  width: 130px;
  width: 8.125rem;
  min-width: 130px;
  min-width: 8.125rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .voice-card__icon {
    float: unset;
    margin: 0 auto;
  }
}

.voice-card__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .voice-card__text {
    line-height: 1.56;
    margin-top: 0.625rem;
  }
}

.voice-card__name {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  font-weight: 500;
  color: #00A0E9;
}
@media screen and (max-width: 767px) {
  .voice-card__name {
    line-height: 1.56;
  }
}

/* voice-cards */
.voice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .voice-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

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

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

/* column-archive */
.column-archive__items {
  width: 750px;
  width: 46.875rem;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .column-archive__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.column-archive__item-inner {
  display: block;
  height: 100%;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
}

.column-archive__item-img img {
  aspect-ratio: 360/203;
  border-radius: 1.25rem 1.25rem 0 0;
}

.column-archive__item-body {
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .column-archive__item-body {
    padding: 1.25rem;
  }
}

.column-archive__item-category span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  background: #808080;
  border-radius: 1.875rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}
.column-archive__item-category span.gray {
  background: #808080;
}
.column-archive__item-category span.yellow {
  background: #E4B96F;
}
.column-archive__item-category span.green {
  background: #67A460;
}

.column-archive__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.column-archive__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .column-archive__item-text {
    line-height: 1.6;
    margin-top: 0.625rem;
  }
}

/* column-sigle */
/* company */
/* evenmt-archive */
.event-archive__item + .event-archive__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .event-archive__item + .event-archive__item {
    margin-top: 1.25rem;
  }
}

.event-archive__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
  border-radius: 1.25rem;
  border: 3px solid #F7F7F7;
  border: 0.1875rem solid #F7F7F7;
  padding: 30px 40px 40px;
  padding: 1.875rem 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .event-archive__item-inner {
    display: block;
    padding: 1.25rem;
  }
}

.event-archive__item-img {
  width: 170px;
  width: 10.625rem;
  min-width: 170px;
  min-width: 10.625rem;
}
@media screen and (max-width: 767px) {
  .event-archive__item-img {
    width: 100%;
  }
}
.event-archive__item-img img {
  border-radius: 0.625rem;
}

@media screen and (max-width: 767px) {
  .event-archive__item-body {
    margin-top: 0.9375rem;
  }
}

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

.event-archive__item-date {
  display: inline-block;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  color: #C1C1C1;
}
@media screen and (max-width: 767px) {
  .event-archive__item-date {
    font-size: 1.5rem;
  }
}
.event-archive__item-date span:first-child {
  font-size: 18px;
  font-size: 1.125rem;
}
.event-archive__item-date span:nth-child(2) {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .event-archive__item-date span:nth-child(2) {
    font-size: 1.75rem;
  }
}

.event-archive__item-category span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  background: #2988B2;
  border-radius: 1.875rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}
.event-archive__item-category span.blue {
  background: #2988B2;
}
.event-archive__item-category span.green {
  background: #29B100;
}
.event-archive__item-category span.purple {
  background: #9A679F;
}
.event-archive__item-category span.light-blue {
  background: #00A0E9;
}

.event-archive__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .event-archive__item-title {
    margin-top: 0.9375rem;
  }
}

.event-archive__item-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  gap: 1.0625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .event-archive__item-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
}

.event-archive__item-link.apply a {
  width: 178px;
  width: 11.125rem;
  background: #E5700C;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .event-archive__item-link.apply a {
    width: 8.75rem;
  }
}
.event-archive__item-link.apply a::after {
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
.event-archive__item-link.more a {
  width: 142px;
  width: 8.875rem;
  color: #E5700C;
}
@media screen and (max-width: 767px) {
  .event-archive__item-link.more a {
    width: 6.875rem;
  }
}
.event-archive__item-link.more a::after {
  background: url(../img/common/arrow-icon04.png) no-repeat center/contain;
}
.event-archive__item-link a {
  text-align: center;
  display: block;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.5rem;
  border: 1px solid #E5700C;
  border: 0.0625rem solid #E5700C;
  padding: 7px 15px 7px 0;
  padding: 0.4375rem 0.9375rem 0.4375rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .event-archive__item-link a {
    font-size: 1rem;
    padding-right: 0.75rem;
  }
}
.event-archive__item-link a::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .event-archive__item-link a::after {
    right: 0.5625rem;
  }
}

/* event-single */
/* back-btn */
.back-btn-wrapper {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .back-btn-wrapper {
    padding: 1.875rem 0;
  }
}

.back-btn {
  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: 270px;
  width: 16.875rem;
  max-width: 100%;
  height: 60px;
  height: 3.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2087;
  background: #fff;
  border: 2px solid #1C2087;
  border: 0.125rem solid #1C2087;
  border-radius: 0.5rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .back-btn {
    font-size: 1.125rem;
  }
}
.back-btn::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 42px;
  left: 2.625rem;
  background: url(../img/common/back-icon.png) no-repeat center/contain;
}

/* cart */
.cart__content {
  background: #fff;
}
.cart__content .l-section {
  padding: 60px 0 90px;
  padding: 3.75rem 0 5.625rem;
}
@media screen and (max-width: 767px) {
  .cart__content .l-section {
    padding: 1.875rem 0;
  }
}

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

.cart__img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .cart__img {
    width: 100%;
  }
}
.cart__img img {
  border-radius: 0.625rem;
}

.cart__body {
  width: 56.5%;
}
@media screen and (max-width: 767px) {
  .cart__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.cart__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 94px;
  gap: 5.875rem;
  background: #FBF9F6;
  border-radius: 0.625rem;
  border: 1px solid #D9D9D9;
  border: 0.0625rem solid #D9D9D9;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .cart__box {
    display: block;
    margin-top: 1.25rem;
    padding: 0.9375rem;
  }
}

.cart__box-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .cart__box-list {
    margin-top: 0.625rem;
  }
}

.cart__box-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  gap: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .cart__box-list-item {
    gap: 1.25rem;
  }
}
.cart__box-list-item + .cart__box-list-item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.cart__box-list-item.member .cart__box-list-body {
  color: #CB4F4A;
}

.cart__box-list-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
}

.cart__box-list-price {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.cart__box-list-price span {
  font-family: "Akshar", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .cart__box-list-price span {
    font-size: 1.5rem;
  }
}

.cart__box-list-tax {
  font-size: 14px;
  font-size: 0.875rem;
}

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

.cart__item.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .cart__item.flex {
    display: block;
  }
}
.cart__item.flex .cart__item-input {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .cart__item.flex .cart__item-input {
    margin-top: 0.625rem;
  }
}
.cart__item + .cart__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .cart__item + .cart__item {
    margin-top: 1.875rem;
  }
}

.cart__item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .cart__item-label {
    display: block;
  }
}
.cart__item-label label {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.cart__item-label label span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #CB4F4A;
  border-radius: 0.25rem;
  padding: 0 4px;
  padding: 0 0.25rem;
  margin-left: 8px;
  margin-left: 0.5rem;
}

.cart__item-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .cart__item-numbers {
    gap: 1.875rem;
  }
}

.cart__item-number {
  font-family: "Akshar", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
}

.cart__item-caution {
  font-size: 14px;
  font-size: 0.875rem;
  color: #CB4F4A;
  line-height: 1.43;
}

.cart__item-note {
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .cart__item-note {
    display: block;
    padding-top: 0;
    margin-top: 0.3125rem;
  }
}

.cart__item-text {
  line-height: 1.6;
  padding-top: 2px;
  padding-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .cart__item-text {
    display: block;
    font-size: 0.9375rem;
    padding-top: 0;
    margin-top: 0.3125rem;
  }
}

.cart__item-input {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.cart__item-input input[type=text], .cart__item-input input[type=tel], .cart__item-input input[type=email], .cart__item-input textarea {
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 0.625rem;
  background: #F7F7F7;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cart__item-input input[type=text], .cart__item-input input[type=tel], .cart__item-input input[type=email], .cart__item-input textarea {
    font-size: 1rem;
  }
}
.cart__item-input input[type=text]::-webkit-input-placeholder, .cart__item-input input[type=tel]::-webkit-input-placeholder, .cart__item-input input[type=email]::-webkit-input-placeholder, .cart__item-input textarea::-webkit-input-placeholder {
  color: #989898;
}
.cart__item-input input[type=text]::-moz-placeholder, .cart__item-input input[type=tel]::-moz-placeholder, .cart__item-input input[type=email]::-moz-placeholder, .cart__item-input textarea::-moz-placeholder {
  color: #989898;
}
.cart__item-input input[type=text]::-ms-input-placeholder, .cart__item-input input[type=tel]::-ms-input-placeholder, .cart__item-input input[type=email]::-ms-input-placeholder, .cart__item-input textarea::-ms-input-placeholder {
  color: #989898;
}
.cart__item-input input[type=text]::placeholder, .cart__item-input input[type=tel]::placeholder, .cart__item-input input[type=email]::placeholder, .cart__item-input textarea::placeholder {
  color: #989898;
}
.cart__item-input input[type=text], .cart__item-input input[type=tel], .cart__item-input input[type=email] {
  height: 60px;
  height: 3.75rem;
}
.cart__item-input textarea {
  height: 95px;
  height: 5.9375rem;
  resize: none;
}

.cart__item-radio {
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cart__item-radio {
    padding-left: 0;
  }
}
.cart__item-radio label {
  display: inline-block;
}
.cart__item-radio label:not(:last-child) {
  margin-right: 35px;
  margin-right: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .cart__item-radio label:not(:last-child) {
    margin-right: 1.25rem;
  }
}
.cart__item-radio input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cart__item-radio input[type=radio] + span {
    font-size: 1rem;
  }
}
.cart__item-radio input[type=radio] + span::before, .cart__item-radio input[type=radio] + span::after {
  position: absolute;
  content: "";
}
.cart__item-radio input[type=radio] + span::before {
  display: block;
  border-radius: 50%;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
}
.cart__item-radio input[type=radio] + span::after {
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
  background: #888;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 5px;
  left: 0.3125rem;
  top: 7px;
  top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .cart__item-radio input[type=radio] + span::after {
    top: 0.375rem;
  }
}
.cart__item-radio input[type=radio]:checked + span::after {
  opacity: 1;
}

.cart__btn {
  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: 470px;
  width: 29.375rem;
  max-width: 100%;
  height: 70px;
  height: 4.375rem;
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  font-weight: 700;
  border-radius: 0.625rem;
  background: #1C2087;
  padding-left: 40px;
  padding-left: 2.5rem;
  margin: 70px auto 0;
  margin: 4.375rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cart__btn {
    width: 18.75rem;
    font-size: 1.25rem;
    margin-top: 1.875rem;
  }
}
.cart__btn::before {
  position: absolute;
  content: "";
  width: 26px;
  width: 1.625rem;
  height: 25px;
  height: 1.5625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 135px;
  left: 8.4375rem;
  background: url(../img/common/cart-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cart__btn::before {
    left: 3.75rem;
  }
}

/* download */
.download__content .l-section {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .download__content .l-section {
    padding-top: 1.875rem;
  }
}
.download__content .l-inner {
  max-width: 1030px;
  max-width: 64.375rem;
}

.download__unit {
  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;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .download__unit {
    display: block;
    padding: 1.25rem;
  }
}
.download__unit + .download__unit {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .download__unit + .download__unit {
    margin-top: 1.25rem;
  }
}

.download__unit-img {
  width: 32.5%;
}
@media screen and (max-width: 767px) {
  .download__unit-img {
    width: 100%;
  }
}
.download__unit-img img {
  border-radius: 0.625rem;
}

.download__unit-body {
  width: 64%;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .download__unit-body {
    width: 100%;
    margin-top: 0.9375rem;
  }
}

.download__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1C2087;
}
@media screen and (max-width: 767px) {
  .download__unit-title {
    font-size: 1.25rem;
  }
}

.download__unit-list {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.download__unit-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .download__unit-list-item {
    gap: 0;
    white-space: nowrap;
  }
}
.download__unit-list-item + .download__unit-list-item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.download__unit-list-item.fax .download__unit-list-title {
  background: url(../img/common/fax-icon.png) no-repeat center left/23px;
  background: url(../img/common/fax-icon.png) no-repeat center left/1.4375rem;
}
@media screen and (max-width: 767px) {
  .download__unit-list-item.fax .download__unit-list-title {
    background-size: 1.125rem;
  }
}
.download__unit-list-item.tel .download__unit-list-title {
  background: url(../img/common/tel-icon02.png) no-repeat center left/18px;
  background: url(../img/common/tel-icon02.png) no-repeat center left/1.125rem;
}
@media screen and (max-width: 767px) {
  .download__unit-list-item.tel .download__unit-list-title {
    padding-left: 1.25rem;
    background-size: 0.9375rem;
  }
}

.download__unit-list-title {
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .download__unit-list-title {
    font-size: 0.9375rem;
    padding-left: 1.5625rem;
  }
}

.download__unit-list-text {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .download__unit-list-text {
    font-size: 1.25rem;
  }
}

.download__unit-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .download__unit-btns {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
  }
}

.download__unit-btn.download a {
  background: #E85884;
  padding-left: 30px;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .download__unit-btn.download a {
    padding-left: 1.25rem;
  }
}
.download__unit-btn.download a::before {
  position: absolute;
  content: "";
  width: 22px;
  width: 1.375rem;
  height: 18px;
  height: 1.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 65px;
  left: 4.0625rem;
  background: url(../img/common/download-icon.png) no-repeat center/contain;
}
.download__unit-btn.tel a {
  background: #41459B;
}
.download__unit-btn a {
  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;
  height: 60px;
  height: 3.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .download__unit-btn a {
    width: 18.75rem;
    font-size: 1.125rem;
    margin: 0 auto;
  }
}

.download__offer .offer__btns {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .download__offer .offer__btns {
    margin-top: 1.875rem;
  }
}
.download__offer .offer__btn a {
  width: 240px;
  width: 15rem;
  height: 60px;
  height: 3.75rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .download__offer .offer__btn a {
    font-size: 1.125rem;
  }
}

/* flowers */
.flowers .lead {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .flowers .lead {
    margin-top: 0.625rem;
  }
}

.flowers__header {
  text-align: center;
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .flowers__header {
    padding: 1.875rem 0;
  }
}

.flowers__subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #CB4F4A;
  line-height: 1.57;
}
@media screen and (max-width: 767px) {
  .flowers__subtitle {
    font-size: 1.5rem;
  }
}

.flowers__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .flowers__text {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.flowers__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  gap: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flowers__boxes {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.25rem;
  }
}

.flowers__box {
  background: #fff;
  border-radius: 1.25rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .flowers__box {
    padding: 1.5625rem 0.9375rem;
  }
}
.flowers__box:first-child {
  border: 10px solid #F6E3CB;
  border: 0.625rem solid #F6E3CB;
}
@media screen and (max-width: 767px) {
  .flowers__box:first-child {
    border: 0.3125rem solid #F6E3CB;
  }
}
.flowers__box:first-child .flowers__box-title {
  color: #D57808;
}
.flowers__box:first-child .flowers__box-btn {
  background: #D57808;
}
@media screen and (max-width: 767px) {
  .flowers__box:first-child .flowers__box-btn {
    font-size: 1rem;
  }
}
.flowers__box:first-child .flowers__box-btn::after {
  right: 25px;
  right: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .flowers__box:first-child .flowers__box-btn::after {
    right: 1.25rem;
  }
}
.flowers__box:nth-child(2) {
  border: 10px solid #F5E7EB;
  border: 0.625rem solid #F5E7EB;
}
@media screen and (max-width: 767px) {
  .flowers__box:nth-child(2) {
    border: 0.3125rem solid #F5E7EB;
  }
}
.flowers__box:nth-child(2) .flowers__box-title {
  color: #E85884;
}
.flowers__box:nth-child(2) .flowers__box-btn {
  background: #E85884;
}
.flowers__box:nth-child(2) .flowers__box-btn::after {
  right: 50px;
  right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .flowers__box:nth-child(2) .flowers__box-btn::after {
    right: 1.5625rem;
  }
}

.flowers__box-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flowers__box-title {
    font-size: 1.375rem;
  }
}

.flowers__box-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.78;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .flowers__box-text {
    text-align: left;
    font-size: 1rem;
  }
}

.flowers__box-btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 348px;
  width: 21.75rem;
  max-width: 100%;
  height: 60px;
  height: 3.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.5rem;
  margin: 15px auto 0;
  margin: 0.9375rem auto 0;
  padding-right: 20px;
  padding-right: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flowers__box-btn {
    width: 17.5rem;
    font-size: 1.125rem;
  }
}
.flowers__box-btn::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

.flowers__unit {
  padding: 60px 0 70px;
  padding: 3.75rem 0 4.375rem;
}
@media screen and (max-width: 767px) {
  .flowers__unit {
    padding: 2.5rem 0;
  }
}
.flowers__unit:nth-child(odd) {
  background: #fff;
}
.flowers__unit:nth-child(odd) .flowers__img-wrapper {
  background: #FBFAF7;
}
.flowers__unit:nth-child(even) .flowers__img-wrapper {
  background: #fff;
}

.flowers__img-wrapper {
  padding: 20px;
  padding: 1.25rem;
  border-radius: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flowers__img-wrapper {
    margin-top: 1.25rem;
  }
}

.flowers__imgs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .flowers__imgs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.flowers__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 196/230;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.flowers__select-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  gap: 1.75rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .flowers__select-wrapper {
    display: block;
    margin-top: 1.875rem;
  }
}

.flowers__select {
  width: 280px;
  width: 17.5rem;
  max-width: 100%;
  background: #fff;
  color: #000;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .flowers__select {
    margin: 0 auto;
  }
  .flowers__select + .flowers__select {
    margin-top: 0.625rem;
  }
}
.flowers__select select {
  width: 100%;
  height: 50px;
  height: 3.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  color: #000;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  border-radius: 0.625rem;
  background: url(../img/common/select-icon02.png) no-repeat center right 20px/12px;
  background: url(../img/common/select-icon02.png) no-repeat center right 1.25rem/0.75rem;
  padding: 10px 40px;
  padding: 0.625rem 2.5rem;
}
.flowers__select option {
  color: #000;
}

.flowers__search {
  text-align: center;
  display: block;
  width: 160px;
  width: 10rem;
  max-width: 100%;
  height: 50px;
  height: 3.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.625rem;
  background: #CB4F4A;
  margin-left: -10px;
  margin-left: -0.625rem;
}
@media screen and (max-width: 767px) {
  .flowers__search {
    width: 17.5rem;
    margin: 0.625rem auto 0;
  }
}

.flowers__caution {
  text-align: right;
  font-weight: 500;
  color: #C1C1C1;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .flowers__caution {
    text-align: left;
    margin-top: 1.875rem;
  }
}

/* guide */
.guide__content .l-section {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .guide__content .l-section {
    padding-top: 1.875rem;
  }
}
.guide__content .l-inner {
  max-width: 1030px;
  max-width: 64.375rem;
}

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

.guide__unit {
  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;
  padding: 20px 30px 20px 20px;
  padding: 1.25rem 1.875rem 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .guide__unit {
    display: block;
    padding: 1.25rem;
  }
}
.guide__unit + .guide__unit {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.guide__unit-img {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .guide__unit-img {
    width: 100%;
  }
}
.guide__unit-img img {
  border-radius: 1.25rem;
}

.guide__unit-body {
  width: 63.5%;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .guide__unit-body {
    width: 100%;
    margin-top: 0.9375rem;
  }
}

.guide__unit-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  gap: 1rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00A0E9;
  border-bottom: 1px solid #00A0E9;
  border-bottom: 0.0625rem solid #00A0E9;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  padding-left: 5px;
  padding-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .guide__unit-title {
    font-size: 1.25rem;
    gap: 0.3125rem;
    padding-left: 0;
    padding-bottom: 0.3125rem;
  }
}
.guide__unit-title span {
  display: inline-block;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .guide__unit-title span {
    font-size: 2.25rem;
  }
}

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

.guide__unit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
  background: #F7F7F7;
  border-radius: 0.5rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 16px 30px;
  padding: 1rem 1.875rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .guide__unit-box {
    display: block;
    padding: 0.9375rem 1.25rem;
  }
}

.guide__unit-box-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .guide__unit-box-title {
    font-size: 1rem;
  }
}

.guide__unit-box-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .guide__unit-box-text {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.625rem;
  }
}
.guide__unit-box-text span {
  display: inline-block;
  font-weight: 500;
  color: #CB4F4A;
  border-radius: 0.25rem;
  border: 1px solid #CB4F4A;
  border: 0.0625rem solid #CB4F4A;
  background: #fff;
  padding: 1px 5px;
  padding: 0.0625rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .guide__unit-box-text span {
    font-size: 0.9375rem;
  }
}

/* info */
.info {
  background: #fff;
}
.info .l-inner {
  max-width: 1030px;
  max-width: 64.375rem;
}

.info__item + .info__item {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .info__item + .info__item {
    margin-top: 1.875rem;
  }
}

.info__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .info__item-text {
    font-size: 1rem;
    margin-top: 0.9375rem;
  }
}

/* offer */
.offer {
  background: url(../img/flowers/offer-bg.jpg) no-repeat center/cover;
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .offer {
    padding: 1.875rem 0;
  }
}
.offer .l-inner {
  max-width: 1030px;
  max-width: 64.375rem;
}

.offer__content {
  text-align: center;
  border-radius: 1.25rem;
  background: transparent;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, .7);
  padding: 60px 20px 50px;
  padding: 3.75rem 1.25rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .offer__content {
    padding: 1.875rem 0.9375rem;
  }
}

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

.offer__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .offer__text {
    font-size: 1.125rem;
  }
}

.offer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 34px;
  gap: 2.125rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .offer__btns {
    display: block;
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .offer__btn + .offer__btn {
    margin-top: 0.625rem;
  }
}
.offer__btn.tel button {
  background: #1C2087;
  border: 4px solid #1C2087;
  border: 0.25rem solid #1C2087;
}
.offer__btn.tel button::after {
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
  right: 45px;
  right: 2.8125rem;
}
.offer__btn.contact a {
  color: #2099D1;
  background: #fff;
  border: 4px solid #2099D1;
  border: 0.25rem solid #2099D1;
}
.offer__btn.contact a::after {
  background: url(../img/common/arrow-icon02.png) no-repeat center/contain;
  right: 57px;
  right: 3.5625rem;
}
.offer__btn.shop a {
  background: #CB4F4A;
  border: 4px solid #CB4F4A;
  border: 0.25rem solid #CB4F4A;
}
.offer__btn.shop a::after {
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
  right: 57px;
  right: 3.5625rem;
}
.offer__btn.guide a {
  background: #D57808;
  border: 4px solid #D57808;
  border: 0.25rem solid #D57808;
}
.offer__btn.guide a::after {
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
  right: 50px;
  right: 3.125rem;
}
.offer__btn a, .offer__btn button {
  width: 284px;
  width: 17.75rem;
  max-width: 100%;
  height: 75px;
  height: 4.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.5rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .offer__btn a, .offer__btn button {
    margin: 0 auto;
    height: 3.75rem;
    font-size: 1.25rem;
  }
}
.offer__btn a::after, .offer__btn button::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* product */
.product__header {
  background: #fff;
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .product__header {
    padding: 1.875rem 0;
  }
}

.product__text {
  color: #666;
  line-height: 1.78;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .product__text {
    margin-top: 1.25rem;
  }
}

.product__tab {
  background: #fff;
  border-top: 1px solid #E85884;
  border-top: 0.0625rem solid #E85884;
  border-bottom: 1px solid #E85884;
  border-bottom: 0.0625rem solid #E85884;
}

.product__tab-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .product__tab-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product__tab-item button {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #888;
  border-bottom: 3px solid transparent;
  border-bottom: 0.1875rem solid transparent;
  padding: 13px;
  padding: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .product__tab-item button {
    font-size: 1.125rem;
  }
}
.product__tab-item button:hover {
  opacity: 1;
}
.product__tab-item.current button {
  color: #E85884;
  border-bottom: 3px solid #E85884;
  border-bottom: 0.1875rem solid #E85884;
}

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

.product__content {
  display: none;
}
.product__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;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.product__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 16px;
  gap: 3.125rem 1rem;
}
@media screen and (max-width: 767px) {
  .product__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.product__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 0.625rem;
  padding: 10px 10px 20px;
  padding: 0.625rem 0.625rem 1.25rem;
}

.product__card-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 336/224;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.product__card-body {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .product__card-body {
    padding: 0;
  }
}

.product__card-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E85884;
}
@media screen and (max-width: 767px) {
  .product__card-title {
    font-size: 1.375rem;
  }
}

.product__card-text {
  line-height: 2;
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.product__card-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  gap: 0.625rem;
  margin-top: auto;
}

.product__card-item {
  text-align: center;
  background: #FBF9F6;
  border: 1px solid #D9D9D9;
  border: 0.0625rem solid #D9D9D9;
  border-radius: 0.625rem;
  padding: 15px 10px 10px;
  padding: 0.9375rem 0.625rem 0.625rem;
}
.product__card-item.member {
  background: #FCF4F6;
  border: 1px solid #FFAFC7;
  border: 0.0625rem solid #FFAFC7;
}
.product__card-item.member .product__card-item-price, .product__card-item.member .product__card-item-tax {
  color: #CB4F4A;
}

.product__card-item-price {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.product__card-item-price span {
  font-family: "Akshar", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .product__card-item-price span {
    font-size: 1.5rem;
  }
}

.product__card-item-tax {
  font-size: 14px;
  font-size: 0.875rem;
}

.product__card-btn {
  width: 100%;
  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;
  height: 50px;
  height: 3.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  border-radius: 0.625rem;
  background: #1C2087;
  padding-left: 50px;
  padding-left: 3.125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .product__card-btn {
    font-size: 1rem;
    padding-left: 1.875rem;
  }
}
.product__card-btn::before {
  position: absolute;
  content: "";
  width: 26px;
  width: 1.625rem;
  height: 25px;
  height: 1.5625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 68px;
  left: 4.25rem;
  background: url(../img/common/cart-icon.png) no-repeat center/contain;
}

/* access */
.access {
  background: #fff;
}
.access .l-section {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .access .l-section {
    padding-top: 1.875rem;
  }
}

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

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

.access__map {
  width: 100%;
  padding-top: 58.5365853659%;
  position: relative;
}
.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__address {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

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

.access__item + .access__item {
  border-top: 1px solid #000;
  border-top: 0.0625rem solid #000;
  padding-top: 26px;
  padding-top: 1.625rem;
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .access__item + .access__item {
    padding-top: 1.25rem;
    margin-top: 1.25rem;
  }
}
.access__item.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}
.access__item.flex .access__item-text {
  margin-top: 0;
}

.access__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.access__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.access__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 980px;
  width: 61.25rem;
  max-width: 100%;
  border-top: 1px solid #888;
  border-top: 0.0625rem solid #888;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .access__list {
    margin-top: 1.875rem;
    border: 0.0625rem solid #888;
  }
}

.access__list-item {
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #888;
  border-right: 0.0625rem solid #888;
  border-bottom: 1px solid #888;
  border-bottom: 0.0625rem solid #888;
}
@media screen and (max-width: 767px) {
  .access__list-item {
    width: 100%;
    border: none;
  }
  .access__list-item + .access__list-item {
    border-top: 0.0625rem solid #888;
  }
}
.access__list-item:nth-child(3n+1) {
  border-left: 1px solid #888;
  border-left: 0.0625rem solid #888;
}
@media screen and (max-width: 767px) {
  .access__list-item:nth-child(3n+1) {
    border-left: none;
  }
}

.access__list-title {
  width: 75%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #FCFCFA;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
.access__list-title span {
  font-size: 14px;
  font-size: 0.875rem;
}

.access__list-body {
  width: 25%;
  border-left: 1px solid #888;
  border-left: 0.0625rem solid #888;
  position: relative;
}
.access__list-body::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.access__list-body.available::before {
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  border-radius: 50%;
  border: 2px solid #CE3D20;
  border: 0.125rem solid #CE3D20;
}
.access__list-body.none::before {
  width: 20px;
  width: 1.25rem;
  height: 4px;
  height: 0.25rem;
  background: #888;
}

/* flow */
.flow__items {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .flow__items {
    margin-top: 1.25rem;
  }
}

.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 1.25rem;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .flow__item {
    display: block;
  }
}
.flow__item + .flow__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.flow__item-img {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .flow__item-img {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.flow__item-img img {
  border-radius: 0.625rem;
}

.flow__item-body {
  width: 63%;
  margin-top: -10px;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .flow__item-body {
    width: 100%;
    margin-top: 0;
  }
}

.flow__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  gap: 1.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00A0E9;
  border-bottom: 1px solid #00A0E9;
  border-bottom: 0.0625rem solid #00A0E9;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  padding-left: 5px;
  padding-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1.25rem;
    gap: 0.625rem;
  }
}
.flow__item-title span {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow__item-title span {
    font-size: 2.25rem;
  }
}

.flow__item-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .flow__item-text {
    font-size: 1.125rem;
  }
}

/* hall-archive-mv */
.hall-archive-mv {
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv {
    padding-top: 1.875rem;
  }
}

.hall-archive-mv__content {
  border-radius: 1.25rem;
  background: url(../img/hall/hall-archive-mv-bg.jpg) no-repeat center/cover;
  padding: 80px 0 20px;
  padding: 5rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__content {
    padding-top: 2.5rem;
  }
}

.hall-archive-mv__header {
  padding: 0 40px;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__header {
    padding: 0;
  }
}

.hall-archive-mv__title {
  font-size: 39px;
  font-size: 2.4375rem;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 3px 3px 0px #fff, -3px -3px 0px #fff, -3px 3px 0px #fff, 3px -3px 0px #fff, 3px 0px 0px #fff, -3px 0px 0px #fff, 0px 3px 0px #fff, 0px -3px 0px #fff;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.hall-archive-mv__title span {
  display: inline-block;
  font-size: 57px;
  font-size: 3.5625rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__title span {
    font-size: 2.375rem;
  }
}

.hall-archive-mv__btn {
  display: block;
  width: 340px;
  width: 21.25rem;
  max-width: 100%;
  border-radius: 0.625rem;
  background: rgba(234, 154, 85, .3);
  padding: 5px;
  padding: 0.3125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__btn {
    margin-top: 0.9375rem;
  }
}
.hall-archive-mv__btn span {
  display: block;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #EA9A55;
  border-radius: 0.5rem;
  padding: 15px 15px 15px 0;
  padding: 0.9375rem 0.9375rem 0.9375rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__btn span {
    font-size: 1.25rem;
  }
}
.hall-archive-mv__btn span::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  right: 1.5625rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

.hall-archive-mv__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__footer {
    display: block;
    margin-top: 1.25rem;
  }
}

.hall-archive-mv__tel {
  width: 65.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  background: #CE3D20;
  border-radius: 0.625rem;
  padding: 10px 38px 10px 10px;
  padding: 0.625rem 2.375rem 0.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__tel {
    width: 100%;
    display: block;
    padding: 0.625rem;
  }
}

.hall-archive-mv__tel-text {
  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;
  height: 100%;
  width: 210px;
  width: 13.125rem;
  max-width: 100%;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #CE3D20;
  line-height: 1.23;
  border-radius: 0.5rem;
  background: #fff;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__tel-text {
    width: 100%;
    font-size: 1.25rem;
  }
}

.hall-archive-mv__tel-body {
  background: url(../img/common/inquiry-icon.png) no-repeat center left/74px;
  background: url(../img/common/inquiry-icon.png) no-repeat center left/4.625rem;
  padding-left: 86px;
  padding-left: 5.375rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__tel-body {
    background-size: 3.125rem;
    padding-left: 3.75rem;
    margin-top: 0.625rem;
  }
}

.hall-archive-mv__tel-number {
  font-family: "Akshar", sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 600;
  color: #FFFCAA;
  line-height: 0.9;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__tel-number {
    font-size: 2.25rem;
    line-height: 1.1;
  }
}

.hall-archive-mv__tel-subtexts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 0.25rem;
  padding: 3px;
  padding: 0.1875rem;
}

.hall-archive-mv__tel-subtext {
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__tel-subtext {
    font-size: 0.875rem;
  }
}
.hall-archive-mv__tel-subtext:first-child {
  width: 40%;
}
.hall-archive-mv__tel-subtext:nth-child(2) {
  width: 60%;
  border-left: 1px solid #fff;
  border-left: 0.0625rem solid #fff;
}

.hall-archive-mv__contact {
  width: 32.5%;
  display: block;
  background: #41459B;
  border-radius: 0.625rem;
  padding: 10px;
  padding: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__contact {
    width: 100%;
    margin-top: 0.625rem;
  }
}
.hall-archive-mv__contact::after {
  position: absolute;
  content: "";
  width: 88px;
  width: 5.5rem;
  height: 100px;
  height: 6.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 7px;
  right: 0.4375rem;
  background: url(../img/common/document-img.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__contact::after {
    width: 4.375rem;
    height: 5.625rem;
  }
}

.hall-archive-mv__contact-text {
  text-align: center;
  height: 100%;
  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;
  width: 250px;
  width: 15.625rem;
  max-width: 100%;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #41459B;
  background: #fff;
  border-radius: 0.5rem;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__contact-text {
    width: 12.5rem;
    font-size: 1.25rem;
    padding-bottom: 0.625rem;
  }
}
.hall-archive-mv__contact-text span {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid #41459B;
  border: 0.0625rem solid #41459B;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .hall-archive-mv__contact-text span {
    font-size: 1rem;
  }
}

/* hall-archive-plan */
.hall-archive-plan {
  background: #fff;
}

.hall-archive-plan__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  gap: 3.75rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-plan__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.hall-archive-plan__unit {
  border-radius: 1.25rem;
}
.hall-archive-plan__unit.brown {
  border: 1px solid #AB874D;
  border: 0.0625rem solid #AB874D;
}
.hall-archive-plan__unit.brown .hall-archive-plan__unit-title {
  background: #AB874D;
}
.hall-archive-plan__unit.brown .hall-archive-plan__unit-text {
  color: #AB874D;
}
.hall-archive-plan__unit.brown .hall-archive-plan__unit-btn {
  background: #AB874D;
}
.hall-archive-plan__unit.orange {
  border: 1px solid #D57807;
  border: 0.0625rem solid #D57807;
}
.hall-archive-plan__unit.orange .hall-archive-plan__unit-title {
  background: #D57807;
}
.hall-archive-plan__unit.orange .hall-archive-plan__unit-text {
  color: #D57807;
}
.hall-archive-plan__unit.orange .hall-archive-plan__unit-btn {
  background: #D57807;
}
.hall-archive-plan__unit.blue {
  border: 1px solid #4B88AF;
  border: 0.0625rem solid #4B88AF;
}
.hall-archive-plan__unit.blue .hall-archive-plan__unit-title {
  background: #4B88AF;
}
.hall-archive-plan__unit.blue .hall-archive-plan__unit-text {
  color: #4B88AF;
}
.hall-archive-plan__unit.blue .hall-archive-plan__unit-btn {
  background: #4B88AF;
}
.hall-archive-plan__unit.green {
  border: 1px solid #739618;
  border: 0.0625rem solid #739618;
}
.hall-archive-plan__unit.green .hall-archive-plan__unit-title {
  background: #739618;
}
.hall-archive-plan__unit.green .hall-archive-plan__unit-text {
  color: #739618;
}
.hall-archive-plan__unit.green .hall-archive-plan__unit-btn {
  background: #739618;
}

.hall-archive-plan__unit-title {
  text-align: center;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
  color: #fff;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 1px 5px 2px;
  padding: 0.0625rem 0.3125rem 0.125rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-plan__unit-title {
    font-size: 1.5rem;
    padding: 0.5rem;
  }
}

.hall-archive-plan__unit-body {
  padding: 20px 30px 30px;
  padding: 1.25rem 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-plan__unit-body {
    padding: 0.9375rem 1.25rem 1.25rem;
  }
}

.hall-archive-plan__unit-text {
  text-align: center;
  min-height: 96px;
  min-height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .hall-archive-plan__unit-text {
    min-height: unset;
    font-size: 1.125rem;
  }
}

.hall-archive-plan__unit-img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-plan__unit-img {
    margin-top: 0.9375rem;
  }
}
.hall-archive-plan__unit-img img {
  border-radius: 0.625rem;
}

.hall-archive-plan__unit-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;
  gap: 10px;
  gap: 0.625rem;
  white-space: nowrap;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .hall-archive-plan__unit-footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0.625rem;
  }
}

.hall-archive-plan__unit-price {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #CB4F4A;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .hall-archive-plan__unit-price {
    font-size: 1.5rem;
  }
}
.hall-archive-plan__unit-price span {
  font-family: "Akshar", sans-serif;
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .hall-archive-plan__unit-price span {
    font-size: 2.5rem;
  }
}

.hall-archive-plan__unit-tax {
  color: #A0A0A0;
}
.hall-archive-plan__unit-tax span {
  font-family: "Akshar", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}

.hall-archive-plan__unit-btn {
  text-align: center;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.625rem;
  padding: 15px 10px 15px 0;
  padding: 0.9375rem 0.625rem 0.9375rem 0;
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hall-archive-plan__unit-btn {
    font-size: 1.125rem;
    margin-top: 0.3125rem;
  }
}
.hall-archive-plan__unit-btn::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 140px;
  right: 8.75rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .hall-archive-plan__unit-btn::after {
    right: 5rem;
  }
}

/* hall-archive */
.hall-archive {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .hall-archive {
    padding-bottom: 1.25rem;
  }
}

.hall-archive__content .l-section {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .hall-archive__content .l-section {
    padding-top: 1.875rem;
  }
}

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

/* hall-mv */
.hall-mv {
  background: url(../img/hall/hall-mv-bg.png) no-repeat center/cover;
  padding: 35px 0 20px;
  padding: 2.1875rem 0 1.25rem;
}

.hall-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;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-mv__inner {
    display: block;
  }
}

.hall-mv__title {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .hall-mv__title {
    font-size: 1.875rem;
    padding-bottom: 0;
  }
}
.hall-mv__title span {
  display: inline-block;
}
.hall-mv__title span.small {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .hall-mv__title span.small {
    font-size: 1.5rem;
  }
}
.hall-mv__title span.large {
  font-size: 60px;
  font-size: 3.75rem;
  color: #1C2087;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .hall-mv__title span.large {
    font-size: 2.625rem;
  }
}

.hall-mv__body {
  width: 53%;
}
@media screen and (max-width: 767px) {
  .hall-mv__body {
    width: 100%;
    margin-top: 0.9375rem;
  }
}

.hall-mv__img-wrapper {
  display: inline-block;
  background: rgba(255, 255, 255, .8);
  border-radius: 0.625rem;
  padding: 32px 31px 17px 25px;
  padding: 2rem 1.9375rem 1.0625rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .hall-mv__img-wrapper {
    padding: 0.9375rem 0.625rem 0.3125rem 0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .hall-mv__img {
    width: 25rem;
    max-width: 100%;
  }
}

.hall-mv__caution {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.33;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .hall-mv__caution {
    text-align: left;
  }
}

/* hall-search */
.hall-search .l-section {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .hall-search .l-section {
    padding-top: 1.875rem;
  }
}

.hall-search {
  background: #fff;
}

.hall-search__subtitle {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  color: #1C2087;
  margin: 35px 0 20px;
  margin: 2.1875rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-search__subtitle {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.9375rem;
  }
}

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

/* hall-single-plan */
.hall-single-plan .l-section {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .hall-single-plan .l-section {
    padding: 1.875rem 0;
  }
}
@media screen and (max-width: 767px) {
  .hall-single-plan .l-inner {
    padding: 0 0.625rem;
  }
}

.hall-single-plan__cards {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .hall-single-plan__cards {
    margin-top: 1.25rem;
  }
}

/* hall-single */
.hall-single {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .hall-single {
    padding-bottom: 1.25rem;
  }
}

.hall-single__header {
  padding: 50px 0 60px;
  padding: 3.125rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .hall-single__header {
    padding: 1.875rem 0;
  }
}
.hall-single__header .l-inner {
  max-width: 1330px;
  max-width: 83.125rem;
}

.hall-single__content {
  background: #fff;
  border-radius: 0.625rem;
  padding: 60px 90px;
  padding: 3.75rem 5.625rem;
}
@media screen and (max-width: 767px) {
  .hall-single__content {
    padding: 1.875rem 1.25rem;
  }
}

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

.hall-single__body {
  width: 40%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hall-single__body {
    width: 100%;
  }
}

.hall-single__title {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
  color: #1C2087;
  padding-right: 60px;
  padding-right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .hall-single__title {
    font-size: 1.75rem;
  }
}

.hall-single__subtext {
  position: absolute;
  right: -20px;
  right: -1.25rem;
  top: 0;
  width: 90px;
  width: 5.625rem;
  height: 90px;
  height: 5.625rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.15;
  border-radius: 50%;
  background: #FFF4EB;
  color: #E5700C;
  border: 1px solid #EF6E00;
  border: 0.0625rem solid #EF6E00;
  padding-left: 5px;
  padding-left: 0.3125rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .hall-single__subtext {
    width: 4.6875rem;
    height: 4.6875rem;
    font-size: 1rem;
    top: -1.25rem;
    right: -0.625rem;
  }
}
.hall-single__subtext.orange {
  background: #FFF4EB;
  color: #E5700C;
  border: 1px solid #EF6E00;
  border: 0.0625rem solid #EF6E00;
  padding-left: 5px;
  padding-left: 0.3125rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
.hall-single__subtext.blue {
  background: #E2F6FF;
  color: #2988B2;
  border: 1px solid #2988B2;
  border: 0.0625rem solid #2988B2;
  padding: 0;
}

.hall-single__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .hall-single__text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

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

.hall-single__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 2px solid #D6D6D6;
  border-bottom: 0.125rem solid #D6D6D6;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hall-single__list-item {
    font-size: 1.125rem;
    padding-bottom: 0.625rem;
  }
}
.hall-single__list-item::before {
  position: absolute;
  content: "";
  height: 2px;
  height: 0.125rem;
  width: 93px;
  width: 5.8125rem;
  left: 0;
  bottom: -2px;
  bottom: -0.125rem;
  background: #00A0E9;
}
@media screen and (max-width: 767px) {
  .hall-single__list-item::before {
    width: 5rem;
  }
}
.hall-single__list-item + .hall-single__list-item {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .hall-single__list-item + .hall-single__list-item {
    margin-top: 0.9375rem;
  }
}

.hall-single__list-title {
  min-width: 110px;
  min-width: 6.875rem;
}
@media screen and (max-width: 767px) {
  .hall-single__list-title {
    min-width: 5.625rem;
  }
}

.hall-single__slider-wrapper {
  width: 55.5%;
}
@media screen and (max-width: 767px) {
  .hall-single__slider-wrapper {
    width: 100%;
    margin-top: 1.875rem;
  }
}

.hall-single__slider {
  display: none;
  position: relative;
}
.hall-single__slider.slick-initialized {
  display: block;
}
.hall-single__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hall-single__slider .slick-slide {
  height: auto !important;
}
.hall-single__slider .slide-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  display: block;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="6" /><feOffset dx="1" dy="4" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.16)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .16));
}
@media screen and (max-width: 767px) {
  .hall-single__slider .slide-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.hall-single__slider .slide-arrow:hover {
  opacity: 1;
}
.hall-single__slider .prev-arrow {
  background: url(../img/common/prev-icon01.png) no-repeat center/contain;
  left: -30px;
  left: -1.875rem;
}
@media screen and (max-width: 767px) {
  .hall-single__slider .prev-arrow {
    left: -1.25rem;
  }
}
.hall-single__slider .next-arrow {
  background: url(../img/common/next-icon01.png) no-repeat center/contain;
  right: -30px;
  right: -1.875rem;
}
@media screen and (max-width: 767px) {
  .hall-single__slider .next-arrow {
    right: -1.25rem;
  }
}

.hall-single__slider-item img {
  border-radius: 1.25rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hall-single__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  gap: 0.625rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .hall-single__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hall-single__item {
  cursor: pointer;
}

.hall-single__item-img img {
  height: 80px;
  height: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .hall-single__item-img img {
    border-radius: 0.625rem;
  }
}

.hall-single__item-text {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hall-single__tag {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 20px;
  gap: 0.625rem 1.25rem;
  background: #F7F7F7;
  border-radius: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-single__tag {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.875rem;
    gap: 0.625rem;
    padding: 1.25rem;
  }
}
.hall-single__tag > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  min-height: 50px;
  min-height: 3.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #fff;
  border-radius: 0.625rem;
  padding-left: 64px;
  padding-left: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hall-single__tag > span {
    width: 100%;
    padding-left: 3.5rem;
  }
}
.hall-single__tag > span::before {
  position: absolute;
  content: "";
  width: 34px;
  width: 2.125rem;
  height: 34px;
  height: 2.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall-single__tag > span::before {
    width: 1.75rem;
    height: 1.75rem;
    left: 0.75rem;
  }
}
.hall-single__tag > span span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
.hall-single__tag > span.parking::before {
  background: url(../img/hall/hall-single-icon01.png) no-repeat center/contain;
}
.hall-single__tag > span.barrier {
  padding-left: 42px;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .hall-single__tag > span.barrier {
    padding-left: 3.5rem;
  }
}
.hall-single__tag > span.barrier::before {
  background: url(../img/hall/hall-single-icon02.png) no-repeat center/contain;
  left: 8px;
  left: 0.5rem;
}
.hall-single__tag > span.morgue::before {
  background: url(../img/hall/hall-single-icon03.png) no-repeat center/contain;
}
.hall-single__tag > span.bathroom {
  padding-left: 56px;
  padding-left: 3.5rem;
}
.hall-single__tag > span.bathroom::before {
  background: url(../img/hall/hall-single-icon04.png) no-repeat center/contain;
  left: 12px;
  left: 0.75rem;
}
.hall-single__tag > span.room::before {
  background: url(../img/hall/hall-single-icon05.png) no-repeat center/contain;
}
.hall-single__tag > span.wifi::before {
  background: url(../img/hall/hall-single-icon06.png) no-repeat center/contain;
}
.hall-single__tag > span.wifi::before {
  background: url(../img/hall/hall-single-icon06.png) no-repeat center/contain;
}
.hall-single__tag > span.locker::before {
  background: url(../img/hall/hall-single-icon07.png) no-repeat center/contain;
}
.hall-single__tag > span.elevator {
  padding-left: 46px;
  padding-left: 2.875rem;
}
@media screen and (max-width: 767px) {
  .hall-single__tag > span.elevator {
    padding-left: 3.5rem;
  }
}
.hall-single__tag > span.elevator::before {
  left: 12px;
  left: 0.75rem;
  background: url(../img/hall/hall-single-icon08.png) no-repeat center/contain;
}
.hall-single__tag > span.private::before {
  background: url(../img/hall/hall-single-icon09.png) no-repeat center/contain;
}
.hall-single__tag > span.eating::before {
  background: url(../img/hall/hall-single-icon10.png) no-repeat center/contain;
}
.hall-single__tag > span.sect::before {
  background: url(../img/hall/hall-single-icon11.png) no-repeat center/contain;
}

/* hall */
.hall__content .l-section {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .hall__content .l-section {
    padding-bottom: 2.5rem;
  }
}

.hall__box {
  border: 1px solid #EAEAEA;
  border: 0.0625rem solid #EAEAEA;
  background: #fff;
  border-radius: 1.25rem;
  padding: 40px;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .hall__box {
    padding: 1.25rem;
  }
}

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

.hall__box-unit:first-child {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .hall__box-unit:first-child {
    width: 100%;
  }
}
.hall__box-unit:first-child .hall__box-btns {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .hall__box-unit:first-child .hall__box-btns {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hall__box-unit:nth-child(2) {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .hall__box-unit:nth-child(2) {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.hall__box-unit:nth-child(2) .hall__box-btns {
  grid-template-columns: repeat(2, 1fr);
}

.hall__box-subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .hall__box-subtitle {
    font-size: 1.25rem;
  }
}

.hall__box-btns {
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.hall__box-btn.current button {
  background: #EA9A55;
  color: #fff;
}
.hall__box-btn button {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #EA9A55;
  background: #F7F7F7;
  border-radius: 0.5rem;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .hall__box-btn button {
    font-size: 1.125rem;
  }
}

.hall__block:not(:last-child) {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .hall__block:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

.hall__heading {
  font-size: 32px;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  background: #1C2087;
  border-radius: 0.375rem;
  padding: 0 11px 2px;
  padding: 0 0.6875rem 0.125rem;
}
@media screen and (max-width: 767px) {
  .hall__heading {
    font-size: 1.5rem;
  }
}

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

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

.hall__subheading {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  color: #EA9A55;
  border-bottom: 4px solid #EA9A55;
  border-bottom: 0.25rem solid #EA9A55;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .hall__subheading {
    font-size: 1.25rem;
    border-bottom: 0.125rem solid #EA9A55;
  }
}

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

.hall__unit + .hall__unit {
  border-top: 1px solid #C1C1C1;
  border-top: 0.0625rem solid #C1C1C1;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.hall__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .hall__subtitle {
    font-size: 1.25rem;
  }
}

.hall__cards {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hall__cards {
    margin-top: 0.9375rem;
  }
}

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

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

/* interview-archive */
.interview-archive {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .interview-archive {
    padding: 2.5rem 0 1.25rem;
  }
}

.interview-archive__content {
  padding: 60px 90px 80px;
  padding: 3.75rem 5.625rem 5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .interview-archive__content {
    padding: 1.875rem 1.25rem;
  }
}
.interview-archive__content::before {
  position: absolute;
  content: "";
  top: 49%;
  left: 48%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1255px;
  width: 78.4375rem;
  height: 1181px;
  height: 73.8125rem;
  background: url(../img/interview/interview-bg.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .interview-archive__content::before {
    display: none;
  }
}

.interview-archive__text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .interview-archive__text {
    text-align: left;
    font-size: 1.125rem;
  }
}

.interview-archive__cards {
  margin-top: 55px;
  margin-top: 3.4375rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .interview-archive__cards {
    margin-top: 1.5625rem;
  }
}

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

.interview-single__content {
  padding: 60px 60px;
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview-single__content {
    padding: 1.875rem 1.25rem;
  }
}

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

.interview-single__img {
  width: 32.5%;
}
@media screen and (max-width: 767px) {
  .interview-single__img {
    width: 100%;
  }
}
.interview-single__img img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .interview-single__img img {
    border-radius: 0.625rem;
  }
}

.interview-single__body {
  width: 60.5%;
}
@media screen and (max-width: 767px) {
  .interview-single__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.interview-single__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .interview-single__title {
    font-size: 1.5rem;
  }
}

.interview-single__name {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  color: #00A0E9;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .interview-single__name {
    font-size: 1.5rem;
  }
}

.interview-single__position {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .interview-single__position {
    font-size: 1.125rem;
  }
}

.interview-single__list {
  width: 88%;
  border: 1px solid #00A0E9;
  border: 0.0625rem solid #00A0E9;
  border-radius: 1.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .interview-single__list {
    width: 100%;
    border-radius: 0.625rem;
    margin-top: 1.25rem;
  }
}

.interview-single__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-size: 1.125rem;
}
.interview-single__list-item + .interview-single__list-item {
  border-top: 1px dashed #666;
  border-top: 0.0625rem dashed #666;
  padding-top: 10px;
  padding-top: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.interview-single__list-title {
  min-width: 80px;
  min-width: 5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .interview-single__list-title {
    min-width: 4.375rem;
  }
}

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

.interview-single__item {
  background: #F7F7F7;
  border-radius: 1.25rem;
  padding: 50px 60px 40px;
  padding: 3.125rem 3.75rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview-single__item {
    border-radius: 0.625rem;
    padding: 1.875rem 1.25rem;
  }
}
.interview-single__item + .interview-single__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview-single__item + .interview-single__item {
    margin-top: 1.25rem;
  }
}

.interview-single__item-title, .interview-single__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  line-height: 1.78;
}
@media screen and (max-width: 767px) {
  .interview-single__item-title, .interview-single__item-text {
    gap: 0.625rem;
    line-height: 1.65;
  }
}
.interview-single__item-title span, .interview-single__item-text span {
  text-align: center;
  display: inline-block;
  width: 50px;
  width: 3.125rem;
  min-width: 50px;
  min-width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  background: #E5700C;
  border-radius: 3.125rem;
  line-height: 1;
  padding-top: 5px;
  padding-top: 0.3125rem;
  margin-top: -7px;
  margin-top: -0.4375rem;
}
@media screen and (max-width: 767px) {
  .interview-single__item-title span, .interview-single__item-text span {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    font-size: 1.625rem;
    margin-top: -0.125rem;
  }
}

.interview-single__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #E5700C;
}

.interview-single__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .interview-single__item-text {
    margin-top: 1.25rem;
  }
}

.interview-single__link {
  text-align: center;
  display: block;
  width: 208px;
  width: 13rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.5rem;
  border: 2px solid #1C2087;
  border: 0.125rem solid #1C2087;
  color: #1C2087;
  padding: 15px 5px;
  padding: 0.9375rem 0.3125rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .interview-single__link {
    margin-top: 1.875rem;
  }
}

/* other */
.other {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .other {
    padding: 2.5rem 0 1.25rem;
  }
}

.other__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .other__title {
    font-size: 1.375rem;
  }
}

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

/* kanno-cv */
.kanno-cv {
  background: url(../img/ishinokanno/kanno-cv-bg.jpg) no-repeat center/cover;
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .kanno-cv {
    padding: 2.5rem 0;
  }
}
.kanno-cv .l-inner {
  max-width: 1030px;
  max-width: 64.375rem;
}

.kanno-cv__content {
  background: rgba(255, 255, 255, .6);
  padding: 20px;
  padding: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kanno-cv__content {
    padding: 0.9375rem;
  }
}

.kanno-cv__body {
  background: #F0FAFF;
  padding: 50px;
  padding: 3.125rem;
}
@media screen and (max-width: 767px) {
  .kanno-cv__body {
    padding: 1.25rem 1.25rem 7.5rem;
  }
}

.kanno-cv__title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .kanno-cv__title {
    font-size: 1.5rem;
  }
}

.kanno-cv__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .kanno-cv__text {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.kanno-cv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .kanno-cv__btns {
    display: block;
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .kanno-cv__btn + .kanno-cv__btn {
    margin-top: 0.625rem;
  }
}
.kanno-cv__btn:first-child a {
  background: #1C2087;
}
.kanno-cv__btn:first-child a::after {
  right: 45px;
  right: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .kanno-cv__btn:first-child a::after {
    right: 1.875rem;
  }
}
.kanno-cv__btn:nth-child(2) a {
  background: #00A0E9;
}
.kanno-cv__btn:nth-child(2) a::after {
  right: 70px;
  right: 4.375rem;
}
@media screen and (max-width: 767px) {
  .kanno-cv__btn:nth-child(2) a::after {
    right: 3.125rem;
  }
}
.kanno-cv__btn a {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  width: 320px;
  width: 20rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  border-radius: 0.5rem;
  padding: 14px 20px 14px 0;
  padding: 0.875rem 1.25rem 0.875rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kanno-cv__btn a {
    font-size: 1.25rem;
    margin: 0 auto;
    padding-right: 0.625rem;
  }
}
.kanno-cv__btn a::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
.kanno-cv__btn a span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  border-radius: 0.125rem;
  padding: 0 6px;
  padding: 0 0.375rem;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
}
@media screen and (max-width: 767px) {
  .kanno-cv__btn a span {
    font-size: 1rem;
  }
}

.kanno-cv__img {
  position: absolute;
  bottom: 0;
  right: 45px;
  right: 2.8125rem;
  width: 198px;
  width: 12.375rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .kanno-cv__img {
    right: 1.25rem;
    width: 5.625rem;
  }
}

/* kanno-mv */
.kanno-mv {
  background: url(../img/ishinokanno/kanno-mv-bg.jpg) no-repeat center/cover;
  padding: 50px 0;
  padding: 3.125rem 0;
}
@media screen and (max-width: 767px) {
  .kanno-mv {
    padding: 2.5rem 0;
  }
}
.kanno-mv .l-inner {
  max-width: 1030px;
  max-width: 64.375rem;
}

.kanno-mv__content {
  text-align: center;
  background: rgba(255, 255, 255, .6);
  padding: 40px 118px;
  padding: 2.5rem 7.375rem;
}
@media screen and (max-width: 767px) {
  .kanno-mv__content {
    padding: 1.875rem 1.25rem;
  }
}

.kanno-mv__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .kanno-mv__subtitle {
    font-size: 1.25rem;
  }
}

.kanno-mv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 500;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .kanno-mv__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3125rem;
    font-size: 2rem;
  }
}
.kanno-mv__title span {
  display: inline-block;
  width: 273px;
  width: 17.0625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .kanno-mv__title span {
    width: 14.375rem;
    margin: 0 auto;
  }
}

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

.kanno-mv__img {
  width: 489px;
  width: 30.5625rem;
  max-width: 100%;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}

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

@media screen and (max-width: 767px) {
  .kanno-mv__btn + .kanno-mv__btn {
    margin-top: 0.625rem;
  }
}
.kanno-mv__btn:first-child a {
  background: #1C2087;
}
.kanno-mv__btn:first-child a::after {
  right: 80px;
  right: 5rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .kanno-mv__btn:first-child a::after {
    right: 1.875rem;
  }
}
.kanno-mv__btn:nth-child(2) a {
  background: #fff;
  color: #1C2087;
}
.kanno-mv__btn:nth-child(2) a::after {
  right: 90px;
  right: 5.625rem;
  background: url(../img/common/arrow-icon10.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .kanno-mv__btn:nth-child(2) a::after {
    right: 3.125rem;
  }
}
.kanno-mv__btn a {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  width: 362px;
  width: 22.625rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  border-radius: 0.5rem;
  padding: 14px 20px 14px 0;
  padding: 0.875rem 1.25rem 0.875rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kanno-mv__btn a {
    font-size: 1.25rem;
    margin: 0 auto;
    padding-right: 0.625rem;
  }
}
.kanno-mv__btn a::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.kanno-mv__btn a span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  border-radius: 0.125rem;
  padding: 0 6px;
  padding: 0 0.375rem;
  border: 1px solid #1C2087;
  border: 0.0625rem solid #1C2087;
}
@media screen and (max-width: 767px) {
  .kanno-mv__btn a span {
    font-size: 1rem;
  }
}

/* kanno-service */
.kanno-service {
  background: #fff;
  padding: 60px 0 140px;
  padding: 3.75rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .kanno-service {
    padding: 2.5rem 0;
  }
}

.kanno-service__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  gap: 2.5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kanno-service__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.kanno-service__unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.kanno-service__unit-img-wrapper {
  position: relative;
}
.kanno-service__unit-img-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(#000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.77;
}

.kanno-service__unit-titles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #fff;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-titles {
    padding: 0.9375rem 0.9375rem;
  }
}

.kanno-service__unit-title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-title {
    font-size: 1.375rem;
  }
}

.kanno-service__unit-subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-subtitle {
    font-size: 1.125rem;
  }
}

.kanno-service__unit-body {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #F7F7F7;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-body {
    padding: 1.25rem;
  }
}

.kanno-service__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-text {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.kanno-service__unit-box {
  background: #fff;
  padding: 20px;
  padding: 1.25rem;
  margin-top: auto;
}

.kanno-service__unit-box-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-box-title {
    font-size: 1rem;
  }
}

.kanno-service__unit-box-list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-box-list {
    margin-top: 0.625rem;
  }
}

.kanno-service__unit-box-list-item {
  background: url(../img/common/check-icon05.png) no-repeat left top 5px/23px;
  background: url(../img/common/check-icon05.png) no-repeat left top 0.3125rem/1.4375rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-box-list-item {
    background: url(../img/common/check-icon05.png) no-repeat left top 0.3125rem/1.125rem;
    padding-left: 1.5625rem;
  }
}
.kanno-service__unit-box-list-item + .kanno-service__unit-box-list-item {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-box-list-item + .kanno-service__unit-box-list-item {
    margin-top: 0.5rem;
  }
}

.kanno-service__unit-more-wrapper {
  text-align: right;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-more-wrapper {
    margin-top: 1.25rem;
  }
}

.kanno-service__unit-more {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #fff;
  color: #E5700C;
  border-radius: 0.5rem;
  border: 1px solid #E5700C;
  border: 0.0625rem solid #E5700C;
  padding: 7px 30px 7px 20px;
  padding: 0.4375rem 1.875rem 0.4375rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kanno-service__unit-more {
    font-size: 1rem;
  }
}
.kanno-service__unit-more::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  right: 1.125rem;
  background: url(../img/common/arrow-icon14.png) no-repeat center/contain;
}

/* kanno-shop */
.kanno-shop {
  background: #fff;
  padding: 80px 0 120px;
  padding: 5rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .kanno-shop {
    padding: 2.5rem 0 3.75rem;
  }
}

.kanno-shop__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  gap: 1.875rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .kanno-shop__tab {
    display: block;
    margin-top: 1.25rem;
  }
}

.kanno-shop__tab-item {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .kanno-shop__tab-item {
    margin: 0 auto;
  }
  .kanno-shop__tab-item + .kanno-shop__tab-item {
    margin-top: 0.625rem;
  }
}
.kanno-shop__tab-item.current button {
  background: #1C2087;
  color: #fff;
}
.kanno-shop__tab-item.current button:hover {
  opacity: 1;
}
.kanno-shop__tab-item button {
  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;
  width: 100%;
  height: 60px;
  height: 3.75rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  color: #fff;
  color: #1C2087;
  border: 1px solid #1C2087;
  border: 0.0625rem solid #1C2087;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .kanno-shop__tab-item button {
    font-size: 1.25rem;
    height: 3.125rem;
  }
}

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

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

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.kanno-shop__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 20px;
  gap: 3.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .kanno-shop__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.kanno-shop__card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.kanno-shop__card-img-wrapper {
  position: relative;
}

.kanno-shop__card-area {
  position: absolute;
  left: 4px;
  left: 0.25rem;
  top: 4px;
  top: 0.25rem;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, .9);
  padding: 1px 4px;
  padding: 0.0625rem 0.25rem;
}

.kanno-shop__card-body {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #F7F7F7;
  padding: 20px;
  padding: 1.25rem;
}

.kanno-shop__card-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  border-left: 2px solid #1C2087;
  border-left: 0.125rem solid #1C2087;
  padding-left: 8px;
  padding-left: 0.5rem;
}

.kanno-shop__card-address {
  line-height: 1.38;
  margin-top: 3px;
  margin-top: 0.1875rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.kanno-shop__card-list {
  border-top: 1px solid #EAEAEA;
  border-top: 0.0625rem solid #EAEAEA;
  padding-top: 10px;
  padding-top: 0.625rem;
  margin-top: auto;
}

.kanno-shop__card-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.kanno-shop__card-list-item + .kanno-shop__card-list-item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.kanno-shop__card-list-title {
  min-width: 48px;
  min-width: 3rem;
  font-weight: 500;
  color: #888888;
}

.kanno-shop__card-list-text {
  line-height: 1.38;
}

.kanno-shop__card-more {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  background: #fff;
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #EAEAEA;
  border: 0.0625rem solid #EAEAEA;
  padding: 5px 10px 5px 0;
  padding: 0.3125rem 0.625rem 0.3125rem 0;
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
}
.kanno-shop__card-more::after {
  position: absolute;
  content: "";
  width: 4px;
  width: 0.25rem;
  height: 10px;
  height: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 48px;
  right: 3rem;
  background: url(../img/common/arrow-icon15.png) no-repeat center/contain;
}

/* kanno */
.kanno {
  font-family: "Noto Sans JP", sans-serif;
}
.kanno .lead {
  font-weight: 400;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kanno .lead {
    margin-top: 0.625rem;
  }
}

/* news-archive */
.news-archive {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-archive {
    padding-bottom: 1.875rem;
  }
}

.news-archive__items {
  width: 700px;
  width: 43.75rem;
  max-width: 100%;
}

.news-archive__item + .news-archive__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.news-archive__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
  border-bottom: 1px solid #EAEAEA;
  border-bottom: 0.0625rem solid #EAEAEA;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-archive__item-inner {
    display: block;
  }
}

.news-archive__item-img {
  width: 170px;
  width: 10.625rem;
  min-width: 170px;
  min-width: 10.625rem;
}
@media screen and (max-width: 767px) {
  .news-archive__item-img {
    width: 100%;
  }
}
.news-archive__item-img img {
  border-radius: 0.625rem;
}

@media screen and (max-width: 767px) {
  .news-archive__item-body {
    margin-top: 0.9375rem;
  }
}

.news-archive__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .news-archive__item-header {
    gap: 1.25rem;
  }
}

.news-archive__item-date {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #C1C1C1;
}

.news-archive__item-category span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #269DD1;
  border: 1px solid #269DD1;
  border: 0.0625rem solid #269DD1;
  border-radius: 1.875rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}
.news-archive__item-category span.blue {
  border-color: #269DD1;
  color: #269DD1;
}
.news-archive__item-category span.orange {
  border-color: #D57808;
  color: #D57808;
}
.news-archive__item-category span.green {
  border-color: #448032;
  color: #448032;
}

.news-archive__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.news-archive__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
}
@media screen and (max-width: 767px) {
  .news-archive__item-text {
    line-height: 1.6;
  }
}

.news-archive__item-more {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  background: url(../img/common/arrow-icon03.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon03.png) no-repeat center right/0.375rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-archive__item-more {
    padding-right: 0.9375rem;
  }
}

/* news-single */
/* breakdown */
.breakdown__unit {
  background: #fff;
  border-radius: 1.25rem;
  padding: 60px;
  padding: 3.75rem;
}
@media screen and (max-width: 767px) {
  .breakdown__unit {
    padding: 1.875rem 1.25rem;
  }
}
.breakdown__unit + .breakdown__unit {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .breakdown__unit + .breakdown__unit {
    margin-top: 1.25rem;
  }
}

.breakdown__unit-header {
  text-align: center;
}

.breakdown__unit-subtitle {
  display: inline-block;
  min-width: 320px;
  min-width: 20rem;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  background: #1C2087;
  border-radius: 1.875rem;
  padding: 5px 15px;
  padding: 0.3125rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .breakdown__unit-subtitle {
    font-size: 1.25rem;
    min-width: unset;
  }
}

.breakdown__unit-title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .breakdown__unit-title {
    font-size: 1.5rem;
  }
}
.breakdown__unit-title span {
  text-align: center;
  display: inline-block;
  width: 50px;
  width: 3.125rem;
  min-width: 50px;
  min-width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: #CB4F4A;
  border-radius: 50%;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .breakdown__unit-title span {
    width: 2.375rem;
    min-width: 2.375rem;
    height: 2.375rem;
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }
}

.breakdown__unit-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .breakdown__unit-text {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}

.breakdown__subheading {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1C2087;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .breakdown__subheading {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.breakdown__box {
  background: #FBFAF7;
  border-radius: 0.625rem;
  padding: 34px;
  padding: 2.125rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .breakdown__box {
    padding: 1.25rem;
  }
}

.breakdown__included .included__items {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  .breakdown__included .included__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.breakdown__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  gap: 1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .breakdown__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.breakdown__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 0.625rem;
}

.breakdown__item-img img {
  border-radius: 0.625rem 0.625rem 0 0;
}

.breakdown__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #FBFAF7;
  border-radius: 0 0 0.625rem 0.625rem;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}

.breakdown__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .breakdown__item-title {
    font-size: 1rem;
  }
}

.breakdown__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 7px;
  margin-top: 0.4375rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .breakdown__item-text {
    font-size: 1rem;
  }
}

.breakdown__item-subtext {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #1C2087;
  border-radius: 0.1875rem;
  border: 1px solid #1C2087;
  border: 0.0625rem solid #1C2087;
  padding: 0 5px;
  padding: 0 0.3125rem;
  margin-top: auto;
}

.breakdown__unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .breakdown__unit-inner {
    display: block;
    margin-top: 1.25rem;
  }
}

.breakdown__unit-subtext {
  width: 61%;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .breakdown__unit-subtext {
    width: 100%;
    font-size: 1rem;
  }
}

.breakdown__unit-img {
  width: 34%;
}
@media screen and (max-width: 767px) {
  .breakdown__unit-img {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.breakdown__unit-img img {
  border-radius: 0.625rem;
}

/* compare */
.compare {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .compare .title {
    font-size: 1.625rem;
  }
}

.compare__subtitle {
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.compare__subtitle span {
  display: inline-block;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  background: url(../img/plan/compare-bg.png) no-repeat center/contain;
  padding: 3px 25px;
  padding: 0.1875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .compare__subtitle span {
    font-size: 1.25rem;
    padding: 0.3125rem 1.5625rem;
  }
}

.compare__table-wrapper {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .compare__table-wrapper {
    overflow: auto;
    margin-top: 1.25rem;
  }
}

.compare__table {
  table-layout: fixed;
  width: 100%;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #C1C1C1;
  border: 0.0625rem solid #C1C1C1;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .compare__table {
    width: 62.5rem;
  }
}
.compare__table tr:first-child th {
  color: #fff;
  line-height: 1.1;
  border-top: none;
  padding: 5px;
  padding: 0.3125rem;
}
.compare__table tr:first-child th:not(:first-child) {
  border-left: 1px solid #fff;
  border-left: 0.0625rem solid #fff;
}
.compare__table tr:first-child th:first-child {
  border-radius: 1.25rem 0 0;
}
.compare__table tr:first-child th:last-child {
  border-radius: 0 1.25rem 0 0;
}
.compare__table tr:last-child {
  vertical-align: top;
}
.compare__table tr:last-child td {
  text-align: left;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .compare__table tr:last-child td {
    font-size: 0.875rem;
  }
}
.compare__table th, .compare__table td {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .compare__table th, .compare__table td {
    font-size: 1rem;
  }
}
.compare__table th {
  background: #F7F7F7;
  border-top: 1px solid #707070;
  border-top: 0.0625rem solid #707070;
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .compare__table th {
    padding: 0.625rem 0.625rem;
  }
}
.compare__table th:first-child {
  text-align: left;
  width: 120px;
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .compare__table th:first-child {
    width: 6.25rem;
  }
}
.compare__table th.orange {
  background: #D57808;
}
.compare__table th.blue {
  background: #4B88AF;
}
.compare__table th.green {
  background: #739618;
}
.compare__table th.pink {
  background: #C15B9E;
}
.compare__table th.green02 {
  background: #4B967F;
}
.compare__table th.brown {
  background: #9F966D;
}
.compare__table td {
  line-height: 1.63;
  border-left: 1px solid #000;
  border-left: 0.0625rem solid #000;
  border-top: 1px solid #707070;
  border-top: 0.0625rem solid #707070;
  padding: 15px 15px;
  padding: 0.9375rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .compare__table td {
    padding: 0.625rem 0.625rem;
  }
}

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

.cost__title-wrapper {
  text-align: center;
}

.cost__title {
  display: inline-block;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  background: #CB4F4A;
  border-radius: 1.875rem;
  padding: 3px 25px;
  padding: 0.1875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .cost__title {
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 0.625rem 1.875rem;
    border-radius: 3.125rem;
  }
}

.cost__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .cost__inner {
    display: block;
    margin-top: 1.25rem;
  }
}

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

.cost__item {
  text-align: center;
  padding: 30px 30px;
  padding: 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .cost__item {
    padding: 1.5625rem 1.875rem;
  }
}
.cost__item + .cost__item {
  margin-top: 4px;
  margin-top: 0.25rem;
}
.cost__item:first-child {
  background: #4BA8D1;
}
.cost__item:first-child .cost__item-title {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .cost__item:first-child .cost__item-title {
    font-size: 1.375rem;
  }
}
.cost__item:nth-child(2) {
  background: #E6678E;
}
.cost__item:nth-child(2) .cost__item-subtitle {
  color: #E6678E;
}
.cost__item:nth-child(3) {
  background: #60C642;
}
.cost__item:nth-child(3) .cost__item-subtitle {
  color: #60C642;
}

.cost__item-subtitle {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  background: #fff;
  padding: 3px;
  padding: 0.1875rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .cost__item-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.cost__item-title {
  font-size: 46px;
  font-size: 2.875rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .cost__item-title {
    font-size: 2rem;
  }
}

.cost__item-text {
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .cost__item-text {
    font-size: 1.125rem;
  }
}

.cost__body {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .cost__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.cost__text {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .cost__text {
    font-size: 1.125rem;
  }
}
.cost__text span {
  font-weight: 700;
  background: #FFFB8E;
}

.cost__box {
  background: #F7F7F7;
  border-radius: 1.25rem;
  margin-top: 50px;
  margin-top: 3.125rem;
  padding: 40px 40px 55px;
  padding: 2.5rem 2.5rem 3.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cost__box {
    margin-top: 1.25rem;
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.cost__box::after {
  position: absolute;
  content: "";
  width: 89px;
  width: 5.5625rem;
  height: 185px;
  height: 11.5625rem;
  bottom: 0;
  right: 19px;
  right: 1.1875rem;
  background: url(../img/plan/cost-img.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cost__box::after {
    width: 3.75rem;
    height: 7.5rem;
  }
}

.cost__box-title {
  text-align: center;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cost__box-title {
    font-size: 1.5rem;
  }
}
.cost__box-title span {
  display: inline-block;
  position: relative;
}
.cost__box-title span::before, .cost__box-title span::after {
  position: absolute;
  content: "";
  width: 3px;
  width: 0.1875rem;
  height: 44px;
  height: 2.75rem;
  background: #000;
  bottom: -3px;
  bottom: -0.1875rem;
}
@media screen and (max-width: 767px) {
  .cost__box-title span::before, .cost__box-title span::after {
    width: 0.125rem;
    height: 2.1875rem;
    bottom: 0;
  }
}
.cost__box-title span::before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  left: -25px;
  left: -1.5625rem;
}
@media screen and (max-width: 767px) {
  .cost__box-title span::before {
    left: -1.25rem;
  }
}
.cost__box-title span::after {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  right: -25px;
  right: -1.5625rem;
}
@media screen and (max-width: 767px) {
  .cost__box-title span::after {
    right: -1.25rem;
  }
}

.cost__box-list {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .cost__box-list {
    margin-top: 1.25rem;
  }
}

.cost__box-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .cost__box-list-item {
    font-size: 1.125rem;
  }
}
.cost__box-list-item + .cost__box-list-item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .cost__box-list-item + .cost__box-list-item {
    margin-top: 0.5rem;
  }
}
.cost__box-list-item span {
  display: inline-block;
}
.cost__box-list-item span.number {
  text-align: center;
  width: 26px;
  width: 1.625rem;
  min-width: 26px;
  min-width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #CB4F4A;
  line-height: 1.4;
  border-radius: 50%;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .cost__box-list-item span.number {
    margin-top: 0.1875rem;
  }
}
.cost__box-list-item span.large {
  font-size: 24px;
  font-size: 1.5rem;
  color: #CB4F4A;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cost__box-list-item span.large {
    font-size: 1.25rem;
  }
}

/* feature */
.feature {
  background: #fff;
}
.feature .l-section {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .feature .l-section {
    padding-top: 1.875rem;
  }
}

.feature__table-wrapper {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .feature__table-wrapper {
    overflow-x: auto;
    padding: 1.25rem 0 0.625rem;
    margin-top: 1.25rem;
  }
}

.feature__table {
  width: 100%;
  border-spacing: 0;
  border: 1px solid #888;
  border: 0.0625rem solid #888;
  border-radius: 1.25rem;
  position: relative;
}
.feature__table::before {
  position: absolute;
  content: "";
  top: 0;
  left: 151px;
  left: 9.4375rem;
  width: calc(33.33333% - 3.125rem);
  top: -5px;
  top: -0.3125rem;
  bottom: -5px;
  bottom: -0.3125rem;
  border: 5px solid #d97706;
  border: 0.3125rem solid #d97706;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .feature__table::before {
    left: 7.5625rem;
    width: calc(33.33333% - 2.5rem);
  }
}
@media screen and (max-width: 767px) {
  .feature__table {
    width: 56.25rem;
  }
}
.feature__table tr:first-child th {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .feature__table tr:first-child th {
    font-size: 1.25rem;
  }
}
.feature__table tr:first-child th:nth-child(2) {
  border-radius: 0.625rem 0 0 0;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  position: relative;
}
.feature__table tr:first-child th:nth-child(2)::before {
  position: absolute;
  content: "";
  height: 20px;
  height: 1.25rem;
  left: 0;
  right: -1px;
  right: -0.0625rem;
  top: -10px;
  top: -0.625rem;
  border-radius: 0.625rem 0.625rem 0 0;
}
.feature__table tr:first-child th:nth-child(2).orange::before {
  background: #D57808;
}
.feature__table tr:first-child th:nth-child(2).blue::before {
  background: #2988B2;
}
.feature__table tr:first-child th:nth-child(2).green::before {
  background: #6E9F60;
}
.feature__table tr:first-child th:nth-child(4) {
  border-radius: 0 1.25rem 0 0;
}
.feature__table tr:first-child th.orange {
  background: #D57808;
}
.feature__table tr:first-child th.orange span {
  color: #D57808;
}
.feature__table tr:first-child th.blue {
  background: #2988B2;
}
.feature__table tr:first-child th.blue span {
  color: #2988B2;
}
.feature__table tr:first-child th.green {
  background: #6E9F60;
}
.feature__table tr:first-child th.green span {
  color: #6E9F60;
}
.feature__table tr:first-child th.pink {
  background: #C15B9E;
}
.feature__table tr:first-child th.pink span {
  color: #C15B9E;
}
.feature__table tr:first-child th.green02 {
  background: #4B967F;
}
.feature__table tr:first-child th.green02 span {
  color: #4B967F;
}
.feature__table tr:first-child th.brown {
  background: #9F966D;
}
.feature__table tr:first-child th.brown span {
  color: #9F966D;
}
.feature__table tr:first-child th span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  background: #fff;
  border-radius: 1.5625rem;
  padding: 1px 10px;
  padding: 0.0625rem 0.625rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .feature__table tr:first-child th span {
    font-size: 1rem;
  }
}
.feature__table tr:not(:first-child) th, .feature__table tr:not(:first-child) td {
  border-top: 1px solid #EAEAEA;
  border-top: 0.0625rem solid #EAEAEA;
}
.feature__table tr:nth-child(odd) td {
  background: #FCFCFA;
}
.feature__table tr:last-child td {
  text-align: left;
  padding-left: 40px;
  padding-left: 2.5rem;
}
.feature__table th, .feature__table td {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .feature__table th, .feature__table td {
    font-size: 1.125rem;
  }
}
.feature__table th:not(:first-child), .feature__table td:not(:first-child) {
  border-left: 1px solid #EAEAEA;
  border-left: 0.0625rem solid #EAEAEA;
}
.feature__table th {
  text-align: left;
  padding: 18px 10px;
  padding: 1.125rem 0.625rem;
}
.feature__table th:first-child {
  width: 150px;
  width: 9.375rem;
}
@media screen and (max-width: 767px) {
  .feature__table th:first-child {
    width: 7.5rem;
  }
}
.feature__table td {
  text-align: center;
  padding: 15px 15px;
  padding: 0.9375rem 0.9375rem;
}
.feature__table td:nth-child(2) .price {
  color: #CB4F4A;
}
.feature__table td .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #888;
}
.feature__table td .price > span:first-child {
  font-family: "Akshar", sans-serif;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .feature__table td .price > span:first-child {
    font-size: 2.5rem;
  }
}
.feature__table td .price > span:nth-child(2) {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .feature__table td .price > span:nth-child(2) {
    font-size: 1.25rem;
  }
}
.feature__table td .price > span:nth-child(2) span {
  text-align: left;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .feature__table td .price > span:nth-child(2) span {
    font-size: 0.75rem;
  }
}
.feature__table td .tag {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  gap: 0.625rem;
}
.feature__table td .tag.orange span.active {
  background: #D57808;
}
.feature__table td .tag.blue span.active {
  background: #2988B2;
}
.feature__table td .tag.green span.active {
  background: #6E9F5F;
}
.feature__table td .tag.pink span.active {
  background: #C15B9E;
}
.feature__table td .tag.green02 span.active {
  background: #4B967F;
}
.feature__table td .tag.brown span.active {
  background: #9F966D;
}
.feature__table td .tag span {
  text-align: center;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #C1C1C1;
  border-radius: 0.3125rem;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .feature__table td .tag span {
    font-size: 1rem;
  }
}
.feature__table td .available {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}
.feature__table td .available span {
  display: inline-block;
  font-weight: 700;
  padding-right: 28px;
  padding-right: 1.75rem;
  position: relative;
}
.feature__table td .available span::after {
  position: absolute;
  content: "";
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  border: 2px solid #CE3D20;
  border: 0.125rem solid #CE3D20;
  border-radius: 50%;
}

/* package */
.package {
  background: #F7F7F7;
  position: relative;
}
@media screen and (max-width: 767px) {
  .package .l-section {
    padding-top: 3.75rem;
  }
}
.package::before {
  position: absolute;
  content: "";
  width: 250px;
  width: 15.625rem;
  height: 40px;
  height: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  background: url(../img/plan/package-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .package::before {
    width: 12.5rem;
    height: 1.875rem;
  }
}

.package__title {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
}
@media screen and (max-width: 767px) {
  .package__title {
    font-size: 1.5rem;
  }
}
.package__title > span {
  position: relative;
  z-index: 1;
}
.package__title > span::before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  bottom: 0;
  height: 23px;
  height: 1.4375rem;
  background: #FFFB8E;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .package__title > span::before {
    height: 0.9375rem;
  }
}
.package__title > span span {
  color: #CB4F4A;
}

.package__content {
  background: url(../img/plan/package-bg01.png) no-repeat center/cover;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .package__content {
    width: 25rem;
    max-width: 100%;
    margin: 1.25rem auto 0;
  }
}

.package__inner {
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .8);
  padding: 25px 50px 30px;
  padding: 1.5625rem 3.125rem 1.875rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .package__inner {
    padding: 1.25rem;
  }
}

.package__img {
  position: absolute;
  width: 188px;
  width: 11.75rem;
  right: 0;
  bottom: 0;
  background: url(../img/plan/package-img.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .package__img {
    width: 8.75rem;
    bottom: unset;
    top: 11.25rem;
  }
}

.package__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .package__header {
    display: block;
  }
}

.package__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  border-left: 6px solid #E85884;
  border-left: 0.375rem solid #E85884;
  padding-left: 15px;
  padding-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .package__subtitle {
    font-size: 1.25rem;
    border-left: 0.25rem solid #E85884;
    padding-left: 0.625rem;
  }
}
.package__subtitle span {
  display: inline-block;
  font-size: 38px;
  font-size: 2.375rem;
  color: #E85884;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .package__subtitle span {
    font-size: 1.5rem;
    margin-top: 0.3125rem;
  }
}

.package__text {
  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: 226px;
  width: 14.125rem;
  max-width: 100%;
  height: 104px;
  height: 6.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
  color: #EA9A55;
  background: url(../img/plan/package-bg02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .package__text {
    font-size: 1.125rem;
    width: 12.5rem;
    height: 5.625rem;
    margin-top: 1.25rem;
  }
}

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

.package__list-item {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 9px 15px 9px 35px;
  padding: 0.5625rem 0.9375rem 0.5625rem 2.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .package__list-item {
    font-size: 1.125rem;
    padding: 0.4375rem 0.625rem 0.4375rem 1.875rem;
  }
  .package__list-item + .package__list-item {
    margin-top: 0.625rem;
  }
}
.package__list-item::before {
  position: absolute;
  content: "";
  width: 19px;
  width: 1.1875rem;
  height: 14px;
  height: 0.875rem;
  left: 10px;
  left: 0.625rem;
  top: 22px;
  top: 1.375rem;
  background: url(../img/common/check-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .package__list-item::before {
    width: 0.9375rem;
    height: 0.75rem;
    top: 0.9375rem;
  }
}

.package__btn {
  padding: 15px 20px 15px 0;
  padding: 0.9375rem 1.25rem 0.9375rem 0;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .package__btn {
    padding: 0.9375rem 0;
    margin-top: 1.25rem;
  }
}
.package__btn::after {
  right: 100px;
  right: 6.25rem;
}
@media screen and (max-width: 767px) {
  .package__btn::after {
    right: 2.5rem;
  }
}

/* plan-archive */
.plan-archive {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .plan-archive {
    padding-bottom: 1.875rem;
  }
}

/* plan-cv */
.plan-cv {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .plan-cv {
    padding-top: 1.875rem;
  }
}

/* plan-included */
.plan-included .l-section {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .plan-included .l-section {
    padding-top: 1.875rem;
  }
}

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

/* plan-list */
.plan-list__subtitle {
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.plan-list__subtitle span {
  display: inline-block;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  background: url(../img/plan/plan-list-bg01.png) no-repeat center/contain;
  padding: 5px 30px;
  padding: 0.3125rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .plan-list__subtitle span {
    font-size: 1.25rem;
    padding: 0.3125rem 1.5625rem;
  }
}

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

.plan-list__caution {
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .plan-list__caution {
    text-align: left;
  }
}

.plan-list__box {
  width: 660px;
  width: 41.25rem;
  max-width: 100%;
  background: url(../img/plan/plan-list-bg02.png) no-repeat center/cover;
  border-radius: 0.625rem;
  padding: 35px 45px;
  padding: 2.1875rem 2.8125rem;
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan-list__box {
    padding: 0.9375rem 1.25rem;
    margin-top: 1.875rem;
  }
}
.plan-list__box::after {
  position: absolute;
  content: "";
  width: 110px;
  width: 6.875rem;
  height: 116px;
  height: 7.25rem;
  bottom: 0;
  right: 20px;
  right: 1.25rem;
  background: url(../img/plan/plan-list-img.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .plan-list__box::after {
    width: 5rem;
    height: 5.3125rem;
    right: 0.625rem;
  }
}

.plan-list__box-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .plan-list__box-text {
    font-size: 1.125rem;
    padding-right: 3.125rem;
  }
}

/* plan-mv */
.plan-mv {
  background: url(../img/plan/plan-mv-bg01.jpg) no-repeat center/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .plan-mv {
    padding: 1.875rem 0 0;
  }
}

.plan-mv__inner {
  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;
  padding-right: 55px;
  padding-right: 3.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan-mv__inner {
    display: block;
    padding-right: 0;
  }
}

.plan-mv__body {
  width: 556px;
  width: 34.75rem;
  max-width: 100%;
  background: url(../img/plan/plan-mv-bg02.png) no-repeat center/cover;
  border-radius: 0.625rem;
  padding: 35px 38px 38px;
  padding: 2.1875rem 2.375rem 2.375rem;
}
@media screen and (max-width: 767px) {
  .plan-mv__body {
    width: 25rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5625rem 0.9375rem;
  }
}

.plan-mv__heading {
  text-align: center;
}

.plan-mv__subtitle {
  display: block;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .plan-mv__subtitle {
    font-size: 1.5rem;
  }
}
.plan-mv__subtitle span {
  color: #1C2087;
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan-mv__subtitle span {
    font-size: 1.75rem;
  }
}

.plan-mv__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #CB4F4A;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.plan-mv__price > span:first-child {
  display: inline-block;
  font-family: "Akshar", sans-serif;
  font-size: 105px;
  font-size: 6.5625rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .plan-mv__price > span:first-child {
    font-size: 4.375rem;
  }
}
.plan-mv__price > span:nth-child(2) {
  text-align: left;
  font-size: 41px;
  font-size: 2.5625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .plan-mv__price > span:nth-child(2) {
    font-size: 1.75rem;
  }
}
.plan-mv__price > span:nth-child(2) span {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .plan-mv__price > span:nth-child(2) span {
    font-size: 0.875rem;
  }
}

.plan-mv__tax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
  color: #CB4F4A;
  padding-right: 15px;
  padding-right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .plan-mv__tax {
    padding-right: 0;
  }
}

.plan-mv__tax-title {
  font-size: 18px;
  font-size: 1.125rem;
  border: 1px solid #CB4F4A;
  border: 0.0625rem solid #CB4F4A;
  line-height: 1.4;
  padding: 0 6px;
  padding: 0 0.375rem;
}
@media screen and (max-width: 767px) {
  .plan-mv__tax-title {
    font-size: 1rem;
  }
}

.plan-mv__tax-text {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .plan-mv__tax-text {
    font-size: 1.125rem;
  }
}
.plan-mv__tax-text span {
  font-family: "Akshar", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .plan-mv__tax-text span {
    font-size: 1.5rem;
  }
}

.plan-mv__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 33px;
  gap: 2.0625rem;
  background: rgba(255, 255, 255, .6);
  border-radius: 0.625rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .plan-mv__box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.9375rem;
    padding: 0.5rem 0.625rem;
  }
}

.plan-mv__box-title {
  font-size: 32px;
  font-size: 2rem;
  color: #1C2087;
  font-weight: 500;
  border: 1px solid #EFF0F7;
  border: 0.0625rem solid #EFF0F7;
  background: #fff;
  border-radius: 0.625rem;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .plan-mv__box-title {
    font-size: 1.25rem;
    padding: 0.3125rem 0.625rem;
  }
}

.plan-mv__box-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  line-height: 1.1;
}
.plan-mv__box-text span {
  display: inline-block;
}
.plan-mv__box-text span:first-child {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  color: #1C2087;
}
@media screen and (max-width: 767px) {
  .plan-mv__box-text span:first-child {
    font-size: 1.125rem;
  }
}
.plan-mv__box-text span:nth-child(2) {
  font-family: "Akshar", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1C2087;
}
@media screen and (max-width: 767px) {
  .plan-mv__box-text span:nth-child(2) {
    font-size: 1.5rem;
  }
}
.plan-mv__box-text span:nth-child(2) span {
  font-size: 85px;
  font-size: 5.3125rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .plan-mv__box-text span:nth-child(2) span {
    font-size: 3.125rem;
  }
}
.plan-mv__box-text span:nth-child(3) {
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 700;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .plan-mv__box-text span:nth-child(3) {
    font-size: 1.25rem;
  }
}

.plan-mv__img {
  width: 40%;
  width: 623px;
  width: 38.9375rem;
  margin-left: -65px;
  margin-left: -4.0625rem;
  margin-right: -70px;
  margin-right: -4.375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .plan-mv__img {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .plan-mv__img {
    width: 15.625rem;
    max-width: 100%;
    margin: -0.625rem auto 0;
  }
}

/* plan-search */
/* plan-single */
.plan-single {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .plan-single {
    padding-bottom: 2.5rem;
  }
}
.plan-single.plan01 .plan-single__box {
  border-color: rgba(213, 120, 8, .2);
}
.plan-single.plan01 .plan-single__box-title {
  color: #D57808;
}
.plan-single.plan01 .plan-single__box-category span.active {
  background: #D57808;
}
.plan-single.plan01 .plan-single__subtitle {
  color: #D57808;
}
.plan-single.plan01 .plan-single__voice-item-title {
  background: #D57808;
}
.plan-single.plan01 .feature__table::before {
  border-color: #D57808;
}
.plan-single.plan02 .plan-single__box {
  border-color: rgba(76, 136, 175, .2);
}
.plan-single.plan02 .plan-single__box-title {
  color: #4C88AF;
}
.plan-single.plan02 .plan-single__box-category span.active {
  background: #4C88AF;
}
.plan-single.plan02 .plan-single__subtitle {
  color: #4C88AF;
}
.plan-single.plan02 .plan-single__voice-item-title {
  background: #4C88AF;
}
.plan-single.plan02 .feature__table::before {
  border-color: #4C88AF;
}
.plan-single.plan03 .plan-single__box {
  border-color: rgba(110, 159, 95, .2);
}
.plan-single.plan03 .plan-single__box-title {
  color: #6E9F5F;
}
.plan-single.plan03 .plan-single__box-category span.active {
  background: #6E9F5F;
}
.plan-single.plan03 .plan-single__subtitle {
  color: #6E9F5F;
}
.plan-single.plan03 .plan-single__voice-item-title {
  background: #6E9F5F;
}
.plan-single.plan03 .feature__table::before {
  border-color: #6E9F5F;
}
.plan-single.plan04 .plan-single__box {
  border-color: rgba(193, 91, 158, .2);
}
.plan-single.plan04 .plan-single__box-title {
  color: #C15B9E;
}
.plan-single.plan04 .plan-single__box-category span.active {
  background: #C15B9E;
}
.plan-single.plan04 .plan-single__subtitle {
  color: #C15B9E;
}
.plan-single.plan04 .plan-single__voice-item-title {
  background: #C15B9E;
}
.plan-single.plan04 .feature__table::before {
  border-color: #C15B9E;
}
.plan-single.plan05 .plan-single__box {
  border-color: rgba(75, 150, 127, .2);
}
.plan-single.plan05 .plan-single__box-title {
  color: #4B967F;
}
.plan-single.plan05 .plan-single__box-category span.active {
  background: #4B967F;
}
.plan-single.plan05 .plan-single__subtitle {
  color: #4B967F;
}
.plan-single.plan05 .plan-single__voice-item-title {
  background: #4B967F;
}
.plan-single.plan05 .feature__table::before {
  border-color: #4B967F;
}
.plan-single.plan06 .plan-single__box {
  border-color: rgba(159, 150, 109, .2);
}
.plan-single.plan06 .plan-single__box-title {
  color: #9F966D;
}
.plan-single.plan06 .plan-single__box-category span.active {
  background: #9F966D;
}
.plan-single.plan06 .plan-single__subtitle {
  color: #9F966D;
}
.plan-single.plan06 .plan-single__voice-item-title {
  background: #9F966D;
}
.plan-single.plan06 .feature__table::before {
  border-color: #9F966D;
}

.plan-single__header {
  background: #fff;
}

.plan-single__box {
  border-radius: 1.25rem;
  border: 10px solid #F6E3CB;
  border: 0.625rem solid #F6E3CB;
  padding: 30px 30px;
  padding: 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .plan-single__box {
    border: 0.3125rem solid #F6E3CB;
    padding: 1.25rem 1.25rem;
  }
}

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

.plan-single__box-img {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .plan-single__box-img {
    width: 100%;
  }
}
.plan-single__box-img img {
  max-height: 260px;
  max-height: 16.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.plan-single__box-body {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .plan-single__box-body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.plan-single__box-subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .plan-single__box-subtitle {
    font-size: 1.125rem;
  }
}

.plan-single__box-title {
  font-size: 38px;
  font-size: 2.375rem;
  color: #D57808;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .plan-single__box-title {
    font-size: 1.5rem;
  }
}

.plan-single__box-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .plan-single__box-prices {
    display: block;
    margin-top: 1.25rem;
  }
}

.plan-single__box-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #CB4F4A;
}
.plan-single__box-price > span:first-child {
  display: inline-block;
  font-family: "Akshar", sans-serif;
  font-size: 75px;
  font-size: 4.6875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .plan-single__box-price > span:first-child {
    font-size: 3.4375rem;
  }
}
.plan-single__box-price > span:nth-child(2) {
  text-align: left;
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .plan-single__box-price > span:nth-child(2) {
    font-size: 1.5rem;
  }
}
.plan-single__box-price > span:nth-child(2) span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .plan-single__box-price > span:nth-child(2) span {
    font-size: 0.75rem;
    padding-left: 0;
  }
}

.plan-single__box-tax {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #C1C1C1;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .plan-single__box-tax {
    font-size: 1rem;
    margin-top: 0.3125rem;
  }
}
.plan-single__box-tax span {
  display: inline-block;
  font-family: "Akshar", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .plan-single__box-tax span {
    font-size: 1.375rem;
  }
}

.plan-single__box-category {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  gap: 0.625rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .plan-single__box-category {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem;
    margin-top: 1.25rem;
    padding-right: 0;
  }
}
.plan-single__box-category span {
  text-align: center;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #C1C1C1;
  border-radius: 0.3125rem;
  padding: 6px;
  padding: 0.375rem;
}
@media screen and (max-width: 767px) {
  .plan-single__box-category span {
    font-size: 1rem;
  }
}
.plan-single__box-category span.active {
  background: #D57808;
}

.plan-single__box-contact {
  width: 930px;
  width: 58.125rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 20px;
  padding: 1.25rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .plan-single__box-contact {
    display: block;
    padding: 1.25rem 0.9375rem;
    margin-top: 1.25rem;
  }
}

.plan-single__box-contact-title {
  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;
  border: 1px solid #CE3D20;
  border: 0.0625rem solid #CE3D20;
  border-radius: 0.375rem;
  padding: 10px 18px;
  padding: 0.625rem 1.125rem;
  white-space: nowrap;
}
.plan-single__box-contact-title span {
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #CE3D20;
}
@media screen and (max-width: 767px) {
  .plan-single__box-contact-title span {
    font-size: 1rem;
  }
}
.plan-single__box-contact-title span:nth-child(2) {
  padding-top: 12px;
  padding-top: 0.75rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan-single__box-contact-title span:nth-child(2) {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
  }
}
.plan-single__box-contact-title span:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 100px;
  width: 6.25rem;
  height: 1px;
  height: 0.0625rem;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #CE3D20;
}

.plan-single__box-contact-tels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .plan-single__box-contact-tels {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0.625rem;
  }
}

.plan-single__box-contact-tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  font-family: "Akshar", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  color: #2988B2;
  line-height: 1;
  background: #fff;
  border-radius: 1.25rem;
  padding: 9px 20px 9px 10px;
  padding: 0.5625rem 1.25rem 0.5625rem 0.625rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .plan-single__box-contact-tel a {
    font-size: 1.4375rem;
    border-radius: 0.625rem;
    white-space: nowrap;
    padding: 0.625rem;
    gap: 0.5rem;
  }
}
.plan-single__box-contact-tel span {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #2988B2;
  border-radius: 0.25rem;
  padding: 5px 8px 6px;
  padding: 0.3125rem 0.5rem 0.375rem;
}
@media screen and (max-width: 767px) {
  .plan-single__box-contact-tel span {
    font-size: 0.9375rem;
    padding: 0.375rem;
  }
}

.plan-single__box-caution {
  text-align: right;
  font-weight: 500;
  color: #C1C1C1;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .plan-single__box-caution {
    text-align: left;
  }
}

.plan-single__subtitle {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #CB4F4A;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan-single__subtitle {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }
}

.plan-single__text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .plan-single__text {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.plan-single__voice {
  border-radius: 1.25rem;
  background: #FBFAF7;
  margin-top: 45px;
  margin-top: 2.8125rem;
  padding: 60px 60px;
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .plan-single__voice {
    margin-top: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}

.plan-single__voice-title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .plan-single__voice-title {
    font-size: 1.5rem;
  }
}

.plan-single__voice-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  gap: 1rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan-single__voice-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.plan-single__voice-item {
  background: #fff;
  border-radius: 1.25rem;
  padding: 30px 20px 25px;
  padding: 1.875rem 1.25rem 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan-single__voice-item {
    padding: 1.5625rem 1.25rem 1.25rem;
  }
}

.plan-single__voice-item-icon {
  width: 130px;
  width: 8.125rem;
  max-width: 100%;
  margin: 0 auto;
}
.plan-single__voice-item-icon img {
  border-radius: 50%;
  background: #F7F7F7;
}

.plan-single__voice-item-title {
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: -10px;
  top: -0.625rem;
  width: 70px;
  width: 4.375rem;
  height: 70px;
  height: 4.375rem;
  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;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.22;
  background: #D57808;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .plan-single__voice-item-title {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1rem;
  }
}

.plan-single__voice-item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  font-weight: 500;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .plan-single__voice-item-text {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.plan-single__footer {
  background: #fff;
}
.plan-single__footer .l-section {
  padding-top: 70px;
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .plan-single__footer .l-section {
    padding-top: 1.875rem;
  }
}

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

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

.plan-single__subheading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .plan-single__subheading {
    text-align: center;
    display: block;
    font-size: 1.5rem;
  }
}
.plan-single__subheading::before, .plan-single__subheading::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  height: 0.0625rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .plan-single__subheading::before, .plan-single__subheading::after {
    display: none;
  }
}
.plan-single__subheading::before {
  margin-right: 1em;
}
.plan-single__subheading::after {
  margin-left: 1em;
}
.plan-single__subheading.blue {
  color: #2988B2;
}
.plan-single__subheading.blue::before, .plan-single__subheading.blue::after {
  background: #2988B2;
}
.plan-single__subheading.orange {
  color: #D57808;
}
.plan-single__subheading.orange::before, .plan-single__subheading.orange::after {
  background: #D57808;
}

.plan-single__caution {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .plan-single__caution {
    font-size: 1rem;
  }
}

.plan-single__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  gap: 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .plan-single__cards {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.25rem;
  }
}

.plan-single__card {
  border-radius: 1.25rem;
  background: #FBFAF7;
  padding: 20px 10px 15px;
  padding: 1.25rem 0.625rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .plan-single__card {
    padding-top: 0.9375rem;
  }
}

.plan-single__card-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .plan-single__card-title {
    font-size: 1.25rem;
  }
}

.plan-single__card-img {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.plan-single__card-img img {
  border-radius: 0.625rem;
}

.plan-single__card-price {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #CB4F4A;
  letter-spacing: 0.1em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .plan-single__card-price {
    font-size: 1.25rem;
  }
}
.plan-single__card-price span {
  display: inline-block;
  letter-spacing: 0;
}
.plan-single__card-price span.tax {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 -5px;
  margin: 0 -0.3125rem;
}
.plan-single__card-price span.number {
  font-family: "Akshar", sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
  line-height: 1;
  margin-right: 3px;
  margin-right: 0.1875rem;
}

.plan-single__card-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .plan-single__card-text {
    font-size: 1rem;
  }
}

.plan-single__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan-single__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.plan-single__item {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 1.25rem;
  background: #F7F7F7;
  padding: 35px 20px 35px 100px;
  padding: 2.1875rem 1.25rem 2.1875rem 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan-single__item {
    font-size: 1.125rem;
    padding: 0.9375rem 0.9375rem 0.9375rem 3.4375rem;
  }
}
.plan-single__item::before {
  position: absolute;
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 38px;
  left: 2.375rem;
  background: url(../img/common/check-icon03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .plan-single__item::before {
    width: 1.875rem;
    height: 1.875rem;
    left: 0.9375rem;
  }
}

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

/* point */
.point {
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point .l-section {
    padding-top: 3.75rem;
  }
}
.point::before {
  position: absolute;
  content: "";
  width: 250px;
  width: 15.625rem;
  height: 40px;
  height: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  background: url(../img/plan/point-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .point::before {
    width: 12.5rem;
    height: 1.875rem;
  }
}

.point__title-wrapper {
  text-align: center;
}

.point__title {
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .point__title {
    font-size: 1.625rem;
  }
}
.point__title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 23px;
  height: 1.4375rem;
  left: 0;
  bottom: 0;
  background: #FFFB8E;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .point__title::after {
    height: 0.9375rem;
  }
}
.point__title span {
  color: #CB4F4A;
}

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

.point__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 1.25rem;
  background: #FBF9F6;
  padding: 10px 40px 10px 10px;
  padding: 0.625rem 2.5rem 0.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .point__unit {
    display: block;
    padding: 0.9375rem 0.625rem;
  }
}
.point__unit + .point__unit {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.point__unit-img {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .point__unit-img {
    width: 100%;
  }
}
.point__unit-img img {
  border-radius: 1.25rem;
}

.point__unit-body {
  width: 64.5%;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .point__unit-body {
    width: 100%;
    padding-top: 0;
    margin-top: 1.25rem;
  }
}

.point__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1C2087;
}
@media screen and (max-width: 767px) {
  .point__unit-title {
    font-size: 1.25rem;
  }
}

.point__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 2px;
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .point__unit-text {
    font-size: 1rem;
  }
}

.point__unit-link-wrapper {
  text-align: right;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.point__unit-link {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1C2087;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid #1C2087;
  border: 0.0625rem solid #1C2087;
  padding: 7px 36px 7px 20px;
  padding: 0.4375rem 2.25rem 0.4375rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__unit-link {
    font-size: 1rem;
  }
}
.point__unit-link::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/arrow-icon10.png) no-repeat center/contain;
}

.point__footer {
  text-align: center;
  margin-top: 80px;
  margin-top: 5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .point__footer {
    margin-top: 1.875rem;
  }
}
.point__footer::after {
  position: absolute;
  content: "";
  width: 1274px;
  width: 79.625rem;
  height: 448px;
  height: 28rem;
  top: -130px;
  top: -8.125rem;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/plan/point-bg01.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .point__footer::after {
    width: 28.125rem;
    height: 11.25rem;
    top: -3.125rem;
  }
}

.point__inner {
  position: relative;
}
.point__inner::before, .point__inner::after {
  position: absolute;
  content: "";
  top: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .point__inner::before, .point__inner::after {
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    bottom: -4.375rem;
  }
}
.point__inner::before {
  width: 117px;
  width: 7.3125rem;
  height: 153px;
  height: 9.5625rem;
  left: 20px;
  left: 1.25rem;
  background: url(../img/plan/point-bg02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .point__inner::before {
    width: 3.125rem;
    height: 4.375rem;
    left: 0;
  }
}
.point__inner::after {
  width: 217px;
  width: 13.5625rem;
  height: 153px;
  height: 9.5625rem;
  right: 0;
  background: url(../img/plan/point-bg03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .point__inner::after {
    width: 6.25rem;
    height: 5rem;
    right: -1.25rem;
  }
}

.point__subtitle {
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .point__subtitle {
    font-size: 1.375rem;
  }
}
.point__subtitle::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 23px;
  height: 1.4375rem;
  left: 0;
  bottom: 0;
  background: #FFFB8E;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .point__subtitle::after {
    height: 0.9375rem;
  }
}
.point__subtitle span {
  font-size: 42px;
  font-size: 2.625rem;
  color: #1C2087;
}
@media screen and (max-width: 767px) {
  .point__subtitle span {
    font-size: 2.25rem;
  }
}

.point__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .point__text {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}

/* process */
.process .l-section {
  padding-top: 65px;
  padding-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .process .l-section {
    padding-top: 1.875rem;
  }
}

.process__table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #888;
  border: 0.0625rem solid #888;
  border-radius: 1.25rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .process__table {
    margin-top: 1.25rem;
  }
}
.process__table th, .process__table td {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 9px;
  padding: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .process__table th, .process__table td {
    font-size: 1rem;
    line-height: 1.3;
  }
}
.process__table th {
  color: #fff;
  background: #00A0E9;
}
.process__table th:not(:first-child) {
  border-left: 1px solid #fff;
  border-left: 0.0625rem solid #fff;
}
.process__table th:first-child {
  border-radius: 1.25rem 0 0 0;
}
.process__table th:last-child {
  border-radius: 0 1.25rem 0 0 0;
}
.process__table td {
  background: #fff;
}
.process__table td:not(:first-child) {
  border-left: 1px solid #888;
  border-left: 0.0625rem solid #888;
}
.process__table td:first-child {
  border-radius: 0 0 0 1.25rem;
}
.process__table td:last-child {
  border-radius: 0 0 1.25rem 0;
}

.process__units {
  width: 980px;
  width: 61.25rem;
  max-width: 100%;
  margin: 70px auto 0;
  margin: 4.375rem auto 0;
}
@media screen and (max-width: 767px) {
  .process__units {
    margin-top: 1.25rem;
  }
}

.process__unit {
  background: #fff;
  border-radius: 1.25rem;
  padding: 20px;
  padding: 1.25rem;
}
.process__unit + .process__unit {
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

.process__unit-img {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .process__unit-img {
    width: 100%;
  }
}
.process__unit-img img {
  border-radius: 1.25rem;
}

.process__unit-body {
  width: 63.5%;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .process__unit-body {
    width: 100%;
    margin-top: 0.9375rem;
  }
}

.process__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00A0E9;
  border-bottom: 1px solid #00A0E9;
  border-bottom: 0.0625rem solid #00A0E9;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .process__unit-title {
    font-size: 1.375rem;
  }
}
.process__unit-title span {
  display: inline-block;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  margin-right: 15px;
  margin-right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .process__unit-title span {
    font-size: 2.5rem;
    margin-right: 0.625rem;
  }
}

.process__unit-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .process__unit-text {
    font-size: 1.125rem;
  }
}

.process__unit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 20px;
  padding: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .process__unit-box {
    display: block;
    padding: 1.25rem 0.9375rem;
  }
}

.process__unit-subtitle {
  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;
  border: 1px solid #CE3D20;
  border: 0.0625rem solid #CE3D20;
  border-radius: 0.375rem;
  padding: 10px 18px;
  padding: 0.625rem 1.125rem;
  white-space: nowrap;
}
.process__unit-subtitle span {
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #CE3D20;
}
@media screen and (max-width: 767px) {
  .process__unit-subtitle span {
    font-size: 1rem;
  }
}
.process__unit-subtitle span:nth-child(2) {
  padding-top: 12px;
  padding-top: 0.75rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .process__unit-subtitle span:nth-child(2) {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
  }
}
.process__unit-subtitle span:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 100px;
  width: 6.25rem;
  height: 1px;
  height: 0.0625rem;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #CE3D20;
}

.process__unit-tels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .process__unit-tels {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0.625rem;
  }
}

.process__unit-tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  font-family: "Akshar", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  color: #2988B2;
  line-height: 1;
  background: #fff;
  border-radius: 1.25rem;
  padding: 9px 20px 9px 10px;
  padding: 0.5625rem 1.25rem 0.5625rem 0.625rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .process__unit-tel a {
    font-size: 1.5rem;
    border-radius: 0.625rem;
    white-space: nowrap;
    padding: 0.625rem;
  }
}
.process__unit-tel span {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #2988B2;
  border-radius: 0.25rem;
  padding: 5px 8px 6px;
  padding: 0.3125rem 0.5rem 0.375rem;
}
@media screen and (max-width: 767px) {
  .process__unit-tel span {
    font-size: 1rem;
    padding: 0.3125rem;
  }
}

/* quick-cv */
.quick-cv {
  background: #FFE6E5;
  padding: 30px 0;
  padding: 1.875rem 0;
}
.quick-cv .l-inner {
  max-width: 1190px;
  max-width: 74.375rem;
}

.quick-cv__content {
  background: #fff;
  border-radius: 0.625rem;
  padding: 20px;
  padding: 1.25rem;
}

.quick-cv__header {
  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) {
  .quick-cv__header {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.quick-cv__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  background: url(../img/common/tel-icon02.png) no-repeat center left/30px;
  background: url(../img/common/tel-icon02.png) no-repeat center left/1.875rem;
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .quick-cv__title {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.2;
    background: url(../img/common/tel-icon02.png) no-repeat top 0.375rem left/1.375rem;
    padding-left: 1.5625rem;
  }
}

.quick-cv__subtitle {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #CB4F4A;
  border: 1px solid #CB4F4A;
  border: 0.0625rem solid #CB4F4A;
  border-radius: 0.25rem;
  margin-left: 14px;
  margin-left: 0.875rem;
  padding: 1px 8px;
  padding: 0.0625rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .quick-cv__subtitle {
    font-size: 1rem;
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.quick-cv__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .quick-cv__text {
    font-size: 1rem;
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.quick-cv__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  gap: 1.25rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .quick-cv__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
  }
}

.quick-cv__item-inner {
  text-align: center;
  display: block;
  border: 1px solid #CB4F4A;
  border: 0.0625rem solid #CB4F4A;
  border-radius: 1.25rem;
}

.quick-cv__item-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  background: #CB4F4A;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 9px 0;
  padding: 0.5625rem 0;
}
@media screen and (max-width: 767px) {
  .quick-cv__item-title {
    font-size: 1.5rem;
  }
}

.quick-cv__item-number {
  font-family: "Akshar", sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
  color: #CB4F4A;
  background: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 16px 0;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .quick-cv__item-number {
    font-size: 2rem;
    padding: 0.625rem 0 0.3125rem;
  }
}

/* quick-faq */
.quick-faq {
  background: #fff;
}
.quick-faq .l-inner {
  max-width: 1030px;
  max-width: 64.375rem;
}

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

/* quick-flow */
.quick-flow {
  background: #fff;
}

.quick-flow__content {
  background: #F7F7F7;
  border-radius: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 50px 60px;
  padding: 3.125rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .quick-flow__content {
    margin-top: 1.25rem;
    padding: 1.25rem;
  }
}

.quick-flow__tab {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .quick-flow__tab {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}

.quick-flow__tab-item.current button {
  color: #fff;
  background: #1C2087;
  border-color: #1C2087;
}
.quick-flow__tab-item button {
  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;
  width: 100%;
  height: 60px;
  height: 3.75rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #00A0E9;
  border: 2px solid #00A0E9;
  border: 0.125rem solid #00A0E9;
  background: #fff;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .quick-flow__tab-item button {
    font-size: 1.125rem;
    line-height: 1.25;
  }
}
.quick-flow__tab-item button:hover {
  opacity: 1;
}

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

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

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.quick-flow__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .quick-flow__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.quick-flow__card {
  background: #fff;
  border-radius: 0.625rem;
  position: relative;
}
.quick-flow__card::before {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 35px;
  height: 2.1875rem;
  top: 140px;
  top: 8.75rem;
  left: -27px;
  left: -1.6875rem;
  background: url(../img/quick/quick-flow-arrow.png) no-repeat center/contain;
  display: none;
}
@media screen and (max-width: 767px) {
  .quick-flow__card::before {
    left: 50%;
    top: -1.875rem;
    -webkit-transform: rotate(90deg) translateX(-50%);
            transform: rotate(90deg) translateX(-50%);
  }
}
.quick-flow__card:not(:nth-child(3n+1))::before {
  display: block;
}
@media screen and (max-width: 767px) {
  .quick-flow__card + .quick-flow__card::before {
    display: block;
  }
}

.quick-flow__card-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2087;
  background: #EAEBFF;
  border-radius: 0.625rem 0.625rem 0 0;
  padding: 15px 5px;
  padding: 0.9375rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .quick-flow__card-title {
    font-size: 1.125rem;
  }
}

.quick-flow__card-body {
  border-radius: 0 0 0.625rem 0.625rem;
  padding: 16px 20px 20px;
  padding: 1rem 1.25rem 1.25rem;
}

.quick-flow__card-img img {
  border-radius: 0.625rem;
}

.quick-flow__card-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .quick-flow__card-text {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.quick-flow__card-subtext {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71;
  margin-top: 5px;
  margin-top: 0.3125rem;
  padding-left: 1em;
  text-indent: -1em;
}

/* quick-message */
.quick-message {
  background: #fff;
}

.quick-message__content {
  background: url(../img/quick/quick-message-bg01.png) no-repeat center/cover;
  border-radius: 1.25rem;
  padding: 10px;
  padding: 0.625rem;
}

.quick-message__body {
  border-radius: 1.25rem;
  background: transparent;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, .5);
  padding: 30px 70px 40px;
  padding: 1.875rem 4.375rem 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .quick-message__body {
    padding: 1.875rem 0.9375rem 7.5rem;
  }
}
.quick-message__body::after {
  position: absolute;
  content: "";
  width: 400px;
  width: 25rem;
  height: 323px;
  height: 20.1875rem;
  bottom: 80px;
  bottom: 5rem;
  right: 20px;
  right: 1.25rem;
  background: url(../img/quick/quick-message-bg02.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .quick-message__body::after {
    width: 12.5rem;
    height: 10rem;
    bottom: 2.5rem;
    right: 0.625rem;
  }
}

.quick-message__title-wrapper {
  text-align: center;
}

.quick-message__title {
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 1px solid #000;
  border-bottom: 0.0625rem solid #000;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .quick-message__title {
    font-size: 1.5rem;
    padding-bottom: 0.25rem;
  }
}

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

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

.quick-message__item-title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #1C2087;
  background: url(../img/common/check-icon04.png) no-repeat left top 10px/23px;
  background: url(../img/common/check-icon04.png) no-repeat left top 0.625rem/1.4375rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .quick-message__item-title {
    font-size: 1.25rem;
    background: url(../img/common/check-icon04.png) no-repeat left top 0.5rem/1.125rem;
    padding-left: 1.5625rem;
  }
}

.quick-message__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 6px;
  margin-top: 0.375rem;
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .quick-message__item-text {
    font-size: 1rem;
    margin-left: 1.5625rem;
    margin-top: 0.25rem;
  }
}

.quick-message__img {
  position: absolute;
  bottom: 0;
  right: 20px;
  right: 1.25rem;
  width: 270px;
  width: 16.875rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .quick-message__img {
    width: 6.25rem;
    right: 0.625rem;
  }
}

/* quick-mv */
.quick-mv {
  background: #fff;
  padding: 50px 0 40px;
  padding: 3.125rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .quick-mv {
    padding: 1.875rem 0;
  }
}

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

.quick-mv__titles {
  border-left: 6px solid #CB4F4A;
  border-left: 0.375rem solid #CB4F4A;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .quick-mv__titles {
    border-left: 0.1875rem solid #CB4F4A;
  }
}

.quick-mv__title {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
  color: #CB4F4A;
}
@media screen and (max-width: 767px) {
  .quick-mv__title {
    font-size: 1.75rem;
  }
}

.quick-mv__text {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .quick-mv__text {
    font-size: 1.125rem;
  }
}

.quick-mv__box {
  width: 450px;
  width: 28.125rem;
  max-width: 100%;
  background: #EFF0F7;
  border-radius: 0.625rem;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .quick-mv__box {
    width: 21.875rem;
    margin-top: 1.25rem;
  }
}

.quick-mv__box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.625rem;
}

.quick-mv__box-body {
  width: 58%;
  background: #fff;
  border-radius: 0.625rem 0 0 0.625rem;
  padding: 5px 25px;
  padding: 0.3125rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .quick-mv__box-body {
    padding: 0 0.9375rem 0.3125rem;
  }
}

.quick-mv__box-text {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .quick-mv__box-text {
    font-size: 1.125rem;
  }
}
.quick-mv__box-text span {
  display: inline-block;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .quick-mv__box-text span {
    font-size: 1.125rem;
  }
}
.quick-mv__box-text span::before {
  position: absolute;
  content: "";
  height: 17px;
  height: 1.0625rem;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #FFFB8E;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .quick-mv__box-text span::before {
    height: 0.75rem;
  }
}
.quick-mv__box-text span span {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .quick-mv__box-text span span {
    font-size: 1.5rem;
  }
}

.quick-mv__box-img {
  width: 42%;
}
.quick-mv__box-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0.625rem 0.625rem 0;
}

/* quick-plan */
.quick-plan__cards {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .quick-plan__cards {
    margin-top: 1.25rem;
  }
}

/* quick-support */
.quick-support {
  background: #F7F7F7;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.quick-support .title span {
  color: #1C2087;
}

.quick-support__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  gap: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .quick-support__units {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.25rem;
  }
}

.quick-support__unit {
  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;
  padding: 10px;
  padding: 0.625rem;
}
.quick-support__unit-img {
  width: 31%;
}
.quick-support__unit-img img {
  border-radius: 0.625rem;
}

.quick-support__unit-body {
  width: 65%;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .quick-support__unit-body {
    padding-top: 0;
  }
}

.quick-support__unit-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  gap: 0.5625rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #CB4F4A;
}
@media screen and (max-width: 767px) {
  .quick-support__unit-title {
    gap: 0.375rem;
    font-size: 1.25rem;
  }
}
.quick-support__unit-title span {
  display: inline-block;
  font-size: 36px;
  font-size: 2.25rem;
  color: #000;
  line-height: 1.2;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .quick-support__unit-title span {
    font-size: 1.75rem;
  }
}

.quick-support__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .quick-support__unit-text {
    font-size: 1rem;
  }
}

/* quick */
.quick {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .quick {
    padding-bottom: 2.5rem;
  }
}
.quick .l-section {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .quick .l-section {
    padding: 1.875rem 0;
  }
}
.quick .lead {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .quick .lead {
    margin-top: 0.625rem;
  }
}

/* top-contact */
@media screen and (max-width: 767px) {
  .top-contact .title {
    line-height: 1.3;
  }
  .top-contact .title span {
    font-size: 1.4375rem;
    white-space: nowrap;
  }
}
.top-contact .lead {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-contact .lead {
    margin-bottom: 0;
  }
}

.top-contact__content {
  border-radius: 2.5rem;
  background: url(../img/top/top-contact-bg_pc.jpg) no-repeat center/cover;
  padding: 50px 90px 60px;
  padding: 3.125rem 5.625rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-contact__content {
    border-radius: 1.25rem;
    background-image: url(../img/top/top-contact-bg_sp.jpg);
    padding: 1.25rem 1.25rem;
  }
}

.top-contact__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  gap: 1.25rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-contact__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
    margin-top: 0.9375rem;
  }
}

.top-contact__item-inner {
  text-align: center;
  display: block;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-contact__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 0.625rem;
  }
}

.top-contact__item-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: #2988B2;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 6px 0;
  padding: 0.375rem 0;
}
@media screen and (max-width: 767px) {
  .top-contact__item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.5rem;
    border-radius: 0.625rem 0 0 0.625rem;
    padding: 0 0.5625rem;
    white-space: nowrap;
  }
}

.top-contact__item-number {
  font-family: "Akshar", sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
  color: #2988B2;
  background: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 16px 0;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .top-contact__item-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    font-size: 2.125rem;
    line-height: 1.35;
    border-radius: 0 0.625rem 0.625rem 0;
    padding: 0.3125rem 0.75rem 0;
  }
}

/* top-info */
.top-info {
  background: #fff;
}

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

.top-info__unit {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-info__unit + .top-info__unit {
    margin-top: 3.75rem;
  }
}
.top-info__unit:first-child .top-info__item-category span {
  color: #289DD1;
  border: 1px solid #289DD1;
  border: 0.0625rem solid #289DD1;
}
@media screen and (max-width: 767px) {
  .top-info__unit:nth-child(2) .top-info__header {
    display: block;
  }
  .top-info__unit:nth-child(2) .top-info__link {
    margin-top: 1.25rem;
  }
}
.top-info__unit:nth-child(2) .top-info__item-category span {
  color: #fff;
  background: #2988B2;
  border: 1px solid #2988B2;
  border: 0.0625rem solid #2988B2;
}

.top-info__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;
}

.top-info__subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .top-info__link-wrapper {
    text-align: right;
  }
}

.top-info__link {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  background: url(../img/common/arrow-icon03.png) no-repeat center right/6px;
  background: url(../img/common/arrow-icon03.png) no-repeat center right/0.375rem;
  padding-right: 13px;
  padding-right: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .top-info__link {
    font-size: 1rem;
  }
}

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

.top-info__item {
  border-bottom: 1px solid #EAEAEA;
  border-bottom: 0.0625rem solid #EAEAEA;
}

.top-info__item-inner {
  display: block;
  padding: 30px 0;
  padding: 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .top-info__item-inner {
    padding: 1.0625rem 0;
  }
}

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

.top-info__item-date {
  display: inline-block;
  min-width: 150px;
  min-width: 9.375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #C1C1C1;
}

.top-info__item-category span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 1.875rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.top-info__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  background: url(../img/common/arrow-icon09.png) no-repeat top 5px right/20px;
  background: url(../img/common/arrow-icon09.png) no-repeat top 0.3125rem right/1.25rem;
  line-height: 1.78;
  padding-right: 40px;
  padding-right: 2.5rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-info__item-title {
    display: -webkit-box;
    text-overflow: unset;
    white-space: unset;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/* top-interview */
.top-interview {
  background: url(../img/top/top-interview-bg.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top-interview {
    background: none;
  }
  .top-interview .l-inner {
    padding: 0 0.625rem;
  }
}

.top-interview__cards {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-interview__cards {
    margin-top: 1.25rem;
  }
}
.top-interview__cards .interview-card__inner {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

/* top-link */
.top-link {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .top-link {
    padding: 1.875rem 0 1.25rem;
  }
}
.top-link .l-inner {
  max-width: 1010px;
  max-width: 63.125rem;
}

.top-link__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;
  background: #fff;
  border-radius: 1.25rem;
  padding: 10px 10px 10px 55px;
  padding: 0.625rem 0.625rem 0.625rem 3.4375rem;
}
@media screen and (max-width: 767px) {
  .top-link__inner {
    padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  }
}

.top-link__text {
  display: inline-block;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  background: url(../img/common/arrow-icon08.png) no-repeat center right/30px;
  background: url(../img/common/arrow-icon08.png) no-repeat center right/1.875rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-link__text {
    width: 50%;
    font-size: 1.25rem;
    background: none;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-link__text span {
    display: inline-block;
    font-size: 1rem;
    color: #666;
    background: url(../img/common/arrow-icon08.png) no-repeat center right/1.25rem;
    padding-right: 1.375rem;
  }
}

.top-link__img {
  width: 209px;
  width: 13.0625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .top-link__img {
    width: 45%;
  }
}
.top-link__img img {
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-link__img img {
    border-radius: 1.125rem;
  }
}

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

.top-mv__content {
  width: 1280px;
  width: 80rem;
  max-width: 95%;
  margin: 0 auto;
  background: url(../img/top/top-mv-bg_pc.png) no-repeat center/cover;
  border-radius: 2.5rem;
  padding: 40px 0 20px;
  padding: 2.5rem 0 1.25rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-mv__content {
    width: 100%;
    max-width: 100%;
    overflow: unset;
    background: none;
    border-radius: 0;
    padding: 0;
  }
  .top-mv__content > .l-inner {
    padding: 0 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .top-mv__header {
    background: url(../img/top/top-mv-bg_sp.png) no-repeat center/cover;
    padding: 1.875rem 0.625rem 1.5625rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
}

.top-mv__img {
  position: absolute;
  right: 80px;
  right: 5rem;
  bottom: 0px;
  bottom: 0rem;
  width: 454px;
  width: 28.375rem;
  max-width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-mv__img {
    width: 12.375rem;
    right: 0.3125rem;
    bottom: -4.375rem;
  }
}

.top-mv__title {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 1.5625rem;
  }
}
.top-mv__title span {
  font-size: 73px;
  font-size: 4.5625rem;
  color: #1C2087;
}
@media screen and (max-width: 767px) {
  .top-mv__title span {
    font-size: 2.3125rem;
  }
}

.top-mv__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    text-align: center;
    font-size: 1rem;
    line-height: 1.63;
    margin-top: 0.625rem;
  }
}

.top-mv__data {
  width: 610px;
  width: 38.125rem;
  max-width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-mv__data {
    margin: 0.625rem auto 0;
  }
}

.top-mv__btn {
  width: 332px;
  width: 20.75rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 20px 20px 20px 0;
  padding: 1.25rem 1.25rem 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .top-mv__btn {
    width: 15.25rem;
    margin: 1.25rem auto 0;
    padding: 0.9375rem 1.25rem 0.9375rem 0;
  }
}
.top-mv__btn::after {
  right: 50px;
  right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__btn::after {
    right: 2.1875rem;
  }
}

.top-mv__caution {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__caution {
    font-size: 0.75rem;
    margin-top: 0.3125rem;
  }
}

/* top-plan */
.top-plan {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-plan .l-section {
    padding: 2.5rem 0;
  }
  .top-plan .l-inner {
    padding: 0 0.625rem;
  }
}

.top-plan__subtitle {
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-plan__subtitle {
    margin-bottom: 0.625rem;
  }
}
.top-plan__subtitle span {
  display: inline-block;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  background: url(../img/top/top-plan-bg.png) no-repeat center/contain;
  padding: 7px 35px;
  padding: 0.4375rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .top-plan__subtitle span {
    font-size: 1.5rem;
    padding: 0.3125rem 1.5625rem;
  }
}

.top-plan__cards {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-plan__cards {
    margin-top: 1.25rem;
  }
}

/* top-reason */
.top-reason {
  background: url(../img/top/top-reason-bg.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top-reason {
    background: none;
  }
  .top-reason .l-inner {
    padding: 0 0.625rem;
  }
  .top-reason .l-section {
    padding-bottom: 2.5rem;
  }
}

.top-reason__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  gap: 1rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-reason__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
    margin-top: 0.625rem;
  }
}

.top-reason__item {
  background: rgba(255, 255, 255, .8);
  border-radius: 1.25rem;
  padding: 0 30px 25px;
  padding: 0 1.875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-reason__item {
    padding: 0.625rem 1.875rem 0.9375rem;
  }
}
.top-reason__item:first-child .top-reason__item-number {
  color: #D6CCAA;
}
.top-reason__item:nth-child(2) .top-reason__item-number {
  color: #CBE0C5;
}
.top-reason__item:nth-child(3) .top-reason__item-number {
  color: #F7CBD0;
}

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

.top-reason__item-number {
  text-align: center;
  font-size: 67px;
  font-size: 4.1875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-reason__item-number {
    line-height: 1.1;
  }
}

.top-reason__item-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-reason__item-title {
    line-height: 1.33;
    text-align: left;
  }
}

.top-reason__item-img {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-reason__item-img {
    margin-top: 0.625rem;
  }
}
.top-reason__item-img img {
  border-radius: 1.25rem;
}

.top-reason__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.78;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-reason__item-text {
    line-height: 1.56;
    margin-top: 0.625rem;
  }
}

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

/* top-search */
.top-search .l-section {
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .top-search .l-section {
    padding-bottom: 2.5rem;
  }
}

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

/* top-voice */
.top-voice {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-voice .l-inner {
    padding: 0 0.625rem;
  }
}

.top-voice__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  gap: 1rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-voice__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.top-voice__item {
  border-radius: 1.25rem;
  background: rgba(251, 249, 246, .8);
  padding: 30px 30px 25px;
  padding: 1.875rem 1.875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-voice__item {
    padding: 1.25rem 1.875rem;
  }
}

.top-voice__item-icon {
  width: 130px;
  width: 8.125rem;
  max-width: 100%;
  margin: 0 auto;
}
.top-voice__item-icon img {
  border-radius: 50%;
}

.top-voice__item-text, .top-voice__item-subtext {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.78;
}
@media screen and (max-width: 767px) {
  .top-voice__item-text, .top-voice__item-subtext {
    line-height: 1.56;
  }
}

.top-voice__item-text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-voice__item-text {
    margin-top: 0.625rem;
  }
}

.top-voice__item-subtext {
  color: #00A0E9;
}

.top-voice__btn {
  width: 356px;
  width: 22.25rem;
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-voice__btn {
    width: 14.75rem;
    margin-top: 1.25rem;
    padding-right: 0.9375rem;
  }
}
.top-voice__btn::after {
  right: 50px;
  right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-voice__btn::after {
    right: 1.25rem;
  }
}
/*# sourceMappingURL=style.css.map */
