@charset "UTF-8";

:root {
  --color_bg: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #ccc;
  --color_primary: #009482;
  --color_secondary: #82B7B5;
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_en: "Montserrat", sans-serif;
  --medium: 500;
  --semibold: 600;
  --easing: cubic-bezier(.12, 1, .5, 1);
}

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

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

@media (max-width: 800px) {
  body {
    font-size: 1.5rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

th,
dt {
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.header.transform .h-logo {
  max-width: 180px;
  margin: 15px 0 0 2.222vw;
}

.header-layout {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  height: 100px;
}

.h-logo {
  max-width: 220px;
  margin: 30px 0 0 2.222vw;
  transition: 0.3s;
}

.h-right {
  display: flex;
}

.h-contact {
  width: 120px;
  height: 100px;
  background: #91C1BF;
  border: 1px solid #91C1BF;
  color: #fff;
  display: grid;
  place-items: center;
  align-content: center;
  font-size: 1.7rem;
  font-weight: bold;
  transition: 0.3s;
}

.h-contact::before {
  content: "";
  display: block;
  background: url(../images/share/icon_calendar.svg) no-repeat center/contain;
  width: 34px;
  aspect-ratio: 1/1;
  transition: 0.3s;
}

.h-contact:hover {
  background: #fff;
  color: #91C1BF;
}

.h-contact:hover::before {
  background-image: url(../images/share/icon_calendar_green.svg);
}

@media (max-width: 1024px) {
  .header {
    position: static;
  }

  .header.transform .h-logo {
    width: 98px;
    margin: 0;
  }

  .header-layout {
    padding: 16px 10px;
    height: 72px;
    justify-content: center;
  }

  .h-logo {
    width: 98px;
    margin: 0;
  }

  .h-right {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
/*normal*/
.gnavi-list {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-size: 1.7rem;
  font-weight: var(--medium);
  white-space: nowrap;
  padding: 35px 28px 0 0;
}

.gnavi-list>li>a {
  display: inline-block;
  transition: color 0.3s;
}

.gnavi-list a:hover {
  color: var(--color_secondary);
}

/*dropdown*/
.dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

.dropdown .ttl {
  transition: color 0.3s;
}

.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.dropdown.is-open .ttl {
  color: var(--color_secondary);
}

.dropdown .sub-menu {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 7px 30px;
  font-weight: 400;
  font-size: 1.6rem;
  pointer-events: none;
  background-color: #D6EAE9;
  padding: 23px 30px;
  position: absolute;
  top: 40px;
  right: 50%;
  width: max-content;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.dropdown .sub-menu li {
  position: relative;
  padding-left: 14px;
}

.dropdown .sub-menu li::before {
  content: "";
  border-bottom: 1px solid var(--color_secondary);
  border-right: 1px solid var(--color_secondary);
  width: 6px;
  height: 6px;
  transform: rotate(315deg);
  position: absolute;
  top: 14px;
  left: 0;
}

.dropdown:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

.dropdown a {
  transition: 0.3s;
}

.dropdown a:hover {
  color: var(--color_primary);
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  display: flex;
  gap: 5.555vw;
  padding: 150px 5.555vw 0;
}

.hero-right {
  margin-top: -30px;
  position: relative;
}

.hero-right::before {
  content: "";
  background: url(../images/hero-deco.png) no-repeat top right / contain;
  width: 3vw;
  aspect-ratio: 147 / 320;
  position: absolute;
  top: 5vw;
  right: 16vw;
  z-index: -1;
}

.hero-ttl,
.hero-sub-ttl {
  color: var(--color_primary);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.hero-ttl {
  font-size: clamp(3rem, 2.777vw, 5rem);
  margin-bottom: 10px;
}

.hero-sub-ttl {
  font-size: clamp(1.8rem, 2vw, 3.6rem);
  margin-bottom: 20px;
}

.hero-txt {
  margin-bottom: 25px;
}

@media (max-width: 1024px) {
  .hero {
    padding: 30px 5.555vw;
  }
}

@media (max-width: 800px) {
  .hero {
    padding: 0 5% 35px;
  }

  .hero img {
    width: 100%;
  }

  .hero-left {
    display: none;
  }

  .hero-right {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 0;
  }

  .hero-right::before {
    width: 80px;
    right: 0;
    top: auto;
    bottom: 0;
  }

  .hero-catch {
    margin-top: 18px;
  }

  .hero-ttl {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-sub-ttl {
    font-size: 2.1rem;
    margin-bottom: 15px;
  }

  .hero-txt {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 0;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  text-align: center;
  margin-bottom: 45px;
}

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

.t-ttl .en {
  color: #888;
  font-size: 2.4rem;
  font-weight: var(--semibold);
  margin-bottom: 5px;
}

.t-ttl .jp {
  color: var(--color_primary);
  font-size: 3.8rem;
  font-weight: bold;
}

.t-ttl02 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
}

.t-ttl02::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color_secondary);
  margin: 9px auto 0;
}

.t-ttl02.white {
  color: #fff;
}

.t-ttl02.white::after {
  background: #fff;
}

.t-tel {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

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

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

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

  .t-ttl02 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

/*------------
Layout
--------------*/
.top-layout01 {
  display: flex;
  gap: 3.888vw;
  margin: 0 0 0 -8%;
}

.top-layout01 .l-img {
  position: relative;
  width: 63%;
  max-width: 700px;
  z-index: 1;
}

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

.top-layout01 .l-job {
  font-weight: var(--medium);
  line-height: 1;
}

.top-layout01 .l-name {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.top-layout01 .l-name::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color_secondary);
  margin-top: 3px;
}

.top-layout01 .l-name .small {
  font-size: 1.7rem;
  padding-left: 10px;
}

.top-layout01.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 800px) {
  .top-layout01 {
    flex-direction: column;
    gap: 30px;
    margin: 0;
  }

  .top-layout01 .l-img {
    width: 100%;
    max-width: 100%;
  }

  .top-layout01 .l-job {
    font-size: 1.4rem;
  }

  .top-layout01 .l-name {
    font-size: 2rem;
  }

  .top-layout01 .l-name::after {
    margin-top: 5px;
  }

  .top-layout01 .l-name .small {
    font-size: 1.4rem;
  }

  .top-layout01.reverse {
    flex-direction: column;
  }
}

/*------------
Card
--------------*/
.top-card01 {
  display: grid;
  gap: 32px;
}

.top-card01 a {
  display: block;
  background: #fff;
  border: 1px solid var(--color_border);
  padding: 20px 20px 30px;
  transition: 0.3s;
}

.top-card01 a:hover {
  background: #ccc;
}

.top-card01 a:hover .top-card-img01 img {
  scale: 1.1;
}

.top-card-img01 {
  margin-bottom: 25px;
  overflow: hidden;
}

.top-card-img01 img {
  transition: 0.3s;
}

.top-card-ttl01 {
  font-size: 1.8rem;
  font-weight: var(--medium);
  text-align: center;
}

@media (max-width: 800px) {
  .top-card01 {
    gap: 15px;
  }

  .top-card-img01 {
    margin-bottom: 20px;
  }

  .top-card-img01 img {
    width: 100%;
  }
}

.top-card02 {
  display: grid;
  gap: 40px 44px;
}

.top-card02 a {
  display: block;
  overflow: hidden;
  position: relative;
}

.top-card02 a::after {
  content: "";
  display: block;
  background: #000;
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: 0.5s;
}

.top-card02 a:hover .top-card-img02 {
  scale: 1.1;
  opacity: 0.8;
}

.top-card02 .t-ttl02 {
  margin-bottom: 25px;
}

.top-card-img02 {
  opacity: 0.5;
  transition: 0.5s;
}

.top-card-desc02 {
  width: 90%;
  position: absolute;
  top: 8.888vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

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

.top-card-btn {
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.top-card-btn::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

@media (max-width: 800px) {
  .top-card02 {
    gap: 15px;
  }

  .top-card02 .t-ttl02 {
    margin-bottom: 15px;
  }

  .top-card-img02 {
    height: 300px;
  }

  .top-card-img02 img {
    width: 100%;
  }

  .top-card-desc02 {
    top: 40px;
  }

  .top-card-txt {
    line-height: 1.8;
  }

  .top-card-btn {
    width: 30px;
  }

  .top-card-btn::before {
    right: 13px;
  }
}

/*------------
sec01
--------------*/
.sec01 {
  padding: 65px 0 100px;
  position: relative;
}

.sec01::before {
  content: "";
  background: #E9E9E9;
  width: 100%;
  height: 631px;
  position: absolute;
  top: -260px;
  left: 0;
  z-index: -1;
}

.sec01 .t-ttl {
  margin-top: 13px;
}

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

  .sec01::before {
    height: 100%;
    top: 0;
    left: 0;
  }

  .sec01 .t-ttl {
    margin: 0;
  }
}

/*------------
sec02
--------------*/
.sec02 {
  padding: 100px 0;
}

.sec02 .time-table {
  margin-bottom: 10px;
}

.sec02 .cmn-dl {
  margin-bottom: 30px;
}

.sec02-layout {
  display: flex;
  gap: 3.555vw;
}

.sec02-layout .item {
  width: 50%;
}

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

  .sec02 .cmn-dl {
    margin-bottom: 15px;
  }

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

  .sec02-layout .item {
    width: 100%;
  }
}

/*------------
sec03
--------------*/
.sec03 {
  padding-bottom: 35px;
  position: relative;
}

.sec03::before {
  content: "";
  width: 78.444vw;
  height: 536px;
  background: #E9E9E9;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

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

.sec03 .dl-career {
  margin-bottom: 40px;
}

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

  .sec03::before {
    width: 100%;
    height: 80%;
  }

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

  .sec03 .dl-career {
    margin-bottom: 30px;
  }
}

/*------------
sec04
--------------*/
.sec04 {
  padding: 140px 0 110px;
  position: relative;
}

.sec04::before {
  content: "";
  width: 94.444vw;
  max-width: 1700px;
  height: 930px;
  background: var(--color_primary);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}

.sec04 .container {
  position: relative;
}

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

.sec04-img01 {
  max-width: 700px;
  margin-bottom: 40px;
}

.sec04-img02 {
  width: 25.555vw;
  max-width: 460px;
  position: absolute;
  top: 0;
  right: -100px;
  z-index: -1;
}

.sec04-img03 {
  width: 28.888vw;
  max-width: 520px;
  position: absolute;
  bottom: -10px;
  right: 0;
  z-index: -1;
}

.sec04-img03::before {
  content: "";
  background: url(../images/sec04_deco.png) no-repeat center left/contain;
  width: 159px;
  aspect-ratio: 159/356;
  position: absolute;
  top: 50%;
  left: -240px;
  transform: translateY(-50%);
}

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

  .sec04::before {
    width: 100%;
    height: 75%;
  }

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

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

  .sec04-img01 {
    margin-bottom: 30px;
  }

  .sec04-img02 {
    width: 100%;
    position: static;
  }

  .sec04-img03 {
    width: 100%;
    margin-top: 30px;
    position: static;
  }

  .sec04-img03::before {
    width: 80px;
    top: auto;
    bottom: 100px;
    left: auto;
    right: 0;
    transform: none;
  }

  .sec04-img-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
}

/*------------
sec05
--------------*/
.sec05 {
  padding: 100px 0;
  position: relative;
}

.sec05::before {
  content: "";
  background: #E9E9E9;
  width: 94.444vw;
  height: 608px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}

.sec05::after {
  content: "";
  background: url(../images/sec05_deco.png) no-repeat bottom right/contain;
  width: 20.277vw;
  aspect-ratio: 365/265;
  position: absolute;
  right: 5.555vw;
  bottom: 24px;
  z-index: -1;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 70px 0 100px;
  }

  .sec05::before {
    width: 100%;
    height: 85%;
  }

  .sec05::after {
    width: 100px;
    right: 5%;
    bottom: 15px;
  }
}

/*------------
sec06
--------------*/
.sec06 {
  padding: 100px 0;
  position: relative;
}

.sec06::before {
  content: "";
  width: 94.444vw;
  height: 1575px;
  background: var(--color_primary);
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
  z-index: -1;
}

.sec06 .top-card02 {
  margin-bottom: 80px;
}

.sec06-layout {
  background: url(../images/sec06_bg.jpg) no-repeat center/cover;
  padding: 60px 30px 70px;
}

.sec06-list {
  max-width: 830px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sec06-list .btn-more.green {
  width: 100%;
  min-width: auto;
  min-height: 50px;
}

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

  .sec06::before {
    width: 100%;
    height: 85%;
  }

  .sec06 .top-card02 {
    margin-bottom: 40px;
  }

  .sec06-layout {
    padding: 50px 5%;
  }

  .sec06-list {
    grid-template-columns: repeat(2, 1fr);
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .sec06-list .btn-more.green {
    padding: 5px 10px;
    min-height: 54px;
  }
}

/*------------
sec07
--------------*/
.sec07 {
  padding: 100px 0 0;
}

.sec07 .t-ttl .jp {
  color: var(--color_text);
}

.sec07-layout {
  position: relative;
}

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

.sec07-layout iframe {
  vertical-align: bottom;
  height: 100%;
  min-height: 500px;
  width: 100%;
}

.sec07-layout .l-desc {
  width: 420px;
  padding: 55px 30px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  display: grid;
  align-content: center;
}

.sec07-address {
  text-align: center;
  margin-bottom: 20px;
}

.sec07-tel {
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.sec07-tel .small {
  font-size: 2rem;
}

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

  .sec07-layout iframe {
    height: 300px;
    min-height: auto;
  }

  .sec07-layout .l-desc {
    position: static;
    transform: none;
    width: 100%;
    min-height: auto;
    padding: 50px 5%;
    border-radius: 0;
  }

  .sec07-address {
    margin-bottom: 15px;
  }

  .sec07-tel {
    font-size: 2.6rem;
  }

  .sec07-tel .small {
    font-size: 1.8rem;
  }
}

/*------------
Post
--------------*/
.top-post-layout01 {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 50px;
  min-height: 170px;
  position: relative;
}

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

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

.list-top-news a {
  display: flex;
  border-bottom: 1px solid var(--color_border);
  padding: 22px 0;
}

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

.list-top-news time {
  display: inline-block;
  color: #888;
  margin-right: 25px;
  white-space: nowrap;
}

.list-top-news .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: var(--medium);
  line-height: 2;
}

@media (max-width: 800px) {
  .top-post-layout01 {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
  }

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

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

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

  .list-top-news .ttl {
    -webkit-line-clamp: 2;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl-wrapper {
  padding: 130px 2.777vw 0 3.333vw;
  position: relative;
  z-index: 1;
}

.page-ttl-wrapper::after {
  content: "";
  display: block;
  background: url(../images/under/page-ttl.jpg) no-repeat center right/contain;
  width: 77.777vw;
  max-width: 1400px;
  aspect-ratio: 1400/380;
  margin: 0 0 0 auto;
}

.page-ttl {
  position: absolute;
  bottom: 7.611vw;
  left: 3.333vw;
  z-index: 2;
}

.page-ttl .en {
  color: #888;
  font-size: clamp(1.8rem, 1.666vw, 3rem);
  font-weight: var(--semibold);
  text-transform: capitalize;
}

.page-ttl .jp {
  font-weight: bold;
  font-size: clamp(2.5rem, 2.333vw, 4.2rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.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 {
  margin-top: 1.5em;
}

@media (max-width: 1024px) {
  .page-ttl-wrapper {
    padding: 0 2.777vw 0 3.333vw;
  }
}

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

  .page-ttl-wrapper::after {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    aspect-ratio: auto;
  }

  .page-ttl {
    bottom: 50%;
    left: 5%;
    transform: translateY(50%);
  }

  .page-ttl .en {
    font-size: 1.8rem;
  }

  .page-ttl .jp {
    font-size: 2.4rem;
  }

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

.u-h2,
.postdata h2 {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 50px;
}

.u-h2::after,
.postdata h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color_secondary);
  margin: 19px auto 0;
}

.postdata h2 {
  font-size: 3rem;
}

.u-h3,
.postdata h3 {
  border-bottom: 1px solid #ddd;
  font-size: 2.4rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
  position: relative;
}

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

.u-h4,
.postdata h4 {
  color: var(--color_secondary);
  font-size: 2rem;
  margin-bottom: 15px;
}

.u-ttl {
  font-size: 2rem;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 10px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.u-ttl span {
  display: inline-block;
  color: #888;
  font-size: 3rem;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.u-ttl span::before {
  content: attr(data-en);
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0;
  margin-bottom: 3px;
}

.u-sub-ttl {
  display: inline-block;
  background: #E1EDEC;
  font-size: 1.5rem;
  font-weight: var(--medium);
  line-height: 1;
  padding: 5px 17px;
  margin-bottom: 8px;
}

@media (max-width: 800px) {

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

  .u-h2::after,
  .postdata h2::after {
    margin: 15px auto 0;
  }

  .postdata h2 {
    font-size: 2.3rem;
  }

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

  .u-h4,
  .postdata h4 {
    font-size: 1.8rem;
  }
}

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

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

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

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

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

.list-disc li:before {
  content: "・";
  color: var(--color_primary);
  display: block;
  position: absolute;
  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_primary);
  border-radius: 15px;
  color: #fff;
  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-left: 1px;
  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;
}

.list-col2 {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

@media (max-width: 800px) {
  .list-num>li:before {
    top: 6px;
  }

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

  .list-check-square>li:before {
    top: 7px;
  }
}

.dl-style01 {
  display: grid;
  gap: 15px;
}

.dl-style01 .item {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 10px 0;
}

.dl-style01 dt {
  background: var(--color_primary);
  color: #fff;
  font-weight: bold;
  padding: 20px;
}

.dl-style01 dd {
  background: #fff;
  font-size: 1.5rem;
  padding: 20px;
}

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

.card-style01>li {
  background-color: #fff;
  border: 1px solid var(--color_border);
  padding: 25px;
}

.card-img01 {
  margin-bottom: 25px;
}

.card-ttl01 {
  font-size: 1.8rem;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

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

.card-style02>li {
  background-color: #fff;
  border: 1px solid var(--color_border);
  padding: 25px;
  position: relative;
}

.card-img02 {
  margin-bottom: 25px;
}

.card-ttl02 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
}

.card-num02 {
  color: #888;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: -26px;
  left: 0;
}

.card-style03 {
  display: flex;
  gap: 5%;
}

.card-style03>li {
  width: 16%;
  position: relative;
}

.card-ttl03 {
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.card-style04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 5%;
}

.card-style04>li {
  width: 30%;
}

.card-ttl04 {
  font-size: 1.8rem;
  text-align: center;
}

.card-img04 {
  margin-bottom: 15px;
}

.card-style05 {
  display: grid;
  gap: 30px;
}

.card-style05>li {
  background-color: #E9E9E9;
  padding: 25px;
}

@media (max-width: 800px) {
  .card-style01 {
    gap: 20px;
  }

  .card-ttl01 {
    padding-bottom: 10px;
  }

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

  .card-num02 {
    font-size: 2.2rem;
  }

  .card-style02 {
    gap: 60px;
  }

  .card-style03 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .card-style03>li {
    width: calc(50% - 7.5px);
  }

  .card-style04 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .card-style04>li {
    width: calc(50% - 7.5px);
  }

  .card-ttl04 {
    font-size: 1.6rem;
  }

  .card-style05 {
    gap: 20px;
  }
}

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

.table-style01 th {
  background: var(--color_primary);
  color: #fff;
  text-align: center;
}

.table-style01 th.bg01 {
  background: #E9E9E9;
  color: #333;
}

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

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

  .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 {
  background: #E9E9E9;
  padding: 30px;
}

.box-style02 {
  background: #E9E9E9;
  border: 1px solid var(--color_border);
  padding: 30px;
}

.box-style03 {
  background: #fff;
  padding: 20px;
}

.box-style04 {
  background: #fff;
  border: 1px solid var(--color_border);
  padding: 30px;
}

.box-ttl01 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 25px;
}

.box-ttl02 {
  font-size: 2rem;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.box-ttl03 {
  color: var(--color_primary);
  display: flex;
  gap: 15px;
  font-size: 2rem;
  margin-bottom: 15px;
}

.box-sub-ttl {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

@media (max-width: 800px) {

  .box-style01,
  .box-style02,
  .box-style03 {
    padding: 20px;
  }

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

  .box-ttl02 {
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .box-ttl03 {
    font-size: 1.8rem;
  }
}

.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: 3px;
}

.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;
    top: 2px;
  }
}

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

.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 {
    height: 65vw;
  }

  .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 {
    font-size: 1.6rem;
  }
}

.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 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-style .item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-style dt {
  cursor: pointer;
  padding: 18px 50px;
  position: relative;
}

.faq-style dt .faq-icon {
  top: 15px;
  left: 0;
}

.faq-style dd {
  display: none;
  padding: 0 50px 30px;
  position: relative;
}

.faq-style dd .faq-icon {
  border: 1px solid #ccc;
  background-color: #ccc;
  color: #fff;
  top: 0;
  left: 0;
}

.faq-style .faq-ttl {
  font-weight: bold;
}

.faq-style .faq-icon {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: #333;
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  transition: 0.3s;
}

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

.faq-style .faq-open-icon::before,
.faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: #333;
  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: #ffa29d;
  color: #fff;
}

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

.faq-style .is-open .faq-icon {
  background-color: #ffa29d;
  color: #fff;
}

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

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

@media (max-width: 800px) {
  .faq-style {
    line-height: 1.5;
  }

  .faq-style dt {
    padding: 18px 30px 18px 50px;
  }

  .faq-style dt .faq-icon {
    top: 12px;
  }

  .faq-style dd {
    padding: 0 50px 30px;
  }

  .faq-style .faq-open-icon {
    right: 0;
    top: 7px;
  }
}

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

.flow-style01>li {
  background-color: #f5f5f5;
  padding: 25px;
  position: relative;
}

.flow-style01>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent #91C1BF;
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
}

.flow-style01 .flow-num {
  font-size: 2.5rem;
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 30px;
}

.flow-style01 .flow-img {
  margin-bottom: 15px;
}

.flow-style01 .flow-ttl {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.flow-style02 {
  border: 1px solid #ccc;
  background: #fff;
  padding: 5%;
}

.flow-style02>li+li {
  border-top: 1px solid #ccc;
  padding-top: 65px;
  margin-top: 55px;
  position: relative;
}

.flow-style02>li+li::before {
  content: "";
  background: url(../images/share/flow_arrow02.svg) no-repeat center/contain;
  width: 45px;
  height: 45px;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-style02 .flow-ttl {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid #ccc;
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.flow-style02 .flow-num {
  display: inline-block;
  background: var(--color_primary);
  color: #fff;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 7px;
  margin-top: 6px;
}

.flow-style02 .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%;
}

.flow-style02 .flow-img {
  width: 40%;
}

.flow-style02 .flow-img.small {
  width: 30%;
}

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

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

  .flow-style01>li:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }

  .flow-style02 {
    padding: 25px;
  }

  .flow-style02>li+li {
    padding-top: 50px;
    margin-top: 50px;
  }

  .flow-style02 .flow-ttl {
    flex-direction: column;
    gap: 10px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .flow-style02 .flow-ttl .num {
    margin: 0;
  }

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

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

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

/*------------
Layout
--------------*/
.l-style01 {
  display: flex;
}

.l-style01 .l-img {
  position: relative;
  width: 50%;
  max-width: 552px;
  z-index: 1;
}

.l-style01 .l-desc {
  background: #E9E9E9;
  padding: 50px 50px 50px 418px;
  margin: 124px 0 0 -364px;
  flex: 1;
  position: relative;
}

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

.l-style01.reverse .l-desc {
  padding: 50px 418px 50px 50px;
  margin: 124px -364px 0 0;
}

.l-style01.reverse .l-num {
  left: 50px;
}

.l-style01 .l-num {
  display: inline-block;
  color: #888;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: -32px;
  left: 418px;
}

.l-style01 .l-num .small {
  display: inline-block;
  font-size: 2.4rem;
  margin-right: 15px;
}

.l-style01 .l-ttl {
  font-size: 2.4rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.l-style02 {
  display: flex;
}

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

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

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

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

.l-style02 .l-num {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 15px;
}

.l-style02 .l-ttl {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.l-style02 .l-sub-ttl {
  display: flex;
  gap: 25px;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.l-style02 .l-sub-ttl::before {
  content: "";
  flex: 0 0 30px;
  background: var(--color_primary);
  width: 30px;
  height: 1px;
}

.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-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR .l-ttl,
.l-imgL .l-ttl {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

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

@media (max-width: 800px) {
  .l-style01 {
    flex-direction: column;
  }

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

  .l-style01 .l-desc {
    padding: 100px 5vw 30px;
    margin: -80px -5vw 0;
  }

  .l-style01.reverse {
    flex-direction: column;
  }

  .l-style01.reverse .l-desc {
    padding: 100px 5vw 30px;
    margin: -80px -5vw 0;
  }

  .l-style01 .l-num {
    position: static;
    font-size: 3.2rem;
    margin-bottom: 15px;
  }

  .l-style01 .l-num .small {
    font-size: 1.8rem;
    margin-right: 10px;
  }

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

  .l-style02 {
    flex-direction: column;
  }

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

  .l-style02 .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
  }

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

  .l-style02.reverse .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
  }

  .l-style02 .l-num {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .l-style02 .l-ttl {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .l-style02 .l-sub-ttl {
    gap: 15px;
    font-size: 17px;
    margin-bottom: 15px;
  }

  .l-style02 .l-sub-ttl::before {
    flex: 0 0 20px;
    width: 20px;
  }

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

  .l-imgR .l-ttl,
  .l-imgL .l-ttl {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}

/*------------
staff layout
--------------*/
.staff-layout .wrapper {
  display: flex;
  gap: 8%;
}

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

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

.staff-layout .job {
  display: inline-block;
  color: #888;
  border: 1px solid #888;
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px 10px;
  margin-bottom: 20px;
}

.staff-layout .l-ttl {
  color: var(--color_primary);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

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

.staff-layout .kana {
  color: var(--color_secondary);
  font-size: 1.3rem;
}

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

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

.card-profile .item {
  background-color: #E9E9E9;
  padding: 30px;
}

.card-profile .card-ttl {
  color: var(--color_primary);
  border-bottom: 1px dashed var(--color_primary);
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

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

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

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

  .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;
    grid-gap: 25px;
  }

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

/*------------
院長執筆記事
--------------*/
.article-list {
  display: grid;
  gap: 30px 15px;
}

.article-list img {
  max-height: 250px;
  object-fit: contain;
}

@media (max-width: 800px) {
  .article-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #ddd;
  font-size: 2.4rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
  position: relative;
}

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

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

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

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_primary);
  color: #fff;
  padding: 80px 0 20px;
  margin-top: auto;
  position: relative;
}

.footer .time-table {
  max-width: 480px;
  margin-bottom: 10px;
}

.f-layout01 {
  margin-bottom: 60px;
}

.f-layout01 .container {
  border: 1px solid #fff;
  padding: 45px 5% 60px;
}

.f-layout01 .l-ttl {
  text-align: center;
  margin-bottom: 25px;
}

.f-layout01 .en {
  font-size: 2.4rem;
  font-weight: var(--semibold);
  line-height: 1;
  margin-bottom: 5px;
}

.f-layout01 .jp {
  font-size: 3.8rem;
}

.f-layout01 .l-btn-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  text-align: center;
}

.f-layout01 .l-btn-list li:first-child {
  position: relative;
}

.f-layout01 .l-btn-list li:first-child::after {
  content: "";
  background: #fff;
  width: 1px;
  height: 90px;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.f-layout01 .l-btn-ttl {
  font-weight: var(--medium);
}

.f-layout01 .l-btn-ttl.tel {
  margin-bottom: 10px;
}

.f-layout01 .l-btn-tel {
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.f-layout01 .l-btn-reserve {
  width: 250px;
  height: 48px;
  font-weight: var(--medium);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid #fff;
  transition: 0.3s;
}

.f-layout01 .l-btn-reserve::before {
  content: "";
  display: block;
  background: url(../images/share/icon_calendar.svg) no-repeat center left/contain;
  width: 34px;
  height: 34px;
  transition: 0.3s;
}

.f-layout01 .l-btn-reserve:hover {
  background: #fff;
  color: var(--color_primary);
}

.f-layout01 .l-btn-reserve:hover::before {
  background-image: url(../images/share/icon_calendar_green02.svg);
}

.f-layout02 .container {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  margin-bottom: 85px;
}

.f-layout02 .item01 {
  width: 50%;
}

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

.f-tel {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font_en);
  font-weight: var(--semibold);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.site-map {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  font-weight: var(--medium);
  margin-top: 25px;
}

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

.f-links>li {
  padding-left: 14px;
  position: relative;
}

.f-links>li::before {
  content: "";
  border-bottom: 1px solid var(--color_secondary);
  border-right: 1px solid var(--color_secondary);
  width: 6px;
  height: 6px;
  transform: rotate(315deg);
  position: absolute;
  top: 14px;
  left: 0;
}

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

.f-links02 .ttl {
  padding-left: 14px;
  margin-bottom: 5px;
  position: relative;
}

.f-links02 .ttl::before {
  content: "";
  display: block;
  border-bottom: 1px solid var(--color_secondary);
  border-right: 1px solid var(--color_secondary);
  width: 6px;
  height: 6px;
  transform: rotate(315deg);
  position: absolute;
  top: 10px;
  left: 0;
}

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

.f-links02 .sub-menu {
  margin-left: 15px;
}

.f-links02 .sub-menu>li {
  position: relative;
  padding-left: 16px;
}

.f-links02 .sub-menu>li::before {
  content: "";
  width: 8px;
  border: 1px solid var(--color_secondary);
  position: absolute;
  top: 16px;
  left: 0;
}

.copyright {
  text-align: center;
  line-height: 1;
}

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

.pagetop {
  position: absolute;
  bottom: 20px;
  right: 20px;
  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) {
  .footer {
    padding: 50px 0 70px;
  }

  .pagetop {
    display: none;
  }
}

@media (max-width: 800px) {
  .footer .time-table {
    max-width: 100%;
  }

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

  .f-layout01 .container {
    padding: 40px 5%;
  }

  .f-layout01 .en {
    font-size: 2rem;
  }

  .f-layout01 .jp {
    font-size: 2.8rem;
  }

  .f-layout01 .l-btn-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0 auto 15px;
    width: 100%;
  }

  .f-layout01 .l-btn-list .l-btn-ttl.tel {
    margin-bottom: 5px;
  }

  .f-layout01 .l-btn-list li:first-child {
    width: 100%;
  }

  .f-layout01 .l-btn-list li:first-child::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: -20px;
    right: 50%;
    transform: translateX(50%);
  }

  .f-layout01 .l-btn-tel {
    justify-content: center;
  }

  .f-layout02 .container {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .f-layout02 .item01 {
    width: 100%;
  }

  .site-map {
    font-size: 1.4rem;
    gap: 30px;
  }

  .f-links>li::before {
    top: 12px;
  }

  .f-links02 .ttl::before {
    top: 9px;
  }

  .f-links02 .sub-menu>li::before {
    top: 14px;
  }

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

.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  .sp-navi {
    display: block;
  }

  :root {
    --navi-background: #91C1BF;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --navi-font: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  }

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

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

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

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

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

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

  .sp-navi-btns .item .img img {
    object-fit: contain;
    height: 18px;
    margin-bottom: 8px;
  }

  .sp-navi-btns .item .ttl {
    display: block;
    font-weight: var(--medium);
    letter-spacing: 0.05em;
  }

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

  .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-weight: var(--medium);
    letter-spacing: 0.05em;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

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

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

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

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

  .sp-menu-btn[aria-expanded=true] span:nth-of-type(1) {
    transform: translate(-50%, 6px) rotate(-45deg);
  }

  .sp-menu-btn[aria-expanded=true] span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-menu-btn[aria-expanded=true] span:nth-of-type(3) {
    transform: translate(-50%, -5px) rotate(45deg);
  }

  /* コンテンツ */
  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    color: var(--color_text);
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }

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

  .sp-navi-list {
    border-top: 1px dashed var(--color_border);
    margin: 0 0 30px;
  }

  .sp-navi-list>li {
    border-bottom: 1px dashed var(--color_border);
  }

  .sp-navi-list>li>a {
    display: block;
    font-size: 1.4rem;
    font-weight: var(--medium);
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }

  .sp-navi-list .ttl {
    display: block;
    font-size: 1.4rem;
    font-weight: var(--medium);
    padding-top: 15px;
  }

  .sp-navi-list .sub-menu {
    padding-bottom: 15px;
  }

  .sp-navi-list .sub-menu>li {
    font-size: 1.4rem;
    font-weight: var(--medium);
    position: relative;
    padding-left: 16px;
  }

  .sp-navi-list .sub-menu>li::before {
    content: "";
    width: 8px;
    border: 1px solid var(--color_secondary);
    position: absolute;
    top: 14px;
    left: 0;
  }

  .sp-navi-other .item+.item {
    margin: 15px 0 0;
  }

  .sp-navi-other .tel {
    text-align: center;
    color: #333;
    display: block;
    font-size: 23px;
    text-decoration: none;
    line-height: 1;
    margin: 0 0 10px;
  }

  .sp-navi-other .tel i {
    font-size: 15px;
  }

  .sp-navi-other .txt {
    text-align: center;
    font-size: 14px;
    line-height: 1;
  }

  .sp-btn {
    background: var(--sp-btn-color);
    border-radius: 5px;
    color: #fff;
    display: block;
    padding: 10px;
    text-align: center;
    transition: 0.5s;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*ブログ、お知らせ共通*/
.list-under-post li+li {
  margin-top: 60px;
}

.list-under-post .u-h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

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

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

.category-ttl {
  font-size: 3rem;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.category-ttl::before {
  content: "";
  border-bottom: 1px dashed #333;
  width: 38px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.post-layout {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.post-layout .l-img {
  width: 200px;
}

.post-layout .l-img img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}

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

.post-layout time {
  display: inline-block;
  color: #888;
  font-size: 1.3rem;
}

.post-layout .category {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  padding: 5px;
  margin: 0 5px;
}

/*詳細ページ*/
.single-post-layout {
  display: flow-root;
}

.single-post-layout .l-ttl {
  font-size: 2.4rem;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 50px;
  padding-bottom: 10px;
}

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

.single-post-layout .post-data time {
  display: inline-block;
  color: #888;
  font-size: 1.3rem;
  margin-right: 10px;
}

.single-post-layout .post-data .category {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  padding: 5px;
}

.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;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  font-size: 1.3rem;
  line-height: 28px;
  text-align: center;
  width: 30px;
  height: 30px;
  padding-left: 2px;
  transition: 0.3s;
}

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

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

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

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

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

.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: transparent;
  color: var(--color_primary);
}

.post-number .prev,
.post-number .next,
.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number .prev::before,
.post-number .next::before,
.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;
  transition: 0.3s;
}

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

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

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

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

@media (max-width: 800px) {

  /*ブログ、お知らせ共通*/
  .list-under-post li+li {
    margin-top: 30px;
  }

  .list-under-post .u-h3 {
    font-size: 1.8rem;
  }

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

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

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

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

  .category-ttl {
    font-size: 2.4rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }

  .post-layout {
    gap: 15px;
    margin-bottom: 15px;
  }

  .post-layout .l-img {
    width: 120px;
  }

  .post-layout time {
    font-size: 1.2rem;
    line-height: 1;
  }

  .post-layout .l-txt {
    display: inline-block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 1.3rem;
  }

  /*詳細ページ*/
  .single-post-layout .post-data {
    margin-bottom: 10px;
  }

  .single-post-layout .post-data .category {
    margin-right: 5px;
  }

  .single-post-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .post-number-single {
    margin: 50px 0 70px;
  }
}

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

.fs15 {
  font-size: 1.5rem;
}

.en {
  font-family: var(--font_en);
  line-height: 1;
  letter-spacing: 0.1em;
}

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

.color-red {
  color: #F44336;
}

.color-white {
  color: #fff;
}

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

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

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

.mb40 {
  margin-bottom: 40px !important;
}

.mb60 {
  margin-bottom: 60px !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,
.col5 {
  display: grid;
}

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

.col2.center,
.col3.center,
.col4.center,
.col5.center {
  align-items: center;
  justify-items: center;
}

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

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

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

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

.img-circle {
  border-radius: 50%;
}

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

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

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

  .col2 .sp-order1 {
    order: 1;
  }

  .col2 .sp-order2 {
    order: 2;
  }
}

/*ボタン*/
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: var(--medium);
  line-height: 1.5;
  border: 1px solid #aaa;
  min-height: 46px;
  min-width: 240px;
  padding: 10px;
  position: relative;
  transition: 0.3s;
}

.btn-more.small {
  min-width: 160px;
}

.btn-more::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.btn-more:hover {
  background: #aaa;
  color: #fff;
}

.btn-more:hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.btn-more.white {
  color: #fff;
  border: 1px solid #fff;
}

.btn-more.white::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.btn-more.white:hover {
  background: #fff;
  color: var(--color_primary);
}

.btn-more.white:hover::before {
  border-top: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
}

.btn-more.green {
  border: 1px solid var(--color_secondary);
  background: #fff;
}

.btn-more.green::before {
  border-top: 1px solid var(--color_secondary);
  border-right: 1px solid var(--color_secondary);
}

.btn-more.green:hover {
  background: var(--color_secondary);
  color: #fff;
}

.btn-more.green:hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  padding: 10px 20px;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
  min-width: 600px;
  position: relative;
  height: 100px;
  transition: 0.3s;
}

.btn-large::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.btn-large:hover {
  background-color: #fff;
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .btn-large {
    min-width: 100%;
    font-size: 2.0rem;
    height: 70px;
  }
}

.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: 10px;
}

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

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

/*DL*/
.cmn-dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 0 15px;
}

.cmn-dl.white>dt {
  background: #fff;
  color: #333;
}

.cmn-dl>dt {
  background: #E1EDEC;
  font-size: 1.5rem;
  font-weight: var(--medium);
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dl-career {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: baseline;
}

@media (max-width: 800px) {
  .cmn-dl {
    gap: 5px 15px;
  }
}

/*診療カレンダー*/
:root {
  --event01: #C77B7B;
  --event02: #D1A572;
  --event03: #99B581;
  --event04: #6C91AC;
}

.business-calendar-box-wrap {
  border: 1px solid var(--color_border);
  padding: 20px 35px 18px;
}

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

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

.business-calendar-box .business-calendar caption {
  font-size: 1.8rem;
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px solid var(--color_border);
  margin: 0 0 8px;
  padding-bottom: 8px;
  position: relative;
}

.business-calendar-box .business-calendar caption span {
  color: #ccc;
  line-height: 1;
  font-size: 25px;
  vertical-align: -1px;
}

.business-calendar-box .business-calendar-past {
  position: absolute;
  left: 0;
}

.business-calendar-box .business-calendar-future {
  position: absolute;
  right: 0;
}

.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: 25px;
  height: 25px;
}

.business-calendar-box .business-calendar-past a::before,
.business-calendar-box .business-calendar-past a::after,
.business-calendar-box .business-calendar-future a::before,
.business-calendar-box .business-calendar-future a::after {
  content: "";
  width: 8px;
  height: 1px;
  display: inline-block;
  background: #333;
  position: absolute;
  left: 0;
}

.business-calendar-box .business-calendar-past a::before,
.business-calendar-box .business-calendar-future a::before {
  top: calc(50% + 4px);
  transform: rotate(45deg);
}

.business-calendar-box .business-calendar-past a::after,
.business-calendar-box .business-calendar-future a::after {
  bottom: calc(50% - 10px);
  transform: rotate(-45deg);
}

.business-calendar-box .business-calendar-future a::before,
.business-calendar-box .business-calendar-future a::after {
  left: auto;
  right: 0;
}

.business-calendar-box .business-calendar-past a::before {
  top: calc(50% + 4px);
  transform: rotate(-45deg);
}

.business-calendar-box .business-calendar-past a::after {
  bottom: calc(50% - 10px);
  transform: rotate(45deg);
}

.business-calendar-box .business-calendar th {
  color: #888;
  font-size: 1.5rem;
  font-weight: var(--medium);
  text-align: center;
  padding: 5px;
  width: 14%;
}

.business-calendar-box .business-calendar td {
  background-clip: padding-box;
  position: relative;
  font-size: 1.5rem;
  padding: 5px;
  z-index: 0;
}

.business-calendar-box .business-calendar td::before {
  content: "";
  background: #ccc;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

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

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

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

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

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

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

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

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

.list-event li {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 20px 0 0;
}

.list-event i {
  margin: 0 5px 0 0;
}

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

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

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

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

@media (max-width: 800px) {
  .business-calendar-box-wrap {
    padding: 20px;
  }

  .business-calendar-box .business-calendar th {
    font-size: 1.1rem;
  }

  .list-event {
    display: block;
  }

  .list-event li {
    font-size: 1.3rem;
    margin: 0;
  }

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

/*診療時間*/
.time-table {
  border-top: 1px solid var(--color_border);
}

.time-table.white {
  border-top: 1px solid #fff;
}

.time-table.white th,
.time-table.white td {
  color: #fff;
}

.time-table.white th {
  border-bottom: 1px solid #fff;
}

.time-table.white td {
  border-bottom: 1px solid #fff;
}

.time-table th,
.time-table td {
  text-align: center;
  line-height: 1;
  vertical-align: middle;
}

.time-table th {
  border-bottom: 1px solid var(--color_border);
  font-weight: var(--medium);
  padding: 15px 5px;
}

.time-table th:first-child {
  width: 30%;
}

.time-table th:last-child {
  width: 18%;
  padding: 15px 20px 15px 0;
}

.time-table td {
  border-bottom: 1px solid var(--color_border);
  padding: 15px 5px;
}

.time-table td:last-child {
  padding: 15px 20px 15px 0;
}

.time-table.large th:first-child {
  width: 29%;
}

.time-table.large th:last-child {
  width: 12%;
  padding: 15px 10px 15px 0;
}

@media (max-width: 800px) {
  .time-table th {
    font-size: 1.3rem;
    padding: 10px 0;
  }

  .time-table td {
    font-size: 1.3rem;
    padding: 15px 0;
  }

  .time-table td:first-child {
    font-size: 1.4rem;
  }
}

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

.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 */

/*-----------------------------------------------------------
laser
-----------------------------------------------------------*/


/* ▼ レーザー治療：画像3点横並び（2025/05 追加） */
.laser-image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.laser-image-item {
  flex: 0 0 calc(33.333% - 11px);
  /* ← サイズ固定 */
}

.laser-image-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
}

/* --- 追加ここまで --- */

/*-----------------------------------------------------------
doctor
-----------------------------------------------------------*/


/* ▼ ベストドクター */


.sub-heading {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 2em 0 1em;
  border-left: 4px solid #339;
  padding-left: 0.5em;
}

.img-text-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 2em;
}

.img-col {
  flex: 0 0 40%;
}

.img-col img {
  width: 100%;
  height: auto;
  display: block;
}

.text-col {
  flex: 1;
}
