:root {
  --serif: "Noto Serif JP", serif;
  --navy01: #1e3256;
  --red01: #954442;
  --brown01: #7e5b24;
  --bg-yellow: #f8f5e9;
  --bg-blue: #f8fafb;
  --text-black: #333;
  --navy02: #3f557f;
  --bg-gray: #fcfcfc;
  --en: "Noto Serif JP", serif;
  --ja: "Noto Sans JP", sans-serif;
  --blue-grad01: linear-gradient(to right, #2d58aa 0%, #2f4c85 45.19%, #2e487c 54.95%, #2e4779 58.4%, #293855 100%);
  --shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--ja);
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 400;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

a:hover {
  opacity: 0.7;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^="tel"] {
  text-decoration: none;
  color: inherit;
}

.en {
  font-family: var(--en);
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 83.4666666667%;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 92.3664122137%;
  }
}

.fadein {
  opacity: 0;
}

.line-btn {
  border-radius: 30px;
  background: linear-gradient(#81d181 0%, #53bc53 100%);
}
.line-btn a {
  color: white;
  font-weight: 700;
  padding: 10px 24px;
  display: block;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.serif {
  font-family: var(--en);
}

.color-red {
  color: var(--red01);
}

.color-navy {
  color: var(--navy01);
}

.header {
  height: 68px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header {
    height: 56px;
  }
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 98.8286969253%;
  margin: 0 auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header .header-inner {
    width: 94.9109414758%;
  }
}
.header h1 {
  width: 187px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .header h1 {
    width: 146px;
  }
}
.header h1 a {
  display: block;
}
.header h1 a img {
  display: block;
}
.header .header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.header .header-nav .header-tel {
  display: flex;
}
.header .header-nav .header-tel .tel-top {
  line-height: 1.4166666667;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .header .header-nav .header-tel .tel-top {
    font-size: 1.1rem;
  }
}
.header .header-nav .header-tel .tel-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.header .header-nav .header-tel .tel-bottom .num {
  position: relative;
  padding-left: 2em;
  font-family: var(--serif);
  font-weight: 900;
  color: var(--navy01);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .header .header-nav .header-tel .tel-bottom .num {
    font-size: 1.9rem;
  }
}
.header .header-nav .header-tel .tel-bottom .num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  background: url(../../assets/images/free-dial.svg) no-repeat center left/contain;
  width: 2em;
  height: 1em;
}
.header .header-nav .header-tel .tel-bottom .time {
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
@media screen and (max-width: 768px) {
  .header .header-nav .header-tel .tel-bottom .time {
    display: none;
  }
}
.header .header-nav .header-cta {
  width: 215px;
  height: 44px;
}
@media screen and (max-width: 768px) {
  .header .header-nav .header-cta {
    display: none;
  }
}

sup {
  font-size: 0.5em;
}

.ta-c {
  text-align: center;
}

.color-brown {
  color: var(--brown01);
}

.main {
  position: relative;
}
.main .fixed-cta {
  position: fixed;
  z-index: 3;
  bottom: 16px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 298px;
}
.main .fixed-cta.fadeout {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.main .fixed-cta .fixed-cta-text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4285714286;
  margin-bottom: 8px;
  position: relative;
  margin-bottom: 8px;
  padding: 10px 6px 6px 8px;
  display: flex;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  justify-content: space-around;
}
.main .fixed-cta .fixed-cta-text::before {
  content: "";
  background: url(../../assets/images/line-btn-top-deco02.svg) no-repeat center/contain;
  width: 25px;
  height: 26px;
  display: inline-block;
}
.main .fixed-cta .fixed-cta-text::after {
  content: "";
  background: url(../../assets/images/line-btn-top-deco01.svg) no-repeat center/contain;
  width: 25px;
  height: 26px;
  display: inline-block;
}

.medium {
  font-weight: 500;
}

.mv .mv-text {
  padding: 40px 0 56px;
}
@media screen and (max-width: 768px) {
  .mv .mv-text {
    padding: 48px 0;
  }
}
.mv .mv-text .text-top {
  margin-bottom: 24px;
}
.mv .mv-text .has-wave {
  position: relative;
  display: inline-block;
  padding-bottom: 7px;
  font-size: 2.6rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .mv .mv-text .has-wave {
    font-size: 2rem;
  }
}
.mv .mv-text .has-wave::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  width: 100%;
  background-color: #a28746;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 7'><path d='M0 3.5 Q4.665 0 9.33 3.5 T18.66 3.5 T27.99 3.5 T37.32 3.5 T46.65 3.5 T55.98 3.5 T65.31 3.5 T74.64 3.5 T83.97 3.5 T93.3 3.5 T102.63 3.5 T111.96 3.5 T121.29 3.5 T130.62 3.5 T139.95 3.5 T149.28 3.5 T158.61 3.5 T167.94 3.5 T177.27 3.5 T186.6 3.5 T195.93 3.5 T205.26 3.5 T214.59 3.5 T223.92 3.5 T233.25 3.5 T242.58 3.5 T251.91 3.5 T261.24 3.5 T270.57 3.5 T280 3.5' fill='none' stroke='black' stroke-width='1' /></svg>");
  -webkit-mask-size: 280px 7px;
  -webkit-mask-repeat: repeat-x;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 7'><path d='M0 3.5 Q4.665 0 9.33 3.5 T18.66 3.5 T27.99 3.5 T37.32 3.5 T46.65 3.5 T55.98 3.5 T65.31 3.5 T74.64 3.5 T83.97 3.5 T93.3 3.5 T102.63 3.5 T111.96 3.5 T121.29 3.5 T130.62 3.5 T139.95 3.5 T149.28 3.5 T158.61 3.5 T167.94 3.5 T177.27 3.5 T186.6 3.5 T195.93 3.5 T205.26 3.5 T214.59 3.5 T223.92 3.5 T233.25 3.5 T242.58 3.5 T251.91 3.5 T261.24 3.5 T270.57 3.5 T280 3.5' fill='none' stroke='black' stroke-width='1' /></svg>");
  mask-size: 280px 7px;
  mask-repeat: repeat-x;
}
.mv .mv-text .text-small {
  font-size: 2rem;
}
.mv .mv-text .text-big {
  font-size: 3.7rem;
  line-height: 1.4594594595;
}
@media screen and (max-width: 768px) {
  .mv .mv-text .text-big {
    font-size: 3rem;
    white-space: nowrap;
  }
}

.color-white {
  color: white;
}

h2 {
  font-weight: 700;
}

section:not(:last-of-type) {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  section:not(:last-of-type) {
    padding-bottom: 48px;
  }
}

.recommend h2 {
  position: relative;
  font-size: 3.6rem;
  display: grid;
  place-content: center;
  height: 78px;
  margin-bottom: 20px;
  background: linear-gradient(105deg, #293855 0%, #6d80a5 18.41%, #293855 41.01%, #385284 68.21%, #293855 100%);
}
@media screen and (max-width: 768px) {
  .recommend h2 {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    font-size: 2.2rem;
    line-height: 1.4090909091;
  }
}
.recommend h2::before,
.recommend h2::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  height: 3px;
  background: linear-gradient(#7e5b24 0%, #b8a281 18.41%, #aa8d60 41.01%, #c1b199 68.21%, #7e5b24 100%);
}
.recommend h2::before {
  top: 0;
}
.recommend h2::after {
  bottom: 0;
}
.recommend .contents {
  background: var(--bg-blue);
  padding: 32px 48px;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .recommend .contents {
    padding: 32px 20px;
    margin-bottom: 48px;
  }
}
.recommend .contents .list-top-text {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .recommend .contents .list-top-text {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.recommend .contents .recommend-list {
  width: 100%;
  margin-bottom: 48px;
}
.recommend .contents .recommend-list .item {
  width: 100%;
  display: flex;
  justify-content: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
  align-items: center;
  font-size: 2.4rem;
  line-height: 1.4583333333;
}
@media screen and (max-width: 768px) {
  .recommend .contents .recommend-list .item {
    font-size: 1.2rem;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}
.recommend .contents .recommend-list .item:not(:last-of-type) {
  margin-bottom: 8px;
}
.recommend .contents .recommend-list .item.left {
  margin-right: auto;
  justify-content: flex-start;
}
.recommend .contents .recommend-list .item.right {
  margin-left: auto;
  justify-content: flex-end;
}
.recommend .contents .recommend-list .face {
  display: block;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .recommend .contents .recommend-list .face {
    width: 60px;
    height: 60px;
  }
}
.recommend .recommend-message {
  position: relative;
}
.recommend .recommend-message .message-wrapper {
  z-index: 2;
  position: relative;
  background: var(--bg-yellow);
  padding: 32px 24px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .recommend .recommend-message .message-wrapper {
    padding: 24px 16px;
    margin-bottom: 32px;
  }
}
.recommend .recommend-message::after {
  content: "";
  background: linear-gradient(#7e5b24 0%, #b8a281 18.41%, #aa8d60 41.01%, #c1b199 68.21%, #7e5b24 100%);
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.recommend .recommend-message .ttl {
  font-size: 4rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .recommend .recommend-message .ttl {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.recommend .recommend-message .ttl .big {
  font-size: 125%;
}
.recommend .recommend-message .desc {
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .recommend .recommend-message .desc {
    font-size: 1.4rem;
  }
}
.recommend .recommend-emblem {
  width: 87.2727272727%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .recommend .recommend-emblem {
    width: 100%;
  }
}
.recommend .cta {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  display: block;
}

.h2-pattern02 {
  color: white;
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
  background: #3f557f;
  font-family: var(--serif);
  padding: 24px;
  margin-bottom: 48px;
  line-height: 1.4166666667;
}
@media screen and (max-width: 768px) {
  .h2-pattern02 {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    font-size: 2rem;
    margin-bottom: 32px;
    padding: 16px;
  }
}

.h2-pattern01 {
  color: var(--navy01);
  font-size: 4rem;
  font-family: var(--serif);
  text-align: center;
  font-weight: 700;
  padding: 24px;
  font-weight: 700;
  background: var(--bg-yellow);
  border-bottom: 3px solid var(--brown01);
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .h2-pattern01 {
    font-size: 2.2rem;
    padding: 12px 8px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.h2-pattern01 span {
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .h2-pattern01 span {
    align-items: flex-end;
    -moz-column-gap: 0.1em;
    column-gap: 0.1em;
    white-space: nowrap;
    letter-spacing: -0.09em;
  }
}
.h2-pattern01 span::before {
  content: "";
  background: url(../../assets/images/ttl-deco-left.svg) no-repeat center/contain;
  width: 26px;
  height: 45px;
  display: block;
}
@media screen and (max-width: 768px) {
  .h2-pattern01 span::before {
    width: 13px;
    height: 23px;
    margin-bottom: 6px;
  }
}
.h2-pattern01 span::after {
  content: "";
  background: url(../../assets/images/ttl-deco-right.svg) no-repeat center/contain;
  width: 26px;
  height: 45px;
  display: block;
}
@media screen and (max-width: 768px) {
  .h2-pattern01 span::after {
    width: 13px;
    height: 23px;
    margin-bottom: 6px;
  }
}

.point .contents table {
  border-right: 4px solid var(--navy01);
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}
.point .contents table thead {
  border-top: 1px solid #ccc;
}
.point .contents table thead tr th.timeless {
  border-bottom: none;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .point .contents table thead tr th.timeless {
    font-size: 1.5rem;
  }
}
.point .contents table thead .timeless {
  position: relative;
  color: white;
}
.point .contents table thead .timeless::before {
  content: "";
  width: calc(100% + 8px);
  display: block;
  position: absolute;
  z-index: -1;
  top: -16px;
  left: -4px;
  height: calc(100% + 16px);
  background: var(--blue-grad01);
}
@media screen and (max-width: 768px) {
  .point .contents table thead .timeless::before {
    top: -8px;
    height: calc(100% + 8px);
  }
}
.point .contents table tbody,
.point .contents table thead {
  text-align: center;
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .point .contents table tbody,
  .point .contents table thead {
    font-size: 1.3rem;
  }
}
.point .contents table tbody th,
.point .contents table thead th {
  background: #fafafa;
  text-align: center;
  position: relative;
  z-index: 2;
}
.point .contents table tbody th,
.point .contents table tbody td,
.point .contents table thead th,
.point .contents table thead td {
  padding: 8px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .point .contents table tbody th,
  .point .contents table tbody td,
  .point .contents table thead th,
  .point .contents table thead td {
    padding: 5px;
  }
}
.point .contents table tbody th.timeless,
.point .contents table tbody td.timeless,
.point .contents table thead th.timeless,
.point .contents table thead td.timeless {
  border-left: 4px solid var(--navy01);
  border-bottom: 4px solid var(--navy01);
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .point .contents table tbody th.timeless,
  .point .contents table tbody td.timeless,
  .point .contents table thead th.timeless,
  .point .contents table thead td.timeless {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .point .contents .point-list-container {
    margin-left: calc(50% - 50vw);
  }
}
.point .contents .point-list-container .text-img-wrapper {
  margin-top: 0.6em;
}
@media screen and (max-width: 768px) {
  .point .contents .point-list-container .text-img-wrapper {
    width: 10%;
    flex-shrink: 0;
  }
}
.point .contents .point-list-container .point-list {
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .point .contents .point-list-container .point-list {
    margin-left: 2px;
  }
}
.point .contents .point-list-container .point-list .point-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .point .contents .point-list-container .point-list .point-item {
    align-items: center;
    -moz-column-gap: 0.3em;
    column-gap: 0.3em;
  }
}
.point .contents .point-list-container .point-list .point-item::before {
  content: "";
  display: block;
  background: url(../../assets/images/icon-check.svg) no-repeat center/contain;
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .point .contents .point-list-container .point-list .point-item::before {
    width: 1.2em;
    height: 1em;
  }
}
.point .contents .point-list-container .point-list .point-item span {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .point .contents .point-list-container .point-list .point-item span {
    font-size: 1.3rem;
  }
}

.note {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .note {
    font-size: 1.2rem;
  }
}

.voice .contents .voice-swiper {
  position: relative;
}
.voice .contents .voice-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: block;
}
.voice .contents .voice-swiper:not(.swiper-initialized) .swiper-button-prev,
.voice .contents .voice-swiper:not(.swiper-initialized) .swiper-button-next {
  display: none;
}
.voice .contents .swiper-button-prev,
.voice .contents .swiper-button-next {
  color: var(--brown01);
}
.voice .contents .swiper-button-prev::after,
.voice .contents .swiper-button-next::after {
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .voice .contents .voice-list {
    align-items: stretch;
  }
}
.voice .contents .voice-list .item {
  padding: 32px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background-color: white;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-bottom: 32px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .voice .contents .voice-list .item {
    flex-direction: column;
    padding: 20px;
  }
}
.voice .contents .voice-list .item h3 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1.1428571429;
}
@media screen and (max-width: 768px) {
  .voice .contents .voice-list .item h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}
.voice .contents .voice-list .item .desc {
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .voice .contents .voice-list .item .desc {
    font-size: 1.2rem;
  }
}
.voice .contents .voice-list .item .img-wrapper {
  width: 14.6412884334vw;
}
@media screen and (max-width: 768px) {
  .voice .contents .voice-list .item .img-wrapper {
    width: 40.9556313993%;
    margin: 0 auto 8px;
  }
}
.voice .contents .voice-list .item .text-wrapper {
  flex: 1;
}

.achievement .achievement-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .achievement .achievement-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 8px;
  }
}
.achievement .achievement-list .item .img-wrapper {
  margin-bottom: 16px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .achievement .achievement-list .item .img-wrapper {
    margin-bottom: 8px;
  }
}
.achievement .achievement-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.achievement .achievement-list .item .text-wrapper h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .achievement .achievement-list .item .text-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}
.achievement .achievement-list .item .text-wrapper p {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .achievement .achievement-list .item .text-wrapper p {
    font-size: 1.2rem;
  }
}

.cta-box .cta {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.cta-box h2 {
  font-size: 3.2rem;
  background: linear-gradient(90deg, #293855 0%, #5c76a8 48.96%, #293855 100%);
  padding: 16px;
  margin-left: -40px;
  margin-right: -40px;
  position: relative;
  margin-bottom: 32px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cta-box h2 {
    font-size: 1.8rem;
  }
}
.cta-box h2::after {
  content: "";
  width: 37.4816983895vw;
  height: 42.972181552vw;
  background: url(../../assets/images/cta-box-man.png) no-repeat bottom center/contain;
  position: absolute;
  bottom: 100%;
  right: 40px;
  display: block;
  max-width: 512px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cta-box h2::after {
    width: 59vw;
    height: 66vw;
    bottom: 100%;
    right: -10px;
  }
}
.cta-box .box {
  position: relative;
  background: linear-gradient(90deg, #293855 0%, #6d80a5 18.41%, #293855 41.01%, #385284 68.21%, #293855 100%);
  width: 100%;
  z-index: 0;
  padding: 48px 40px 32px;
}
.cta-box .box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: linear-gradient(45deg, #fbfaf2 0%, #fffffe 18.83%, #f2f2f2 37.65%, #fefefe 70.29%, #f8f6ed 100%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cta-box .box {
    padding: 24px 20px;
  }
}
.cta-box .contents {
  position: relative;
  z-index: 3;
}
.cta-box .contents .lead {
  font-size: 4rem;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .cta-box .contents .lead {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .cta-box .contents .note {
    margin-bottom: 16px;
    width: 46%;
    text-align: justify;
  }
}
.cta-box .contents .fukidashi-outer {
  margin-top: 32px;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.16));
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .cta-box .contents .fukidashi-outer {
    margin-bottom: 88px;
  }
}
.cta-box .contents .fukidashi {
  width: 58.3333333333%;
  background-color: white;
  border-radius: 20px;
  position: relative;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .cta-box .contents .fukidashi {
    width: 100%;
    padding: 24px 16px;
    font-size: 1.3rem;
  }
}
.cta-box .contents .fukidashi .text {
  position: relative;
  z-index: 2;
}
.cta-box .contents .fukidashi::after {
  content: "";
  width: 55px;
  height: 47px;
  background: white;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: -40px;
  bottom: 40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cta-box .contents .fukidashi::after {
    right: auto;
    width: 45px;
    height: 55px;
    bottom: auto;
    top: calc(100% - 30px);
    left: 40px;
    right: auto;
    transform: rotate(-45deg);
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
}

.other .lead {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .other .lead {
    font-size: 2rem;
    align-items: flex-end;
  }
}
.other .lead::before {
  content: "";
  background: url(../../assets/images/slash-red-left.svg) no-repeat center/contain;
  width: 1.2em;
  height: 1em;
  display: block;
}
@media screen and (max-width: 768px) {
  .other .lead::before {
    margin-bottom: 6px;
  }
}
.other .lead::after {
  content: "";
  background: url(../../assets/images/slash-red-right.svg) no-repeat center/contain;
  width: 1.2em;
  height: 1em;
  display: block;
}
@media screen and (max-width: 768px) {
  .other .lead::after {
    margin-bottom: 6px;
  }
}
.other .lead .text {
  padding: 0 0.5em;
}
@media screen and (max-width: 768px) {
  .other .lead .text {
    white-space: nowrap;
  }
}
.other .lead-bottom {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .other .lead-bottom {
    font-size: 1.3rem;
    margin-bottom: 32px;
    white-space: nowrap;
  }
}
.other .top-text-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -80px;
}
@media screen and (max-width: 1290px) {
  .other .top-text-wrapper {
    margin-top: 0;
    margin-left: calc(50% - 53vw);
    margin-right: calc(50% - 53vw);
    align-items: center;
  }
}
.other .top-text-wrapper .img-wrapper {
  max-width: 174px;
  width: 12.737920937vw;
}
@media screen and (max-width: 768px) {
  .other .top-text-wrapper .img-wrapper {
    width: 21.6284987277vw;
  }
}
.other .other-list {
  display: grid;
  max-width: 890px;
  margin: 0 auto 24px;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .other .other-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
}
.other .other-list .item .text-wrapper {
  text-align: center;
}
.other .other-list .item .text-wrapper h3 {
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 8px;
  font-size: 2.2rem;
  color: var(--navy01);
}
@media screen and (max-width: 768px) {
  .other .other-list .item .text-wrapper h3 {
    font-size: 1.3rem;
  }
}
.other .other-list .item .text-wrapper .text-small {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .other .other-list .item .text-wrapper .text-small {
    font-size: 1rem;
  }
}
.other .lead2 {
  font-size: 3.6rem;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .other .lead2 {
    font-size: 2rem;
    margin-top: 24px;
  }
}

.attention h2 {
  font-size: 3.2rem;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .attention h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.attention .contents {
  border: 1px solid #ccc;
  background: #fafafa;
  padding: 40px 48px 48px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .attention .contents {
    padding: 30px 20px;
    font-size: 1.2rem;
  }
}
.attention .contents dl {
  margin-bottom: 16px;
}
.attention .contents dl dt {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .attention .contents dl dt {
    margin-bottom: 16px;
  }
}
.attention .contents dl dd {
  background: white;
  border: 1px solid #ccc;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .attention .contents dl dd {
    padding: 16px 8px;
  }
}

.faq h2 {
  margin-bottom: 24px;
  font-size: 4rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .faq h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
  }
}
.faq .lead {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .faq .lead {
    margin-bottom: 16px;
    font-size: 1.2rem;
  }
}
.faq .accordion-area {
  max-width: 1000px;
  margin: 0 auto;
}
.faq .accordion-area li {
  background: white;
  border: 1px solid var(--navy02);
}
.faq .accordion-area li:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .faq .accordion-area li:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.faq .accordion-area li .title {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 16px;
  font-weight: 500;
  color: var(--navy01);
  font-size: 1.8rem;
  background: linear-gradient(#fff 0%, #f6f6f6 100%);
}
@media screen and (max-width: 768px) {
  .faq .accordion-area li .title {
    padding: 8px 36px 8px 8px;
    font-size: 1.4rem;
  }
}
.faq .accordion-area li .title span {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.faq .accordion-area li .title span::before {
  content: "";
  background: url(../../assets/images/Q.svg) no-repeat center/contain;
  width: 28px;
  height: 32px;
  margin-right: 0.3em;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .faq .accordion-area li .title span::before {
    width: 20px;
    height: 26px;
  }
}
.faq .accordion-area li .title::before,
.faq .accordion-area li .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--navy01);
}
.faq .accordion-area li .title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq .accordion-area li .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.faq .accordion-area li .title.close::before {
  transform: rotate(45deg);
}
.faq .accordion-area li .title.close::after {
  transform: rotate(-45deg);
}
.faq .accordion-area li .box {
  padding: 20px;
  border-top: 1px solid #ccc;
  display: none;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: justify;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .faq .accordion-area li .box {
    padding: 8px;
    font-size: 1.2rem;
  }
}
.faq .accordion-area li .box .breakable {
  word-break: break-word;
  overflow-wrap: break-word;
  display: inline-block;
}
.faq .accordion-area li .box span {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.faq .accordion-area li .box span::before {
  content: "";
  background: url(../../assets/images/A.svg) no-repeat center/contain;
  width: 28px;
  height: 32px;
  margin-right: 0.3em;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .faq .accordion-area li .box span::before {
    width: 20px;
    height: 26px;
  }
}

.area .accordion-area {
  width: 100%;
  margin: 0 auto;
}
.area .accordion-area li {
  background: white;
  border: 1px solid var(--navy02);
}
.area .accordion-area li:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .area .accordion-area li:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.area .accordion-area li .title {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 16px 56px;
  font-weight: 700;
  color: var(--navy01);
  font-size: 2.2rem;
  background: linear-gradient(#fff 0%, #f6f6f6 100%);
}
@media screen and (max-width: 768px) {
  .area .accordion-area li .title {
    padding: 8px 8px 8px 38px;
    font-size: 1.4rem;
  }
}
.area .accordion-area li .title::before,
.area .accordion-area li .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--navy01);
}
.area .accordion-area li .title::before {
  top: 48%;
  left: 20px;
  transform: rotate(0deg);
}
@media screen and (max-width: 768px) {
  .area .accordion-area li .title::before {
    left: 15px;
  }
}
.area .accordion-area li .title::after {
  top: 48%;
  left: 20px;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .area .accordion-area li .title::after {
    left: 15px;
  }
}
.area .accordion-area li .title.close::before {
  transform: rotate(45deg);
}
.area .accordion-area li .title.close::after {
  transform: rotate(-45deg);
}
.area .accordion-area li .box {
  padding: 24px 58px;
  border-top: 1px solid #ccc;
  display: none;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .area .accordion-area li .box {
    padding: 0 16px 16px;
  }
}
.area .box dl {
  padding: 20px 0;
  border-bottom: 1px dashed #ccc;
}
.area .box dl dt {
  font-weight: 700;
  color: #1e3256;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
.area .box dl dt a {
  text-decoration: underline;
  color: #293855;
}
@media screen and (max-width: 768px) {
  .area .box dl dt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .area .box dl dd {
    font-size: 1.2rem;
  }
}
.area .box .bg-area {
  margin-top: 24px;
  padding: 20px 24px;
  background-color: #fafafa;
}
@media screen and (max-width: 768px) {
  .area .box .bg-area {
    padding: 16px;
  }
}
.area .box .bg-area .ttl {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .area .box .bg-area .ttl {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}
.area .box .bg-area dl {
  border: none;
  padding: 0;
  margin-bottom: 1em;
}
.area .box .bg-area dl:last-of-type {
  margin-bottom: 0;
}
.area .box .bg-area dl dt {
  color: var(--text-black);
  font-weight: 700;
  font-size: initial;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .area .box .bg-area dl dt {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}
.area .box .bg-area dl dd {
  text-align: justify;
}

/* footer移植 */
.footer {
  background-attachment: scroll;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGP明朝B, serif;
  font-size: 100%;
  color: #0a162b;
  line-height: 1.7;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";

  background-color: #293855;
  margin-top: 80px;
  padding: 80px 0
}

.footer .container {
  width: 100%;
  max-width: 1280px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

.footer_menu {
  border-bottom: 1px solid #fff;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-inline: 40px;
  padding-bottom: 40px
}

@media only screen and (max-width:768px) {
  .footer_menu {
    display: block;
    padding-inline: 0
  }

  .footer_menu:after {
    clear: both;
    content: "";
    display: block
  }
}

.footer_menu_logo {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-inline: auto;
  max-width: 156px;
  width: 100%
}

@media only screen and (max-width:768px) {
  .footer_menu_logo {
    margin-inline: auto;
    margin-bottom: 20px;
    max-width: 99px;
    width: 100%
  }
}

.footer_menu a {
  color: #fff
}

.footer_menu ul {
  padding-left: 8px
}

@media only screen and (max-width:768px) {
  .footer_menu ul {
    padding-left: 4px
  }
}

.footer_menu li {
  list-style: disc;
  list-style-position: inside
}

@media only screen and (max-width:768px) {
  .footer_menu li {
    font-size: 13px;
  }
}

.footer_menu li a:hover {
  text-decoration: underline
}

.footer_menu li a.link:after {
  background: url(../images/icon_window.svg) no-repeat 50%;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 14px;
  margin-left: 4px;
  width: 16px
}

@media only screen and (max-width:768px) {
  .footer_menu li a.link:after {
    height: 11px;
    width: 13px
  }
}

.footer_menu_title {
  margin-top: 24px
}

@media only screen and (max-width:768px) {
  .footer_menu_title {
    font-size: 15px;
  }
}

.footer_menu_title:first-child {
  margin-top: 0
}

.footer_menu_left {
  margin-inline: auto
}

@media only screen and (max-width:768px) {
  .footer_menu_left {
    float: left;
    width: 50%
  }
}

.footer_menu_right {
  margin-inline: auto
}

@media only screen and (max-width:768px) {
  .footer_menu_right {
    float: right;
    width: 50%
  }
}

.footer_shop_list {
  color: #fff;
  font-size: 14px;
  margin: 10px;
  text-align: center
}

.footer_shop_list * {
  display: inline
}

.footer_shop_list ul li {
  white-space: nowrap
}

.footer_shop_list ul li:after {
  content: "、";
  display: inline
}

.footer_shop_list ul li:last-child:after {
  content: ""
}

.footer .pmark_img {
  background: #fff;
  height: auto;
  margin: 10px;
  max-width: 100%;
  padding: 5px
}

.footer_navi_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

.footer_navi_list_item:before {
  color: #fff;
  content: "｜";
  vertical-align: middle
}

.footer_navi_list_item:first-child:before {
  content: ""
}

.footer_navi_list_item .link {
  color: #fff
}

.footer_text {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center
}

.footer .privacymark {
  margin: 0 auto;
  max-width: 80px
}

.footer .copyright {
  color: #fff;
  font-size: 13px;
  margin-top: 10px;
  text-align: center
}

@media only screen and (max-width:768px) {
  .footer {
    padding: 50px 0
  }

  .footer .appeal_banner {
    margin: 20px auto
  }
}