@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;
  appearance: none;
  font-size: inherit;
}

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

::selection {
  background: #d4dcd6;
}

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

body,
html {
  height: 100%;
}

body {
  background-color: #FFFDF7;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #55352C;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

html {
  scroll-behavior: smooth;
}

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

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 800px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.4;
  }
}
th, dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

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

.container, .breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}
.container.wide, .breadcrumb ul.wide {
  max-width: 1200px;
}
.container.wide-more, .breadcrumb ul.wide-more {
  max-width: 1500px;
}
.container.narrow, .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, .breadcrumb ul {
    margin: 0 auto;
    max-width: 90%;
    width: 90%;
  }
}
/*------------
Header
--------------*/
.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  transition: 0.3s;
  top: 20px;
}
.header-inr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 40px 0 36px;
  width: 100%;
  height: 120px;
}
.header .h-logo {
  width: 30%;
  max-width: 167px;
}
.header .h-logo a {
  display: block;
}
.header .h-logo img {
  width: 100%;
}
.header .h-right {
  display: flex;
  align-items: center;
}
.header .h-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 214px;
  height: 46px;
  border-radius: 23px;
  background-color: #FAF3DC;
  font-size: 15px;
  margin-left: 30px;
  transition: 0.3s;
}
.header .h-btn span {
  display: block;
  margin-left: 9px;
  font-size: 12px;
  border: 1px solid #55352C;
  border-radius: 3px;
  padding: 3px 6px 4px;
  line-height: 1;
}
.header .h-btn:hover {
  opacity: 0.5;
}
.header.is-fixed {
  top: 0;
  background: rgba(255, 255, 255, 0.8);
}
.header.is-fixed .header-inr {
  align-items: center;
  padding: 20px 40px 20px 36px;
  height: 152px;
}

.humberger {
  display: none;
}

@media (max-width: 800px) {
  .header {
    position: absolute;
    top: 8px;
  }
  .header-inr {
    height: auto;
    display: block;
    padding: 10px 20px;
  }
  .header .h-logo {
    width: 81px;
    max-width: none;
  }
  .header .h-right {
    display: none;
  }
  .humberger {
    display: block;
    width: 50px;
    height: 50px;
    background: #e45652;
    cursor: pointer;
    transition: 0.5s;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    border-radius: 8px;
  }
  .humberger span {
    background: #fff;
    position: absolute;
    width: 20px;
    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);
  }
}
/*------------
G-navi
--------------*/
/*drawer*/
.pc-navi-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pc-navi .item {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  font-weight: 500;
}
.pc-navi .item .item-link {
  display: block;
  transition: 0.3s;
}
.pc-navi .item .item-link:hover {
  color: #fccf04;
}
.pc-navi .item:not(:last-child) {
  margin-right: 30px;
}

.pc-dropdown {
  position: relative;
}
.pc-dropdown .item-link {
  position: relative;
  padding-right: 16px;
}
.pc-dropdown .item-link::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  border-bottom: 1px solid #55352C;
  border-right: 1px solid #55352C;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
}
.pc-dropdown .pc-navi-child {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  text-align: left;
  padding: 30px 20px;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  width: fit-content;
  transform: translate(-50%, -10px);
  transition: 0.4s ease-in-out;
}
.pc-dropdown .pc-navi-child li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding-left: 15px;
}
.pc-dropdown .pc-navi-child li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  border: 0px;
  border-top: 1px solid #fccf04;
  border-right: 1px solid #fccf04;
}
.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 .item-link {
  color: #fccf04;
}
.pc-dropdown:hover .pc-navi-child {
  pointer-events: auto;
  transform: translate(-50%, 0);
  opacity: 1;
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .gnavi-drawer {
    display: none;
  }
  .pc-navi {
    display: none;
  }
  .pc-navi01, .pc-navi02, .pc-navi03 {
    display: none;
  }
  :root {
    --navi-background: #e45652;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: 'Noto Sans JP',"游ゴシック Medium", "Yu Gothic Medium", YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
    --sp-btn-color: #E67A7A;
  }
  .sp-navi {
    display: block;
    /* ボタン類 */
  }
  .sp-navi .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    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;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }
  .sp-navi .sp-navi-btns .item:last-child {
    border-right: none;
  }
  .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 img {
    object-fit: cover;
    height: 20px;
    margin-bottom: 4px;
    stroke: var(--svg-stroke);
  }
  .sp-navi .sp-navi-btns .item .ttl {
    display: block;
  }
  .sp-navi {
    /* コンテンツ */
  }
  .sp-navi .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 80px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 999;
  }
  .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, .sp-navi .sp-navi-list > li span {
    display: block;
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    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: #e45652;
    position: absolute;
    transition: 0.5s;
  }
  .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-btn {
    background: var(--sp-btn-color);
    border-radius: 5px;
    color: #fff;
    display: block;
    padding: 10px;
    text-align: center;
    transition: 0.5s;
  }
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  width: 100%;
  padding: 126px 0 68px;
  position: relative;
}
.hero-img {
  width: 73.94%;
  margin: 0 40px 0 auto;
}
.hero-img img {
  border-radius: 30px;
  width: 100%;
}
.hero-desc {
  position: absolute;
  top: 50%;
  left: 13%;
  transform: translate(-50%, -50%);
}
.hero-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  writing-mode: vertical-rl;
  font-weight: 500;
}
.hero-en {
  font-size: 16.4vw;
  position: absolute;
  font-weight: 600;
  color: #e45652;
  font-family: "Literata", serif;
  bottom: 0;
  left: 50px;
  line-height: 1;
}
.hero-en::before {
  content: "";
  position: absolute;
  top: -77%;
  left: 24%;
  background: url(../images/hero_deco01.png) center/contain no-repeat;
  width: 10vw;
  height: 16vw;
}
.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  bottom: 30px;
  width: 334px;
  height: 73px;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #55352C;
  border-radius: 8px;
  transition: 0.3s;
}
.hero-btn img {
  margin-right: 11px;
}
@media (max-width: 1000px) {
  .hero-btn {
    width: 280px;
    padding: 10px;
    font-size: 13px;
  }
}
.hero-btn:hover {
  opacity: 0.5;
}

@media (max-width: 800px) {
  .hero {
    padding: 93px 0 50px;
  }
  .hero-img {
    width: 61.5%;
    margin: 0 0 0 auto;
    position: relative;
  }
  .hero-img::after {
    content: "";
    position: absolute;
    top: 58px;
    left: -26px;
    background: url(../images/hero_deco02.svg) center/contain no-repeat;
    width: 47px;
    height: 35px;
  }
  .hero-img img {
    border-radius: 30px 0 0 30px;
    height: 368px;
    object-fit: cover;
  }
  .hero-desc {
    top: 40%;
    left: 11%;
    width: max-content;
    transform: translate(0, -50%);
  }
  .hero-ttl {
    font-size: 17px;
  }
  .hero-en {
    font-size: 26.3vw;
    bottom: 24%;
    left: 17px;
  }
  .hero-en::before {
    top: -84px;
    left: 24%;
    background: url(../images/hero_deco01.svg) center/contain no-repeat;
    width: 86px;
    height: 109px;
  }
  .hero-btn {
    position: static;
    margin: 72px auto 0;
    width: 334px;
    font-size: 15px;
  }
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.t-ttl {
  margin-bottom: 60px;
}
.t-ttl .en {
  font-family: "Literata", serif;
  font-size: 19px;
  color: #e45652;
  display: block;
  line-height: 1;
  margin-bottom: 27px;
  padding-left: 40px;
  position: relative;
}
.t-ttl .en::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-bottom: 1px solid #e45652;
  width: 27px;
  height: 1px;
}
.t-ttl .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .t-ttl {
    margin-bottom: 30px;
  }
  .t-ttl .jp {
    font-size: 25px;
    line-height: 1.4;
  }
}
/*------------
Block
--------------*/
.sec01 {
  padding: 130px 0 149px;
}
.sec01-layout {
  display: flex;
  margin-bottom: 50px;
}
.sec01-ttl {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sec01 .t-ttl {
  text-align: left;
  margin-bottom: 30px;
}
.sec01 .list-top-news02 {
  flex: 3;
}
.sec01 .btn-more {
  font-size: 16px;
}

.sec02-layout {
  display: flex;
  flex-direction: row-reverse;
  margin: 0 60px 0 80px;
}
.sec02-layout .l-en {
  font-family: "Literata", serif;
  font-weight: 700;
  font-size: 10.3vw;
  color: rgba(231, 113, 139, 0.2);
  writing-mode: vertical-rl;
  line-height: 1;
  margin-right: 8.5%;
  position: relative;
}
.sec02-layout .l-en::before {
  content: "";
  position: absolute;
  top: -12%;
  left: 58%;
  background: url(../images/sec02_deco01.png) center/contain no-repeat;
  width: 9vw;
  height: 8vw;
}
.sec02-layout .l-img {
  width: 43.3%;
  margin-top: 45px;
  position: relative;
}
.sec02-layout .l-img::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 19%;
  background-color: #fccf04;
  width: 225px;
  height: 218px;
  border-radius: 129px 25px 25px 25px;
  z-index: -1;
}
.sec02-layout .l-img-wrap {
  position: relative;
  display: flex;
}
.sec02-layout .l-img-wrap::before {
  content: "";
  position: absolute;
  bottom: -7%;
  left: -17%;
  background: url(../images/sec02_dec02.svg) center/contain no-repeat;
  width: 10vw;
  height: 7vw;
  z-index: 2;
}
.sec02-layout .l-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 9%;
  right: 4%;
  background-color: #e45652;
  width: 171px;
  height: 170px;
  border-radius: 20px 93px 20px 20px;
  z-index: 1;
}
.sec02-layout .l-img-wrap img {
  object-fit: cover;
}
.sec02-layout .l-img-wrap .img01 {
  width: 47.5%;
  margin: 358px -14% 0 0;
  position: relative;
  z-index: 1;
  border-radius: 140px 30px 30px;
}
.sec02-layout .l-img-wrap .img02 {
  width: 66.5%;
  margin-bottom: 191px;
  border-radius: 30px 170px 30px 30px;
}
.sec02-layout .l-desc-wrap {
  display: flex;
  flex-direction: row-reverse;
  margin-right: 5.56%;
  flex: 1;
}
.sec02-layout .l-desc {
  width: fit-content;
  margin-right: 5.56%;
  margin-top: 45px;
}
.sec02-layout .l-desc p + p {
  margin-top: 2rem;
}
.sec02-layout .l-desc .l-ttl {
  font-size: 1.95vw;
  margin-bottom: 60px;
}
.sec02-layout .l-desc .l-ttl .l-sub {
  display: block;
  color: #e45652;
  font-size: 22px;
  margin-bottom: 42px;
}
.sec02-layout .l-btn {
  margin-top: 60px;
}

