@charset "UTF-8";

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span, small, em, time, i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

a:-webkit-any-link:focus-visible {
  outline-offset: 1px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.7;
}

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

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, select {
  vertical-align: middle;
}

abbr[title], dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th {
  font-weight: normal;
  text-align: left;
}

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

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

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

img {
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #333;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "秀英丸ゴシック B";
  letter-spacing: 0.1em;
}

th, dt {
  font-family: "秀英丸ゴシック B";
}

a[href^=tel] {
  cursor: default;
}

.hidden {
  overflow: hidden;
}

:target {
  scroll-margin-top: 140px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}

html {
  scroll-behavior: smooth;
}

.container, .footer__inner, .breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.wide, .wide.footer__inner, .breadcrumb ul.wide {
  max-width: 1400px;
}

.container.narrow, .narrow.footer__inner, .breadcrumb ul.narrow {
  max-width: 800px;
}

@media (max-width: 800px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }

  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }

  .container, .footer__inner, .breadcrumb ul {
    margin: 0 auto;
    max-width: 90%;
    width: 90%;
  }
}

/*------------
Header
--------------*/
.header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  transition: 0.3s ease;
}

.header-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 45px 0 35px;
  width: 100%;
  height: 130px;
}

.header .h-logo {
  width: 26.4vw;
  max-width: 454px;
}

.header .h-logo a {
  display: block;
}

.header .h-logo img {
  width: 100%;
}

.header .h-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.header .h-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 12px;
}

.header .btn-cta {
  display: grid;
  place-content: center;
  border-radius: 50px;
  font-size: 16px;
  font-family: "秀英丸ゴシック B";
  background: #9A76AC;
  color: #fff;
  width: 230px;
  height: 57px;
  margin-left: 20px;
  transition: 0.3s ease;
}

.header .btn-cta span {
  position: relative;
  padding-left: 30px;
}

.header .btn-cta span::before {
  content: "";
  position: absolute;
  background: url(../images/share/icon_mail_w.svg) no-repeat center/contain;
  width: 19px;
  height: 17.3px;
  left: 0;
  top: 8px;
}

.header .btn-cta:hover {
  opacity: 0.6;
}

.header.is-fixed {
  background: rgba(255, 255, 255, 0.8);
}

.humberger {
  display: block;
  width: 50px;
  height: 50px;
  background: #9A76AC;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  top: 0;
  right: 0;
  z-index: 9999;
}

.humberger span {
  background: #fff;
  position: absolute;
  width: 25px;
  height: 1px;
  transition: 0.4s;
  left: 50%;
  transform: translate(-50%, -50%);
}

.humberger span:nth-of-type(1) {
  top: 35%;
}

.humberger span:nth-of-type(2) {
  top: 50%;
}

.humberger span:nth-of-type(3) {
  top: 65%;
}

.humberger.is-open span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.humberger.is-open span:nth-of-type(2) {
  display: none;
}

.humberger.is-open span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 800px) {
  .header {
    position: relative;
  }

  .header-inr {
    justify-content: center;
    padding: 10px;
    height: 70px;
  }

  .header .h-logo {
    width: 100%;
    max-width: 250px;
  }

  .header .h-right {
    display: none;
  }

  .header.is-fixed {
    background: rgba(255, 255, 255, 0.8);
  }
}

/*------------
G-navi
--------------*/
.pc-navi-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.pc-navi .item {
  position: relative;
  font-family: "秀英丸ゴシック B";
  line-height: 1.4;
  padding-bottom: 20px;
  font-size: 17px;
}

.pc-navi .item .item-link {
  display: block;
}

.pc-navi .item .item-link:hover {
  color: #9A76AC;
}

.pc-navi .item:not(:last-child) {
  margin-right: 35px;
}

.pc-navi .item:not(:last-child)::before {
  content: "";
  position: absolute;
  background: #CCBAD5;
  width: 7px;
  height: 7px;
  border-radius: 4px;
  right: -21.5px;
  top: 9.5px;
}

.pc-dropdown {
  position: relative;
}

.pc-dropdown .pc-navi-child {
  background-color: #FEF8FF;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  text-align: left;
  padding: 20px 30px;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  width: -moz-fit-content;
  width: fit-content;
  transform: translate(-50%, -10px);
  transition: 0.4s ease-in-out;
}

.pc-dropdown .pc-navi-child li {
  font-family: "秀英丸ゴシック B";
  font-size: 17px;
  line-height: 1.6;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding-left: 12px;
}

.pc-dropdown .pc-navi-child li::before {
  content: "";
  position: absolute;
  background: url(../images/share/navi-arrow.svg) no-repeat center/contain;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
}

.pc-dropdown .pc-navi-child li:not(:last-child) {
  margin-bottom: 10px;
}

.pc-dropdown .pc-navi-child li:hover {
  text-decoration: underline;
}

.pc-dropdown:hover .pc-navi-child {
  pointer-events: auto;
  transform: translate(-50%, 0);
  opacity: 1;
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .pc-navi {
    display: none;
  }

  :root {
    --navi-background: #9A76AC;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
    --sp-btn-color: #9A76AC;
  }

  .sp-navi {
    display: block;
    font-family: "秀英丸ゴシック B";
    /* ボタン類 */
    /* コンテンツ */
  }

  .sp-navi .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }

  .sp-navi .sp-navi-btns>* {
    flex: 1;
    position: relative;
  }

  .sp-navi .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 7px 0;
  }

  .sp-navi .sp-navi-btns .item .img {
    display: block;
  }

  .sp-navi .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 5px;
    stroke: var(--svg-stroke);
  }

  .sp-navi .sp-navi-btns .item .ttl {
    display: block;
  }

  .sp-navi .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 7px;
  }

  .sp-navi .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  .sp-navi .sp-menu-btn span:not(.ttl) {
    background: var(--menu-btn);
    position: absolute;
    left: 50%;
    width: 12px;
    height: 1px;
    transform: translateX(-50%);
    transition: 0.4s ease;
  }

  .sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 12px;
  }

  .sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 16.5px;
  }

  .sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(3) {
    top: 21px;
  }

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 4.5px) rotate(-45deg);
  }

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(3) {
    transform: translate(-50%, -4.5px) rotate(45deg);
  }

  .sp-navi .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }

  .sp-navi .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }

  .sp-navi .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    margin: 0 0 30px;
  }

  .sp-navi .sp-navi-list>li {
    border-bottom: 1px solid #d6d6d6;
  }

  .sp-navi .sp-navi-list>li>a {
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }

  .sp-navi .sp-navi-list>li.sp-dropdown {
    position: relative;
  }

  .sp-navi .sp-navi-list>li.sp-dropdown::before, .sp-navi .sp-navi-list>li.sp-dropdown::after {
    content: "";
    background-color: #9A76AC;
    position: absolute;
    transition: 0.4s ease;
  }

  .sp-navi .sp-navi-list>li.sp-dropdown::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }

  .sp-navi .sp-navi-list>li.sp-dropdown::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }

  .sp-navi .sp-navi-list>li.sp-dropdown.is-on::before {
    transform: rotate(90deg);
  }

  .sp-navi .sp-navi-list>li.sp-dropdown>a {
    padding: 15px 0;
    width: 85%;
  }

  .sp-navi .sp-navi-list .child {
    padding: 0 0 15px;
  }

  .sp-navi .sp-navi-list .child>ul>li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }

  .sp-navi .sp-navi-list .child>ul>li::before {
    content: "-";
    color: #9A76AC;
    position: absolute;
    left: 0;
    top: 0;
  }

  .sp-navi .sp-navi-list .child>ul>li>a {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
}

.hero-wrapper {
  position: relative;
  margin-top: 130px;
  display: grid;
  grid-template-columns: 30% 1fr;
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  background: url(../images/hero-deco.png) no-repeat center/contain;
  width: 486px;
  height: 274px;
  left: -48px;
  bottom: -45px;
  z-index: 1;
}

