@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  vertical-align: top;
}

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

body {
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

main {
  display: block;
}

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

img {
  vertical-align: top;
}

html {
  font-size: 10px;
}

body {
  font-family: "Noto Serif JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #333;
}
@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.modalOpen {
  overflow: hidden;
}
.modalOpen .js_modalWindow {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.js_modalWindow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12000;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.js_modalWindow.show .modalDialog {
  transform: none;
}
.js_modalWindow.popup {
  text-align: center;
}
.js_modalWindow .modalDialog {
  position: relative;
  width: auto;
  max-width: 980px;
  min-height: calc(100% - (40px));
  margin: 20px auto;
  pointer-events: none;
  display: flex;
  align-items: center;
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}
.js_modalWindow .modalDialog::before {
  content: "";
  display: block;
  height: calc(100vh - (40px));
}
.js_modalWindow .modalContent {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  outline: 0;
}

.modalBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11999;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.15s linear;
  pointer-events: none;
}
.modalBg.show {
  opacity: 1;
  pointer-events: all;
}

@media screen and (prefers-reduced-motion: reduce) {
  .js_modalWindow .modalDialog,
  .modalBg {
    transition: none;
  }
}
.js_modalWindow .close {
  border: none;
  background: none;
  outline: none;
}

#popupModal .modalBody {
  text-align: center;
}
#popupModal .modalBody img, #popupModal .modalBody iframe {
  max-width: 100%;
}

.m_modal .modalContent {
  position: relative;
}
.m_modal .modalContent .closeBtn {
  position: absolute;
  top: 30px;
  right: 30px;
}
.m_modal .modalBody {
  background: #fff;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .m_modal .modalDialog {
    margin: 20px;
  }
}

