@charset "UTF-8";
/* ==========================================================
 html5 elements
========================================================== */
article, aside, figure, figcaption, footer, header, nav, section, main {
  display: block;
}

/* ==========================================================
 reseting
========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media (max-width: 960px) {
  html {
    font-size: 1.3541666667vw;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 1.9230769231vw;
  }
}

body {
  font-family: "Shippori Mincho", "YakuHanMP", YakuHanMP, "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.015em;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  color: #282828;
  overflow-x: hidden;
  margin-bottom: 10rem;
}
@media print, screen and (min-width: 768px) {
  body {
    min-width: 1px !important;
  }
}

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

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  opacity: 60%;
  transition: 0.3s;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  line-height: 1;
  max-width: 100%;
  width: 100%;
}

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

/* ==========================================================
  base style
========================================================== */
:root {
  --primary: #2f4072;
  --secondary: #828caa;
  --tertiary: #684d3f;
  --quaternary: #828caa;
  --headline: #F0E6DC;
  --bg: #f5f5f5;
}

/* ==========================================================
  rwd
========================================================== */
.pc {
  display: block;
}

.tb {
  display: none !important;
}

.sp {
  display: none !important;
}

.pctb {
  display: block !important;
}

.tbsp {
  display: none !important;
}

@media (max-width: 960px) {
  .pc {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .pctb {
    display: block !important;
  }
  .tbsp {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .tb {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pctb {
    display: none !important;
  }
  .tbsp {
    display: block !important;
  }
}
/* ==========================================================
  common style
========================================================== */
#consultation-wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
#consultation-wrapper .EBgaramond {
  font-family: "EB Garamond", serif;
  font-style: italic;
}
#consultation-wrapper .inner {
  position: relative;
  z-index: 0;
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
}
.flex.flex--row {
  flex-direction: row;
}
.flex.flex--row-reverse {
  flex-direction: row-reverse;
}
.flex.flex--col {
  flex-direction: column;
}
.flex.flex--col-reverse {
  flex-direction: column-reverse;
}
.flex.flex--wrap {
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .flex.md_flex--row {
    flex-direction: row;
  }
  .flex.md_flex--row-reverse {
    flex-direction: row-reverse;
  }
  .flex.md_flex--col {
    flex-direction: column;
  }
  .flex.md_flex--col-reverse {
    flex-direction: column-reverse;
  }
  .flex.md_flex--wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .flex.sm_flex--row {
    flex-direction: row;
  }
  .flex.sm_flex--row-reverse {
    flex-direction: row-reverse;
  }
  .flex.sm_flex--col {
    flex-direction: column;
  }
  .flex.sm_flex--col-reverse {
    flex-direction: column-reverse;
  }
  .flex.sm_flex--wrap {
    flex-wrap: wrap;
  }
}

/* ==========================================================
animation
========================================================== */
#consultation-wrapper .anime--fade-in {
  opacity: 0;
  transition-duration: 800ms;
  transition-property: opacity, transform;
  transform: translate(0, 10px);
}
#consultation-wrapper .anime--scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
#consultation-wrapper .main--fade-in {
  animation: fadeIn 1500ms ease 0s;
  -webkit-animation: fadeIn 1500ms ease 0s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* ==========================================================
  contents
