@charset "UTF-8";

:root {
  --color_bg: #F2FAFF;
  --color_text: #333;
  --color_border: #DFDFDF;
  --color_primary: #125784;
  --color_primary_rgb: 18, 87, 132;
  --color_sub01: #B4936A;
  --color_sub01_rgb: 180, 147, 106;
  --color_sub02: #B7D7EB;
  --color_sub02_rgb: 183, 215, 235;
  --color_sub03: #70AED6;
  --color_sub03_rgb: 112, 174, 214;
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "Shippori Mincho B1", serif;
  --font_en: "Allura", cursive;
  --font_medium: 500;
  --font_semibold: 600;
  --easing: cubic-bezier(.12, 1, .5, 1);
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

:where(button) {
  all: unset;
  box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

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

table th {
  font-weight: normal;
}

::selection {
  background: #d4dcd6;
}

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

/*-----------------------------------------------------------
Base
-----------------------------------------------------------*/
body {
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

body.is-hidden {
  display: flow-root;
  overflow: clip;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

th,
dt {
  font-family: var(--font_jp);
}

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

@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;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header.transform .btn-style01 {
  background: var(--color_primary);
}

.header.transform .btn-style01::before {
  background: linear-gradient(to right, #70aed6 0%, #4686af 100%);
}

.header-layout {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  width: 100%;
}

.h-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 5px;
  padding-top: 5px;
}

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

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

  .h-utility {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
/*normal*/
.gnavi-list {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.gnavi-list>li>a {
  display: inline-block;
}

.gnavi-list a {
  font-family: var(--font_jp);
  background: linear-gradient(to right, #70aed6 0%, #4686af 100%) no-repeat bottom right/0 2px;
  transition: background-size 0.3s ease-out;
}

.gnavi-list a:hover {
  background-size: 100% 2px;
  background-position: bottom left;
}

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

.dropdown::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--color_sub03);
  border-right: 1px solid var(--color_sub03);
  width: 8px;
  height: 8px;
  margin: 5px 0 0 5px;
  transform: rotate(45deg);
  transform-origin: right;
}

.dropdown>a {
  background: linear-gradient(#70aed6 0%, #4686af 100%) no-repeat bottom right/0 2px;
  transition: background-size 0.3s ease-out;
}

.dropdown.is-open>a {
  background-size: 100% 2px;
  background-position: bottom left;
}

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

.dropdown .sub-menu {
  display: grid;
  gap: 5px;
  pointer-events: none;
  background-color: rgba(233, 246, 253, 0.9);
  border-radius: 0 0 0 10px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: absolute;
  top: 38px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

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

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

.dropdown .sub-menu>li::before {
  content: "";
  background-color: var(--color_sub03);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 0;
}

.dropdown .sub-menu>li>a {
  padding-bottom: 3px;
}

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero-wrapper {
  position: relative;
  padding-bottom: 76px;
}

.hero-wrapper::before {
  content: "";
  background: linear-gradient(to right, #70aed6 0%, #125784 100%);
  position: absolute;
  inset: 20.388vw 0 0 0;
  z-index: -1;
}

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

.hero .splide {
  max-width: 1600px;
  width: 88.888%;
  margin: 0 auto 100px;
}

.hero .splide__slide img {
  width: 100%;
  aspect-ratio: 1600/830;
  object-fit: cover;
  border-radius: 0 0 30px 30px;
}

.hero .splide__pagination {
  justify-content: flex-end;
  right: 10px;
}

.hero .splide__controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.hero .splide__toggle {
  width: 24px;
  height: 24px;
  background: var(--color_sub03);
  margin-right: 5px;
}

.hero .splide__toggle__play {
  margin-left: 2px;
}

.hero .splide__pagination__page {
  background: #fff;
  border-radius: 1px;
}

.hero .splide__pagination__page.is-active {
  background: var(--color_sub03);
  transform: scale(1);
}

.hero-catch {
  position: absolute;
  bottom: 20px;
  left: 6.5%;
  z-index: 5;
}

.hero-catch .ttl {
  color: #fff;
  font-size: clamp(2rem, 2.666vw, 4.8rem);
  font-family: var(--font_jp);
  font-weight: var(--font_medium);
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 6px rgb(51, 51, 51), 0px 0px 6px rgb(51, 51, 51), 0px 0px 8px rgb(51, 51, 51), 0px 0px 8px rgb(51, 51, 51), 0px 0px 9px rgb(51, 51, 51), 0px 0px 9px rgb(51, 51, 51), 0px 0px 9px rgb(51, 51, 51), 0px 0px 9px rgb(51, 51, 51);
  margin: 0 0 13px 3.888vw;
}

.hero-catch .sub-ttl {
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font_en);
  font-size: clamp(6rem, 8.888vw, 16rem);
  line-height: 1;
  letter-spacing: 0;
}

.scroll {
  position: absolute;
  left: 2.388vw;
  bottom: 5px;
  z-index: 1;
}

.scroll::before {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 152px;
  margin: auto;
  position: absolute;
  top: -168px;
  left: 6px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero-news-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4.555vw;
  min-height: 170px;
  position: relative;
}

.hero-news-layout .t-ttl {
  margin-bottom: 0;
}

.hero-news-layout .t-ttl .jp {
  margin-bottom: 5px;
}

.hero-news-layout .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero-news-layout .btn-more {
  min-width: 160px;
}

.list-hero-news:has(article) {
  border-top: 1px solid var(--color_border);
}

.list-hero-news a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color_border);
  padding: 16px 0 16px 15px;
  transition: background-color 0.3s;
}

.list-hero-news a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.list-hero-news time {
  display: inline-block;
  color: #fff;
  margin-right: 30px;
  flex-shrink: 0;
}

.list-hero-news .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #fff;
  font-size: 1.6rem;
}

.list-hero-news .no-post {
  color: #fff;
}

@media (max-width: 800px) {
  .hero-wrapper {
    padding-bottom: 70px;
  }

  .hero {
    margin-top: 82px;
  }

  .hero .splide {
    width: 100%;
    margin: 0 auto 50px;
  }

  .hero .splide__slide img {
    aspect-ratio: 402/319;
  }

  .hero .splide__controls {
    bottom: 14px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-catch {
    bottom: 40px;
    left: 8%;
  }

  .hero-catch .ttl {
    font-size: clamp(1rem, 5.301vw, 2.2rem);
    margin: 0 0 24px 0;
  }

  .hero-catch .sub-ttl {
    font-size: clamp(2rem, 10.602vw, 4.4rem);
  }

  .scroll {
    left: 7px;
    bottom: -19px;
  }

  .scroll::before {
    height: 62px;
    top: -66px;
    left: 2px;
  }

  .scroll img {
    max-width: 12px;
  }

  .hero-news-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    min-height: 0;
  }

  .hero-news-layout .l-btn {
    position: static;
    text-align: center;
  }

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

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

  .list-hero-news .list-ttl {
    font-size: 1.4rem;
  }
}

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

.t-ttl .jp {
  font-size: 4rem;
  margin-bottom: 10px;
}

.t-ttl [lang=en] {
  color: #4485B0;
  font-size: 3.8rem;
}

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

.t-ttl.white .jp,
.t-ttl.white [lang=en] {
  color: #fff;
}

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

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

  .t-ttl [lang=en] {
    font-size: 2.6rem;
  }
}

/*------------
sec01
--------------*/
.sec01 {
  padding: 140px 0;
}

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

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

.sec02::before {
  content: "";
  border-radius: 30px 0px 0px 30px;
  background: linear-gradient(to right, #70aed6 0%, #125784 100%);
  position: absolute;
  inset: 0 0 0 11.111vw;
  z-index: -1;
}

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

  .sec02::before {
    border-radius: 0;
    inset: 0;
  }
}

/*------------
sec03
--------------*/
.sec03 {
  padding: 140px 0;
}

.sec03-layout {
  display: flex;
  gap: 4.111vw;
  margin-right: -18.5%;
}

.sec03-layout .l-link {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.sec03-layout .l-link a {
  display: grid;
  place-items: center;
  align-content: center;
  background-color: var(--color_bg);
  border-radius: 10px 0 10px 0;
  border: 1px solid var(--color_sub03);
  font-family: var(--font_jp);
  font-size: clamp(1.6rem, 1.222vw, 2.2rem);
  line-height: 1.454;
  letter-spacing: 0.1em;
  text-align: center;
  min-height: 87px;
  padding: 5px 10px;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

.sec03-layout .l-link a::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--color_sub01);
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}

.sec03-layout .l-link .small {
  font-size: clamp(1.4rem, 1vw, 1.8rem);
}

.sec03-layout .l-contents {
  width: 64%;
  max-width: 766px;
}

.sec03-layout .l-contents .slide-item {
  position: relative;
}

.sec03-layout .l-contents .item-img img {
  border-radius: 30px;
}

.sec03-layout .l-contents .item-desc {
  min-width: 330px;
  padding: 17px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.sec03-layout .l-contents .item-desc::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0px 20px 0px 30px;
  background: linear-gradient(to right, #70aed6 0%, #125784 100%);
  opacity: 0.9;
  border-radius: 0px 20px 0px 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec03-layout .l-contents .item-ttl {
  display: grid;
  grid-template-columns: 83px 1fr;
  align-items: center;
  gap: 15px;
  font-family: var(--font_jp);
  font-size: 2.2rem;
  line-height: 1.454;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 5px;
}

.sec03-layout .l-contents .list-check {
  color: #fff;
  gap: 0;
}

.sec03-layout .l-contents .list-check li::before {
  filter: brightness(0) invert(1);
}

.sec03-layout .sp-num,
.sec03-layout .sp-ttl {
  display: none;
}

.sec03-layout .sp-link {
  pointer-events: none;
}

@media (hover: hover) {
  .sec03-layout .l-link a:is(:hover, :focus) {
    background-color: var(--color_sub03);
    color: #fff;
  }
}

@media (max-width: 1700px) {
  .sec03-layout {
    margin-right: -10%;
  }
}

.sec03-layout.is-tablet {
  display: block;
  width: 100%;
  margin-right: 0;
}

.sec03-layout.is-tablet .l-link {
  display: none;
}

.sec03-layout.is-tablet .l-contents {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
}

.sec03-layout.is-tablet .l-contents .splide {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px 20px;
}

.sec03-layout.is-tablet .l-contents .sp-link-inner {
  position: relative;
}

.sec03-layout.is-tablet .l-contents .item-img img {
  border-radius: 10px;
}

.sec03-layout.is-tablet .l-contents .item-desc {
  min-width: 40px;
  padding: 0;
  bottom: 5px;
  left: 5px;
}

.sec03-layout.is-tablet .l-contents .item-desc::before {
  content: none;
}

.sec03-layout.is-tablet .l-contents .item-ttl {
  display: block;
  margin: 0;
}

.sec03-layout.is-tablet .l-contents .item-ttl img {
  max-width: 40px;
}

.sec03-layout.is-tablet .l-contents .pc-ttl {
  display: none;
}

.sec03-layout.is-tablet .l-contents .sp-ttl {
  display: block;
  width: 100%;
  color: var(--color_text);
  font-size: 1.4rem;
  line-height: 1.428;
  text-align: left;
  margin-top: 4px;
  position: relative;
}

.sec03-layout.is-tablet .l-contents .sp-ttl::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--color_sub01);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.sec03-layout.is-tablet .sp-num {
  display: inline-block;
  color: var(--color_sub03);
  font-family: var(--font_jp);
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  top: -17px;
  left: 0;
}

.sec03-layout.is-tablet .sp-link {
  pointer-events: auto;
}

.sec03-layout.is-tablet .list-check {
  display: none;
}

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

  .sec03-layout {
    display: block;
    width: 100%;
    margin-right: 0;
  }

  .sec03-layout .l-link {
    display: none;
  }

  .sec03-layout .l-contents {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }

  .sec03-layout .l-contents .splide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }

  .sec03-layout .l-contents .sp-link-inner {
    position: relative;
  }

  .sec03-layout .l-contents .item-img img {
    border-radius: 10px;
  }

  .sec03-layout .l-contents .item-desc {
    min-width: 40px;
    padding: 0;
    bottom: 5px;
    left: 5px;
  }

  .sec03-layout .l-contents .item-desc::before {
    content: none;
  }

  .sec03-layout .l-contents .item-ttl {
    display: block;
    margin: 0;
  }

  .sec03-layout .l-contents .item-ttl img {
    max-width: 40px;
  }

  .sec03-layout .l-contents .pc-ttl {
    display: none;
  }

  .sec03-layout .l-contents .sp-ttl {
    display: block;
    width: 100%;
    color: var(--color_text);
    font-size: 1.4rem;
    line-height: 1.428;
    text-align: left;
    margin-top: 4px;
    position: relative;
  }

  .sec03-layout .l-contents .sp-ttl::before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--color_sub01);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .sec03-layout .sp-num {
    display: inline-block;
    color: var(--color_sub03);
    font-family: var(--font_jp);
    font-size: 3rem;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    top: -17px;
    left: 0;
  }

  .sec03-layout .sp-link {
    pointer-events: auto;
  }

  .sec03-layout .list-check {
    display: none;
  }
}

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

.sec04::before {
  content: "";
  border-radius: 0px 30px 30px 0px;
  background: linear-gradient(to right, #70aed6 0%, #125784 100%);
  position: absolute;
  inset: 0 11.111vw 0 0;
  z-index: -1;
}

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

  .sec04::before {
    inset: 0;
    border-radius: 0;
  }
}

/*------------
sec05
--------------*/
.sec05 {
  padding: 140px 0;
}

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

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

.sec06::before {
  content: "";
  border-radius: 30px 0px 0px 30px;
  background: linear-gradient(to right, #70aed6 0%, #125784 100%);
  position: absolute;
  inset: 0 0 0 11.111vw;
  z-index: -1;
}

.sec06 .container {
  position: relative;
}

.sec06-btn {
  position: absolute;
  top: 67px;
  right: 20px;
}

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

@media (max-width: 1500px) {
  .sec06::before {
    inset: 0 0 0 5%;
  }
}

@media (max-width: 1200px) {
  .sec06::before {
    inset: 0 0 0 2.5%;
  }
}

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

  .sec06::before {
    inset: 0;
    border-radius: 0;
  }

  .sec06-btn {
    position: static;
    margin-top: 30px;
  }
}

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

.sec07-btn {
  margin-top: 35px;
}

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

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

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

.top-layout01 .l-img {
  width: 57%;
  height: 100%;
  position: relative;
}

.top-layout01 .l-img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--color_sub01);
  border-radius: 30px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  pointer-events: none;
}