@media print, screen and (min-width: 769px) {
  .m_pcHide {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .m_spHide {
    display: none;
  }
}
@media print, screen and (min-width: 769px) {
  .m_section {
    width: 1280px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .m_section {
    overflow: hidden;
  }
}

.m_secHead {
  text-align: center;
  font-weight: 400;
  color: #8B85B0;
}
.m_secHead .main {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  margin-bottom: -16px;
}
.m_secHead .sub {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: block;
}
@media print, screen and (min-width: 769px) {
  .m_secHead .main {
    font-size: 8rem;
  }
  .m_secHead .main span {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 768px) {
  .m_secHead .main {
    font-size: 5.4rem;
  }
  .m_secHead .sub {
    font-size: 1.6rem;
  }
}

.m_flowList {
  margin-inline: auto;
  counter-reset: flowList;
}
.m_flowList > li {
  background: #8B85B0;
  box-sizing: border-box;
  color: #fff;
  counter-increment: flowList;
  position: relative;
}
.m_flowList > li:before {
  content: "0" counter(flowList);
  font-family: "Cormorant Unicase", serif;
  font-weight: 600;
  font-style: normal;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  position: absolute;
  line-height: 1;
}
.m_flowList > li + li:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background: #8B85B0;
}
.m_flowList > li .colHead {
  font-weight: 700;
}
.m_flowList > li .colHead .sub {
  border: 1px solid #fff;
  display: inline-block;
}
.m_flowList > li .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
}
@media print, screen and (min-width: 769px) {
  .m_flowList {
    width: 950px;
    margin-bottom: 100px;
  }
  .m_flowList > li {
    height: 118px;
    padding-left: 221px;
    padding-top: 25px;
    border-radius: 59px;
  }
  .m_flowList > li + li {
    margin-top: 40px;
  }
  .m_flowList > li + li:after {
    top: -40px;
    width: 2px;
    height: 40px;
  }
  .m_flowList > li:before {
    font-size: 10rem;
    left: 39px;
    top: 2px;
  }
  .m_flowList > li .colHead {
    margin-bottom: 7px;
  }
  .m_flowList > li .colHead .main {
    font-size: 2.4rem;
  }
  .m_flowList > li .colHead .sub {
    font-size: 2rem;
    margin-left: 20px;
    padding: 0 11px;
    line-height: 30px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 768px) {
  .m_flowList {
    margin-bottom: 66px;
  }
  .m_flowList > li {
    width: 316px;
    margin: 0 auto;
    border-radius: 8px;
    padding: 40px 15px 18px 25px;
  }
  .m_flowList > li:before {
    font-size: 4rem;
    top: -3px;
    left: 6px;
  }
  .m_flowList > li + li {
    margin-top: 14px;
  }
  .m_flowList > li + li:after {
    height: 14px;
    width: 1px;
    top: -14px;
  }
  .m_flowList > li .colHead {
    margin-bottom: 11px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .m_flowList > li .colHead .main {
    font-size: 2rem;
    display: block;
  }
  .m_flowList > li .colHead .sub {
    font-size: 1.4rem;
    margin-left: auto;
    padding: 1px 13px;
    border-radius: 12px;
  }
  .m_flowList > li .txt {
    font-size: 1.6rem;
  }
}

.m_barHead {
  margin-inline: auto;
  color: #333;
  border-bottom: 1px solid #453F60;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 4px;
}
@media print, screen and (min-width: 769px) {
  .m_barHead {
    width: 950px;
    font-size: 2.8rem;
    height: 99px;
    margin-bottom: 49px;
  }
}
@media screen and (max-width: 768px) {
  .m_barHead {
    font-size: 2.4rem;
    letter-spacing: 0.2em;
    padding: 0 0 14px;
  }
}

.m_qaList .qTxt {
  position: relative;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  border-bottom: 1px solid #BEA23E;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.m_qaList .qTxt.is_active > span:after {
  opacity: 0;
}
.m_qaList .qTxt:before {
  content: "Q";
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  font-size: 1.6rem;
  background: #BEA23E;
  color: #fff;
  border-radius: 50%;
  letter-spacing: normal;
  position: absolute;
  left: 0;
}
.m_qaList .qTxt > span:before, .m_qaList .qTxt > span:after {
  content: "";
  display: block;
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
}
.m_qaList .qTxt > span:after {
  transform: rotate(90deg);
}
.m_qaList .aCol {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.14);
  border-radius: 5px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  display: none;
}
.m_qaList .aCol:before {
  content: "A";
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  font-size: 1.6rem;
  color: #BEA23E;
  border: 1px solid #BEA23E;
  border-radius: 50%;
  letter-spacing: normal;
  position: absolute;
}
.m_qaList .aCol .close {
  display: block;
  position: absolute;
  text-indent: -9999px;
}
.m_qaList .aCol .close:after {
  content: "";
  display: block;
  background: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media print, screen and (min-width: 769px) {
  .m_qaList {
    width: 886px;
    margin-inline: auto;
  }
  .m_qaList .qTxt {
    padding: 10px;
    padding-left: 53px;
    min-height: 99px;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .m_qaList .qTxt:hover {
    opacity: 0.5;
  }
  .m_qaList .qTxt.is_active {
    border-bottom: 1px solid transparent;
  }
  .m_qaList .qTxt > span:before, .m_qaList .qTxt > span:after {
    width: 30px;
    right: 26px;
  }
  .m_qaList .aCol {
    padding: 20px 107px 20px 87px;
  }
  .m_qaList .aCol:before {
    left: 33px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .m_qaList .aCol .close {
    width: 30px;
    height: 30px;
    right: 26px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .m_qaList .aCol .close:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .m_qaList {
    margin: 0 20px;
    padding-bottom: 20px;
  }
  .m_qaList .qTxt {
    padding: 23px 43px 23px 53px;
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .m_qaList .qTxt > span:before, .m_qaList .qTxt > span:after {
    right: 0;
    width: 20px;
  }
  .m_qaList .aCol {
    margin-top: 20px;
    border-radius: 5px;
    padding: 53px 17px 19px;
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .m_qaList .aCol:before {
    top: 14px;
    left: 14px;
  }
  .m_qaList .aCol .close {
    top: 19px;
    right: 9px;
    width: 20px;
    height: 20px;
  }
}

.m_dotList > li {
  padding-left: 1em;
  text-indent: -1em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #000;
}
.m_dotList > li + li {
  margin-top: 12px;
}
.m_dotList > li:before {
  content: "・";
}
@media print, screen and (min-width: 769px) {
  .m_dotList > li {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .m_dotList > li {
    font-size: 1.2rem;
  }
}

.m_voiceList .col {
  box-sizing: border-box;
}
.m_voiceList .col .tmb {
  position: relative;
  margin-bottom: -10px;
}
.m_voiceList .col .tmb .badge {
  position: absolute;
  z-index: 1;
  background: #BEA23E;
  border-radius: 50%;
  color: #fff;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  box-sizing: border-box;
  line-height: 1;
  font-size: 1.6rem;
  width: 76px;
  height: 76px;
  padding-top: 19px;
  top: -55px;
  left: -32px;
}
.m_voiceList .col .tmb .badge .num {
  font-size: 2.4rem;
  display: block;
}
.m_voiceList .col .tmb .img {
  position: relative;
  z-index: 2;
}
.m_voiceList .col .txtWrap {
  color: #000;
}
.m_voiceList .col .txtWrap .colHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px dashed #8F691D;
}
.m_voiceList .col .txtWrap .colHead .ttl {
  font-weight: 400;
}
.m_voiceList .col .txtWrap .colHead .sub {
  font-weight: 400;
}
.m_voiceList .col .txtWrap .txt {
  font-weight: 400;
  line-height: 1.7;
}
@media print, screen and (min-width: 769px) {
  .m_voiceList .col {
    width: 817px;
    margin-inline: auto;
    padding: 38px 55px 38px 73px;
    display: flex;
    align-items: flex-end;
    background: #FFFBEF;
  }
  .m_voiceList .col + .col {
    margin-top: 32px;
  }
  .m_voiceList .col .txtWrap {
    margin-left: 34px;
  }
  .m_voiceList .col .txtWrap .colHead {
    padding-bottom: 9px;
    margin-bottom: 10px;
  }
  .m_voiceList .col .txtWrap .colHead .ttl {
    font-size: 2.4rem;
  }
  .m_voiceList .col .txtWrap .colHead .sub {
    font-size: 1.6rem;
  }
  .m_voiceList .col .txtWrap .txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .m_voiceList {
    padding: 100px 28px;
    background: #FFFBEF;
  }
  .m_voiceList .col {
    position: relative;
    text-align: center;
  }
  .m_voiceList .col + .col {
    margin-top: 50px;
  }
  .m_voiceList .col .tmb {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
  }
  .m_voiceList .col .tmb .badge {
    top: 0;
    left: -66px;
  }
  .m_voiceList .col .tmb .img {
    height: 130px;
    display: flex;
    align-items: flex-end;
  }
  .m_voiceList .col .txtWrap {
    text-align: left;
  }
  .m_voiceList .col .txtWrap .colHead {
    padding-bottom: 30px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
    padding-left: 139px;
  }
  .m_voiceList .col .txtWrap .colHead .ttl {
    font-size: 2rem;
    display: block;
  }
  .m_voiceList .col .txtWrap .colHead .sub {
    font-size: 1.6rem;
    display: block;
  }
  .m_voiceList .col .txtWrap .txt {
    font-size: 1.8rem;
    line-height: 1.7;
  }
}

#gheader {
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}
@media print, screen and (min-width: 769px) {
  #gheader {
    display: flex;
    align-items: center;
    height: 100px;
    padding: 0 36px 0 65px;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.09);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-105%);
    pointer-events: none;
    transition: transform 0.3s;
  }
  #gheader.is_fixed {
    transform: translateY(0);
    pointer-events: all;
  }
  #gheader .menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #gheader .logo {
    display: none;
  }
  #gheader .menu {
    position: fixed;
    z-index: 10;
    top: 14px;
    right: 15px;
  }
  #gheader .menu button {
    box-sizing: content-box;
    display: block;
    width: 30px;
    height: 14px;
    position: relative;
    padding: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 200%;
  }
  #gheader .menu button::before, #gheader .menu button::after {
    display: block;
    height: 2px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 10px);
    margin: auto;
    background: #fff;
  }
  #gheader .menu button::before {
    content: "";
    transition: 0.3s;
  }
  #gheader .menu button > span {
    width: calc(100% - 10px);
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
  }
  #gheader .menu button > span::before, #gheader .menu button > span::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s;
  }
  #gheader .menu button > span::before {
    top: 5px;
  }
  #gheader .menu button > span::after {
    bottom: 5px;
  }
  #gheader .menu button span::before, #gheader .menu button span::after {
    height: 2px;
    background: #fff;
  }
  #gheader .menu button.is_active::before {
    opacity: 0;
    right: -5px;
  }
  #gheader .menu button.is_active span::before {
    top: 50%;
    margin-top: -2px;
    transform: rotate(45deg);
  }
  #gheader .menu button.is_active span::after {
    bottom: 50%;
    transform: rotate(-45deg);
  }
  #gheader .menu button:before {
    display: none;
  }
}