========================================================== */
#consultation-wrapper #header {
  position: relative;
  background: #fff;
  height: 60px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 768px) {
  #consultation-wrapper #header {
    height: 50px;
  }
}
#consultation-wrapper #header .header__wrap {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
}
#consultation-wrapper #header .header__wrap .header-logo.header-logo--surpass {
  width: 90px;
  height: auto;
}
@media (max-width: 768px) {
  #consultation-wrapper #header .header__wrap .header-logo.header-logo--surpass {
    width: 60px;
  }
}
#consultation-wrapper #header .header__wrap .header-logo.header-logo--anabuki {
  width: 160px;
  height: auto;
}
@media (max-width: 768px) {
  #consultation-wrapper #header .header__wrap .header-logo.header-logo--anabuki {
    width: 110px;
  }
}
#consultation-wrapper #page-top {
  position: fixed;
  right: 0;
  bottom: 8rem;
}
#consultation-wrapper #page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  background: rgba(40, 40, 40, 0.8);
  transition: opacity 0.3s;
}
#consultation-wrapper #page-top a:hover {
  opacity: 0.8;
}
#consultation-wrapper #page-top a .page-top__in {
  position: relative;
}
#consultation-wrapper #page-top a .page-top__in i {
  display: block;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent #fff #fff transparent;
  position: absolute;
  top: 0;
  right: 45%;
  transform: rotate(-135deg) translateX(-50%);
}
#consultation-wrapper #page-top a .page-top__in span {
  display: block;
  font-size: 11px;
  font-family: "Marcellus", serif;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-top: 20px;
}
#consultation-wrapper .yoyaku_btn_wrap {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-top: 1.5px solid #ccc;
  padding: 1rem;
  width: 100%;
  text-align: center;
}
#consultation-wrapper .yoyaku_btn_wrap .yoyaku_btn {
  width: 100%;
  max-width: 1000px;
  position: relative;
  display: inline-block;
  color: #fff;
  line-height: 5.5rem;
  background-color: var(--primary);
  vertical-align: middle;
  text-decoration: none;
  font-size: 2.5rem;
  padding-bottom: 0.5rem;
}
#consultation-wrapper .yoyaku_btn_wrap .yoyaku_btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.4em; /* arrow size */
  height: 0.4em; /* arrow size */
  border-top: 1px solid #fff; /* thickness, color */
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
#consultation-wrapper h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  padding: 1.5rem 0 2rem;
  color: #fff;
  background-color: var(--secondary);
  text-align: center;
}
#consultation-wrapper figure {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#consultation-wrapper figure figcaption {
  font-size: 12px;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  color: #fff;
}
#consultation-wrapper main {
  display: block;
  width: 100%;
  text-align: center;
  background: url(../img/main_bg_pc.jpg) center bottom no-repeat;
  background-size: cover;
}
@media (max-width: 520px) {
  #consultation-wrapper main {
    background: url(../img/main_bg_sp.jpg) center no-repeat;
    background-size: cover;
  }
}
#consultation-wrapper main .h1_wrap {
  padding: 5rem 0;
  background: url(../img/bg_online.png) center no-repeat;
  background-size: cover;
}
#consultation-wrapper main .h1_wrap .main_ttl_p {
  line-height: 1;
  font-size: 3.5rem;
  letter-spacing: 0.5rem;
  font-family: "Marcellus", serif;
  color: var(--secondary);
}
@media (max-width: 520px) {
  #consultation-wrapper main .h1_wrap .main_ttl_p {
    font-size: 3rem;
  }
}
#consultation-wrapper main .h1_wrap h1 {
  font-size: 4rem;
  font-weight: 400;
  color: var(--primary);
}
@media (max-width: 520px) {
  #consultation-wrapper main .h1_wrap h1 {
    font-size: 3rem;
  }
}
#consultation-wrapper .sec01 {
  text-align: center;
  background-color: var(--bg);
}
#consultation-wrapper .sec01 .inner ul {
  justify-content: space-around;
  padding: 5rem 0;
}
@media (max-width: 520px) {
  #consultation-wrapper .sec01 .inner ul {
    display: block;
  }
}
#consultation-wrapper .sec01 .inner ul li {
  width: 30%;
  padding: 2%;
}
@media (max-width: 960px) {
  #consultation-wrapper .sec01 .inner ul li {
    width: 33%;
  }
}
@media (max-width: 960px) and (max-width: 768px) {
  #consultation-wrapper .sec01 .inner ul li {
    padding: 2%;
  }
}
@media (max-width: 960px) and (max-width: 768px) and (max-width: 520px) {
  #consultation-wrapper .sec01 .inner ul li {
    width: 100%;
  }
}
@media (max-width: 520px) {
  #consultation-wrapper .sec01 .inner ul li .li_inner {
    display: flex;
    align-items: center;
    justify-items: center;
  }
}
#consultation-wrapper .sec01 .inner ul li .li_inner .li_img img {
  width: auto;
  max-height: 100px;
}
@media (max-width: 768px) {
  #consultation-wrapper .sec01 .inner ul li .li_inner .li_img img {
    max-height: 80px;
  }
}
@media (max-width: 520px) {
  #consultation-wrapper .sec01 .inner ul li .li_inner .p_wrap {
    width: 90%;
    text-align: left;
    padding-left: 2rem;
  }
}
#consultation-wrapper .sec01 .inner ul li .li_inner .p_wrap .li_ttl {
  font-size: 1.8rem;
  letter-spacing: 0;
  margin: 1.5rem 0;
  color: var(--primary);
  line-height: 1.5;
}
@media (max-width: 960px) {
  #consultation-wrapper .sec01 .inner ul li .li_inner .p_wrap .li_ttl {
    font-size: 1.5rem;
  }
}
@media (max-width: 960px) and (max-width: 520px) {
  #consultation-wrapper .sec01 .inner ul li .li_inner .p_wrap .li_ttl {
    font-size: 1.8rem;
    margin: 1.5rem 0;
  }
}
#consultation-wrapper .sec01 .inner ul li .li_inner .p_wrap .li_ttl .li_br {
  display: block;
}
@media (max-width: 520px) {
  #consultation-wrapper .sec01 .inner ul li .li_inner .p_wrap .li_ttl .li_br {
    display: none;
  }
}
#consultation-wrapper .sec01 .inner ul li .li_inner .p_wrap .li_p {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 960px) {
  #consultation-wrapper .sec01 .inner ul li .li_inner .p_wrap .li_p {
    font-size: 1.2rem;
  }
}
@media (max-width: 960px) and (max-width: 520px) {
  #consultation-wrapper .sec01 .inner ul li .li_inner .p_wrap .li_p {
    margin-bottom: 1.5rem;
  }
}