.top-layout01 .l-img img {
  border-radius: 30px;
}

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

.top-layout01.reverse {
  flex-direction: row-reverse;
  margin: 0 -17% 0 0;
}

.top-layout01 .l-ttl {
  font-size: 2.8rem;
  padding-bottom: 17px;
  margin-bottom: 45px;
  position: relative;
}

.top-layout01 .l-ttl::before, .top-layout01 .l-ttl::after {
  content: "";
  width: 60px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  left: 0;
}

.top-layout01 .l-ttl::before {
  background-color: var(--color_sub01);
  bottom: 0;
}

.top-layout01 .l-ttl::after {
  background-color: var(--color_sub03);
  bottom: 6px;
}

.top-layout01 .l-txt {
  margin-bottom: 50px;
}

.top-layout02 {
  display: flex;
  gap: 42px;
  margin: 0 -10% 0 0;
}

.top-layout02 .l-img {
  width: 54.5%;
  height: 100%;
  position: relative;
}

.top-layout02 .l-img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--color_sub01);
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  pointer-events: none;
}

.top-layout02 .l-img img {
  border-radius: 20px;
}

.top-layout02 .l-desc {
  max-width: 540px;
  flex: 1;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 50px 45px;
}

.top-layout02.reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.top-layout02.reverse .l-img::before {
  left: -10px;
}