.sec03 {
  padding: 145px 0 150px;
  position: relative;
}
.sec03::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/sec03_deco01.svg) center/contain no-repeat;
  width: 15vw;
  height: 17vw;
}
.sec03 .splide__slide {
  position: relative;
}
.sec03 .splide__slide img {
  border-radius: 30px;
}
.sec03 .splide__slide .splide__txt {
  position: absolute;
  top: 63px;
  right: 63px;
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 24px;
  font-weight: 500;
}
.sec03 .splide__slide .splide__txt span {
  writing-mode: horizontal-tb;
  line-height: 1;
}
.sec03 .num {
  position: absolute;
  bottom: -10px;
  font-size: 10.1vw;
  font-weight: 700;
  line-height: 1;
  left: -20px;
  color: #fff;
  font-family: "Literata", serif;
}
.sec03 .l-btn {
  display: flex;
  justify-content: flex-end;
  margin: 90px 0 0 auto;
}
.sec03 .l-btn a:first-child {
  margin-right: 50px;
}

.sec04 {
  position: relative;
}
.sec04-layout {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-left: 8.33%;
}
.sec04-layout .l-img {
  width: 54.5%;
  position: relative;
}
.sec04-layout .l-img::before {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -17%;
  background: url(../images/sec04_deco02.svg) center/contain no-repeat;
  width: 16vw;
  height: 18vw;
  z-index: 2;
}
.sec04-layout .l-img img {
  border-radius: 30px 0 0 30px;
  position: relative;
  height: 100%;
  min-height: 846px;
  object-fit: cover;
  width: 100%;
}
.sec04-layout .l-img-txt {
  position: absolute;
  padding: 0 20px 80px 10%;
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 18px;
}
.sec04-layout .l-img-txt .l-ttl {
  font-size: 30px;
  margin-bottom: 41px;
}
.sec04-layout .l-desc {
  flex: 1;
  margin-right: 5%;
}
.sec04-layout .l-desc .t-ttl {
  position: relative;
}
.sec04-layout .l-desc .t-ttl::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 240px;
  background: url(../images/sec04_deco01.svg) center/contain no-repeat;
  width: 6vw;
  height: 4vw;
}
.sec04-layout .l-desc p + p {
  margin-top: 2rem;
}
.sec04-layout .l-desc .btn-more {
  margin-top: 50px;
}
.sec04-list {
  margin-top: 80px;
}
.sec04-list li {
  max-width: 430px;
  border-bottom: 1px solid #D3CCC7;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.sec04-list li > a {
  padding: 26px 0 30px;
  display: flex;
  align-items: center;
}
.sec04-list li:hover {
  opacity: 0.5;
}
.sec04-list li:hover::before {
  transform: translate(5px, -50%);
}
.sec04-list li:first-child {
  border-top: 1px solid #D3CCC7;
}
.sec04-list li::before {
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  background: url(../images/btn_arrow02.svg) center/contain no-repeat;
  width: 17px;
  height: 13px;
}
.sec04-list li .num {
  display: block;
  color: #e45652;
  font-size: 14px;
  font-weight: 500;
  font-family: "Literata", serif;
  margin-right: 20px;
}

.sec05 {
  padding: 152px 0 33px;
  position: relative;
}
.sec05::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 4%;
  background: url(../images/sec05_deco01.svg) center/contain no-repeat;
  width: 18vw;
  height: 19vw;
}
.sec05-layout {
  background-color: #FAF3DC;
  padding: 80px 20px;
  border-radius: 30px 200px 30px 30px;
}
.sec05-layout-inr {
  display: flex;
}
.sec05-layout-inr .l-img {
  width: 51%;
  margin: 0 8% 0 -3.89%;
}
.sec05-layout-inr .l-img img {
  border-radius: 30px 230px 30px 30px;
}
.sec05-layout-inr .l-desc {
  flex: 1;
}
.sec05-layout-inr .l-desc .l-ttl {
  font-size: clamp(26px, 1vw, 30px);
  margin-bottom: 50px;
}
.sec05-layout-inr .l-desc .btn-more {
  margin-top: 60px;
}

.sec06 {
  padding: 136px 0 105px;
  position: relative;
}
.sec06::before {
  content: "";
  position: absolute;
  bottom: 71px;
  left: 4%;
  background: url(../images/sec06_deco01.svg) center/contain no-repeat;
  width: 15vw;
  height: 8vw;
}
.sec06-layout {
  display: flex;
  justify-content: space-between;
}
.sec06-layout .t-ttl {
  margin-bottom: 100px;
  flex: 1;
}
.sec06-layout .case-layout {
  border: 1px solid #e45652;
  border-radius: 30px;
  padding: 60px 80px;
  width: 72%;
  background-color: #FFFDF7;
  position: relative;
}
.sec06-layout .case-layout::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 12px;
  background-color: #e45652;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
}
.sec06-layout .case-layout .before-after {
  margin-bottom: 72px;
}
.sec06-layout .case-layout .l-ttl {
  font-size: 27px;
  margin-bottom: 38px;
  padding-bottom: 18px;
  border-bottom: 1px solid #55352C;
}
.sec06-layout .case-layout .top-l-table tr:not(:last-child) th,
.sec06-layout .case-layout .top-l-table tr:not(:last-child) td {
  padding-bottom: 30px;
}
.sec06-layout .case-layout .top-l-table th,
.sec06-layout .case-layout .top-l-table td {
  line-height: 1.5;
}
.sec06-layout .case-layout .top-l-table th {
  vertical-align: top;
  text-align: left;
  width: 25%;
}
.sec06-layout .case-layout .top-l-btn {
  text-align: right;
  margin-top: 40px;
}
.sec06-layout .case-layout .before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 7%;
  position: relative;
}
.sec06-layout .case-layout .before-after::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(0 0, 17px 14.5px, 0 29px);
  width: 17px;
  height: 29px;
  background-color: #e45652;
}
.sec06-layout .case-layout .before-after .item {
  text-align: center;
  position: relative;
}
.sec06-layout .case-layout .before-after figure {
  display: grid;
  place-items: center;
  height: 260px;
  position: relative;
}
.sec06-layout .case-layout .before-after figure img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  border-radius: 15px;
  width: 100%;
}
.sec06-layout .case-layout .before-after p {
  color: #e45652;
  font-family: "Literata", serif;
  font-weight: 500;
  font-size: 31px;
  position: absolute;
  bottom: -10px;
  left: 20px;
  line-height: 1;
}
.sec06-en {
  position: absolute;
  font-size: 7.1vw;
  line-height: 1;
  font-family: "Literata", serif;
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(231, 113, 139, 0.2);
  white-space: nowrap;
  left: 24px;
  bottom: 0;
}

.case-btn {
  margin: 0 0 0 auto;
  background-color: #e45652;
  border-radius: 10px;
  width: 117px;
  height: 50px;
  color: #fff;
  padding: 12px 20px;
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.case-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  background: url(../images/btn_arrow03.svg) center/contain no-repeat;
  width: 13px;
  height: 10px;
  transition: 0.3s;
}
.case-btn:hover {
  opacity: 0.5;
}
.case-btn:hover::before {
  transform: translate(5px, -50%);
}

.sec07 {
  padding: 110px 0 130px;
}
.sec07-layout {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 204px;
}
.sec07-layout .l-img {
  margin-right: 30px;
  width: 36.6%;
  position: relative;
}
.sec07-layout .l-img::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -48px;
  background: url(../images/sec07_deco01.svg) center/contain no-repeat;
  width: 35vw;
  height: 39vw;
  z-index: 1;
}
.sec07-layout .l-img-wrap {
  position: relative;
}
.sec07-layout .l-img-wrap::before {
  content: "";
  position: absolute;
  top: -58px;
  right: -63px;
  background-color: #e45652;
  height: 168px;
  width: 166px;
  border-radius: 20px 20px 20px 93px;
  z-index: 1;
}
.sec07-layout .l-img-wrap::after {
  content: "";
  position: absolute;
  bottom: -91px;
  left: -73px;
  background-color: #fccf04;
  width: 273px;
  height: 282px;
  border-radius: 25px 25px 25px 129px;
  z-index: -1;
}
.sec07-layout .l-img img {
  border-radius: 207px 30px 30px 30px;
  min-height: 571px;
  object-fit: cover;
}
.sec07-layout .l-desc {
  flex: 1;
  margin-right: 12.06%;
}
.sec07-layout .l-desc .t-ttl .en {
  margin-bottom: 50px;
}
.sec07-layout .l-desc .t-ttl .jp {
  font-size: 35px;
}
.sec07-layout .l-desc p + P {
  margin-top: 2em;
}
.sec07-layout .l-desc .btn-more {
  margin-top: 60px;
}
.sec07 .splide__slide img {
  border-radius: 30px;
}
.sec07 .splide__slide:nth-child(2n) {
  margin-top: 73px;
}