#gnav .linkList > li {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
}
#gnav .linkList > li a {
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  #gnav {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  #gnav .linkList {
    display: flex;
    gap: 50px;
  }
  #gnav .linkList > li {
    font-size: 1.6rem;
  }
  #gnav .linkList > li a {
    color: #333;
    transition: color 0.3s;
  }
  #gnav .linkList > li a:hover {
    color: #8B85B0;
  }
  #gnav .telLink {
    margin-left: 31px;
  }
}
@media screen and (max-width: 768px) {
  #gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    box-sizing: border-box;
    background: rgba(155, 155, 199, 0.9);
    overflow: auto;
    padding: 110px 34px 33px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
  }
  #gnav.is_active {
    opacity: 1;
    pointer-events: all;
  }
  #gnav .linkList > li {
    font-size: 1.8rem;
    text-align: center;
  }
  #gnav .linkList > li + li {
    margin-top: 21px;
  }
  #gnav .linkList > li a {
    color: #fff;
  }
  #gnav .linkList > li.instaLink {
    margin-top: 30px;
    text-align: center;
  }
  #gnav .telLink {
    text-align: center;
    margin-top: 30px;
  }
}

#gfooter {
  background: #8787C3;
  position: relative;
}
#gfooter .logo {
  display: block;
  text-align: center;
}
#gfooter .linkList > li {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
}
#gfooter .linkList > li a {
  color: #fff;
  text-decoration: none;
}
#gfooter .copy {
  background: #333;
  text-align: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}
#gfooter .pagetop {
  z-index: 9;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  position: fixed;
}
#gfooter .pagetop.is_fixed {
  pointer-events: all;
  opacity: 1;
}
@media print, screen and (min-width: 769px) {
  #gfooter {
    padding-top: 54px;
  }
  #gfooter .logo {
    margin-bottom: 73px;
  }
  #gfooter .linkList {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 116px;
  }
  #gfooter .linkList > li + li {
    margin-left: 50px;
  }
  #gfooter .linkList > li.insta {
    margin-left: 131px;
  }
  #gfooter .linkList > li a img {
    transition: opacity 0.3s;
  }
  #gfooter .linkList > li a:hover {
    text-decoration: underline;
  }
  #gfooter .linkList > li a:hover img {
    opacity: 0.5;
  }
  #gfooter .copy {
    padding: 18px 0;
  }
  #gfooter .copy small {
    font-size: 1.4rem;
  }
  #gfooter .pagetop {
    bottom: 48px;
    right: 48px;
  }
  #gfooter .pagetop a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  #gfooter .pagetop a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  #gfooter {
    padding-top: 49px;
    padding-bottom: 70px;
  }
  #gfooter .logo {
    margin-bottom: 17px;
  }
  #gfooter .linkList {
    margin: 0 40px 46px;
  }
  #gfooter .linkList > li {
    font-size: 1.6rem;
    text-align: center;
  }
  #gfooter .linkList > li + li {
    margin-top: 12px;
  }
  #gfooter .linkList > li img {
    padding-top: 12px;
  }
  #gfooter .copy {
    padding: 20px 0;
  }
  #gfooter .copy small {
    font-size: 1.2rem;
  }
  #gfooter .pagetop {
    right: 4px;
    bottom: 77px;
  }
  #gfooter .pagetop img {
    width: 48px;
  }
}