.top-layout02 .l-num {
  color: var(--color_sub01);
  font-family: var(--font_jp);
  font-size: 6.4rem;
  font-weight: bold;
  line-height: 1.5;
  width: fit-content;
  margin-bottom: 25px;
  position: relative;
}

.top-layout02 .l-num::before {
  content: "";
  position: absolute;
  bottom: -26px;
  right: -23px;
  width: 40px;
  height: 73px;
  border-left: 1px solid var(--color_sub01);
  rotate: 45deg;
  background-color: #fff;
}

.top-layout02 .l-ttl {
  font-size: 2.8rem;
  margin-bottom: 23px;
}

.top-layout02 .list-disc {
  gap: 0;
}

.top-layout02 .list-disc li {
  line-height: 1.875;
}

.top-layout02 .list-disc li::before {
  background-color: var(--color_sub01);
  top: 13px;
}

.top-layout02+.top-layout02 {
  margin-top: 105px;
}

.top-layout03 {
  display: flex;
  gap: 3.277vw;
  margin: 0 0 0 -8%;
}

.top-layout03 .l-img {
  width: 53.5%;
  height: 100%;
  position: relative;
}

.top-layout03 .l-img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--color_sub01);
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  pointer-events: none;
}

.top-layout03 .l-img img {
  border-radius: 20px;
}

.top-layout03 .l-desc {
  flex: 1;
  border-radius: 20px;
  background: var(--color_bg);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 58px 50px 70px;
  margin-top: 33px;
}

.top-layout03.reverse {
  flex-direction: row-reverse;
  margin: 0 -8% 0 0;
}

.top-layout03 .l-ttl {
  font-size: 2.8rem;
  margin-bottom: 35px;
}

.top-layout03 .l-en {
  color: var(--color_sub03);
  font-size: 4rem;
  margin-bottom: 13px;
}

.top-layout03 .l-txt {
  margin-bottom: 35px;
}

.top-layout04 {
  display: grid;
  grid-template-columns: 1fr 384px;
  gap: 25px;
  margin: 0 -8% 0 0;
}

.top-layout04 .l-map iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  border-radius: 30px;
}

.top-layout04 .l-desc {
  border-radius: 30px;
  background: var(--color_bg);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 48px 55px 67px;
}

.top-layout04 .item {
  display: grid;
  align-items: center;
  grid-template-columns: 38px 1fr;
  gap: 10px;
}

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

@media (max-width: 1500px) {
  .top-layout02 {
    margin: 0 -5% 0 0;
  }

  .top-layout04 {
    margin-right: -5%;
  }
}

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

  .top-layout01 .l-img {
    width: 90%;
    margin-inline: auto;
  }

  .top-layout01.reverse {
    flex-direction: column;
    margin: 0 -5vw;
  }

  .top-layout01 .l-desc {
    padding: 0 5vw;
  }

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

  .top-layout01 .l-txt {
    margin-bottom: 30px;
  }

  .top-layout02 {
    flex-direction: column;
    gap: 30px;
    margin: 0 -5vw;
  }

  .top-layout02 .l-img {
    width: 90%;
    margin-inline: auto;
  }

  .top-layout02.reverse {
    flex-direction: column;
    margin: 0 -5vw;
  }

  .top-layout02 .l-desc {
    max-width: 100%;
    width: 90%;
    margin-inline: auto;
    padding: 15px 5% 30px;
  }

  .top-layout02 .l-num {
    font-size: 5rem;
    margin-bottom: 15px;
  }

  .top-layout02 .l-num::before {
    bottom: -23px;
    right: -22px;
    height: 55px;
  }

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

  .top-layout02 .list-disc li::before {
    top: 11px;
  }

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

  .top-layout03 {
    flex-direction: column;
    gap: 30px;
    margin: 0 -5vw;
  }

  .top-layout03 .l-img {
    width: 90%;
    margin-inline: auto;
  }

  .top-layout03.reverse {
    flex-direction: column;
    margin: 0 -5vw;
  }

  .top-layout03 .l-desc {
    width: 90%;
    padding: 30px 5%;
    margin: 0 auto;
  }

  .top-layout03 .l-en {
    font-size: 3rem;
    margin-bottom: 10px;
  }

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

  .top-layout03 .l-txt {
    margin-bottom: 30px;
  }

  .top-layout04 {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0;
  }

  .top-layout04 .l-map iframe {
    height: 300px;
  }

  .top-layout04 .l-desc {
    width: 100%;
    padding: 30px;
    margin: 0 auto;
  }

  .top-layout04 .item {
    grid-template-columns: 25px 1fr;
  }

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