.sec08 {
  padding-bottom: 215px;
  position: relative;
}
.sec08::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 4%;
  background: url(../images/sec08_deco02.svg) center/contain no-repeat;
  width: 13vw;
  height: 12vw;
  z-index: 2;
}
.sec08 .list-top-blog02 {
  position: relative;
}
.sec08 .list-top-blog02::before {
  content: "";
  position: absolute;
  top: -96px;
  right: 0;
  background: url(../images/sec08_deco01.svg) center/contain no-repeat;
  width: 112px;
  height: 96px;
}
.sec08 .t-ttl {
  margin-bottom: 70px;
}
.sec08 .btn-more {
  margin-top: 60px;
}

.sec09 {
  width: 100%;
  height: 535px;
}
.sec09 iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 60px 0;
  }
  .sec01-layout {
    display: block;
    margin-bottom: 0;
  }
  .sec01 .t-ttl .en {
    margin-bottom: 0;
  }
  .sec01 .list-top-news02 {
    margin-bottom: 30px;
  }
  .sec02-layout {
    display: block;
    margin: 0 5%;
  }
  .sec02-layout .l-en {
    font-size: 60px;
    writing-mode: horizontal-tb;
    margin-right: 0;
    margin-top: 50px;
  }
  .sec02-layout .l-en::before {
    top: -50%;
    left: auto;
    right: -1%;
    width: 72px;
    height: 68px;
  }
  .sec02-layout .l-desc-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  .sec02-layout .l-img {
    width: 100%;
    margin-top: 0;
  }
  .sec02-layout .l-img::before {
    top: -8%;
    left: 19%;
    width: 125px;
    height: 118px;
    border-radius: 80px 25px 25px 25px;
  }
  .sec02-layout .l-img-wrap::before {
    bottom: -45px;
    left: 0;
    width: 87px;
    height: 75px;
  }
  .sec02-layout .l-img-wrap::after {
    bottom: 9%;
    right: 4%;
    width: 100px;
    height: 100px;
    border-radius: 20px 73px 20px 20px;
  }
  .sec02-layout .l-img-wrap .img01 {
    width: 43%;
    margin: 120px -10% 0 0;
    position: relative;
    z-index: 1;
    border-radius: 80px 30px 30px;
  }
  .sec02-layout .l-img-wrap .img02 {
    flex: 1;
    margin-bottom: 60px;
    border-radius: 30px 100px 30px 30px;
  }
  .sec02-layout .l-desc {
    width: fit-content;
    margin-right: 0;
    margin-top: 30px;
  }
  .sec02-layout .l-desc p + p {
    margin-top: 1rem;
  }
  .sec02-layout .l-desc .l-ttl {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .sec02-layout .l-desc .l-ttl .l-sub {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .sec02-layout .l-btn {
    margin-top: 30px;
  }
  .sec03 {
    padding: 60px 0;
  }
  .sec03::before {
    top: 0;
    right: 0;
    width: 94px;
    height: 102px;
  }
  .sec03 .splide__slide img {
    border-radius: 10px;
  }
  .sec03 .splide__slide .splide__txt {
    top: 30px;
    right: 40px;
    writing-mode: vertical-rl;
    font-size: 20px;
  }
  .sec03 .num {
    bottom: -6px;
    font-size: 100px;
    left: -5px;
    color: #fff;
    font-family: "Literata", serif;
  }
  .sec03 .l-btn {
    display: block;
    margin: 30px 0 0 auto;
  }
  .sec03 .l-btn a:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .sec04 {
    padding-top: 30px;
  }
  .sec04-layout {
    display: block;
    margin: 0 5%;
  }
  .sec04-layout .l-img {
    display: none;
  }
  .sec04-layout .l-desc {
    margin-right: 0;
    position: relative;
  }
  .sec04-layout .l-desc::before {
    content: "";
    position: absolute;
    bottom: -15%;
    left: auto;
    right: 0;
    background: url(../images/sec04_deco02.svg) center/contain no-repeat;
    width: 93px;
    height: 105px;
    z-index: 2;
  }
  .sec04-layout .l-desc .t-ttl::before {
    top: 24px;
    left: 170px;
    width: 60px;
    height: 52px;
  }
  .sec04-layout .l-desc p + p {
    margin-top: 1rem;
  }
  .sec04-layout .l-desc .btn-more {
    margin-top: 30px;
  }
  .sec04-list {
    margin-top: 40px;
  }
  .sec04-list li {
    max-width: initial;
    font-size: 18px;
  }
  .sec04-list li > a {
    padding: 25px 0;
  }
  .sec05 {
    padding: 80px 0 40px;
  }
  .sec05::before {
    bottom: 0;
    right: 2%;
    width: 98px;
    height: 100px;
  }
  .sec05-layout {
    padding: 30px 10px;
    border-radius: 20px 80px 20px 20px;
  }
  .sec05-layout-inr {
    display: block;
  }
  .sec05-layout-inr .l-img {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .sec05-layout-inr .l-img img {
    border-radius: 20px 60px 20px 20px;
  }
  .sec05-layout-inr .l-desc .l-ttl {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .sec05-layout-inr .l-desc .btn-more {
    margin-top: 30px;
  }
  .sec06 {
    padding: 60px 0;
  }
  .sec06::before {
    bottom: 30px;
    left: 2%;
    width: 104px;
    height: 78px;
  }
  .sec06-layout {
    display: block;
    margin-bottom: 30px;
  }
  .sec06-layout .t-ttl {
    margin-bottom: 35px;
  }
  .sec06-layout .case-layout {
    padding: 30px 20px;
    width: 100%;
  }
  .sec06-layout .case-layout::before {
    top: 10px;
    left: 10px;
  }
  .sec06-layout .case-layout .before-after {
    margin-bottom: 30px;
  }
  .sec06-layout .case-layout .l-ttl {
    font-size: 22px;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  .sec06-layout .case-layout .l-table tr:not(:last-child) th,
  .sec06-layout .case-layout .l-table tr:not(:last-child) td {
    padding-bottom: 20px;
  }
  .sec06-layout .case-layout .l-table th {
    width: 30%;
  }
  .sec06-layout .case-layout .l-btn {
    margin-top: 30px;
  }
  .sec06-layout .case-layout .before-after {
    grid-template-columns: 1fr;
    grid-gap: 50px;
    position: relative;
  }
  .sec06-layout .case-layout .before-after::before {
    transform: translate(-50%, -50%) rotate(90deg);
    clip-path: polygon(0 0, 17px 14.5px, 0 29px);
  }
  .sec06-layout .case-layout .before-after figure {
    height: auto;
  }
  .sec06-layout .case-layout .before-after figure img {
    max-height: initial;
  }
  .sec06-layout .case-layout .before-after p {
    font-size: 25px;
    position: absolute;
    bottom: -10px;
    left: 10px;
  }
  .sec06 .btn-more {
    margin: 0 auto;
  }
  .sec07 {
    padding: 70px 0 60px;
  }
  .sec07-layout {
    display: block;
    margin-bottom: 30px;
  }
  .sec07-layout .l-img {
    margin-right: 0;
    margin-bottom: 70px;
    width: 100%;
  }
  .sec07-layout .l-img::before {
    top: 20%;
    left: -48px;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 800px) and (max-width: 500px) {
  .sec07-layout .l-img::before {
    width: 115%;
    height: 115%;
    top: 10%;
  }
}
@media (max-width: 800px) {
  .sec07-layout .l-img-wrap::before {
    top: -30px;
    right: -15px;
    height: 100px;
    width: 100px;
    border-radius: 20px 20px 20px 93px;
  }
  .sec07-layout .l-img-wrap::after {
    bottom: -54px;
    left: -15px;
    width: 150px;
    height: 150px;
    border-radius: 25px 25px 25px 100px;
  }
  .sec07-layout .l-img img {
    border-radius: 100px 30px 30px 30px;
    min-height: initial;
  }
  .sec07-layout .l-desc {
    margin-right: 0;
  }
  .sec07-layout .l-desc .t-ttl .en {
    margin-bottom: 20px;
  }
  .sec07-layout .l-desc .t-ttl .jp {
    font-size: 25px;
  }
  .sec07-layout .l-desc p + P {
    margin-top: 1em;
  }
  .sec07-layout .l-desc .btn-more {
    margin-top: 30px;
  }
  .sec07 .splide__slide img {
    border-radius: 10px;
  }
  .sec07 .splide__slide:nth-child(2n) {
    margin-top: 30px;
  }
  .sec08 {
    padding-bottom: 60px;
  }
  .sec08::before {
    bottom: -15px;
    left: 4%;
    width: 87px;
    height: 83px;
  }
  .sec08::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/sec08_deco01.svg) center/contain no-repeat;
    width: 82px;
    height: 66px;
  }
  .sec08 .list-top-blog02::before {
    display: none;
  }
  .sec08 .t-ttl {
    margin-bottom: 30px;
  }
  .sec08 .btn-more {
    margin-top: 30px;
  }
  .sec09 {
    height: 350px;
  }
}
/*------------

------



/*------------
Post
--------------*/
/*お知らせ*/
.list-top-news02 .list-item {
  display: flex;
  padding: 32px 0;
  border-bottom: 1px solid #D3CCC7;
}
.list-top-news02 .list-item:first-child {
  border-top: 1px solid #D3CCC7;
}
.list-top-news02 .list-item > a {
  display: flex;
  align-items: center;
}
.list-top-news02 time {
  color: #93817C;
  margin-right: 54px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.list-top-news02 .list-txt {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.list-top-news02 a:hover {
  text-decoration: underline;
}

/*ブログ*/
.list-top-blog01,
.list-top-blog02 {
  display: flex;
  margin-bottom: 40px;
}
.list-top-blog01 .list-item,
.list-top-blog02 .list-item {
  width: 25%;
}
.list-top-blog01 .list-item a,
.list-top-blog02 .list-item a {
  display: block;
}
.list-top-blog01 .list-item a:hover .list-img img,
.list-top-blog02 .list-item a:hover .list-img img {
  transform: scale(1.1);
}
.list-top-blog01 .list-item:not(:last-child),
.list-top-blog02 .list-item:not(:last-child) {
  margin-right: 20px;
}
.list-top-blog01 .list-img,
.list-top-blog02 .list-img {
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid #e45652;
  border-radius: 15px;
}
.list-top-blog01 .list-img img,
.list-top-blog02 .list-img img {
  width: 100%;
  height: 204px;
  object-fit: cover;
  transition: 0.5s;
  border-radius: 15px;
}
.list-top-blog01 .list-ttl,
.list-top-blog02 .list-ttl {
  margin-bottom: 15px;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.list-top-blog01 time,
.list-top-blog02 time {
  display: block;
  color: #B4A89F;
  font-size: 15px;
  font-family: "Literata", serif;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  /*お知らせ*/
  .list-top-news02 .list-item {
    display: block;
    padding: 20px 0;
  }
  .list-top-news02 time {
    margin-right: 0;
  }
  .list-top-news02 .list-txt {
    width: 100%;
  }
  .list-top-news03 .list-item {
    padding: 0 0 20px;
  }
  /*ブログ*/
  .list-top-blog01 {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .list-top-blog01 .list-item {
    width: calc(50% - 10px);
  }
  .list-top-blog01 .list-item:not(:last-child) {
    margin-right: 0;
  }
  .list-top-blog01 .list-item:not(:nth-child(2n)) {
    margin-right: 20px;
  }
  .list-top-blog01 .list-item:nth-child(n+3) {
    margin-top: 20px;
  }
  .list-top-blog01 .list-img img {
    height: 120px;
  }
  .list-top-blog01 time {
    font-size: 13px;
  }
  .list-top-blog02 {
    display: flex;
    grid-gap: 0;
    flex-wrap: nowrap;
    margin: 0 -5vw 30px 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }
  .list-top-blog02 .list-img img {
    height: 150px;
  }
  .list-top-blog02 time {
    font-size: 13px;
  }
  .list-top-blog02 li {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }
}
/*------------
下層ページタイトル
--------------*/
.page-ttl {
  margin-top: 126px;
  padding-bottom: 100px;
  width: 100%;
  position: relative;
}
.page-ttl-img {
  height: 490px;
  min-height: 490px;
  background: url(../images/under/u-top_bg.jpg) center/cover no-repeat;
}
.page-ttl-wrap {
  position: absolute;
  bottom: 0;
  left: 90px;
}
.page-ttl-sub {
  font-size: 7.8vw;
  font-family: "Literata", serif;
  font-weight: 600;
  color: #e45652;
  line-height: 1;
  margin-bottom: 15px;
}
.page-ttl-main {
  font-size: 30px;
  font-weight: 500;
}
.page-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/under/u-top_deco.svg) center/contain no-repeat;
  width: 16vw;
  height: 19vw;
}

@media (max-width: 800px) {
  .page-ttl {
    margin-top: 93px;
    padding-bottom: 55px;
  }
  .page-ttl-img {
    height: 300px;
    min-height: 300px;
  }
  .page-ttl-wrap {
    left: 15px;
    padding-right: 80px;
  }
  .page-ttl-sub {
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    font-size: 45px;
    margin-bottom: 10px;
  }
  .page-ttl-main {
    font-size: 22px;
  }
  .page-ttl::before {
    width: 80px;
    height: 92px;
  }
}
/*------------
下層ページ見出し
--------------*/
.u-h2, .post-category-ttl, .postdata h1 {
  font-size: 30px;
  margin-bottom: 50px;
}
.u-h2 .en, .post-category-ttl .en, .postdata h1 .en {
  position: relative;
  font-size: 17px;
  font-weight: 500;
  color: #e45652;
  font-family: "Literata", serif;
  padding-left: 40px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.u-h2 .en::before, .post-category-ttl .en::before, .postdata h1 .en::before {
  content: "";
  border-bottom: 1px solid #e45652;
  width: 27px;
  height: 1px;
  position: absolute;
  top: 14px;
  left: 0;
}
.u-h2 .jp, .post-category-ttl .jp, .postdata h1 .jp {
  font-size: 30px;
  display: block;
}
.u-h2.center, .center.post-category-ttl, .postdata h1.center {
  text-align: center;
}

.u-h3, .post-ttl, .postdata h2 {
  font-size: 22px;
  color: #e45652;
  margin-bottom: 30px;
}

.u-h4, .postdata h3 {
  font-size: 19px;
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}
.u-h4::before, .postdata h3::before {
  content: "";
  background: #fccf04;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

@media (max-width: 800px) {
  .u-h2, .post-category-ttl, .postdata h1 {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .u-h2 .jp, .post-category-ttl .jp, .postdata h1 .jp {
    font-size: 25px;
  }
  .u-h3, .post-ttl, .postdata h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .u-h4, .postdata h3 {
    font-size: 18px;
    padding-left: 20px;
  }
  .u-h4::before, .postdata h3::before {
    top: 6px;
  }
}
/*------------
パンクズリスト
--------------*/
.breadcrumb {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}
.breadcrumb ul {
  font-size: 14px;
}
.breadcrumb ul li {
  display: inline;
  word-break: break-all;
}
.breadcrumb ul li + li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

/*------------
pタグ同士の余白
--------------*/
.u-contents p + p {
  margin-top: 2em;
}

@media (max-width: 800px) {
  .u-contents p + p {
    margin-top: 1em;
  }
}
/*------------
下層ページレイアウト
--------------*/
.tall {
  padding: 70px 0;
}
.tall:last-child {
  padding: 70px 0 140px;
}
.tall.bg01 {
  background: #FAF3DC;
}

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall {
    padding: 40px 0;
  }
  .tall:last-child {
    padding: 40px 0 80px;
  }
  .short + .short {
    margin-top: 30px;
  }
  .x-short + .short {
    margin-top: 30px;
  }
}
.u-layout01 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin: 0 20px 0 28px;
  padding-top: 38px;
}
.u-layout01 .l-img {
  width: 50.4%;
}
.u-layout01 .l-img img {
  border-radius: 30px;
}
.u-layout01 .l-desc {
  flex: 1;
  background-color: #FAF3DC;
  border-radius: 15px;
  padding: 70px 60px 60px;
  position: relative;
  margin: 0 -5% 0 0;
}
.u-layout01 .l-desc .num {
  position: absolute;
  font-size: 80px;
  font-weight: 500;
  font-family: "Literata", serif;
  line-height: 1;
  top: -50px;
  left: 60px;
  color: #e45652;
}
.u-layout01 .l-ttl {
  margin-bottom: 25px;
  font-size: 24px;
}

@media (max-width: 800px) {
  .u-layout01 {
    display: block;
    margin: 0;
    padding-top: 0;
  }
  .u-layout01 .l-img {
    width: 100%;
  }
  .u-layout01 .l-desc {
    padding: 40px 20px 30px;
    margin: -20px 5% 0;
  }
  .u-layout01 .l-desc .num {
    font-size: 50px;
    top: -25px;
    left: 20px;
    color: #e45652;
  }
  .u-layout01 .l-ttl {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.u-layout02 {
  display: flex;
  flex-direction: row-reverse;
  padding-bottom: 70px;
}
.u-layout02 .l-img {
  width: 50%;
  margin-left: 7%;
  position: relative;
}
.u-layout02 .l-img::before {
  content: "";
  position: absolute;
  top: 82%;
  left: -17%;
  background: url(../images/under/u-parts_deco.svg) center/contain no-repeat;
  width: 263px;
  height: 134px;
}
.u-layout02 .l-img img {
  border-radius: 30px;
  min-height: 442px;
  object-fit: cover;
}
.u-layout02 .l-desc {
  flex: 1;
}

@media (max-width: 800px) {
  .u-layout02 {
    display: block;
    padding-bottom: 0;
  }
  .u-layout02 .l-img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
  }
  .u-layout02 .l-img::before {
    top: 82%;
    left: -6%;
    width: 203px;
    height: 74px;
  }
  .u-layout02 .l-img img {
    min-height: initial;
  }
}
.u-box01 {
  padding-top: 70px;
  position: relative;
}
.u-box01 .en {
  font-size: 100px;
  font-weight: 700;
  font-family: "Literata", serif;
  color: rgba(231, 113, 139, 0.2);
  position: absolute;
  top: 0;
  left: -5%;
  line-height: 1;
}
.u-box01-inr {
  background-color: #FAF3DC;
  padding: 55px 50px 45px;
  border-radius: 30px;
}
.u-box01-inr .box-ttl {
  font-size: 24px;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .u-box01 {
    padding-top: 30px;
  }
  .u-box01 .en {
    font-size: 50px;
    top: 0;
  }
  .u-box01-inr {
    padding: 35px 20px 30px;
  }
  .u-box01-inr .box-ttl {
    font-size: 22px;
  }
}
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 5%;
}
.l-imgR .l-img,
.l-imgL .l-img {
  width: 40%;
}
.l-imgR .l-img > img,
.l-imgL .l-img > img {
  border-radius: 30px;
}
.l-imgR .l-img.w30,
.l-imgL .l-img.w30 {
  width: 30%;
}
.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.l-imgR .l-desc .u-btn-wrap,
.l-imgL .l-desc .u-btn-wrap {
  display: block;
  width: fit-content;
  height: auto;
  margin-top: auto;
  text-align: right;
}

.l-imgR {
  flex-direction: row-reverse;
}
.l-imgR .l-desc .btn-wrap {
  margin-left: auto;
}

@media (max-width: 800px) {
  .l-imgR,
  .l-imgL {
    flex-direction: column;
    gap: 15px;
  }
  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    width: 100%;
  }
  .l-imgR .l-img.w30,
  .l-imgL .l-img.w30 {
    width: 100%;
  }
  .l-imgR .l-desc .u-btn-wrap,
  .l-imgL .l-desc .u-btn-wrap {
    margin-top: 15px;
    width: 100%;
  }
}
.dl-style01 {
  display: flex;
  flex-wrap: wrap;
}
.dl-style01 dt {
  background: #e45652;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  padding: 20px;
  width: 25%;
  border-radius: 10px 0 0 10px;
}
.dl-style01 dt .num {
  display: block;
  font-family: "Literata", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 5px;
}
.dl-style01 dt:not(:first-child) {
  margin-top: 15px;
}
.dl-style01 dd {
  background: #FAF3DC;
  padding: 20px;
  width: 75%;
  border-radius: 0 10px 10px 0;
}
.dl-style01 dd:not(:nth-child(2)) {
  margin-top: 15px;
}

@media (max-width: 800px) {
  .dl-style01 {
    display: block;
  }
  .dl-style01 dt {
    padding: 15px;
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  .dl-style01 dd {
    padding: 15px;
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
  .dl-style01 dd:not(:nth-child(2)) {
    margin-top: 0;
  }
}
.tel-layout01 {
  background: #FAF3DC;
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
  border-radius: 30px;
}
.tel-layout01-inr {
  display: flex;
  justify-content: center;
}
.tel-layout01 .l-ttl {
  border-bottom: 1px solid #e45652;
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: fit-content;
}
.tel-layout01 .l-tel {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 35px;
  line-height: 1;
  margin: 0 30px 0 0;
  font-family: "Literata", serif;
}
.tel-layout01 .l-time {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
  width: fit-content;
}
.tel-layout01 .l-time .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 10px;
}
.tel-layout01 .l-time dt {
  border: 1px solid #e45652;
  text-align: center;
  font-weight: 500;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout01-inr {
    display: block;
  }
  .tel-layout01 .l-ttl {
    font-size: 15px;
    margin: 0 auto 25px;
  }
  .tel-layout01 .l-tel {
    font-size: 30px;
    margin: 0 auto 20px;
  }
  .tel-layout01 .l-tel img {
    width: 22px;
  }
  .tel-layout01 .l-time {
    margin: 0 auto;
  }
}
.card-style01 > li {
  background-color: #FAF3DC;
  padding: 25px;
}
.card-style01 .card-img {
  margin-bottom: 25px;
}
.card-style01 .card-ttl {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
}
.card-style01 .card-ttl.row2 {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-style02 > li {
  border: 1px solid #e45652;
  padding: 25px;
}
.card-style02 .card-img {
  margin-bottom: 25px;
}
.card-style02 .card-ttl {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 15px;
}

.card-style01,
.card-style02 {
  display: grid;
}
.card-style01.col2,
.card-style02.col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.card-style01.col2 > li,
.card-style02.col2 > li {
  padding: 30px;
  border-radius: 30px;
}
.card-style01.col2 .card-img img,
.card-style02.col2 .card-img img {
  border-radius: 30px;
}
.card-style01.col3,
.card-style02.col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card-style01.col3 > li,
.card-style02.col3 > li {
  border-radius: 15px;
}
.card-style01.col3 .card-img img,
.card-style02.col3 .card-img img {
  border-radius: 15px;
}
.card-style01.col4,
.card-style02.col4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card-style01.col4 > li,
.card-style02.col4 > li {
  padding: 20px;
  border-radius: 15px;
}
.card-style01.col4 .card-img img,
.card-style02.col4 .card-img img {
  border-radius: 15px;
}

@media (max-width: 800px) {
  .card-style01 .card-ttl.row2 {
    height: auto;
  }
  .card-style01.col2,
  .card-style02.col2 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .card-style01.col2 > li,
  .card-style02.col2 > li {
    padding: 25px;
  }
  .card-style01.col3,
  .card-style02.col3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .card-style01.col3 > li,
  .card-style02.col3 > li {
    border-radius: 30px;
  }
  .card-style01.col3 .card-img img,
  .card-style02.col3 .card-img img {
    border-radius: 30px;
  }
  .card-style01.col4,
  .card-style02.col4 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .card-style01.col4 > li,
  .card-style02.col4 > li {
    padding: 25px;
    border-radius: 30px;
  }
  .card-style01.col4 .card-img img,
  .card-style02.col4 .card-img img {
    border-radius: 30px;
  }
}
.staff-layout02 .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
}
.staff-layout02 .l-img {
  width: 32%;
}
.staff-layout02 .l-img img {
  border-radius: 30px;
}
.staff-layout02 .l-desc {
  flex: 1;
}
.staff-layout02 .job {
  font-weight: 500;
  margin-bottom: 25px;
}
.staff-layout02 .l-ttl {
  color: #e45652;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  margin-bottom: 35px;
}
.staff-layout02 .name {
  font-size: 25px;
}
.staff-layout02 .kana {
  color: #ccc;
  font-size: 13px;
}
.staff-layout02 .card-profile {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .staff-layout02 .wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .staff-layout02 .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }
  .staff-layout02 .l-ttl {
    margin-bottom: 25px;
  }
  .staff-layout02 .name {
    font-size: 22px;
  }
  .staff-layout02 .kana {
    font-size: 12px;
  }
  .staff-layout02 .card-profile {
    margin-top: 30px;
  }
}
.card-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5%;
  font-size: 14px;
}
.card-profile .item {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  border: 1px solid #e45652;
  border-radius: 30px;
}
.card-profile .item .list-disc li::before {
  top: 12px;
}
.card-profile .card-ttl {
  color: #e45652;
  border-bottom: 1px dashed #D3CCC7;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .card-profile {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .card-profile .item {
    padding: 20px;
  }
}
.dl-career {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 12px 0;
  line-height: 1.5;
}

.faq-style03 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faq-style03 .item {
  padding: 40px 40px 40px 100px;
}
.faq-style03 .item + .item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.faq-style03 dt {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
}
.faq-style03 .faq-icon {
  color: #e45652;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 0;
  left: -60px;
}

@media (max-width: 800px) {
  .faq-style03 .item {
    padding: 40px 0 40px 60px;
  }
  .faq-style03 dt {
    line-height: 1.5;
    margin-bottom: 15px;
  }
}
.table-style01 {
  border: 1px solid #D3CCC7;
}
.table-style01 tr:not(:last-child) {
  border-bottom: 1px solid #D3CCC7;
}
.table-style01 th {
  background-color: #e45652;
  font-weight: 500;
  color: #fff;
  padding: 15px;
  width: 30%;
}
.table-style01 td {
  padding: 10px 30px;
}

.table-style02 {
  background-color: #fff;
  border: 1px solid #e1e1e1;
}
.table-style02 th,
.table-style02 td {
  border: 1px solid #e1e1e1;
  line-height: 1.7;
  padding: 15px;
}
.table-style02 th {
  background-color: #e45652;
  font-weight: 500;
  color: #fff;
  vertical-align: middle;
  width: 30%;
}
.table-style02 th.bg01 {
  background-color: #FAF3DC;
  color: #e45652;
}
.table-style02 .table-img {
  text-align: center;
}

@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-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: #e45652;
  }
  .table-scroll table {
    margin-bottom: 10px;
    width: 200%;
  }
}
.gallery-slider01 {
  overflow: hidden;
}
.gallery-slider01 .splide {
  margin: 0 auto;
}
.gallery-slider01 .splide__track {
  overflow: visible;
}
.gallery-slider01 .splide__slide {
  opacity: 0.2;
  transition: opacity 0.5s ease-in-out;
}
.gallery-slider01 .splide__slide img {
  border-radius: 30px;
  max-height: 500px;
  object-fit: cover;
}
.gallery-slider01 .splide__slide.is-active {
  opacity: 1;
}
.gallery-slider01 .splide__arrow--prev {
  left: calc((100% - 872px) / 2);
}
.gallery-slider01 .splide__arrow--next {
  right: calc((100% - 872px) / 2);
}
.gallery-slider01 .item-desc {
  margin-top: 25px;
}
.gallery-slider01 .item-ttl {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 5px;
}

@media (max-width: 800px) {
  .gallery-slider01 .item-desc {
    margin-top: 15px;
  }
  .gallery-slider01 .item-ttl {
    font-size: 1.125rem;
    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:nth-child(n+3) {
  margin-top: 40px;
}
.list-col2 > .list-item:last-child {
  margin-right: 0;
}
.list-col2 .list-img {
  margin-bottom: 20px;
}
.list-col2 .list-img img {
  border-radius: 30px;
}
.list-col2 .list-ttl {
  font-size: 22px;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .list-col2 {
    display: block;
  }
  .list-col2 > .list-item {
    width: 100%;
  }
  .list-col2 > .list-item:nth-child(odd) {
    margin-right: 0;
  }
  .list-col2 > .list-item:nth-child(n+2) {
    margin-top: 30px;
  }
  .list-col2 .list-img {
    margin-bottom: 15px;
  }
}
.list-col3 {
  display: flex;
  flex-wrap: wrap;
}
.list-col3 > .list-item {
  width: 31%;
}
.list-col3 > .list-item:nth-child(n) {
  margin-right: 3%;
}
.list-col3 > .list-item:nth-child(n+4) {
  margin-top: 40px;
}
.list-col3 > .list-item:nth-child(3n) {
  margin-right: 0;
}
.list-col3 .list-img {
  margin-bottom: 20px;
}
.list-col3 .list-img img {
  border-radius: 30px;
}
.list-col3 .list-ttl {
  font-size: 22px;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .list-col3 {
    display: block;
  }
  .list-col3 > .list-item {
    width: 100%;
  }
  .list-col3 > .list-item:nth-child(odd) {
    margin-right: 0;
  }
  .list-col3 > .list-item:nth-child(n+3) {
    margin-top: 30px;
  }
  .list-col3 .list-img {
    margin-bottom: 15px;
  }
}
.list-anchor-link02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
.list-anchor-link02 a {
  display: flex;
  align-items: center;
  background-color: #FAF3DC;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding: 0 35px 0 15px;
  min-height: 60px;
  transition: opacity 0.3s;
}
.list-anchor-link02 a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #e45652;
  border-bottom: 2px solid #e45652;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
}
.list-anchor-link02 a:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  .list-anchor-link02 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .list-anchor-link02 a {
    font-size: 13px;
    justify-content: center;
    text-align: center;
    padding: 8px 8px 20px;
    min-height: 0;
    height: 100%;
  }
  .list-anchor-link02 a::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
  }
  .list-anchor-link02 a:hover {
    opacity: 0.7;
  }
}
.flow-style03 {
  display: grid;
  gap: 40px;
}
.flow-style03 > li {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 50px;
  position: relative;
  min-height: 150px;
}
.flow-style03 > li:not(:last-child)::before {
  content: "";
  background-color: #333;
  width: 1px;
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 33px;
}
.flow-style03 > li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #333 transparent transparent transparent;
  position: absolute;
  bottom: -1px;
  left: 28px;
}
.flow-style03 .flow-num {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Literata", serif;
}
.flow-style03 .flow-num::before {
  content: attr(data-en);
  display: block;
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 5px;
}
.flow-style03 .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}
.flow-style03 .flow-img {
  width: 35%;
}
.flow-style03 .flow-img img {
  border-radius: 30px;
}
.flow-style03 .flow-desc {
  flex: 1;
  padding-top: 10px;
}
.flow-style03 .flow-ttl {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .flow-style03 {
    gap: 40px;
  }
  .flow-style03 > li {
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
  }
  .flow-style03 > li:not(:last-child)::before {
    top: 55px;
    left: 24px;
  }
  .flow-style03 > li:not(:last-child)::after {
    left: 20px;
  }
  .flow-style03 .flow-num {
    font-size: 25px;
  }
  .flow-style03 .flow-num::before {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .flow-style03 .wrap {
    flex-direction: column;
    gap: 15px;
  }
  .flow-style03 .flow-img {
    width: 100%;
  }
  .flow-style03 .flow-ttl {
    margin-bottom: 10px;
  }
  .flow-style03 .flow-desc {
    padding-top: 0;
  }
}
.merit-demerit01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4%;
}
.merit-demerit01 .item {
  background: #FAF3DC;
  border-top: 5px solid #e45652;
  padding: 35px;
  border-radius: 30px;
}
.merit-demerit01 .item:nth-of-type(2) {
  border-color: #fccf04;
}
.merit-demerit01 .item-ttl {
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 25px;
}
.merit-demerit01 .item-ttl::after {
  content: attr(data-en);
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-left: 15px;
}