.js_anim:not(.pcOnly) {
  opacity: 0;
  transition: opacity 1s 0.3s;
}
.js_anim.is_active {
  opacity: 1 !important;
}
@media print, screen and (min-width: 769px) {
  .js_anim.pcOnly {
    opacity: 0;
    transition: opacity 1s 0.3s;
  }
}
@media print, screen and (min-width: 769px) {
  .m_animList > *:nth-child(1) {
    transition-delay: 1s;
  }
  .m_animList > *:nth-child(2) {
    transition-delay: 1.2s;
  }
  .m_animList > *:nth-child(3) {
    transition-delay: 1.4s;
  }
  .m_animList > *:nth-child(4) {
    transition-delay: 1.6s;
  }
}
@keyframes scrollAnim {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(250%);
  }
}
.mvArea {
  position: relative;
  z-index: 1;
}
.mvArea .txtWrap .head1 .txt2 {
  line-height: 1.4;
  font-weight: 400;
  display: block;
  letter-spacing: 0.02em;
}
.mvArea .txtWrap .head1 .txt3 {
  display: block;
  color: #8B85B0;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.mvArea .txtWrap .subTxt {
  font-weight: 500;
  color: #5F5F5F;
  line-height: 2;
  letter-spacing: 0.15em;
}
.mvArea .head2 .txt1 {
  color: #8B85B0;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
.mvArea .slides img {
  width: 100%;
  vertical-align: top;
}
@media print, screen and (min-width: 769px) {
  .mvArea {
    min-width: 1280px;
    overflow: hidden;
  }
  .mvArea .mvInner {
    position: relative;
  }
  .mvArea .logo {
    position: absolute;
    top: 36px;
    left: 65px;
  }
  .mvArea .head2 {
    position: absolute;
    top: 252px;
    left: 58px;
    font-size: 5rem;
  }
  .mvArea .txtWrap {
    position: absolute;
    top: 361px;
    left: 58px;
  }
  .mvArea .txtWrap .head1 {
    margin-bottom: 46px;
  }
  .mvArea .txtWrap .head1 .txt2 {
    font-size: 4.8rem;
    margin-bottom: 17px;
  }
  .mvArea .txtWrap .head1 .txt3 {
    font-size: 2.4rem;
  }
  .mvArea .txtWrap .subTxt {
    width: 530px;
    font-size: 1.8rem;
    margin-bottom: 175px;
  }
  .mvArea .txtWrap .scroll .bar {
    display: inline-block;
    overflow: hidden;
    width: 1px;
    height: 78px;
    position: relative;
    margin-top: 4px;
    margin-left: 7px;
  }
  .mvArea .txtWrap .scroll .bar:before {
    background: #333;
    content: "";
    display: block;
    width: 1px;
    height: 250%;
    position: absolute;
    left: 0;
    bottom: 76px;
    animation: scrollAnim 4s linear infinite;
  }
  .mvArea .slides {
    width: 50%;
    margin-left: auto;
    position: relative;
  }
  .mvArea .slides .slide {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .mvArea .slides .slide.is_active .img1, .mvArea .slides .slide.is_active .img2, .mvArea .slides .slide.is_active .img3 {
    opacity: 1;
  }
  .mvArea .slides .slide.is_first {
    z-index: 3;
    opacity: 1;
  }
  .mvArea .slides .slide.is_second {
    z-index: 2;
    opacity: 1;
  }
  .mvArea .slides .slide:not(:nth-child(1)) {
    position: absolute;
    top: 0;
    left: 0;
  }
  .mvArea .slides .slideWrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 42.71% calc(57.29% - 10px);
    gap: 10px;
    min-width: 700px;
    width: 100%;
    height: 100%;
  }
  .mvArea .slides .slideWrap .img1, .mvArea .slides .slideWrap .img2, .mvArea .slides .slideWrap .img3 {
    opacity: 0;
    transition: opacity 0.8s;
    overflow: hidden;
  }
  .mvArea .slides .slideWrap .img1 {
    grid-area: 1/1/2/2;
  }
  .mvArea .slides .slideWrap .img2 {
    grid-area: 2/1/3/2;
    transition-delay: 2s;
  }
  .mvArea .slides .slideWrap .img3 {
    grid-area: 1/2/3/3;
    transition-delay: 1s;
  }
  .mvArea .slides .slideWrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .mvArea {
    overflow: hidden;
  }
  .mvArea .mvInner {
    display: flex;
    flex-direction: column;
  }
  .mvArea .logo {
    position: absolute;
    z-index: 1;
    top: 31.73vw;
    left: 0;
    right: 0;
    text-align: center;
  }
  .mvArea .logo .img {
    width: 100%;
    display: block;
    text-align: right;
  }
  .mvArea .logo .img img {
    width: 98px;
    margin-right: 10.9vw;
  }
  .mvArea .slides {
    order: 1;
    display: none;
  }
  .mvArea .slides img {
    width: 100%;
  }
  .mvArea .spImg img {
    width: 100%;
  }
  .mvArea .txtWrap {
    order: 3;
    background: #ECECF1;
  }
  .mvArea .txtWrap .head1 {
    position: absolute;
    z-index: 1;
    top: 91.2vw;
    left: 7.2vw;
    text-align: left;
  }
  .mvArea .txtWrap .head1 .txt2 {
    font-size: 3.4rem;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    font-weight: 500;
  }
  .mvArea .txtWrap .head1 .txt3 {
    font-size: 2.4rem;
    letter-spacing: 0.18em;
    font-weight: 500;
  }
  .mvArea .txtWrap .subTxt {
    text-align: left;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    line-height: 1.66;
    padding: 0 26px;
    margin-bottom: 20px;
  }
  .mvArea .txtWrap .subImg {
    text-align: center;
  }
  .mvArea .head2 {
    order: 2;
    text-align: center;
    margin-top: -70px;
    margin-bottom: 35px;
  }
  .mvArea .head2:before {
    content: "";
    display: block;
    width: 100%;
    height: 111px;
    background: url(../images/mvSpWave.png) no-repeat center top/100%;
  }
  .mvArea .head2 .txt1 {
    font-size: 3rem;
    display: block;
    margin-top: -85px;
  }
  .mvArea .scroll {
    display: none;
  }
}

@media print, screen and (min-width: 769px) {
  .ctLink {
    position: fixed;
    z-index: 9;
    top: 296px;
    right: 32px;
  }
  .ctLink > li + li {
    margin-top: 13px;
  }
  .ctLink > li a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .ctLink > li a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .ctLink {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.15);
  }
  .ctLink > li {
    width: 50%;
  }
  .ctLink > li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 70px;
  }
  .ctLink > li:nth-child(1) a {
    background: #fff;
  }
  .ctLink > li:nth-child(2) a {
    background: #8B85B0;
  }
}