/*------------
Card
--------------*/
.top-card01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.top-card01 .card-img {
  margin-bottom: 25px;
}

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

.top-card01 .card-ttl {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 25px;
}

.top-card01 .card-txt {
  color: #fff;
  padding: 0 20px;
  margin-bottom: 45px;
}

.top-card01 .btn-more {
  min-width: 220px;
}

@media (max-width: 800px) {
  .top-card01 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .top-card01 .card-img {
    margin-bottom: 15px;
  }

  .top-card01 .card-ttl {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .top-card01 .card-txt {
    margin-bottom: 30px;
    padding: 0;
  }
}

/*------------
Post
--------------*/
.list-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(241px, 1fr));
  gap: 20px;
}

.list-top-blog .list-img {
  border-radius: 10px;
  margin-bottom: 22px;
  overflow: hidden;
}

.list-top-blog .list-img img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 241/164;
  border-radius: 10px;
  transition: transform 0.5s;
}

.list-top-blog time {
  color: #fff;
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 10px;
}

.list-top-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.list-top-blog .category {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
}

.list-top-blog .category+.category::before {
  content: "/";
  display: block;
}

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

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

.list-top-blog .no-post {
  color: #fff;
  grid-area: 1/1/2/5;
}

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

  .top-post-layout01:not(:has(.no-post))::before {
    content: "横にスクロールできます。";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/20px;
    min-height: 16px;
    color: #fff;
    font-size: 1.4rem;
    padding: 0 0 0 30px;
    margin-bottom: 5px;
    filter: brightness(0) invert(1);
  }

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

  .list-top-blog article {
    flex: 0 0 241px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }
}

/*------------
POP UP
--------------*/
.fixed-popup {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.76);
  transition: 0.5s;
}

.fixed-popup .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 110;
  border-radius: 30px;
  padding: 60px;
  background-color: #fff;
  max-width: 1024px;
  width: 90%;
  overflow-y: auto;
  max-height: 90%;
}

.fixed-popup .ttl {
  font-size: 3.7rem;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color_sub03);
  margin-bottom: 35px;
}

.fixed-popup p+p {
  margin-top: 30px;
}

.popup-close {
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 27px;
  right: 27px;
  z-index: 1;
}