@media (max-width: 800px) {
  .merit-demerit01 {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .merit-demerit01 .item {
    padding: 35px 25px;
  }
  .merit-demerit01 .item-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .merit-demerit01 .item-ttl::after {
    font-size: 12px;
  }
}
.box-style01 {
  background: #FAF3DC;
  padding: 5%;
  border-radius: 30px;
}
.box-style01 .box-ttl {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 20px;
  }
  .box-style01 .box-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.list-disc li {
  position: relative;
  padding-left: 15px;
}
.list-disc li:before {
  content: "";
  background: #e45652;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 15px;
  width: 5px;
  height: 5px;
}

@media (max-width: 800px) {
  .list-disc li:before {
    top: 11px;
  }
}
.list-disc.col2,
.list-check.col2,
.list-num.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.list-disc.col3,
.list-check.col3,
.list-num.col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.list-disc.col4,
.list-check.col4,
.list-num.col4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

@media (max-width: 800px) {
  .list-disc.col2, .list-disc.col3, .list-disc.col4,
  .list-check.col2,
  .list-check.col3,
  .list-check.col4,
  .list-num.col2,
  .list-num.col3,
  .list-num.col4 {
    grid-template-columns: 1fr;
    grid-gap: 5px;
  }
}
.box-style03 {
  background: #FAF3DC;
  padding: 40px;
  border-radius: 30px;
}
.box-style03 .box-ttl {
  display: flex;
  gap: 15px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .box-style03 {
    padding: 30px;
  }
}
.case-layout {
  padding: 6%;
  border: 1px solid #e45652;
  background-color: #fff;
  border-radius: 30px;
}
.case-layout time {
  color: #e45652;
  display: block;
  font-size: 12px;
  margin-right: 15px;
}
.case-layout .category {
  display: inline-block;
  background-color: #fccf04;
  color: #fff;
  font-size: 11px;
  padding: 5px 5px;
  margin-right: 10px;
  border-radius: 10px;
}
.case-layout .l-ttl {
  font-size: 24px;
  margin-bottom: 30px;
}
.case-layout .post-data {
  display: flex;
  margin-bottom: 20px;
}
.case-layout .before-after {
  margin-bottom: 30px;
}
.case-layout .l-table {
  background-color: #fff;
  border: 1px solid #D3CCC7;
}
.case-layout .l-table th,
.case-layout .l-table td {
  border: 1px solid #D3CCC7;
  line-height: 1.5;
  font-size: 15px;
  padding: 15px;
}
.case-layout .l-table th {
  background-color: #e45652;
  color: #fff;
  vertical-align: top;
  text-align: left;
  width: 25%;
}
.case-layout .l-btn {
  text-align: center;
  margin-top: 50px;
}
.case-layout .l-item {
  margin-top: 50px;
}
.case-layout .item-ttl {
  border-bottom: 1px solid #e45652;
  font-size: 18px;
  position: relative;
  padding: 0 0 12px;
  margin: 0 0 25px;
}
.case-layout .item-ttl::after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.case-layout + .case-layout {
  margin-top: 50px;
}
.case-layout .before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 7%;
  position: relative;
}
.case-layout .before-after::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(0 0, 17px 14.5px, 0 29px);
  width: 17px;
  height: 29px;
  background-color: #e45652;
}
.case-layout .before-after .item {
  text-align: center;
  position: relative;
}
.case-layout .before-after figure {
  display: grid;
  place-items: center;
  height: 260px;
  position: relative;
  margin-bottom: 5px;
}
.case-layout .before-after figure img {
  object-fit: contain;
  object-position: center;
  max-height: 260px;
  border-radius: 15px;
}
.case-layout .before-after p {
  font-weight: 500;
  line-height: 1;
  text-align: center;
  font-size: 20px;
  font-family: "Literata", serif;
  color: #e45652;
}

