@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lateef:wght@200;300;400;500;600;700;800&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 0.5208333333vw;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font-size: 2.6666666667vw;
  }
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.02em;
  background-color: white;
}

a {
  cursor: pointer;
  text-decoration: none;
}

span {
  font-size: 1em;
}

.note-show {
  display: none;
}
@media (max-width: 1200px) {
  .note-show {
    display: block;
  }
}

.note-hide {
  display: block;
}
@media (max-width: 1200px) {
  .note-hide {
    display: none;
  }
}

.tab-show {
  display: none;
}
@media (max-width: 1024px) {
  .tab-show {
    display: block;
  }
}

.tab-hide {
  display: block;
}
@media (max-width: 1024px) {
  .tab-hide {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media (max-width: 768px) {
  .sp-show {
    display: block;
  }
}

.sp-hide {
  display: block;
}
@media (max-width: 768px) {
  .sp-hide {
    display: none;
  }
}

img.sp-hide, span.sp-hide {
  display: inline;
}
@media (max-width: 768px) {
  img.sp-hide, span.sp-hide {
    display: none;
  }
}

.lateef {
  font-family: "Lateef";
}

.serif {
  font-family: "Noto Serif JP", sans-serif;
}

.yellow {
  color: #F7C205;
}

.blue {
  color: #1A3348;
}

main {
  overflow: hidden;
  letter-spacing: 0.02em;
  line-height: normal;
}
@media (max-width: 1024px) {
  main {
    overflow: hidden;
  }
}

.btn {
  width: 140px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #FFE096 0%, #F7B900 100%);
  font-size: 15px;
  font-weight: 500;
  color: #1A3348;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .btn {
    font-size: 12px;
    width: 120px;
  }
}
@media (min-width: 769px) {
  .btn {
    position: relative;
    top: 0;
    transition: all 0.4s;
  }
  .btn:hover {
    top: -2px;
  }
}

header {
  padding-top: 9px;
  padding-bottom: 6px;
  padding-left: 15px;
  padding-right: 15px;
}
header .header-inner {
  max-width: 980px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-inner .logo img {
  width: 300px;
}
@media (max-width: 768px) {
  header .header-inner .logo img {
    width: 200px;
  }
}

.fv {
  padding: 80px 15px;
  background-image: url(../img/fv-bg.webp);
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .fv {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.fv h6, .fv h1, .fv h5 {
  text-align: center;
}
.fv h6, .fv h5, .fv h1, .fv p, .fv li {
  color: white;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
}
.fv h6 {
  font-size: 20px;
  line-height: 2em;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .fv h6 span {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 3px;
    padding-bottom: 4px;
  }
}
@media (max-width: 768px) {
  .fv h6 span {
    border-top: none;
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .fv h6 {
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.fv h1 {
  font-size: 59px;
  line-height: normal;
  text-shadow: 0px 2px 5px rgba(26, 51, 72, 0.7);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.fv h1 span {
  font-size: 0.78em;
}
@media (max-width: 768px) {
  .fv h1 {
    font-size: 24px;
  }
}
.fv h5 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .fv h5 {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.fv h5 span {
  position: relative;
}
@media (max-width: 768px) {
  .fv h5 span {
    display: block;
  }
}
.fv h5 span::before, .fv h5 span::after {
  content: "";
  width: 73px;
  height: 1px;
  background-color: white;
  position: absolute;
  top: calc(50% + 1px);
}
@media (max-width: 768px) {
  .fv h5 span::before, .fv h5 span::after {
    width: 35px;
    display: none;
  }
}
.fv h5 span::before {
  left: -90px;
}
@media (max-width: 768px) {
  .fv h5 span::before {
    left: 0;
  }
}
.fv h5 span::after {
  right: -90px;
}
@media (max-width: 768px) {
  .fv h5 span::after {
    right: 0;
  }
}
.fv ul {
  display: flex;
  justify-content: space-between;
  max-width: 805px;
  margin: auto;
  margin-bottom: 24px;
}
.fv ul li {
  width: calc(33.3333% - 13.3333px);
  font-size: 20px;
  border: 1px solid white;
  text-align: center;
  line-height: 42px;
  transform: skewX(-10deg);
}
@media (max-width: 768px) {
  .fv ul li {
    font-size: 12px;
    line-height: 2em;
    width: 32%;
  }
}
.fv p {
  text-align: center;
  font-size: 15px;
  line-height: 1.86em;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .fv p {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.fv .btn-wrapper {
  display: flex;
  justify-content: center;
}
.fv .btn {
  width: 400px;
  height: 70px;
  font-size: 20px;
  position: relative;
}
.fv .btn::after {
  content: "";
  width: 11.39px;
  height: 20.53px;
  position: absolute;
  background-image: url(../img/arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 32px;
}
@media (max-width: 768px) {
  .fv .btn {
    width: 300px;
    height: 60px;
    font-size: 18px;
  }
}

.award-sec {
  background: linear-gradient(90deg, #1A3348 11.43%, #07467B 50.39%, #1A3348 88.57%);
  padding: 72px 15px;
}
@media (max-width: 768px) {
  .award-sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.award-sec h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  font-family: "Noto Serif JP", sans-serif;
  color: white;
  font-weight: 500;
}
@media (max-width: 768px) {
  .award-sec h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.award-sec ul {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  margin: auto;
}
.award-sec ul li {
  width: calc(33.3333% - 18px);
}
.award-sec ul li img {
  width: 100%;
}
@media (max-width: 768px) {
  .award-sec ul li {
    width: 33%;
  }
}

.worries-sec {
  padding: 96px 15px;
  padding-bottom: 35px;
  background-image: url(../img/worries-bg.webp);
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .worries-sec {
    padding-top: 50px;
  }
}
.worries-sec .wrapper {
  max-width: 980px;
  margin: auto;
  margin-bottom: 36px;
}
.worries-sec .wrapper h2 {
  font-family: "Noto Serif JP", sans-serif;
  text-align: center;
  color: #1A3348;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .worries-sec .wrapper h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.worries-sec .wrapper .box {
  max-width: 570px;
  position: relative;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  border: 5px solid rgba(255, 255, 255, 0.3);
  padding: 5px;
}
.worries-sec .wrapper .box .box-inner {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 32px 55px;
}
@media (max-width: 768px) {
  .worries-sec .wrapper .box .box-inner {
    padding: 20px 5px;
  }
}
.worries-sec .wrapper .box .box-inner ul {
  position: relative;
  z-index: 2;
}
.worries-sec .wrapper .box .box-inner ul li {
  font-size: 18px;
  line-height: 2.4444em;
  display: flex;
  align-items: center;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .worries-sec .wrapper .box .box-inner ul li {
    font-size: 12px;
  }
}
.worries-sec .wrapper .box .box-inner ul li p {
  font-size: 1em;
}
.worries-sec .wrapper .box .box-inner ul li img {
  margin-right: 14px;
  margin-left: 9px;
}
.worries-sec .wrapper .box .box-inner ul li span {
  color: #07467B;
}
.worries-sec .wrapper .box .box-inner ul li::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../img/line.webp);
  background-size: contain;
  bottom: 0px;
}
.worries-sec .arrow-wrapper {
  display: flex;
  justify-content: center;
}

.answer-sec {
  background: linear-gradient(180deg, #D0BA8D 0%, #E5DAC2 16.5%, #F9F7F3 34%, #F9F7F3 100%);
  padding-top: 64px;
  padding-bottom: 72px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .answer-sec {
    padding-top: 50px;
  }
}
.answer-sec h6, .answer-sec h2 {
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 1em;
}
.answer-sec h6 {
  font-size: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .answer-sec h6 {
    font-size: 14px;
  }
}
.answer-sec h2 {
  font-size: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .answer-sec h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.answer-sec .arrow-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .answer-sec .arrow-wrapper {
    margin-bottom: 30px;
  }
}
.answer-sec .desc {
  font-size: 16px;
  line-height: 1.75em;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .answer-sec .desc {
    font-size: 12px;
    margin-bottom: 30px;
  }
}
.answer-sec .box {
  max-width: 980px;
  margin: auto;
  position: relative;
  box-shadow: 0px 4px 30px rgba(104, 92, 66, 0.1);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .answer-sec .box {
    margin-bottom: 20px;
  }
}
.answer-sec .box img {
  position: absolute;
  height: 100%;
  width: auto;
}
@media (max-width: 768px) {
  .answer-sec .box img {
    position: static;
  }
}
@media (max-width: 768px) {
  .answer-sec .box {
    display: flex;
    flex-direction: column-reverse;
  }
}
.answer-sec .box .txt-wrapper {
  padding-top: 42px;
  margin-left: 180px;
  padding-bottom: 40px;
  position: relative;
  padding-left: 167px;
  padding-right: 40px;
  z-index: 2;
  background-image: url(../img/white-bg.webp);
  background-size: cover;
  background-position: left center;
}
@media (max-width: 768px) {
  .answer-sec .box .txt-wrapper {
    background-image: unset;
    background-color: #fff;
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.answer-sec .box .txt-wrapper .ttl {
  text-align: center;
  background-color: #1A3348;
  font-size: 16px;
  color: white;
  font-weight: 400;
  margin-bottom: 24px;
  padding-top: 4px;
  height: 32px;
}
.answer-sec .box .txt-wrapper .ul-wrapper {
  display: flex;
}
.answer-sec .box .txt-wrapper .ul-wrapper ul {
  list-style-type: disc;
  font-size: 15px;
  margin-left: 1.5em;
}
@media (max-width: 768px) {
  .answer-sec .box .txt-wrapper .ul-wrapper ul {
    font-size: 12px;
    width: 50%;
  }
}
.answer-sec .box .txt-wrapper .ul-wrapper ul li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.73em;
}
@media (max-width: 768px) {
  .answer-sec .box .txt-wrapper .ul-wrapper ul li {
    font-size: 12px;
  }
}
.answer-sec .box .txt-wrapper .ul-wrapper .ul1 {
  margin-right: 13px;
}
@media (max-width: 768px) {
  .answer-sec .box .txt-wrapper .ul-wrapper .ul1 {
    margin-right: unset;
  }
}
.answer-sec .notice {
  font-size: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .answer-sec .notice {
    font-size: 14px;
  }
}
.answer-sec .notice span {
  position: relative;
}
@media (max-width: 768px) {
  .answer-sec .notice span {
    display: block;
  }
}
.answer-sec .notice span::before, .answer-sec .notice span::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
}
@media (max-width: 768px) {
  .answer-sec .notice span::before, .answer-sec .notice span::after {
    display: none;
  }
}
.answer-sec .notice span::before {
  left: -50px;
}
@media (max-width: 768px) {
  .answer-sec .notice span::before {
    left: 0;
  }
}
.answer-sec .notice span::after {
  right: -50px;
}
@media (max-width: 768px) {
  .answer-sec .notice span::after {
    right: 0;
  }
}

.cta-sec {
  background-color: #07467B;
  padding: 64px 15px;
}
.cta-sec h2 {
  text-align: center;
  color: white;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 26px;
  margin-bottom: 32px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .cta-sec h2 {
    font-size: 20px;
  }
}
.cta-sec .btn-wrapper {
  display: flex;
  justify-content: center;
}
.cta-sec .btn {
  width: 400px;
  height: 70px;
  font-size: 20px;
  position: relative;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.25);
}
.cta-sec .btn::after {
  content: "";
  width: 11.39px;
  height: 20.53px;
  position: absolute;
  background-image: url(../img/arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 32px;
}
@media (max-width: 768px) {
  .cta-sec .btn {
    width: 300px;
    height: 60px;
    font-size: 18px;
  }
}

.profile-sec {
  background-image: url(../img/profile-bg.webp);
  background-position: center top;
  background-size: cover;
  padding: 120px 15px;
}
@media (max-width: 768px) {
  .profile-sec {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.profile-sec h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 72px;
  font-family: "Noto Serif JP", sans-serif;
}
@media (max-width: 768px) {
  .profile-sec h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.profile-sec .iframe-wrapper {
  max-width: 702px;
  margin: auto;
}
.profile-sec .youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.profile-sec .youtube iframe {
  width: 100%;
  height: 100%;
}
.profile-sec .profile-wrapper {
  max-width: 980px;
  margin: auto;
  margin-bottom: 72px;
  position: relative;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper {
    margin-bottom: 40px;
  }
}
.profile-sec .profile-wrapper::before {
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 40px;
  right: 40px;
  background-color: #F1F4F7;
  position: absolute;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper::before {
    width: 100%;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
}
.profile-sec .profile-wrapper .inner {
  display: flex;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .inner {
    flex-direction: column-reverse;
  }
}
.profile-sec .profile-wrapper .txt-col {
  width: calc(100% - 340px);
  padding-top: 40px;
  margin-top: 40px;
  margin-left: 40px;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .txt-col {
    width: calc(100% - 0px);
    margin-left: 0px;
    padding-top: 0;
    margin-top: 0px;
    margin-right: 0px;
    overflow: hidden;
  }
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper {
  background-color: #fff;
  padding-top: 20px;
  padding-left: 64px;
  padding-bottom: 20px;
  position: relative;
  height: 172px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .txt-col .ttl-wrapper {
    padding-left: 40px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper::before {
  content: "";
  width: calc(100% + 100px);
  height: 1px;
  background-color: #9BBAD4;
  position: absolute;
  left: -40px;
  bottom: 50px;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .txt-col .ttl-wrapper::before {
    left: -60px;
  }
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper::after {
  content: "";
  width: 1px;
  height: 212px;
  background-color: #9BBAD4;
  position: absolute;
  left: 40px;
  bottom: 0px;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .txt-col .ttl-wrapper::after {
    left: 20px;
  }
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper p {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper p {
  line-height: normal;
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper .mini {
  font-size: 13px;
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper .medium {
  font-size: 16px;
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper .name {
  margin-top: 8px;
  margin-bottom: 26px;
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper .name p {
  font-size: 28px;
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper .name p span {
  font-size: 16px;
  margin-right: 18px;
}
.profile-sec .profile-wrapper .txt-col .ttl-wrapper .mini2 {
  font-size: 13px;
}
.profile-sec .profile-wrapper .txt-col .desc-wrapper {
  padding-right: 40px;
  padding-bottom: 42px;
}
.profile-sec .profile-wrapper .txt-col .desc-wrapper .desc {
  font-size: 16px;
  line-height: 1.75em;
  margin-bottom: 16px;
}
.profile-sec .profile-wrapper .txt-col .desc-wrapper .desc:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .txt-col .desc-wrapper .desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .txt-col .desc-wrapper {
    padding-left: 20px;
    padding-right: 0px;
    padding-bottom: 20px;
  }
}
.profile-sec .profile-wrapper .img-col {
  width: 380px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .img-col {
    width: 100%;
  }
}
.profile-sec .profile-wrapper .img-col img {
  width: 100%;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .img-col img {
    height: 300px;
    object-fit: cover;
    object-position: top;
  }
}
.profile-sec .profile-wrapper .zisseki {
  padding-top: 40px;
  padding-left: 60px;
  position: relative;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .zisseki {
    padding-top: 20px;
    padding-left: 40px;
    padding-bottom: 40px;
  }
}
.profile-sec .profile-wrapper .zisseki::before {
  content: "";
  width: 280px;
  height: 1px;
  background-color: #9BBAD4;
  position: absolute;
  left: 0px;
  top: 73px;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .zisseki::before {
    top: 45px;
    width: 100%;
  }
}
.profile-sec .profile-wrapper .zisseki::after {
  content: "";
  width: 1px;
  height: 130px;
  background-color: #9BBAD4;
  position: absolute;
  left: 40px;
  top: 0;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .zisseki::after {
    left: 30px;
    height: 100%;
  }
}
.profile-sec .profile-wrapper .zisseki p, .profile-sec .profile-wrapper .zisseki li {
  font-size: 16px;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .zisseki p, .profile-sec .profile-wrapper .zisseki li {
    font-size: 14px;
  }
}
.profile-sec .profile-wrapper .zisseki p {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .profile-sec .profile-wrapper .zisseki p {
    margin-bottom: 10px;
  }
}

.support-sec {
  padding: 96px 15px;
  background-image: url(../img/support-bg.webp);
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .support-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.support-sec h2, .support-sec p {
  text-align: center;
  color: white;
}
.support-sec h2 {
  margin-bottom: 64px;
  font-size: 32px;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
}
@media (max-width: 768px) {
  .support-sec h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.support-sec p {
  font-size: 16px;
  line-height: 1.87em;
}
@media (max-width: 768px) {
  .support-sec p {
    font-size: 12px;
  }
}

.value-sec {
  padding: 120px 15px;
  background-color: #F1F4F7;
}
@media (max-width: 768px) {
  .value-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.value-sec .section-inner {
  max-width: 980px;
  margin: auto;
}
.value-sec .section-inner h2 {
  font-size: 32px;
  color: #1A3348;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  margin-bottom: 72px;
  text-align: center;
}
@media (max-width: 768px) {
  .value-sec .section-inner h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.value-sec .section-inner ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .value-sec .section-inner ul {
    flex-direction: column;
  }
}
.value-sec .section-inner ul li {
  width: calc(33.333333% - 20px);
  background-color: #fff;
  box-shadow: 0px 4px 30px 0px rgba(26, 51, 72, 0.1);
  padding: 40px 24px;
}
@media (max-width: 768px) {
  .value-sec .section-inner ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .value-sec .section-inner ul li:last-child {
    margin-bottom: 0;
  }
}
.value-sec .section-inner ul li h6, .value-sec .section-inner ul li .img-wrapper {
  text-align: center;
  margin-bottom: 24px;
}
.value-sec .section-inner ul li h6 {
  font-size: 22px;
  line-height: 1.36em;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-sec .section-inner ul li p {
  font-size: 16px;
  line-height: 1.75em;
}
@media (max-width: 768px) {
  .value-sec .section-inner ul li p {
    font-size: 14px;
  }
}

.price-sec {
  padding: 120px 15px;
  background-image: url(../img/price-bg.webp);
  background-size: cover;
  background-position: center top;
}
@media (max-width: 768px) {
  .price-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.price-sec .section-inner {
  max-width: 980px;
  margin: auto;
}
.price-sec .section-inner h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #1A3348;
  font-family: "Noto Serif JP", sans-serif;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .price-sec .section-inner h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.price-sec .section-inner .plan-wrapper {
  box-shadow: 0px 4px 30px 0px rgba(104, 92, 66, 0.1);
  background-color: #fff;
}
.price-sec .section-inner .plan-wrapper .ttl {
  background-color: #D0BA8D;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-sec .section-inner .plan-wrapper .ttl h5 {
  color: white;
  font-size: 30px;
  font-weight: 600;
  font-family: "Noto Serif JP", sans-serif;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .ttl {
    height: 50px;
  }
  .price-sec .section-inner .plan-wrapper .ttl h5 {
    font-size: 20px;
  }
}
.price-sec .section-inner .plan-wrapper .bg-white {
  padding: 40px;
  padding-top: 48px;
  background-color: #F9F7F3;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .bg-white {
    padding: 20px;
    padding-top: 30px;
  }
}
.price-sec .section-inner .plan-wrapper .lists {
  max-width: 554px;
  margin: auto;
}
.price-sec .section-inner .plan-wrapper .lists table {
  width: 100%;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .lists table {
    overflow: hidden;
  }
}
.price-sec .section-inner .plan-wrapper .lists table th {
  width: calc(100% - 205px);
  position: relative;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .lists table th {
    width: calc(100% - 130px);
  }
}
.price-sec .section-inner .plan-wrapper .lists table th span {
  font-size: 26px;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  background-color: #F9F7F3;
  padding-right: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .lists table th span {
    font-size: 16px;
    white-space: nowrap;
  }
}
.price-sec .section-inner .plan-wrapper .lists table th img {
  position: absolute;
  right: 0;
  top: 23px;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .lists table th img {
    width: 150px;
    top: 14px;
  }
}
.price-sec .section-inner .plan-wrapper .lists table td {
  width: 205px;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .lists table td {
    width: 130px;
  }
  .price-sec .section-inner .plan-wrapper .lists table td img {
    width: 100%;
  }
}
.price-sec .section-inner .plan-wrapper .lists table th, .price-sec .section-inner .plan-wrapper .lists table td {
  padding-bottom: 20px;
  padding-top: 3px;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .lists table td {
    padding-top: 5px;
  }
}
.price-sec .section-inner .plan-wrapper .lists table .nopb {
  padding-bottom: 0;
}
.price-sec .section-inner .plan-wrapper .lists .notice {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.price-sec .section-inner .plan-wrapper .lists .notice-body {
  text-align: center;
  margin-bottom: 48px;
}
.price-sec .section-inner .plan-wrapper .lists .notice-body > p {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .lists .notice {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .price-sec .section-inner .plan-wrapper .lists .notice-body > p {
    font-size: 12px;
  }
}
.price-sec .section-inner .plan-wrapper .wrap {
  background-color: #fff;
  padding: 20px 40px 32px;
  margin-bottom: 40px;
}
.price-sec .section-inner .plan-wrapper .wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .wrap {
    padding: 20px 15px;
  }
}
.price-sec .section-inner .plan-wrapper .wrap h6 {
  text-align: center;
  font-size: 20px;
  line-height: 1em;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .wrap h6 {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.price-sec .section-inner .plan-wrapper .wrap .border {
  width: 100%;
}
.price-sec .section-inner .plan-wrapper .wrap .ul1 {
  font-size: 15px;
  padding-left: 12px;
  padding-right: 12px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .wrap .ul1 {
    font-size: 12px;
    width: 100%;
  }
}
.price-sec .section-inner .plan-wrapper .wrap .ul1 li {
  font-size: 15px;
  line-height: 1.6em;
  position: relative;
  padding-left: 1em;
}
.price-sec .section-inner .plan-wrapper .wrap .ul1 li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .wrap .ul1 li {
    font-size: 12px;
  }
}
.price-sec .section-inner .plan-wrapper .wrap .desc {
  text-align: center;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6em;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .wrap .desc {
    font-size: 12px;
  }
}
.price-sec .section-inner .plan-wrapper .wrap .ol-wrapper {
  max-width: 440px;
  margin: auto;
  position: relative;
  display: flex;
  height: 120px;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 25px;
}
.price-sec .section-inner .plan-wrapper .wrap .ol-wrapper img {
  width: 10px;
  height: 100%;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .wrap .ol-wrapper {
    max-width: unset;
  }
}
.price-sec .section-inner .plan-wrapper .wrap ol {
  list-style-type: decimal;
  font-size: 15px;
  margin-left: 1.5em;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .wrap ol {
    font-size: 12px;
    width: 80%;
  }
}
.price-sec .section-inner .plan-wrapper .wrap ol li {
  list-style: decimal;
  font-size: 15px;
  line-height: 1.6em;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .wrap ol li {
    font-size: 12px;
  }
}
.price-sec .section-inner .plan-wrapper .wrap .flow-wrapper {
  max-width: 578px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 32px;
}
.price-sec .section-inner .plan-wrapper .wrap .flow-wrapper img {
  width: 100%;
}
.price-sec .section-inner .plan-wrapper .wrap .flow-wrapper ul {
  position: relative;
}
.price-sec .section-inner .plan-wrapper .wrap .flow-wrapper ul::before {
  content: "";
  width: 2px;
  height: calc(100% - 20px);
  position: absolute;
  background-color: #D0BA8D;
  left: 14px;
  top: 15px;
}
.price-sec .section-inner .plan-wrapper .wrap .flow-wrapper ul li {
  display: flex;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.price-sec .section-inner .plan-wrapper .wrap .flow-wrapper ul li span {
  background-color: #D0BA8D;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 10px;
}
.price-sec .section-inner .plan-wrapper .wrap .flow-wrapper ul li p {
  font-size: 14px;
  line-height: 1.12em;
  padding-top: 8px;
}
.price-sec .section-inner .plan-wrapper .wrap .kome {
  text-align: right;
  font-size: 14px;
}
@media (max-width: 768px) {
  .price-sec .section-inner .plan-wrapper .wrap .kome {
    font-size: 12px;
  }
}

.voice-sec {
  padding: 120px 15px;
  padding-bottom: 84px;
}
@media (max-width: 768px) {
  .voice-sec {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.voice-sec .section-inner {
  max-width: 980px;
  margin: auto;
}
.voice-sec .section-inner h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #1A3348;
  margin-bottom: 72px;
  font-family: "Noto Serif JP", sans-serif;
}
@media (max-width: 768px) {
  .voice-sec .section-inner h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.voice-sec .section-inner ul {
  display: flex;
  flex-wrap: wrap;
}
.voice-sec .section-inner ul li {
  width: calc(50% - 16px);
  margin-right: 32px;
  margin-bottom: 32px;
  background-color: #F1F4F7;
  padding: 24px 36px;
}
.voice-sec .section-inner ul li:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .voice-sec .section-inner ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.voice-sec .section-inner ul li h6 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid white;
}
@media (max-width: 768px) {
  .voice-sec .section-inner ul li h6 {
    font-size: 18px;
  }
}
.voice-sec .section-inner ul li p {
  font-size: 16px;
  line-height: 1.75em;
}
@media (max-width: 768px) {
  .voice-sec .section-inner ul li p {
    font-size: 14px;
  }
}

.faq-sec {
  padding: 120px 15px;
  background-color: #F1F4F7;
}
@media (max-width: 768px) {
  .faq-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.faq-sec .section-inner {
  max-width: 980px;
  margin: auto;
}
.faq-sec .section-inner h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #1A3348;
  margin-bottom: 72px;
  font-family: "Noto Serif JP", sans-serif;
}
@media (max-width: 768px) {
  .faq-sec .section-inner h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.faq-sec .section-inner ul {
  border-top: 1px solid #9BBAD4;
}
.faq-sec .section-inner ul li {
  border-bottom: 1px solid #9BBAD4;
  padding: 24px 40px;
}
@media (max-width: 768px) {
  .faq-sec .section-inner ul li {
    padding: 15px;
  }
}
.faq-sec .section-inner ul li .lateef {
  font-size: 30px;
  display: inline-block;
  color: #07467B;
  font-weight: 300;
  transform: skewX(-10deg);
  margin-right: 32px;
  height: 40px;
}
@media (max-width: 768px) {
  .faq-sec .section-inner ul li .lateef {
    margin-right: 20px;
  }
}
.faq-sec .section-inner ul li p {
  font-size: 16px;
  line-height: 1.75em;
  padding-top: 7px;
}
@media (max-width: 768px) {
  .faq-sec .section-inner ul li p {
    font-size: 14px;
    padding-top: 10px;
  }
}
.faq-sec .section-inner ul li .row {
  display: flex;
  justify-content: flex-start;
}
.faq-sec .section-inner ul li .p1 {
  font-weight: bold;
}
.faq-sec .section-inner ul li .p2 {
  font-weight: normal;
  line-height: 1.75em;
}
.faq-sec .section-inner ul li .p2 span {
  color: #07467B;
}
.faq-sec .section-inner ul li .p2 span a {
  font-size: inherit;
}
.faq-sec .section-inner ul li .row1 {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .faq-sec .section-inner ul li .row1 {
    margin-bottom: 5px;
  }
}

.contact-sec {
  padding: 120px 15px;
  background-color: #F9F7F3;
}
@media (max-width: 768px) {
  .contact-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.contact-sec .section-inner {
  max-width: 700px;
  margin: auto;
}
.contact-sec .section-inner h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #1A3348;
  margin-bottom: 72px;
  font-family: "Noto Serif JP", sans-serif;
}
@media (max-width: 768px) {
  .contact-sec .section-inner h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.contact-sec .section-inner .desc {
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1.75em;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .contact-sec .section-inner .desc {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.contact-sec form .ttl {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.contact-sec form .ttl .ttl-p {
  font-size: 16px;
  font-weight: bold;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .contact-sec form .ttl .ttl-p {
    font-size: 14px;
  }
}
.contact-sec form .ttl span {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  background-color: #9BBAD4;
  height: 20px;
  padding-left: 8px;
  padding-right: 8px;
  color: white;
}
.contact-sec form .wrap {
  margin-bottom: 40px;
}
.contact-sec form .txt-input {
  width: 100%;
  height: 50px;
  border: 1px solid #D0BA8D;
  padding-left: 16px;
  border-radius: 2px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
.contact-sec form .txt-input::placeholder {
  color: #afafaf;
}
@media (max-width: 768px) {
  .contact-sec form .txt-input {
    font-size: 14px;
    height: 40px;
  }
}
.contact-sec form .toroku {
  margin-top: 8px;
}
.contact-sec form .toroku label {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.contact-sec form .toroku label input {
  margin-right: 8px;
}
@media (max-width: 768px) {
  .contact-sec form .toroku label {
    font-size: 12px;
  }
}
.contact-sec form input[type=checkbox] {
  position: relative;
  margin-right: 6px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #D0BA8D;
  border-radius: 1px;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-sec form input[type=checkbox]:checked:before {
  position: absolute;
  top: 0px;
  left: 4px;
  transform: rotate(50deg);
  width: 6px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}
.contact-sec form .check-wrapper {
  display: flex;
}
.contact-sec form .check-wrapper label {
  font-size: 16px;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-sec form .check-wrapper label {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .contact-sec form .check-wrapper2 {
    display: flex;
    flex-direction: column;
  }
  .contact-sec form .check-wrapper2 label {
    margin-bottom: 5px;
  }
}
.contact-sec form input[type=radio] {
  position: relative;
  margin-right: 6px;
  width: 16px;
  height: 16px;
  border: 1px solid #D0BA8D;
  border-radius: 50%;
  vertical-align: -2px;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-sec form input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D0BA8D;
  content: "";
}
.contact-sec form .select-wrapper {
  position: relative;
  width: 160px;
  height: 50px;
}
@media (max-width: 768px) {
  .contact-sec form .select-wrapper {
    height: 40px;
    width: 120px;
  }
}
.contact-sec form .select-wrapper::before {
  content: "";
  width: 11px;
  height: 7px;
  background-image: url(../img/select-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 22px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .contact-sec form .select-wrapper::before {
    top: 16px;
    right: 10px;
  }
}
.contact-sec form .select-wrapper * {
  width: 100%;
  height: 100%;
}
.contact-sec form .select-wrapper select {
  width: 100%;
  height: 100%;
  appearance: none;
  border-radius: 0;
  border-color: #D0BA8D;
  background-color: #fff;
  font-size: 16px;
  padding-left: 16px;
  color: #333;
}
@media (max-width: 768px) {
  .contact-sec form .select-wrapper select {
    font-size: 14px;
  }
}
.contact-sec form textarea {
  padding: 8px 16px;
  border: 1px solid #D0BA8D;
  font-size: 16px;
  line-height: normal;
  background-color: #fff;
  border-radius: 2px;
  resize: none;
  width: 100%;
  height: 200px;
  font-family: "Noto Sans JP", sans-serif;
}
.contact-sec form textarea::placeholder {
  color: #afafaf;
}
@media (max-width: 768px) {
  .contact-sec form textarea {
    font-size: 14px;
  }
}
.contact-sec form .submit-wrapper {
  display: flex;
  justify-content: center;
}
.contact-sec form .submit-wrapper input {
  cursor: pointer;
  width: 400px;
  height: 60px;
  color: #1A3348;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  border: none;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, #FFE096 0%, #F7B900 100%);
  transition: all 0.4s;
  top: 0px;
  position: relative;
}
.contact-sec form .submit-wrapper input:hover {
  top: -2px;
}
@media (max-width: 768px) {
  .contact-sec form .submit-wrapper input {
    width: 300px;
    font-size: 16px;
    height: 50px;
  }
}

footer {
  background-color: #1A3348;
  padding: 17px 15px;
}
footer * {
  font-size: 12px;
  color: white;
  font-weight: 400;
}
@media (max-width: 768px) {
  footer .copy {
    text-align: center;
    padding-top: 10px;
  }
}
footer .footer-inner {
  max-width: 980px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer-inner {
    flex-direction: column;
  }
}
footer .footer-inner ul {
  display: flex;
}
@media (max-width: 768px) {
  footer .footer-inner ul {
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
  }
}
footer .footer-inner ul li {
  margin-right: 16px;
  padding-right: 16px;
  border-right: 1px solid white;
  letter-spacing: 0;
}
footer .footer-inner ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
@media (max-width: 768px) {
  footer .footer-inner ul li {
    margin-bottom: 10px;
    margin-right: 5px;
    padding-right: 5px;
    margin-left: 5px;
    padding-left: 5px;
    border-right: none;
  }
}
footer .footer-inner ul li a {
  transition: all 0.4s;
}
footer .footer-inner ul li a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  footer .footer-inner ul li a {
    font-size: 10px;
  }
}

form .wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  margin-left: 10px;
  font-weight: bold;
  margin-top: 5px;
}

.wpcf7 form.sent .wpcf7-response-output {
  font-size: 14px;
}

.wpcf7-spinner {
  position: absolute !important;
  right: 0;
}

form .notice-p{
  font-size:14px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  form .notice-p{
    font-size:10px;
    margin-bottom: 5px;
  }
}

/*# sourceMappingURL=style.css.map */

form .wpcf7-not-valid-tip,.wpcf7 form .wpcf7-response-output{
  font-size: 12px;
}

.is-yen {
    white-space: nowrap;
}

.is-yen span {
    font-size: 32px;
    font-family: "Noto Serif JP", sans-serif;
    font-weight: 600;
    background: linear-gradient(to bottom, #AB8454 0%, #694C27 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.is-yen small {
    font-size: 16px;
    font-family: "Noto Serif JP", sans-serif;
    font-weight: 600;
    background: linear-gradient(to bottom, #AB8454 0%, #694C27 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .is-yen span {
        font-size: 20px;
    }

    .is-yen small {
        font-size: 12px;
    }
}

footer a {
  color: #ffffff;
}