.popup-close::before {
  content: "";
  display: block;
  background: #333;
  width: 27px;
  height: 1px;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-close::after {
  content: "";
  display: block;
  background: #333;
  width: 27px;
  height: 1px;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 800px) {
  .fixed-popup .inner {
    padding: 30px 25px;
  }

  .fixed-popup .ttl {
    font-size: 2.5rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .fixed-popup p+p {
    margin-top: 15px;
  }

  .popup-close {
    top: 20px;
    right: 20px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl-wrapper {
  position: relative;
  margin-top: 100px;
  padding-bottom: min(4.444vw, 80px);
}

.page-ttl-wrapper::before {
  content: "";
  background: linear-gradient(to right, #70aed6 0%, #125784 100%);
  position: absolute;
  inset: 12.333vw 0 0 0;
  z-index: -3;
}

.page-ttl {
  display: grid;
  align-items: center;
  max-width: 1600px;
  width: 90%;
  aspect-ratio: 1600/510;
  margin: 0 auto;
  padding: 30px 5% 30px 8.611vw;
  color: #fff;
  font-size: clamp(2rem, 2.666vw, 4.8rem);
  font-family: var(--font_jp);
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.1em;
  position: relative;
}

.page-ttl::before {
  content: "";
  background: url(../images/under/page-ttl.jpg) no-repeat center/cover;
  width: 100%;
  height: 100%;
  border-radius: 0 0 30px 30px;
  opacity: 0.6;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-ttl::after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  border-radius: 0 0 30px 30px;
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.breadcrumb ul a {
  text-decoration: underline;
}

.breadcrumb ul a:hover {
  text-decoration: none;
}

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

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

  .page-ttl {
    min-height: 160px;
    font-size: 2.2rem;
    padding: 30px 15px;
  }

  .page-ttl::before, .page-ttl::after {
    aspect-ratio: auto;
    height: 100%;
  }

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

.u-h2,
.postdata h2 {
  font-size: 4rem;
  text-align: center;
  padding-bottom: 17px;
  margin-bottom: 50px;
  position: relative;
}

.u-h2::before, .u-h2::after,
.postdata h2::before,
.postdata h2::after {
  content: "";
  width: 60px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.u-h2::before,
.postdata h2::before {
  background-color: var(--color_sub01);
  bottom: 0;
}

.u-h2::after,
.postdata h2::after {
  background-color: var(--color_sub03);
  bottom: 6px;
}

.u-h2.mb-large,
.postdata h2.mb-large {
  margin-bottom: 60px;
}

.u-h3,
.postdata h3 {
  font-size: 2.8rem;
  border-bottom: 1px solid #D4D4D4;
  padding-bottom: 7px;
  margin-bottom: 30px;
}

.u-h3.mb-large,
.postdata h3.mb-large {
  margin-bottom: 40px;
}

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

.u-h4::before,
.postdata h4::before {
  content: "";
  background-color: #1C608D;
  width: 3px;
  height: 17px;
  position: absolute;
  top: 11px;
  left: 0;
}

.u-h5,
.postdata h5 {
  color: var(--color_primary);
  font-size: 1.8rem;
  padding-left: 20px;
  margin-bottom: 15px;
  position: relative;
}

.u-h5::before,
.postdata h5::before {
  content: "";
  background-color: var(--color_primary);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}

.u-catch {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 800px) {

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

  .u-h2.mb-large,
  .postdata h2.mb-large {
    margin-bottom: 40px;
  }

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

  .u-h3.mb-large,
  .postdata h3.mb-large {
    margin-bottom: 30px;
  }

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

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

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

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

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

.short.large+.large {
  margin-top: 70px;
}

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

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

.hidden {
  overflow: hidden;
}

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

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

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

  .short.large+.large {
    margin-top: 45px;
  }
}

.u-img {
  display: flex;
  justify-content: center;
}

.l-style01 .l-img,
.l-style01 .under-slider02 {
  margin-bottom: 55px;
}

.l-style01 .l-img img {
  border-radius: 30px;
}

.l-style01 .l-ttl {
  color: var(--color_primary);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 30px;
}

.l-style01 .l-catch {
  font-family: var(--font_jp);
  font-size: 4rem;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 45px;
}

.l-style02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-direction: row-reverse;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 50px 50px 55px;
  position: relative;
}

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

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

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

.l-style02 .l-catch {
  color: #4485B0;
  font-size: 3.8rem;
  position: absolute;
  top: -14px;
  left: 30px;
  z-index: 1;
}

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

.l-style03 {
  display: flex;
  gap: 3.888vw;
  margin: 0 0 0 -17%;
}

.l-style03 .l-img {
  width: 57%;
  height: 100%;
  position: relative;
}

.l-style03 .l-img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--color_sub01);
  border-radius: 30px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  pointer-events: none;
}

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

.l-style03 .l-desc {
  flex: 1;
  padding-top: 33px;
}

.l-style03.reverse {
  flex-direction: row-reverse;
  margin: 0 -17% 0 0;
}

.l-style03 .l-ttl {
  font-size: 2.8rem;
  padding-bottom: 17px;
  margin-bottom: 45px;
  position: relative;
}

.l-style03 .l-ttl::before, .l-style03 .l-ttl::after {
  content: "";
  width: 60px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  left: 0;
}

.l-style03 .l-ttl::before {
  background-color: var(--color_sub01);
  bottom: 0;
}

.l-style03 .l-ttl::after {
  background-color: var(--color_sub03);
  bottom: 6px;
}

.l-style04 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-direction: row-reverse;
  border-radius: 20px;
  background-color: var(--color_bg);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 50px 50px 55px;
  position: relative;
}

.l-style04 .l-img {
  width: 31.5%;
}

.l-style04 .l-img img {
  border-radius: 10px;
}

.l-style04 .l-desc {
  flex: 1;
}

.l-style04 .l-catch {
  color: #4485B0;
  font-size: 3.8rem;
  position: absolute;
  top: -14px;
  left: 40px;
  z-index: 1;
}

.l-style04 .l-ttl {
  font-size: 2.2rem;
  margin-bottom: 23px;
}

.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-style01 .l-img,
  .l-style01 .under-slider02 {
    margin-bottom: 30px;
  }

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

  .l-style01 .l-catch {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .l-style02 {
    flex-direction: column;
    gap: 30px;
    padding: 30px 5%;
  }

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

  .l-style02 .l-catch {
    font-size: 3.4rem;
    top: -14px;
    left: 15px;
  }

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

  .l-style03 {
    flex-direction: column;
    gap: 30px;
    margin: 0;
  }

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

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

  .l-style03 .l-desc {
    padding-top: 0;
  }

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

  .l-style04 {
    flex-direction: column;
    gap: 30px;
    padding: 30px 5%;
  }

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

  .l-style04 .l-catch {
    font-size: 3.4rem;
    top: -13px;
    left: 15px;
  }

  .l-style04 .l-ttl {
    font-size: 1.8rem;
    margin-bottom: 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%;
  }
}

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

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

.list-disc li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color_primary);
  position: absolute;
  top: 10px;
  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-size: 1.1rem;
  line-height: 1.8;
  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: 28px;
  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;
}

.payment-list {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.payment-list img {
  max-width: 100px;
  width: 100%;
  max-height: 50px;
  height: 100%;
  object-fit: contain;
}

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

  .list-num>li:before {
    top: 4px;
  }

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

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

  .payment-list {
    gap: 15px;
  }
}

.tel-layout01 {
  background: var(--color_bg);
  border-radius: 20px;
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout01 .tel-btn-wrap {
  margin-bottom: 30px;
}

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

.tel-layout01 .l-tel {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: var(--font_jp);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.tel-layout01 .l-tel img {
  padding-top: 7px;
}

.tel-layout01 .l-time {
  display: grid;
  gap: 10px;
  line-height: 1.5;
  margin: 20px auto 0;
  width: fit-content;
}

.tel-layout01 .l-time .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: baseline;
  gap: 10px;
}

.tel-layout01 .l-time dt {
  border: 1px solid var(--color_sub03);
  border-radius: 3px;
  text-align: center;
  background-color: var(--color_sub03);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tel-layout02 {
  background: var(--color_bg);
  border-radius: 20px;
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

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

.tel-layout02 .wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.tel-layout02 .l-tel {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 35px;
  line-height: 1;
}

.tel-layout02 .l-time {
  display: grid;
  gap: 10px;
  line-height: 1.5;
}

.tel-layout02 .l-time .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: baseline;
  gap: 10px;
}

.tel-layout02 .l-time dt {
  border: 1px solid var(--color_sub03);
  border-radius: 3px;
  text-align: center;
  font-size: 1.2rem;
  background-color: var(--color_sub03);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout01 .l-ttl {
    font-size: 1.6rem;
    margin: 0 auto 25px;
  }

  .tel-layout02 .l-ttl {
    font-size: 1.6rem;
    margin: 0 auto 25px;
  }

  .tel-layout02 .wrapper {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }

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

.card-style01 {
  gap: 16px;
}

.card-style01>li {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 25px;
}

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

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

.card-style01 .under-slider02 .item-img img {
  border-radius: 10px;
}

.card-style01 .card-ttl {
  color: var(--color_primary);
  font-size: 2rem;
  margin-bottom: 15px;
}

.card-style02 {
  gap: 16px;
}

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

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

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

.card-style02 .card-ttl {
  font-size: 2rem;
  margin-bottom: 15px;
}

.card-style03 {
  gap: 20px;
}

.card-style03>li {
  background-color: var(--color_bg);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.card-style03 .card-num {
  color: var(--color_sub03);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.card-style03 .card-num span {
  font-size: 1.8rem;
  margin-left: 5px;
}

.card-style03 .card-ttl {
  font-size: 2rem;
  line-height: 1.5;
}

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

  .card-style01 .card-ttl {
    font-size: 1.8rem;
  }

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

  .card-style02 .card-ttl {
    font-size: 1.8rem;
  }

  .card-style03 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card-style03>li {
    border-radius: 15px;
    padding: 15px;
  }

  .card-style03 .card-num {
    font-size: 10px;
  }

  .card-style03 .card-num span {
    font-size: 16px;
  }

  .card-style03 .card-ttl {
    font-size: 15px;
  }
}

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

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

.flow-style01>li:not(:last-child)::before {
  content: "";
  background-color: var(--color_sub03);
  width: 1px;
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 33px;
}

.flow-style01>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: var(--color_primary) transparent transparent transparent;
  position: absolute;
  bottom: -1px;
  left: 28px;
}

.flow-style01 .flow-num {
  font-size: 3rem;
  font-family: var(--font_jp);
  font-weight: bold;
  color: var(--color_sub03);
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

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

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

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

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

.flow-style01 .flow-desc {
  flex: 1;
  padding-top: 10px;
}

.flow-style01 .flow-ttl {
  font-size: 2rem;
  margin-bottom: 15px;
}

.flow-style02 {
  gap: 30px;
}

.flow-style02>li {
  background: var(--color_bg);
  border-radius: 10px;
  padding: 25px;
  position: relative;
}

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

.flow-style02 .flow-num {
  background: var(--color_primary);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font_jp);
  font-weight: bold;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

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

.flow-style02 .flow-img {
  margin-bottom: 20px;
}

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

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

  .flow-style01>li {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

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

  .flow-style01>li:not(:last-child)::after {
    left: 20px;
  }

  .flow-style01 .flow-num {
    font-size: 2.5rem;
  }

  .flow-style01 .flow-num::before {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

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

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

  .flow-style01 .flow-ttl {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .flow-style01 .flow-desc {
    padding-top: 0;
  }

  .flow-style02 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

.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: #ccc;
  width: 1px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  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;
    top: 2px;
  }
}

.faq-style {
  border-bottom: 1px solid #ccc;
  transition: 0.3s;
}

.faq-style+.faq-style {
  border-top: 1px solid #ccc;
  margin-top: -1px;
}

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

.faq-style .faq-summary .faq-icon {
  top: 13px;
  left: 0;
}

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

.faq-style .faq-summary:hover .faq-icon {
  border-color: var(--color_primary);
  background-color: var(--color_primary);
  color: #fff;
}

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

.faq-style .faq-inner {
  padding: 5px 50px 30px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  border: 1px solid var(--color_sub01);
  background-color: var(--color_sub01);
  color: #fff;
  top: 4px;
  left: 0;
}

.faq-style .faq-ttl {
  font-size: 1.6rem;
  font-weight: var(--font_medium);
}

.faq-style .faq-icon {
  border: 1px solid #ccc;
  border-radius: 50px;
  color: #333;
  font-size: 1.7rem;
  font-weight: bold;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  padding-left: 1px;
  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: var(--color_sub03);
  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.is-open .faq-summary .faq-icon {
  border-color: var(--color_primary);
  background-color: var(--color_primary);
  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 .faq-summary {
    padding: 18px 35px 18px 50px;
  }

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

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

  .faq-style .faq-inner .faq-icon {
    top: 1px;
  }

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

  .faq-style .list-num li:before {
    top: 1px;
  }
}

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

.table-style01 th {
  background: var(--color_bg);
  text-align: left;
}

.table-style01 th.tac,
.table-style01 td.tac {
  text-align: center;
}

.table-style01.all-tac th,
.table-style01.all-tac td {
  text-align: center;
}

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

.table-style02 th,
.table-style02 td {
  padding: 10px;
  border: 1px solid var(--color_border);
  vertical-align: middle;
  text-align: left;
}

.table-style02 th {
  background: var(--color_primary);
  color: #fff;
}

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

.table-style02 th.tac,
.table-style02 td.tac {
  text-align: center;
}

.table-style02.all-tac th,
.table-style02.all-tac td {
  text-align: center;
}

.table-style03 th,
.table-style03 td {
  padding: 10px;
  border: 1px solid var(--color_border);
  vertical-align: middle;
  text-align: left;
}

.table-style03 th {
  background: var(--color_primary);
  color: #fff;
}

.table-style03 th.tac,
.table-style03 td.tac {
  text-align: center;
}

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

.table-style03 th.bg02,
.table-style03 td.bg02 {
  background: #B7D7EB;
}

.table-style03.all-tac th,
.table-style03.all-tac td {
  text-align: center;
}

.table-style03.small th,
.table-style03.small td, .table-style03.pc-small th,
.table-style03.pc-small td {
  font-size: 1.4rem;
  line-height: 1.5;
}

.table-style03.small .list-disc li, .table-style03.pc-small .list-disc li {
  padding-left: 12px;
}

.table-style03.small .list-disc li::before, .table-style03.pc-small .list-disc li::before {
  top: 8px;
}

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

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

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

  .table-style01.sp-block td {
    border: none;
  }

  .table-style02.sp-block {
    border-bottom: 1px solid var(--color_border);
  }

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

  .table-style02.sp-block th,
  .table-style02.sp-block td {
    display: block;
    border-bottom: none;
  }

  .table-style03.small th,
  .table-style03.small td {
    font-size: 1.2rem;
  }

  .table-style03.sp-block {
    border-bottom: 1px solid var(--color_border);
  }

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

  .table-style03.sp-block th,
  .table-style03.sp-block td {
    display: block;
    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%;
  }

  .table-scroll.large table {
    width: 250%;
  }
}

.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-img figcaption {
  font-family: var(--font_jp);
  font-weight: var(--font_medium);
  color: var(--color_sub03);
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
}

.staff-layout .l-img .job {
  display: block;
  font-size: 1.4rem;
}

.staff-layout .l-img .name {
  font-size: 2rem;
}

.staff-layout .l-img .kana {
  font-size: 1.1rem;
}

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

.staff-layout .l-ttl {
  color: var(--color_primary);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.staff-layout .l-message {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.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: 5px;
  padding: 30px;
}

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

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

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

@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-img figcaption {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

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

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

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

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

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

.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-img img {
  border-radius: 30px;
}

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

.under-slider01 .item-ttl {
  color: var(--color_primary);
  font-size: 1.8rem;
}

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

.under-slider02 .item-img img {
  border-radius: 30px;
}

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

.under-slider02 .splide__pagination__page {
  background: #fff;
}

.under-slider02 .splide__pagination__page.is-active {
  background: var(--color_primary);
  transform: scale(1.3);
}

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

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

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

.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;
  padding: 20px;
  border-radius: 10px 0 0 10px;
}

.dl-style01 dd {
  background: var(--color_bg);
  font-size: 15px;
  padding: 20px;
  border-radius: 0 10px 10px 0;
}

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

  .dl-style01 dt {
    border-radius: 10px 10px 0 0;
    padding: 15px;
  }

  .dl-style01 dd {
    border-radius: 0 0 10px 10px;
    padding: 15px;
  }
}

.box-style01 {
  background: var(--color_bg);
  border-radius: 30px;
  padding: 5%;
}

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

.box-style02 {
  background: var(--color_bg);
  border-radius: 30px;
  padding: 40px;
}

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

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

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

  .box-style02 {
    padding: 30px;
  }
}

.calculation-ttl {
  color: var(--color_primary);
  font-size: 1.8rem;
  font-weight: var(--font_medium);
  margin-bottom: 10px;
}

.calculation-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 35px;
}

.calculation-layout .item {
  background-color: var(--color_bg);
  border-radius: 4px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 80px;
  position: relative;
}

.calculation-layout .item+.item::before {
  content: "ー";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
}

.calculation-layout .item:last-child {
  background-color: var(--color_primary);
  color: #fff;
  width: 100%;
}

.calculation-layout .item:last-child::before {
  content: "=";
  color: var(--color_text);
  left: -23px;
}

@media (max-width: 800px) {
  .calculation-layout {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }

  .calculation-layout .item+.item::before {
    left: 25px;
  }

  .calculation-layout .item:last-child::before {
    color: #fff;
    left: 25px;
  }
}

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

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

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

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

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px dashed var(--color_sub02);
  font-size: 1.8rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

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

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

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

.f-layout .container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: min(7.222vw, 130px);
}

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

.f-address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.site-map {
  display: flex;
  gap: min(4.444vw, 79px);
}

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

.f-links>li {
  font-family: var(--font_jp);
  padding-left: 16px;
  position: relative;
}

.f-links>li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color_sub03);
  position: absolute;
  top: 14px;
  left: 0;
}

.f-links .sub-menu {
  display: grid;
  gap: 5px;
  margin-top: 5px;
}

.f-links .sub-menu>li {
  font-family: var(--font_jp);
  padding-left: 16px;
  position: relative;
}

.f-links .sub-menu>li::before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: var(--color_sub03);
  position: absolute;
  top: 17px;
  left: 0;
}