.secWrap {
  background: #ECECF1;
  position: relative;
  z-index: 3;
}
.secWrap:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}
@media print, screen and (min-width: 769px) {
  .secWrap {
    padding-bottom: 115px;
    margin-top: calc(216px - 8vw);
  }
  .secWrap:before {
    top: -216px;
    height: 216px;
    background: url(../images/secTop.png) no-repeat center top/100% 216px;
  }
}
.flowListWrap {
  position: relative;
  background: #ECECF1;
}
.flowListWrap:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
  mix-blend-mode: multiply;
}
.flowListWrap .flowList {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 769px) {
  .flowListWrap {
    height: 954px;
  }
  .flowListWrap:before {
    background: url(../images/flowListBg.jpg) no-repeat center top/cover;
  }
  .flowListWrap:after {
    content: "";
    display: block;
    position: absolute;
    width: 82px;
    height: 867px;
    background: url(../images/sideTxt.png) no-repeat 0 0/cover;
    top: 213px;
    left: -99px;
  }
  .flowListWrap .flowList > li {
    position: absolute;
  }
  .flowListWrap .flowList > li:nth-child(1) {
    top: 139px;
    left: 81px;
  }
  .flowListWrap .flowList > li:nth-child(2) {
    top: 252px;
    left: 495px;
  }
  .flowListWrap .flowList > li:nth-child(3) {
    top: 389px;
    left: 895px;
  }
}
@media screen and (max-width: 768px) {
  .flowListWrap {
    padding: 65px 0 42px;
  }
  .flowListWrap:before {
    background: url(../images/flowListBgSp.png) no-repeat center top/100%;
  }
  .flowListWrap .flowList > li {
    width: 316px;
    margin: 0 auto;
  }
  .flowListWrap .flowList > li + li {
    margin-top: 25px;
  }
  .flowListWrap .flowList > li:nth-child(1) img {
    margin-top: -12px;
    margin-left: -17px;
  }
  .flowListWrap .flowList > li:nth-child(2) img {
    margin-left: -16px;
  }
  .flowListWrap .flowList > li:nth-child(3) img {
    margin-left: -17px;
  }
}