.hero-img {
  max-height: 900px;
  height: 100%;
}

.hero-img img {
  width: 100%;
  height: 900px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0 0 0 311px;
}

.hero-desc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ttl {
  writing-mode: vertical-rl;
  font-family: "秀英丸ゴシック B";
  font-size: 40px;
  text-align: center;
  letter-spacing: 0.25em;
}

.hero-ttl span {
  color: #9A76AC;
}

@media (max-width: 800px) {
  .hero {
    margin-bottom: 30px;
  }

  .hero-wrapper {
    margin-top: 0;
  }

  .hero-wrapper::before {
    background: url(../images/hero-deco_sp.png) no-repeat center/contain;
    width: 173px;
    height: 89px;
    left: -48px;
    bottom: -15px;
  }

  .hero-img {
    max-height: 330px;
  }

  .hero-img img {
    height: 330px;
    border-radius: 0 0 0 100px;
  }

  .hero-ttl {
    font-size: 24px;
    letter-spacing: 0.2em;
  }

  .hero-ttl span {
    font-size: 23px;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.t-ttl {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 110px;
  position: relative;
}

.t-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/share/ttl_deco.png) no-repeat center/contain;
  width: 124px;
  height: 124px;
}

.t-ttl .jp {
  font-family: "秀英丸ゴシック B";
  font-size: 32px;
  line-height: 1.7;
}

.t-ttl .en {
  font-family: "秀英丸ゴシック L";
  color: #F3ABBB;
  font-size: 18px;
  display: block;
  line-height: 1;
  margin-top: 10px;
}

@media (max-width: 800px) {
  .t-ttl {
    margin-bottom: 30px;
    padding-top: 60px;
  }

  .t-ttl::before {
    width: 60px;
    height: 60px;
  }

  .t-ttl .jp {
    font-size: 24px;
    line-height: 1.4;
  }

  .t-ttl .en {
    font-size: 16px;
  }
}

/*------------
Block
--------------*/
.sec01 {
  position: relative;
  padding: 120px 0 100px;
  margin-bottom: 130px;
}

.sec01__ttl {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.sec01 .container, .sec01 .footer__inner, .sec01 .breadcrumb ul, .breadcrumb .sec01 ul {
  max-width: 880px;
}

.sec01 .t-ttl {
  position: relative;
  text-align: left;
  padding-top: 0;
  margin-bottom: 10px;
}

.sec01 .t-ttl .en {
  margin-top: 0;
  margin-bottom: 5px;
}

.sec01 .t-ttl .jp {
  font-size: 30px;
}

.sec01 .t-ttl::before {
  content: none;
}

.sec01 .list-top-news02 {
  position: relative;
  z-index: 2;
}

.sec01::before {
  content: "";
  position: absolute;
  background: #FEF8FF;
  border-radius: 10px;
  width: 815px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 0;
}

.sec01 .btn-more {
  max-width: 195px;
}

.sec02 {
  overflow: hidden;
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 140px;
}

.sec02::before {
  content: "";
  position: absolute;
  background: #FEF8FF;
  width: 100%;
  height: 345px;
  bottom: 120px;
  left: 0;
  z-index: 0;
}

.sec02::after {
  content: "";
  position: absolute;
  width: 446px;
  height: 320px;
  background: url(../images/sec02_deco.png) no-repeat center/contain;
  left: 40px;
  bottom: 0;
  z-index: 1;
}

.sec02__ttl-wrap {
  display: flex;
}

.sec02__en-ttl {
  height: 252px;
  line-height: 1;
  font-size: 26px;
  color: #F3ABBB;
  writing-mode: vertical-lr;
  position: relative;
}

.sec02__en-ttl::before {
  content: "";
  position: absolute;
  background: #F3ABBB;
  height: 125px;
  width: 1px;
  left: 30%;
  bottom: 0;
}

.sec02__ttl {
  writing-mode: vertical-rl;
  font-size: 30px;
  margin-right: 55px;
  color: #9A76AC;
}

.sec02__ttl span {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 0;
  background: #fff;
  border-radius: 3px;
  letter-spacing: 0.25em;
}

.sec02__ttl span+span {
  margin-right: 10px;
}

.sec02__inner {
  position: relative;
  display: flex;
  z-index: 2;
}

.sec02__layout {
  display: flex;
  flex-direction: row-reverse;
  margin-left: 72px;
}

.sec02__desc {
  flex: 1;
  padding-top: 5.28vw;
}

.sec02__desc p {
  font-size: 17px;
}

.sec02__img {
  max-width: 852px;
  width: 100%;
  height: 620px;
  margin: 0 -10% 0 90px;
}

.sec02__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 20px;
}

.sec02 .btn-more {
  margin-top: 45px;
}

.sec03 {
  position: relative;
  padding-bottom: 120px;
}

.sec03::before {
  content: "";
  position: absolute;
  background: url(../images/sec03-bg.png) no-repeat center/cover;
  max-width: 1400px;
  width: 100%;
  height: calc(100% - 320px);
  left: 50%;
  top: 225px;
  transform: translateX(-50%);
}

.sec03::after {
  content: "";
  position: absolute;
  background: url(../images/sec03_deco02.png) no-repeat center/contain;
  width: 671px;
  height: 361px;
  bottom: -165px;
  left: 0;
  z-index: 1;
}

.sec03__layout {
  position: relative;
  display: flex;
  margin-bottom: 70px;
  z-index: 2;
}

.sec03__layout::before {
  content: "";
  position: absolute;
  background: url(../images/sec03_deco01.png) no-repeat center/contain;
  width: 130px;
  height: 160px;
  right: -60px;
  top: 100px;
}

@media screen and (max-width: 1250px) {
  .sec03__layout::before {
    right: -5%;
  }
}

.sec03__img {
  max-width: 828px;
  flex: 1.5;
  height: 550px;
  margin: 0 90px 0 -10%;
}

.sec03__img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  height: 100%;
  border-radius: 0 20px 20px 0;
}

.sec03__desc {
  margin-top: 60px;
  flex: 1;
  max-width: 560px;
  width: 40%;
  padding-right: 60px;
}

.sec03__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px 44px;
  margin-bottom: 100px;
}

.sec03__list-item {
  display: grid;
  grid-auto-columns: 1fr;
  position: relative;
  border: 1px solid #9A76AC;
  border-radius: 10px;
  background: #fff;
  padding: 75px 45px 50px;
}

.sec03__list-item>p {
  font-size: 17px;
}

.sec03__list-item:nth-child(even) {
  margin-top: 30px;
}

.sec03__list-num {
  position: absolute;
  width: 98px;
  left: 0;
  top: -40px;
}

.sec03__list-ttl {
  font-size: 21px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 15px;
  display: inline-block;
}

.sec03__list-ttl span {
  background: linear-gradient(transparent 60%, #FADCE3 60%);
  padding-bottom: 2px;
}

.sec03 .t-ttl {
  position: relative;
  text-align: left;
  padding-top: 0;
  margin-bottom: 30px;
}

.sec03 .t-ttl .en {
  margin-top: 0;
  margin-bottom: 5px;
}

.sec03 .t-ttl .jp {
  font-size: 30px;
}

.sec03 .t-ttl::before {
  content: none;
}

.sec03 .btn-more {
  margin-top: 40px;
}

.sec04 {
  position: relative;
  padding: 60px 0 70px;
  margin-bottom: 100px;
}

.sec04::before {
  content: "";
  position: absolute;
  background: #FEF8FF;
  border-radius: 20px 0 0 0;
  width: calc(100% - 10.5vw);
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
}

.sec04 .container, .sec04 .footer__inner, .sec04 .breadcrumb ul, .breadcrumb .sec04 ul {
  position: relative;
  z-index: 2;
}

.sec04__layout {
  display: flex;
  position: relative;
}

.sec04__layout::after {
  content: "";
  position: absolute;
  background: url(../images/sec05_deco01.png) no-repeat center/contain;
  width: 409px;
  height: 255px;
  right: -250px;
  bottom: -268px;
  z-index: 1;
}

@media screen and (max-width: 1620px) {
  .sec04__layout::after {
    width: 350px;
    height: 218px;
    right: -100px;
  }
}

@media screen and (max-width: 1250px) {
  .sec04__layout::after {
    right: 0;
  }
}

.sec04__img {
  max-width: 491px;
  width: 100%;
  margin: 0 40px 0 -20px;
}

.sec04__desc {
  flex: 1;
  margin-top: 50px;
}

.sec04__ttl {
  font-size: 32px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
}

.sec04__ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: url(../images/top-ttl-line.png) repeat-x left center/cover;
  left: 0;
  bottom: 0;
}