.f-links a {
  background: linear-gradient(to right, #70aed6 0%, #4686af 100%) no-repeat bottom right/0 2px;
  transition: background-size 0.3s ease-out;
  padding-bottom: 2px;
}

@media (hover: hover) {
  .f-links a:hover {
    background-size: 100% 2px;
    background-position: bottom left;
  }
}

.copyright {
  background-color: var(--color_sub03);
  color: #fff;
  font-family: var(--font_jp);
  line-height: 1;
  text-align: center;
  padding: 5px 10px 9px;
}

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

.pagetop {
  position: absolute;
  bottom: 44px;
  right: 26px;
  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: 60px 0 50px;
  }

  .pagetop {
    display: none;
  }
}

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

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

  .f-layout .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .site-map {
    gap: 5px;
  }

  .f-links {
    gap: 5px;
  }

  .f-links>li {
    padding-left: 12px;
  }

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

  .f-links .sub-menu>li {
    padding-left: 12px;
  }

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

  .f-links a {
    font-size: 1.4rem;
  }
}

.fixed-menu {
  border-radius: 4px 0 0 4px;
  display: flex;
  align-items: start;
  position: fixed;
  top: 50%;
  right: 0;
  transition: transform 0.5s;
  transform: translate(400px, -50%);
  z-index: 10;
}

