@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/*-----------------------------------------------------------
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.8em;
}

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;
}

a {
  transition: .5s;
}

a:hover {
  opacity: 0.5;
}

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

:target {
  scroll-margin-top: clamp(68px, calc(154 / 1800 * 100vw), 154px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
}

body,
html {
  height: auto;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 17px;
  font-weight: 500;
  line-height: 2.3em;
  letter-spacing: .05em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  background: #FFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .05em;
}

th,
dt {
  font-family: "Noto Sans JP", sans-serif;
}

.link {
  text-decoration: underline;
}

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

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

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

p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, calc(17 / 1024 * 100vw), 1.7rem);
  line-height: 2.3em;
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 95%;
}

.container.wide {
  max-width: 1200px;
}

.container.narrow {
  max-width: 800px;
}

@media (max-width: 800px) {
  .container {
    max-width: none;
    min-width: auto;
  }

  p {
    font-size: 14px;
  }
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: sticky;
  top: 0;
  width: 100%;
  margin: auto;
  z-index: 200;
}

.header.obs_scroll_on {
  background: #FFF;
}

.header.obs_scroll_on .h-wrapper {
  padding: calc(15 / 1800 * 100%) calc(50 / 1800 * 100%);
}

.header.obs_scroll_on .h-logo {
  width: clamp(108px, calc(159.61 / 1024 * 100vw), 159.61px);
}

.header.under {
  background: #FFF;
}

.header .h-container {
  max-width: 1800px;
  margin: auto;
}

.header .h-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(15 / 1800 * 100%) calc(50 / 1800 * 100%) calc(20 / 1800 * 100%);
}

.header .h-logo {
  position: relative;
  width: clamp(180px, calc(226 / 1024 * 100vw), 226px);
  height: auto;
  margin: 0;
  z-index: 10;
  transition: 0.5s;
}

.header .h-logo .h-logo-link {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

@media (max-width: 800px) {
  .header {
    position: static !important;
    padding: 16px 16px;
  }

  .header .h-container {
    display: grid;
    align-items: center;
    height: auto;
  }

  .header .h-container .h-wrapper {
    justify-content: flex-start;
  }

  .header .h-wrapper {
    padding: 0;
  }

  .header .h-logo {
    width: 133px;
  }

  .header .h-logo.is-open {
    position: fixed;
    top: 16px;
    left: 16px;
  }
}

/*------------
Gnavi
--------------*/
/*normal*/
.gnavi {
  /*dropdown*/
}

.gnavi .pc-navi .wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: auto;
}

.gnavi .pc-navi .wrap .humberger-pc {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: clamp(30px, calc(40 / 1024 * 100vw), 40px);
  aspect-ratio: 40 /42;
  transition: .5s;
  z-index: 10000;
}

.gnavi .pc-navi .wrap .humberger-pc:hover {
  opacity: 0.5;
}

.gnavi .pc-navi .wrap .humberger-pc div.lines {
  position: relative;
  /*width: clamp(22.8px, calc(38 / 1800 * 100vw), 38px);*/
  width: 100%;
  height: clamp(9.75px, calc(13 / 1024 * 100vw), 13px);
  margin: 0 auto;
}

.gnavi .pc-navi .wrap .humberger-pc div.lines span {
  position: absolute;
  left: 0;
  transform-origin: center;
  -o-transition: .4s;
  transition: .4s;
  width: 100%;
  height: 1px;
  opacity: 1;
  background: #333333;
}

.gnavi .pc-navi .wrap .humberger-pc div.lines span:nth-of-type(1) {
  top: 0;
}

.gnavi .pc-navi .wrap .humberger-pc div.lines span:nth-of-type(2) {
  top: 50%;
}

.gnavi .pc-navi .wrap .humberger-pc div.lines span:nth-of-type(3) {
  bottom: 0;
}

.gnavi .pc-navi .wrap .humberger-pc div.ttl {
  position: relative;
  width: 100%;
  margin-top: calc(13 / 100 * 100%);
}

.gnavi .pc-navi .wrap .humberger-pc div.ttl span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, calc(13/ 1024 * 100vw), 1.3rem);
  line-height: calc(19 / 13 * 1em);
  font-weight: bold;
  color: #37414F;
}

.gnavi .pc-navi .wrap .humberger-pc div.ttl span.close {
  display: none;
}

.gnavi .pc-navi .wrap .humberger-pc.is-open {
  --transY_p: clamp(4px, calc(6.5 / 1800 * 100vw), 6.5px);
  --transY_n: clamp(-4.5px, calc(4.5 / 1800 * -100vw), -4px);
}

.gnavi .pc-navi .wrap .humberger-pc.is-open div.lines span {
  top: 50%;
}

.gnavi .pc-navi .wrap .humberger-pc.is-open div.lines span:nth-of-type(1) {
  -webkit-transform: translate(0%, -50%) rotate(-45deg);
  -ms-transform: translate(0%, -50%) rotate(-45deg);
  transform: translate(0%, -50%) rotate(-45deg);
}

.gnavi .pc-navi .wrap .humberger-pc.is-open div.lines span:nth-of-type(2) {
  -webkit-transform: translate(0%, -50%) rotate(45deg);
  -ms-transform: translate(0%, -50%) rotate(45deg);
  transform: translate(0%, -50%) rotate(45deg);
}

.gnavi .pc-navi .wrap .humberger-pc.is-open div.lines span:nth-of-type(3) {
  opacity: 0;
}

.gnavi .pc-navi .wrap .humberger-pc.is-open div.ttl span.close {
  display: block;
}

.gnavi .pc-navi .wrap .humberger-pc.is-open div.ttl span.menu {
  display: none;
}

.gnavi .btn-wrap {
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  margin-right: 30px;
}

.gnavi .btn-wrap a.tel-wrap {
  line-height: 0;
  text-align: center;
}

.gnavi .btn-wrap a.tel-wrap span.btm {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: clamp(1rem, calc(13 / 1024 * 100vw), 1.3rem);
  line-height: calc(17 / 13 * 1em);
  color: #333333;
}

.gnavi .btn-wrap .h-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  font-family: "FOT-筑紫A丸ゴシック Std B";
}

.gnavi .btn-wrap .h-btn img {
  width: clamp(14px, calc(17 / 1024 * 100vw), 20px);
  margin-right: 10px;
}

.gnavi .btn-wrap .h-btn.tel {
  font-size: clamp(2rem, calc(29 / 1024 * 100vw), 2.9rem);
  line-height: calc(41 / 29 * 1em);
  color: #EE8678;
  margin-bottom: 2px;
}

.gnavi .btn-wrap .h-btn.mail {
  font-size: clamp(1.2rem, calc(15 / 1024 * 100vw), 1.5rem);
  line-height: calc(16 / 15 * 1em);
  color: #FFF;
  padding: 15px 20px;
  border-radius: 3px;
  background: #EE8678;
}

.gnavi .gnavi-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: calc(13 / 660 * 100%);
  font-size: clamp(12px, 0.83vw, 15px);
  line-height: 1.4em;
}

.gnavi .gnavi-list>li {
  /*margin-left: 25px;*/
}

.gnavi .gnavi-list>li>a {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
}

.gnavi .gnavi-list a:hover {
  color: #FFF6F5;
}

.gnavi .gnavi-list a[href="#"] {
  cursor: auto;
  pointer-events: none;
}

.gnavi .gnavi-list .menu-item-has-children {
  display: flex;
  position: relative;
}

.gnavi .gnavi-list .menu-item-has-children::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 150%;
}

.gnavi .gnavi-list .menu-item-has-children::after {
  content: "";
  display: block;
  border-bottom: 2px solid #EE8678;
  border-right: 2px solid #EE8678;
  width: 8px;
  height: 8px;
  margin: 0.6em 0 0 0.6em;
  transform: rotate(45deg);
  transform-origin: right;
}

.gnavi .gnavi-list .menu-item-has-children>a:hover {
  opacity: .5;
}

.gnavi .gnavi-list .menu-item-has-children.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.gnavi .gnavi-list .menu-item-has-children .sub-menu {
  pointer-events: none;
  background-color: #fff;
  border-radius: 0px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 17px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  text-align: left;
  position: absolute;
  top: 40px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.gnavi .gnavi-list .menu-item-has-children .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.gnavi .gnavi-list .menu-item-has-children .sub-menu li a {
  position: relative;
  padding-left: 1em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #EE8678;
}

.gnavi .gnavi-list .menu-item-has-children .sub-menu li a:hover {
  color: #EE8678;
}

.gnavi .gnavi-list .menu-item-has-children .sub-menu li a::before {
  content: "-";
  display: block;
  position: absolute;
}

.gnavi .gnavi-list .menu-item-has-children .sub-menu li+li {
  margin-top: 5px;
}

.gnavi .gnavi-list .menu-item-has-children .sub-menu.info li {
  font-size: 13px;
}

.gnavi .gnavi-list .menu-item-has-children:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

.gnavi .side-navi {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  background: rgba(255, 246, 245, 0.95);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateX(100%);
  transition: 0.5s;
  z-index: 1000;
}

.gnavi .side-navi::-webkit-scrollbar {
  display: none;
}

.gnavi .side-navi.is-open {
  transform: translateX(0);
}

.gnavi .side-navi .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.gnavi .side-navi .container .wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
}

.gnavi .side-navi .desc .l-img {
  width: calc(266 / 512 * 100%);
  margin: calc(33 / 512 * 100%) 0 calc(13 / 512 * 100%);
}

.gnavi .side-navi .site-map {
  display: grid;
  grid-template-columns: repeat(2, calc(237 / 512 * 100%));
  justify-content: space-between;
}

.gnavi .side-navi .site-map li h3 {
  position: relative;
  font-size: clamp(14px, calc(17 / 1800 * 100vw), 17px);
  line-height: calc(22 / 17 * 1em);
  padding-bottom: calc(15 / 17 * 1em);
  margin-bottom: calc(5 / 17 * 1em);
}

.gnavi .side-navi .site-map li h3::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: url(../images/share/deco_border.svg) repeat-x center/cover;
}

.gnavi .side-navi .site-map li a {
  position: relative;
  font-size: clamp(14px, calc(17 / 1800 * 100vw), 17px);
  line-height: calc(40 / 17 * 1em);
}

@media (max-width: 800px) {
  .gnavi {
    width: auto;
    max-width: calc(100% - 120px);
    height: 100%;
    /*fixed-menu*/
  }

  .gnavi .fixed-menu {
    display: none;
  }

  .gnavi .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #FFF6F5;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    padding: 90px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }

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

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

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

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

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

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

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

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

  .gnavi .sp-navi-contents .sp-navi-list li.sp-dropdown::before,
  .gnavi .sp-navi-contents .sp-navi-list li.sp-dropdown::after {
    content: "";
    background-color: #333;
    position: absolute;
    transition: 0.5s;
  }

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

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

  .gnavi .sp-navi-contents .sp-navi-list .child {
    margin-left: 1em;
    margin-bottom: 2.5em;
    list-style-type: "-  ";
  }

  .gnavi .sp-navi-contents .sp-navi-list .child ul li {
    position: relative;
    padding-left: 15px;
  }

  .gnavi .sp-navi-contents .sp-navi-list .child ul li::before {
    content: "-";
    color: #333;
    position: absolute;
    left: 0;
    top: 5px;
  }

  .gnavi .sp-navi-contents .sp-navi-list .child ul li a {
    display: inline-block;
    font-size: 13px;
    line-height: 1.8;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero-area {
  position: relative;
  z-index: 1;
}

.hero-area::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(128px, calc(290 / 1800 * 100vw), 290px);
  background: #FFF6F5;
  z-index: -1;
}

.hero-area .hero {
  position: relative;
  width: 95%;
  max-width: 1700px;
  aspect-ratio: 1700 / 840;
  margin: auto;
}

.hero-area .hero .hero-img_001 {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: clamp(15px, calc(30 / 1800 * 100vw), 30px);
  overflow: hidden;
}

.hero-area .hero .hero-img_001 #Top_Hero_Splide,
.hero-area .hero .hero-img_001 .splide__track {
  height: 100%;
}

.hero-area .hero .hero-img_001 #Top_Hero_Splide .splide__slide,
.hero-area .hero .hero-img_001 .splide__track .splide__slide {
  border-radius: clamp(15px, calc(30 / 1800 * 100vw), 30px);
  overflow: hidden;
}

.hero-area .hero .hero-img_001 img {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.hero-area .hero .hero-img_001 .splide__pagination {
  gap: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin-left: calc(50 / 1700 * 100%);
  margin-bottom: 15px;
  z-index: 100;
}

.hero-area .hero .hero-img_001 .splide__pagination li button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #E6E6E6;
  opacity: .5;
}

.hero-area .hero .hero-img_001 .splide__pagination li button.is-active {
  background: #EE8678;
  opacity: 1;
}

.hero-area .hero .hero-catch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1700px;
  height: 100%;
  z-index: 1;
}

.hero-area .hero .hero-catch .l-ttl {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: calc(59 / 1700 * 100%);
  margin-bottom: calc(46 / 1700 * 100%);
  font-family: "FOT-筑紫A丸ゴシック Std B";
  text-align: right;
  color: #FFF;
}

.hero-area .hero .hero-catch .l-ttl span {
  display: block;
  height: fit-content;
  text-shadow: 0px 0px clamp(7px, calc(10 / 1800 * 100vw), 10px) #000;
}

.hero-area .hero .hero-catch .l-ttl span.txt-l {
  font-size: clamp(36px, calc(52 / 1800 * 100vw), 52px);
  line-height: calc(75 / 52 * 1em);
  margin-bottom: clamp(13px, calc(28 / 1800 * 100vw), 28px);
}

.hero-area .hero .hero-catch .l-ttl span.txt-m {
  font-size: clamp(25px, calc(35 / 1800 * 100vw), 35px);
  line-height: calc(55 / 35 * 1em);
}

.hero-area .hero .hero-info {
  position: absolute;
  right: max(calc(20 / 1800 * 100%), 17px);
  bottom: calc(20 / 820 * 100%);
  width: calc(420 /1800 * 100%);
  min-width: 350px;
}

.hero-area .hero .hero-info iframe.hero-wait {
  width: 100%;
  aspect-ratio: 420 / 200;
  background: #FFFFFF;
}