.sec04 .btn-more {
  margin-top: 45px;
}

.sec05 {
  position: relative;
  padding: 60px 0 127px;
}

.sec05::before {
  content: "";
  position: absolute;
  background: #FEF8FF;
  border-radius: 0 20px 0 0;
  width: calc(100% - 10.5vw);
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.sec05 .container, .sec05 .footer__inner, .sec05 .breadcrumb ul, .breadcrumb .sec05 ul {
  position: relative;
  z-index: 2;
}

.sec05__layout {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}

.sec05__img {
  max-width: 491px;
  width: 100%;
  margin: 0 -20px 0 40px;
}

.sec05__desc {
  flex: 1;
  margin-top: 50px;
}

.sec05__ttl {
  font-size: 32px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
}

.sec05__ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: url(../images/top-ttl-line.png) repeat-x left center/cover;
  left: 0;
  bottom: 0;
}

.sec05__list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.sec05__list li:nth-child(1) a::after {
  background-image: url(../images/sec05_icon01.png);
  left: 83px;
  width: 80px;
  height: 80px;
}

.sec05__list li:nth-child(2) a::after {
  background-image: url(../images/sec05_icon02.png);
  left: 102px;
  width: 45px;
  height: 70.8px;
}

.sec05__list li a {
  font-size: 24px;
  display: grid;
  place-content: center;
  font-family: "秀英丸ゴシック B";
  padding: 60px 20px 60px 40px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #9A76AC;
  background: #fff;
  position: relative;
  transition: 0.3s ease;
}

.sec05__list li a:hover {
  opacity: 0.5;
}

.sec05__list li a::before {
  content: "";
  position: absolute;
  background: #9A76AC;
  width: 25px;
  height: 25px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  right: 0;
  bottom: 0;
}

.sec05__list li a::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
}

.sec05 .btn-more {
  margin-top: 45px;
}

.sec06 {
  position: relative;
  padding: 50px 0 115px;
  background: url(../images/sec06-bg.png) no-repeat center/cover;
}

.sec06 .container, .sec06 .footer__inner, .sec06 .breadcrumb ul, .breadcrumb .sec06 ul {
  max-width: 885px;
}

.sec06__list {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 10px;
  padding: 62px 0 50px;
}

.sec06__list::before {
  content: "";
  position: absolute;
  background: #B398C1;
  height: 191px;
  width: 1px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}

.sec06__list li {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.sec06__list li a {
  text-align: center;
  padding: 40px 0;
  height: 100%;
  width: 100%;
  display: block;
  transition: 0.3s ease;
}

.sec06__list li a:hover {
  opacity: 0.5;
}

.sec06 .list-img {
  margin-bottom: 10px;
}

.sec06 .list-ttl {
  font-size: 24px;
  color: #9A76AC;
}

.sec07 {
  position: relative;
  padding: 160px 0 170px;
}

.sec07__layout {
  display: flex;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.sec07__img {
  position: relative;
  max-width: 748px;
  width: 55%;
  margin-right: -70px;
  z-index: 2;
}

.sec07__img::before {
  content: "";
  position: absolute;
  background: url(../images/sec07_deco02.png) no-repeat center/contain;
  width: 120px;
  height: 120px;
  bottom: 0;
  left: 188px;
}

.sec07__desc {
  position: relative;
  flex: 1;
  background: #FEF8FF;
  border-radius: 20px;
  padding: 85px 75px 100px 130px;
  margin-top: 97px;
}

.sec07__desc::before {
  content: "";
  position: absolute;
  background: url(../images/sec07_deco01.png) no-repeat center/contain;
  width: 273px;
  height: 180px;
  right: 0;
  top: -100px;
  z-index: 1;
}

.sec07 .t-ttl {
  position: relative;
  text-align: left;
  padding-top: 0;
  margin-bottom: 30px;
}

.sec07 .t-ttl .en {
  margin-top: 0;
  margin-bottom: 5px;
}

.sec07 .t-ttl .jp {
  font-size: 30px;
}

.sec07 .t-ttl::before {
  content: none;
}

.sec07 .btn-more {
  margin-top: 45px;
}

.map-layout01 {
  background-color: #FEF8FF;
  padding: 80px 0;
}

.map-layout01 .wrap {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 372px 1fr;
}

.map-layout01 .l-map {
  max-width: 1024px;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.map-layout01 .l-desc {
  padding-top: 118px;
  flex: 1;
}

.map-layout01 .l-logo {
  max-width: 260px;
  width: 100%;
  margin-bottom: 35px;
}

.map-layout01 .l-txt {
  font-size: 17px;
  margin-bottom: 35px;
}

.map-layout01 iframe {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
}

.sec08 {
  padding: 120px 0;
}

.sec08 .t-ttl {
  position: relative;
  text-align: left;
  padding-top: 0;
  margin-bottom: 30px;
}

.sec08 .t-ttl .en {
  margin-top: 0;
  margin-bottom: 5px;
}

.sec08 .t-ttl .jp {
  font-size: 30px;
}

.sec08 .t-ttl::before {
  display: none;
}

.sec08 .btn-more {
  width: 200px;
}

.top-post-layout01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 50px 1fr;
  grid-template-columns: 280px 1fr;
  min-height: 170px;
  position: relative;
}

.top-post-layout01 .l-ttl .txt01 {
  display: block;
  font-size: 30px;
  margin-bottom: 15px;
}

.top-post-layout01 .l-ttl .txt02 {
  display: block;
  font-size: 16px;
}

.top-post-layout01 .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.list-top-blog {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.list-top-blog .list-img {
  border: 1px solid #eaeaea;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.list-top-blog .list-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 180px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.list-top-blog time {
  color: #666;
  display: block;
  font-size: 12px;
}

.list-top-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 5px;
}

.list-top-blog .category {
  display: inline-block;
  color: #666;
  font-size: 14px;
  margin-right: 5px;
}

.list-top-blog a {
  display: block;
  height: 100%;
}

.list-top-blog a:hover .list-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 800px) {
  .sec08 {
    padding: 50px 0;
  }

  .top-post-layout01 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
    min-height: 0;
  }

  .top-post-layout01 .l-ttl .txt01 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .top-post-layout01 .l-ttl .txt02 {
    font-size: 13px;
  }

  .top-post-layout01 .l-btn {
    position: static;
    text-align: center;
    margin-top: 30px;
  }

  .sec08 .btn-more {
    width: 95%;
  }

  .list-top-blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0 -5vw 0 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }

  .list-top-blog li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }
}


