@charset "UTF-8";

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

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
samp,
sub,
sup,
var,
b,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
mark,
audio,
video,
a {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span,
small,
em,
time,
i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

a:-webkit-any-link:focus-visible {
  outline-offset: 1px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.7;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
select {
  vertical-align: middle;
}

abbr[title],
dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

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

img {
  vertical-align: top;
}

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

th {
  font-weight: normal;
  text-align: left;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: inherit;
}

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

::selection {
  background: #d4dcd6;
}

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

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "FOT-スキップ Std D";
  line-height: 1.7;
}

@media (max-width: 800px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.4;
  }
}

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

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

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

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

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

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.4;
  }

  .container,
  .breadcrumb ul {
    margin: 0 auto;
    max-width: 90%;
    width: 90%;
  }
}

/*------------
Header
--------------*/
.header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  transition: 0.3s ease;
}

.header-inr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 27px 40px 0 30px;
  width: 100%;
  height: 140px;
  transition: 0.3s ease;
}

.header .h-logo {
  width: 26.22vw;
  max-width: 470px;
}

.header .h-logo a {
  display: block;
}

.header .h-logo img {
  width: 100%;
}

.header .h-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}

.header .h-contact {
  display: flex;
  align-items: center;
}

.header .h-time-dl {
  margin-left: 40px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
}

.header .h-time-dl dt {
  font-size: 16px;
  font-family: "FOT-スキップ Std D";
  color: #095EAA;
  border: 1px solid #095EAA;
  border-radius: 3px;
  display: grid;
  place-content: center;
}

.header .h-time-dl dd {
  font-size: 15px;
  line-height: 1.5;
}

.header.is-fixed {
  background: white;
}

.header.is-fixed .h-logo {
  opacity: 0;
  pointer-events: none;
  width: 0;
}

.header.is-fixed .h-top {
  display: none;
}

.header.is-fixed .header-inr {
  height: auto;
  justify-content: flex-end;
  align-items: center;
  padding: 27px 40px 10px;
}

.humberger {
  display: block;
  width: 50px;
  height: 50px;
  background: #095EAA;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  top: 0;
  right: 0;
  z-index: 9999;
}

.humberger span {
  background: #fff;
  position: absolute;
  width: 25px;
  height: 1px;
  transition: 0.4s;
  left: 50%;
  transform: translate(-50%, -50%);
}

.humberger span:nth-of-type(1) {
  top: 35%;
}

.humberger span:nth-of-type(2) {
  top: 50%;
}

.humberger span:nth-of-type(3) {
  top: 65%;
}

.humberger.is-open span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.humberger.is-open span:nth-of-type(2) {
  display: none;
}

.humberger.is-open span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

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

  .header-inr {
    height: auto;
    display: block;
    padding: 15px 20px;
  }

  .header .h-logo {
    width: 100%;
    max-width: 240px;
  }

  .header .h-right {
    display: none;
  }
}

/*------------
G-navi
--------------*/
/*drawer*/
.gnavi-drawer {
  visibility: hidden;
  background: #F7F8F8;
  padding: 100px 60px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  transition: 0.3s;
  opacity: 0;
  z-index: 999;
  width: 500px;
}

.gnavi-drawer.is-open {
  visibility: visible;
  overflow-y: auto;
  opacity: 1;
}

.gnavi-drawer-list {
  display: grid;
  grid-gap: 30px;
  font-family: "FOT-スキップ Std D";
}

.gnavi-drawer-list .item {
  font-size: 16px;
}

.gnavi-drawer-list .item>a:not([href="#"]) {
  text-decoration: underline;
}

.gnavi-drawer-list .item>a:not([href="#"]):hover {
  text-decoration: none;
}

.gnavi-drawer-list .item>a[href="#"] {
  cursor: auto;
  pointer-events: none;
  text-decoration: underline;
}

.gnavi-drawer-list .child {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px 20px;
  margin-top: 15px;
  font-size: 14px;
}

.gnavi-drawer-list .child>li>a:hover {
  text-decoration: underline;
}

.pc-navi-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.pc-navi .item {
  line-height: 1.4;
  padding-bottom: 20px;
}

.pc-navi .item .item-link {
  font-family: "FOT-スキップ Std D";
  display: block;
}

.pc-navi .item .item-link:hover {
  transition: 0.3s ease;
  color: #46B1D1;
}

.pc-navi .item:not(:last-child) {
  margin-right: 40px;
}

.pc-dropdown {
  position: relative;
  padding-right: 20px;
}

.pc-dropdown::before {
  content: "";
  position: absolute;
  background: url(../images/share/navi-arrow-btm.svg) no-repeat center/contain;
  width: 12px;
  height: 8px;
  right: 0;
  top: 10px;
}

.pc-dropdown .pc-navi-child {
  position: absolute;
  width: fit-content;
  background-color: #DEE6ED;
  border-radius: 5px;
  top: calc(100% + 0px);
  left: 50%;
  text-align: left;
  padding: 20px 25px;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: 0.4s ease-in-out;
}

.pc-dropdown .pc-navi-child>li {
  font-size: 18px;
  line-height: 1.6;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding-left: 15px;
}

.pc-dropdown .pc-navi-child>li a:hover {
  text-decoration: underline;
}

.pc-dropdown .pc-navi-child>li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  transform: rotate(45deg);
  width: 5.5px;
  height: 5.5px;
  border: 0px;
  border-top: 1px solid #46B1D1;
  border-right: 1px solid #46B1D1;
}

.pc-dropdown .pc-navi-child>li:not(:last-child) {
  margin-bottom: 10px;
}

.pc-dropdown .pc-navi-child .sub-navi-list {
  margin-top: 10px;
}

.pc-dropdown .pc-navi-child .sub-navi-list>li {
  position: relative;
  padding-left: 17px;
}

.pc-dropdown .pc-navi-child .sub-navi-list>li::before {
  content: "";
  position: absolute;
  background: #95A0AA;
  left: 0;
  top: 15px;
  width: 10px;
  height: 1px;
}

.pc-dropdown .pc-navi-child .sub-navi-list>li:not(:last-child) {
  margin-bottom: 10px;
}

.pc-dropdown:hover .pc-navi-child {
  pointer-events: auto;
  transform: translate(-50%, 0);
  opacity: 1;
}

