@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
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, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:hover img {
  opacity: 0.70;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

img {
  max-width: 100%;
}

.sp-only {
  display: none;
}

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

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 999;
}

@media only screen and (max-width: 1023px) {
  .c-header {
    width: 100%;
    height: 50px;
    background: #E7E1EB;
    top: 0;
    left: 0;
    -webkit-transform: none;
    transform: none;
  }
}

.c-header__logo {
  background: #E7E1EB;
  width: 160px;
  height: 160px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  padding: 0 0 20px;
}

@media only screen and (max-width: 1023px) {
  .c-header__logo {
    position: absolute;
    top: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    padding: 0 0 15px;
  }
  .c-header__logo img {
    height: 65px;
  }
}

/* Main menu
------------------------------------------------------------*/
.c-iconmenu {
  cursor: pointer;
  width: 35px;
  height: 14px;
  position: fixed;
  right: 13px;
  top: 50%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
  z-index: 999;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 1023px) {
  .c-iconmenu {
    -webkit-transform: none;
    transform: none;
    top: 17px;
    right: 21px;
  }
}

.c-iconmenu:before, .c-iconmenu::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #62888F;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-iconmenu:after {
  top: 100%;
}

.c-iconmenu.is-active:before {
  -webkit-transform: translate3d(0, 7px, 0) rotate(45deg);
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.c-iconmenu.is-active:after {
  -webkit-transform: translate3d(0, -7px, 0) rotate(-45deg);
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

.g-nav {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  width: calc(100% - 60px);
  padding-left: 60px;
  z-index: 99;
  right: -100%;
}

@media only screen and (max-width: 1023px) {
  .g-nav {
    padding-left: 0;
  }
}

.g-nav.is-open {
  background: #c492bd;
  right: 60px;
}

@media only screen and (max-width: 1023px) {
  .g-nav.is-open {
    right: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .g-nav {
    width: 100%;
  }
}

.g-nav-inner {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  margin: 0 auto;
  max-width: 704px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
}

.g-nav-inner::-webkit-scrollbar {
  display: none;
}

.g-menu-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 100%;
  padding: 60px;
}

@media only screen and (max-width: 767px) {
  .g-menu-wrap {
    padding: 40px 15px;
  }
}

.g-menu-cols {
  margin-top: 72px;
  text-align: center;
  padding-bottom: 60px;
}

@media only screen and (max-width: 1023px) {
  .g-menu-cols {
    margin-top: 35px;
  }
}

.g-menu-cols li {
  color: #fff;
  font-size: 2.5rem;
  margin-top: 10px;
}

@media only screen and (max-width: 1023px) {
  .g-menu-cols li {
    font-size: 1.8rem;
  }
}

.g-menu-info {
  font-size: 2rem;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .g-menu-info {
    font-size: 1.6rem;
  }
}

.scrollable {
  overflow-y: auto;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-ft {
  text-align: center;
  padding-bottom: 150px;
}

@media only screen and (max-width: 767px) {
  .c-ft {
    padding-bottom: 174px;
  }
}

@media only screen and (max-width: 767px) {
  .c-ft .l-container {
    padding: 0;
  }
}

.c-ft .info {
  padding-left: 24px;
}

@media only screen and (max-width: 767px) {
  .c-ft .info {
    padding: 0 15px;
  }
}

.c-ft .c-ttl3 {
  font-family: 'marumin', sans-serif;
  font-weight: 400;
  margin-top: 67px;
  font-size: 2.2rem;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .c-ft .c-ttl3 {
    margin-top: 52px;
  }
}

.c-ft .local {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 9px;
}

.c-ft .c-text1 {
  line-height: 1.5;
  margin-top: 15px;
}

.c-ft .notice {
  color: #578990;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 61px;
  font-family: 'marumin', sans-serif;
}

@media only screen and (max-width: 767px) {
  .c-ft .notice {
    margin-top: 61px;
  }
}

.c-footer-fix {
  position: fixed;
  width: 100%;
  bottom: 22px;
  left: 0;
  color: #578990;
  z-index: 99;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  line-height: 1;
}

@media only screen and (max-width: 1023px) {
  .c-footer-fix {
    bottom: 0;
    background: #E7E1EB;
    display: block;
    text-align: center;
    padding: 7px 0 9px;
  }
}

.c-footer-fix .ja {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  margin-left: 32px;
}

@media only screen and (max-width: 1023px) {
  .c-footer-fix .ja {
    margin: 0 0 4px;
  }
}

.c-footer-fix .ja b {
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 12px;
}

.c-footer-fix .en {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: cormorant-garamond, serif;
  margin-left: 22px;
  position: relative;
  top: 2px;
}

@media only screen and (max-width: 1023px) {
  .c-footer-fix .en {
    display: block;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .c-footer-fix .en {
    top: 4px;
  }
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

body.is-hidden {
  overflow-y: hidden;
}

.l-container {
  max-width: 1088px;
  margin: 0 auto;
}

@media only screen and (max-width: 1280px) {
  .l-container {
    padding: 0 70px;
  }
}

@media only screen and (max-width: 767px) {
  .l-container {
    padding: 0 40px;
  }
}

@media only screen and (max-width: 374px) {
  .l-container {
    padding: 0 15px;
  }
}

.l-wrapper::before {
  content: "";
  width: calc(100vw - 90px);
  height: calc(100% - 90px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: fixed;
  border-radius: 157px;
  box-shadow: 0 0 0 105px #e7e1eb inset;
  z-index: 99;
  padding: 90px;
  pointer-events: none;
}

@media only screen and (max-width: 1023px) {
  .l-wrapper::before {
    content: none;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .l-wrapper::before {
    /* IE10+ specific styles go here */
    border-radius: 20px;
    box-shadow: inset 0px 0px 0px 110px #e7e1eb;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-btn1 {
  width: 100%;
  height: 120px;
  max-width: 500px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .c-btn1 {
    max-width: 334px;
    height: 90px;
  }
}

@media only screen and (max-width: 374px) {
  .c-btn1 {
    height: 80px;
  }
}

.c-btn1 a {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #578990;
  border: 1px solid #578990;
  border-radius: 25px;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  padding: 8px;
}

@media only screen and (max-width: 767px) {
  .c-btn1 a {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 374px) {
  .c-btn1 a {
    font-size: 1.5rem;
  }
}

.c-btn1 a svg {
  margin-left: 11px;
  position: relative;
  top: 6px;
}

@media only screen and (max-width: 767px) {
  .c-btn1 a svg {
    width: 20px;
    height: 20px;
    margin-left: 6px;
    top: 2px;
  }
}

@media only screen and (max-width: 374px) {
  .c-btn1 a svg {
    top: 4px;
  }
}

.c-btn1.pink a {
  background: #C492BD;
  border-color: #C492BD;
}

.c-wrap-btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  padding-right: 12px;
}

@media only screen and (max-width: 1023px) {
  .c-wrap-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .c-wrap-btn {
    display: block;
    padding: 0;
  }
}

.c-wrap-btn .c-btn1 {
  margin: 10px;
}

@media only screen and (max-width: 767px) {
  .c-wrap-btn .c-btn1 {
    margin: 20px auto;
  }
}

.c-wrap-btn .c-btn1 a svg {
  margin: 0 12px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-wrap-btn .c-btn1 a svg {
    margin: 0 6px 0 0;
  }
}

.c-wrap-btn .c-btn1.mail svg {
  top: 4px;
}

@media only screen and (max-width: 767px) {
  .c-wrap-btn .c-btn1.mail svg {
    margin-right: 10px;
  }
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-ttl1 {
  font-size: 4rem;
  font-weight: 400;
  font-family: 'marumin', sans-serif;
  color: #578990;
  position: relative;
  line-height: 1.4;
  /* padding-bottom: 62px; */
}

@media only screen and (max-width: 767px) {
  .c-ttl1 {
    font-size: 2.5rem;
    text-align: center;
    /* padding-bottom: 50px; */
  }
}

/* .c-ttl1:after {
  content: "";
  width: 300px;
  height: 54px;
  background: url(../img/common/ttl1-bg.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 1px;
}

@media only screen and (max-width: 1023px) {
  .c-ttl1:after {
    max-width: 70%;
  }
}

@media only screen and (max-width: 767px) {
  .c-ttl1:after {
    width: 200px;
    height: 36px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
} */

/*
------------------------------------------------------------*/
.c-ttl2 {
  text-align: center;
  color: #578990;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.4;
  font-family: 'marumin', sans-serif;
  position: relative;
  padding-bottom: 36px;/*59px*/
}

@media only screen and (max-width: 767px) {
  .c-ttl2 {
    font-size: 2.5rem;
    padding-bottom: 24px;/*34px*/
  }
}

.c-ttl2 span {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 9px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .c-ttl2 span {
    font-size: 1.6rem;
    margin-top: 4px;
    margin-bottom: 12px;
  }
}

/* .c-ttl2:after {
  content: "";
  width: 419px;
  height: 64px;
  background: url(../img/common/ttl2-bg.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-49.5%);
  transform: translateX(-49.5%);
}

@media only screen and (max-width: 767px) {
  .c-ttl2:after {
    width: 250px;
    height: 38px;
  }
} */

/*
------------------------------------------------------------*/
.c-ttl3 {
  font-size: 2rem;
  font-weight: 700;
  color: #578990;
  text-align: center;
}

.c-ttl3.left {
  text-align: left;
}

.c-ttl4 {
  font-size: 2rem;
  font-weight: 700;
  color: #578990;
  border-bottom: 1px solid #62888F;
  padding-bottom: 15px;
  line-height: 1.4;
  margin-top: 20px;
}

.c-ttl4.lts1 {
  letter-spacing: -0.05rem;
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-text1 {
  font-size: 1.6rem;
  line-height: 2;
}

.c-text1.u-medium {
  font-weight: 500;
}

.c-text2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: #578990;
}

@media only screen and (max-width: 767px) {
  .c-text2 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-imgtext1 {
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .c-imgtext1 {
    display: block;
  }
}

.c-imgtext1 .thumb {
  width: 46.9%;
}

@media only screen and (max-width: 767px) {
  .c-imgtext1 .thumb {
    width: 100%;
    position: relative;
  }
  .c-imgtext1 .thumb::before {
    content: "";
    display: block;
    padding-top: 72.466%;
  }
  .c-imgtext1 .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.c-imgtext1 .info {
  -webkit-box-flex: 1;
  flex: 1;
  padding-left: 49px;
}

@media only screen and (max-width: 767px) {
  .c-imgtext1 .info {
    padding: 42px 40px 36px;
  }
}

@media only screen and (max-width: 374px) {
  .c-imgtext1 .info {
    padding: 30px 15px;
  }
}

.c-imgtext1 .info .c-ttl1 {
  margin-top: -5px;
  margin-bottom: 36px;
}

@media only screen and (max-width: 767px) {
  .c-imgtext1 .info .c-ttl1 {
    margin-bottom: 19px;
  }
}

.c-imgtext1 .info .c-text1 {
  margin-top: 14px;
}

.c-imgtext1 .info .c-ttl3 {
  text-align: left;
  margin-top: -10px;
}

.c-imgtext1--rever {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-flow: row-reverse;
}

.c-imgtext1--rever .info {
  padding: 0 49px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-imgtext1--rever .info {
    padding: 42px 40px 36px;
  }
}

@media only screen and (max-width: 374px) {
  .c-imgtext1--rever .info {
    padding: 30px 15px;
  }
}

.c-imgtext1--rever .info .c-ttl1 {
  /* padding-bottom: 66px; */
}

@media only screen and (max-width: 767px) {
  .c-imgtext1--rever .info .c-ttl1 {
    /* padding-bottom: 50px; */
  }
}

.c-imgtext2 {
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .c-imgtext2 {
    display: block;
  }
}

.c-imgtext2 .img {
  width: 30.8%;
  color: #578990;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-imgtext2 .img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

.c-imgtext2 .img .pro {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .c-imgtext2 .img .pro {
    margin-top: 23px;
  }
}

.c-imgtext2 .img .name {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 4px;
}

.c-imgtext2 .img .name .ja {
  font-family: 'Noto Serif JP', serif;
}

.c-imgtext2 .img .name .en {
  font-size: 1.8rem;
  font-family: cormorant-garamond, serif;
  line-height: 1.2;
  display: block;
  margin-top: 11px;
}

/*--追加--*/
.c-imgtext2 .img .name-en .en {
  font-size: 2.4rem;
  font-weight: 700;
}
/*------*/

.c-imgtext2 .info {
  padding-left: 41px;
  padding-top: 6px;
  -webkit-box-flex: 1;
  flex: 1;
}

@media only screen and (max-width: 767px) {
  .c-imgtext2 .info {
    padding: 26px 0;
  }
}

.c-imgtext2 .info .c-text1 {
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  .c-imgtext2 .info .c-text1 {
    padding-right: 14px;
  }
}

@media only screen and (max-width: 374px) {
  .c-imgtext2 .info .c-text1 {
    padding-right: 0;
  }
}

.c-imgtext2 .info .c-text1 + .c-ttl4 {
  margin-top: 37px;
}

@media only screen and (max-width: 767px) {
  .c-imgtext2 .info .c-text1 + .c-ttl4 {
    margin-top: 5px;
  }
}

/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-list1 {
  display: -webkit-box;
  display: flex;
  margin-right: -40px;
}

@media only screen and (max-width: 767px) {
  .c-list1 {
    display: block;
    margin-right: 0;
  }
}

.c-list1 li {
  width: calc((100% / 3) - 40px);
  margin-right: 40px;
}

@media only screen and (max-width: 767px) {
  .c-list1 li {
    width: 100%;
    margin: 31px 0 0;
  }
  .c-list1 li:first-child {
    margin: 0;
  }
}

.c-list1 li .c-text1 {
  margin-top: 10px;
}

/*
------------------------------------------------------------*/
.c-list2 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -68px;
}

@media only screen and (max-width: 767px) {
  .c-list2 {
    display: block;
    margin-right: 0;
  }
}

.c-list2 li {
  margin-top: 47px;
  margin-right: 68px;
  width: calc(50% - 68px);
}

@media only screen and (max-width: 767px) {
  .c-list2 li {
    width: 100%;
    margin: 37px 0 0;
  }
  .c-list2 li:first-of-type {
    width: 100%;
    margin: 0;
  }
}

.c-list2 li .c-text1 {
  margin-top: 15px;
}

/*
------------------------------------------------------------*/
.c-list3 li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 29px;
}

@media only screen and (max-width: 767px) {
  .c-list3 li {
    padding-right: 5px;
  }
}

.c-list3 li::before {
  content: "●";
  color: #578990;
  position: absolute;
  top: -1px;
  left: 5px;
}

.c-list3--fz1 li {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 25px;
}

@media only screen and (max-width: 767px) {
  .c-list3--fz1 li {
    font-size: 1.6rem;
  }
}

.c-list3--fz1 li::before {
  left: 0;
}

.c-list3--fz1 li span {
  display: block;
  color: #C492BD;
  margin-top: 11px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .c-list3--fz1 li span {
    font-size: 1.4rem;
    margin-top: 5px;
  }
}

/*
------------------------------------------------------------*/
.c-list4 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .c-list4 {
    display: block;
  }
}

.c-list4 .col {
  width: calc((100% - 128px) / 2);
  background: #FCFAEF;
  padding: 40px 40px 19px;
  min-height: 297px;
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .c-list4 .col {
    padding: 20px 20px 10px;
  }
}

@media only screen and (max-width: 767px) {
  .c-list4 .col {
    width: 100%;
  }
}

.c-list4 .col::before, .c-list4 .col:after {
  content: "";
  width: 40px;
  height: 6px;
  background: #62888F;
  position: absolute;
  right: -83px;
  top: 53%;
}

@media only screen and (max-width: 767px) {
  .c-list4 .col::before, .c-list4 .col:after {
    width: 20px;
    height: 4px;
    right: auto;
    top: auto;
    left: 50%;
    bottom: -20px;
  }
}

.c-list4 .col::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .c-list4 .col::before {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.c-list4 .col::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

@media only screen and (max-width: 767px) {
  .c-list4 .col::after {
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
  }
}

.c-list4 .col:nth-child(2) {
  background: #F7F5F8;
  padding-left: 50px;
  padding-right: 30px;
}

@media only screen and (max-width: 1023px) {
  .c-list4 .col:nth-child(2) {
    padding: 20px 20px 10px;
  }
}

@media only screen and (max-width: 767px) {
  .c-list4 .col:nth-child(2) {
    width: 100%;
    margin-top: 40px;
  }
}

.c-list4 .col:nth-child(2)::before, .c-list4 .col:nth-child(2)::after {
  content: none;
}

.c-list4 .col .c-text1 {
  margin-top: 15px;
}

.c-list4 .col .c-list3 {
  margin-top: 22px;
}

.c-list4 .col .c-list3 li {
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .c-list4 .col .c-list3 li {
    margin-bottom: 12px;
  }
}

/*--追加--*/
.c-list5 {
  display: flex;
  flex-wrap: wrap;
}
.c-list5 li {
  width: 50%;
  font-size: 2rem;
  font-weight: 500;
  color: #578990;
  position: relative;
  padding-left: 1.5em;
}
.c-list5 li::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.75rem;
  left: 1rem;
  width: 8px;
  height: 8px;
  background-color: #578990;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .c-list5 {
    display: block;
  }
  .c-list5 li {
    width: 100%;
    font-size: 1.8rem;
  }
  .c-list5 li::before {
    top: 1.5rem;
    width: 6px;
    height: 6px;
    border-radius: 3px;
  }
}
.c-list6 {
  display: block;
}
.c-list6 li {
  font-size: 1.5rem;
  width: 100%;
  font-weight: 500;
  color: #578990;
  position: relative;
  padding-left: 1em;
}
.c-list6 li::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #578990;
  border-radius: 3px;
}
@media only screen and (max-width: 767px) {
  .c-list6 li::before {
    width: 5px;
    height: 5px;
  }
}
/*------*/

/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
@media only screen and (max-width: 1023px) {
  .c-tbl1 {
    overflow-x: auto;
  }
}

.c-tbl1 table {
  width: 100%;
  border-collapse: collapse;
}

@media only screen and (max-width: 1023px) {
  .c-tbl1 table {
    width: 1088px;
  }
}

@media only screen and (max-width: 1023px) {
  .c-tbl1 table {
    width: 840px;
  }
}

.c-tbl1 table th,
.c-tbl1 table td {
  border: 1px solid #D5D5D5;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 15px 0;
  vertical-align: middle;
}

@media only screen and (max-width: 1023px) {
  .c-tbl1 table th,
  .c-tbl1 table td {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .c-tbl1 table th,
  .c-tbl1 table td {
    font-size: 1.6rem;
    padding: 19px 0 16px;
  }
}

.c-tbl1 table th span,
.c-tbl1 table td span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-tbl1 table th small,
.c-tbl1 table td small {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
  display: block;
  margin-top: 18px;
  position: relative;
  top: -4px;
}

@media only screen and (max-width: 767px) {
  .c-tbl1 table th small,
  .c-tbl1 table td small {
    top: -3px;
  }
}


.c-tbl1 th {
  color: #578990;
  background: #F2F8F3;
}

.c-tbl1 th:nth-child(1) {
  width: 30.8%;
}

@media only screen and (max-width: 767px) {
  .c-tbl1 th:nth-child(1) {
    width: 22.7%;
  }
}

.c-tbl1 th:nth-child(2) {
  width: 25%;
}

@media only screen and (max-width: 767px) {
  .c-tbl1 th:nth-child(2) {
    width: 20%;
  }
}

.c-tbl1 td {
  height: 130px;
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  .c-tbl1 td {
    line-height: 1.1;
    font-size: 2rem;
  }
}

.c-tbl1.en th {
  width: calc(100% / 3);
} 

/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
other
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-mv {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: url(../img/counseling/mv1.png) no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 0 0 19px;
  overflow: hidden;
}

@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .c-mv {
    min-height: 768px;
  }
}

@media only screen and (max-width: 1023px) {
  .c-mv {
    background-size: 700px 394px;
    background-position: bottom center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column;
    padding: 28px 0 0;
  }
}

.c-mv:before, .c-mv:after {
  content: "";
  width: 450px;
  height: 342px;
  top: 0;
}

@media only screen and (max-width: 1280px) {
  .c-mv:before, .c-mv:after {
    top: -6vw;
  }
}

@media only screen and (max-width: 1023px) {
  .c-mv:before, .c-mv:after {
    width: 300px;
    height: 228px;
    top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .c-mv:before, .c-mv:after {
    top: -6vw;
  }
}

@media only screen and (max-width: 413px) {
  .c-mv:before, .c-mv:after {
    top: -12vw;
  }
}

@media only screen and (max-width: 374px) {
  .c-mv:before, .c-mv:after {
    top: -16vw;
  }
}

.c-mv:before {
  background: url(../img/counseling/grape2.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
}

@media only screen and (max-width: 1023px) {
  .c-mv:before {
    left: -134px;
  }
}

.c-mv:after {
  background: url(../img/counseling/grape1.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}

@media only screen and (max-width: 1023px) {
  .c-mv:after {
    right: -31vw;
    right: -129px;
  }
}

.c-mv__title {
  color: #578990;
  text-align: center;
  position: relative;
  z-index: 1;
}

.c-mv__title .sup {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.c-mv__title .sup b {
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 12px;
  position: relative;
  top: 1px;
}

.c-mv__title .title {
  font-family: cormorant-garamond, serif;
  font-size: 6.1rem;
  line-height: 1;
  font-weight: 500;
  margin-top: 19px;
}

.c-mv__title .title span {
  font-size: 4rem;
  display: block;
  margin-bottom: 12px;
}

.c-mv__title .subtitle {
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 11px;
}

.c-mv .c-ttl-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  position: absolute;
  top: 125px;
  right: 127px;
  z-index: 1;
}

@media only screen and (max-width: 1023px) {
  .c-mv .c-ttl-label.pc-only {
    display: none;
  }
}

.c-mv .c-ttl-label.tab-only {
  display: none;
}

@media only screen and (max-width: 1023px) {
  .c-mv .c-ttl-label.tab-only {
    display: block;
    position: static;
    text-align: center;
    margin-top: 15px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column;
    -webkit-box-align: center;
    align-items: center;
  }
}

.c-mv .c-ttl-label p {
  margin-left: 15px;
}

@media only screen and (max-width: 1023px) {
  .c-mv .c-ttl-label p {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.7;
    font-weight: 400;
    color: #fff;
    background: rgba(87, 137, 144, 0.9);
    font-family: 'marumin', sans-serif;
    display: inline-block;
    text-align: center;
    padding: 3px 12px 2px;
    margin-top: 10px;
  }
}

.c-mv--subpage {
  background: #C492BD;
  height: 400px !important;
  min-height: auto;
  padding: 90px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-mv--subpage {
    height: 80vw !important;
    padding: 120px 16px 50px;
  }
}

.c-mv--subpage .c-mv__ttl {
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  font-family: 'marumin', sans-serif;
}

@media only screen and (max-width: 767px) {
  .c-mv--subpage .c-mv__ttl {
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
  }
}

@media only screen and (max-width: 374px) {
  .c-mv--subpage .c-mv__ttl {
    font-size: 2.2rem;
  }
}

.c-fix-btn {
  position: fixed;
  bottom: 72px;
  left: 72px;
  box-sizing: border-box;
  border-radius: 50%;
  display: block;
  width: 80px;
  height: 80px;
  background: #C492BD;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-flow: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  .c-fix-btn {
    bottom: 61px;
    left: 10px;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-fix-btn,.c-fix-btn-01,.c-fix-btn-02 {
    /* IE10+ specific styles go here */
    bottom: 90px;
    left: 110px;
  }
}

.c-fix-btn span {
  display: block;
  margin-top: -1px;
}

/*--追加--*/
.c-fix-btn-01 {
  position: fixed;
  bottom: 160px;
}
.c-fix-btn-02 {
  position: fixed;
  bottom: 72px;
  background: #578990;
}
@media only screen and (max-width: 767px) {
  .c-fix-btn-01 {
    position: fixed;
    bottom: 61px;
  }
  .c-fix-btn-02 {
    position: fixed;
    bottom: 61px;
    left: 98px;
    background: #578990;
  }
}
.c-imgtext1 .info .c-text1.n-m-10 {
  margin-top: 0;
}
/*-------*/

.c-box1 {
  border: 1px solid #62888F;
  padding: 44px 44px 39px;
}

@media only screen and (max-width: 767px) {
  .c-box1 {
    padding: 24px 14px 26px;
  }
}

.c-box1 ul {
  margin-top: 21px;
}

@media only screen and (max-width: 767px) {
  .c-box1 ul {
    margin-top: 10px;
  }
}

.scroll-hint-icon {
  width: 100px;
  height: 98px;
  border-radius: 24px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}

.scroll-hint-icon:after {
  top: 18px;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-top-windows {
  padding: 120px 0 100px;
}

@media only screen and (max-width: 767px) {
  .p-top-windows {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-windows .l-container {
    padding: 0;
  }
}

.p-top-place {
  background: #F0F6F7;
  padding: 100px 0 96px;
}

@media only screen and (max-width: 767px) {
  .p-top-place {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-place .l-container {
    padding: 0;
  }
}

.p-top-percent {
  padding: 100px 0;
}

@media only screen and (max-width: 767px) {
  .p-top-percent {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-percent .l-container {
    padding: 0;
  }
}

.p-top-expert {
  background: #FCFAEF;
  padding: 115px 0 100px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .p-top-expert {
    padding: 37px 0 40px;
  }
}

/* .p-top-expert .c-list1 {
  margin-top: 35px;
} */

.p-top-counseling {
  padding: 96px 0 27px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .p-top-counseling {
    padding: 35px 0 4px;
  }
}

.p-top-counseling .c-list2 {
  margin-top: -6px;
}

@media only screen and (max-width: 767px) {
  .p-top-counseling .c-list2 {
    margin-top: -14px;
  }
}

/*--追加--*/
.p-top-counseling .c-box1 {
  padding: 15px;
  margin-top: 15px;
  background-color: #F2F8F3;
  border: none;
}
.p-top-counseling .c-box1 .green {
  color: #578990;
  font-weight: 500;
  letter-spacing: -0.05rem;
}
.p-top-counseling.en .c-text1 {
  text-align: center;
    margin: 37px 0 35px;
}
.link-box {
  margin-top: 5px;
}
/*----*/

.p-top-price {
  padding: 60px 0 100px;
}

@media only screen and (max-width: 767px) {
  .p-top-price {
    padding: 50px 0 60px;
  }
}

.p-top-price .c-text1 {
  text-align: center;
  margin: 37px 0 35px;
}

.p-top-price .c-text2 {
  margin-top: 63px;
}

@media only screen and (max-width: 767px) {
  .p-top-price .c-text2 {
    margin-top: 41px;
  }
}

.p-top-price .c-btn1 {
  margin-top: 24px;
}

@media only screen and (max-width: 767px) {
  .p-top-price .c-tbl1 {
    margin-top: 0;/*27px*/
  }
}

.p-top-about {
  background: #FCFAEF;
  padding: 95px 0 82px;
}

@media only screen and (max-width: 767px) {
  .p-top-about {
    padding: 36px 0 20px;
  }
}

.p-top-about .c-imgtext2 {
  margin-top: 39px;
}

@media only screen and (max-width: 767px) {
  .p-top-about .c-imgtext2 {
    margin-top: 0;/*27px*/
  }
}

.p-top-about .c-imgtext2 .img {
  margin-top: 5px;
}

.p-top-app {
  padding: 90px 0 49px;
}

@media only screen and (max-width: 767px) {
  .p-top-app {
    padding: 37px 0 30px;
  }
}

.p-top-app .c-box1 {
  margin-top: 48px;
}

@media only screen and (max-width: 767px) {
  .p-top-app .c-box1 {
    margin-top: 0;/*30px*/
  }
}

/*--追加--*/
.p-top-app.en .c-box1 {
  text-align: center;
  margin-top: 0;
  border: none;
  padding: 0;
}
.p-top-app.en .c-box1 .c-text1 {
  line-height: 1.5;
}
.p-top-app.en .c-text2 {
  margin-top: 16px;
}
.p-top-app.en .btn-a .span {
  display: block;
}
.p-top-app.en .btn-a {
  display: block;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: bold;
  padding: 20px 20px;
  border-radius: 25px;
  color: #fff;
  line-height: 1.5;
  max-width: 350px;
  background-color: #C492BD;
}
.p-top-app.en .btn-a span{
  display: block;
}
@media only screen and (max-width: 767px) {
  .p-top-app.en .btn-a {
    font-size: 1.8rem;
  }
}
/*-------*/

.p-top-app .c-wrap-btn {
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .p-top-app .c-wrap-btn {
    margin-top: 40px;
  }
}

.p-top-app-en .c-box1 {
  text-align: center;
}

/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-plan__main {
  padding: 94px 0 0;
}

@media only screen and (max-width: 767px) {
  .p-plan__main {
    padding: 50px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-plan__main .l-container {
    padding: 0;
  }
}

.p-plan__concept .c-imgtext1 {
  margin-top: 90px;
}

@media only screen and (max-width: 767px) {
  .p-plan__concept .c-imgtext1 {
    margin-top: 40px;
  }
}

.p-plan__concept .c-imgtext1:nth-child(3) {
  margin-top: 103px;
}

@media only screen and (max-width: 767px) {
  .p-plan__concept .c-imgtext1:nth-child(3) {
    margin-top: 40px;
  }
}

.p-plan__concept .c-imgtext1:last-child {
  margin-top: 99px;
}

@media only screen and (max-width: 767px) {
  .p-plan__concept .c-imgtext1:last-child {
    margin-top: 40px;
  }
}

.p-plan__about {
  padding: 104px 0 14px;
}

@media only screen and (max-width: 767px) {
  .p-plan__about {
    padding: 50px 20px 14px;
  }
}

.p-plan__about .c-ttl2 {
  margin-bottom: 60px;
}

.p-plan__about .box {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-top: 1px solid #62888F;
  border-bottom: 1px solid #62888F;
  padding: 27px 0 28px;
  margin-top: 58px;
}

@media only screen and (max-width: 767px) {
  .p-plan__about .box {
    font-size: 1.6rem;
    padding: 15px 15px 16px;
    margin-top: 25px;
  }
}

.p-plan__about .c-list4 {
  margin-top: 41px;
}

@media only screen and (max-width: 767px) {
  .p-plan__about .c-list4 {
    margin-top: 20px;
  }
}

.p-plan__about .c-list4.mt1 {
  margin-top: 43px;
  margin-bottom: 63px;
}

@media only screen and (max-width: 767px) {
  .p-plan__about .c-list4.mt1 {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.p-plan__about > .c-list3 {
  margin-top: 35px;
}

.p-plan__about > .c-list3 li {
  margin-bottom: 17px;
}

.p-plan__about > .c-ttl3 {
  margin-top: 43px;
}

@media only screen and (max-width: 767px) {
  .p-plan__about > .c-ttl3 {
    margin-top: 20px;
  }
}

.p-plan__about > .c-ttl3 + .c-list3 {
  margin-top: 17px;
}

.p-plan__about > .c-ttl3 + .c-list3 li {
  margin-bottom: 32px;
}

@media only screen and (max-width: 767px) {
  .p-plan__about > .c-ttl3 + .c-list3 li {
    margin-bottom: 16px;
  }
}

.p-plan__about > .c-ttl3 + .c-list3 li:last-child {
  margin-bottom: 0;
}


/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
@font-face {
  font-family: 'marumin';
  src: url("../../assets/fonts/MaruminOld-90pv-RKSJ-H.otf");
  src: url("../../assets/fonts/MaruminOld-90pv-RKSJ-H.otf") format("opentype"), url("../../assets/fonts/MaruminOld-90pv-RKSJ-H.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}



.p-book{
  text-decoration: underline;
}

.c-book-li{
  font-size: 0.95em;
}

.c-p-s{
background-color: #eee;
padding: 3px 10px;}

.c-p-u{
  margin-bottom: 20px;
}

.c-p-u li{
  text-indent: -15px;
  margin-left: 15px;
}

.ft-sns{
  width: 310px;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.ft-sns a{
  margin: 0 15px;
}

.ft-sns a img{
  width: 35px;
  height: auto;
}

.info-link{
  margin-top: 50px;
  margin-bottom: 50px;
}

 .small {
  font-size: 1.8rem;
}




.info-link .c-btn1{
  margin: 0;
}
.ex-link {
  color: #578990;
}