@media (max-width: 800px) {
  .sec01 {
    padding: 40px 0;
    margin-bottom: 50px;
  }

  .sec01__ttl {
    display: block;
  }

  .sec01 .t-ttl .en {
    font-size: 16px;
  }

  .sec01 .t-ttl .jp {
    font-size: 24px;
  }

  .sec01 .list-top-news02 {
    margin-bottom: 30px;
  }

  .sec01::before {
    border-radius: 0;
    width: 100%;
    height: 100%;
  }

  .sec01 .btn-more {
    max-width: 97%;
  }

  .sec02 {
    overflow: visible;
    padding-bottom: 60px;
    margin-bottom: 50px;
  }

  .sec02::before {
    height: 600px;
    bottom: 0px;
  }

  .sec02::after {
    width: 150px;
    height: 90px;
    left: 10px;
    bottom: -30px;
  }

  .sec02__ttl-wrap {
    display: grid;
  }

  .sec02__en-ttl {
    height: auto;
    line-height: 1.4;
    font-size: 20px;
    writing-mode: initial;
    margin-bottom: 30px;
  }

  .sec02__en-ttl::before {
    height: 1px;
    width: calc(100% - 250px);
    left: 90px;
    right: 0px;
    bottom: 13px;
  }

  .sec02__ttl {
    writing-mode: initial;
    font-size: 24px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .sec02__ttl span {
    width: 100%;
    height: auto;
    padding: 0;
    letter-spacing: 0.2em;
  }

  .sec02__ttl span+span {
    margin-right: 0;
    margin-top: 10px;
  }

  .sec02__inner {
    display: block;
  }

  .sec02__layout {
    display: block;
    margin-left: 0;
  }

  .sec02__desc {
    padding-top: 0;
  }

  .sec02__desc p {
    font-size: 15px;
  }

  .sec02__img {
    height: 220px;
    margin: 0 auto 20px;
  }

  .sec02__img img {
    border-radius: 20px;
  }

  .sec02 .btn-more {
    margin-top: 30px;
  }

  .sec03 {
    padding-bottom: 80px;
  }

  .sec03::before {
    height: calc(100% - 150px);
    top: 100px;
  }

  .sec03::after {
    width: 230px;
    height: 130px;
    bottom: -10px;
  }

  .sec03__layout {
    display: block;
    margin: 0 auto 80px;
  }

  .sec03__layout::before {
    width: 85px;
    height: 100px;
    right: -15px;
    top: -20px;
    z-index: 2;
  }

  .sec03__img {
    width: 100%;
    height: 250px;
    margin: 0 auto 20px;
  }

  .sec03__img img {
    border-radius: 20px;
  }

  .sec03__desc {
    margin-top: 0;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }

  .sec03__list {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    gap: 50px;
  }

  .sec03__list-item {
    padding: 50px 20px 30px;
  }

  .sec03__list-item>p {
    font-size: 15px;
  }

  .sec03__list-item:nth-child(even) {
    margin-top: 0;
  }

  .sec03__list-num {
    width: 70px;
    height: auto;
  }

  .sec03__list-ttl {
    font-size: 18px;
  }

  .sec03 .t-ttl {
    margin-bottom: 20px;
  }

  .sec03 .t-ttl .jp {
    font-size: 24px;
  }

  .sec03 .btn-more {
    margin-top: 30px;
  }

  .sec04 {
    padding: 20px 0 50px;
    margin-bottom: 50px;
  }

  .sec04::before {
    border-radius: 50px 0 0 0;
    width: 100%;
  }

  .sec04__layout {
    display: block;
  }

  .sec04__layout::after {
    width: 180px;
    height: 110px;
    bottom: -130px;
  }

  .sec04__img {
    max-width: 100%;
    margin: 0 0 30px;
  }

  .sec04__desc {
    margin-top: 0;
  }

  .sec04__ttl {
    font-size: 20px;
  }

  .sec04__ttl::before {
    height: 2px;
  }

  .sec04 .btn-more {
    margin-top: 30px;
  }

  .sec05 {
    padding: 20px 0 50px;
  }

  .sec05::before {
    border-radius: 0 50px 0 0;
    width: 100%;
  }

  .sec05__layout {
    display: block;
    margin-bottom: 40px;
  }

  .sec05__img {
    max-width: 100%;
    margin: 0 0 30px;
  }

  .sec05__desc {
    margin-top: 0;
  }

  .sec05__ttl {
    font-size: 20px;
  }

  .sec05__ttl::before {
    height: 2px;
  }

  .sec05 .btn-more {
    margin-top: 30px;
  }

  .sec05__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec05__list li:nth-child(1) a::after {
    left: 30px;
    width: 60px;
    height: 60px;
  }

  .sec05__list li:nth-child(2) a::after {
    left: 42px;
    width: 35px;
    height: 52px;
  }

  .sec05__list li a {
    font-size: 18px;
    padding: 25px 20px;
  }

  .sec05__list li a::before {
    width: 20px;
    height: 20px;
  }

  .sec06 {
    padding: 40px 0;
  }

  .sec06 .container, .sec06 .footer__inner, .sec06 .breadcrumb ul, .breadcrumb .sec06 ul {
    max-width: 100%;
  }

  .sec06__list {
    padding: 20px 0;
  }

  .sec06__list::before {
    height: 120px;
  }

  .sec06__list li a {
    padding: 15px 0;
  }

  .sec06 .list-img {
    margin-bottom: 10px;
  }

  .sec06 .list-img img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    height: 45px;
  }

  .sec06 .list-ttl {
    font-size: 17px;
  }

  .sec07 {
    padding: 100px 0 40px;
  }

  .sec07__layout {
    display: block;
  }

  .sec07__img {
    width: 100%;
    margin-right: 0;
  }

  .sec07__img::before {
    width: 80px;
    height: 80px;
    bottom: 0;
    left: 20px;
  }

  .sec07__desc {
    padding: 30px 20px;
    margin-top: 10px;
  }

  .sec07__desc::before {
    width: 173px;
    height: 113px;
    right: 0;
    top: -380px;
  }

  .sec07 .t-ttl {
    margin-bottom: 20px;
  }

  .sec07 .t-ttl .en {
    font-size: 16px;
  }

  .sec07 .t-ttl .jp {
    font-size: 24px;
  }

  .sec07 .btn-more {
    margin-top: 30px;
  }

  .map-layout01 {
    padding: 50px 0;
  }

  .map-layout01 .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-layout01 .l-map {
    height: 300px;
  }

  .map-layout01 .l-desc {
    padding-top: 0;
    text-align: center;
  }

  .map-layout01 .l-logo {
    max-width: 220px;
    width: 100%;
    margin-bottom: 20px;
  }

  .map-layout01 .l-txt {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

/*------------
Post
--------------*/
.list-top-news02 .list-item {
  font-family: "秀英丸ゴシック L";
  display: flex;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid #DFDFDF;
}

.list-top-news02 .list-item:first-child {
  border-top: 1px solid #DFDFDF;
}

.list-top-news02 time {
  color: #666;
  margin-right: 50px;
  font-size: 16px;
}

.list-top-news02 .list-txt {
  font-size: 17px;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  position: relative;
  transition: 0.3s;
  padding-right: 40px;
}

.list-top-news02 .list-txt::before {
  content: "";
  position: absolute;
  background: url(../images/news-arrow.png) no-repeat center/contain;
  width: 30px;
  height: 30px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.list-top-news02 a:hover {
  opacity: 0.5;
}

@media (max-width: 800px) {
  .list-top-news02 .list-item {
    display: block;
  }

  .list-top-news02 time {
    margin-right: 0;
    font-size: 15px;
  }

  .list-top-news02 .list-txt {
    width: 100%;
    font-size: 15px;
    padding-right: 30px;
  }

  .list-top-news02 .list-txt::before {
    width: 20px;
    height: 20px;
  }
}

/*------------
下層レイアウト
--------------*/
.page-ttl {
  margin-top: 120px;
  width: 100%;
  background: url(../images/under/u-top_bg.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 50px 5%;
  height: 360px;
  min-height: 360px;
  position: relative;
}

.page-ttl::before {
  position: absolute;
  content: "";
  background: url(../images/under/u-top_deco.png) center/contain no-repeat;
  width: 264px;
  height: 160px;
  bottom: -50px;
  right: 17.17%;
}

.page-ttl-main {
  font-size: 38px;
  line-height: 1.2;
  display: block;
}

.page-ttl-sub {
  display: block;
  font-size: 18px;
  font-family: "秀英丸ゴシック L";
  color: #9A76AC;
  margin-bottom: 5px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  color: #7C7C7C;
}

.breadcrumb ul {
  font-size: 14px;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "|";
  display: inline-block;
  margin: 0 12px 0 3px;
  vertical-align: -1px;
}

.u-contents p+p {
  margin-top: 2em;
}

@media (max-width: 800px) {
  .page-ttl {
    margin-top: 10px;
    padding: 30px 5%;
    height: 200px;
    min-height: 200px;
  }

  .page-ttl::before {
    width: 164px;
    height: 100px;
    bottom: -30px;
    right: 2%;
  }

  .page-ttl-main {
    font-size: 25px;
  }

  .page-ttl-sub {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .u-contents p+p {
    margin-top: 1em;
  }
}

.u-h2, .post-category-ttl, .postdata h1 {
  font-size: 32px;
  position: relative;
  padding-top: 120px;
  margin-bottom: 50px;
  text-align: center;
}

.u-h2::before, .post-category-ttl::before, .postdata h1::before {
  content: "";
  background: url(../images/share/ttl_deco.png) center/contain no-repeat;
  width: 124px;
  height: 124px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h3, .post-ttl, .postdata h2 {
  font-size: 26px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.u-h3::before, .post-ttl::before, .postdata h2::before {
  content: "";
  background: url(../images/share/ttl_line.svg) left center/contain repeat-x;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.u-h4, .postdata h3 {
  font-size: 18px;
  color: #9A76AC;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .u-h2, .post-category-ttl, .postdata h1 {
    font-size: 24px;
    padding-top: 80px;
    margin-bottom: 30px;
  }

  .u-h2::before, .post-category-ttl::before, .postdata h1::before {
    width: 80px;
    height: 80px;
  }

  .u-h3, .post-ttl, .postdata h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .u-h4, .postdata h3 {
    font-size: 18px;
  }
}

.x-short+.x-short {
  margin-top: 30px;
}

.x-short+.short {
  margin-top: 50px;
}

.short+.short {
  margin-top: 50px;
}

.short+.x-short {
  margin-top: 30px;
}

.tall {
  padding: 70px 0;
}

.tall:last-child {
  padding: 70px 0 140px;
}

.tall.bg01 {
  background: url(../images/under/u-bg.jpg) no-repeat center/cover;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .x-short+.short {
    margin-top: 30px;
  }

  .short+.short {
    margin-top: 30px;
  }

  .tall {
    padding: 40px 0;
  }

  .tall:last-child {
    padding: 40px 0 80px;
  }
}

.l-style01, .l-style02 {
  display: flex;
}

.l-style01 .l-img, .l-style02 .l-img {
  flex: 1;
}

.l-style01 .l-img img, .l-style02 .l-img img {
  border-radius: 20px;
}

.l-style01 .l-img.large, .l-style02 .l-img.large {
  position: relative;
}

.l-style01 .l-img.small, .l-style02 .l-img.small {
  flex: 0.5;
}

.l-style01 .l-img.medium, .l-style02 .l-img.medium {
  flex: 0.64;
}

.l-style01 .l-desc, .l-style02 .l-desc {
  flex: 1;
}

.l-style01 .l-ttl, .l-style02 .l-ttl {
  font-size: 21px;
  margin-bottom: 20px;
}

.l-style01 .l-img {
  margin-right: 50px;
}

.l-style01 .l-img.large {
  margin: 0 7.5% 0 -10%;
}

.l-style02 {
  flex-direction: row-reverse;
}

.l-style02 .l-img {
  margin-left: 50px;
}

.l-style02 .l-img.large {
  margin: 0 -10% 0 7.5%;
}

.l-style03 {
  display: flex;
  padding-top: 46px;
}

.l-style03 .l-img {
  width: 244px;
  height: 165px;
  position: relative;
  z-index: 3;
}

.l-style03 .l-img::before {
  position: absolute;
  content: "";
  background: url(../images/under/u-layout_deco_l.png) center/contain no-repeat;
  width: 120px;
  height: 120px;
  bottom: -144px;
  right: 192px;
}

.l-style03 .l-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.l-style03 .l-item+.l-item {
  margin-top: 20px;
}

.l-style03 .l-desc {
  background: #FEF8FF;
  padding: 85px 75px 70px 75px;
  margin: 97px 0 0 -45px;
  flex: 1;
  border-radius: 20px;
  position: relative;
}

.l-style03 .l-desc::before {
  position: absolute;
  content: "";
  background: url(../images/under/u-layout_deco_r.png) center/contain no-repeat;
  width: 273px;
  height: 180px;
  top: -133px;
  right: 40px;
  z-index: 3;
}

.l-style03 .l-job {
  font-size: 20px;
  margin-bottom: 20px;
  color: #9A76AC;
}

.l-style03 .l-ttl {
  font-size: 18px;
  margin-bottom: 10px;
}

.l-style03 .l-ttl .l-en {
  font-size: 26px;
  margin-right: 4px;
}

.u-layout {
  position: relative;
  padding-bottom: 22px;
}

.u-layout .l-img img {
  border-radius: 20px;
}

.u-layout .l-desc {
  padding: 35px 10px 65px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  max-width: 1024px;
  margin: -305px auto 0;
  position: relative;
  font-weight: bold;
  text-align: center;
  line-height: 2.2;
}

.u-layout .l-desc::before {
  position: absolute;
  content: "";
  background: url(../images/under/u-layout_deco03.png) center/contain no-repeat;
  width: 264px;
  height: 160px;
  bottom: -22px;
  right: -74px;
}

.u-layout .l-desc .u-h2, .u-layout .l-desc .post-category-ttl, .u-layout .l-desc .postdata h1, .postdata .u-layout .l-desc h1 {
  margin-bottom: 30px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .l-style01, .l-style02 {
    display: block;
  }

  .l-style01 .l-img, .l-style02 .l-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .l-style01 .l-desc, .l-style02 .l-desc {
    width: 100%;
  }

  .l-style01 .l-ttl, .l-style02 .l-ttl {
    font-size: 18px;
  }

  .l-style01 .l-img {
    margin-right: 0;
  }

  .l-style01 .l-img.large {
    margin: 0 auto 20px;
  }

  .l-style02 .l-img {
    margin-left: 0;
  }

  .l-style02 .l-img.large {
    margin: 0 auto 20px;
  }

  .l-style03 {
    display: block;
  }

  .l-style03 .l-img {
    width: 100%;
    height: auto;
  }

  .l-style03 .l-img::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -10px;
    bottom: auto;
    right: auto;
  }

  .l-style03 .l-img img {
    border-radius: 20px 20px 0 0;
  }

  .l-style03 .l-img .first {
    object-position: 0;
  }

  .l-style03 .l-desc {
    background: #FEF8FF;
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
    margin: 0;
  }

  .l-style03 .l-desc::before {
    width: 113px;
    height: 70px;
    top: -53px;
    right: -10px;
  }

  .l-style03 .l-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .u-layout {
    position: relative;
    padding-bottom: 50px;
  }

  .u-layout .l-img img {
    border-radius: 20px 20px 0 0;
  }

  .u-layout .l-desc {
    padding: 30px 0 40px;
    border-radius: 0 0 20px 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    line-height: 2;
  }

  .u-layout .l-desc::before {
    width: 174px;
    height: 106px;
    bottom: -50px;
    right: -10px;
  }

  .u-layout .l-desc .u-h2, .u-layout .l-desc .post-category-ttl, .u-layout .l-desc .postdata h1, .postdata .u-layout .l-desc h1 {
    margin-bottom: 20px;
    line-height: 1.4;
  }
}

.list-col2 {
  display: flex;
  flex-wrap: wrap;
}

.list-col2 .list-item {
  width: 48%;
}

.list-col2 .list-item:nth-child(odd) {
  margin-right: 4%;
}

.list-col2 .list-item+.list-item+.list-item {
  margin-top: 40px;
}

.list-col2 .list-img {
  margin-bottom: 20px;
}

.list-col2 .list-ttl {
  font-size: 22px;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .list-col2 {
    display: flex;
    flex-wrap: wrap;
  }

  .list-col2 .list-item {
    width: 100%;
  }

  .list-col2 .list-item:nth-child(odd) {
    margin-right: 0;
  }

  .list-col2 .list-item+.list-item+.list-item {
    margin-top: 40px;
  }

  .list-col2 .list-item+.list-item {
    margin-top: 40px;
  }

  .list-col2 .list-ttl {
    font-size: 20px;
  }
}

.list-card01 .list-item {
  border: 1px solid #9A76AC;
  background: #fff;
}

.list-card01 .list-img {
  text-align: center;
  margin-bottom: 15px;
}

.list-card01 .num {
  display: block;
  color: #9A76AC;
  font-family: "秀英丸ゴシック L";
  line-height: 1;
  margin-bottom: 5px;
  font-size: 13px;
}

.list-card01 .list-ttl {
  font-family: "秀英丸ゴシック B";
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}

.list-card01 .list-ttl::before {
  content: "";
  background: url(../images/share/ttl_line.svg) left center/contain repeat-x;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.list-card02 .list-item {
  background: #FEF8FF;
}

.list-card02 .list-ttl {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.list-card02 .list-img {
  text-align: center;
  margin-bottom: 20px;
}

.list-card02 .num {
  background: #9A76AC;
  border-radius: 50px;
  display: table;
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.list-card01, .list-card02 {
  display: grid;
}

.list-card01.col2, .list-card02.col2 {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.list-card01.col2 .list-item, .list-card02.col2 .list-item {
  padding: 30px;
  border-radius: 20px;
}

.list-card01.col3, .list-card02.col3 {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.list-card01.col3 .list-item, .list-card02.col3 .list-item {
  padding: 30px;
  border-radius: 20px;
}

.list-card01.col4, .list-card02.col4 {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.list-card01.col4 .list-item, .list-card02.col4 .list-item {
  padding: 25px;
  border-radius: 20px;
}

.list-card01 .list-img img, .list-card02 .list-img img {
  border-radius: 20px;
}

@media (max-width: 800px) {
  .list-card01 .list-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .list-card02 .list-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .list-card02 .list-img {
    margin-bottom: 15px;
  }

  .list-card01.col2, .list-card01.col3, .list-card01.col4, .list-card02.col2, .list-card02.col3, .list-card02.col4 {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .list-card01.col2 .list-item, .list-card01.col3 .list-item, .list-card01.col4 .list-item, .list-card02.col2 .list-item, .list-card02.col3 .list-item, .list-card02.col4 .list-item {
    padding: 25px 20px;
  }

  .list-card01 .list-img img, .list-card02 .list-img img {
    border-radius: 15px;
  }
}

.list-disc li {
  position: relative;
  padding-left: 15px;
}

.list-disc li:before {
  content: "";
  background: #F3ABBB;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
}

.list-check li {
  position: relative;
  padding-left: 25px;
}

.list-check li:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/share/icon_check.svg) center/contain no-repeat;
  left: 0;
  top: 8px;
  width: 17px;
  height: 15px;
}

.list-disc.col2, .list-check.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px 10px;
}

.list-disc.col3, .list-check.col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px 10px;
}

.list-disc.col4, .list-check.col4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5px 10px;
}

@media (max-width: 800px) {
  .list-disc li::before {
    top: 11px;
  }

  .list-check li::before {
    top: 5.5px;
  }

  .list-disc.col2, .list-disc.col3, .list-disc.col4, .list-check.col2, .list-check.col3, .list-check.col4 {
    grid-template-columns: 1fr;
    grid-gap: 5px;
  }
}

.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.list-anchor-link li {
  position: relative;
}

.list-anchor-link li:not(:last-child):after {
  content: "";
  display: inline-block;
  background: #D1D1D1;
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  padding-right: 25px;
  transition: 0.3s;
}

.list-anchor-link a:before {
  content: "";
  background: url(../images/share/icon_arrow_bottom.svg) no-repeat 0 0/contain;
  stroke: #9A76AC;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 7px;
}

.list-anchor-link a:hover {
  color: #9A76AC;
}

@media (max-width: 800px) {
  .list-anchor-link {
    display: block;
  }

  .list-anchor-link li:not(:last-child):after {
    display: none;
  }

  .list-anchor-link a {
    padding: 0 0 0 25px;
  }

  .list-anchor-link a:before {
    right: inherit;
    left: 0;
    top: 5.5px;
  }
}

.staff-layout {
  display: flex;
}

.staff-layout .l-img {
  width: 25%;
}

.staff-layout .l-img img {
  border-radius: 20px;
}

.staff-layout .l-desc {
  flex: 1;
  padding-left: 6%;
}

.staff-layout .l-ttl {
  border-bottom: 2px solid #9A76AC;
  font-size: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
  color: #9A76AC;
  font-family: "秀英丸ゴシック B";
}

.staff-layout .l-message {
  font-family: "秀英丸ゴシック B";
  font-size: 25px;
  margin-bottom: 25px;
  color: #9A76AC;
}

.staff-layout .l-name {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-family: "秀英丸ゴシック B";
  font-size: 13px;
  line-height: 1;
}

.staff-layout .job {
  display: block;
  margin-right: 15px;
}

.staff-layout .jp {
  display: block;
  font-size: 20px;
  margin-right: 15px;
}

.staff-layout .en {
  display: block;
  font-family: "秀英丸ゴシック L";
  color: #F3ABBB;
}

@media (max-width: 800px) {
  .staff-layout {
    display: block;
  }

  .staff-layout .l-img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 30px;
  }

  .staff-layout .l-desc {
    padding: 0;
  }

  .staff-layout .l-ttl {
    margin-bottom: 15px;
  }

  .staff-layout .l-message {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.faq-style01 {
  border-top: 1px solid #D1D1D1;
  padding-top: 15px;
}

.faq-style01>dt {
  cursor: pointer;
  display: flex;
  padding: 0 30px 15px 0;
  margin-bottom: 5px;
  font-family: "秀英丸ゴシック B";
  position: relative;
  border-bottom: 1px solid #D1D1D1;
  transition: 0.3s;
}

.faq-style01>dt .txt {
  font-size: 20px;
  line-height: 1.7;
}

.faq-style01>dt .icon {
  background-color: #9A76AC;
  color: #fff;
}

.faq-style01>dt::before, .faq-style01>dt::after {
  content: "";
  background: #333;
  position: absolute;
  width: 10px;
  height: 1px;
  right: 15px;
  top: 20px;
}

.faq-style01>dt::before {
  transform: rotate(90deg);
  transition: 0.5s;
}

.faq-style01>dt:not(.is-open):hover {
  opacity: 0.5;
}

.faq-style01>dt.is-open {
  border-bottom: transparent;
}

.faq-style01>dt.is-open::before {
  transform: rotate(0);
}

.faq-style01 dd {
  display: none;
  padding-bottom: 15px;
  border-bottom: 1px solid #D1D1D1;
}

.faq-style01 dd .wrapper {
  display: flex;
}

.faq-style01 dd+dt {
  margin-top: 15px;
}

.faq-style01 dd .icon {
  background: #FEF8FF;
  color: #9A76AC;
}

.faq-style01 .icon {
  border-radius: 100px;
  font-size: 20px;
  font-family: "秀英丸ゴシック L";
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 31px;
  margin: 0 15px 0 0;
}

.faq-style01 .txt {
  flex: 1;
}

@media (max-width: 800px) {
  .faq-style01 dt .ttl {
    font-size: 16px;
  }

  .faq-style01 dt::before, .faq-style01 dt::after {
    content: "";
    background: #333;
    position: absolute;
    width: 10px;
    height: 1px;
    right: 15px;
    top: calc(50% - 5px);
  }

  .faq-style01 dt::before {
    transform: translateY(-50%) rotate(90deg);
  }

  .faq-style01 dt.is-open::before {
    transform: translateY(-50%) rotate(0);
  }

  .faq-style01 dd {
    margin-bottom: 30px;
  }

  .faq-style01 .icon {
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 26px;
    margin: 0 10px 0 0;
  }
}

.table-style01 {
  border: 1px solid #D1D1D1;
  background: #fff;
}

.table-style01 tr:not(:last-child) {
  border-bottom: 1px solid #D1D1D1;
}

.table-style01 th {
  background-color: #9A76AC;
  font-weight: bold;
  color: #fff;
  padding: 15px;
  width: 30%;
}

.table-style01 td {
  padding: 10px 30px;
}

.table-style02 {
  background-color: #fff;
  border: 1px solid #D1D1D1;
}

.table-style02 th, .table-style02 td {
  border: 1px solid #D1D1D1;
  line-height: 1.7;
  padding: 15px;
}

.table-style02 th {
  background-color: #9A76AC;
  font-weight: bold;
  color: #fff;
  vertical-align: middle;
  width: 30%;
}

.table-style02 th.bg01 {
  background-color: #FEF8FF;
  color: #333;
}

.table-style02 .table-img {
  text-align: center;
}

.table-style03 {
  background-color: #fff;
  border: 1px solid #D1D1D1;
  font-size: 14px;
}

.table-style03 th, .table-style03 td {
  border: 1px solid #D1D1D1;
  line-height: 1.7;
  padding: 10px;
}

.table-style03 th {
  background-color: #9A76AC;
  font-weight: bold;
  color: #fff;
  vertical-align: middle;
}

.table-style03 th.bg01 {
  background-color: #FEF8FF;
  color: #333;
}

.table-style03 .table-img {
  text-align: center;
}

.table-style03 .w-15 {
  width: 30%;
}

@media (max-width: 800px) {
  .table-style01 th {
    width: 100%;
    display: block;
    padding: 10px 15px;
    text-align: left;
  }

  .table-style01 td {
    width: 100%;
    display: block;
    padding: 10px 15px;
  }

  .table-style03 {
    font-size: 13px;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll::before {
    content: "※横にスクロールできます。";
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #9A76AC;
  }

  .table-scroll table {
    margin-bottom: 10px;
    width: 250%;
  }

  .table-scroll .table-style03 {
    width: 300%;
  }
}

.tel-layout {
  background: #FEF8FF;
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
  border-radius: 20px;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid #9A76AC;
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .l-tel {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 35px;
  line-height: 1;
  margin: 0 auto;
  white-space: nowrap;
}

.tel-layout .l-tel img {
  margin-right: 10px;
}

.tel-layout .l-time {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 10px;
  line-height: 1.5;
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .l-time dt {
  border: 1px solid #333;
  text-align: center;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout {
    padding: 25px 20px;
  }

  .tel-layout .l-ttl {
    font-size: 15px;
  }

  .tel-layout .l-tel {
    font-size: 25px;
  }

  .tel-layout .l-tel img {
    width: 15px;
  }

  .tel-layout .l-time {
    font-size: 13px;
  }
}

.box-style01 {
  border: 1px solid #9A76AC;
  padding: 50px;
  border-radius: 20px;
}

.box-style01 .box-ttl {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.box-style01 .box-ttl02 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-left: 15px;
  position: relative;
}

.box-style01 .box-ttl02::before {
  content: "";
  width: 6px;
  height: 20px;
  position: absolute;
  top: 8px;
  left: 0;
  background: #9A76AC;
}

.box-style02 {
  background: #9A76AC;
  color: #fff;
  border-radius: 20px;
  padding: 40px;
}

.box-style02 .box-ttl {
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.box-style02 .box-ttl img {
  width: 25px;
  margin: 5px 15px 0 0;
}

.box-style02 .list-disc>li::before {
  background: #fff;
}

.box-style03 {
  border: 1px solid #9A76AC;
  border-radius: 10px;
  background: #fff;
  position: relative;
  padding: 80px 50px 50px;
  margin-top: 90px;
}

.box-style03 .num {
  position: absolute;
  left: 7px;
  top: -42px;
  width: 98px;
  height: 114px;
}

.box-style03+.box-style03 {
  margin-top: 90px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 25px 20px;
  }

  .box-style01 .box-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .box-style01 .box-ttl02 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 12px;
  }

  .box-style01 .box-ttl02::before {
    width: 5px;
    height: 17px;
    top: 5px;
  }

  .box-style02 {
    padding: 25px 20px;
  }

  .box-style02 .box-ttl {
    font-size: 18px;
  }

  .box-style02 .box-ttl img {
    width: 25px;
    margin: 4px 10px 0 0;
  }

  .box-style03 {
    padding: 40px 20px 25px;
    margin-top: 60px;
  }

  .box-style03 .num {
    left: 7px;
    top: -45px;
    width: 70px;
    height: auto;
  }

  .box-style03+.box-style03 {
    margin-top: 65px;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #DFDFDF;
  font-size: 18px;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy dd+dt {
  margin-top: 30px;
}

/*------------
Footer
--------------*/
.footer {
  position: relative;
  background: #FEF8FF;
}

.footer__inner {
  padding: 80px 0 70px;
  display: flex;
}

.footer__logo {
  display: block;
  max-width: 378px;
  width: 100%;
  margin-bottom: 40px;
}

.footer__access {
  position: relative;
  margin-bottom: 20px;
  padding-left: 25px;
}

.footer__access::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 24px;
  left: 0;
  top: 2px;
  background: url(../images/share/icon-locate.svg) no-repeat center/contain;
}

.footer__dl {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 10px;
  line-height: 1.5;
}

.footer__dl dt {
  text-align: center;
  font-family: inherit;
  border: 1px solid #333;
  border-radius: 3px;
}

.footer__left {
  max-width: 595px;
  width: 100%;
}

.footer__navi {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 105px;
}

.footer__navi-list li {
  position: relative;
  padding-left: 15px;
  font-family: "秀英丸ゴシック B";
}

.footer__navi-list li+li {
  margin-top: 5px;
}

.footer__navi-list li::before {
  content: "";
  position: absolute;
  background: url(../images/share/navi-arrow.svg) no-repeat center/contain;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
}

.footer__navi-list a:hover {
  text-decoration: underline;
}

.footer .copyright {
  font-size: 12px;
  line-height: 1;
  font-family: "秀英丸ゴシック L";
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 35px;
}

.footer .copyright__right {
  display: inline-block;
}

.pagetop {
  background-color: #9A76AC;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  position: fixed;
  bottom: 90px;
  right: 50px;
  z-index: 99;
  transition: 0.3s ease;
}

.pagetop::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 13px;
  background: url(../images/share/pagetop-arrow.svg) no-repeat center/contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pagetop:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  .footer__inner {
    padding: 40px 0 20px;
    display: block;
  }

  .footer__logo {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer__access {
    padding-left: 20px;
  }

  .footer__access::before {
    width: 18px;
    height: 24px;
  }

  .footer__left {
    max-width: 100%;
  }

  .footer__navi {
    margin-top: 30px;
    gap: 20px;
  }

  .footer__navi-list li {
    padding-left: 15px;
  }

  .footer__navi-list li+li {
    margin-top: 3px;
  }

  .footer__navi-list li::before {
    top: 9px;
  }

  .footer .copyright {
    flex-direction: column-reverse;
    text-align: center;
    font-size: 11px;
    padding: 15px 15px 65px;
  }

  .footer .copyright__left {
    display: block;
    margin-top: 10px;
  }

  .pagetop {
    display: none !important;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*普通投稿*/
.list-post-type01 .list-item:not(:last-child) {
  margin-bottom: 80px;
}

.post-layout {
  display: flex;
}

.post-layout .post-img {
  flex: 1;
  margin-right: 50px;
}

.post-layout .post-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-layout .post-desc {
  flex: 2;
}

/*詳細ページ*/
.post-single-img {
  text-align: center;
  margin-bottom: 40px;
}

.postdata h4 {
  font-size: 20px;
  color: #F3ABBB;
  font-family: "秀英丸ゴシック B";
}

.postdata h5 {
  font-size: 18px;
  color: #9A76AC;
  font-family: "秀英丸ゴシック B";
  padding-left: 10px;
  position: relative;
}

.postdata h5:after {
  content: "-";
  color: #F3ABBB;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.postdata h6 {
  font-size: 18px;
  color: #F3ABBB;
  font-family: "秀英丸ゴシック B";
}

.postdata p, .postdata ul, .postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

.post-data {
  line-height: 1;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.post-data time {
  color: #666;
  font-size: 16px;
  line-height: 1;
  font-family: "秀英丸ゴシック L";
}

.post-data .post-category01 {
  margin-left: 20px;
}

.post-category01 {
  background: #9A76AC;
  color: #fff;
  line-height: 1;
  padding: 5px 10px;
  display: inline-block;
}

.post-category01 span {
  font-size: 12px;
}

.post-category01 span:not(:first-child):before {
  content: " / ";
}

/*セレクト式カテゴリー*/
.select-area {
  margin-bottom: 50px;
}

.select-area .select-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.select-area .select-box:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border-top: 8px solid #9A76AC;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateY(-50%);
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  border-radius: 0;
  background: #f1f1f1;
  font-size: 16px;
  color: #9A76AC;
  vertical-align: middle;
  height: 50px;
  border-radius: 5px;
  padding: 5px 15px;
  border: none;
  width: 100%;
  cursor: pointer;
}

.select-area .select-category::-ms-expand {
  display: none;
}

/*一覧用ページャー*/
.post-number {
  margin-top: 100px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  font-family: "秀英丸ゴシック B";
}

.post-number a {
  color: #a5a5a5;
  display: inline-block;
  padding: 0 10px 15px;
}

.post-number a:hover {
  color: #9A76AC;
}

.post-number .current {
  color: #9A76AC;
  display: inline-block;
  padding: 0 10px 15px;
  position: relative;
}

.post-number .current::after {
  content: "";
  border-bottom: 2px solid #9A76AC;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
}

/*詳細用ページャー*/
.post-number-single {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  font-family: "秀英丸ゴシック L";
}

.post-number-single a {
  display: inline-block;
  color: #9A76AC;
}

.post-number-single a.next {
  margin-top: 0;
}

.post-number-single a.next::before {
  content: "";
  background: url(../images/share/icon_arrow_post_left.svg) no-repeat center/contain;
  display: inline-block;
  margin-right: 15px;
  width: 30px;
  height: 30px;
}

.post-number-single a.prev {
  margin-top: 0;
}

.post-number-single a.prev::after {
  content: "";
  background: url(../images/share/icon_arrow_post_right.svg) no-repeat center/contain;
  display: inline-block;
  margin-left: 15px;
  width: 30px;
  height: 30px;
}

.post-number-single a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 800px) and (min-width: 0px) {

  /*普通投稿*/
  .list-post-type01 .list-item:not(:last-child) {
    margin-bottom: 60px;
  }

  .post-ttl {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }

  .post-layout {
    display: block;
  }

  .post-layout .post-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .post-layout .post-desc {
    width: 100%;
  }

  /*詳細ページ*/
  /*セレクト式カテゴリー*/
  /*一覧用ページャー*/
  .post-number {
    margin-top: 60px;
  }
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
.btn-more {
  display: block;
  width: 260px;
  padding: 10px;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: "秀英丸ゴシック B";
  background-color: #fff;
  border: 1px solid #CCBAD5;
  transition: 0.3s;
  border-radius: 5px;
  position: relative;
}

.btn-more::before, .btn-more::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.btn-more::before {
  width: 1px;
  height: 13px;
  background: #9A76AC;
  left: 0;
}

.btn-more:after {
  background: url(../images/share/btn-more_arrow.svg) center/contain no-repeat;
  right: -22px;
  width: 58px;
  height: 11px;
  transition: 0.3s;
}

.btn-more:hover {
  opacity: 0.7;
}

.btn-more:hover:after {
  right: -30px;
}

.btn-more.u-center {
  margin: 0 auto;
  width: 370px;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -8px;
}

.btn-wrap a {
  margin: 8px;
}

.btn-wrap.center {
  justify-content: center;
  margin-left: 0;
}

@media (max-width: 800px) {
  .btn-more {
    width: 95%;
    font-size: 16px;
  }

  .btn-more.u-center {
    margin: 0 auto;
    width: 95%;
  }

  .btn-wrap {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    text-align: center;
  }

  .btn-wrap a {
    margin: 0;
  }

  .btn-wrap a:not(:last-child) {
    margin-bottom: 15px;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs14 {
  font-size: 14px;
}

.txt-large {
  font-size: 20px;
}

.bold,
strong {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.marker span {
  background: linear-gradient(transparent 60%, #FADCE3 60%);
  padding-bottom: 3px;
}

.marker .large {
  font-size: 30px;
}

.marker .small {
  font-size: 20px;
}

.link {
  text-decoration: underline;
  color: #9A76AC;
}

.link:hover {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.notice {
  font-size: 0.8rem;
  text-indent: -1.6em;
  padding-left: 1.6em;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 80px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

@media (max-width: 800px) {
  .fs14 {
    font-size: 12px;
  }

  .txt-large {
    font-size: 18px;
  }

  .marker .large {
    font-size: 24px;
  }

  .marker .small {
    font-size: 18px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .mbL {
    margin-bottom: 30px !important;
  }

  .mbXL {
    margin-bottom: 50px !important;
  }
}

.map {
  position: relative;
  width: 100%;
  height: 500px;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tel {
  display: inline-block;
  font-size: 28px;
  font-family: "秀英丸ゴシック B";
  line-height: 1;
  padding-left: 25px;
  position: relative;
}

.tel:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/share/icon_tel.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 25px;
}

@media (max-width: 800px) {
  .map {
    height: 300px;
  }

  .tel {
    font-size: 24px;
    padding-left: 25px;
  }

  .tel:before {
    width: 20px;
    height: 25px;
  }
}

/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0 2px;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list {
  display: block;
}

.splide__track--fade>.splide__list>.splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #e9e9e9;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 64px;
  width: 64px;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid #000;
  border-width: 1px 1px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: calc((100% - 1080px) / 2);
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: calc((100% - 1080px) / 2);
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 1em;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #333;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (max-width: 800px) {
  .splide__arrow {
    height: 40px;
    width: 40px;
  }

  .splide__arrow--prev::after,
  .splide__arrow--next::after {
    width: 12px;
    height: 12px;
  }
}

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

.l-img-small {
 max-width: 70%;
 height: auto;
 display: block;
 margin: 0 auto;
}

.l-img-small-more {
 max-width: 55%;
}

@media (max-width: 800px) {
  .l-img-small {
    display: block;
    margin: 0 auto;
  }
}

.img-small-65 {
  width: 65%;
  height: auto;
}