.sec02 {
  background: url(../img/bg_sec02.jpg) no-repeat center;
  background-size: cover;
}
.sec02 .inner > ul {
  margin: 5rem auto 0;
  justify-content: space-around;
}
@media (max-width: 520px) {
  .sec02 .inner > ul {
    display: block;
  }
}
.sec02 .inner > ul .sec02_li {
  width: 48%;
  max-width: 520px;
  padding: 4rem 3rem 3rem;
  background: #fff;
}
@media (max-width: 520px) {
  .sec02 .inner > ul .sec02_li {
    width: 100%;
  }
  .sec02 .inner > ul .sec02_li:nth-child(2) {
    margin-top: 3rem;
  }
}
.sec02 .inner > ul .sec02_li .li_inner .p_wrap {
  padding-bottom: 5%;
}
.sec02 .inner > ul .sec02_li .li_inner .p_wrap .li_p {
  text-align: center;
  padding: 0 0 3rem;
}
.sec02 .inner > ul .sec02_li .li_inner .p_wrap .li_point_wrap {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
}
.sec02 .inner > ul .sec02_li .li_inner .p_wrap .li_point_wrap .li_point {
  width: 48%;
  background: var(--tertiary);
  color: #fff;
  line-height: 1;
  padding: 1rem 0 1.4rem;
  margin-bottom: 4%;
}
.sec02 .inner > ul .sec02_li .li_inner .p_wrap .li_point_wrap .li_point:nth-child(2n) {
  margin-left: 4%;
}
.sec02 .inner > ul .sec02_li .li_inner figure figcaption span {
  color: #282828;
}
.sec02 .inner > ul .sec02_li .sec02_img_top {
  text-align: center;
  padding-bottom: 7%;
  line-height: 1;
}
.sec02 .inner > ul .sec02_li .sec02_img_wrap li {
  width: 48%;
}
.sec02 .inner > ul .sec02_li .sec02_img_wrap li:nth-child(1) {
  margin-right: 4%;
}
.sec02 .inner > ul .sec02_li .sec02_img_wrap p {
  text-align: center;
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}
.sec02 .sec02_under {
  font-size: 60%;
  text-align: right;
  padding: 2rem 2rem 5rem;
  line-height: 1.5;
}
.sec03 .inner .movie_wrap {
  max-width: 600px;
  margin: 5rem auto 3rem;
}
.sec03 .inner .sec03_p_wrap {
  margin: 0 auto 5rem;
  justify-content: space-around;
  align-items: center;
  justify-items: center;
}
.sec03 .inner .sec03_p_wrap li {
  width: 30%;
  color: var(--primary);
  border: 1.5px solid var(--secondary);
  padding: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .sec03 .inner .sec03_p_wrap li {
    width: 100%;
  }
  .sec03 .inner .sec03_p_wrap li:nth-child(2) {
    margin: 2rem 0;
  }
}
.sec03 .inner .sec03_p_wrap li p span {
  font-size: 80%;
}
@media (max-width: 960px) {
  .sec03 .inner .sec03_p_wrap li p {
    font-size: 1.2rem;
  }
}
@media (max-width: 960px) and (max-width: 768px) {
  .sec03 .inner .sec03_p_wrap li p {
    font-size: 1.8rem;
  }
}