@media (max-width: 800px) {
  .case-layout .before-after {
    grid-template-columns: 1fr;
    grid-gap: 50px;
    position: relative;
  }
  .case-layout .before-after::before {
    transform: translate(-50%, -50%) rotate(90deg);
    clip-path: polygon(0 0, 17px 14.5px, 0 29px);
  }
  .case-layout .before-after figure {
    height: auto;
  }
  .case-layout .before-after figure img {
    max-height: initial;
  }
}
.box-style02 {
  border: 2px solid #e45652;
  border-radius: 30px;
  padding: 5%;
}
.box-style02 .box-ttl {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 20px;
  }
  .box-style02 .box-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.price-style01 {
  display: grid;
  grid-gap: 20px;
}
.price-style01 .list-intro {
  border-bottom: 1px dotted #55352C;
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-weight: 500;
  font-size: 18px;
  padding: 0 0 5px;
}
.price-style01 .list-desc {
  color: #747474;
  font-size: 13px;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .price-style01 {
    grid-gap: 15px;
  }
  .price-style01 .list-intro {
    font-size: 16px;
  }
}
/*------------
プライバシーポリシー
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #e45652;
  font-size: 18px;
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-family: "Noto Sans JP", sans-serif;
}
.dl-privacy dd + dt {
  margin-top: 30px;
}

.list-privacy li {
  position: relative;
  padding: 0 0 0 15px;
}
.list-privacy li::before {
  background: #e45652;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
}
.list-privacy li + li {
  margin-top: 3px;
}

.u-bg {
  background-color: #FAF3DC;
}

.u-tac-sp-tal {
  text-align: center;
}

@media (max-width: 800px) {
  .u-tac-sp-tal {
    text-align: left;
  }
}
.u-map > iframe {
  width: 100%;
}

.u-btn-wrap .btn-more {
  display: inline;
}

@media (max-width: 800px) {
  .u-btn-wrap .btn-more {
    display: block;
  }
}
/*------------
Footer
--------------*/
.footer {
  position: relative;
  background-color: #FAF3DC;
}
.footer-top {
  padding: 130px 0 100px;
  display: flex;
}
.footer-top .f-left {
  flex: 1;
  margin-right: 58px;
}
.footer-top .f-right {
  flex: 1;
}
.footer .f-bottom {
  font-size: 15px;
  padding-bottom: 180px;
  display: flex;
  position: relative;
  z-index: 3;
}
.footer .f-bottom .f-left {
  flex: 1;
}
.footer .f-bottom .f-right {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1340px) {
  .footer .f-bottom .f-right {
    width: 65%;
  }
}
.footer .f-logo {
  display: block;
  max-width: 167px;
  margin-bottom: 26px;
}
.footer .f-access {
  margin-bottom: 15px;
}
.footer .f-cta {
  margin-bottom: 40px;
}
.footer .f-cta a:nth-child(1) {
  margin-bottom: 25px;
}
.footer .f-cta .f-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 214px;
  height: 46px;
  border-radius: 23px;
  background-color: #EFE7CA;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}