.concept .secHead {
  color: #8B85B0;
  font-weight: 400;
}
.concept .subTxt {
  font-weight: 500;
  line-height: 2;
}
.concept .subHead {
  text-align: center;
  font-weight: 600;
  line-height: 1.7;
}
.concept .list > li {
  box-sizing: border-box;
  border: 1px solid #5F5F5F;
  border-radius: 20px;
  counter-increment: list;
  position: relative;
  text-align: center;
}
.concept .list > li:before {
  content: "";
  display: block;
  width: 70px;
  height: 60px;
  position: absolute;
  top: -25px;
  left: -20px;
}
.concept .list > li:nth-child(1):before {
  background: url(../images/conceptNum01.png) no-repeat 0 0/34px, #fff;
}
.concept .list > li:nth-child(2):before {
  background: url(../images/conceptNum02.png) no-repeat 0 0/36px, #fff;
}
.concept .list > li:nth-child(3):before {
  background: url(../images/conceptNum03.png) no-repeat 0 0/36px, #fff;
}
.concept .list > li .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width: 769px) {
  .concept {
    background: url(../images/conceptBg.jpg) no-repeat center top/100%, #fff;
    padding: 50px 0 120px;
  }
  .concept .headWrap {
    margin-left: 162px;
    margin-bottom: 277px;
  }
  .concept .headWrap .secHead {
    font-size: 8rem;
    margin-bottom: 66px;
  }
  .concept .headWrap .subTxt {
    font-size: 2.4rem;
  }
  .concept .subHead {
    font-size: 2.8rem;
    margin-bottom: 76px;
  }
  .concept .list {
    display: flex;
    justify-content: center;
    gap: 50px;
  }
  .concept .list > li {
    width: 283px;
    padding: 60px 0 68px;
  }
  .concept .list > li .img {
    height: 96px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 29px;
  }
  .concept .list > li .txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .concept {
    background: #fff;
    padding-bottom: 36px;
  }
  .concept .headWrap {
    background: url(../images/conceptBgSp.jpg) no-repeat center top/cover;
    padding: 33px 0 68px 32px;
    margin-bottom: 30px;
  }
  .concept .headWrap .secHead {
    font-size: 54px;
    margin-bottom: 41px;
  }
  .concept .headWrap .subTxt {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  .concept .subHead {
    font-size: 2.4rem;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
  }
  .concept .list > li {
    width: 283px;
    padding: 30px 0 24px;
    margin: 0 auto;
  }
  .concept .list > li + li {
    margin-top: 45px;
  }
  .concept .list > li:before {
    top: -17px;
    left: -16px;
    width: 50px;
    height: 45px;
  }
  .concept .list > li .img {
    margin-bottom: 18px;
  }
  .concept .list > li .img img {
    width: 100px;
  }
  .concept .list > li .txt {
    font-size: 1.8rem;
    line-height: 1.7;
    letter-spacing: 0.1em;
  }
}

.stylist {
  position: relative;
}
.stylist .head {
  text-align: center;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.02em;
}
.stylist .list > li .txtWrap {
  letter-spacing: 0.02em;
}
.stylist .list > li .txtWrap .sub {
  display: block;
  font-weight: 500;
  line-height: 1.35;
}
.stylist .list > li .txtWrap .main {
  display: block;
  font-weight: 500;
  line-height: 1.85;
}
.stylist .list > li .txtWrap .txt {
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}
@media print, screen and (min-width: 769px) {
  .stylist {
    background: url(../images/stylistBg.jpg) no-repeat center top/100%, #fff;
    padding: 370px 0 120px;
  }
  .stylist:after {
    content: "";
    display: block;
    position: absolute;
    width: 82px;
    height: 867px;
    background: url(../images/sideTxt.png) no-repeat 0 0/cover;
    top: -73px;
    right: -104px;
  }
  .stylist .head {
    font-size: 2.8rem;
    margin-bottom: 63px;
  }
  .stylist .list {
    display: flex;
    justify-content: center;
    gap: 80px;
  }
  .stylist .list > li {
    width: 253px;
  }
  .stylist .list > li .img {
    margin-bottom: 20px;
  }
  .stylist .list > li .main {
    font-size: 2.7rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .stylist {
    background: #fff;
    padding-bottom: 100px;
  }
  .stylist:before {
    content: "";
    display: block;
    width: 100%;
    height: 159px;
    background: url(../images/stylistBgSp.jpg) no-repeat center top/100%;
    margin-bottom: 25px;
  }
  .stylist .head {
    font-size: 2rem;
    line-height: 1.7;
    letter-spacing: 0.1em;
    margin: 0 36px 47px;
  }
  .stylist .list > li + li {
    margin-top: 45px;
  }
  .stylist .list > li .img {
    margin-bottom: 11px;
    text-align: center;
  }
  .stylist .list > li .img img {
    width: 200px;
  }
  .stylist .list > li .sub {
    font-size: 1.8rem;
    text-align: center;
  }
  .stylist .list > li .main {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
  }
  .stylist .list > li .txt {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-inline: 30px;
  }
}

.priceSec {
  position: relative;
}
.priceSec .list {
  display: flex;
}
.priceSec .list .card {
  background: #fff;
  box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.17);
  text-align: center;
  box-sizing: border-box;
  color: #5D5959;
}
.priceSec .list .card .cardTtl {
  border: 1px solid #5D5959;
  border-radius: 7px;
  font-weight: 600;
  margin: 0 31px 6px;
  font-size: 2rem;
  padding: 8px 0;
}
.priceSec .list .card .subTxt {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  height: 4.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.priceSec .list .card .price {
  font-weight: 700;
  border-bottom-style: solid;
  border-bottom-color: #CFCBEB;
  margin-inline: auto;
  line-height: 1;
  border-bottom-width: 8px;
  display: inline-block;
}
.priceSec .list .card .price .num {
  font-family: "Cormorant Unicase", serif;
  font-weight: 600;
  font-style: normal;
  margin-left: 4px;
  font-size: 3.1rem;
}
.priceSec .list .card .price .sub {
  font-size: 0.9em;
  font-weight: 500;
}
.priceSec .list .card .img {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
.priceSec .list .card .time {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  border: 1px solid #5D5959;
  border-radius: 7px;
  margin-inline: auto;
  box-sizing: border-box;
  width: 174px;
  padding: 2px 0;
}
.priceSec .subTxt {
  font-weight: 500;
  color: #333;
}
@media print, screen and (min-width: 769px) {
  .priceSec {
    background: url(../images/priceBg.jpg) no-repeat center top/cover;
    padding: 92px 0 95px;
  }
  .priceSec:after {
    content: "";
    display: block;
    position: absolute;
    width: 82px;
    height: 867px;
    background: url(../images/sideTxt.png) no-repeat 0 0/cover;
    top: -38px;
    left: -99px;
  }
  .priceSec .m_secHead {
    margin-bottom: 87px;
  }
  .priceSec .list {
    justify-content: center;
    gap: 18px;
    margin-bottom: 17px;
  }
  .priceSec .list .card {
    width: 256px;
    padding: 28px 0;
  }
  .priceSec .list .card .subTxt {
    margin-bottom: 7px;
    font-size: 1.4rem;
  }
  .priceSec .list .card .price {
    margin-bottom: 35px;
  }
  .priceSec .subTxt {
    text-align: center;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .priceSec {
    padding: 40px 0 75px;
    background: url(../images/priceBgSp.jpg) no-repeat center top/cover;
  }
  .priceSec .m_secHead {
    margin-bottom: 25px;
  }
  .priceSec .list {
    gap: 30px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    margin: -20px 0 20px;
  }
  .priceSec .list .card {
    min-width: 257px;
    width: 257px;
    padding: 28px 0;
  }
  .priceSec .list .card:first-child {
    margin-left: 32px;
  }
  .priceSec .list .card:last-child {
    margin-right: calc((100vw - 257px) / 2);
  }
  .priceSec .list .card .subTxt {
    font-size: 1.5rem;
  }
  .priceSec .list .card .price {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .priceSec .list .card .price .num {
    font-size: 3.1rem;
  }
  .priceSec .list .card .time {
    font-size: 1.5rem;
  }
  .priceSec .subTxt {
    text-align: center;
    font-size: 1.8rem;
  }
}

.flow {
  position: relative;
}
.flow .headImg img {
  box-shadow: 4px 4px 24px -3px rgba(0, 0, 0, 0.25);
}
.flow .circleList > li {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333;
  font-weight: 700;
  line-height: 1.3;
  background: #fff;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.flow .circleList > li .age {
  display: block;
}
.flow .circleList > li .sub {
  line-height: 1.7;
}
.flow .circleList > li .list {
  line-height: 1.7;
}
.flow .circleList > li .list + .sub {
  margin-top: 0;
}
.flow .subTxt {
  line-height: 1.7;
  font-weight: 500;
}
@media print, screen and (min-width: 769px) {
  .flow {
    background: url(../images/flowBg.png) no-repeat center top/100%, #fff;
    padding: 120px 0 0;
  }
  .flow .headImg {
    position: absolute;
    top: 50px;
    left: 47px;
  }
  .flow .m_secHead {
    margin-bottom: 42px;
  }
  .flow .circleList {
    display: flex;
    justify-content: center;
  }
  .flow .circleList > li {
    width: 265px;
    height: 329px;
    font-size: 2.4rem;
  }
  .flow .circleList > li + li {
    margin-left: 16px;
  }
  .flow .circleList > li .age {
    font-size: 3rem;
  }
  .flow .circleList > li .age .num {
    font-size: 5rem;
  }
  .flow .circleList > li .main .small {
    font-size: 1.6rem;
  }
  .flow .circleList > li .sub {
    margin-top: 15px;
  }
  .flow .circleList > li .list {
    margin-top: 11px;
  }
  .flow .subTxt {
    text-align: center;
    margin-top: 30px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .flow {
    padding-top: 85px;
    background: url(../images/flowBgSp.png) no-repeat center top/100%, #fff;
  }
  .flow .headImg {
    margin: 0 22px 31px;
  }
  .flow .headImg img {
    width: 100%;
  }
  .flow .m_secHead {
    margin-bottom: 20px;
  }
  .flow .m_barHead {
    margin: 0 30px 30px;
  }
  .flow .circleWrap {
    background: url(../images/circleBg.png) no-repeat center top/100%;
    padding-top: 35px;
    padding-bottom: 54px;
  }
  .flow .circleList {
    margin: 0 30px 35px;
  }
  .flow .circleList > li {
    margin-inline: auto;
    font-size: 2.4rem;
    padding: 28px 0;
    min-height: 169px;
  }
  .flow .circleList > li + li {
    margin-top: 20px;
  }
  .flow .circleList > li .age {
    font-size: 3rem;
  }
  .flow .circleList > li .age .num {
    font-size: 3rem;
  }
  .flow .circleList > li .main {
    font-size: 2.4rem;
  }
  .flow .circleList > li .sub {
    font-size: 2rem;
    margin-top: 5px;
  }
  .flow .circleList > li .list {
    font-size: 2rem;
    margin-top: 5px;
  }
  .flow .subTxt {
    margin-left: 45px;
    margin-right: 30px;
    font-size: 1.8rem;
  }
}

.service {
  position: relative;
}
.service .secHead {
  text-align: center;
  font-weight: 600;
}
.service .secHead .sub {
  display: block;
}
.service .secHead .main {
  display: block;
  color: #726BA0;
}
.service .list {
  counter-reset: serviceList;
}
.service .list > li {
  counter-increment: serviceList;
}
.service .list > li .colHead {
  font-weight: 600;
  letter-spacing: 0.1em;
}
.service .list > li .colHead:before {
  content: "0" counter(serviceList);
  font-family: "Cormorant Unicase", serif;
  font-weight: 600;
  font-style: normal;
  font-weight: 400;
  color: #8B85B0;
  opacity: 50%;
  letter-spacing: 0;
}
.service .list > li .txt {
  font-weight: 600;
  line-height: 2;
}
@media print, screen and (min-width: 769px) {
  .service {
    padding: 165px 0 0;
    background: url(../images/serviceBg.jpg) no-repeat left top 55px/528px, url(../images/serviceBg2.jpg) no-repeat right -230px bottom 432px/674px, #fff;
  }
  .service:after {
    content: "";
    display: block;
    position: absolute;
    width: 82px;
    height: 867px;
    background: url(../images/sideTxt.png) no-repeat 0 0/cover;
    top: 209px;
    right: -104px;
  }
  .service .secHead {
    margin-bottom: 57px;
  }
  .service .secHead .sub {
    font-size: 2.8rem;
    margin-bottom: 5px;
  }
  .service .secHead .main {
    font-size: 5.4rem;
  }
  .service .secHead .main span {
    font-size: 3.7rem;
  }
  .service .list {
    width: 740px;
    margin: 0 auto 125px;
  }
  .service .list > li + li {
    margin-top: 30px;
  }
  .service .list > li .colHead {
    font-size: 2.8rem;
    margin-bottom: -10px;
  }
  .service .list > li .colHead:before {
    font-size: 10rem;
    margin-right: 20px;
  }
  .service .list > li .txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .service {
    background: url(../images/serviceBottomBg.jpg) no-repeat center bottom/100%, #fff;
    overflow: visible;
    padding-bottom: 80vw;
  }
  .service .secHead {
    background: url(../images/serviceHeadBgSp.png) no-repeat center 70px/100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 62px;
    padding-bottom: 121px;
  }
  .service .secHead .sub {
    font-size: 2.2rem;
  }
  .service .secHead .main {
    font-size: 4.7rem;
  }
  .service .secHead .main span {
    font-size: 3.2rem;
  }
  .service .list {
    margin: -100px 25px 0;
  }
  .service .list > li .colHead {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .service .list > li .colHead:before {
    display: block;
    font-size: 7rem;
    margin-bottom: -20px;
  }
  .service .list > li .txt {
    font-size: 1.8rem;
    line-height: 1.7;
  }
}

.voice {
  background: #fff;
}
@media print, screen and (min-width: 769px) {
  .voice {
    padding: 119px 0 0;
  }
  .voice .m_secHead {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 768px) {
  .voice {
    padding-top: 92px;
  }
  .voice .m_secHead {
    margin-bottom: 19px;
  }
}

.policy .bnr {
  display: block;
}
.policy .logo {
  display: block;
  text-align: center;
}
.policy .logoCol {
  background: #FFFBEF;
}
.policy .txtWrap .mainCol {
  text-align: center;
}
.policy .txtWrap .mainCol .colHead {
  font-weight: 600;
}
.policy .txtWrap .mainCol .txt {
  font-weight: 600;
  line-height: 1.7;
}
.policy .txtWrap .subCol:before {
  content: "";
  display: block;
  height: 1px;
  background: #333;
  margin: 0 auto;
}
.policy .txtWrap .subCol .img {
  text-align: center;
}
.policy .txtWrap .subCol .subHead {
  color: #333;
  font-weight: 600;
  text-align: center;
}
.policy .txtWrap .subCol .txt {
  font-weight: 600;
  line-height: 1.7;
}
.policy .txtWrap .subCol .txt + .txt {
  margin-top: 2em;
}
@media print, screen and (min-width: 769px) {
  .policy {
    background: url(../images/policyBg.jpg) no-repeat right 100px/469px, #fff;
    padding: 169px 0 0;
  }
  .policy .m_secHead {
    margin-bottom: 63px;
  }
  .policy .bnr {
    width: 952px;
    text-align: right;
    margin: 0 auto 75px;
  }
  .policy .logoCol {
    padding: 131px 0 109px;
  }
  .policy .logoCol .logo {
    margin-bottom: 56px;
  }
  .policy .txtWrap {
    width: 886px;
    margin: 0 auto;
  }
  .policy .txtWrap .mainCol {
    padding: 37px 0 32px;
    margin-bottom: 68px;
    text-align: left;
  }
  .policy .txtWrap .mainCol .txt {
    font-size: 2rem;
  }
  .policy .txtWrap .mainCol .txt + .txt {
    margin-top: 2em;
  }
  .policy .txtWrap .subCol {
    margin-inline: 10px;
  }
  .policy .txtWrap .subCol:before {
    width: 132px;
    margin-bottom: 33px;
  }
  .policy .txtWrap .subCol .subHead {
    font-size: 2.4rem;
    margin-bottom: 48px;
  }
  .policy .txtWrap .subCol .txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .policy {
    background: #fff;
    padding-top: 56px;
  }
  .policy .bnr {
    margin-bottom: 22px;
  }
  .policy .bnr img {
    width: 100%;
  }
  .policy .bnrTxt {
    text-align: center;
    margin-bottom: 40px;
  }
  .policy .m_secHead {
    margin-bottom: 12px;
  }
  .policy .logoCol {
    padding: 58px 0 70px;
  }
  .policy .logo {
    margin-bottom: 47px;
  }
  .policy .txtWrap .mainCol {
    padding: 0 32px;
    text-align: left;
    margin-bottom: 35px;
  }
  .policy .txtWrap .mainCol .txt {
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .policy .txtWrap .mainCol .txt + .txt {
    margin-top: 2em;
  }
  .policy .txtWrap .subCol {
    padding-top: 50px;
    text-align: center;
    padding: 0 32px;
  }
  .policy .txtWrap .subCol:before {
    width: 72px;
    margin-bottom: 46px;
  }
  .policy .txtWrap .subCol .img {
    margin-bottom: 22px;
  }
  .policy .txtWrap .subCol .img img {
    width: 242px;
  }
  .policy .txtWrap .subCol .subHead {
    font-size: 2rem;
    margin-bottom: 35px;
  }
  .policy .txtWrap .subCol .txt {
    font-size: 1.8rem;
    line-height: 1.7;
    text-align: left;
    line-height: 2;
  }
}

.qa {
  background: #fff;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .qa {
    padding: 94px 0 134px;
    margin-bottom: 120px;
  }
  .qa:after {
    content: "";
    display: block;
    position: absolute;
    width: 82px;
    height: 867px;
    background: url(../images/sideTxt.png) no-repeat 0 0/cover;
    top: 79px;
    left: -99px;
  }
  .qa .m_secHead {
    margin-bottom: 74px;
  }
}
@media screen and (max-width: 768px) {
  .qa {
    padding-top: 60px;
  }
  .qa .m_secHead {
    margin-bottom: 13px;
  }
}

.contact {
  background: #fff;
}
.contact .colList .col {
  border: 1px solid #BEA23E;
  box-sizing: border-box;
}
.contact .colList .col .colInner {
  display: block;
  text-decoration: none;
  background: #F1F0EC;
  box-sizing: border-box;
  text-align: center;
}
.contact .colList .col .colHead {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.025em;
}
.contact .colList .col .tel {
  line-height: 1.7;
  letter-spacing: 0.025em;
}
.contact .colList .col .tel a {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  color: #333;
}
.contact .colList .col .tel a:before {
  content: "";
  display: inline-block;
}
.contact .colList .col .telTxt {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}
.contact .colList .col .telTxt .sub {
  border-left: 1px solid #333;
}
.contact .noticeBox .boxHead {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #333;
}
@media print, screen and (min-width: 769px) {
  .contact {
    padding: 80px 0 85px;
  }
  .contact .m_secHead {
    margin-bottom: 85px;
  }
  .contact .colList {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
  }
  .contact .colList .col {
    width: 382px;
    padding: 25px 27px 22px;
  }
  .contact .colList .col .colInner {
    height: 100%;
    padding: 28px 0;
  }
  .contact .colList .col .colHead {
    font-size: 2.4rem;
  }
  .contact .colList .col .tel {
    font-size: 3.4rem;
    margin-top: 6px;
    margin-bottom: 8px;
  }
  .contact .colList .col .tel a {
    pointer-events: none;
  }
  .contact .colList .col .tel a:before {
    width: 21px;
    height: 25px;
    background: url(../images/telIcon.png) no-repeat 0 0/cover;
    margin-right: 5px;
    vertical-align: -3px;
  }
  .contact .colList .col .telTxt .sub {
    margin-left: 4px;
    padding-left: 11px;
  }
  .contact .colList .col .img {
    margin-top: 2px;
  }
  .contact .colList .col a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .contact .colList .col a:hover {
    opacity: 0.5;
  }
  .contact .noticeBox {
    width: 776px;
    margin: 0 auto;
  }
  .contact .noticeBox .boxHead {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 40px;
    padding-bottom: 62px;
  }
  .contact .m_secHead {
    margin-bottom: 50px;
  }
  .contact .colList {
    margin-bottom: 53px;
  }
  .contact .colList .col {
    width: 316px;
    margin: 0 auto;
    padding: 13px;
  }
  .contact .colList .col + .col {
    margin-top: 24px;
  }
  .contact .colList .col .colInner {
    padding: 24px 0 18px;
  }
  .contact .colList .col .colHead {
    font-size: 1.6rem;
    letter-spacing: 0.25em;
  }
  .contact .colList .col .tel {
    margin-top: 15px;
    font-size: 3rem;
    margin-bottom: 8px;
  }
  .contact .colList .col .tel a:before {
    width: 19px;
    height: 23px;
    background: url(../images/telIconSp.png) no-repeat 0 0/cover;
    margin-right: 7px;
    vertical-align: -3px;
  }
  .contact .colList .col .telTxt .main {
    font-size: 1.2rem;
  }
  .contact .colList .col .telTxt .sub {
    font-size: 1.2rem;
    margin-left: 3px;
    padding-left: 9px;
  }
  .contact .noticeBox {
    margin: 0 30px;
    font-size: 1.2rem;
  }
  .contact .noticeBox .boxHead {
    margin-left: 1em;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=styles.css.map */