.sp-navi {
  display: none;
}

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

  .pc-navi {
    display: none;
  }

  :root {
    --navi-background: #095EAA;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: "FOT-スキップ Std D", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
    --sp-btn-color: #E67A7A;
  }

  .sp-navi {
    display: block;
    /* ボタン類 */
    /* コンテンツ */
  }

  .sp-navi .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    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 .sp-navi-btns>* {
    flex: 1;
    position: relative;
  }

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

  .sp-navi .sp-navi-btns .item:not(:last-child) {
    border-right: 1px solid var(--navi-border-color);
  }

  .sp-navi .sp-navi-btns .item:nth-child(1) a::before {
    background-image: url(../images/share/icon_home.svg);
    width: 18px;
  }

  .sp-navi .sp-navi-btns .item:nth-child(2) a::before {
    background-image: url(../images/share/icon_tel_w.svg);
    width: 12px;
  }

  .sp-navi .sp-navi-btns .item:nth-child(3) a::before {
    background-image: url(../images/share/icon_cal.svg);
    width: 14px;
  }

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

  .sp-navi .sp-navi-btns .item a::before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    left: 50%;
    transform: translateX(-50%);
    height: 16px;
    top: 8px;
  }

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

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

  .sp-navi .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-family: var(--navi-font);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

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

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

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

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

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 6px) rotate(-45deg);
  }

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(3) {
    transform: translate(-50%, -6px) rotate(45deg);
  }

  .sp-navi .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 .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }

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

  .sp-navi .sp-navi-list>li {
    border-bottom: 1px solid #DFE2E5;
  }

  .sp-navi .sp-navi-list>li>a,
  .sp-navi .sp-navi-list>li span {
    display: block;
    font-size: 16px;
    font-family: "FOT-スキップ Std D";
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }

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

  .sp-navi .sp-navi-list>li.sp-dropdown::before,
  .sp-navi .sp-navi-list>li.sp-dropdown::after {
    content: "";
    background-color: #095EAA;
    position: absolute;
    transition: 0.4s ease;
  }

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

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

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

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

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

  .sp-navi .sp-navi-list .child>ul>li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-family: "FOT-スキップ Std D";
  }

  .sp-navi .sp-navi-list .child>ul>li::before {
    content: "-";
    color: #095EAA;
    position: absolute;
    left: 0;
    top: 0;
  }

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

  .sp-navi .sp-navi-list .child>ul>li>ul {
    margin-top: 5px;
    padding-left: 10px;
    font-size: 14px;
  }

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

  .sp-navi .sp-navi-list .child>ul>li>ul>li+li {
    margin-top: 4px;
  }

  .sp-navi .sp-navi-list .child>ul>li>ul>li::before {
    content: "";
    position: absolute;
    background: #95A0AA;
    left: 0;
    top: 12px;
    height: 1px;
    width: 8px;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  width: 100%;
  height: 820px;
  margin-top: 140px;
  position: relative;
}

.hero .splide__slide {
  height: 820px;
}

.hero .splide__slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.hero-desc {
  position: absolute;
  top: 250px;
  left: 174px;
}

.hero-ttl {
  max-width: 951px;
  width: 90%;
}

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

.hero__list {
  position: absolute;
  left: 174px;
  bottom: 85px;
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(3, 1fr);
}

.hero__listIcon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto -40px;
}