.footer .f-cta .f-btn span {
  display: block;
  margin-left: 9px;
  font-size: 12px;
  border: 1px solid #55352C;
  border-radius: 3px;
  padding: 3px 6px 4px;
  line-height: 1;
}
.footer .f-cta .f-btn:hover {
  opacity: 0.5;
}
.footer .f-bnr-wrap .f-bnr {
  display: block;
  width: 100%;
  max-width: 293px;
  transition: 0.3s;
}
.footer .f-bnr-wrap .f-bnr:hover {
  opacity: 0.5;
}
.footer .f-bnr-wrap .f-bnr:first-child {
  margin-bottom: 15px;
}
.footer .f-navi {
  display: flex;
  margin-right: 88px;
}
.footer .f-navi-item {
  border-left: 1px solid #B7ADA7;
  padding: 0 0 0 25px;
}
.footer .f-navi-item:not(:last-child) {
  border-right: 1px solid #B7ADA7;
  padding-right: 73px;
}
.footer .f-navi-ttl {
  font-weight: 500;
  color: #A08977;
  margin-bottom: 34px;
  padding-left: 20px;
  position: relative;
}
.footer .f-navi-ttl::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #e45652;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.footer .f-navi-list li {
  line-height: 2.3;
}
.footer .f-navi-list li.-mt {
  margin-top: 1rem;
}
.footer .f-navi-list li a:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 14px;
  text-align: right;
  color: #A88F7C;
}
.footer .copyright-links {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  color: #55352C;
}
.footer .copyright-links li + li::before {
  content: "|";
  margin: 0 15px;
}
.footer .copyright-links a {
  line-height: 1.5;
}
.footer .copyright-links a:hover {
  text-decoration: underline;
}
.footer .pagetop {
  display: block;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  position: absolute;
  bottom: 184px;
  right: 50px;
  z-index: 2;
  transition: 0.3s;
  border: 1px solid #55352C;
  z-index: 9;
}
.footer .pagetop:hover {
  transform: translateY(-10px);
}
.footer .pagetop:after {
  content: "";
  width: 19px;
  height: 19px;
  position: absolute;
  background: url(../images/share/pgaetop.svg) center/contain no-repeat;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1400px) {
  .footer .pagetop {
    bottom: 20%;
  }
}
.footer .f-decotxt {
  position: absolute;
  font-family: "Literata", serif;
  font-size: 16.4vw;
  font-weight: 600;
  line-height: 0.9;
  color: rgba(231, 113, 139, 0.2);
  bottom: 0;
  right: 120px;
  overflow: hidden;
  z-index: 0;
}
.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/share/footer_deco01.svg) bottom center/100% no-repeat;
  width: 100%;
  height: 21%;
  z-index: 1;
}
@media (max-width: 1300px) {
  .footer::before {
    height: 14%;
  }
}