.hero-area .hero .hero-info .hero-time-table {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 800px) {
  .hero-area {
    height: auto;
  }

  .hero-area .hero {
    width: calc(370 /400 * 100%);
    aspect-ratio: 370 / 320;
    margin: auto;
    padding: 0;
  }

  .hero-area .hero .hero-img_001 {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .hero-area .hero .hero-img_001 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
  }

  .hero-area .hero .hero-img_001 .splide__pagination {
    gap: 5px;
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .hero-area .hero .hero-img_001 .splide__pagination li button {
    width: 10px;
    height: 10px;
  }

  .hero-area .hero .hero-catch {
    top: 0;
    left: 0;
    bottom: auto;
    transform: unset;
    width: 100%;
    height: 100%;
  }

  .hero-area .hero .hero-catch .l-ttl {
    width: 100%;
    margin: auto 25px 18px auto;
  }

  .hero-area .hero .hero-catch .l-ttl span.txt-l {
    font-size: 24px;
    line-height: calc(35 / 24 * 1em);
    margin-bottom: clamp(13px, calc(28 / 1800 * 100vw), 28px);
  }

  .hero-area .hero .hero-catch .l-ttl span.txt-m {
    font-size: 16px;
    line-height: calc(24.5 / 16 * 1em);
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.top-main img {
  border-radius: unset;
}

.t-h2 {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(3.1rem, calc(45 / 1024 * 100vw), 4.5rem);
  line-height: calc(63 / 45 * 1em);
  color: #333333;
}

.sec01 .t-h2,
.sec05 .t-h2,
.footer .t-h2 {
  font-size: clamp(2.4rem, calc(30 / 1024 * 100vw), 3rem);
  line-height: calc(42 / 30 * 1em);
}

.t-h3 {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(2rem, calc(27 / 1024 * 100vw), 2.7rem);
  line-height: calc(37 / 27 * 1em);
  color: #EE8678;
}

@media (max-width: 800px) {
  .top-main {
    padding-left: 0;
  }

  .t-h2 {
    font-size: 31px;
    margin-bottom: 0;
  }

  .sec01 .t-h2,
  .sec05 .t-h2,
  .sec07 .t-h2 {
    font-size: 24px;
  }

  .t-h3 {
    font-size: 20px;
  }
}

/*------------
Block
--------------*/
/*------------
sec01
--------------*/
.sec01 {
  position: relative;
}

.sec01 .container {
  position: relative;
  width: 100%;
  max-width: none;
  background: #FFF6F5;
  z-index: 0;
  overflow: hidden;
}

.sec01 .container::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1800 / 600;
  height: auto;
  background: url(../images/sec01-bg.svg) no-repeat center/contain;
  z-index: -1;
}

.sec01 .container .wrapper {
  width: 95%;
  max-width: 1024px;
  margin: auto;
}

.sec01 .container .inner {
  display: grid;
  grid-template-columns: 1fr calc(734 / 1024 * 100%);
  justify-content: space-between;
  position: relative;
  padding: calc(106 / 1024 * 100%) 0 calc(95 / 1024 * 100%);
}

.sec01 .container .l-wrap {
  display: grid;
  grid-template-rows: min-content 1fr;
}

.sec01 .container .l-wrap .l-ttl {
  position: relative;
  margin-top: calc(14 / 290 * 100%);
  line-height: 0;
  margin-bottom: 30px;
}

.sec01 .container .l-wrap .l-ttl::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(50px, calc(71 / 1800 * 100vw), 71px);
  aspect-ratio: 71 / 46;
  margin-top: calc(37 / 290 * -100%);
  background: url(../images/sec01-deco01.png) no-repeat center/contain;
  z-index: -1;
}

.sec01 .container .l-wrap .l-btn {
  align-self: flex-end;
}

.sec01 .container .l-wrap .l-btn .btn-more {
  width: 190px;
}

.sec01 .container .list-top-news {
  margin-top: calc(24 / 734 * 100%);
  border-top: 1px solid #FBDEAD;
}

.sec01 .container .list-top-news li {
  position: relative;
}

.sec01 .container .list-top-news a {
  display: grid;
  grid-template-columns: 1fr calc(632 / 734 * 100%);
  align-items: center;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid #FBDEAD;
  padding: calc(16 / 734 * 100%) 0 calc(16 / 734 * 100%);
}

.sec01 .container .list-top-news time {
  display: inline-block;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(12px, calc(16 / 1800 * 100vw), 16px);
  line-height: calc(24 / 16 * 1em);
  color: #EE8678;
}

.sec01 .container .list-top-news .ttl {
  display: inline-block;
  width: 100%;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(14px, calc(17 / 1800 * 100vw), 17px);
  line-height: calc(23 / 17 * 1em);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .sec01 .container::after {
    height: 450px;
    background: url(../images/sec01-bg.svg) no-repeat center/cover;
  }

  .sec01 .container .wrapper {
    padding: 60px 2.5vw 80px;
  }

  .sec01 .container .wrapper .inner {
    grid-template-columns: 100%;
    padding: 30px 0 0;
  }

  .sec01 .container .l-wrap {
    grid-template-columns: 50% 50%;
    grid-template-rows: min-content;
    align-items: center;
  }

  .sec01 .container .l-wrap .l-ttl {
    margin-top: 0;
    margin-bottom: 0;
  }

  .sec01 .container .l-wrap .l-ttl::before {
    width: 60px;
    margin-top: -25px;
  }

  .sec01 .container .l-wrap .l-btn {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .sec01 .container .l-wrap .l-btn .btn-more {
    width: 100%;
  }

  .sec01 .container .list-top-news {
    margin-top: 25px;
    margin-bottom: 85px;
  }

  .sec01 .container .list-top-news li::before {
    top: auto;
    bottom: 23.75px;
    transform: unset;
    width: 12px;
    margin-right: 5px;
  }

  .sec01 .container .list-top-news a {
    grid-template-columns: 100%;
    gap: 10px;
    padding: 20px 0;
  }

  .sec01 .container .list-top-news time {
    font-size: 12px;
  }

  .sec01 .container .list-top-news .ttl {
    font-size: 14px;
  }
}

/*------------
sec02
--------------*/
.sec02 .container {
  position: relative;
  max-width: none;
  width: 100%;
}

.sec02 .container .wrapper {
  position: relative;
  width: 95%;
  max-width: 1024px;
  margin: auto;
}

.sec02 .container .wrapper .inner {
  display: flex;
  justify-content: space-between;
  padding: calc(96 / 1024 * 100%) 0 calc(130 / 1024 * 100%);
}

.sec02 .container .l-wrap {
  width: calc(600 / 1024 * 100%);
}

.sec02 .container .l-wrap .l-ttl {
  display: flex;
  justify-content: flex-start;
}

.sec02 .container .l-wrap .l-ttl h2 {
  display: inline-block;
  margin: 0 calc(17 / 600 * 100%) 0 calc(9 / 600 * 100%);
}

.sec02 .container .l-wrap .l-ttl::before {
  content: "";
  display: block;
  position: relative;
  width: clamp(35px, calc(46.35 / 1800 * 100vw), 46.35px);
  background: url(../images/sec02-deco01.png) no-repeat center/contain;
}

.sec02 .container .l-wrap .l-ttl::after {
  content: "";
  display: block;
  position: relative;
  transform: translateY(calc(7 / 60.36 * 100%));
  width: clamp(30px, calc(38.78 / 1800 * 100vw), 38.78px);
  background: url(../images/sec02-deco02.png) no-repeat center/contain;
}

.sec02 .container .l-wrap p {
  margin: calc(40 / 600 * 100%) 0;
}

.sec02 .container .l-wrap p span {
  font-size: calc(20 / 17 * 1em);
  line-height: calc(39.1 / 20 * 1em);
  color: #EF8476;
}

.sec02 .container .l-img {
  position: relative;
  width: calc(340 / 1024 * 100%);
  height: fit-content;
  margin-top: calc(6 / 1024 * 100%);
}

.sec02 .container .l-img::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(140 / 340 * 100%);
  aspect-ratio: 140/170;
  margin-left: calc(70 / 340 * -100%);
  margin-bottom: calc(36.4 / 340 * -100%);
  background: url(../images/sec02-deco03.png) no-repeat center/contain;
}

.sec02 .container .l-img img {
  width: 100%;
}

@media (max-width: 800px) {
  .sec02 .container {
    width: 100%;
  }

  .sec02 .container .wrapper {
    width: 100%;
  }

  .sec02 .container .wrapper .inner {
    flex-direction: column;
    row-gap: 25px;
    width: 100%;
    padding: 50px 5vw 80px;
  }

  .sec02 .container .l-wrap {
    width: 100%;
  }

  .sec02 .container .l-wrap .l-ttl {
    justify-content: center;
  }

  .sec02 .container .l-wrap p {
    margin: 20px 0 30px;
  }

  .sec02 .container .l-wrap p span {
    font-size: 17px;
    line-height: calc(32.2 / 17 * 1em);
  }

  .sec02 .container .l-img {
    order: -1;
    width: 80%;
    margin: 0 auto;
  }
}

/*------------
sec03
--------------*/
.sec03 {
  position: relative;
  background: linear-gradient(transparent 20%, #FFF6F5 20%, #FFF6F5 80%, transparent 80%);
}

.sec03::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1463px;
  height: 100%;
  margin-top: clamp(45px, calc(100 / 1800 * 100vw), 100px);
  background: url(../images/sec03-deco03.png) no-repeat top right/calc(263 / 1463 * 100%);
  z-index: -1;
}

.sec03 .container {
  position: relative;
  width: 100%;
  max-width: none;
}

.sec03 .container::before,
.sec03 .container::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  aspect-ratio: 1800 / 600;
  height: auto;
  background: url(../images/sec01-bg.svg) no-repeat center/contain;
  z-index: -1;
}

.sec03 .container::before {
  top: 0;
  transform: rotate(180deg);
}

.sec03 .container::after {
  bottom: 0;
}

.sec03 .container .wrapper {
  position: relative;
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

.sec03 .container .wrapper .inner {
  padding: calc(90 / 1200 * 100%) 0 calc(100 / 1200 * 100%);
}

.sec03 .container .l-ttl {
  display: flex;
  justify-content: center;
  margin-bottom: calc(50 / 1200 * 100%);
}

.sec03 .container .l-ttl h2 {
  display: inline-block;
  margin: calc(18 / 1200 * 100%) calc(9 / 1200 * -100%) calc(5 / 1200 * 100%) calc(15 / 1200 * 100%);
}

.sec03 .container .l-ttl::before {
  content: "";
  display: block;
  position: relative;
  width: clamp(50px, calc(71.63 / 1800 * 100vw), 71.63px);
  aspect-ratio: 71.63 / 62.54;
  height: auto;
  margin: auto 0 0;
  background: url(../images/sec03-deco01.png) no-repeat center/contain;
}

.sec03 .container .l-ttl::after {
  content: "";
  display: block;
  position: relative;
  transform: translateY(calc(7 / 60.36 * 100%));
  width: clamp(48px, calc(69 / 1800 * 100vw), 69px);
  aspect-ratio: 69 / 47.96;
  height: auto;
  margin: 0 0 auto;
  background: url(../images/sec03-deco02.png) no-repeat center/contain;
}

.sec03 .container .l-wrap {
  display: flex;
  justify-content: space-between;
}

.sec03 .container .l-wrap .l-desc {
  position: relative;
  width: calc(512 / 1200 * 100%);
  padding: calc(50 / 1200 * 100%);
  margin: calc(100 / 1200 * 100%) calc(176 / 1200 * -100%) 0 calc(88 / 1200 * 100%);
  border-radius: clamp(14px, calc(20 / 1800 * 100vw), 20px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px clamp(14px, calc(20 / 1800 * 100vw), 20px) 0px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.sec03 .container .l-wrap .l-desc::before,
.sec03 .container .l-wrap .l-desc::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.sec03 .container .l-wrap .l-desc::before {
  top: 0;
  width: calc(84.37 / 512 * 100%);
  aspect-ratio: 84.37 / 65.61;
  margin-top: calc(46 / 512 * -100%);
  margin-left: calc(29.7 / 512 * -100%);
  background: url(../images/sec03-deco04.png) no-repeat center/100%;
}

.sec03 .container .l-wrap .l-desc::after {
  bottom: 0;
  width: calc(163.3 / 512 * 100%);
  aspect-ratio: 163.3 / 147;
  margin-left: calc(88 / 512 * -100%);
  background: url(../images/sec03-deco05.png) no-repeat center/100%;
}

.sec03 .container .l-wrap .l-desc h3 {
  display: inline-block;
  width: 100%;
  padding-bottom: calc(16.5 / 412 * 100%);
  margin-bottom: calc(30.5 / 412 * 100%);
  border-bottom: 1px solid #EE8678;
}

.sec03 .container .l-wrap .l-img {
  position: relative;
  width: calc(700 / 1200 * 100%);
  height: fit-content;
  z-index: 0;
}

.sec03 .container .l-wrap .l-img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(61.64 / 700 * 100%);
  aspect-ratio: 61.64 / 56;
  margin-top: calc(43.4 / 700 * 100%);
  margin-right: calc(28 / 700 * -100%);
  background: url(../images/sec03-deco06.png) no-repeat center/100%;
  z-index: 2;
  pointer-events: none;
}

.sec03 .container .l-wrap .l-img img {
  border-radius: clamp(14px, calc(20 / 1800 * 100vw), 20px);
}

.sec03 .container .btn-wrap {
  width: 100%;
  max-width: 1024px;
  margin: calc(43 / 1200 * 100%) auto calc(53 / 1200 * 100%);
}

.sec03 .container .btn-wrap .btn-more {
  width: calc(330 / 1024 * 100%);
}

.sec03 .container ul.sec03-list {
  display: grid;
  grid-template-columns: repeat(3, calc(263 / 849 * 100%));
  grid-template-rows: min-content;
  justify-content: space-between;
  width: calc(849 / 1200 * 100%);
  margin: auto;
}

.sec03 .container ul.sec03-list li {
  display: grid;
  border-radius: clamp(14px, calc(20 / 1800 * 100vw), 20px);
  background: #FFF;
  transition: 0.5s;
}

.sec03 .container ul.sec03-list li:hover {
  transform: translateY(-10px);
}

.sec03 .container ul.sec03-list li a {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: subgrid;
  grid-row: span 3;
  justify-content: center;
}

.sec03 .container ul.sec03-list li .l-img {
  width: calc(135 / 263 * 100%);
  padding-top: calc(30 / 263 * 100%);
  margin: auto;
}

.sec03 .container ul.sec03-list li h3 {
  display: inline-block;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(1.6rem, calc(20 / 1024 * 100vw), 2rem);
  line-height: calc(28 / 20 * 1em);
  text-align: center;
  margin: calc(25 / 263 * 100%) auto calc(17 / 263 * 100%);
}

.sec03 .container ul.sec03-list li .l-icon {
  text-align: center;
  margin: 0 auto calc(20 / 263 * 100%);
}

@media (max-width: 800px) {
  .sec03::after {
    margin-top: 120px;
    background: url(../images/sec03-deco03.png) no-repeat top right/25%;
  }

  .sec03 .container::before {
    height: 450px;
    background: url(../images/sec01-bg.svg) no-repeat center/cover;
  }

  .sec03 .container::after {
    height: 450px;
    background: url(../images/sec01-bg.svg) no-repeat center/cover;
  }

  .sec03 .container .wrapper {
    width: 100%;
  }

  .sec03 .container .wrapper .inner {
    padding: 50px 5vw 80px;
  }

  .sec03 .container .l-ttl {
    margin-bottom: 35px;
  }

  .sec03 .container .l-wrap {
    flex-direction: column;
    row-gap: 30px;
  }

  .sec03 .container .l-wrap .l-desc {
    width: 100%;
    padding: 30px 5vw;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.05);
  }

  .sec03 .container .l-wrap .l-desc h3 {
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-align: center;
  }

  .sec03 .container .l-wrap .l-img {
    order: -1;
    width: 100%;
  }

  .sec03 .container .btn-wrap {
    margin: 30px auto;
  }

  .sec03 .container .btn-wrap .btn-more {
    width: 100%;
  }

  .sec03 .container ul.sec03-list {
    grid-template-columns: 100%;
    justify-content: center;
    row-gap: 5vw;
    width: 100%;
  }

  .sec03 .container ul.sec03-list li .l-img {
    width: 50%;
    padding-top: 25px;
  }

  .sec03 .container ul.sec03-list li .l-img img {
    width: 100%;
  }

  .sec03 .container ul.sec03-list li h3 {
    font-size: 20px;
    margin: 15px auto;
  }

  .sec03 .container ul.sec03-list li .l-icon {
    width: 25px;
    margin: 0 auto 25px;
    line-height: 0;
  }

  .sec03 .container ul.sec03-list li .l-icon img {
    width: 100%;
  }
}

/*------------
sec04
--------------*/
.sec04 .container {
  width: 95%;
  max-width: 1024px;
}

.sec04 .container .wrapper {
  margin: auto;
  padding: calc(100 / 1024 * 100%) 0 0;
}

.sec04 .container .l-ttl {
  display: flex;
  justify-content: center;
  margin-bottom: calc(40 / 1024 * 100%);
}

.sec04 .container .l-ttl h2 {
  display: inline-block;
  margin: auto calc(8 / 1024 * 100%) auto calc(5 / 1024 * 100%);
}

.sec04 .container .l-ttl::before {
  content: "";
  display: block;
  position: relative;
  width: clamp(40px, calc(51.82 / 1800 * 100vw), 51.82px);
  aspect-ratio: 51.82 / 63.9;
  height: auto;
  margin: 0 0 auto;
  background: url(../images/sec04-deco01.png) no-repeat center/contain;
}

.sec04 .container .l-ttl::after {
  content: "";
  display: block;
  position: relative;
  width: clamp(52px, calc(68.53 / 1800 * 100vw), 68.53px);
  aspect-ratio: 68.53 / 75.83;
  height: auto;
  margin: auto 0 0;
  background: url(../images/sec04-deco02.png) no-repeat center/contain;
}

.sec04 .container .l-wrap {
  display: grid;
  grid-template-columns: 50% 50%;
}

.sec04 .container .l-wrap .l-desc {
  padding: calc(73 / 512 * 100%) 0 0 calc(39 / 512 * 100%);
}

.sec04 .container .l-wrap .l-desc span.ttl {
  display: block;
  width: fit-content;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: clamp(1.4rem, calc(24 / 1024 * 100vw), 2.4rem);
  line-height: calc(35 / 24 * 1em);
  color: #FFF;
  padding: calc(10 / 473 * 100%) calc(43.73 / 473 * 100%);
  margin-bottom: calc(7 / 473 * 100%);
  border-radius: 100vh;
  background: #EE8678;
}

.sec04 .container .l-wrap .l-desc p+p {
  margin-top: calc(16 / 473 * 100%);
}

@media (max-width: 800px) {
  .sec04 .container .wrapper {
    width: 100%;
    padding: 50px 2.5vw 30px;
  }

  .sec04 .container .l-ttl {
    margin-bottom: 35px;
  }

  .sec04 .container .l-wrap {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 30px;
  }

  .sec04 .container .l-wrap .l-desc {
    padding: 0;
  }

  .sec04 .container .l-wrap .l-desc span.ttl {
    font-size: 15px;
    padding: 10px 40px;
    margin-bottom: 10px;
  }
}

/*------------
sec05
--------------*/
.sec05 .container {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
}

.sec05 .container .wrapper {
  width: 95%;
  max-width: 1024px;
  margin: auto;
}

.sec05 .container .inner {
  display: grid;
  grid-template-columns: 1fr calc(632 / 1024 * 100%);
  justify-content: space-between;
  position: relative;
  padding: calc(100 / 1024 * 100%) 0;
}

.sec05 .container .l-wrap {
  display: grid;
  grid-template-rows: min-content 1fr;
}

.sec05 .container .l-wrap .l-ttl {
  position: relative;
  line-height: 0;
}

.sec05 .container .l-wrap .l-ttl::before {
  content: "";
  display: block;
  position: relative;
  width: clamp(50px, calc(71 / 1800 * 100vw), 71px);
  aspect-ratio: 71 / 46;
  background: url(../images/sec01-deco01.png) no-repeat center/contain;
  z-index: -1;
}

.sec05 .container .l-wrap .l-btn {
  align-self: flex-end;
}

.sec05 .container .l-wrap .l-btn .btn-more {
  width: 190px;
}

.sec05 .container .list-top-blog {
  display: flex;
  justify-content: space-between;
}

.sec05 .container .list-top-blog li {
  position: relative;
  width: calc(184 / 632 * 100%);
  transition: 0.5s;
}

.sec05 .container .list-top-blog li:hover {
  transform: translateY(-10px);
}

.sec05 .container .list-top-blog a {
  display: grid;
  position: relative;
}

.sec05 .container .list-top-blog .single-img {
  position: relative;
  width: 100%;
  aspect-ratio: 184/260;
  margin-bottom: calc(13 / 184 * 100%);
  border-radius: 10px;
  overflow: hidden;
}

.sec05 .container .list-top-blog .single-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: none;
  min-height: 100%;
  object-fit: cover;
}