.hero__listIcon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.hero__listDesc {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 65px 20px 50px;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 800px) {
  .hero {
    margin-top: 0;
    margin-bottom: 80px;
    height: 230px;
  }

  .hero .splide__slide {
    height: 230px;
  }

  .hero .splide__pagination {
    display: none;
  }

  .hero-desc {
    width: 90%;
    left: 5%;
    top: auto;
    bottom: 65px;
  }

  .hero__list {
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -55px;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__listIcon {
    width: 46px;
    height: 46px;
    margin: 0 auto -21px;
  }

  .hero__listDesc {
    padding: 25px 5px;
    font-size: 10px;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.t-ttl {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 35px;
  position: relative;
}

.t-ttl::before {
  content: "";
  position: absolute;
  background: #095EAA;
  width: 44px;
  height: 2px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.t-ttl .jp {
  display: block;
  font-family: "FOT-スキップ Std D";
  font-size: 42px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.t-ttl .en {
  font-family: "Outfit", sans-serif;
  color: #95A0AA;
  font-size: 20px;
  font-weight: 500;
  display: block;
  line-height: 1;
}

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

  .t-ttl .jp {
    font-size: 24px;
    line-height: 1.4;
  }
}

/*------------
Block
--------------*/
.sec01 {
  padding: 100px 0 120px;
  background: #F7F8F8;
}

.sec01 .container,
.sec01 .breadcrumb ul,
.breadcrumb .sec01 ul {
  display: flex;
  position: relative;
}

.sec01 .container::before,
.sec01 .breadcrumb ul::before,
.breadcrumb .sec01 ul::before {
  content: "";
  position: absolute;
  background: url(../images/top-deco_bird.svg) no-repeat center/contain;
  width: 240px;
  height: 75px;
  left: -165px;
  bottom: -164px;
}

@media screen and (max-width: 1300px) {

  .sec01 .container::before,
  .sec01 .breadcrumb ul::before,
  .breadcrumb .sec01 ul::before {
    left: -70px;
  }
}

.sec01 .list-top-news02 {
  flex: 1;
}

.sec01 .t-ttl {
  text-align: left;
  padding-bottom: 0;
}

.sec01 .t-ttl .jp {
  font-size: 36px;
  color: #095EAA;
}

.sec01 .t-ttl .en {
  font-size: 16px;
  color: #333;
}

.sec01 .t-ttl::before {
  content: none;
}

.sec01 .btn-more {
  max-width: 220px;
  padding: 16px 45px 16px 25px;
}

.sec01__ttl {
  width: 220px;
  margin-right: 104px;
}

.sec01__btn {
  position: absolute;
  left: 0;
  bottom: 0;
}

.sec02 {
  position: relative;
  padding: 180px 0;
}

.sec02 .container,
.sec02 .breadcrumb ul,
.breadcrumb .sec02 ul {
  max-width: 1200px;
}

.sec02__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.sec02__list>li {
  height: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  color: #fff;
  background: #095EAA;
  font-size: 18px;
  border-radius: 5px;
  padding: 50px 24px;
  position: relative;
}

.sec02__listTtl {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

.sec02__listImg {
  width: 200px;
  margin: 0 auto 25px;
}

.sec02__list .list-btns {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.sec02__list .list-btns a {
  display: grid;
  place-content: center;
  background-color: #fff;
  border: 1px solid #fff;
  color: #095EAA;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  min-height: 70px;
  position: relative;
  transition: .3s;
}

.sec02__list .list-btns a::after {
  content: "";
  position: absolute;
  background-color: #095EAA;
  mask: url(../images/share/btn_arrow.svg) no-repeat center / contain;
  width: 14.5px;
  height: 11px;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
  z-index: 2;
}

.sec02__list .list-btns a:hover {
  background-color: #095EAA;
  color: #fff;
}

.sec02__list .list-btns a:hover::after {
  background-color: #fff;
}

.sec03 {
  position: relative;
}

.sec03__layout {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.sec03__layout--num01 {
  margin-bottom: 40px;
}

.sec03__layout--num01 .sec03__img .sec03__imgTxt {
  right: 65px;
}

.sec03__layout--num01 .sec03__desc::before {
  background-image: url(../images/top-deco_swimmer.svg);
  width: 234px;
  height: 183px;
  right: 10.1vw;
  top: -6.67vw;
  transform: rotate(-16deg);
  z-index: 3;
}

.sec03__layout--num02 {
  margin-bottom: 90px;
  flex-direction: row-reverse;
}

.sec03__layout--num02 .sec03__desc {
  margin: 80px -305px 0 0;
  padding: 60px 400px 80px calc((100% - 1200px) / 2);
}

@media screen and (max-width: 1300px) {
  .sec03__layout--num02 .sec03__desc {
    padding: 60px 360px 80px calc((100% - 1024px) / 2);
  }
}

.sec03__layout--num02 .sec03__desc::before {
  background-image: url(../images/top-deco_shell.svg);
  width: 100px;
  height: 89px;
  left: 10.39vw;
  top: -2.98vw;
  z-index: 3;
}

.sec03__layout--num02 .sec03__img .sec03__imgTxt {
  left: 65px;
}

.sec03__layout--num03 .sec03__desc::before {
  background-image: url(../images/top-deco_yot.svg);
  width: 160px;
  height: 153px;
  right: 14.75vw;
  top: -5.28vw;
  z-index: 3;
}

.sec03__layout--num03 .sec03__img .sec03__imgTxt {
  right: 65px;
}

.sec03__desc {
  flex: 1;
  background: #F7F8F8;
  margin: 80px 0 0 -320px;
  padding: 60px calc((100% - 1200px) / 2) 80px 400px;
  position: relative;
}

@media screen and (max-width: 1300px) {
  .sec03__desc {
    padding: 60px calc((100% - 1024px) / 2) 80px 360px;
  }
}

.sec03__desc::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sec03__img {
  position: relative;
  max-width: 820px;
  width: 45.56vw;
  height: 574px;
  z-index: 2;
}

.sec03__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec03__imgTxt {
  position: absolute;
  line-height: 1;
  display: inline-block;
  font-size: 110px;
  color: rgba(149, 160, 170, 0.18);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  bottom: -32px;
}

@media screen and (max-width: 1500px) {
  .sec03__imgTxt {
    font-size: 80px;
  }
}

.sec03__ttl {
  font-size: 36px;
  margin-bottom: 25px;
}

.sec03__subTtl {
  font-size: 24px;
  position: relative;
  padding-left: 60px;
  color: #095EAA;
  margin-bottom: 45px;
}

.sec03__subTtl::before {
  content: "";
  position: absolute;
  background: #095EAA;
  width: 40px;
  height: 2px;
  left: 0;
  top: 20px;
}

.sec03__btn {
  margin-top: 55px;
}

.sec03__btnWrap {
  margin-top: 55px;
}

.sec03__btnWrap .btn-more+.btn-more {
  margin-top: 20px;
}

.sec04 {
  padding: 180px 0;
}

.sec04 .container,
.sec04 .breadcrumb ul,
.breadcrumb .sec04 ul {
  position: relative;
  max-width: 1200px;
}

.sec04__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  position: relative;
}

.sec04__list::before {
  content: "";
  position: absolute;
  background: url(../images/top-deco_iruka.svg) no-repeat center/contain;
  width: 220px;
  height: 123px;
  top: -97px;
  left: -84px;
  z-index: 2;
}

@media screen and (max-width: 1300px) {
  .sec04__list::before {
    left: -55px;
  }
}

.sec04__list>li:first-child a {
  background: url(../images/sec04_img01.jpg) no-repeat center/cover;
}

.sec04__list>li:last-child a {
  background: url(../images/sec04_img02.jpg) no-repeat center/cover;
}

.sec04__list a {
  display: block;
  padding: 140px 20px 180px;
  margin-bottom: 30px;
  border-radius: 5px;
  transition: 0.3s ease;
  position: relative;
}

.sec04__list a::before {
  content: "";
  position: absolute;
  background: url(../images/sec04_list-arrow.svg) no-repeat center/contain;
  bottom: 105px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
}

.sec04__list a:hover {
  opacity: 0.7;
}

.sec04__listTtl {
  color: #fff;
  font-size: 36px;
  text-align: center;
}

.sec05 {
  position: relative;
  padding-bottom: 180px;
}

.sec05 .container,
.sec05 .breadcrumb ul,
.breadcrumb .sec05 ul {
  max-width: 1200px;
}

.sec05__layout {
  display: flex;
  align-items: flex-start;
}

.sec05__img {
  max-width: 430px;
  width: 100%;
  margin-right: 80px;
  position: relative;
}

.sec05__img::before {
  content: "";
  position: absolute;
  background: url(../images/top-deco-fish02.svg) no-repeat center/contain;
  width: 247px;
  height: 135px;
  right: -10px;
  bottom: -94px;
  z-index: 2;
}

.sec05__desc {
  flex: 1;
}

.sec05__desc p+p {
  margin-top: 2em;
}

.sec05__ttl {
  color: #095EAA;
  font-size: 26px;
  line-height: 1.8;
  margin-bottom: 55px;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-decoration: underline 2px;
  -webkit-text-decoration: underline 2px;
  text-underline-offset: 6px;
}

.sec05__btn {
  margin-top: 55px;
}

.map-layout02 {
  position: relative;
}

.map-layout02 iframe {
  vertical-align: bottom;
}

.map-layout02 .l-desc {
  background: #fff;
  padding: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
}

.map-layout02 .l-descTxt {
  font-size: 22px;
  margin-top: 25px;
  font-family: "FOT-スキップ Std D";
  color: #095EAA;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-decoration: underline 2px;
  -webkit-text-decoration: underline 2px;
  text-decoration: underline 2px;
  text-underline-offset: 6px;
}

.map-layout02 .l-descBtn {
  margin-top: 45px;
}

.map-layout02 .btn-more {
  margin: 0 auto;
  max-width: 220px;
}

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

  .sec01 .container,
  .sec01 .breadcrumb ul,
  .breadcrumb .sec01 ul {
    display: block;
  }

  .sec01 .container::before,
  .sec01 .breadcrumb ul::before,
  .breadcrumb .sec01 ul::before {
    width: 120px;
    height: 37.5px;
    left: 5px;
    bottom: 4px;
  }

  .sec01 .t-ttl .jp {
    font-size: 24px;
  }

  .sec01 .t-ttl .en {
    font-size: 15px;
  }

  .sec01 .btn-more {
    max-width: 100%;
    padding: 16px 45px 16px 25px;
  }

  .sec01__ttl {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

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

  .sec02 {
    padding: 80px 0;
  }

  .sec02__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sec02__list>li a {
    padding: 30px;
  }

  .sec02__listTtl {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .sec02__listImg {
    width: 140px;
    margin: 0 auto 15px;
  }

  .sec03__layout {
    display: block;
  }

  .sec03__layout--num01 {
    margin-bottom: 0;
  }

  .sec03__layout--num01 .sec03__img .sec03__imgTxt {
    right: 20px;
  }

  .sec03__layout--num01 .sec03__desc::before {
    width: 117px;
    height: 92px;
    right: initial;
    left: 13px;
    top: -60px;
  }

  .sec03__layout--num02 {
    margin-bottom: 0;
  }

  .sec03__layout--num02 .sec03__desc {
    margin: 0;
    padding: 40px 20px 60px;
  }

  .sec03__layout--num02 .sec03__desc::before {
    width: 60px;
    height: 54px;
    left: initial;
    right: 20px;
    top: 33px;
  }

  .sec03__layout--num02 .sec03__img .sec03__imgTxt {
    left: 20px;
  }

  .sec03__layout--num03 .sec03__desc::before {
    width: 70px;
    height: 68px;
    right: 30px;
    top: 9px;
  }

  .sec03__layout--num03 .sec03__img .sec03__imgTxt {
    right: 20px;
  }

  .sec03__desc {
    margin: 0;
    padding: 40px 20px 60px;
  }

  .sec03__img {
    width: 100%;
    height: 220px;
  }

  .sec03__imgTxt {
    font-size: 50px;
    bottom: -20px;
  }

  .sec03__ttl {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .sec03__subTtl {
    font-size: 20px;
    padding-left: 40px;
    margin-bottom: 30px;
  }

  .sec03__subTtl::before {
    width: 25px;
    height: 2px;
    top: 12px;
  }

  .sec03__btn {
    margin-top: 25px;
  }

  .sec03__btnWrap {
    margin-top: 25px;
  }

  .sec03__btnWrap .btn-more+.btn-more {
    margin-top: 15px;
  }

  .sec04 {
    padding: 80px 0;
  }

  .sec04__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sec04__list::before {
    width: 110px;
    height: 62px;
    top: -47px;
    left: -10px;
  }

  .sec04__list a {
    padding: 60px 20px 80px;
    margin-bottom: 20px;
  }

  .sec04__list a::before {
    bottom: 20px;
  }

  .sec04__listTtl {
    font-size: 23px;
  }

  .sec05 {
    padding-bottom: 80px;
  }

  .sec05__layout {
    display: block;
  }

  .sec05__img {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .sec05__img::before {
    width: 167px;
    height: 92px;
    right: 10px;
    bottom: -44px;
  }

  .sec05__desc p+p {
    margin-top: 1em;
  }

  .sec05__ttl {
    font-size: 22px;
    margin-bottom: 30px;
    text-underline-offset: 5px;
  }

  .sec05__btn {
    margin-top: 30px;
  }

  .map-layout02 iframe {
    vertical-align: bottom;
    height: 250px;
  }

  .map-layout02 .l-desc {
    padding: 50px 5vw;
    position: static;
    transform: translateY(0);
  }

  .map-layout02 .l-descTxt {
    font-size: 20px;
    margin-top: 20px;
    text-underline-offset: 5px;
  }

  .map-layout02 .l-descBtn {
    margin-top: 30px;
  }

  .map-layout02 .btn-more {
    max-width: 100%;
  }
}

/*------------
Post
--------------*/
/*お知らせ*/
.list-top-news02 .list-item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #DFE2E5;
  position: relative;
}

.list-top-news02 .list-item::before {
  content: "";
  position: absolute;
  width: 14.5px;
  height: 11px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/news-btn-arrow.svg) no-repeat center/contain;
}

.list-top-news02 .list-item:first-child {
  padding: 0 0 25px;
}

.list-top-news02 .list-item:first-child::before {
  top: calc(50% - 12.5px);
}

.list-top-news02 time {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #95A0AA;
  margin-right: 40px;
}

.list-top-news02 .list-txt {
  width: 75%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

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

@media (max-width: 800px) {

  /*お知らせ*/
  .list-top-news02 .list-item {
    display: block;
  }

  .list-top-news02 time {
    margin-right: 0;
  }

  .list-top-news02 .list-txt {
    width: 85%;
  }
}

/*------------
下層レイアウト
--------------*/
.page-ttl {
  margin-top: 140px;
  width: 100%;
  background: url(../images/under/u-top_bg.jpg) center/cover no-repeat;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 50px 9.67%;
  height: 400px;
  min-height: 400px;
}

.page-ttl-main {
  font-family: "FOT-スキップ Std D";
  color: #095EAA;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}

.breadcrumb ul {
  font-size: 14px;
}

.breadcrumb ul li {
  display: inline;
  word-break: break-all;
}

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

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

@media (max-width: 800px) {
  .page-ttl {
    margin-top: 0;
    padding: 30px 5%;
    height: 220px;
    min-height: 220px;
  }

  .page-ttl-main {
    font-size: 25px;
  }

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

.u-h2,
.post-category-ttl,
.postdata h1 {
  font-size: 42px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
  text-align: center;
}

.u-h2::before,
.post-category-ttl::before,
.postdata h1::before {
  content: "";
  background: #095EAA;
  width: 44px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h3,
.post-ttl,
.postdata h2 {
  border-bottom: 1px solid #095EAA;
  font-size: 36px;
  padding-bottom: 5px;
  margin-bottom: 30px;
  position: relative;
}

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

.u-h4::before,
.postdata h3::before {
  content: "";
  position: absolute;
  background: #095EAA;
  width: 5px;
  height: 28px;
  left: 0;
  top: 7.5px;
}

.num-ttl,
.box-style02 .box-ttl02,
.box-style02 .box-ttl {
  font-family: "FOT-スキップ Std D";
  font-size: 36px;
  padding-left: 50px;
  margin-bottom: 30px;
  position: relative;
}

.num-ttl .num,
.box-style02 .box-ttl02 .num,
.box-style02 .box-ttl .num {
  position: absolute;
  left: 0;
  top: 10px;
  width: 39px;
  display: grid;
  place-content: center;
  background: #095EAA;
  font-family: "FOT-スキップ Std D";
  color: #fff;
  font-size: 23px;
  line-height: 39px;
  border-radius: 50px;
  margin-right: 20px;
  padding-left: 1px;
  vertical-align: 3px;
}

@media (max-width: 800px) {

  .u-h2,
  .post-category-ttl,
  .postdata h1 {
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }

  .u-h2::before,
  .post-category-ttl::before,
  .postdata h1::before {
    width: 40px;
  }

  .u-h3,
  .post-ttl,
  .postdata h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .u-h4,
  .postdata h3 {
    font-size: 20px;
  }

  .u-h4::before,
  .postdata h3::before {
    height: 20px;
    top: 4px;
  }

  .num-ttl,
  .box-style02 .box-ttl02,
  .box-style02 .box-ttl {
    font-size: 22px;
    padding-left: 40px;
  }

  .num-ttl .num,
  .box-style02 .box-ttl02 .num,
  .box-style02 .box-ttl .num {
    top: 0;
    font-size: 18px;
    width: 30px;
    line-height: 30px;
    margin-right: 15px;
    vertical-align: 3px;
  }
}

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

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

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

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

.tall {
  padding: 70px 0;
}

.tall:last-child {
  padding: 70px 0 140px;
}

.tall.u-bg01 {
  background: url(../images/under/u-parts_bg.png) no-repeat center/cover;
  padding: 100px 0;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .x-short+.short {
    margin-top: 30px;
  }

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

  .tall {
    padding: 40px 0;
  }

  .tall:last-child {
    padding: 40px 0 80px;
  }

  .tall.u-bg01 {
    padding: 50px 0;
  }
}

.column2 {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.column2-left {
  flex: 1;
}

.column2-right {
  width: 240px;
  margin-left: 40px;
}

.column2-right-inr {
  position: sticky;
  top: 150px;
}

.side-navi {
  border: 1px solid #095EAA;
}

.side-navi .ttl {
  font-family: "FOT-スキップ Std D";
  font-size: 24px;
  line-height: 1.7;
  padding: 15px 30px;
  background: #095EAA;
  color: #fff;
}

.side-navi ul {
  padding: 20px;
}

.side-navi ul li {
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.side-navi ul li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 10px;
  left: 0;
  top: 13px;
  background: #095EAA;
}

.side-navi ul li+li {
  margin-top: 15px;
}

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

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

  .column2-left {
    width: 100%;
    margin-bottom: 70px;
  }

  .column2-right {
    width: 100%;
    margin-left: 0;
  }

  .column2-right-inr {
    position: static;
  }

  .side-navi .ttl {
    font-size: 21px;
    padding: 10px 20px;
  }

  .side-navi ul li::before {
    width: 8px;
    height: 8px;
    top: 11px;
  }
}

.l-style01 {
  display: flex;
}

.l-style01 .l-img {
  max-width: 426px;
  width: 100%;
  margin-right: 50px;
}

.l-style01 .l-img.small {
  flex: 0.5;
}

.l-style01 .l-img.large {
  margin: 0 7.5% 0 -10%;
  position: relative;
}

.l-style01 .u-slider02 {
  width: 45%;
  padding: 0;
}

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

.l-style01__btn {
  margin-top: 35px;
}

.l-style01 .l-time {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-gap: 10px;
  line-height: 1.5;
  margin: 20px 0;
  width: fit-content;
}

.l-style01 .l-time dt {
  border: 1px solid #095EAA;
  text-align: center;
  font-family: "FOT-スキップ Std D";
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.l-style02 .l-img {
  flex: 1;
  margin-left: 50px;
}

.l-style02 .l-img.small {
  flex: 0.5;
}

.l-style02 .l-img.large {
  margin: 0 -10% 0 7.5%;
  position: relative;
}

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

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

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

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

.l-style03 .num {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  color: #095EAA;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 15px;
}

.l-style03 .l-ttl {
  font-size: 30px;
  margin-bottom: 15px;
}

.l-style03 .l-sub-ttl {
  display: flex;
  align-items: center;
  font-family: "FOT-スキップ Std D";
  font-size: 22px;
  margin-bottom: 20px;
}

.l-style03 .l-sub-ttl::before {
  content: "";
  background: #095EAA;
  width: 30px;
  height: 2px;
  margin-right: 25px;
}

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

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

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

  .l-style01 .l-img {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .l-style01 .l-img.large {
    margin: 0 auto 20px;
    position: relative;
  }

  .l-style01 .l-desc {
    width: 100%;
  }

  .l-style02 {
    display: block;
  }

  .l-style02 .l-img {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .l-style02 .l-img.large {
    margin: 0 auto 20px;
    position: relative;
  }

  .l-style03 {
    display: block;
  }

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

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

  .l-style03 .num {
    font-size: 22px;
    margin-bottom: 15px;
  }

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

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

  .l-style03 .l-sub-ttl::before {
    margin-right: 15px;
  }

  .l-style03.reverse .l-desc {
    padding: 7%;
    margin: -50px 0 0;
  }
}

.list-col2 {
  display: flex;
  flex-wrap: wrap;
}

.list-col2 .list-item {
  display: flex;
  flex-direction: column;
  width: 48%;
}

.list-col2 .list-item:nth-child(odd) {
  margin-right: 4%;
}

.list-col2 .list-item:nth-child(n+3) {
  margin-top: 40px;
}

.list-col2 .list-item:last-child {
  margin-right: 0;
}

.list-col2 .list-item .box-style03 {
  flex: 1;
}

.list-col2 .list-img {
  margin-bottom: 20px;
}

.list-col2 .list-ttl {
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
}

.list-col3 {
  display: flex;
  flex-wrap: wrap;
}

.list-col3 .list-item {
  width: 31.25%;
}

.list-col3 .list-item:not(:nth-child(3n)) {
  margin-right: 3.125%;
}

.list-col3 .list-item:nth-child(n+4) {
  margin-top: 30px;
}

.list-col3 .list-item:last-child {
  margin-right: 0;
}

.list-col3 .list-img {
  margin-bottom: 20px;
}

.list-col3 .list-ttl {
  font-size: 22px;
  margin-bottom: 10px;
}

.u-name-list {
  display: flex;
  align-items: center;
  font-family: "FOT-スキップ Std D";
  margin-bottom: 20px;
}

.u-name-list .job {
  line-height: 1.4;
  color: #095EAA;
  display: block;
  font-size: 22px;
  margin-right: 20px;
}

.u-name-list .jp {
  line-height: 1.4;
  display: block;
  font-size: 32px;
}

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

  .list-col2 .list-item {
    width: 100%;
  }

  .list-col2 .list-item:nth-child(odd) {
    margin-right: 0;
  }

  .list-col2 .list-item:nth-child(n+2) {
    margin-top: 30px;
  }

  .list-col2 .list-img {
    margin-bottom: 15px;
  }

  .list-col3 {
    display: block;
  }

  .list-col3 .list-item {
    width: 100%;
  }

  .list-col3 .list-item:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .list-col3 .list-item:nth-child(n+2) {
    margin-top: 30px;
  }

  .list-col3 .list-img {
    margin-bottom: 15px;
  }

  .list-col3 .list-ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .u-name-list {
    margin-bottom: 10px;
  }

  .u-name-list .job {
    font-size: 18px;
    margin-right: 15px;
  }

  .u-name-list .jp {
    font-size: 24px;
  }
}

@media (max-width: 800px) {
  .list-card01 .list-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .list-card03 .list-img {
    margin-bottom: 15px;
  }

  .list-card03 .list-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .list-card01,
  .list-card03 {
    display: block;
  }

  .list-card01.col2 .list-item,
  .list-card03.col2 .list-item {
    width: 100%;
    padding: 25px 20px;
  }

  .list-card01.col2 .list-item:nth-child(odd),
  .list-card03.col2 .list-item:nth-child(odd) {
    margin-right: 0;
  }

  .list-card01.col2 .list-item:nth-child(n+2),
  .list-card03.col2 .list-item:nth-child(n+2) {
    margin-top: 20px;
  }

  .list-card01.col3 .list-item,
  .list-card03.col3 .list-item {
    width: 100%;
    padding: 25px 20px;
  }

  .list-card01.col3 .list-item:not(:nth-child(3n)),
  .list-card03.col3 .list-item:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .list-card01.col3 .list-item:nth-child(n+2),
  .list-card03.col3 .list-item:nth-child(n+2) {
    margin-top: 20px;
  }

  .list-card01.col4 .list-item,
  .list-card03.col4 .list-item {
    width: 100%;
    padding: 25px 20px;
  }

  .list-card01.col4 .list-item:not(:last-child),
  .list-card03.col4 .list-item:not(:last-child) {
    margin-right: 0;
  }

  .list-card01.col4 .list-item:nth-child(n+2),
  .list-card03.col4 .list-item:nth-child(n+2) {
    margin-top: 20px;
  }
}

.list-disc li {
  position: relative;
  padding-left: 20px;
}

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

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

.list-check li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 10px;
  border-left: 3px solid #095EAA;
  border-bottom: 3px solid #095EAA;
  transform: rotate(-45deg);
}

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

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

.list-num>li:before {
  background: #095EAA;
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 13px;
  position: absolute;
  top: 10px;
  left: 0;
  line-height: 22px;
  text-align: center;
  padding-left: 1px;
  width: 22px;
  height: 22px;
}

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

@media (max-width: 800px) {
  .list-disc li {
    padding-left: 15px;
  }

  .list-disc li:before {
    top: 12px;
    width: 5px;
    height: 5px;
  }

  .list-check li {
    padding-left: 20px;
  }

  .list-check li:before {
    top: 10px;
    width: 14px;
    height: 7px;
    border-left: 2px solid #095EAA;
    border-bottom: 2px solid #095EAA;
  }

  .list-num>li:before {
    top: 5px;
    padding-left: 1px;
    font-size: 12px;
    line-height: 20px;
    width: 20px;
    height: 20px;
  }

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

.list-disc.col2,
.list-check.col2,
.list-num.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.list-disc.col3,
.list-check.col3,
.list-num.col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.list-disc.col4,
.list-check.col4,
.list-num.col4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

@media (max-width: 800px) {

  .list-disc.col2,
  .list-disc.col3,
  .list-disc.col4,
  .list-check.col2,
  .list-check.col3,
  .list-check.col4,
  .list-num.col2,
  .list-num.col3,
  .list-num.col4 {
    grid-template-columns: 1fr;
    grid-gap: 5px;
  }
}

.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

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

.list-anchor-link li:not(:last-child):after {
  content: "";
  display: inline-block;
  background: #46B1D1;
  width: 2px;
  height: 18px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  padding-right: 30px;
}

.list-anchor-link a:before {
  content: "";
  background: url(../images/share/icon_arrow_bottom.svg) no-repeat 0 0/contain;
  stroke: #095EAA;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 12px;
}

.list-anchor-link a:hover {
  color: #46B1D1;
}

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

  .list-anchor-link li:not(:last-child):after {
    display: none;
  }

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

  .list-anchor-link a:before {
    right: inherit;
    left: 0;
    width: 16px;
    height: 16px;
    top: 7px;
  }
}

.staff-layout {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}

.staff-layout--fs {
  align-items: flex-start;
}

.staff-layout .l-img {
  max-width: 550px;
  width: 100%;
}

.staff-layout .l-desc {
  flex: 1;
  margin-left: 50px;
}

.staff-layout .job {
  font-family: "FOT-スキップ Std D";
  font-size: 24px;
  margin-bottom: 20px;
}

.staff-layout .name {
  display: flex;
  align-items: center;
}

.staff-layout .jp {
  font-size: 36px;
  font-family: "FOT-スキップ Std D";
  margin-right: 20px;
}

.staff-layout .en {
  font-size: 20px;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  color: #095EAA;
}

.staff-career {
  font-size: 14px;
}

.staff-career li {
  border-bottom: 1px dotted #095EAA;
  padding: 10px 0;
  display: flex;
}

.staff-career .data {
  width: 15%;
}

.staff-career .txt {
  width: 85%;
}

@media (max-width: 800px) {
  .staff-layout {
    display: block;
    margin-bottom: 30px;
  }

  .staff-layout--fs {
    margin-bottom: 0;
  }

  .staff-layout--fs .name {
    margin-bottom: 45px;
  }

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

  .staff-layout .l-desc {
    margin-left: 0;
  }

  .staff-layout .job {
    font-size: 22px;
  }

  .staff-layout .jp {
    font-size: 25px;
    margin-right: 15px;
  }

  .staff-layout .en {
    font-size: 18px;
  }

  .staff-career li {
    display: block;
  }

  .staff-career .data {
    width: auto;
    display: block;
    font-weight: bold;
  }

  .staff-career .txt {
    width: 100%;
  }
}

.faq-style02 dt {
  display: flex;
  border-bottom: 1px solid #095EAA;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.faq-style02 dt .txt {
  font-size: 22px;
  line-height: 1.7;
  font-family: "FOT-スキップ Std D";
}

.faq-style02 dt .icon {
  background-color: #095EAA;
  color: #fff;
  border-radius: 50%;
}

.faq-style02 dd .wrapper {
  display: flex;
}

.faq-style02 dd .icon {
  background: #46B1D1;
  color: #fff;
  border-radius: 50%;
}

.faq-style02 .icon {
  font-size: 20px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  text-align: center;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-style02 .txt {
  flex: 1;
}

.faq-style02 dd:not(:last-child) {
  margin-bottom: 60px;
}

@media (max-width: 800px) {
  .faq-style02 dt .txt {
    font-size: 20px;
  }

  .faq-style02 dd:not(:last-child) {
    margin-bottom: 30px;
  }

  .faq-style02 .icon {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 26px;
    margin: 0 10px 0 0;
  }
}

.table-style01 {
  border: 1px solid #46B1D1;
}

.table-style01 tr:not(:last-child) {
  border-bottom: 1px solid #46B1D1;
}

.table-style01 th {
  background-color: #095EAA;
  color: #fff;
  padding: 15px;
  width: 30%;
}

.table-style01 td {
  padding: 10px 30px;
}

.table-style02 {
  background-color: #fff;
  border: 1px solid #46B1D1;
}

.table-style02 th,
.table-style02 td {
  border: 1px solid #46B1D1;
  line-height: 1.7;
  padding: 15px;
  text-align: center;
}

.table-style02 th {
  background-color: #095EAA;
  color: #fff;
  vertical-align: middle;
  width: 30%;
  text-align: center;
}

.table-style02 th.bg01 {
  background-color: #F7F8F8;
  color: #333;
}

.table-style02 .table-img {
  text-align: center;
}

.table-style02--clinic th {
  width: 12.5%;
}

@media (max-width: 800px) {
  .table-style01 th {
    width: 100%;
    display: block;
    padding: 10px 15px;
    text-align: left;
  }

  .table-style01 td {
    width: 100%;
    display: block;
    padding: 10px 15px;
  }

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

  .table-scroll::before {
    content: "※横にスクロールできます。";
  }

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

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

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

  .table-scroll table,
  .table-scroll figure {
    margin-bottom: 10px;
    width: 200%;
  }
}

.box-style01 {
  border: 1px solid #095EAA;
  padding: 50px;
}

.box-style01 .box-ttl {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.box-style01 .box-ttl02 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-left: 15px;
  position: relative;
}

.box-style01 .box-ttl02::before {
  content: "";
  width: 6px;
  height: 20px;
  position: absolute;
  top: 8px;
  left: 0;
  background: #095EAA;
}

.box-style02 {
  position: relative;
  background: #F7F8F8;
  padding: 30px 40px;
}

.box-style02 .box-ttl {
  margin-bottom: 20px;
}

.box-style02 .box-ttl::before {
  content: "";
  position: absolute;
  background: url(../images/under/box02_icon.png) no-repeat center/contain;
  width: 39px;
  height: 39px;
  top: 10px;
  left: 0;
}

.box-style02 .box-ttl02 {
  padding-left: 0;
  margin-bottom: 15px;
}

.box-style02__inner {
  display: flex;
  align-items: center;
}

.box-style02__left {
  text-align: center;
  width: 176px;
  font-size: 28px;
  line-height: 1.4;
  padding: 24px 5px;
  color: #fff;
  font-family: "FOT-スキップ Std D";
  margin-right: 40px;
  background: #095EAA;
}

.box-style02__desc {
  flex: 1;
}

.box-style03 {
  position: relative;
  background: #F7F8F8;
  padding: 0;
}

.box-style03__desc {
  flex: 1;
}

.box-style03 .l-style01 {
  display: flex;
}

.box-style03 .l-style01 .l-img {
  max-width: 426px;
  width: 100%;
  margin-right: 20px;
}

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

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

  .box-style01 .box-ttl02 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 12px;
  }

  .box-style01 .box-ttl02::before {
    width: 5px;
    height: 17px;
    top: 5px;
  }

  .box-style02 {
    padding: 20px;
  }

  .box-style02 .box-ttl {
    font-size: 22px;
    padding-left: 40px;
    margin-bottom: 15px;
  }

  .box-style02 .box-ttl::before {
    width: 30px;
    height: 30px;
    top: 0;
  }

  .box-style02 .box-ttl02 {
    font-size: 22px;
  }

  .box-style02__inner {
    display: block;
  }

  .box-style02__left {
    padding: 14px 5px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 25px;
  }

  .box-style03 .l-style01 {
    display: block;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #095EAA;
  font-size: 24px;
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-family: "FOT-スキップ Std D";
}

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

@media (max-width: 800px) {
  .dl-privacy dt {
    font-size: 18px;
  }
}

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

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

.u-centerImg {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.u-centerImg--small {
  max-width: 400px;
}

.u-bnr {
  text-align: center;
}

.u-bnr a {
  display: inline-block;
  transition: 0.3s;
}

.u-bnr a:hover {
  opacity: 0.5;
}

.u-bnr img {
  width: auto;
  max-height: 220px;
}

/*------------
Footer
--------------*/
.footer__top {
  position: relative;
  background: #095EAA;
  padding: 120px 0;
}

.footer__top .container,
.footer__top .breadcrumb ul,
.breadcrumb .footer__top ul {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
}

.footer__topTtl {
  position: relative;
  margin-bottom: 45px;
}

.footer__topTtl .jp {
  display: block;
  font-size: 42px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 10px;
}

.footer__topTtl .en {
  display: block;
  line-height: 1;
  color: #95A0AA;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

.footer__topLeft {
  max-width: 400px;
  width: 100%;
}

.footer__topRight {
  max-width: 570px;
  width: 100%;
}

.footer__btm {
  position: relative;
  background: #fff;
  padding: 80px 0 45px;
}

.footer__navi {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}

.footer__navi a:hover {
  text-decoration: underline;
}

.footer__navi .footer__naviInner:not(:last-child) {
  margin-right: 72px;
}

.footer__naviInner--wide {
  max-width: 552px;
  width: 100%;
}

.footer__naviColumn {
  display: flex;
  justify-content: space-between;
}

.footer__naviTtl {
  color: #095EAA;
  font-family: "FOT-スキップ Std D";
  margin-bottom: 10px;
}

.footer__naviList {
  font-size: 18px;
}

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

.footer__naviList>li a {
  position: relative;
  padding-left: 12px;
}

.footer__naviList>li a::before {
  content: "";
  position: absolute;
  background: url(../images/share/f-navi-arrow.svg) no-repeat center/contain;
  width: 4.7px;
  height: 8px;
  left: 0;
  top: 11px;
}

.footer__subTtl {
  position: relative;
  padding-left: 12px;
}

.footer__subTtl::before {
  content: "";
  position: absolute;
  background: url(../images/share/f-navi-arrow.svg) no-repeat center/contain;
  width: 4.7px;
  height: 8px;
  left: 0;
  top: 11px;
}

.footer__subList {
  margin-top: 5px;
  padding-left: 12px;
}

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

.footer__subList>li a {
  position: relative;
  padding-left: 15px;
}

.footer__subList>li a::before {
  content: "";
  position: absolute;
  background: #95A0AA;
  width: 10px;
  height: 1px;
  top: 14px;
  left: 0;
}

.footer__tel {
  position: relative;
  padding-left: 35px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 50px;
  line-height: 1;
  display: inline-block;
}

.footer__tel::before {
  content: "";
  position: absolute;
  background: url(../images/share/icon_tel_w.svg) no-repeat center/contain;
  left: 0;
  top: 7px;
  width: 28px;
  height: 39px;
}

.footer__btn {
  position: relative;
  font-weight: 500;
  display: block;
  text-align: center;
  width: 100%;
  padding: 11px;
  background: #fff;
  color: #095EAA;
  font-size: 24px;
  border-radius: 5px;
  margin-top: 25px;
  transition: 0.3s ease;
}

.footer__btn:hover {
  opacity: 0.6;
}

.footer__btn span {
  position: relative;
  padding-left: 40px;
}

.footer__btn span::before {
  content: "";
  position: absolute;
  background: url(../images/share/icon_cal_b.svg) no-repeat center/contain;
  width: 22px;
  height: 25px;
  left: 0;
  top: 6px;
}

.footer__logo {
  display: block;
  margin: 0 auto;
  max-width: 472px;
}

.footer__link {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
}

.footer__link>span {
  padding: 0 10px;
  position: relative;
}

.footer__link>span:nth-child(1)::after {
  content: "|";
  position: absolute;
  right: -5px;
}

.footer__link a:hover {
  text-decoration: underline;
}

.footer .copyright {
  font-size: 14px;
  line-height: 1;
  color: #95A0AA;
  text-align: center;
  padding: 15px;
  background: #3E4750;
}

.fixed-menu02 {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}

.fixed-menu02>a {
  border-radius: 4px 0 0 4px;
  background: #46B1D1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  padding: 26px 0;
  width: 68px;
}

.fixed-menu02>a:hover {
  opacity: 0.7;
}

.fixed-menu02 .ttl {
  border-radius: 5px 0 0 5px;
  font-size: 24px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1;
  white-space: nowrap;
  font-feature-settings: normal;
  font-family: "FOT-スキップ Std D";
}

.fixed-menu02 .ttl i {
  margin-bottom: 15px;
}

.pagetop {
  position: absolute;
  top: 80px;
  right: 80px;
  z-index: 99;
  transition: 0.3s ease;
}

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

@media screen and (max-width: 1300px) {
  .pagetop {
    right: 20px;
  }
}

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

  .footer__top .container,
  .footer__top .breadcrumb ul,
  .breadcrumb .footer__top ul {
    display: block;
  }

  .footer__topTtl {
    margin-bottom: 30px;
  }

  .footer__topTtl .jp {
    font-size: 24px;
  }

  .footer__topLeft {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .footer__topRight {
    max-width: 100%;
  }

  .footer__btm {
    padding: 40px 0;
  }

  .footer__navi {
    display: block;
    margin-bottom: 40px;
  }

  .footer__navi .footer__naviInner:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer__naviInner--wide {
    max-width: 100%;
  }

  .footer__naviColumn {
    display: flex;
    justify-content: space-between;
  }

  .footer__naviTtl {
    margin-bottom: 5px;
  }

  .footer__naviList {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .footer__naviList>li {
    font-size: 15px;
  }

  .footer__naviList>li+li {
    margin-top: 0;
  }

  .footer__naviList>li a {
    padding-left: 10px;
  }

  .footer__naviList>li a::before {
    top: 9px;
  }

  .footer__naviList>li .sp-small {
    font-size: 13px;
    display: inline-block;
    line-height: 1;
  }

  .footer__naviList.sp-col2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer__naviList.sp-col2>li {
    width: 48%;
  }

  .footer__subTtl {
    padding-left: 10px;
  }

  .footer__subTtl::before {
    top: 9px;
  }

  .footer__subList {
    padding-left: 10px;
  }

  .footer__subList>li {
    font-size: 15px;
  }

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

  .footer__subList>li a {
    padding-left: 12px;
  }

  .footer__subList>li a::before {
    width: 8px;
    top: 13px;
  }

  .footer__tel {
    padding-left: 25px;
    font-size: 32px;
  }

  .footer__tel::before {
    top: 4px;
    width: 18px;
    height: 25px;
  }

  .footer__btn {
    padding: 10px;
    font-size: 20px;
    margin-top: 10px;
  }

  .footer__btn span {
    padding-left: 30px;
  }

  .footer__btn span::before {
    top: 2px;
  }

  .footer__logo {
    max-width: 230px;
  }

  .footer__link {
    font-size: 17px;
  }

  .footer__link>span:nth-child(1)::after {
    content: "|";
    position: absolute;
    right: -5px;
  }

  .footer .copyright {
    font-size: 14px;
    padding: 15px 15px 65px;
  }

  .pagetop {
    display: none;
  }

  .fixed-menu01,
  .fixed-menu02 {
    display: none;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*普通投稿*/
.list-post-type01 .list-item:not(:last-child) {
  margin-bottom: 80px;
}

.post-layout {
  display: flex;
  align-items: flex-start;
}

.post-layout .post-img {
  flex: 1;
  margin-right: 50px;
  border: 1px solid #DFE2E5;
}

.post-layout .post-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-layout .post-desc {
  flex: 2;
}

.post-single-img {
  text-align: center;
  margin-bottom: 40px;
}

.postdata h4 {
  font-size: 18px;
  color: #46B1D1;
}

.postdata h5 {
  font-size: 17px;
  padding-left: 10px;
  position: relative;
}

.postdata h5:after {
  content: "-";
  color: #46B1D1;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.postdata h6 {
  font-size: 16px;
  color: #46B1D1;
}

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

.postdata a {
  text-decoration: underline;
}

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

.postdata strong {
  font-weight: 700;
}

.postdata em {
  font-style: italic;
}

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

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

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

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

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

.post-data time {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #95A0AA;
}

.post-data .post-category01 {
  margin-left: 20px;
}

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

.post-category01 {
  border: 1px solid #095EAA;
  color: #095EAA;
  line-height: 1;
  padding: 1px 10px 6px;
  display: inline-block;
}

.post-category01 span {
  font-size: 15px;
}

.post-category01 span:not(:first-child):before {
  content: " / ";
}

.post-number {
  margin-top: 100px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

.post-number a {
  color: #a5a5a5;
  display: inline-block;
  padding: 0 10px 15px;
}

.post-number a:hover {
  color: #095EAA;
}

.post-number .current {
  color: #095EAA;
  display: inline-block;
  padding: 0 10px 15px;
  position: relative;
}

.post-number .current::after {
  content: "";
  border-bottom: 2px solid #095EAA;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
}

.post-number-single {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

.post-number-single a {
  display: inline-block;
  color: #095EAA;
}

.post-number-single a.next {
  margin-top: 0;
}

.post-number-single a.next::before {
  content: "";
  background: url(../images/share/icon_arrow_post_left.svg) no-repeat center/contain;
  display: inline-block;
  margin-right: 15px;
  width: 30px;
  height: 40px;
}

.post-number-single a.prev {
  margin-top: 0;
}

.post-number-single a.prev::after {
  content: "";
  background: url(../images/share/icon_arrow_post_right.svg) no-repeat center/contain;
  display: inline-block;
  margin-left: 15px;
  width: 30px;
  height: 40px;
}

.post-number-single a:hover {
  opacity: 0.4 ease;
}

@media screen and (max-width: 800px) and (min-width: 0px) {

  /*普通投稿*/
  .list-post-type01 .list-item:not(:last-child) {
    margin-bottom: 60px;
  }

  .post-layout {
    display: block;
  }

  .post-layout .post-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

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

  /*詳細ページ*/
  .post-single-img {
    margin-bottom: 30px;
  }

  .postdata h4 {
    font-size: 17px;
  }

  .postdata h5 {
    font-size: 16px;
  }

  .postdata h6 {
    font-size: 15px;
  }

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

  .post-data time {
    line-height: 2;
  }

  .post-data .post-category01 {
    margin-left: 15px;
  }

  .post-data .post-category02 {
    margin-left: 15px;
  }

  .post-category01 {
    padding: 2px 10px 5px;
  }

  .post-category01 span {
    font-size: 14px;
  }

  .post-number {
    margin-top: 60px;
  }

  .post-number-single {
    margin-top: 40px;
  }

  .post-number-single a.next::before {
    height: 30px;
  }

  .post-number-single a.prev::after {
    height: 30px;
  }
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
.btn-more {
  display: block;
  width: 100%;
  max-width: 400px;
  font-weight: 500;
  padding: 20px 45px 20px 25px;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, rgb(18, 103, 178) 0%, rgb(70, 177, 209) 100%);
  border-radius: 5px;
  transition: 0.3s ease;
  position: relative;
}

.btn-more::before {
  content: "";
  position: absolute;
  width: 14.5px;
  height: 11px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/share/btn_arrow.svg) no-repeat center/contain;
}

.btn-more:hover {
  opacity: 0.7;
}

.btn-more.center {
  margin-left: auto;
  margin-right: auto;
}

.btn-more.wide {
  max-width: 320px;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -8px;
}

.btn-wrap a {
  margin: 8px;
}

.btn-wrap.center {
  justify-content: center;
  margin-left: 0;
}

@media (max-width: 800px) {
  .btn-more {
    width: 100%;
    min-width: auto;
    max-width: none;
    padding: 15px 25px;
    font-size: 20px;
  }

  .btn-wrap {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    text-align: center;
  }

  .btn-wrap a {
    margin: 0;
  }

  .btn-wrap a:not(:last-child) {
    margin-bottom: 15px;
  }
}

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

.sp-only {
  display: none;
}

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

.fade {
  transition: opacity 0.3s;
}

.fade:hover {
  opacity: 0.5;
}

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

.underline {
  text-decoration: underline;
}

.marker {
  font-family: "FOT-スキップ Std D";
}

.marker span {
  background: linear-gradient(transparent 60%, rgba(9, 94, 170, 0.2) 60%);
  padding-bottom: 3px;
}

.marker .large {
  font-size: 36px;
}

.marker .small {
  font-size: 20px;
}

.link {
  text-decoration: underline;
  color: #9A76AD;
}

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

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

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.notice {
  font-size: 0.8rem;
  text-indent: -1.6em;
  padding-left: 1.6em;
}

.txtRed {
  color: #f10000;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 90px !important;
}

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

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

@media (max-width: 800px) {
  .txt-large {
    font-size: 18px;
  }

  .marker .large {
    font-size: 22px;
  }

  .marker .small {
    font-size: 18px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .mbL {
    margin-bottom: 30px !important;
  }

  .mbXL {
    margin-bottom: 50px !important;
  }
}

/*診療時間*/
.time-table {
  text-align: center;
  overflow: hidden;
}

.time-table-head {
  background-color: #fff;
  font-family: "FOT-スキップ Std D";
  color: #095EAA;
  font-size: 20px;
}

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

.time-table-body {
  font-size: 18px;
  color: #fff;
  border-bottom: 1px solid #fff;
}

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

.time-table-body .item:first-child {
  letter-spacing: 0;
}

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

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

.time-table--under .time-table-head {
  background: #095EAA;
  color: #fff;
}

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

.time-table--under .time-table-body {
  color: #095EAA;
  border-bottom: 1px solid #095EAA;
}

.time-table-txt {
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
}

.time-table-txt.color01 {
  color: #333;
}

.time-table-dl {
  margin-top: 20px;
  display: grid;
  align-items: center;
  color: #fff;
  grid-template-columns: 86px 1fr;
  gap: 12px;
}

.time-table-dl dt {
  line-height: 1;
  border: 1px solid #fff;
  padding: 4px;
  border-radius: 3px;
  text-align: center;
  font-size: 16px;
  font-family: "FOT-スキップ Std D";
}

.time-table-dl dd {
  line-height: 1.3;
  font-size: 18px;
}

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

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

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

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

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

  .time-table-txt {
    font-size: 13px;
  }

  .time-table-dl {
    margin-top: 10px;
  }

  .time-table-dl dt {
    font-size: 15px;
    padding: 5px;
  }

  .time-table-dl dd {
    font-size: 17px;
  }
}

.map {
  position: relative;
  width: 100%;
  height: 500px;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tel {
  display: inline-block;
  font-size: 38px;
  font-family: "Outfit", sans-serif;
  color: #095EAA;
  font-weight: 500;
  line-height: 1;
  padding-left: 25px;
  position: relative;
}

.tel::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 21px;
  height: 30px;
}

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

  .tel {
    font-size: 32px;
  }

  .tel::before {
    top: 4px;
    width: 18px;
    height: 25px;
  }
}

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

.splide__track--fade>.splide__list>.splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

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

.splide--rtl {
  direction: rtl;
}

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

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #e9e9e9;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  width: 64px;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid #000;
  border-width: 1px 1px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

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

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

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

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

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

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

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

.splide__pagination__page {
  background: #DFE2E5;
  border: 0;
  display: inline-block;
  height: 4px;
  width: 40px;
  margin: 0;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
}

.splide__pagination__page.is-active {
  background: #095EAA;
  z-index: 1;
}

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

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  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 #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

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

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  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 #000;
}

.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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

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

  .splide__arrow--prev::after,
  .splide__arrow--next::after {
    width: 12px;
    height: 12px;
  }
}


.blue-line{
  border: none;
  border-top: 1px solid #095EAA;
  margin-block: 2rem;
}


.mark-circle {
    color: #000000;
}

.mark-circle01 {
    color: #ffffff;
}

.mark-circle02 {
    color: ##095eaa;
}


.mark-star {
    color: #ffff00;
}

.mark-triangle {
    color: #ff7c00;
}

.mark-square {
    color: #00f337;
}