.fixed-menu:hover {
  transform: translate(0, -50%);
}

.fixed-menu .ttl {
  background-color: var(--color_sub01);
  color: #fff;
  border-radius: 4px 0 0 4px;
  display: flex;
  align-items: center;
  font-family: var(--font_jp);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  line-height: 1;
  white-space: nowrap;
  font-feature-settings: normal;
  padding: 27px 0;
  width: 53px;
}

.fixed-menu .ttl i {
  margin-bottom: 12px;
}

.fixed-menu .inner {
  background-color: #F8F1E7;
  /* display: grid;
  place-items: center; */
  padding: 30px;
  width: 400px;
}

.fixed-menu .txt {
  line-height: 1.625;
  text-align: center;
  margin-bottom: 27px;
}

.fixed-menu .wrapper {
  display: grid;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.fixed-menu .tel-btn {
  grid-template-columns: 23px 1fr;
}

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

.sp-navi {
  display: none;
}

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

  :root {
    --navi-background: linear-gradient(to right, #70aed6 0%, #125784 100%);
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --navi-font: var(--font_jp);
  }

  /* ボタン類 */
  .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: 1rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item:first-child a {
    padding: 5px 0;
  }

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

  .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 {
    filter: brightness(0) invert(1);
    margin-bottom: 4px;
  }

  .sp-navi-btns .item .ttl {
    display: block;
    font-family: var(--navi-font);
    font-weight: bold;
    line-height: 1.2;
  }

  .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-family: var(--navi-font);
    font-weight: bold;
    font-size: 1rem;
    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;
    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-family: var(--font_jp);
    font-size: 1.5rem;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }

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

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

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

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

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

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

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

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

  .sp-navi-list .child>ul>li::before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: var(--color_sub03);
    position: absolute;
    top: 13px;
    left: 0;
  }

  .sp-navi-list .child>ul>li>a {
    display: inline-block;
    font-size: 1.4rem;
    text-decoration: none;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*通常投稿*/
.list-under-post article+article {
  margin-top: 50px;
}

.list-under-post .inner {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.list-under-post .list-img {
  width: 40%;
  max-width: 250px;
  height: 100%;
  flex-shrink: 0;
  border: 1px solid var(--color_border);
  border-radius: 10px;
}

.list-under-post .list-img img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 241/164;
  border-radius: 10px;
}

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

.list-under-post .list-ttl {
  border-bottom: 1px dashed var(--color_sub02);
  font-size: 2rem;
  margin: 0 0 20px;
}

.list-under-post .list-ttl a {
  display: block;
  padding-bottom: 10px;
}

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

.list-under-post .post-data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 0;
  margin-bottom: 5px;
}

.list-under-post time {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 10px;
}

.list-under-post .category {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--color_primary);
  font-size: 1.4rem;
  line-height: 1.5;
  margin-right: 3px;
}

.list-under-post .category+.category::before {
  content: "/";
  display: block;
}

@media screen and (max-width: 800px) {
  .list-under-post article+article {
    margin-top: 30px;
  }

  .list-under-post .inner {
    gap: 15px;
    margin-bottom: 15px;
  }

  .list-under-post time {
    width: 100%;
    margin-right: 0;
    font-size: 1.2rem;
  }

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

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

  .list-under-post .list-txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 1.3rem;
  }

  .list-under-post .btn-more {
    font-size: 1.4rem;
    min-height: 40px;
    padding: 5px 10px;
  }
}

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

.list-under-news a {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--color_border);
  padding: 20px 0;
  transition: background-color 0.3s;
}

.list-under-news time {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

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

@media (hover: hover) {
  .list-under-news a:hover {
    background-color: rgba(var(--color_sub02_rgb), 0.3);
  }
}

@media screen and (max-width: 800px) {
  .list-under-news a {
    display: block;
    padding: 15px 0 10px;
  }

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

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

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

.select-area .select-ttl {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  background: url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--color_text);
  color: var(--color_text);
  font-size: 1.6rem;
  line-height: 1.5;
  vertical-align: middle;
  min-width: 150px;
  padding: 5px 20px 5px 0;
  flex: 1;
}

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

.select-area .select-category-button {
  appearance: none;
  border-radius: 0;
  display: inline-block;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color_primary);
  border-radius: 50px;
  color: var(--color_primary);
  padding: 8px 20px 10px;
  margin-top: 3px;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  flex: 0 0 75px;
}