.sec05 .container .list-top-blog .list-ttl {
  display: inline-block;
  width: 100%;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: clamp(1.5rem, calc(18 / 1024 * 100vw), 1.8rem);
  line-height: calc(26 / 18 * 1em);
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .sec05 .container .wrapper {
    padding-bottom: 30px;
  }

  .sec05 .container .wrapper .inner {
    grid-template-columns: 100%;
    row-gap: 30px;
    padding: 50px 2.5vw 0;
  }

  .sec05 .container .l-wrap {
    grid-template-columns: 60% 40%;
    grid-template-rows: min-content;
    align-items: center;
  }

  .sec05 .container .l-wrap .l-btn {
    position: absolute;
    bottom: 0;
    width: 90vw;
  }

  .sec05 .container .l-wrap .l-btn .btn-more {
    width: 100%;
  }

  .sec05 .container .list-top-blog {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 5vw;
    margin-bottom: 85px;
  }

  .sec05 .container .list-top-blog li {
    width: 100%;
  }
}

/*------------
sec06
--------------*/
.sec06 .container {
  position: relative;
  max-width: none;
  width: 100%;
}

.sec06 .container .wrapper {
  position: relative;
  width: 95%;
  max-width: 1600px;
  margin: auto;
  background: #FFF6F5;
  border-radius: clamp(21px, calc(30 / 1800 * 100vw), 30px);
}

.sec06 .container .wrapper .inner {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1262px;
  padding: calc(100 / 1600 * 100%) 0;
  margin: 0 auto calc(100 / 1600 * 100%);
}

.sec06 .container .img-wrap {
  position: relative;
  width: calc(700 / 1262 * 100%);
  height: fit-content;
  z-index: 0;
}

.sec06 .container .img-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(102px, calc(228.7 / 1800 * 100vw), 228.7px);
  aspect-ratio: 228.7 / 241.04;
  margin-top: calc(73 / 700 * -100%);
  margin-left: calc(127 / 700 * -100%);
  background: url(../images/sec06-deco01.png) no-repeat center/contain;
  z-index: -1;
}

.sec06 .container .img-wrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(63px, calc(140 / 1800 * 100vw), 140px);
  aspect-ratio: 140 / 170;
  margin-right: calc(43 / 700 * -100%);
  margin-bottom: calc(42 / 700 * -100%);
  background: url(../images/sec06-deco02.png) no-repeat center/contain;
  z-index: 1;
}

.sec06 .container .img-wrap .l-img {
  position: relative;
  width: 100%;
  border-radius: clamp(14px, calc(20 / 1800 * 100vw), 20px);
  overflow: hidden;
  z-index: 0;
}

.sec06 .container .img-wrap .l-img img {
  min-height: 100%;
  object-fit: cover;
  border-radius: clamp(14px, calc(20 / 1800 * 100vw), 20px);
}

.sec06 .container .l-wrap {
  position: relative;
  width: calc(462 / 1262 * 100%);
  margin-top: calc(52.6 / 1262 * 100%);
  z-index: 0;
}

.sec06 .container .l-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(78px, calc(173.87 / 1800 * 100vw), 173.87px);
  aspect-ratio: 173.87 / 163.05;
  margin-top: calc(84 / 700 * -100%);
  margin-right: calc(66 / 700 * -100%);
  background: url(../images/sec06-deco05.png) no-repeat center/contain;
  z-index: -1;
}

.sec06 .container .l-wrap .l-ttl {
  display: flex;
  justify-content: flex-start;
}

.sec06 .container .l-wrap .l-ttl h2 {
  display: inline-block;
  margin: 0 calc(17 / 462 * 100%) 0 calc(9 / 462 * 100%);
}

.sec06 .container .l-wrap .l-ttl::before {
  content: "";
  display: block;
  position: relative;
  width: clamp(35px, calc(46.35 / 1800 * 100vw), 46.35px);
  background: url(../images/sec06-deco03.png) no-repeat center/contain;
}

.sec06 .container .l-wrap .l-ttl::after {
  content: "";
  display: block;
  position: relative;
  transform: translateY(calc(7 / 60.36 * 100%));
  width: clamp(30px, calc(38.78 / 1800 * 100vw), 38.78px);
  background: url(../images/sec06-deco04.png) no-repeat center/contain;
}

.sec06 .container .l-wrap p {
  margin: calc(40 / 600 * 100%) 0 calc(50 / 600 * 100%);
}

@media (max-width: 800px) {
  .sec06 {
    overflow: hidden;
  }

  .sec06 .container {
    width: 100%;
  }

  .sec06 .container .wrapper {
    width: 95vw;
    border-radius: 14px;
  }

  .sec06 .container .wrapper .inner {
    flex-direction: column;
    width: 100%;
    padding: 50px 5vw;
    margin: 50px auto;
  }

  .sec06 .container .img-wrap {
    width: 100%;
  }

  .sec06 .container .img-wrap::before {
    width: 110px;
    margin-top: -70px;
    margin-left: -50px;
  }

  .sec06 .container .img-wrap::after {
    width: 75px;
    margin-right: -40px;
    margin-bottom: -40px;
  }

  .sec06 .container .l-wrap {
    width: 100%;
    margin-top: 25px;
  }

  .sec06 .container .l-wrap::after {
    width: 80px;
    margin-top: 40px;
    margin-right: -40px;
  }

  .sec06 .container .l-wrap .l-ttl {
    justify-content: center;
  }

  .sec06 .container .l-wrap p {
    margin: 20px 0 30px;
  }

  .sec06 .container .l-wrap p span {
    font-size: 17px;
    line-height: calc(32.2 / 17 * 1em);
  }

  .sec06 .container .l-img {
    order: -1;
    width: 100%;
    margin-top: 0;
  }
}

/******
下層ページ
******/
/*-----------------------------------------------------
下層レイアウト
----------------------------------------------------------*/
.u-contents {
  font-size: clamp(1.4rem, calc(15 / 1024 * 100vw), 1.5rem);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  color: #333333;
  overflow-x: hidden;
}

.u-contents .container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
  font-weight: 400;
  position: relative;
}

.u-contents .num {
  align-items: center;
}

.u-contents .l-img img,
.u-contents .list-img img {
  width: 100%;
  aspect-ratio: 65 / 46;
  object-fit: cover;
}

.u-contents .l-img.asp-none img,
.u-contents .list-img.asp-none img {
  aspect-ratio: auto;
}

.u-contents .img-sq img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.u-contents p {
  font-size: clamp(1.4rem, calc(15 / 1024 * 100vw), 1.5rem);
  line-height: 2;
}

.u-contents p strong {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  text-decoration: underline;
}

.u-contents p a {
  text-decoration: underline;
  color: #EE8678;
}

.u-contents .txt-l {
  font-size: 1.25em;
  color: #EE8678;
}

@media (max-width: 800px) {
  .u-contents .container {
    margin: 0 auto;
    max-width: none;
    width: 100%;
    padding: 0 5vw;
  }
}

.page-ttl {
  background: #fff6f5;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1700 / 300;
  margin: 0 .5%;
  position: relative;
}

.page-ttl .container {
  width: 90%;
  max-width: 1720px;
  text-align: center;
}

.page-ttl h1.page-ttl-main {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(3.2rem, calc(52 / 1024 * 100vw), 5.2rem);
  line-height: 1.75;
  display: inline-block;
}

.page-ttl .page-ttl-sub {
  font-size: clamp(2rem, calc(30 / 1024 * 100vw), 3rem);
  font-family: "Quicksand", sans-serif;
  color: #EE8678;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}

.breadcrumb ul {
  font-size: 1.2rem;
  padding: 5px 5vw;
  color: #333;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

.u-contents p+p {
  margin-top: clamp(20px, calc(30 / 1024 * 100vw), 30px);
}

@media (max-width: 800px) {
  .page-ttl {
    padding: 0 0px 0;
    height: 180px;
    aspect-ratio: auto;
    background-position: center;
    background-size: cover;
  }

  .page-ttl .title-wrapper {
    margin: 0vw 0 5vw 5vw;
    height: 100%;
  }

  .page-ttl .container {
    margin: 0 auto;
    max-width: none;
    width: 100%;
    padding: 0 5vw;
  }
}

/*---------
下層見出し
---------*/
.u-contents .page-ttl-main,
.u-contents .u-h2,
.u-contents h2,
.u-contents .u-h3,
.u-contents h3,
.u-contents .u-h4,
.u-contents h4,
.u-contents .u-h5,
.u-contents h5 {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  letter-spacing: .075em;
  line-height: 1.7;
}

.u-h2,
.postdata h2 {
  font-size: clamp(2.6rem, calc(45 / 1024 * 100vw), 4.5rem);
  text-align: center;
  margin: 0px 0px clamp(50px, calc(80 / 1024 * 100vw), 80px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /**icon追加**/
}

.u-h2::before,
.postdata h2::before {
  content: "";
  background: url("../images/under/u-h2-icon01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 52px;
  height: 64px;
}

.u-h2::after,
.postdata h2::after {
  content: "";
  background: url("../images/under/u-h2-icon02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 69px;
  height: 76px;
}

.u-h3,
.postdata h3 {
  font-size: clamp(2.2rem, calc(27 / 1024 * 100vw), 2.7rem);
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  color: #EE8678;
  /*short-underline*/
  /*dotborder*/
}

.u-h3::after,
.postdata h3::after {
  content: "";
  background: #EE8678;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.u-h3-bg,
.u-h2-bg {
  font-size: clamp(2rem, calc(20 / 1024 * 100vw), 2rem);
  text-align: center;
  padding: 20px;
  margin-bottom: 0px;
  position: relative;
  background: #EE8678;
  color: #fff;
}

.postdata h3 {
  margin-bottom: 25px;
}

.u-h4,
.postdata h4 {
  color: #fff;
  background: #EE8678;
  font-size: clamp(1.8rem, calc(18 / 1024 * 100vw), 2.2rem);
  text-align: center;
  margin-bottom: 1em;
  padding: 10px 30px;
  position: relative;
  display: inline-block;
  border-radius: 100vw;
  /**左線追加*/
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background: #FA8835;
  width: 10px;
  height: 1px;
  position: absolute;
  left: 0;
  top: .8em;
}

.u-h5,
.postdata h5 {
  border-bottom: 1px solid #E9ECF0;
  font-size: clamp(1.6rem, calc(18 / 1024 * 100vw), 18rem);
  padding: 0 0 15px;
  margin: 0 0 15px;
  /*short-underline*/
}

.u-h5::after,
.postdata h5::after {
  content: "";
  background: #E59333;
  width: 32px;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.postdata a {
  color: #E59333;
  text-decoration: underline;
}

.postdata .wp-block-button a {
  color: #fff;
}

.num-ttl {
  border-bottom: 2px solid #eee;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.num-ttl .num {
  background: #655144;
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 25px;
  padding: 0 9px;
  margin-right: 20px;
  vertical-align: 3px;
  position: relative;
}

.num-ttl .num::after {
  content: "";
  border-style: solid;
  border-width: 12.5px 0 12.5px 7px;
  border-color: transparent transparent transparent #FFB750;
  position: absolute;
  top: 0;
  right: -7px;
}

.num-ttl-icon {
  font-size: clamp(2.6rem, 1.88888vw, 3rem);
  font-weight: bold;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.num-ttl-icon .num {
  background: url("../images/share/ico_number.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  width: 61px;
  height: 61px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.num-ttl-icon .num span {
  font-size: 24px;
  font-family: "Lato", sans-serif;
  color: #fff;
}

@media (max-width: 800px) {
  .num-ttl-icon .num {
    margin-right: 10px;
    width: 40px;
    height: 40px;
  }

  .num-ttl-icon .num span {
    font-size: 1.8rem;
  }
}

.u-catch {
  font-size: clamp(2.8rem, calc(34 / 1024 * 100vw), 3.4rem);
  text-align: center;
  margin-bottom: clamp(15px, calc(30 / 1024 * 100vw), 30px);
  position: relative;
  line-height: 1.7;
  font-family: "FOT-筑紫A丸ゴシック Std R";
}

.u-catch .en {
  display: block;
  color: #004098;
  font-weight: bold;
  font-size: 35px;
}

.u-marker {
  margin-bottom: 30px;
}

.u-marker span {
  background: linear-gradient(transparent 70%, #EDB62C80 30%);
  font-size: clamp(1.4rem, calc(15 / 1024 * 100vw), 1.5rem);
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-weight: bold;
  display: inline-block;
}

.u-l-name {
  font-size: clamp(1.8rem, calc(24 / 1024 * 100vw), 2.4rem);
  font-weight: bold;
}

@media (max-width: 800px) {
  .num-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .num-ttl .num {
    display: table;
    font-size: 1rem;
    padding: 0 10px;
    margin-bottom: 8px;
  }

  .num-ttl .num::after {
    display: none;
  }

  .u-txt-center-left {
    text-align: left;
  }

  .u-name {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .u-name .job {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .u-name .jp {
    display: block;
    font-size: 25px;
    margin: 0 0 10px;
  }

  .u-name .en {
    font-size: 1.4rem;
  }
}

.short,
.x-short {
  position: relative;
  z-index: 1;
}

.short.bg-color,
.x-short.bg-color {
  background: #EDF2FF !important;
  padding: clamp(40px, calc(40 / 1024 * 100vw), 40px);
  margin: clamp(80px, calc(80 / 1024 * 100vw), 80px) 0 50px;
  /*パーツH*パーツO*/
}

.short.bg-color .num-point,
.x-short.bg-color .num-point {
  font-size: clamp(4rem, calc(40 / 1024 * 100vw), 4rem);
  font-family: "Quicksand", sans-serif;
  color: #FA8835;
  position: absolute;
  top: -90px;
}

.short+.short {
  margin-top: clamp(30px, calc(50 / 1024 * 100vw), 50px);
}

.x-short+.x-short {
  margin-top: clamp(30px, calc(50 / 1024 * 100vw), 50px);
}

.tall {
  padding: clamp(50px, calc(80 / 1024 * 100vw), 80px) 0;
  position: relative;
  background: #ffffff;
}

.tall.bg-gray {
  background: #F1FAF6 !important;
}

.tall.bg-color {
  background: #EDF2FF !important;
  padding: clamp(80px, calc(80 / 1024 * 100vw), 80px) 0;
  margin: clamp(80px, calc(80 / 1024 * 100vw), 80px) 0 50px;
  /*パーツH*パーツO*/
}

.tall.bg-color .num-point {
  font-size: clamp(4rem, calc(40 / 1024 * 100vw), 4rem);
  font-family: "Quicksand", sans-serif;
  color: #FA8835;
  position: absolute;
  top: -130px;
}

.tall:nth-child(2n) {
  background: #ffffff;
}

.hidden {
  overflow: hidden;
}

.col1,
.col2,
.col3,
.col4 {
  display: grid;
}

.col1.gap20,
.col2.gap20,
.col3.gap20,
.col4.gap20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.col1.gap30,
.col2.gap30,
.col3.gap30,
.col4.gap30 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.col1.gap80,
.col2.gap80,
.col3.gap80,
.col4.gap80 {
  grid-column-gap: 80px;
  grid-row-gap: 40px;
}

.col1 .baseline,
.col2 .baseline,
.col3 .baseline,
.col4 .baseline {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}

.col2-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.col2-flex.gap30 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.col2-flex.gap30 li {
  width: 48%;
}

.col3-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.col3-flex.gap30 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.col3-flex.gap30 li {
  width: 31.3333%;
}

.col1 {
  grid-template-columns: repeat(1, 1fr);
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.auto {
  display: flex !important;
  flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 800px) {

  .col1,
  .col2,
  .col3,
  .col4 {
    grid-template-columns: repeat(1, 1fr);
  }

  .col1.gap30,
  .col2.gap30,
  .col3.gap30,
  .col4.gap30 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .col3-flex,
  .col2-flex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .col3-flex.gap30 li,
  .col2-flex.gap30 li {
    width: 100%;
  }
}

.list-disc li {
  position: relative;
  padding-left: 15px;
  display: flex;
  align-items: flex-start;
}

.list-disc li a {
  text-decoration: underline;
}

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

.list-disc.blue li:before {
  background: #EE8678;
}

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

.list-check li::before {
  content: "";
  width: 15px;
  height: 9px;
  border-left: 3px solid #EE8678;
  border-bottom: 3px solid #EE8678;
  transform: rotate(-45deg);
  position: absolute;
  top: 8px;
  left: 0;
}

.list-check.bg-w-block li {
  padding: 1% 5% 1% 12%;
  background: #fff;
  border-radius: 4px;
}

.list-check.bg-w-block li::before {
  margin-left: 5%;
  top: 12x;
}

.list-check-circle li {
  position: relative;
  padding-left: 25px;
  line-height: 1.75;
  display: flex;
  align-items: center;
}

.list-check-circle li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/share/icon-check-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
}

.list-num02 {
  counter-reset: number;
}

.list-num02>li {
  padding-left: 30px;
  position: relative;
}

.list-num02>li:before {
  background-color: #EE8678;
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding-left: 2px;
  width: 20px;
  height: 20px;
}

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

.list-num {
  counter-reset: number;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
}

.list-num>li:before {
  color: #EE8678;
  counter-increment: number;
  content: counter(number);
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding-left: 2px;
  width: 20px;
  height: 20px;
}

.list-num>li+li {
  margin-top: 0px;
}

.list-disc,
.list-check,
.list-num,
.list-check-circle {
  grid-row-gap: 20px;
  display: grid;
}

.list-disc.col2,
.list-check.col2,
.list-num.col2,
.list-check-circle.col2 {
  grid-gap: 20px 30px;
}

.list-disc.col3,
.list-check.col3,
.list-num.col3,
.list-check-circle.col3 {
  grid-gap: 20px 30px;
}

.list-price>li+li {
  margin-top: 20px;
}

.list-price .list-intro {
  border-bottom: 1px dotted #c4cfc9;
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0 0 5px;
}

.list-price .list-desc {
  color: #747474;
  font-size: 1.3rem;
  margin-top: 5px;
}

@media (max-width: 800px) {

  .list-disc.col2,
  .list-check.col2,
  .list-num.col2,
  .list-check-circle.col2 {
    grid-gap: 5px;
  }

  .list-disc.col3,
  .list-check.col3,
  .list-num.col3,
  .list-check-circle.col3 {
    grid-gap: 5px;
  }

  .list-price>li+li {
    margin-top: 15px;
  }

  .list-price .list-intro {
    font-size: 1.6rem;
  }

  .item>ul {
    margin-bottom: 10px;
  }

  .item+.item>ul {
    margin-bottom: 0px;
  }

  ul+ul {
    margin-top: 10px;
  }
}

.u-dl-style {
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-gap: 10px;
}

.u-dl-style dt {
  color: #fff;
  background: #EE8678;
  font-size: clamp(1.6rem, calc(17 / 1024 * 100vw), 1.7rem);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-dl-style dd {
  font-size: clamp(1.4rem, calc(15 / 1024 * 100vw), 1.5rem);
  line-height: 1.7;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #FFF6F5;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.u-dl-style02 {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-column-gap: 50px;
}

.u-dl-style02>dt {
  border-bottom: 1px solid #eee;
  font-size: clamp(2rem, calc(27 / 1024 * 100vw), 2.7rem);
  color: #EE8678;
  padding: 50px 0;
  margin-bottom: 0px;
  position: relative;
}

.u-dl-style02>dt:first-child {
  border-top: 1px solid #eee;
}

.u-dl-style02>dt:first-child::before {
  content: "";
  background: #EE8678;
  width: 60px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 0;
}

.u-dl-style02>dt::after {
  content: "";
  background: #EE8678;
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.u-dl-style02 dd {
  font-size: clamp(2rem, calc(27 / 1024 * 100vw), 2.7rem);
  padding: 50px 0;
  margin-bottom: 0px;
  border-bottom: 1px solid #eee;
}

.u-dl-style02 dd:first-of-type {
  border-top: 1px solid #eee;
}

.u-dl-style02 dd>dl.company {
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-gap: 0;
}

.u-dl-style02 dd>dl.company a,
.u-dl-style02 dd>dl.company a:link,
.u-dl-style02 dd>dl.company a:visited {
  color: #EE8678;
  text-decoration: underline;
}

.u-dl-style02 dd>dl.company a:hover,
.u-dl-style02 dd>dl.company a:focus {
  text-decoration: none;
}

.u-dl-style02 dd>dl.company dt,
.u-dl-style02 dd>dl.company dd {
  padding: 20px 0;
  border-top: 0;
  border-bottom: 1px solid #eee;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(1.6rem, calc(17 / 1024 * 100vw), 1.7rem);
  color: #333;
}

@media (max-width: 800px) {
  .u-dl-style {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }

  .u-dl-style dt,
  .u-dl-style dd {
    border-radius: 10px;
    line-height: 1.75;
  }

  .u-dl-style02 {
    grid-template-columns: 1fr;
  }

  .u-dl-style02>dt {
    padding: 25px 0;
  }

  .u-dl-style02 dd {
    padding: 25px 0;
  }

  .u-dl-style02 dd>dl.company dt:last-of-type,
  .u-dl-style02 dd>dl.company dd:last-of-type {
    border-bottom: 0;
  }
}

/*よくある数字のタイトル*/
.u-num-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: 2rem;
  padding: 0 0 20px 50px;
  margin: 0 0 20px;
  position: relative;
  /*下線追加*/
}

.u-num-ttl i {
  background: #EE8678;
  border-radius: 100px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 31px;
  position: absolute;
  top: 2px;
  left: 0;
  font-family: "Quicksand", sans-serif;
}

/*よくあるiconのタイトル*/
.u-icon-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: 2rem;
  padding: 0 0 20px 50px;
  margin: 0 0 20px;
  position: relative;
}

.u-icon-ttl i {
  background: #EE8678;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  top: 2px;
  left: 0;
  position: absolute;
}

.u-icon-ttl i img {
  height: 20px;
  width: auto;
}

/*基本レイアウト*/
.u-merit-demerit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4%;
}

.u-merit-demerit .item {
  background: #EDF2FF;
  border-top: 5px solid #885C51;
  padding: 5%;
}

.u-merit-demerit .item .item-ttl {
  text-align: center;
  color: #885C51;
}

.u-merit-demerit .item .jp {
  color: #463632;
}

.u-merit-demerit .item:nth-of-type(2) {
  border-color: #8B919D;
  background: #F7F7F7;
}

.u-merit-demerit .item:nth-of-type(2) .item-ttl {
  color: #8B919D;
}

.u-merit-demerit .item:nth-of-type(2) .jp {
  color: #463632;
}

.u-merit-demerit .item-ttl {
  margin-bottom: 20px;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(2.2rem, calc(25 / 1024 * 100vw), 2.5rem);
}

.u-merit-demerit .item-ttl .jp {
  font-size: clamp(1.2rem, calc(14 / 1024 * 100vw), 1.4rem);
  margin-right: 25px;
  font-weight: bold;
}

.u-price-list {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-gap: 0;
  border-top: 1px solid #463632;
}

.u-price-list dt {
  color: #463632;
  background: #EDF2FF;
  font-size: clamp(18px, calc(20 / 1024 * 100vw), 20px);
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #463632;
}

.u-price-list dd {
  color: #222;
  text-align: right;
  font-size: clamp(1.5rem, calc(16 / 1024 * 100vw), 1.6rem);
  padding: 20px;
  border-bottom: 1px solid #463632;
}

@media (max-width: 800px) {
  .u-merit-demerit {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .u-merit-demerit .item {
    padding: 7% 5%;
  }

  .u-merit-demerit .item-ttl {
    margin-bottom: 15px;
  }
}

.u-l-style {
  display: flex;
  align-items: flex-start;
}

.u-l-style .l-img {
  position: relative;
  width: 40%;
  z-index: 1;
}

.u-l-style .l-img img {
  border-radius: 20px;
  background: #fff;
  object-fit: contain;
}

.u-l-style .l-desc {
  background: #FFF6F5;
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
  border-radius: 20px;
}

.u-l-style .num {
  display: inline-block;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 15px;
  color: #EE8678;
}

.u-l-style .l-ttl {
  font-size: clamp(2.2rem, calc(24 / 1024 * 100vw), 2.4rem);
  margin-bottom: 15px;
}

.u-l-style .l-sub-ttl {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.u-l-style .l-sub-ttl::before {
  content: "";
  background: #EE8678;
  width: 30px;
  height: 2px;
  margin-right: 25px;
}

.u-l-style.reverse {
  flex-direction: row-reverse;
}

.u-l-style.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.l-imgR .l-img,
.l-imgL .l-img {
  margin: 0 40px 0 0;
  width: 40%;
}

.l-imgR .l-img img,
.l-imgL .l-img img {
  width: 100%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 30%;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR .l-desc .l-ttl,
.l-imgL .l-desc .l-ttl {
  font-size: clamp(2.2rem, calc(24 / 1024 * 100vw), 2.4rem);
  margin-bottom: 15px;
}

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

.l-imgR .l-img {
  margin: 0 0 0 40px;
}

.l-imgR .l-img .shadow {
  box-shadow: -2px 0px 5px 5px #ECF7E1;
}

.fl-wrap {
  display: flow-root;
}

.fl-imgR,
.fl-imgL {
  width: 40%;
}

.fl-imgR .shadow,
.fl-imgL .shadow {
  box-shadow: -2px 0px 5px 5px #ECF7E1;
}

.fl-imgR.small,
.fl-imgL.small {
  width: 30%;
}

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

.l-col2,
.l-col3 {
  display: grid;
}

.l-col2 {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5%;
}

.l-col2.v-center {
  align-items: center;
}

.l-col3 {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3%;
}

.u-l-style01 {
  display: flex;
  position: relative;
  z-index: 0;
}

.u-l-style01 .category {
  display: inline-block;
  background-color: #EE8678;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 5px;
}

.u-l-style01 .l-img {
  width: 56.64%;
  margin: 0 7.5% 0 -10%;
}

.u-l-style01 .l-desc {
  flex: 1;
  position: relative;
}

.u-l-style01 .num {
  display: inline-block;
  font-weight: bold;
  font-size: clamp(1.6rem, 1.953125vw, 2rem);
  line-height: 1;
  margin-bottom: 15px;
  color: #AAC728;
}

.u-l-style01 .l-ttl {
  font-size: clamp(20px, 2.539vw, 26px);
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.u-l-style01 .point-txt+.l-ttl {
  margin-top: 3vw;
}

.u-l-style01 .l-sub-ttl {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  margin-bottom: 30px;
}

.u-l-style01 .l-sub-ttl::before {
  content: "";
  background: #AAC728;
  width: 30px;
  height: 2px;
  margin-right: 25px;
}

.u-l-style01.reverse {
  flex-direction: row-reverse;
}

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

.u-l-style02 {
  display: flex;
  align-items: flex-start;
}

.u-l-style02 .l-img {
  position: relative;
  width: 40%;
  z-index: 1;
}

.u-l-style02 .l-desc {
  background: #EDF2FF;
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
}

.u-l-style02 .num {
  display: inline-block;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 15px;
  color: #EE8678;
  font-family: "Lato";
}

.u-l-style02 .num span {
  font-size: 40px;
}

.u-l-style02 .l-ttl {
  font-size: 24px;
  margin-bottom: 15px;
}

.u-l-style02 .l-sub-ttl {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "FOT-筑紫A丸ゴシック Std R";
}

.u-l-style02 .l-sub-ttl::before {
  content: "";
  background: #475255;
  width: 30px;
  height: 2px;
  margin-right: 25px;
}

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

.u-l-style02.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    display: block;
  }

  .l-imgR.reverse,
  .l-imgL.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .l-imgR.reverse .l-img,
  .l-imgL.reverse .l-img {
    margin: 15px 0 0;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.small,
  .l-imgL .l-img.small {
    width: 100%;
  }

  .l-imgR .l-img {
    margin: 0 0 15px;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }

  .l-col2,
  .l-col3 {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .l-col2,
  .l-col3 {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .u-l-style {
    display: block;
  }

  .u-l-style .l-img {
    width: 100%;
    margin: 0 0 25px;
  }

  .u-l-style .num {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .u-l-style .l-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .u-l-style .l-sub-ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .u-l-style.reverse .l-img {
    margin: 0 0 25px;
  }

  .u-l-style01 {
    display: block;
  }

  .u-l-style01 .l-img {
    width: 100%;
    margin: 0 0 25px;
  }

  .u-l-style01 .num {
    font-size: 20px;
    margin-bottom: 15px;
  }

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

  .u-l-style01 .l-sub-ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .u-l-style01.reverse .l-img {
    margin: 0 0 25px;
  }

  .u-l-style02 {
    display: block;
  }

  .u-l-style02 .l-img {
    width: 100vw;
    margin: 0 -5vw;
  }

  .u-l-style02 .l-desc {
    padding: 7%;
    margin: -50px 0 0;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .u-l-style02 .num {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .u-l-style02 .l-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .u-l-style02 .l-sub-ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .u-l-style02.reverse .l-desc {
    padding: 7%;
    margin: -50px 0 0;
    width: 100%;
  }

  .u-l-style02.reverse .l-img {
    margin: 0 -10% 0;
    width: 120%;
  }
}

/*-------
    下層ボタン
    --------*/
.u-btn-wrap {
  display: flex;
  gap: 15px;
}

.u-btn-wrap.between {
  justify-content: space-between;
  align-items: center;
}

.u-btn-more {
  /**base*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  padding: 0 20px 1px;
  transition: opacity 0.5s;
  /*custom*/
  display: grid;
  place-items: center;
  position: relative;
  width: 250px;
  height: clamp(45px, calc(65 / 1024 * 100vw), 65px);
  padding: 0;
  color: #EE8678;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 1.7rem;
  line-height: 1;
  border: 1px solid #EE8678;
  border-radius: 100vh;
  /*yoko-border*/
}

.u-btn-more::before {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  width: 6px;
  height: 10px;
  background: url(../images/share/icon_btn.svg) no-repeat center/contain;
}

.u-btn-more:hover {
  opacity: .6;
}

.u-btn-more.Lsize {
  width: 300px;
}

@media (max-width: 800px) {
  .u-btn-wrap {
    flex-wrap: wrap;
  }

  .u-btn-wrap.between {
    justify-content: center;
  }

  .u-btn-more {
    width: 100%;
    font-size: 1.4rem;
  }
}

/*テーブル*/
small.kome {
  font-size: 0.8em;
  vertical-align: top;
  color: #F33232;
}

.u-table-style {
  position: relative;
  z-index: 1;
}

.u-table-style+.txt {
  line-height: 1.75;
  margin-top: 15px;
}

.u-table-style a,
.u-table-style a:link,
.u-table-style a:visited {
  color: #EE8678;
  text-decoration: underline;
}

.u-table-style a:hover,
.u-table-style a:focus {
  text-decoration: none;
}

.u-table-style th,
.u-table-style td {
  padding: 15px;
  vertical-align: middle;
  text-align: center;
  line-height: 1.75;
}

.u-table-style th {
  background-color: #EE8678;
  font-weight: normal;
  color: #fff;
  border: 1px solid #fff;
}

.u-table-style th.tal {
  text-align: left;
}

.u-table-style th.bg01 {
  background: #FFF6F5;
  color: #333;
  border: 1px solid #EE8678;
}

.u-table-style td {
  background-color: #ffffff;
  border: 1px solid #EE8678;
}

.u-table-style td.tal {
  text-align: left;
}

.u-table-style td .txt-red {
  color: #F33232;
}

.u-table-style.schedule th,
.u-table-style.schedule td {
  padding: 15px;
  vertical-align: middle;
  text-align: center;
}

.u-table-style.schedule th {
  background-color: #EE8678;
  font-weight: normal;
  color: #fff;
  border: 1px solid #fff;
}

.u-table-style.schedule td {
  background-color: #ffffff;
  border: 1px solid #ddd;
}

.u-table-style.schedule td.bg01 {
  background: #EDF2FF;
  color: #333;
}

.u-table-style.center td {
  text-align: center;
}

.txt-brown {
  color: #EE8678;
  display: inline;
}

.u-time {
  display: flex;
  align-items: flex-start;
}

.u-time dt {
  width: 20%;
  padding: 3px;
  text-align: center;
  border: 1px solid #463632;
}

.u-time dd {
  padding-left: 10px;
  padding-top: 3px;
}

.u-time-table-wrap p.txt {
  display: block;
  font-size: clamp(12px, calc(15 / 1024 * 100vw), 15px);
  line-height: calc(22 / 15 * 1em);
  margin-top: 12px;
  margin-bottom: 8px;
}

.u-time-table-wrap p.txt span {
  display: inline-block;
  font-size: clamp(13px, calc(15 / 1024 * 100vw), 15px);
  line-height: calc(20 / 15 * 1em);
}

.u-time-table-wrap p.txt span.bl {
  color: #EE8678;
}

.u-time-table-wrap p.upper {
  display: block;
  width: max-content;
  line-height: 0;
}

.u-time-table-wrap p.upper span {
  display: inline-block;
  font-size: clamp(13px, calc(15 / 1024 * 100vw), 15px);
  line-height: calc(20 / 15 * 1em);
}

.u-time-table-wrap p.upper span.p-ttl {
  display: inline-block;
  width: clamp(70px, calc(100 / 1024 * 100vw), 100px);
  padding: 1px 0;
  margin-right: 10px;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  text-align: center;
  color: #EE8678;
  border: 1px solid #C6CCDB;
  border-radius: 100vh;
}

.table-scroll-txt,
.bland-scroll-txt {
  display: none;
}

@media (max-width: 800px) {
  .u-table-style.sp-layout-table {
    display: block;
    width: 100%;
  }

  .u-table-style.sp-layout-table tbody,
  .u-table-style.sp-layout-table tr,
  .u-table-style.sp-layout-table th,
  .u-table-style.sp-layout-table td {
    display: block;
    width: 100%;
  }

  .u-table-style.sp-layout-table th {
    border: 1px solid #ccc;
  }

  .u-table-style.sp-layout-table td {
    border: 1px solid #E2E2E2;
  }

  .u-table-style th,
  .u-table-style td {
    padding: 10px;
    font-size: clamp(14px, calc(17 / 1024 * 100vw), 17px);
    line-height: 1.7;
  }

  .table-scroll-txt,
  .bland-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .table-scroll-txt::before,
  .bland-scroll::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }

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

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

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

  .table-scroll::-webkit-scrollbar-thumb,
  .bland-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }

  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }

  .bland-scroll img {
    max-width: 1000px;
  }
}

/*---カスタム投稿サイドナビ--*/
.sidebar-layout {
  display: flex;
  justify-content: space-between;
  padding: 100px 0;
  margin: 0 auto;
  max-width: 1400px;
}

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

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

.side-contents-ttl {
  border-bottom: 1px solid #e8ecf0;
  font-size: clamp(14px, calc(15 / 1024 * 100vw), 15px);
  padding-bottom: 15px;
  padding-left: 30px;
  margin-bottom: 15px;
}

.side-contents-ttl::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/share/ico-category.svg") no-repeat center/contain;
  display: block;
  position: absolute;
  top: 5px;
  left: 0px;
}

.side-area-links li {
  padding-left: 20px;
  position: relative;
  font-size: 1.4rem;
}

.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 3px;
  border-color: #EE8678;
  border-radius: 100vw;
  position: absolute;
  top: 10px;
  left: 0;
}

.side-area-links a {
  display: inline-block;
}

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

@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: clamp(14px, calc(15 / 1024 * 100vw), 15px);
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

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

/*---カスタム投稿テーブル--*/
.l-table a {
  text-decoration: underline;
}

.l-table a:hover {
  text-decoration: none;
}

.l-table th,
.l-table td {
  padding: 15px;
  vertical-align: middle;
}

.l-table th {
  background-color: #4B4E52;
  font-weight: normal;
  color: #fff;
  border: 1px solid #ccc;
}

.l-table th.bg01 {
  background: #E8EAED;
  color: #333;
}

.l-table td {
  background-color: #ffffff;
  border: 1px solid #ccc;
}

.l-table.center td {
  text-align: center;
}

/*------------
よくある質問・アコーディオン
--------------*/
.u-faq-style dt,
.u-faq-style dd {
  background-color: #fff;
  display: flex;
  position: relative;
}

.u-faq-style dt i,
.u-faq-style dd i {
  margin-right: 15px;
  position: relative;
}

.u-faq-style dt {
  align-items: center;
  cursor: pointer;
  padding: 0 0 20px;
  position: relative;
  border-bottom: dotted #EE8678 2px;
}

.u-faq-style dd {
  padding: 20px 0;
  position: relative;
}

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

.u-faq-style .faq-ico {
  color: #EE8678;
  font-size: 23px;
  font-weight: bold;
  top: -3px;
}

.u-faq-style .faq-ico-a {
  color: #FBDEAD;
  font-size: 23px;
  font-weight: bold;
  top: -5px;
}

.u-faq-style .faq-ttl {
  font-size: 1.8rem;
  font-weight: bold;
}

.u-accordion-style .accordion-btn {
  cursor: pointer;
  padding: 0px 0px 0px 0px;
  position: relative;
}

.u-accordion-style .accordion-desc {
  display: none;
  padding-top: 15px;
  background: #fff;
}

.u-accordion-style .accordion-ttl {
  font-size: clamp(18px, calc(25 / 1024 * 100vw), 25px);
  margin: 0;
  position: relative;
  line-height: 1.25;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  border-bottom: solid 1px #C1C1C1;
  padding: 0 0 10px;
}

.u-accordion-style .accordion-open-ico {
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  right: 0px;
  top: 2px;
  border-radius: 100vw;
  border: 1px solid #000;
}

.u-accordion-style .accordion-open-ico::before,
.u-accordion-style .accordion-open-ico::after {
  content: "";
  display: block;
  background: #333;
  position: absolute;
  top: 50%;
  left: 50%;
}

.u-accordion-style .accordion-open-ico::before {
  width: 12px;
  height: 1px;
  transform: translateX(-50%);
}

.u-accordion-style .accordion-open-ico::after {
  width: 12px;
  height: 1px;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left;
  transition: transform .5s;
}

.u-accordion-style .is-open .accordion-open-ico::after {
  transform: rotate(0) translateX(-50%);
}

.u-accordion-style+.u-accordion-style {
  margin-top: 15px;
}

@media (max-width: 800px) {
  .u-faq-style dt::after {
    top: 2px;
  }

  .u-faq-style .ico {
    font-size: clamp(16px, calc(17 / 1024 * 100vw), 17px);
    width: 30px;
    height: 30px;
    margin: 0 13px 0 0;
  }

  .u-accordion-style .accordion-desc {
    display: none;
    padding-top: 15px;
    background: #fff;
  }

  .u-accordion-style .accordion-ttl {
    padding: 0 30px 10px 0;
  }
}

/*map,video,tab,faq,accordion*/
.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

video {
  width: 100%;
}

.google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 450px;
}

[data-tab-content] {
  display: none;
}

[data-tab-content].is-active {
  display: block;
}

.tab-list {
  border-bottom: 1px solid #333;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.tab-nav-item {
  display: inline-block;
  cursor: pointer;
  border: 1px solid #AAC728;
  border-radius: 50px;
  color: #AAC728;
  font-size: 1.4rem;
  padding: 0 20px;
  transition: all 0.2s ease;
  background: #fff;
}

.tab-nav-item:hover {
  background-color: #AAC728;
  color: #fff;
}

.tab-nav-item.is-active {
  background: #AAC728;
  color: #FFF;
}

.tab-content.is-active {
  animation: tabFadeIn 0.7s ease 0s 1 normal;
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
  }
}

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

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*お知らせ*/
.list-under-news {
  border-top: 1px solid #dfdfdf;
  margin-bottom: 30px;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-weight: 700;
}

.list-under-news a {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #dfdfdf;
  padding: 20px 0;
}

.list-under-news a:hover .ttl {
  text-decoration: underline;
}

.list-under-news time {
  display: inline-block;
  color: #888;
  margin-right: 25px;
}

.list-under-news .category {
  display: inline-block;
  background-color: #EE8678;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 15px;
  line-height: 28px;
}

.list-under-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/*通常投稿*/
.list-post-type-voice {
  margin-bottom: 80px;
}

.list-post-type-voice li {
  display: flex;
  flex-wrap: wrap;
}

.list-post-type-voice li:first-child .list-desc {
  border-top: 2px dotted #EE8678;
}

.list-post-type-voice .list-desc {
  flex: 1;
  border-bottom: 2px dotted #EE8678;
  padding: 30px 0;
}

.list-post-type-voice .list-desc .list-data {
  font-size: 1.7rem;
  color: #EE8678;
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  position: relative;
}

.list-post-type-voice .list-desc .list-ttl {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  flex-basis: auto;
  color: #333;
  font-family: "FOT-筑紫A丸ゴシック Std R";
}

.list-post-type-voice .list-desc .list-btn {
  position: absolute;
  right: 0;
  content: "";
  background: url("../images/share/ico_arrow_bottom.svg");
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
}

.list-post-type-voice time {
  display: inline-block;
  color: #EE8678;
  margin: 0 30px 0 0;
}

.list-post-type-voice .category-area,
.list-post-type-voice .category-wrap {
  background: #EE8678;
  line-height: 1;
  display: inline-block;
  margin-right: 30px;
  border-radius: 100vw;
}

.list-post-type-voice .category {
  color: #fff;
  display: inline-block;
  font-size: 1.7rem;
  margin: 0;
  padding: 10px 20px;
  font-family: "FOT-筑紫A丸ゴシック Std R";
}

.list-post-type-voice .category+.category {
  padding-left: 0;
}

.list-post-type-voice .category+.category::before {
  content: "/";
  margin-right: 8px;
}

@media (max-width: 800px) {
  .list-post-type-voice li {
    display: flex;
    flex-wrap: wrap;
  }

  .list-post-type-voice .list-desc {
    flex: 1;
    border-bottom: 2px dotted #EE8678;
    padding: 30px 0;
  }

  .list-post-type-voice .list-desc .list-data {
    font-size: 1.5rem;
    color: #EE8678;
    margin: 0 0 5px;
    display: block;
    align-items: center;
    position: relative;
  }

  .list-post-type-voice .list-desc .list-ttl {
    font-size: 1.7rem;
  }

  .list-post-type-voice .list-desc .list-btn {
    right: 0;
    top: 50%;
  }

  .list-post-type-voice time {
    margin: 0 15px 0 0;
  }

  .list-post-type-voice .category-area,
  .list-post-type-voice .category-wrap {
    margin-right: 15px;
    margin-bottom: 15px;
  }

  .list-post-type-voice .category {
    font-size: 1.5rem;
    padding: 5px 15px;
  }
}

/*ギャラリー*/
.list-under-gallery {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 30px 15px;
  margin-bottom: 50px;
}

.list-under-gallery .list-img {
  border: 1px solid #eaeaea;
  margin-bottom: 20px;
  overflow: hidden;
}

.list-under-gallery .list-img img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 100 / 150;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.list-under-gallery time {
  color: #aaa;
  display: block;
  font-size: 12px;
}

.list-under-gallery .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: clamp(20px, 1.575vw, 22px);
  margin-bottom: 10px;
}

.list-under-gallery .category {
  display: inline-block;
  background-color: #333;
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 5px;
}

.list-under-gallery a {
  display: block;
  height: 100%;
}

.list-under-gallery a:hover .list-img img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}


@media (max-width: 800px) {

  /*ギャラリー*/
  .list-under-gallery {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 15px;
  }

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


  .list-under-gallery .list-ttl {
    margin-bottom: 0;
    font-size: 13px;
  }
}

.list-post-type01 {
  margin-bottom: 80px;
}

.list-post-type01 li {
  display: flex;
  flex-wrap: wrap;
}

.list-post-type01 li+li {
  margin-top: 50px;
}

.list-post-type01 .list-ttl {
  flex-basis: 100%;
  border-bottom: 1px solid #ccc;
  font-size: clamp(20px, 1.575vw, 26px);
  position: relative;
  padding: 0 0 15px;
  margin: 0 0 25px;
  word-break: break-word;
}

.list-post-type01 .list-ttl a,
.list-post-type01 .u-h3 a {
  transition: 0.5s;
}

.list-post-type01 .list-ttl a:hover,
.list-post-type01 .u-h3 a:hover {
  opacity: 0.5;
}

.list-post-type01 .u-h3 {
  flex-basis: 100%;
}

.list-post-type01 .list-img {
  margin: 0 30px 0 0;
  width: 250px;
}

.list-post-type01 .list-img img {
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-post-type01 .list-img a {
  transition: 0.5s;
}

.list-post-type01 .list-img a:hover {
  opacity: 0.5;
}

.list-post-type01 .list-desc {
  flex: 1;
}

.list-post-type01 .list-data {
  font-size: 1.3rem;
  margin: 0 0 5px;
}

.list-post-type01 time {
  display: inline-block;
  color: #98918c;
  font-size: 1.4rem;
  vertical-align: -1px;
  margin: 0 25px 0 0;
}

.list-post-type01 .category-area,
.list-post-type01 .category-wrap {
  background: #EE8678;
  line-height: 1;
  display: inline-block;
}

.list-post-type01 .category {
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  margin: 0;
  padding: 5px 8px;
  font-family: "FOT-筑紫A丸ゴシック Std R";
}

.list-post-type01 .category+.category {
  padding-left: 0;
}

.list-post-type01 .category+.category::before {
  content: "/";
  margin-right: 8px;
}

.list-post-type01 .list-txt {
  margin: 0 0 15px;
}

.list-post-type01 .list-btn {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 800px) {

  /*通常投稿*/
  .list-post-type01 {
    margin: 0 0 50px;
  }

  .list-post-type01 li+li {
    margin-top: 20px;
  }

  .list-post-type01 .list-ttl {
    font-size: 1.8rem;
    padding: 0 0 7px;
    margin: 0 0 15px;
  }

  .list-post-type01 .list-img {
    margin: 0 15px 0 0;
    width: 40%;
  }

  .list-post-type01 .list-img img {
    width: 100%;
    height: 25vw;
  }

  .list-post-type01 .list-desc {
    margin: -5px 0 0;
  }

  .list-post-type01 time {
    font-size: 1.2rem;
    margin: 0 15px 0 0;
  }

  .list-post-type01 .list-txt {
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
  }

  .list-post-type01 .list-btn {
    margin-top: 15px;
  }
}

/*普通投稿 詳細ページ*/
.l-post-single {
  margin-bottom: 80px;
}

.l-post-single .l-ttl {
  font-size: 30px;
  margin: 0 0 35px;
  word-break: break-word;
}

.l-post-single .post-data {
  margin: 0 0 20px;
}

.l-post-single .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 1.4rem;
  vertical-align: -1px;
  margin: 0 20px 0 0;
}

.l-post-single .post-data .category-area,
.l-post-single .post-data .category-wrap {
  background: #EE8678;
  display: inline-block;
  line-height: 1;
  display: inline-block;
}

.l-post-single .post-data .category {
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  margin: 0;
  padding: 5px 8px;
}

.l-post-single .post-data .category+.category {
  padding-left: 0;
}

.l-post-single .post-data .category+.category::before {
  content: "/";
  margin-right: 8px;
}

.l-post-single .post-data .single-img {
  background: #fff;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.l-post-single .post-data .single-img img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

/*--------------------------------------------------------
個人情報保護方針
-----------------------------------------------------------*/
.category-ttl {
  margin-bottom: 15px;
}

/*ブログスタイル*/
.list-under-blog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

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

.list-under-blog .list-img img {
  object-fit: cover;
  width: 100%;
  height: 165px;
  transition: transform 0.5s;
}

.list-under-blog time {
  color: #aaa;
  display: block;
  font-size: 1.2rem;
}

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

.list-under-blog .category {
  display: inline-block;
  background-color: #EE8678;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 5px;
}

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

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

.list-under-post {
  border-top: 1px solid #e8ecf0;
  margin-bottom: 50px;
}

.list-under-post>li {
  border-bottom: 1px solid #f5f5f5;
}

.list-under-post a {
  display: flex;
  transition: background-color 0.3s, padding 0.3s;
  padding: 15px 35px 15px 0;
  position: relative;
}

.list-under-post a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(50%) rotate(45deg);
}

.list-under-post a:hover .list-ttl {
  text-decoration: underline;
}

.list-under-post .list-img {
  width: 150px;
  margin-right: 25px;
}

.list-under-post .list-img img {
  object-fit: cover;
  width: 100%;
  height: 105px;
}

.list-under-post .list-desc {
  flex: 1;
  font-size: 0.9rem;
}

.list-under-post time {
  display: block;
  color: #ADADAD;
  font-size: 0.8rem;
}

.list-under-post .list-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.list-under-post .category {
  display: inline-block;
  background-color: #EE8678;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

.list-under-post .no-post {
  padding: 25px 0;
}

/*詳細ページ*/
.single-post-layout {
  border-bottom: 1px solid #FFB750;
  padding-bottom: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.single-post-layout .l-ttl {
  border-bottom: 1px solid #FFB750;
  font-size: 24px;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.single-post-layout .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.single-post-layout .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 1.2rem;
  margin-right: 20px;
}

.single-post-layout .post-data .category {
  background: #EE8678;
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 0 10px 0 0;
}

.single-post-layout .post-data p,
.single-post-layout .post-data ul,
.single-post-layout .post-data ol {
  margin-bottom: 15px;
}

.single-post-layout .post-data a {
  text-decoration: underline;
}

.single-post-layout .post-data a:hover {
  text-decoration: none;
}

.single-post-layout .post-data strong {
  font-weight: bold;
}

.single-post-layout .post-data em {
  font-style: italic;
}

.single-post-layout .post-data ul li {
  list-style: inside disc;
}

.single-post-layout .post-data ul li>ul {
  margin: 0 0 0 15px;
}

.single-post-layout .post-data ol li {
  list-style: inside decimal;
}

.single-post-layout .post-data ol li>ol {
  margin: 0 0 0 15px;
}

/*症例紹介*/
.case-layout,
.l-post-case {
  background-color: #f5f5f5;
  padding: 6%;
}

.case-layout+.l-post-case,
.l-post-case+.l-post-case {
  margin-top: 50px;
}

.case-layout time,
.l-post-case time {
  color: #aaa;
  display: block;
  font-size: 1.2rem;
  margin-right: 15px;
}

.case-layout .category-area,
.case-layout .category-wrap,
.l-post-case .category-area,
.l-post-case .category-wrap {
  background: #EE8678;
  display: inline-block;
  line-height: 1;
  display: inline-block;
}

.case-layout .category,
.l-post-case .category {
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  margin: 0;
  padding: 5px 8px;
}

.case-layout .category+.category,
.l-post-case .category+.category {
  padding-left: 0;
}

.case-layout .category+.category::before,
.l-post-case .category+.category::before {
  content: "/";
  margin-right: 8px;
}

.case-layout .l-ttl,
.l-post-case .l-ttl {
  font-size: 24px;
  margin-bottom: 30px;
}

.case-layout .post-data,
.l-post-case .post-data {
  display: flex;
  margin-bottom: 20px;
}

.case-layout .before-after,
.l-post-case .before-after {
  margin-bottom: 30px;
}

.case-layout .l-table,
.l-post-case .l-table {
  background-color: #fff;
  border: 1px solid #eee;
}

.case-layout .l-table th,
.case-layout .l-table td,
.l-post-case .l-table th,
.l-post-case .l-table td {
  border: 1px solid #eee;
  line-height: 1.8;
  font-size: clamp(14px, calc(15 / 1024 * 100vw), 15px);
  padding: 15px;
}

.case-layout .l-table th,
.l-post-case .l-table th {
  background-color: #EE8678;
  color: #fff;
  vertical-align: top;
  text-align: left;
  width: 25%;
}

.case-layout .l-btn,
.l-post-case .l-btn {
  text-align: center;
  margin-top: 50px;
}

.case-layout .l-item,
.l-post-case .l-item {
  margin-top: 50px;
}

.case-layout .item-ttl,
.l-post-case .item-ttl {
  border-bottom: 1px solid #333;
  font-size: 1.8rem;
  position: relative;
  padding: 0 0 12px;
  margin: 0 0 25px;
}

.case-layout .item-ttl::after,
.l-post-case .item-ttl::after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.case-layout+.case-layout,
.l-post-case+.case-layout {
  margin-top: 50px;
}

.before-after {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.before-after .item {
  text-align: center;
  width: 42%;
  position: relative;
}

.before-after .item+.item::before {
  content: "";
  border-style: solid;
  border-width: 13.5px 0 13.5px 14px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  left: -85px;
  top: calc(50% - 20px);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.before-after figure img {
  max-height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
}

.before-after p {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 20px;
}

.list-case-details>li {
  display: flex;
  flex-direction: row-reverse;
}

.list-case-details>li+li {
  border-top: 1px dashed #c8c8c8;
  margin-top: 30px;
  padding-top: 30px;
}

.list-case-details .list-img {
  width: 35%;
  margin-left: 30px;
}

.list-case-details .list-desc {
  flex: 1;
}

.list-case-details .list-ttl {
  font-size: clamp(16px, calc(17 / 1024 * 100vw), 17px);
}

@media (max-width: 800px) {

  /*症例紹介*/
  .case-layout .l-ttl {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .case-layout .post-data {
    display: flex;
    margin-bottom: 20px;
  }

  .case-layout .before-after {
    margin-bottom: 30px;
  }

  .case-layout .l-table th,
  .case-layout .l-table td {
    display: block;
    padding: 10px;
    font-size: 1.4rem;
  }

  .case-layout .l-table th {
    width: 100%;
  }

  .case-layout .l-btn {
    margin-top: 30px;
  }

  .case-layout .l-item {
    margin-top: 30px;
  }

  .case-layout .item-ttl {
    border-bottom: 1px solid #333;
    font-size: 1.8rem;
    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: 30px;
  }

  .before-after {
    display: block;
  }

  .before-after .item {
    width: 100%;
  }

  .before-after .item+.item {
    margin-top: 50px;
  }

  .before-after .item+.item::before {
    left: 50%;
    top: -35px;
    -webkit-transform: translate(-50%, 0) rotate(90deg);
    transform: translate(-50%, 0) rotate(90deg);
  }

  .before-after figure img {
    max-height: 100%;
  }

  .list-case-details>li {
    display: block;
  }

  .list-case-details .list-img {
    width: 100%;
    margin: 0 0 25px;
  }
}

/*セレクト式カテゴリー*/
.select-area {
  display: flex;
  align-items: center;
  margin: 0 0 80px;
}

.select-area .select-item {
  display: flex;
  align-items: center;
  margin: 0 30px 0 0;
  border: 1px solid #EE8678;
  border-radius: 10px;
  padding: 15px;
}

.select-area .select-ttl {
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 15px 0 0;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: url(../images/share/ico_arrow_down.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 0px solid rgba(0, 0, 0, 0.5);
  color: #333;
  font-size: 1.6rem;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 5px;
}

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

/*ページャー*/
.post-number {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: #333;
  background-color: #f5f5f5;
  font-size: 1.3rem;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  transition: 0.3s;
  padding: 0 20px;
}

.post-number>*+* {
  margin-left: 10px;
}

.post-number a:hover {
  background: #EE867899;
  color: #fff;
}

.post-number .current {
  background: #EE8678;
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: #EE8678;
  border: 1px solid #EE8678;
  color: #fff;
  font-size: 1.3rem;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:hover {
  background: #EE867899;
  color: #fff;
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid #EE8678;
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #EE8678;
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background: #66666699;
}

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}

.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 13px;
  border-left: 1px solid #EE8678;
}

.post-number-single .next::before {
  transform: rotate(135deg);
  right: 13px;
  border-right: 1px solid #EE8678;
}

.u-container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.dl-privacy dt {
  border-bottom: 1px solid #000;
  font-size: 1.8rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

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

.dl-privacy a {
  text-decoration: underline !important;
  color: #EF7CA8 !important;
}

.dl-privacy a:hover {
  text-decoration: none;
}

.list-privacy a {
  text-decoration: underline !important;
  color: #9A76AD !important;
}

.list-privacy a:hover {
  text-decoration: none;
}

.list-privacy li {
  position: relative;
  padding: 0 0 0 15px;
}

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

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

.under-slider01 .splide {
  margin: 0 auto;
}

.under-slider01 .splide__track {
  overflow: visible;
}

.under-slider01 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: .3;
}

.under-slider01 .splide__arrows {
  position: absolute !important;
  top: 45%;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  width: 100%;
  max-width: 1024px;
  height: 50px;
  display: grid;
  grid-template-columns: 50px 50px;
  gap: 10px;
  justify-content: space-between;
  z-index: 1;
}

.under-slider01 .splide .splide__arrow {
  background: url("../images/share/btn-arrow-slide.svg");
  background-size: contain;
  background-position: center;
  border: none;
  cursor: pointer;
  color: transparent;
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  transition: 0.5s;
  z-index: 10;
}

.under-slider01 .splide .splide__arrow:hover {
  opacity: .5;
}

.under-slider01 .splide .splide__arrow.splide__arrow--next {
  right: 25px;
  transform: rotate(0deg);
}

.under-slider01 .splide .splide__arrow.splide__arrow--prev {
  left: 25px;
  transform: rotate(180deg);
}

.under-slider01 .item-desc {
  margin-top: 15px;
}

.under-slider01 .item-ttl {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.under-slider02 .item-img {
  position: relative;
  text-align: center;
}

.under-slider02 .item-img img {
  margin: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.under-slider02 .splide .splide__arrows {
  position: absolute !important;
  top: 45%;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  width: 100%;
  max-width: 1024px;
  height: 50px;
  display: grid;
  grid-template-columns: 50px 50px;
  gap: 10px;
  justify-content: space-between;
  z-index: 1;
}

.under-slider02 .splide .splide__arrow {
  background: none !important;
  border: none;
  background: transparent;
  cursor: pointer;
  color: transparent;
  display: block;
  position: absolute;
  top: calc(50% - 0px);
  width: 20px;
  height: 20px;
  transition: 0.5s;
  z-index: 10;
}

.under-slider02 .splide .splide__arrow:hover {
  opacity: .5;
}

.under-slider02 .splide .splide__arrow.splide__arrow--next {
  border-top: 6px solid #333;
  border-right: 6px solid #333;
  right: 25px;
  transform: rotate(45deg) translateY(-50%);
}

.under-slider02 .splide .splide__arrow.splide__arrow--prev {
  border-top: 6px solid #333;
  border-left: 6px solid #333;
  left: 25px;
  transform: rotate(-45deg) translateY(-50%);
}

.under-slider02 .splide .splide__arrow--prev svg {
  transform: rotate(180deg);
}

.under-slider02 .splide__pagination {
  gap: 10px;
  bottom: -30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.under-slider02 .splide__pagination li button {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: #ccc;
  opacity: .5;
}

.under-slider02 .splide__pagination li button.is-active {
  background: #EE8678;
  opacity: 1;
}

@media (max-width: 800px) {
  .under-slider01 .splide__arrows {
    top: 40%;
    left: 50%;
    transform: translateY(-40%) translateX(-50%);
    width: 100%;
    max-width: 1024px;
    height: 30px;
    display: grid;
    grid-template-columns: 50px 50px;
    gap: 10px;
    justify-content: space-between;
    z-index: 1;
  }

  .under-slider01 .splide .splide__arrow {
    width: 30px;
    height: 30px;
  }

  .under-slider01 .splide .splide__arrow:hover {
    opacity: .5;
  }

  .under-slider01 .splide .splide__arrow.splide__arrow--next {
    right: 10px;
  }

  .under-slider01 .splide .splide__arrow.splide__arrow--prev {
    left: 10px;
  }

  .under-slider01 .item-desc {
    margin-top: 15px;
  }

  .under-slider02 .item-img {
    position: relative;
    text-align: center;
  }

  .under-slider02 .item-img img {
    margin: auto;
    aspect-ratio: 10/7;
    object-fit: cover;
  }
}

/*下層カスタムレイアウト*/
.item-h .item-ttl {
  font-size: clamp(20px, calc(22 / 1024 * 100vw), 22px);
  position: relative;
  padding: 1.5em 0;
}

.item-h .item-ttl .en {
  font-size: clamp(24px, calc(28 / 1024 * 100vw), 28px);
  font-family: "Quicksand", sans-serif;
  text-align: right;
  line-height: 1.8;
  color: rgba(250, 136, 53, 0.1);
  position: absolute;
  right: 0;
  top: .5em;
}

/*パーツA*/
.l-imgR .l-img.bg-kazari {
  width: 60%;
  background-image: linear-gradient(90deg, white 70%, #654d47 70%);
  margin-left: 40px;
  display: flex;
  align-items: center;
}

.l-imgR .l-img.bg-kazari img {
  width: 100%;
  padding: 40px 40px 40px 0;
}

.l-imgR .l-desc .ttl-overunderline,
.l-imgL .l-desc .ttl-overunderline {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(20px, calc(22 / 1024 * 100vw), 22px);
  margin-bottom: 40px;
  position: relative;
  letter-spacing: .15em;
}

.l-imgR .l-desc .ttl-overunderline::after,
.l-imgL .l-desc .ttl-overunderline::after {
  content: "";
  height: 1px;
  width: 70vw;
  background: #BFC3CB;
  position: absolute;
  left: -30vw;
  bottom: -20px;
  z-index: -1;
}

@media (max-width: 800px) {

  /*パーツA*/
  .l-imgR .l-img.bg-kazari {
    width: 100%;
    margin-left: 0px;
  }

  .l-imgR .l-desc .ttl-overunderline::after,
  .l-imgL .l-desc .ttl-overunderline::after {
    left: -10vw;
  }
}

/*--------
ボックススタイル
----------*/
.u-box-style {
  padding: 5%;
  position: relative;
  background: #FFF6F5;
  border-radius: 40px;
}

.u-box-style.shadow {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.u-box-style>.u-box-style {
  padding: 2.5%;
}

.u-box-style .l-imgL .l-img img,
.u-box-style .l-imgR .l-img img {
  border-radius: 10px;
}

.u-box-style.bg-color {
  padding: 5%;
  position: relative;
  background: #EE8678;
  color: #fff;
  border-radius: 0px;
}

.u-box-style.bg-color .box-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: 20px;
  padding: 0 0 0 50px;
  margin: 0 0 20px;
  position: relative;
  color: #fff;
  border: 0;
  text-align: left;
}

.u-box-style.bg-color .box-ttl i {
  background: #EE8678;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  top: -4px;
  left: 0;
  position: absolute;
}

.u-box-style.bg-color .box-ttl i img {
  height: 20px;
  width: auto;
}

.u-box-style.bg-wh {
  background: #fff;
}

.u-box-style.border {
  border: 1px solid #EE8678;
  background: #fff;
  border-radius: 20px;
}

.u-box-style.border .box-ttl02 {
  border-bottom: solid 1px #EE8678;
  color: #333;
  font-size: clamp(20px, calc(22 / 1024 * 100vw), 22px);
  padding-bottom: clamp(10px, calc(20 / 1024 * 100vw), 20px);
  margin-bottom: clamp(15px, calc(30 / 1024 * 100vw), 30px);
}

.u-box-style.border .box-ttl02 .num {
  background: #EE8678;
  font-size: clamp(15px, calc(17 / 1024 * 100vw), 17px);
  line-height: 1;
  color: #fff;
  border-radius: 100vw;
  padding: clamp(10px, calc(15 / 1024 * 100vw), 15px) clamp(15px, calc(30 / 1024 * 100vw), 30px);
  margin-right: clamp(10px, calc(30 / 1024 * 100vw), 30px);
  display: inline-block;
  vertical-align: middle;
}

.u-box-style.border-top {
  border-top: 5px solid #EE8678;
  background: #F2F0EC;
  border-radius: 24px;
}

.u-box-style .box-ttl {
  font-size: clamp(24px, calc(27 / 1024 * 100vw), 27px);
  color: #EE8678;
  margin: 0 0 clamp(20px, calc(36 / 1024 * 100vw), 36px);
  position: relative;
  line-height: 1.25;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  text-align: center;
}

.u-box-style .box-ttl .en {
  font-size: 2.5em;
  display: block;
  color: #ffF;
  font-weight: 500;
}

.u-box-style .box-ttl-s {
  font-size: clamp(18px, calc(18 / 1024 * 100vw), 18px);
  margin: 0 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.25;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  color: #333333;
  text-align: left;
}

.u-box-style .box-ttl-s::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 10px;
  background: #FA8835;
  left: 0;
  top: 10px;
}

.u-box-style .p-ttl {
  font-size: 1.1rem;
  line-height: 1;
  display: inline-block;
  color: #ffF;
  background: #FA8835;
  padding: 4px 10px;
  margin-bottom: 20px;
  border-radius: 100vw;
}

.u-box-style .l-ttl {
  font-size: clamp(20px, calc(24 / 1024 * 100vw), 20px);
  margin: 0 0 20px;
  position: relative;
  line-height: 1.5;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  color: #EE8678;
  text-align: left;
}

/*--------
採用情報
----------*/
/* time-schedule */
.u-time-schedule {
  margin-left: 10px;
  padding-left: 30px;
  border-left: 1px solid #EE8678;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(18px, calc(22 / 1024 * 100vw), 22px);
}

.u-time-schedule li {
  line-height: 1;
  margin: 0 0 50px;
  padding: 0;
  position: relative;
}

.u-time-schedule span.time {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  color: #EE8678;
}

.u-time-schedule span.time::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  background: #EE8678;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.u-time-schedule .sch_box {
  display: flex;
  align-items: flex-start;
}

.u-time-schedule .sch_title.lh125 {
  line-height: 1.25;
}

/*------------
スタッフページ パーツ
--------------*/
.u-staff-layout {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 50px;
}

.u-staff-layout .l-ttl {
  font-size: clamp(18px, calc(18 / 1024 * 100vw), 18px);
  color: #EE8678;
  display: inline-block;
  margin: 0 0 15px;
  padding: 0 0 5px;
  border-bottom: 1px solid #EE8678;
}

.u-staff-layout .l-img {
  width: 45%;
  margin-left: 65px;
}

.u-staff-layout .l-img img {
  width: 100%;
  aspect-ratio: 41/50;
  object-fit: cover;
}

.u-staff-layout .l-desc {
  margin-top: 0px;
  width: 55%;
}

.u-staff-layout .l-desc .u-list-tag {
  display: flex;
  flex-wrap: wrap;
}

.u-staff-layout .l-desc .u-list-tag li {
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 3px;
  font-size: 13px;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  line-height: 1;
  color: #EE8678;
  background: #EDF2FF;
}

.u-staff-layout .l-name {
  border-bottom: 1px solid #C6CCDB;
  padding: 0 0 15px;
  margin: 0 0 15px;
}

.u-staff-layout .job {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.u-staff-layout .name {
  border-bottom: 1px solid #BFC3CB;
  line-height: 1;
  padding-bottom: 35px;
  margin-bottom: 30px;
}

.u-staff-layout .jp {
  font-size: 30px;
  margin-right: 25px;
}

.u-staff-layout .en {
  color: #EE8678;
  font-size: 1.8rem;
  letter-spacing: normal;
}

.col2 .u-staff-layout .l-img {
  margin-right: 20px;
}

.col2 .u-staff-layout .job {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.col2 .u-staff-layout .name {
  border-bottom: 1px solid #D0D0D0;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 15px;
}

.col2 .u-staff-layout .jp {
  font-size: 24px;
  margin-right: 10px;
}

.col2 .u-staff-layout .en {
  color: #EE8678;
  font-size: 1.4rem;
}

.staff-ttl {
  border-bottom: 1px solid #D0D0D0;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 15px;
  font-size: 20px;
}

.u-staff-profile {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.u-staff-profile .item {
  background: #EDF2FF;
  padding: 35px;
  width: 48.43%;
  border-radius: 0px;
}

.u-staff-profile .item-ttl {
  color: #EE8678;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.dl-career {
  border-top: 1px dotted #c0c0c0;
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(14px, calc(17 / 1024 * 100vw), 17px);
  line-height: 1.8;
}

.dl-career dt {
  border-bottom: 1px dotted #c0c0c0;
  padding: 10px 0;
  width: 25%;
}

.dl-career dd {
  border-bottom: 1px dotted #c0c0c0;
  padding: 10px 0;
  width: 75%;
}

.dl-career.full {
  display: block;
}

.w800 {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

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

  .u-staff-layout .l-img {
    text-align: center;
    margin: 0 0 30px;
    width: 100%;
  }

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

  .u-staff-layout .l-desc {
    margin: 0;
    width: 100%;
  }

  .u-staff-layout .job {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .u-staff-layout .name {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .u-staff-layout .jp {
    display: block;
    font-size: 25px;
    margin: 0 0 10px;
  }

  .u-staff-layout .en {
    font-size: 1.4rem;
  }

  .col2 .u-staff-layout .l-img {
    margin-left: 0px;
  }

  .u-staff-profile {
    display: block;
  }

  .u-staff-profile .item {
    padding: 25px;
    width: 100%;
  }

  .u-staff-profile .item+.item {
    margin-top: 30px;
  }

  .dl-career {
    font-size: 1.3rem;
  }
}

/*問い合わせパーツ5*/
.u-btn-wrap.item-center {
  align-items: center;
  justify-content: center;
  grid-column-gap: 30px;
}

.u-btn-wrap.item-center p span {
  margin-right: 30px;
}

.u-btn-wrap .tel {
  display: block;
  font-weight: bold;
  font-size: clamp(28px, calc(37 / 1024 * 100vw), 37px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #EE8678;
  font-family: "FOT-筑紫A丸ゴシック Std R";
}

.u-btn-wrap .tel i {
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: -4px;
  width: 25px;
}

.u-btn-wrap .tel i img {
  width: 100%;
}

@media (max-width: 800px) {
  .u-btn-wrap.item-center p {
    text-align: center;
  }

  .u-btn-wrap.item-center p span {
    margin-right: 0px;
    display: block;
  }
}

.u-tel-layout {
  background: #EDF2FF;
  max-width: 720px;
  padding: 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-tel-layout .ttl {
  display: table;
  border-bottom: 1px solid #EE8678;
  font-weight: bold;
  font-size: clamp(18px, calc(18 / 1024 * 100vw), 18px);
  line-height: 1.7;
  padding: 0 0 5px;
  margin: 0 auto 15px;
  color: #EE8678;
}

.u-tel-layout .tel {
  display: block;
  font-weight: bold;
  font-size: clamp(24px, calc(28 / 1024 * 100vw), 28px);
  font-family: "FOT-筑紫A丸ゴシック Std R";
  line-height: 1;
  letter-spacing: 0.05em;
  color: #EE8678;
}

.u-tel-layout .tel i {
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: -4px;
  width: 20px;
}

.u-tel-layout .tel i img {
  width: 100%;
}

.u-tel-layout .time {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 500px;
  font-size: clamp(11px, calc(11 / 1024 * 100vw), 11px);
  font-weight: normal;
}

.u-tel-layout .time dt {
  background: #EE8678;
  color: #fff;
  border-radius: 100vw;
  padding: 3px;
  width: 20%;
  text-align: center;
  margin-bottom: 10px;
}

.u-tel-layout .time dd {
  width: 80%;
  padding-left: 10px;
  padding-top: 3px;
  margin-bottom: 10px;
}

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

  .u-tel-layout .ttl {
    display: block;
    font-size: clamp(14px, calc(15 / 1024 * 100vw), 15px);
  }

  .u-tel-layout .wrapper {
    display: block;
    margin-bottom: 15px;
  }

  .u-tel-layout .wrapper li+li {
    margin: 10px 0 0;
  }

  .u-tel-layout .time {
    width: 100%;
    margin-left: 0;
  }
}

/**流れパーツC**/
.u-list-flow {
  border: 1px solid #EE8678;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
}

.u-list-flow .tel {
  display: block;
  font-weight: bold;
  font-size: clamp(24px, calc(28 / 1024 * 100vw), 28px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #EE8678;
  font-family: "FOT-筑紫A丸ゴシック Std R";
}

.u-list-flow .tel i {
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: -4px;
  width: 20px;
}

.u-list-flow .tel i img {
  width: 100%;
}

.u-list-flow>li {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  position: relative;
}

.u-list-flow>li+li {
  border-top: 1px solid #EE8678;
  padding-top: 50px;
  margin-top: 50px;
}

.u-list-flow>li+li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-bottom: 2px solid #EE8678;
  border-right: 2px solid #EE8678;
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
}

.u-list-flow>li+li::after {
  content: "";
  background: #fff;
  width: 75px;
  height: 22px;
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.u-list-flow .list-img {
  width: 40%;
  margin: 0 0 0 50px;
}

.u-list-flow .list-img img {
  aspect-ratio: 65/46;
  border-radius: 20px;
}

.u-list-flow .list-desc {
  flex: 1;
}

.u-list-flow .list-ttl {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: clamp(20px, calc(22 / 1024 * 100vw), 22px);
  line-height: 1.5;
  margin: 0 0 35px;
}

.u-list-flow .num {
  background: #EE8678;
  color: #fff;
  display: inline-block;
  font-size: clamp(14px, calc(15 / 1024 * 100vw), 15px);
  line-height: 30px;
  padding: 0 5px 0 8px;
  margin: 0 25px 0 0;
  position: relative;
}

.u-list-flow .num::after {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 12px;
  border-color: transparent transparent transparent #EE8678;
  position: absolute;
  right: -12px;
}

@media (max-width: 800px) {
  .u-list-flow {
    padding: 15px;
  }

  .u-list-flow>li {
    display: block;
  }

  .u-list-flow .list-img {
    width: 100%;
    margin: 0 0 30px;
  }

  .u-list-flow .list-ttl {
    display: block;
    font-size: 20px;
    margin: 0 0 15px;
  }

  .u-list-flow .list-num {
    display: table;
    font-size: 1.2rem;
    line-height: 25px;
    padding: 0 2px 1px 8px;
    margin: 0 0 15px;
  }

  .u-list-flow .list-num::after {
    border-width: 13px 0 13px 10px;
    right: -10px;
  }
}

/**カードスタイル**/
.u-list-card>li {
  background: #fff;
  border: 1px solid #EE8678;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 5%;
  position: relative;
}

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

.u-list-card .list-img img {
  border-radius: 10px;
}

.u-list-card .list-ttl {
  display: block;
  font-size: clamp(18px, calc(20 / 1024 * 100vw), 20px);
  font-family: "FOT-筑紫A丸ゴシック Std R";
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #EE8678;
}

.u-list-card .num {
  color: #E7DBC4;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(31px, calc(31 / 1024 * 100vw), 31px);
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: -.75em;
}

.u-list-card.image li {
  padding: 0;
  background: #EDF2FF;
  margin-bottom: clamp(20px, calc(0 / 1024 * 100vw), 0px);
}

.u-list-card.image li .inner {
  padding: 0 5% 5%;
}

.u-list-card.image li .num {
  color: #fff;
  background: #FA8835;
  border-radius: 15px;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(14px, calc(14 / 1024 * 100vw), 14px);
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: -.75em;
  left: 5%;
  z-index: 1;
  display: inline-block;
  padding: 6px 15px;
}

.u-list-card.bg-color {
  padding-top: 1em;
}

.u-list-card.bg-color li {
  background: #EDF2FF;
  margin-bottom: 1em;
}

.u-list-card.border>li {
  border: 1px solid #EDF2FF;
}

.u-list-card.border>li .list-ttl {
  display: block;
  font-size: clamp(18px, calc(20 / 1024 * 100vw), 20px);
  font-family: "FOT-筑紫A丸ゴシック Std R";
  text-align: left;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #C6CCDB;
}

.u-list-card.border>li .list-ttl span {
  color: #EE8678;
  font-size: 14px;
  display: block;
}

.u-list-flow02 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.u-list-flow02>li {
  background: #FFF7E6;
  border-radius: 0;
  padding: 35px 2.5% 2.5%;
  width: 30%;
  position: relative;
  margin: 0 5% 50px 0;
}

.u-list-flow02>li::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent #654D47;
  position: absolute;
  top: 50%;
  right: -32px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.u-list-flow02>li:last-child::after {
  display: none;
}

.u-list-flow02>li:nth-child(3n) {
  margin: 0 0 50px;
}

.u-list-flow02.no-allow>li::after {
  content: none;
}

.u-list-flow02 .num {
  color: #E7DBC4;
  font-size: clamp(31px, calc(31 / 1024 * 100vw), 31px);
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: -.75em;
  left: 50%;
  transform: translateX(-50%);
}

.u-list-flow02.col2>li {
  background: #F7F7F7;
  border-radius: 10px;
  padding: 35px 2.5% 2.5%;
  width: 45%;
  position: relative;
  margin: 0 5% 50px 0;
}

.u-list-flow02.col2>li::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent #654D47;
  position: absolute;
  top: 50%;
  right: -32px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.u-list-flow02.col2>li:last-child::after {
  display: none;
}

.u-list-flow02.col2>li:nth-child(2n) {
  margin: 0 0 50px;
}

.u-list-flow02.col4 .list-ttl {
  text-align: center;
  margin: 0;
}

.u-list-flow02.col4>li {
  background: #fff;
  border: 1px solid #EE8678;
  border-radius: 20px;
  padding: 50px 30px;
  width: 23%;
  position: relative;
  margin: 0 2.5% 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.u-list-flow02.col4>li::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent #EE8678;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.u-list-flow02.col4>li:last-child::after {
  display: none;
}

.u-list-flow02.col4>li:nth-child(4n) {
  margin: 0 0 20px;
}

.u-list-flow02 .list-ttl {
  font-size: clamp(20px, calc(22 / 1024 * 100vw), 22px);
  text-align: center;
  margin: 0 0 15px;
  color: #333;
}

.u-list-flow02 .list-img {
  margin-bottom: 12px;
}

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

  .u-list-flow02>li {
    width: 100%;
    margin: 0 0 70px;
    padding: 35px 5% 5%;
  }

  .u-list-flow02>li::after {
    top: inherit;
    bottom: -40px;
    right: 50%;
    -webkit-transform: translate(50%, 0) rotate(90deg);
    transform: translate(50%, 0) rotate(90deg);
  }

  .u-list-flow02>li:last-child::after {
    display: none;
  }

  .u-list-flow02>li:nth-child(3n) {
    margin: 0 0 70px;
  }

  .u-list-flow02>li:last-child {
    margin: 0;
  }

  .u-list-flow02.col2>li {
    width: 100%;
    margin: 0 0 70px;
    padding: 35px 5% 5%;
  }

  .u-list-flow02.col2>li::after {
    top: inherit;
    bottom: -50px;
    right: 50%;
    -webkit-transform: translate(50%, 0) rotate(90deg);
    transform: translate(50%, 0) rotate(90deg);
  }

  .u-list-flow02.col2>li:last-child::after {
    display: none;
  }

  .u-list-flow02.col2>li:nth-child(2n) {
    margin: 0 0 70px;
  }

  .u-list-flow02.col2>li:last-child {
    margin: 0;
  }

  .u-list-flow02.col4>li {
    width: 100%;
    margin: 0 0 50px;
    padding: 20px;
  }

  .u-list-flow02.col4>li::after {
    top: inherit;
    bottom: -40px;
    right: 50%;
    -webkit-transform: translate(50%, 0) rotate(90deg);
    transform: translate(50%, 0) rotate(90deg);
  }

  .u-list-flow02.col4>li:last-child::after {
    display: none;
  }

  .u-list-flow02.col4>li:nth-child(4n) {
    margin: 0 0 20px;
  }

  .u-list-flow02.col4>li:last-child {
    margin: 0 0 20px;
  }
}

/*アンカーリンク*/
.u-list-anchor {
  display: flex;
  flex-wrap: wrap;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: 1.5rem;
}

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

.u-list-anchor li::after {
  content: "";
  display: inline-block;
  background: #EE8678;
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.u-list-anchor li:last-child::after {
  display: none;
}

.u-list-anchor a {
  display: inline-block;
  position: relative;
  padding-right: 25px;
}

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

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

/*パーツ20*/
.u-box-num {
  background: #F7F7F7;
  border-radius: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
}

.u-box-num .box-ttl,
.u-box-num .sub-ttl {
  color: #EE8678;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-weight: bold;
}

.u-box-num .sub-ttl {
  font-size: 20px;
}

.u-box-num .box-ttl {
  font-size: 40px;
}

.u-box-num .box-ttl.blue {
  color: #EE8678;
}

.price-ttl span {
  color: #EE8678;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-weight: bold;
  padding-right: 10px;
  font-size: 40px;
}

/*アンカーリンクパーツ21*/
.u-list-anchor02 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.u-list-anchor02 a {
  display: block;
  width: 100%;
  max-width: 440px;
}

.u-list-anchor02 li {
  padding: 5%;
  border-radius: 10px;
  border: 2px solid #EE8678;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.u-list-anchor02 li .list-img {
  width: 130px;
  height: 130px;
  border-radius: 100vw;
  overflow: hidden;
}

.u-list-anchor02 li .list-img img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.u-list-anchor02 li .list-ttl {
  font-size: clamp(18px, 1.1111vw, 20px);
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-weight: bold;
}

@media (max-width: 800px) {

  /*------------
  アンカーリンク
  --------------*/
  .u-list-anchor {
    display: block;
  }

  .u-list-anchor li {
    margin: 0;
  }

  .u-list-anchor li::after {
    display: none;
  }

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

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

  .u-list-anchor02 li {
    gap: 10px;
  }

  .u-list-anchor02 li .list-img {
    width: 60px;
    height: 60px;
    border-radius: 100vw;
    overflow: hidden;
  }

  .u-list-anchor02 li .list-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
}

/*WP必須クラス*/
.postdata .wp-caption {
  max-width: 100%;
  margin-bottom: 10px;
}

.postdata .wp-caption-text {
  padding: 10px;
  margin-bottom: 0;
}

.postdata .gallery-caption {
  font-size: 0.8em;
}

.postdata .bypostauthor {
  color: #999;
}

.postdata .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.postdata pre {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: pre-wrap;
  /* CSS3 */
  word-wrap: break-word;
  /* IE 5.5+ */
}

.postdata h2,
.postdata h3,
.postdata h4,
.postdata h5 {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

/*---投稿大枠---*/
.postdata {
  text-align: left;
}

.postdata::after {
  clear: both;
  content: "";
  display: block;
}

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

.postdata a {
  text-decoration: underline;
}

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

/*---リスト　順序あり---*/
.postdata ol li {
  list-style: inside decimal;
}

/*---リスト　順序なし---*/
.postdata ul li {
  list-style: inside square;
}

.postdata ol li,
.postdata ul li {
  font-size: 100%;
  padding: 0;
}

/*---テーブル---*/
.postdata table {
  border-left: 1px solid #bfbfbf;
  border-top: 1px solid #bfbfbf;
  border-right: 1px solid #bfbfbf;
}

.postdata table th {
  border-bottom: 1px solid #bfbfbf;
}

.postdata table td {
  border-bottom: 1px solid #bfbfbf;
}

/*---フォント---*/
.postdata em {
  font-style: italic !important;
}

.postdata strong {
  font-weight: bold !important;
}

.postdata iframe {
  max-width: 100%;
}

/* スマホ時に回り込みを解除*/
@media only screen and (max-width: 800px) {
  .postdata .alignright {
    float: none;
    display: block;
    margin: 0 auto 20px;
    text-align: center;
  }

  .postdata .alignleft {
    float: none;
    display: block;
    margin: 0 auto 20px;
    text-align: center;
  }
}

/*WP必須クラス*/
.wp-caption {
  max-width: 100%;
  margin-bottom: 10px;
}

.wp-caption-text {
  padding: 10px;
  margin-bottom: 0;
}

.sticky {
  background: #FAFAFA;
  border-top: 4px solid #F00;
  margin-left: -20px;
  margin-right: -20px;
  padding: 18px 20px;
}

.gallery-caption {
  font-size: 0.8em;
}

.bypostauthor {
  color: #999;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

pre {
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: pre-wrap;
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5 {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  position: relative;
  color: #333333;
}

.footer a {
  color: #333333;
  text-decoration: none;
}

.footer img {
  border-radius: unset;
}

.footer .container {
  position: relative;
  width: 100%;
  max-width: none;
  z-index: 1;
}

.footer .contact {
  position: relative;
  width: 100%;
  max-width: none;
  background: linear-gradient(transparent 20%, #FEF5E7 20%, #FEF5E7 80%, transparent 80%);
}

.footer .contact::before,
.footer .contact::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  aspect-ratio: 1800 / 200;
  height: auto;
  background: url(../images/sec07-bg.svg) no-repeat center/contain;
  z-index: -1;
}

.footer .contact::before {
  top: 0;
}

.footer .contact::after {
  bottom: 0;
  transform: rotate(180deg);
}

.footer .contact .wrapper {
  position: relative;
  width: fit-content;
  max-width: 768px;
  margin: auto;
  z-index: 0;
}

.footer .contact .wrapper .inner {
  padding: calc(60 / 768 * 100%) 0 calc(70 / 768 * 100%);
}

.footer .contact .l-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: calc(38 / 768 * 100%);
}

.footer .contact .l-wrap .l-ttl {
  position: relative;
  line-height: 0;
}

.footer .contact .l-wrap .l-ttl::before {
  content: "";
  display: block;
  position: relative;
  width: clamp(50px, calc(71 / 1800 * 100vw), 71px);
  aspect-ratio: 71 / 46;
  background: url(../images/sec01-deco01.png) no-repeat center/contain;
  z-index: -1;
}

.footer .contact .l-wrap .btn-wrap {
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
}

.footer .contact .l-wrap .btn-wrap a.tel-wrap {
  line-height: 0;
  text-align: center;
}

.footer .contact .l-wrap .btn-wrap a.tel-wrap span.btm {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: clamp(1rem, calc(13 / 1024 * 100vw), 1.3rem);
  line-height: calc(17 / 13 * 1em);
  color: #333333;
}

.footer .contact .l-wrap .btn-wrap .h-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  font-family: "FOT-筑紫A丸ゴシック Std B";
}

.footer .contact .l-wrap .btn-wrap .h-btn img {
  width: clamp(14px, calc(17 / 1024 * 100vw), 20px);
  margin-right: 10px;
}

.footer .contact .l-wrap .btn-wrap .h-btn.tel {
  font-size: clamp(2rem, calc(29 / 1024 * 100vw), 2.9rem);
  line-height: calc(41 / 29 * 1em);
  color: #EE8678;
  margin-bottom: 2px;
}

.footer .contact .l-wrap .btn-wrap .h-btn.mail {
  font-size: clamp(1.2rem, calc(15 / 1024 * 100vw), 1.5rem);
  line-height: calc(16 / 15 * 1em);
  color: #FFF;
  padding: 15px 20px;
  border-radius: 3px;
  background: #EE8678;
}

.footer .contact p {
  width: fit-content;
  margin: auto;
}

.footer .desc .wrapper {
  width: 95%;
  max-width: 1024px;
  margin: auto;
}

.footer .desc .wrapper .inner {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  padding: calc(80 / 1024 * 100%) 0;
}

.footer .desc .l-wrap {
  padding-top: calc(5 / 512 * 100%);
}

.footer .desc .l-wrap .l-img {
  width: clamp(180px, calc(226 / 1024 * 100vw), 226px);
}

.footer .desc .l-wrap .address {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 0;
  margin: calc(27 / 512 * 100%) 0 0;
}

.footer .desc .l-wrap .address img {
  width: 18px;
}

.footer .desc .l-wrap .address span {
  font-size: clamp(1.4rem, calc(17 / 1024 * 100vw), 1.7rem);
  line-height: 2.3em;
}

.footer .desc .l-wrap .address .map {
  display: block;
  height: fit-content;
  padding: clamp(5px, calc(8.5 / 1800 * 100vw), 8.5px) clamp(20px, calc(30 / 1800 * 100vw), 30px);
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: clamp(1rem, calc(12 / 1024 * 100vw), 1.2rem);
  line-height: 1em;
  border: 1px solid #EE8678;
  border-radius: 100vh;
}

.footer .desc .site-map {
  display: grid;
  grid-template-columns: repeat(2, calc(237 / 512 * 100%));
  justify-content: space-between;
}

.footer .desc .site-map li h3 {
  position: relative;
  font-size: clamp(1.4rem, calc(17 / 1024 * 100vw), 1.7rem);
  line-height: calc(22 / 17 * 1em);
  padding-bottom: calc(15 / 17 * 1em);
  margin-bottom: calc(5 / 17 * 1em);
}

.footer .desc .site-map li h3::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: url(../images/share/deco_border.svg) repeat-x center/cover;
}

.footer .desc .site-map li a {
  position: relative;
  font-size: clamp(1.4rem, calc(17 / 1024 * 100vw), 1.7rem);
  line-height: calc(40 / 17 * 1em);
}

.f-copy {
  width: 100%;
  font-size: clamp(10px, calc(13 / 1024 * 100vw), 13px);
  line-height: calc(19 / 13 * 1em);
  color: #FFF;
  margin: auto;
  background: #EE8678;
}

.f-copy .l-wrap {
  width: 95%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0;
}

.f-copy .l-wrap .inner {
  display: flex;
  justify-content: space-between;
  padding: calc(17 / 1024 * 100%) 0;
}

.f-copy a {
  color: #FFF;
}

.pagetop {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 100;
}

.pagetop a {
  display: inline-block;
  text-align: center;
  width: 52px;
  transition: transform .5s;
  position: relative;
  z-index: 0;
}

.pagetop a:hover {
  transform: translateY(-10px);
}

.sp-navi {
  display: none;
}

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

  .footer .contact::before,
  .footer .contact::after {
    height: 150px;
    background: url(../images/sec07-bg.svg) no-repeat center/cover;
  }

  .footer .contact .wrapper {
    width: 100%;
  }

  .footer .contact .wrapper .inner {
    padding: 50px 5vw;
  }

  .footer .contact .l-wrap {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    margin-bottom: 30px;
  }

  .footer .contact .l-wrap .btn-wrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  .footer .desc .wrapper {
    width: 100%;
  }

  .footer .desc .wrapper .inner {
    display: grid;
    grid-template-columns: 100%;
    justify-content: space-between;
    padding: 50px 5vw 35px;
  }

  .footer .desc .l-wrap {
    padding-top: 0;
  }

  .footer .desc .l-wrap .l-img {
    width: 65%;
    margin: auto;
  }

  .footer .desc .l-wrap .address {
    justify-content: space-between;
    width: 100%;
    margin: 20px auto;
    font-size: 13px;
    text-align: center;
  }

  .footer .desc .l-wrap .address .map {
    padding: 5px 20px;
    font-size: 12px;
  }

  .footer .desc .site-map {
    grid-template-columns: repeat(2, calc(50% - 10px));
    column-gap: 20px;
    width: 100%;
    margin-top: 30px;
  }

  .footer .desc .site-map li h3 {
    font-size: 14px;
    padding-bottom: 15px;
    margin-bottom: 3px;
  }

  .footer .desc .site-map li ul li {
    width: 100%;
  }

  .footer .desc .site-map li ul li a {
    font-size: 14px;
  }

  .footer .f-copy {
    font-size: 13px;
    text-align: center;
  }

  .footer .f-copy .l-wrap .inner {
    display: grid;
    justify-content: center;
    row-gap: 15px;
    padding: 20px 0;
  }

  .footer .pagetop {
    display: none;
  }

  .sp-navi {
    display: block;
  }

  .sp-navi-btns {
    display: flex;
    background: #EE8678;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }

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

  .sp-navi-btns .item {
    font-family: "FOT-筑紫A丸ゴシック Std B";
    font-size: 10px;
    line-height: calc(15 / 10 * 1em);
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    border-right: 1px solid #FFF;
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    height: 100%;
    padding: 9px 0 1px;
  }

  .sp-navi-btns .item:nth-of-type(3) a {
    padding: 12px 0 1px;
  }

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

  .sp-navi-btns .humberger {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 9px 0 1px;
  }

  .sp-navi-btns .humberger .ttl {
    display: block;
    color: #FFF;
    font-family: "FOT-筑紫A丸ゴシック Std B";
    font-size: 10px;
    line-height: calc(15 / 10 * 1em);
    letter-spacing: 0;
    text-align: center;
  }

  .sp-navi-btns .humberger span:not(.ttl):nth-of-type(1) {
    top: 9px;
  }

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

  .sp-navi-btns .humberger span:not(.ttl):nth-of-type(3) {
    top: 24px;
  }

  .sp-navi-btns .humberger span:not(.ttl) {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: 0.4s;
    background: #FFF;
  }

  .sp-menu-btn {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 2px;
  }

  .sp-menu-btn .ttl {
    display: block;
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    line-height: calc(14 / 10 * 1em);
    letter-spacing: 0;
    text-align: center;
  }

  .sp-menu-btn span:not(.ttl) {
    background: #FFF;
    position: absolute;
    left: 50%;
    width: 22px;
    height: 1px;
    transform: translateX(-50%);
    transition: .4s;
  }

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

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

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

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

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

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

  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .5s;
    opacity: 0;
    z-index: 9999;
  }

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

  .sp-navi-contents .btn-icon {
    background: #333333;
    font-weight: bold;
  }

  .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    font-family: "Noto Sans JP", sans-serif;
    margin: 0 0 50px;
  }

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

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

  .sp-navi-list>li.menu-item-has-children {
    position: relative;
  }

  .sp-navi-list>li.menu-item-has-children::before,
  .sp-navi-list>li.menu-item-has-children::after {
    content: "";
    background-color: #333;
    position: absolute;
    transition: .5s;
  }

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

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

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

  .sp-navi-list>li.menu-item-has-children>a {
    padding: 15px 0;
    width: 85%;
  }

  .sp-navi-list>li.menu-item-has-children>a[href="#"] {
    cursor: auto;
    pointer-events: none;
  }

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

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

  .sp-navi-list .sub-menu>li::before {
    content: "-";
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
  }

  .sp-navi-list .sub-menu>li>a {
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
  }

  .sp-navi-logo {
    text-align: center;
    margin-bottom: 30px;
  }

  .sp-navi-address {
    text-align: center;
    font-size: 13px;
  }

  .sp-navi-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    font-weight: bold;
  }

  .sp-navi-tel img {
    margin-right: 10px;
  }

  .sp-navi-time {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-gap: 5px 10px;
    align-items: start;
    font-size: 13px;
  }

  .sp-navi-time dt {
    background-color: #fff;
    border: 1px solid #000;
    text-align: center;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sp-navi-sns {
    display: flex;
    align-items: center;
  }

  .sp-navi-sns li+li {
    margin-left: 15px;
  }

  .sp-navi-sns a {
    transition: .3s;
  }

  .sp-navi-sns a:hover {
    opacity: .5;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
:root {
  --vw: 1vw;
  /*behavior.jsで定義*/
  --s100vw: calc(var(--vw) * 100);
  --s50vw: calc(var(--vw) * 50);
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.is-fixed {
  position: fixed;
}

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

.fade {
  transition: opacity .5s;
}

.fade:hover {
  opacity: .5;
}

.fs11 {
  font-size: 11px;
}

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

.red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 70%, #FFE99F 30%);
}

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

.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;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

@media (max-width: 800px) {
  .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;
  }
}

/*ボタン*/
.btn-more,
.btn-icon,
.btn-tel,
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  padding: 0 20px 1px;
  transition: opacity 0.5s;
}

.btn-more:hover,
.btn-icon:hover,
.btn-tel:hover,
.btn-line:hover {
  opacity: 0.5;
}

.btn-more {
  display: grid;
  place-items: center;
  position: relative;
  width: 250px;
  height: clamp(45px, calc(65 / 1800 * 100vw), 65px);
  padding: 0;
  color: #EE8678;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 17px;
  line-height: 1;
  border: 1px solid #EE8678;
  border-radius: 100vh;
}

.btn-more::before {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  width: 6px;
  height: 10px;
  background: url(../images/share/icon_btn.svg) no-repeat center/contain;
}

.btn-tel {
  background: #333;
  color: #fff;
}

.btn-tel i {
  font-size: 10px;
  margin-right: 10px;
}

.btn-icon {
  background: #6A9D89;
  color: #fff;
}

.btn-icon img {
  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;
  gap: 10px;
}

.btn-wrap.center {
  justify-content: center;
}

@media (max-width: 800px) {

  .btn-more,
  .btn-tel,
  .btn-icon,
  .btn-line {
    width: 100%;
  }

  .btn-wrap {
    display: grid;
  }

  .btn-more {
    width: 100%;
    font-size: 14px;
  }

  .sec01 .btn-more {
    width: 100%;
  }
}

/*診療カレンダー*/
.business-calendar-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  background: none;
}

.business-calendar-box>div {
  width: 100%;
  padding: 0;
  background: #FFF;
  border: 0px solid #EBEBEB;
}

.business-calendar-box .business-calendar {
  text-align: center;
  border-top: 0 !important;
  border-left: 0 !important;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  background: none;
}

.business-calendar-box .business-calendar caption {
  position: relative;
  height: auto;
  padding: 19px 0;
  margin: 0 auto;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: clamp(13px, calc(18 / 1800 * 100vw), 18px);
  line-height: calc(22 / 18 * 1em);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  border: 0;
  background: #EE8678;
  border-radius: 10px 10px 0 0;
}

.business-calendar-box .business-calendar caption span {
  display: grid;
  align-items: center;
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  color: #FFF6F5;
  line-height: 1;
  font-size: 25px;
  vertical-align: -1px;
}

.business-calendar-box .business-calendar caption span.business-calendar-past {
  left: 0;
  transform: translate(0, 0);
}

.business-calendar-box .business-calendar caption span.business-calendar-future {
  right: 0;
  transform: translate(0, 0);
}

.business-calendar-box .business-calendar tr {
  height: 46px;
  border-bottom: 1px solid #DDDDDD;
}

.business-calendar-box .business-calendar td {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, calc(13 / 1800 * 100vw), 13px);
  font-weight: 600;
  padding: 8px;
  background: none;
  background-clip: padding-box;
  border-left: 0px solid #DDDDDD;
  z-index: 0;
}

.business-calendar-box .business-calendar td:nth-last-of-type(1) {
  border-right: 0px solid #DDDDDD;
}

.business-calendar-box .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

.business-calendar-box .business-calendar thead {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #FFF6F5;
  border-bottom: 1px solid #DED9D3;
  background: #FFF;
}

.business-calendar-box .business-calendar thead tr {
  border-top: 1px solid #DDDDDD;
}

.business-calendar-box .business-calendar thead th {
  width: 14%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, calc(16 / 1800 * 100vw), 16px);
  font-weight: bold;
  color: #333333;
  text-align: center;
  padding: 5px;
  border-left: 0px solid #DDDDDD;
  background: none;
}

.business-calendar-box .business-calendar thead th:nth-last-of-type(1) {
  border-right: 0px solid #DDDDDD;
}

.business-calendar-box .business-calendar tbody {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 15px;
  background: #FFF;
}

.business-calendar-box .business-calendar tbody tr {
  height: 49px;
  border-bottom: 1px solid #DED9D3;
}

.business-calendar-box .business-calendar tbody tr:nth-last-of-type(1) {
  border-bottom: 1px solid #DDDDDD;
}

.business-calendar-box .business-calendar-past a,
.business-calendar-box .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 12px;
  height: 12px;
}

.business-calendar-box .business-calendar-past a::before,
.business-calendar-box .business-calendar-future a::before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 50%;
  background: url(../images/share/calender_arrow.svg) no-repeat;
}

.business-calendar-box .business-calendar-future {
  justify-content: flex-end;
  margin-right: 10px;
}

.business-calendar-box .business-calendar-future a::before {
  right: 0;
  transform: translate(-85%, -75%) rotate(180deg);
}

.business-calendar-box .business-calendar-past {
  margin-left: 10px;
}

.business-calendar-box .business-calendar-past a::before {
  left: 0;
  transform: translate(0%, -35%) rotate(0deg);
}

.business-calendar-box .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box .business-calendar .attr0,
.business-calendar-box .business-calendar .attr1 {
  color: #fff;
}

.business-calendar-box .business-calendar .attr0::before,
.business-calendar-box .business-calendar .attr1::before {
  opacity: 1;
}

.business-calendar-box .business-calendar .attr2 {
  color: #333333;
}

.business-calendar-box .business-calendar .attr0::before {
  background: #333333;
}

.business-calendar-box .business-calendar .attr1::before {
  background: #EE8678;
}

.business-calendar-box .business-calendar .attr2::before {
  background: none;
  border: 1px solid #333333;
  border-radius: 50%;
}

.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: #EF866B;
}

.list-event .event02 {
  color: #F7B46B;
}

.list-event .event03 {
  color: #A8DBA8;
}

.list-event .event04 {
  color: #B0D7D5;
}

.business-calendar-attribute {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 0px;
  row-gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: clamp(10px, calc(13 / 1800 * 100vw), 13px);
  font-weight: 500;
}

.business-calendar-attribute li {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 7px;
  padding: 0 22px 0 0;
  color: #FFF6F5;
  line-height: calc(17 / 13 * 1em);
  list-style: none;
  background: none;
}

.business-calendar-attribute li::before {
  content: "";
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
}

.business-calendar-attribute li.attr0::before {
  background: #333333;
}

.business-calendar-attribute li.attr1::before {
  background: #EE8678;
  border-radius: 50%;
}

.business-calendar-attribute li.attr2::before {
  background: none;
  border: 1px solid #333333;
  border-radius: 50%;
}

.business-calendar-attribute .cal-append-txt a {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .business-calendar-box {
    display: block;
    margin: 0;
    padding: 0;
  }

  .business-calendar-box>div {
    width: 100%;
    padding: 0;
  }

  .business-calendar-box>div+div {
    margin-top: 15px;
  }

  .business-calendar-box .business-calendar caption {
    font-size: 15px;
  }

  .business-calendar-box .business-calendar thead {
    font-size: 13px;
  }

  .business-calendar-box .business-calendar tbody {
    font-size: 13px;
  }

  .list-event {
    display: block;
  }

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

  .business-calendar-attribute {
    font-size: 13px;
    margin: 15px 0 0;
  }
}

/*診療時間*/
.time-table {
  color: #FFF6F5;
  text-align: center;
  border-radius: 8px;
  background: #FFF;
  overflow: hidden;
}

.time-table-head,
.time-table-body {
  display: grid;
  grid-template-columns: max(calc(134 / 490 * 100%), 100px) repeat(6, 1fr) max(calc(70 / 490 * 100%), 50px);
  min-height: clamp(35px, calc(48/ 1800 * 100vw), 48px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(16 / 1800 * 100vw), 16px);
  font-weight: bold;
}

.time-table-head .item,
.time-table-body .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(11px, calc(15 / 1800 * 100vw), 15px);
  line-height: calc(20 / 15 * 1em);
  color: #FFF6F5;
  padding: 0;
}

.time-table-head .item:first-child,
.time-table-body .item:first-child {
  letter-spacing: 0;
  border-right: 1px solid #DED9D3;
}

.time-table-head {
  background: #EE8678;
}

.time-table-head .item {
  font-family: "FOT-筑紫A丸ゴシック Std R";
  font-size: clamp(12px, calc(16 / 1800 * 100vw), 16px);
  line-height: calc(21 / 16 * 1em);
}

.time-table-body {
  border-top: 1px solid #DDDDDD;
}

.time-table-body .item {
  color: #333333;
}

.time-table-body .item:first-child {
  letter-spacing: 0;
  border-right: 1px solid #DED9D3;
}

.time-table-body .item:first-child span {
  display: block;
}

.time-table-body .item:first-child span.jp {
  font-size: clamp(10px, calc(13 / 1800 * 100vw), 13px);
  line-height: calc(20 / 13 * 1em);
}

.time-table-body .item:first-child span.green {
  color: #EE8678;
}

.time-table-wrap .txt {
  line-height: 1em;
  margin-top: calc(15 / 490 * 100%);
}

.time-table-wrap .txt span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, calc(14 / 1800 * 100vw), 14px);
  line-height: calc(20 / 14 * 1em);
}

@media (max-width: 800px) {

  .time-table-head,
  .time-table-body {
    grid-template-columns: 110px repeat(6, 1fr) 50px !important;
    padding: 0;
    min-height: 45px;
  }

  .time-table-head .item,
  .time-table-body .item {
    font-size: 13px;
    line-height: calc(15 / 13 * 1em);
  }

  .time-table-body .item {
    padding: 5px 0;
    font-size: 13px;
  }

  .time-table-body .item:first-child {
    letter-spacing: 0;
  }

  .time-table-body .item:first-child span {
    display: block;
  }

  .time-table-body .item:first-child span.jp {
    font-size: 12px;
    line-height: calc(15 / 13 * 1em);
  }

  .time-table-body .time-table-wrap .txt {
    margin-top: 15px;
  }

  .time-table-body .time-table-wrap .txt span {
    font-size: 12px;
  }
}

/*-----------------------------------------------------------
Inview
-----------------------------------------------------------*/
.inview {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.75s ease-out;
}

.inview_on {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 800px) {
  .inview {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.75s ease-out;
  }

  .inview_on {
    transform: translateY(0);
    opacity: 1;
  }
}

.obs_scroll_on {
  color: #EE8678;
}

.obs_scroll_on li.dropdown::after {
  content: "";
  display: block;
  border-bottom: 2px solid #EE8678;
  border-right: 2px solid #EE8678;
  width: 8px;
  height: 8px;
  margin: 14px 0 0 9px;
  transform: rotate(45deg);
  transform-origin: right;
}

/*------------
Splide
--------------*/
.splide .splide__arrow--prev svg {
  transform: rotate(180deg);
}

.splide .splide__arrow svg {
  fill: #FFF6F5 !important;
}

.splide .splide__arrow--prev::after,
.splide .splide__arrow--next::after {
  content: none !important;
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}