.fixed-menu {
  position: fixed;
  z-index: 99;
  top: 20%;
  right: 0;
}

.fixed-menu02 {
  border-radius: 8px 0 0 8px;
  background: #fccf04;
  color: #fff;
  display: flex;
  transition: 0.3s;
  z-index: 10;
}
.fixed-menu02:hover {
  opacity: 0.5;
}
.fixed-menu02 .ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  white-space: nowrap;
  font-feature-settings: normal;
  width: 110px;
  height: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.fixed-menu02 .ttl i {
  margin-bottom: 7px;
}
.fixed-menu02 + .fixed-menu02 {
  margin-top: 16px;
}
.fixed-menu02.color01 {
  background-color: #e45652;
}

@media (max-width: 800px) {
  .footer-top {
    padding: 60px 0;
    display: block;
  }
  .footer-top .f-left {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .footer .f-bottom {
    padding-bottom: 44%;
    display: block;
  }
  .footer .f-bottom .f-right {
    width: 100%;
  }
  .footer .f-bottom .f-left {
    margin-bottom: 50px;
  }
  .footer .f-cta {
    margin-bottom: 30px;
  }
  .footer .f-navi {
    display: block;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .footer .f-navi-item {
    border-left: none;
    padding: 20px 0 0;
  }
  .footer .f-navi-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #B7ADA7;
    padding-right: 0;
    padding-bottom: 20px;
  }
  .footer .f-navi-ttl {
    margin-bottom: 20px;
  }
  .footer .f-navi-list li {
    line-height: 1.8;
  }
  .footer .copyright {
    text-align: left;
  }
  .footer .copyright-links {
    margin-bottom: 10px;
    justify-content: flex-start;
  }
  .footer .pagetop {
    display: none;
  }
  .footer .f-decotxt {
    font-size: 70px;
    line-height: 1;
    width: 100%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
  }
  .footer::before {
    width: 100%;
    height: 7%;
    background: url(../images/share/f-deco_sp.svg) bottom center/100% no-repeat;
    bottom: 49px;
  }
  .fixed-menu01, .fixed-menu02 {
    display: none;
  }
}
/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*普通投稿*/
.list-post-type01 .list-item {
  border-bottom: 1px solid #D3CCC7;
  padding-bottom: 40px;
}
.list-post-type01 .list-item:not(:last-child) {
  margin-bottom: 40px;
}

.list-post-type02 .list-item {
  padding: 50px;
  border: 1px solid #e45652;
}
.list-post-type02 .list-item:not(:last-child) {
  margin-bottom: 50px;
}
.list-post-type02 .list-cont + .list-cont {
  margin-top: 35px;
}
.list-post-type02 .btn-more {
  display: block;
  margin: 45px auto 0;
}
.list-post-type02.single .list-item {
  padding: 0;
  border: none;
}

.list-post-type03 {
  display: flex;
  flex-wrap: wrap;
}
.list-post-type03 .list-item {
  width: 31.25%;
  transition: 0.4s ease-in-out;
}
.list-post-type03 .list-item a:hover .list-img img {
  transform: scale(1.1);
}
.list-post-type03 .list-item:not(:nth-child(3n)) {
  margin-right: 3.125%;
}
.list-post-type03 .list-item:nth-child(n+4) {
  margin-top: 50px;
}
.list-post-type03 .list-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.list-post-type03 .list-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.5s;
}
.list-post-type03 .list-ttl {
  font-size: 18px;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-word;
}

.post-layout {
  display: flex;
}
.post-layout .post-img {
  flex: 1;
  margin-right: 50px;
}
.post-layout .post-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-layout .post-desc {
  flex: 2;
}

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

/*投稿本文用CSS*/
.postdata {
  overflow-wrap: break-word;
  word-break: break-all; /* 単語の分割はデフォルトに依存 */
  line-break: strict;
}
.postdata h4 {
  font-size: 18px;
  color: #fccf04;
}
.postdata h5 {
  font-size: 17px;
  padding-left: 10px;
  position: relative;
}
.postdata h5:after {
  content: "-";
  color: #fccf04;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.postdata h6 {
  font-size: 16px;
  color: #fccf04;
}
.postdata .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.postdata .screen-reader-text:focus {
  background-color: #eee;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.postdata iframe {
  max-width: 100%;
}
.postdata p, .postdata ul, .postdata ol {
  margin-bottom: 15px;
}
.postdata a:not(.wp-block-button__link) {
  text-decoration: underline;
}
.postdata a:focus-visible {
  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;
}
.postdata sub {
  font-size: 11px;
  position: relative;
  bottom: -0.1em;
}
.postdata sup {
  font-size: 11px;
  position: relative;
  top: -0.1em;
}
.postdata .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.postdata .screen-reader-text:focus {
  background-color: #eee;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.postdata iframe {
  max-width: 100%;
}
.postdata .wp-block-button__link {
  background-color: #e45652;
  border: 1px solid #e45652;
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s;
}
.postdata .wp-block-button__link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: border-color 0.3s;
}
.postdata .wp-block-button__link:hover {
  opacity: 1;
  background-color: #fff;
  color: #e45652;
}