.sec04 {
  background-color: var(--bg);
  padding-bottom: 5rem;
}
.sec04 .inner .sec04_img {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .sec04 .inner .sec04_img {
    max-width: 350px;
    margin: 5rem auto 0;
  }
}
.sec04 .inner ul {
  justify-content: space-around;
  padding: 2rem 0;
}
@media (max-width: 520px) {
  .sec04 .inner ul {
    display: block;
  }
}
.sec04 .inner ul li {
  width: 50%;
  padding: 2%;
}
@media (max-width: 768px) {
  .sec04 .inner ul li {
    width: 100%;
  }
}
.sec04 .inner ul li .li_inner {
  display: flex;
  align-items: center;
  justify-items: center;
}
.sec04 .inner ul li .li_inner .li_img img {
  width: auto;
  max-height: 100px;
}
@media (max-width: 768px) {
  .sec04 .inner ul li .li_inner .li_img img {
    max-height: 80px;
  }
}
.sec04 .inner ul li .li_inner .p_wrap {
  width: 90%;
  text-align: left;
  padding-left: 2rem;
}
.sec04 .inner ul li .li_inner .p_wrap .li_ttl {
  color: var(--primary);
  font-size: 1.8rem;
  margin: 1rem 0;
}
.sec04 .inner ul li .li_inner .p_wrap .li_p {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 960px) {
  .sec04 .inner ul li .li_inner .p_wrap .li_p {
    font-size: 1.2rem;
  }
}
@media (max-width: 960px) and (max-width: 520px) {
  .sec04 .inner ul li .li_inner .p_wrap .li_p {
    margin-bottom: 1.5rem;
  }
}
.sec04 .inner .sec04_app {
  border: 1px solid var(--primary);
  text-align: center;
  margin: auto;
  padding: 1rem;
}
.sec04 .inner .sec04_app p {
  padding: 1rem 0;
}
.sec04 .inner .sec04_app div a img {
  max-height: 80px;
  width: auto;
  margin: 1rem;
}
@media (max-width: 768px) {
  .sec04 .inner .sec04_app div a img {
    max-height: 60px;
  }
}

.under_text {
  padding: 2rem 0 5rem;
}
.under_text .under_text_ttl {
  text-align: center;
  padding: 1.5rem;
  font-size: 2rem;
}
@media (max-width: 960px) {
  .under_text .under_text_ttl {
    font-size: 1.5rem;
  }
}
.under_text ol {
  font-size: 1.2rem;
}
@media (max-width: 960px) {
  .under_text ol {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */