charset "UTF-8";

:root {
  --color_bg: #F0ECE5;
  --color_text: #2B2B2B;
  --color_border: #2B2B2B;
  --color_primary: #F0C1BB;
  --color_secondary: #9EE2BB;
  --font_base: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_en: "Arvo", serif;
  --easing: cubic-bezier(.12, 1, .5, 1);
}

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

body {
  margin: 0;
  padding: 0;
}

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

ul,
ol {
  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;
}

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

::selection {
  background: #d4dcd6;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

th,
dt {
  font-weight: bold;
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

.link-out {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}

.link-out[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.link-out:is(:hover, :focus) {
  text-decoration: none;
}

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

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

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

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

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

.container.top-wide {
  max-width: 1191px;
}

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  background: var(--color_bg);
  position: fixed;
  width: 100%;
  z-index: 100;
}

.header.transform .h-logo {
  max-width: 226px;
}

.h-logo {
  max-width: 350px;
  transition: 0.3s;
}

.header-layout {
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 100px;
  width: 100%;
}

.h-utility {
  display: flex;
  align-items: center;
  gap: 20px;
}

.h-utility .item:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.h-tel {
  display: inline-flex;
  align-items: center;
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1;
}

.h-tel img {
  margin-right: 5px;
}

.h-contact {
  display: block;
  width: 85px;
  height: 67px;
  font-family: var(--font_en);
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  background: var(--color_primary);
  border: 2px solid var(--color_border);
  border-radius: 10px;
  box-shadow: 3px 3px 0 0 var(--color_bg), 3px 3px 0 2px var(--color_text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: 0.3s;
}

.h-contact:hover {
  box-shadow: none;
  transform: translate(5px, 5px);
}

@media (max-width: 800px) {
  .header.transform .h-logo {
    max-width: 190px;
  }

  .header-layout {
    padding: 19px 16px;
    height: 82px;
  }

  .h-tel,
  .h-contact,
  .pc-navi {
    display: none;
  }

  .h-logo {
    max-width: 190px;
  }
}

/*------------
PC g-navi
--------------*/
.pc-g-navi-list {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.pc-g-navi-list a {
  display: inline-block;
  font-weight: bold;
  white-space: nowrap;
  position: relative;
  transition: 0.3s;
}

.pc-g-navi-list a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color_border);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.pc-g-navi-list a:is(:hover, :focus)::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.sp-navi {
  display: none;
}

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

  /*------------
  SP g-navi
  --------------*/
  .sp-navi {
    display: block;
  }

  /* ボタン */
  .navi-menu-btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    appearance: none;
    background-color: var(--color_border);
    border: 1px solid var(--color_border);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 17px;
    right: 16px;
    width: 50px;
    height: 50px;
    transition: 0.4s;
    z-index: 20000;
  }

  .navi-menu-btn .hamburger-line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }

  .navi-menu-btn .hamburger-line::before,
  .navi-menu-btn .hamburger-line::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.3s;
  }

  .navi-menu-btn .hamburger-line::before {
    top: -8px;
  }

  .navi-menu-btn .hamburger-line::after {
    top: 8px;
  }

  .navi-menu-btn[aria-expanded=true] .hamburger-line {
    background-color: transparent;
  }

  .navi-menu-btn[aria-expanded=true] .hamburger-line::before,
  .navi-menu-btn[aria-expanded=true] .hamburger-line::after {
    top: 0;
    background: #fff;
  }

  .navi-menu-btn[aria-expanded=true] .hamburger-line::before {
    transform: rotate(45deg);
  }

  .navi-menu-btn[aria-expanded=true] .hamburger-line::after {
    transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .navi-menu-btn .u-visually-hidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
  }

  .g-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_bg);
    background-blend-mode: multiply;
    padding: 80px 0;
    position: fixed;
    inset: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }

  .g-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    opacity: 1;
  }

  /* レイアウト等 */
  .g-navi-layout {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .g-navi-list>li {
    break-inside: avoid;
    margin-bottom: 5px;
    padding-left: 14px;
    position: relative;
  }

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

  .g-navi-list>li>a {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 0 5px;
    position: relative;
  }

  .g-navi-list>li>a:hover {
    text-decoration: underline;
  }

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  margin-top: 100px;
  position: relative;
}

.hero-img img {
  width: 100%;
}

.hero-catch {
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1.8;
  position: absolute;
  bottom: 19%;
  left: 5%;
  z-index: 5;
}

.hero-catch .marker {
  background: linear-gradient(transparent 70%, #fff 70%);
}

.hero-catch .lg-pink {
  font-size: 5.8rem;
  color: #EF7A6B;
}

.scroll-down {
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: arrowmove 1.5s ease-in-out infinite;
}

@keyframes arrowmove {
  0% {
    bottom: 10px;
  }

  50% {
    bottom: 30px;
  }

  100% {
    bottom: 10px;
  }
}

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

  .hero-catch {
    font-size: 2rem;
    bottom: 28px;
    left: 5%;
  }

  .hero-catch .lg-pink {
    font-size: 3.3rem;
  }

  .scroll-down {
    display: none;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.t-ttl::before {
  content: "";
  background: url(../images/t-ttl_deco.svg) no-repeat left top/contain;
  width: 128px;
  aspect-ratio: 128/127;
  position: absolute;
  top: -63px;
  left: -79px;
  z-index: -1;
}

.t-ttl.left {
  text-align: left;
}

.t-ttl .en {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.t-ttl .jp {
  font-size: 2.2rem;
}

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

  .t-ttl::before {
    width: 70px;
    top: -40px;
    left: -10px;
  }

  .t-ttl .en {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }

  .t-ttl .jp {
    font-size: 1.8rem;
  }
}

/*------------
Block
--------------*/
.sec01 {
  background: var(--color_primary);
  padding: 150px 0;
}

.sec01 .top-layout01 {
  min-height: 170px;
}

.sec02 {
  background: var(--color_secondary);
  padding: 150px 0 180px;
  position: relative;
}

.sec02::before {
  content: "";
  background: url(../images/sec02_deco.png) no-repeat bottom left/contain;
  width: 182px;
  aspect-ratio: 182/132;
  position: absolute;
  bottom: -13px;
  left: 15%;
  z-index: 1;
}

.sec02 .container {
  max-width: 1450px;
  margin: 0 50px 0 auto;
}

.sec02 .t-ttl {
  margin-top: 50px;
}

.sec02 .top-layout01 {
  gap: min(16vw, 288px);
}

.sec03 {
  background: var(--color_bg);
  padding: 150px 0 180px;
  position: relative;
}

.sec03::before {
  content: "";
  background: url(../images/sec03_deco.png) no-repeat right bottom/contain;
  width: 470px;
  aspect-ratio: 470/364;
  position: absolute;
  bottom: 0;
  right: 0;
}

.sec03 .top-layout01 {
  gap: min(14.611vw, 263px);
}

.sec04 {
  background: #F2E896;
  padding: 150px 0 180px;
  position: relative;
  z-index: 0;
}

.sec04 .t-ttl {
  margin-top: 50px;
}

.sec04 .top-layout01 {
  gap: min(12.111vw, 218px);
  margin-bottom: 90px;
}

.sec04-layout {
  position: relative;
  transition: 0.3s;
}

.sec04-layout::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color_primary);
  border: 2px solid var(--color_border);
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.sec04-layout:hover {
  transform: translateY(-10px);
}

.sec04-layout a {
  display: block;
  background: url(../images/sec04_bg.jpg) no-repeat center/cover;
  border: 2px solid var(--color_border);
  border-radius: 20px;
  padding: 90px 94px 78px;
  position: relative;
}

.sec04-layout a::before {
  content: "";
  background: url(../images/sec04_deco.png) no-repeat top left/contain;
  width: 182px;
  aspect-ratio: 182/132;
  position: absolute;
  top: -120px;
  left: -20px;
}

.sec04-layout .ttl {
  font-weight: bold;
  margin-bottom: 40px;
}

.sec04-layout .en {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.sec04-layout .jp {
  font-size: 2.2rem;
  line-height: 1;
}

.sec05 {
  background: #D4BEDD;
  padding: 150px 0 180px;
}

.sec05 .container {
  text-align: center;
}

.sec05 .t-ttl {
  display: inline-block;
}

.sec-bg01 img,
.sec-bg02 img,
.sec-bg03 img,
.sec-bg04 img {
  width: 100%;
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
}

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

  .sec02 {
    padding: 80px 0 100px;
  }

  .sec02::before {
    width: 120px;
    left: 5%;
  }

  .sec02 .container {
    margin: 0 auto;
  }

  .sec02 .t-ttl {
    margin-top: 0;
  }

  .sec03 {
    padding: 80px 0;
  }

  .sec03::before {
    width: 250px;
  }

  .sec03 .t-ttl {
    margin-left: 0;
  }

  .sec04 {
    padding: 80px 0;
  }

  .sec04 .t-ttl {
    margin: 0 0 30px 0;
  }

  .sec04-layout a {
    padding: 30px;
  }

  .sec04-layout a::before {
    width: 100px;
    top: -68px;
    left: -4px;
  }

  .sec04-layout .ttl {
    margin-bottom: 20px;
  }

  .sec04-layout .en {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }

  .sec04-layout .jp {
    font-size: 1.8rem;
  }

  .sec05 {
    padding: 80px 0;
  }
}

/*------------
Layout
--------------*/
.top-layout01 {
  display: flex;
  gap: 90px;
  position: relative;
}

.top-layout01 .l-desc {
  flex: 1;
}

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

.instagram-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

  .top-layout01 .l-btn {
    position: static;
    text-align: center;
  }

  .instagram-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/*------------
Post
--------------*/
.list-top-news li:first-child a {
  padding-top: 0;
}

.list-top-news a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color_border);
  padding: 25px 20px 25px 0;
  font-weight: bold;
  line-height: 1;
  position: relative;
}

.list-top-news a::before {
  content: "";
  background: url(../images/share/icon_arrow_right.svg) no-repeat right center/contain;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

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

.list-top-news time {
  display: inline-block;
  color: #9A9A9A;
  font-family: var(--font_en);
  font-size: 1.3rem;
  white-space: nowrap;
  margin-right: 40px;
}

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

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

  .list-top-news a {
    display: block;
    line-height: 1.5;
    padding: 10px 15px 10px 0;
  }

  .list-top-news time {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  font-size: 4.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 100px;
  padding: 110px 0;
  position: relative;
}

.page-ttl::before {
  content: "";
  background: url(../images/under/page-ttl_bg.jpg) no-repeat right center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.breadcrumb {
  margin: 5px 0 60px;
  width: 100%;
}

.breadcrumb ul {
  margin-inline: auto;
  max-width: 1024px;
  width: 90%;
}

.breadcrumb ul li {
  font-size: 1.3rem;
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "> ";
  padding: 0 5px;
  color: var(--color_border);
}

.u-contents p+p:not(.entry-content p + p, .indivisual-data p + p) {
  margin-top: 1.5em;
}

@media (max-width: 800px) {
  .page-ttl {
    font-size: 2.8rem;
    margin-top: 82px;
    padding: 60px 10px;
  }

  .page-ttl::before {
    background: url(../images/under/page-ttl_bg.jpg) no-repeat right -135px center/cover;
  }

  .breadcrumb {
    margin: 5px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.u-h2,
.postdata h2 {
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 7rem;
  display: flex;
  justify-content: center;
}

.u-h2::after,
.postdata h2::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -7rem;
  background: var(--color_primary);
  width: 50px;
  height: 4px;
  margin: 20px auto 50px;
}

.u-h3,
.postdata h3 {
  border-bottom: 3px solid #ccc;
  font-size: 2.2rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.u-h3::before,
.postdata h3::before {
  content: "";
  background: var(--color_primary);
  width: 50px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.u-h4,
.postdata h4 {
  font-size: 2rem;
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: 60%;
  position: absolute;
  left: 0;
  top: 8px;
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .u-h2::after,
  .postdata h2::after {
    bottom: -4rem;
    margin: 20px auto 30px;
  }

  .u-h3,
  .postdata h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .u-h4,
  .postdata h4 {
    font-size: 1.8rem;
    padding-left: 20px;
  }

  .u-h4::before,
  .postdata h4::before {
    top: 7px;
  }
}

.tall+.tall {
  margin-top: 100px;
}

.tall:last-of-type {
  margin-bottom: 100px;
}

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 70px;
  }

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

.list-disc {
  display: grid;
  gap: 5px;
}

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

.list-disc li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--color_text);
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 0;
}

.list-num {
  counter-reset: number;
  display: grid;
  gap: 5px;
}

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

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

.list-check {
  display: grid;
  gap: 5px;
}

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

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

.list-check-square {
  display: grid;
  gap: 5px;
}

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

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

.card-style01 {
  display: grid;
  gap: 16px;
}

.card-style01>li {
  background-color: var(--color_bg);
  padding: 50px 25px 40px;
  position: relative;
}

.card-style01 .card-img {
  margin-bottom: 10px;
}

.card-style01 .card-img img {
  border-radius: 20px;
}

.card-style01 .card-num {
  width: 60px;
  aspect-ratio: 1/1;
  background: var(--color_text);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font_en);
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  align-items: center;
}

.card-ttl01 {
  font-size: 1.8rem;
  font-weight: bold;
}

.card-style02 {
  display: grid;
  gap: 16px;
}

.card-style02>li {
  background-color: var(--color_bg);
  padding: 25px;
}

.card-style02 .card-img {
  margin-bottom: 10px;
}

.card-style02 .card-img img {
  border-radius: 20px;
}

.card-ttl02 {
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 800px) {
  .card-style01 {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .card-style01>li {
    padding: 40px 25px 30px;
  }

  .card-style01 .card-num {
    width: 50px;
    font-size: 2.5rem;
    top: -25px;
  }

  .card-style02 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-style02 .card-img {
    margin-bottom: 10px;
  }

  .card-ttl02 {
    margin-bottom: 0;
  }
}

.table-style01 th,
.table-style01 td {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: middle;
}

.table-style01 th {
  background: var(--color_text);
  color: #fff;
}

.table-style01 th.bg01 {
  background: var(--color_bg);
  color: var(--color_text);
}

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

@media (max-width: 800px) {
  .table-style01.sp-block {
    border-top: 1px solid #ccc;
  }

  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }

  .table-style01.sp-block th {
    border-top: none;
    border-bottom: none;
  }

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

  .table-scroll-txt::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 {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

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

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

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

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

.box-style01 {
  border: 1px solid #ccc;
  padding: 56px 5% 43px;
}

.box-ttl01 {
  font-size: 2.2rem;
  font-weight: bold;
  border-bottom: 2px solid var(--color_border);
  padding-bottom: 5px;
  margin-bottom: 20px;
  position: relative;
}

.box-ttl01::before {
  content: "";
  background: url(../images/under/ttl_bg01.png) no-repeat left center/contain;
  width: 91px;
  aspect-ratio: 91/90;
  position: absolute;
  top: -31px;
  left: -39px;
  z-index: -1;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 45px 5% 30px;
  }

  .box-ttl01 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .box-ttl01::before {
    width: 50px;
    top: -20px;
    left: -10px;
  }
}

.staff-layout .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
}

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

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

.staff-layout .l-desc {
  flex: 1;
}

.staff-layout .job {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.staff-layout .l-ttl {
  font-weight: bold;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.staff-layout .name {
  font-size: 3rem;
  line-height: 1;
}

.staff-layout .kana {
  font-family: var(--font_en);
  font-size: 1.6rem;
  line-height: 1;
}

.staff-layout .card-profile {
  margin-top: 50px;
}

.card-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  font-size: 1.4rem;
}

.card-profile .item {
  background-color: var(--color_bg);
  border-radius: 4px;
  padding: 30px;
}

.card-profile .card-ttl {
  border-bottom: 1px dashed #ccc;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.card-profile .list-disc li:before {
  top: 8px;
}

.dl-career {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px 0;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .staff-layout .wrapper {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }

  .staff-layout .job {
    margin-bottom: 5px;
  }

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

  .staff-layout .name {
    font-size: 2.2rem;
  }

  .staff-layout .kana {
    font-size: 1.2rem;
  }

  .staff-layout .card-profile {
    margin-top: 30px;
  }

  .card-profile {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-profile .item {
    padding: 20px;
  }
}

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

.accordion-style summary {
  display: block;
  cursor: pointer;
  background-color: var(--color_text);
  border: 1px solid var(--color_border);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 20px 70px 20px 30px;
  position: relative;
  transition: 0.2s;
}

.accordion-style summary::-webkit-details-marker {
  display: none;
}

.accordion-style:not(.is-open) summary:is(:hover, :focus) {
  opacity: 0.7;
}

.accordion-style summary::before,
.accordion-style summary::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
}

.accordion-style summary::before {
  width: 16px;
  height: 2px;
}

.accordion-style summary::after {
  width: 16px;
  height: 2px;
  rotate: 90deg;
  transition: rotate 0.5s;
}

.accordion-style.is-open summary::after {
  rotate: 0deg;
}

.accordion-style .accordion-content {
  overflow: hidden;
}

.accordion-style .accordion-inner {
  background-color: #fff;
  padding: 60px 50px 50px;
  border: 1px solid var(--color_border);
}

.accordion-style .accordion-content:not([hidden=until-found]):target {
  display: revert;
}

@media (scripting: none) {
  .accordion-style .accordion-contentl:target {
    display: revert;
  }
}

.accordion-style.pc-block {
  pointer-events: none;
  cursor: default;
}

.accordion-style.pc-block summary::before,
.accordion-style.pc-block summary::after {
  content: none;
}

@media (max-width: 800px) {
  .accordion-style+.accordion-style {
    margin-top: 15px;
  }

  .accordion-style summary {
    padding: 15px 50px 15px 15px;
    font-size: 1.8rem;
  }

  .accordion-style summary::before {
    width: 12px;
  }

  .accordion-style summary::after {
    width: 13px;
  }

  .accordion-style .accordion-inner {
    padding: 15px;
  }

  .accordion-style.pc-block {
    pointer-events: auto;
    cursor: auto;
  }

  .accordion-style.pc-block summary::before,
  .accordion-style.pc-block summary::after {
    content: "";
  }
}

.search-ttl {
  background-color: var(--color_text);
  border: 1px solid var(--color_border);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 20px 70px 20px 30px;
  margin-bottom: 30px;
}

.search-ttl02 {
  font-size: 2.2rem;
  font-weight: bold;
  border-bottom: 2px solid var(--color_border);
  padding-bottom: 5px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.search-ttl02::before {
  content: "";
  background: url(../images/under/ttl_bg02.png) no-repeat left center/contain;
  width: 91px;
  aspect-ratio: 91/90;
  position: absolute;
  top: -31px;
  left: -39px;
  z-index: -1;
}

.search-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  font-size: 1.5rem;
}

.category-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  color: var(--color_text);
  background: #fff url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  border-radius: 4px;
  border: 2px solid var(--color_border);
  font-weight: bold;
  vertical-align: middle;
  padding: 0 20px 0 15px;
  margin: 0;
  width: 100%;
  height: 40px;
}

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

  .search-ttl02 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .search-ttl02::before {
    top: -20px;
    left: -10px;
    z-index: -1;
    width: 50px;
  }

  .search-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.description-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

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

.u-btn {
  min-width: 220px;
  min-height: 40px;
  color: var(--color_text);
  background: #fff;
  border: 2px solid var(--color_border);
  border-radius: 4px;
  box-shadow: 2px 2px 0px var(--color_border);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0;
  display: grid;
  place-items: center;
  transition: 0.3s;
}

.u-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.u-btn.center {
  margin: 0 auto;
}


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

}

.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
}

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

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

.list-anchor-link a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  background: url(../images/share/icon_arrow_down.svg) no-repeat 0 0/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -3px;
  top: 4px;
}

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

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

  .list-anchor-link li::after {
    display: none;
  }

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

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

.under-slider01 {
  overflow: hidden;
}

.under-slider01 .splide {
  margin: 0 auto;
}

.under-slider01 .splide__track {
  overflow: visible;
}

.under-slider01 .splide__slide {
  opacity: 0.2;
  transition: opacity 0.5s ease-in-out;
}

.under-slider01 .splide__slide.is-active {
  opacity: 1;
}

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

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

.under-slider01 .item-desc {
  margin-top: 25px;
}

.under-slider01 .item-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.under-slider01 .item-img {
  text-align: center;
}

.under-slider01 .item-img img {
  border-radius: 20px;
}

.under-slider02 .item-img {
  position: relative;
}

.under-slider02 figcaption {
  background: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

@media (max-width: 800px) {
  .under-slider01 .splide__arrow--prev {
    left: 30px;
  }

  .under-slider01 .splide__arrow--next {
    right: 30px;
  }

  .under-slider01 .item-desc {
    margin-top: 15px;
  }

  .under-slider01 .item-ttl {
    margin-bottom: 0;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

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

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

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

.faq-style {
  margin-bottom: 10rem;
}



.faq-style .faq-item+.faq-item {
  margin-top: 4rem;
}

.faq-style .faq-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.faq-style .faq-ttl {
  font-size: 1.7rem;
  padding-left: 2rem;
  position: relative;
}

.faq-style .faq-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-left: 6rem;
}

.faq-style .faq-icon,
.faq-style .faq-answer-icon {
  font-family: var(--font_en);
  font-size: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1 / 1;
}

.faq-style .faq-icon {
  background-color: var(--color_text);
  color: #fff;
  border-radius: 50px;
  font-family: var(--font_en);
  font-size: 1.7rem;
  text-align: center;
}

.faq-style .faq-answer-icon {
  content: "A";
  position: absolute;
  top: 5px;
  left: 0;
  background-color: var(--color_primary);
  color: #fff;
}



.faq-style .faq-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 13px;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before,
.faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: var(--color_text);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before {
  width: 16px;
  height: 2px;
  transform: translateX(-50%);
}

.faq-style .faq-open-icon::after {
  width: 16px;
  height: 2px;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left;
  transition: transform 0.5s;
}

.faq-style .item>dt:hover .faq-icon {
  background-color: var(--color_text);
  color: #fff;
  border: 1px solid var(--color_text);
}

.faq-style .faq-inner {
  padding-top: 5px;
}

.faq-style .is-open .faq-icon {
  background-color: var(--color_text);
  color: #fff;
  border: 1px solid var(--color_text);
}

.faq-style .is-open .faq-open-icon {
  transform: rotate(180deg);
}

.faq-style .is-open .faq-open-icon::after {
  opacity: 0;
}


.flow-style01 {
  display: grid;
  gap: 40px;
}

.flow-style01>li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  position: relative;
  min-height: 150px;
}

.flow-style01>li:not(:last-child)::before {
  content: "";
  border-left: 4px solid var(--color_border);
  position: absolute;
  top: 90px;
  bottom: -40px;
  left: 45px;
}

.flow-style01 .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}

.flow-style01 .flow-img {
  width: 35%;
}

.flow-style01 .flow-img img {
  border-radius: 20px;
}

.flow-style01 .flow-desc {
  flex: 1;
}

.flow-num01 {
  width: 90px;
  aspect-ratio: 1/1;
  background: var(--color_text);
  color: #fff;
  font-family: var(--font_en);
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  display: grid;
  align-content: center;
}

.flow-num01::before {
  content: attr(data-en);
  display: block;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.flow-ttl01 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.flow-time01 {
  font-family: var(--font_en);
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}

.flow-style02 {
  background: var(--color_bg);
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
  position: relative;
  z-index: 0;
}

.flow-style02+.flow-style02 {
  margin-top: 20px;
}

.flow-style02 .l-desc {
  flex: 1;
}

.flow-style02 .l-img {
  max-width: 307px;
  width: 35%;
}

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

.flow-ttl02 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 10px 0 5px;
  position: relative;
}

.flow-ttl02 .flow-num {
  display: inline-block;
  color: #fff;
  font-family: var(--font_en);
  font-size: 10rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: -42px;
  left: -40px;
  z-index: -1;
}

@media (max-width: 800px) {
  .flow-style01>li {
    grid-template-columns: 70px 1fr;
    gap: 15px;
  }

  .flow-style01>li:not(:last-child)::before {
    top: 70px;
    left: 33px;
  }

  .flow-style01 .wrap {
    flex-direction: column;
    gap: 15px;
  }

  .flow-style01 .flow-img {
    width: 100%;
  }

  .flow-num01 {
    width: 70px;
    font-size: 2.5rem;
  }

  .flow-num01::before {
    font-size: 1.2rem;
  }

  .flow-time01 {
    font-size: 3rem;
    margin-bottom: 0;
  }

  .flow-ttl01 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .flow-style02 {
    padding: 30px;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .flow-style02 .l-img {
    max-width: 100%;
    width: 100%;
  }

  .flow-ttl02 {
    font-size: 1.8rem;
    margin: 0;
  }

  .flow-ttl02 .flow-num {
    font-size: 7rem;
    top: -27px;
    left: -25px;
  }
}

/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

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

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

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 20px;
}

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

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

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    flex-direction: column;
    gap: 15px;
  }

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

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

/*------------
Instagram
--------------*/
#sb_instagram {
  padding-bottom: 0 !important;
}

#sb_instagram #sbi_images {
  padding: 0 !important;
}

@media (max-width: 800px) {
  #sb_instagram.sbi_mob_col_2 #sbi_images {
    gap: 10px !important;
  }
}

/*------------
tel-layout
--------------*/
.tel-layout {
  background: var(--color_bg);
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: fit-content;
}

.tel-layout .l-tel {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: var(--font_en);
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .tel-layout .l-ttl {
    font-size: 1.5rem;
    margin: 0 auto 15px;
  }

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

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

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 3px solid #ccc;
  font-size: 2.2rem;
  line-height: 1.8;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
}

.dl-privacy dt::before {
  content: "";
  background: var(--color_primary);
  width: 50px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -3px;
}

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

@media (max-width: 800px) {
  .dl-privacy dt {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background: var(--color_bg);
  padding: 86px 0 60px;
  margin-top: auto;
  position: relative;
}

.f-layout {
  margin-bottom: 50px;
}

.f-layout .container {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}

.f-logo {
  margin-bottom: 25px;
}

.f-dl {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 8px 30px;
  align-items: baseline;
}

.f-dl dt {
  height: 26px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  border: 2px solid #2b2b2b;
  box-shadow: 2px 2px 0px #2b2b2b;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-dl dd {
  font-size: 1.5rem;
  line-height: 1.8;
}

.site-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 60px;
}

.f-links {
  display: grid;
  gap: 5px;
}

.f-links>li {
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 14px;
  position: relative;
}

.f-links>li::before {
  content: "";
  background: url(../images/share/icon_arrow_right_gray.svg) no-repeat left center/contain;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 10px;
  left: 0;
}

.f-links a:hover {
  text-decoration: underline;
}

.copyright {
  color: #9F9F9F;
  font-family: var(--font_en);
  font-weight: bold;
  text-align: right;
}

.copyright small {
  font-size: 1.2rem;
}

.pagetop {
  position: absolute;
  bottom: 280px;
  right: 57px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  transition: transform 0.5s;
  position: relative;
  z-index: 0;
}

.pagetop a:hover {
  transform: translateY(-10px);
}

@media (max-width: 1024px) {
  .pagetop {
    display: none;
  }
}

@media (max-width: 800px) {
  .footer {
    padding: 60px 0 40px;
  }

  .f-layout {
    margin-bottom: 30px;
  }

  .f-layout .container {
    flex-direction: column;
    gap: 30px;
  }

  .f-logo {
    text-align: center;
  }

  .f-dl {
    gap: 10px 15px;
  }

  .site-map {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*通常投稿*/
.list-under-post .list-item {
  margin-bottom: 60px;
}

.list-under-post .list-item:last-child {
  margin-bottom: 0;
}

.list-under-post .list-layout {
  display: flex;
  gap: 25px;
  margin-bottom: 15px;
}

.list-under-post .list-img {
  width: 250px;
}

.list-under-post .list-img img {
  aspect-ratio: 7/5;
  object-fit: cover;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 20px;
}

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

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

.list-under-post time {
  display: inline-block;
  color: #9A9A9A;
  font-family: var(--font_en);
  font-size: 1.3rem;
  font-weight: bold;
  margin-right: 15px;
}

.list-under-post .post-ttl {
  border-bottom: 3px solid #ccc;
  font-size: 2.2rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.list-under-post .post-ttl::before {
  content: "";
  background: var(--color_primary);
  width: 50px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -3px;
}

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

.list-under-post .category {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
  padding: 0 5px;
  margin-right: 5px;
  height: 26px;
  display: grid;
  place-items: center;
}

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

.select-area {
  display: flex;
  align-items: center;
  margin: 0 0 50px;
}

.select-area .select-item {
  display: flex;
  align-items: center;
  margin: 0 30px 0 0;
}

.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/icon_arrow_down.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px 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 0;
}

.select-area .select-category-button {
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
  margin-left: 15px;
  cursor: pointer;
}

/*お知らせ*/
.list-under-news {
  border-top: 1px solid var(--color_border);
  margin-bottom: 30px;
}

.list-under-news a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px 25px 1fr;
  grid-template-columns: 100px 1fr;
  grid-gap: 25px;
  border-bottom: 1px solid var(--color_border);
  padding: 20px 0;
}

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

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

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

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

.single-post-layout .l-ttl {
  border-bottom: 3px solid #eee;
  font-size: 3rem;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

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

.single-post-layout .post-data time {
  display: inline-block;
  color: #9A9A9A;
  font-family: var(--font_en);
  font-size: 1.3rem;
  font-weight: bold;
  margin-right: 20px;
}

.single-post-layout .post-data .category {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
  padding: 0 5px;
  margin-right: 10px;
  height: 26px;
  display: grid;
  place-items: center;
}

.single-post-layout .list-img {
  text-align: center;
  margin: 0 auto 60px;
}

.single-post-layout .list-img img {
  max-width: 500px;
  max-height: 500px;
  object-fit: contain;
  border-radius: 20px;
}

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

.postdata a {
  text-decoration: underline;
}

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

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

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

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

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

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

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

.post-number span,
.post-number a {
  display: inline-block;
  border: 1px solid var(--color_text);
  font-family: var(--font_en);
  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: var(--color_text);
  color: #fff;
}

.post-number .current {
  background: var(--color_text);
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 50px 0 100px;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-size: 1.3rem;
  line-height: 28px;
  text-transform: uppercase;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:hover {
  background: #fff;
  color: var(--color_primary);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  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 var(--color_primary);
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background: var(--color_primary);
}

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}

.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 10px;
  border-left: 1px solid var(--color_primary);
}

.post-number-single .next::before {
  transform: rotate(135deg);
  right: 10px;
  border-right: 1px solid var(--color_primary);
}

/*子犬を探す*/
/*親犬のご紹介*/
.search-single-layout,
.parent-layout {
  background: var(--color_bg);
  padding: 5%;
}

.puppy-slider .splide__slide,
.parent-layout .splide__slide {
  height: 100%;
  display: flex;
  align-content: center;
  text-align: center;
  justify-content: center;
}

.puppy-slider .splide__slide img,
.parent-layout .splide__slide img {
  max-height: 300px;
  object-fit: contain;
}

.puppy-slider .thumb-wrapper,
.parent-layout .thumb-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 30px;
}

.puppy-slider .thumb-item,
.parent-layout .thumb-item {
  cursor: pointer;
  filter: grayscale(100%);
  transition: 0.3s;
}

.puppy-slider .thumb-item img,
.parent-layout .thumb-item img {
  width: 100%;
  height: 56px;
  object-fit: contain;
}

.puppy-slider .thumb-item.is-active,
.parent-layout .thumb-item.is-active {
  filter: grayscale(0%);
  transform: scale(0.9);
}

.search-single-layout .is-flex,
.parent-layout .is-flex {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 5%;
}

.search-single-layout .comment,
.parent-layout .comment {
  background: #fff;
  border: 1px solid #ccc;
  padding: 5%;
}

.search-single-layout+.search-single-layout {
  margin-top: 60px;
}

.parent-layout+.parent-layout {
  margin-top: 60px;
}

@media (max-width: 800px) {

  /*通常投稿*/
  .list-under-post .list-item {
    margin-bottom: 50px;
  }

  .list-under-post .list-item:last-child {
    margin-bottom: 0;
  }

  .list-under-post .list-layout {
    flex-direction: column;
    gap: 15px;
  }

  .list-under-post .list-img {
    width: 100%;
  }

  .list-under-post time {
    font-size: 1.2rem;
  }

  .list-under-post .post-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .list-under-post .category {
    font-size: 1.2rem;
  }

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

  .select-area .select-item {
    margin: 0;
  }

  .select-area .select-ttl {
    font-size: 1.5rem;
  }

  .select-area .select-category {
    font-size: 1.5rem;
  }

  /*お知らせ*/
  .list-under-news .list-item {
    margin-bottom: 50px;
  }

  .list-under-news .list-item:last-child {
    margin-bottom: 0;
  }

  .list-under-news .list-layout {
    flex-direction: column;
    gap: 15px;
  }

  .list-under-news .list-img {
    width: 100%;
  }

  .list-under-news time {
    font-size: 1.2rem;
  }

  .list-under-news .post-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }

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

  /*子犬を探す*/
  .search-single-layout,
  .parent-layout {
    padding: 30px 5%;
  }

  .search-single-layout .thumb-wrapper,
  .parent-layout .thumb-wrapper {
    margin-top: 10px;
  }

  .search-single-layout .splide__slide img,
  .parent-layout .splide__slide img {
    max-height: 240px;
  }

  .search-single-layout .is-flex,
  .parent-layout .is-flex {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .search-single-layout+.search-single-layout {
    margin-top: 30px;
  }

  .parent-layout+.parent-layout {
    margin-top: 30px;
  }

  /*詳細ページ*/
  .single-post-layout .l-ttl {
    font-size: 2rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }

  .single-post-layout .post-data {
    margin-bottom: 10px;
  }

  .single-post-layout .list-img {
    margin: 0 auto 30px;
  }

  .single-post-layout .list-img img {
    max-width: 300px;
    max-height: 300px;
  }
}

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

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

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

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

.side-area-item-ttl {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

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

.side-area-links {
  display: grid;
  gap: 5px;
}

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

.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 9px;
  left: 0;
}

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

.side-area-links a:hover {
  text-decoration: underline;
}

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

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 0 5vw;
    width: 100%;
  }

  .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-area-item+.side-area-item {
    margin-top: 30px;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 1.1rem;
}

.en {
  font-family: var(--font_en);
}

.jp {
  font-family: var(--font_base);
}

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

.red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 1.3rem;
  text-indent: -1.4em;
  padding-left: 1.4em;
}

.radius20 {
  border-radius: 20px;
}

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

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

.col2.gap,
.col3.gap,
.col4.gap {
  gap: 5%;
}

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

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

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

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

  .sp-mt60 {
    margin-top: 60px;
  }

  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }

  .col2.gap,
  .col3.gap,
  .col4.gap {
    gap: 30px;
  }
}

/*ボタン*/
.btn-more,
.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-weight: bold;
  line-height: 1.5;
  min-height: 60px;
  min-width: 200px;
  position: relative;
}

.btn-more::before,
.btn-tel::before {
  content: "";
  background: url(../images/share/icon_btn.svg) no-repeat left center/contain;
  width: 55px;
  height: 55px;
  transition: 0.3s;
}

.btn-more::after,
.btn-tel::after {
  content: "";
  width: 55px;
  height: 55px;
  border: 2px solid var(--color_border);
  border-radius: 10px;
  position: absolute;
  top: calc(50% + 5px);
  left: 5px;
  transform: translateY(-50%);
}

.btn-more:hover::before,
.btn-tel:hover::before {
  transform: translate(5px, 5px);
}

.btn-tel::before {
  background: url(../images/share/icon_btn_tel.svg) no-repeat left center/contain;
}

.btn-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

.btn-out:hover::after {
  background-position: left bottom;
  background-size: 100% auto;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

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

@media (max-width: 800px) {
  .btn-wrap {
    justify-content: center;
    gap: 15px;
  }
}

/*診療カレンダー*/
:root {
  --event01: #EF866B;
  --event02: #F7B46B;
  --event03: #A8DBA8;
  --event04: #B0D7D5;
}

.business-calendar-box-wrap {
  margin-bottom: 15px;
}

.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.business-calendar-box-wrap .business-calendar caption {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 2.5rem;
  vertical-align: -1px;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}

.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(180deg);
}

.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 1.3rem;
  padding: 5px;
  z-index: 0;
}

.business-calendar-box-wrap .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-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 1.5rem;
}

.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}

.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3%;
}

.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}

.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}

.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}

.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}

.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

.list-event {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.list-event li {
  display: flex;
  gap: 5px;
  line-height: 1;
}

.list-event .event01 {
  color: var(--event01);
}

.list-event .event02 {
  color: var(--event02);
}

.list-event .event03 {
  color: var(--event03);
}

.list-event .event04 {
  color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .list-event {
    display: block;
  }

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

/*診療時間*/
.time-table {
  border: 1px solid #DFDFDF;
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5px;
}

.time-table-head {
  background-color: #607D8B;
  color: #fff;
}

.time-table-head .item {
  padding: 10px 0;
}

.time-table-body {
  border-top: 1px solid #DFDFDF;
}

.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.time-table-body .item:first-child {
  background-color: #8299A3;
  color: #fff;
  letter-spacing: 0;
}

.time-table-head,
.time-table-body {
  display: grid;
  grid-template-columns: 120px repeat(7, 1fr);
}

.time-table.large .time-table-head,
.time-table.large .time-table-body {
  grid-template-columns: 220px repeat(7, 1fr);
}

@media (max-width: 800px) {
  .time-table-head {
    font-size: 1.2rem;
  }

  .time-table-head .item {
    padding: 5px 0;
  }

  .time-table-body .item {
    padding: 5px 0;
    font-size: 1.3rem;
  }

  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 1rem;
  }

  .time-table-head,
  .time-table-body {
    grid-template-columns: 90px repeat(7, 1fr) !important;
  }
}


.search-card li:nth-child(4n+1) .search-img::before {
  background: #D4BEDD;
}

.search-card li:nth-child(4n+2) .search-img::before {
  background: #F2E896;
}

.search-card li:nth-child(4n+3) .search-img::before {
  background: #F0C395;
}

.search-card li:nth-child(4n+4) .search-img::before {
  background: #AEC5E0;
}

.search-card li {
  transition: 0.3s;
}

.search-card li:hover {
  transform: translateY(-10px);
}

.search-img {
  max-width: 328px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.search-img img {
  max-height: 230px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid var(--color_border);
}

.search-img::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px solid var(--color_border);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}

.search-dl {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 8px 12px;
  align-items: baseline;
}

.search-dl.wide80 {
  grid-template-columns: 80px 1fr;
}

.search-dl.wide90 {
  grid-template-columns: 90px 1fr;
}

.search-dl.auto {
  grid-template-columns: auto 1fr;
}

.search-dl.auto dt {
  padding: 0 5px;
}

.search-dl dt {
  height: 26px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  background: #fff;
  border: 2px solid #2b2b2b;
  box-shadow: 2px 2px 0px #2b2b2b;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-dl dd {
  font-size: 1.5rem;
  line-height: 1.8;
}

/*子犬を探す*/
.search-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 42px;
}

@media (max-width: 800px) {
  .search-card {
    max-width: 328px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

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

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

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

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

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

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

.splide__progress {
  background: #ddd;
  margin-top: 10px;
}

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

.splide__arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 35px;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.2s;
}

.splide__arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--splide-arrow-color);
}

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

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

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

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

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

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

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

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  transform: scale(1.4);
  z-index: 1;
}

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

.splide__pagination__page:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__progress__bar {
  background: var(--splide-progress-color);
  height: 3px;
}

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

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}

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

.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #737e80;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: background-color 0.2s ease;
  height: 29px;
  width: 29px;
}

.splide__toggle:hover {
  background: var(--splide-toggle-color);
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

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

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid var(--splide-track-color);
}

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

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

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

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

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

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

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

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

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

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

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

  .splide__arrow--prev {
    left: 10px;
  }

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

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: translateY(0);
  }
}

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


.about-wrap {
  display: grid;
  grid-template-columns: repeat(4, 162px);
  gap: 20px;
  justify-content: center;
}

.about-wrap img {
  width: 162px;
  height: auto;
}

.about-wrap img:nth-child(5) {
  grid-column: 1;
}

@media (max-width: 800px) {
  .about-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-wrap img {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }

  .about-wrap img:nth-child(5) {
    grid-column: auto;
  }
}