@media (hover: hover) {
  .select-area .select-category-button:is(:hover, :focus) {
    background: var(--color_primary);
    color: #fff;
  }
}

@media (max-width: 800px) {
  .select-area {
    display: block;
    margin: 0 0 30px;
  }

  .select-area .select-item {
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }

  .select-area .select-item+.select-item {
    margin-top: 40px;
  }

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

/*詳細ページ*/
.single-post-layout {
  display: flow-root;
  border-bottom: 1px solid #eee;
  padding-bottom: 50px;
}

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

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

.single-post-layout .post-data time {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 20px;
}

.single-post-layout .post-data .category {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--color_primary);
  font-size: 1.4rem;
  line-height: 1.5;
  margin-right: 3px;
}

.single-post-layout .post-data .category+.category::before {
  content: "/";
  display: block;
}

.postdata {
  /*WP必須クラス*/
  overflow-wrap: break-word;
  /*スタイルの調整が必要*/
}

.postdata .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
  background-color: #eee;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

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

.postdata a {
  text-decoration: underline;
}

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

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  position: relative;
  padding-left: 15px;
}

.postdata ul li::before {
  content: "";
  background: var(--color_primary);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 15px;
  width: 5px;
  height: 5px;
}

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

.postdata ol {
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

.postdata ol li::before {
  background-color: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 7px;
  left: 0;
  line-height: 1.8;
  text-align: center;
  padding-left: 1px;
  width: 20px;
  height: 20px;
}

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

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata .wp-block-button__link {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  text-decoration: none;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }

  .postdata .wp-block-button__link:hover {
    background: transparent;
    color: var(--color_primary);
  }
}

@media screen and (max-width: 800px) {
  .postdata ul li::before {
    top: 12px;
  }

  .postdata ol li::before {
    top: 4px;
  }
}

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

.post-number span,
.post-number a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  font-size: 1.3rem;
  line-height: 1;
  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;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}

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

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

.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) {

  /*詳細ページ*/
  .single-post-layout .post-data time {
    width: 100%;
    margin: 0 0 5px 0;
  }

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

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

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

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 0 5vw 70px;
    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;
}

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

.en,
[lang=en] {
  font-family: var(--font_en);
  line-height: 1;
  letter-spacing: 0;
}

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

.red {
  color: #F44336;
}

.pink {
  color: #F10281;
}

.blue {
  color: var(--color_sub03);
}

.marker {
  background: linear-gradient(transparent 50%, rgba(var(--color_sub02_rgb), 0.7) 50%);
}

.white-marker {
  background: linear-gradient(transparent 70%, rgba(255, 255, 255, 0.3) 70%);
}

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

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.br10 {
  border-radius: 10px;
}

.br20 {
  border-radius: 20px;
}

.br30 {
  border-radius: 30px;
}

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

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

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

  .col2 .sp-order01,
  .col3 .sp-order01,
  .col4 .sp-order01 {
    order: 1;
  }

  .col2 .sp-order02,
  .col3 .sp-order02,
  .col4 .sp-order02 {
    order: 2;
  }
}

/*Layout*/
.cmn-layout01 .l-ttl {
  background-color: var(--color_sub03);
  color: #fff;
  font-family: var(--font_jp);
  line-height: 1.6;
  text-align: center;
  padding: 3px 0;
  margin-bottom: 14px;
}

.cmn-layout01 .tel-btn {
  gap: 6px;
}

.cmn-layout01 .l-time {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.cmn-layout01 .item {
  text-align: center;
  padding: 10px 0 6px;
}

.cmn-layout01 .item .ttl {
  color: #11017D;
  font-family: var(--font_jp);
  font-weight: var(--font_semibold);
  font-size: 1.4rem;
  line-height: 1.6;
}

.cmn-layout01 .color01 {
  background-color: rgba(34, 80, 188, 0.3);
}

.cmn-layout01 .color02 {
  background-color: rgba(149, 193, 222, 0.3);
}

@media (max-width: 800px) {
  .cmn-layout01 .l-ttl {
    margin-bottom: 10px;
  }
}

/*ボタン*/
.btn-more {
  background-color: var(--color_primary);
  border-radius: 10px 0 10px 0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  line-height: 1.5;
  letter-spacing: 0;
  min-height: 50px;
  min-width: 210px;
  padding: 8px 25px;
  position: relative;
  transition: background-color 0.3s;
}

.btn-more::before {
  content: "";
  background-color: var(--color_sub01);
  width: 40px;
  height: 1px;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-more.white {
  background-color: #fff;
  color: #333;
  transition: color 0.3s;
}

@media (hover: hover) {
  .btn-more:hover {
    background-color: oklch(from var(--color_primary) 0.3 c h);
  }

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

.btn-style01 {
  background: linear-gradient(to right, #70aed6 0%, #4686af 100%);
  color: #fff;
  border-radius: 10px 0 10px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.5;
  min-height: 41px;
  min-width: 121px;
  padding: 5px 12px;
  position: relative;
}

.btn-style01::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color_primary);
  border-radius: 10px 0 10px 0;
  transition: opacity 0.3s;
}

.btn-style01 span {
  position: relative;
  z-index: 1;
}

.btn-style01 img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

@media (hover: hover) {
  .btn-style01:hover::before {
    opacity: 0;
  }
}

.tel-btn {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 8px;
}

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

.tel-btn .num {
  font-family: var(--font_jp);
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.tel-btn img {
  padding-top: 4px;
}

.tel-btn.large .num {
  font-size: 3.5rem;
}

.tel-btn.large img {
  padding-top: 7px;
}

.tel-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.tel-btn-wrap.left {
  justify-content: flex-start;
  align-items: flex-start;
}

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

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

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

  .btn-more::before {
    width: 30px;
    right: -15px;
  }

  .tel-btn.large .num {
    font-size: 2.8rem;
  }

  .tel-btn.large img {
    max-width: 29px;
    max-height: 29px;
    object-fit: contain;
    padding-top: 5px;
  }

  .tel-btn-wrap {
    flex-direction: column;
    gap: 15px;
  }

  .btn-wrap {
    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;
  }
}

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

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

.fontL {
  font-size: 1.2em;
}
.time-detail {
}
.time-detail .types {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.time-detail .types .type-item {
  background: #B7C1DB;
  padding: 5px;
  text-align: center;
  flex: 1;
}
.time-detail .types .type-item.color02 {
  background: #DAE3E5;
}
.time-detail .types .type-item .type-ttl {
  color: #11017D;
  font-size: 1.4rem;
  font-family: var(--font_jp);
}
.time-detail .types .type-item .type-time {
  font-size: 1.5rem;
}
.time-detail .type-caption {
  color: #F10281;
  font-size: 1.5rem;
  margin-top: 5px;
}