.post-data {
  line-height: 1;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.post-data time {
  font-size: 14px;
  color: #93817C;
  line-height: 1;
}
.post-data .post-category01, .post-data .post-category02 {
  margin-left: 15px;
}

.post-ttl {
  word-break: break-all;
}

.post-category01 {
  border: 1px solid #e45652;
  color: #e45652;
  line-height: 1;
  padding: 5px 10px;
  display: inline-block;
}
.post-category01 span {
  font-size: 12px;
}
.post-category01 span:not(:first-child):before {
  content: " / ";
}

.post-category02 {
  line-height: 1;
  margin-left: -2px;
}
.post-category02 span {
  display: inline-block;
  font-size: 12px;
  background-color: #fccf04;
  border-radius: 13px;
  color: #fff;
  padding: 7px 8px;
  text-align: center;
  margin: 4px;
}

/*セレクト式カテゴリー*/
.select-area {
  margin-bottom: 50px;
}
.select-area .select-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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 #e45652;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.select-area .select-category {
  -webkit-appearance: none;
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  border-radius: 0;
  background: #F6F6F6;
  font-size: 16px;
  color: #e45652;
  vertical-align: middle;
  height: 50px;
  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: "Literata", serif;
  font-weight: 500;
}
.post-number a {
  color: #a5a5a5;
  display: inline-block;
  padding: 0 10px 15px;
}
.post-number a:hover {
  color: #e45652;
}
.post-number .current {
  color: #e45652;
  display: inline-block;
  padding: 0 10px 15px;
  position: relative;
}
.post-number .current::after {
  content: "";
  border-bottom: 2px solid #e45652;
  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: "Literata", serif;
  font-weight: 500;
}
.post-number-single a {
  display: inline-block;
  color: #e45652;
}
.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;
  }
  .list-post-type02 .list-item {
    padding: 25px 20px;
  }
  .list-post-type02 .list-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .list-post-type02 .list-cont + .list-cont {
    margin-top: 20px;
  }
  .list-post-type02 .btn-more {
    display: block;
    margin: 30px auto 0;
  }
  .list-post-type03 {
    display: block;
  }
  .list-post-type03 .list-item {
    width: 100%;
  }
  .list-post-type03 .list-item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .list-post-type03 .list-item:nth-child(n+2) {
    margin-top: 30px;
  }
  .list-post-type03 .list-img {
    margin-bottom: 15px;
  }
  .list-post-type03 .list-img img {
    height: 60vw;
  }
  .list-post-type03 .list-ttl {
    font-size: 16px;
  }
  .post-layout {
    display: block;
  }
  .post-layout .post-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .post-layout .post-desc {
    width: 100%;
  }
  /*詳細ページ*/
  .post-single-img {
    margin-bottom: 30px;
  }
  .postdata h4 {
    font-size: 17px;
  }
  .postdata h5 {
    font-size: 16px;
  }
  .postdata h6 {
    font-size: 15px;
  }
  .post-data {
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .post-data time {
    line-height: 2;
  }
  .post-data .post-category01 {
    margin-left: 15px;
  }
  .post-data .post-category02 {
    margin-left: 15px;
  }
  /*詳細ページ*/
  /*セレクト式カテゴリー*/
  /*一覧用ページャー*/
  .post-number {
    margin-top: 60px;
  }
}
.l-post-single .l-ttl {
  font-size: 32px;
  margin-bottom: 25px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.l-post-single .post-desc {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.l-txt {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-all;
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: flex;
  justify-content: space-between;
  padding: 100px 0;
  margin: 0 auto;
  max-width: 1400px;
}

.main-contents {
  padding: 0 70px;
  width: calc(100% - 220px);
  max-width: 1200px;
  margin: 0 auto;
}

.side-contents {
  padding: 0 40px;
  width: 220px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-contents-ttl {
  border-bottom: 1px solid #e8ecf0;
  font-size: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.side-area-item + .side-area-item {
  margin-top: 30px;
}

.side-area-item-ttl {
  font-size: 13px;
  margin-bottom: 7px;
}

.side-area-links li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}
.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 7px;
  left: 0;
}
.side-area-links li + li {
  margin-top: 5px;
}
.side-area-links a {
  display: inline-block;
}
.side-area-links a:hover {
  text-decoration: underline;
}

.side-area-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  border-radius: 0;
  border: none;
  border: 1px solid #e8ecf0;
  color: #333;
  vertical-align: middle;
  padding: 10px 20px 10px 15px;
  margin: 0;
  width: 100%;
  height: 50px;
}

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 50px 5vw;
    width: 100%;
  }
  .sidebar-layout .tall + .tall {
    margin-top: 50px;
  }
  .sidebar-layout.sp-reverse {
    flex-direction: column;
  }
  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }
  .main-contents {
    width: 100%;
    padding: 0;
  }
  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }
  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }
  .side-contents-ttl {
    font-size: 15px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .side-area-item + .side-area-item {
    margin-top: 30px;
  }
}
/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
.btn-more {
  display: block;
  width: fit-content;
  padding: 1px 38px 0 0;
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
  transition: 0.3s;
  position: relative;
}
.btn-more:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/btn_arrow.svg) center/contain no-repeat;
  width: 28px;
  height: 28px;
  transition: 0.3s;
}
.btn-more:hover {
  opacity: 0.5;
}
.btn-more:hover:before {
  transform: translateX(5px);
}
.btn-more.center {
  margin-left: auto;
  margin-right: auto;
}
.btn-more.right {
  margin-left: auto;
  margin-right: 0;
}
.btn-more.wide {
  max-width: 320px;
}

.btn-icon {
  background: #e45652;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  color: #fff;
}
.btn-icon img {
  width: 20px;
  margin-right: 10px;
}

.btn-line {
  background: #4CC764;
  color: #fff;
  padding: 10px 25px;
}
.btn-line img {
  line-height: 1;
  margin: 0 10px 0 -20px;
}

.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 {
    min-width: auto;
    max-width: none;
  }
  .btn-icon,
  .btn-line {
    width: 100%;
  }
  .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;
}

.fs11 {
  font-size: 11px;
}

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

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

.underline {
  text-decoration: underline;
}

.marker span {
  background: linear-gradient(transparent 60%, #FAF3DC 60%);
  padding-bottom: 3px;
}
.marker .large {
  font-size: 30px;
}
.marker .small {
  font-size: 20px;
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}
.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}
.link:is(:hover, :focus) {
  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: 90px !important;
}

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

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

@media (max-width: 800px) {
  .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;
  }
}
/*診療カレンダー*/
:root {
  --event01: #e45652;
  --event02: #fccf04;
  --event03: #55352C;
  --event04: #c41a3f;
}

.business-calendar-box-wrap {
  margin-bottom: 15px;
}
.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 0 !important;
}
.business-calendar-box-wrap .business-calendar caption {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border: 0;
  margin: 0 0 10px;
}
.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 25px;
  vertical-align: -1px;
}
.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}
.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #e45652 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}
.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(180deg);
}
.business-calendar-box-wrap .business-calendar th {
  background: #e45652;
  color: #fff;
  border: 0;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  padding: 5px;
  width: 14%;
}
.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 0;
  position: relative;
  font-size: 14px;
  padding: 5px 5px 23px;
  z-index: 0;
}
.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0;
  font-size: 14px;
}
.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 15px;
}
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px 10px 23px;
}
.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}
.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}
.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
  background: #FFF;
  opacity: 1;
}
.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}
.business-calendar-box-wrap .business-calendar .attr0::before {
  color: var(--event01);
  content: "×";
}
.business-calendar-box-wrap .business-calendar .attr1::before {
  color: var(--event02);
  content: "○";
}
.business-calendar-box-wrap .business-calendar .attr2::before {
  color: var(--event03);
  content: "□";
}
.business-calendar-box-wrap .business-calendar .attr3::before {
  color: var(--event04);
  content: "△";
}

.list-event {
  display: flex;
}
.list-event li {
  font-size: 15px;
  line-height: 1;
  margin: 0 20px 0 0;
}
.list-event i {
  margin: 0 5px 0 0;
}
.list-event .event01 {
  color: var(--event01);
}
.list-event .event02 {
  color: var(--event02);
}
.list-event .event03 {
  color: var(--event03);
}
.list-event .event04 {
  color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .list-event {
    display: block;
  }
  .list-event li + li {
    margin-top: 5px;
  }
}
/*診療時間*/
.time-table-ttl {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.time-table {
  border: 1px solid #55352C;
  padding: 0 25px 20px;
  border-radius: 15px;
  text-align: center;
  overflow: hidden;
}
.time-table-head {
  border-bottom: 1px solid #55352C;
  margin-bottom: 21px;
}
.time-table-head .item {
  font-weight: 500;
  padding: 21px 0 17px;
}
.time-table-body + .time-table-body {
  padding-top: 10px;
}
.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}
.time-table-head, .time-table-body {
  display: grid;
  grid-template-columns: 150px repeat(6, 1fr) 65px;
}
.time-table.large .time-table-head, .time-table.large .time-table-body {
  grid-template-columns: 220px repeat(6, 1fr) 100px;
}

.time-table-txt {
  line-height: 1.7;
  margin-top: 15px;
  font-size: 14px;
}

@media (max-width: 800px) {
  .time-table-head {
    font-size: 12px;
  }
  .time-table-head .item {
    padding: 5px 0;
  }
  .time-table-body .item {
    padding: 5px 0;
    font-size: 13px;
  }
  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 10px;
  }
  .time-table-head, .time-table-body {
    grid-template-columns: 70px repeat(6, 1fr) 50px !important;
  }
  .time-table-txt {
    font-size: 13px;
  }
}
.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: 23px;
  font-family: "Literata", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-left: 25px;
  position: relative;
  transition: 0.3s;
}
.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: 17px;
  height: 17px;
}
.tel:hover {
  opacity: 0.5;
}

@media (max-width: 800px) {
  .map {
    height: 300px;
  }
  .tel {
    font-size: 24px;
    padding-left: 25px;
  }
  .tel:before {
    width: 20px;
    height: 25px;
  }
}
/*------------
splide-core.min.css　※※※編集禁止※※※
-------------*/
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

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

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.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;
  -ms-flex-negative: 0;
  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;
}

/*-----------------------------------------------------------
  splide
-----------------------------------------------------------*/
/* 各種色設定 */
:root {
  --splide-arrow-color: #e45652; /* 矢印 */
  --splide-focus-color: #e45652; /* タブ移動によるフォーカス時のアウトライン */
  --splide-pagination-color: #e45652; /* アクティブ時のページネーション */
  --splide-progress-color: #e45652; /* プログレスバー */
  --splide-toggle-color: #e45652; /* 再生ボタン */
  --splide-track-color: #e45652; /* サムネイルの枠 */
}

.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}
.splide.is-focus-in .splide__arrow:focus,
.splide.is-focus-in .splide__pagination__page:focus,
.splide.is-focus-in .splide__slide:focus,
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

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

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

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

.splide__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  list-style: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress {
  background: #ddd;
  margin-top: 10px;
}
.splide__progress__bar {
  width: 0;
  background: var(--splide-progress-color);
  height: 3px;
}

.splide__slide {
  box-sizing: border-box;
  flex-shrink: 0;
  list-style: none !important;
  margin: 0;
  position: relative;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}

.splide__arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 35px;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.2s;
}
.splide__arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--splide-arrow-color);
}
.splide__arrow:hover:not(:disabled), .splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow--prev {
  left: 20px;
  transform: translateY(-50%) scaleX(-1);
}

.splide__arrow--next {
  right: 20px;
}

.splide__pagination__page {
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 5px;
  opacity: 1;
  width: 8px;
  transition: transform 0.2s linear;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  transform: scale(1.4);
  z-index: 1;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
@media (max-width: 800px) {
  .splide__arrow {
    width: 25px;
    height: 25px;
  }
  .splide__arrow--prev {
    left: 10px;
  }
  .splide__arrow--next {
    right: 10px;
  }
}
/*------------
アニメーション
--------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}
.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*------------
Loading
-------------*/
#loading {
  width: 100vw;
  height: 100vh;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

#loading_barWrap {
  width: 30vw;
  height: calc(1rem + 5px);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

#loading_bar {
  width: 0;
  height: 5px;
  background: #fff;
  transition-duration: 1s;
}

.text {
  text-align: center;
  color: #fff;
}

.loadingNone {
  animation: loadingAnime 1s forwards;
}

@keyframes loadingAnime {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}/*# sourceMappingURL=style.css.map */
