@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", sans-serif, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #333;
  background: #F9F6F0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

.header-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px 20px 30px;
  width: 100%;
  height: 85px;
}

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

.header .h-logo a {
  display: block;
  transition: 0.3s ease;
}

.header .h-logo a:hover {
  opacity: 0.7;
}

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

.header.is-fixed {
  background: rgba(255, 255, 255, 0.8);
}

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

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

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

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

/*------------
G-navi
--------------*/
.pc-navi {
  position: relative;
  margin-bottom: -20px;
}

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

.pc-navi .item {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  font-weight: 500;
  padding-bottom: 20px;
}

.pc-navi .item .item-link {
  display: block;
  transition: 0.3s ease;
}

.pc-navi .item .item-link:hover {
  color: #5AB2C9;
}

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

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

.pc-dropdown::before {
  content: "";
  position: absolute;
  background: url(../images/share/pc-dropdown.png) no-repeat center/contain;
  right: 0;
  top: 7px;
  width: 11px;
  height: 11px;
}

.pc-dropdown .pc-navi-child {
  background-color: rgba(37, 66, 156, 0.85);
  color: #fff;
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  text-align: left;
  padding: 35px 35px;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  width: fit-content;
  transform: translate(-50%, -10px);
  transition: 0.4s ease-in-out;
}

.pc-dropdown .pc-navi-child li {
  font-weight: 500;
  line-height: 1.6;
  width: 100%;
  white-space: nowrap;
  position: relative;
}

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

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

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

.pc-dropdown:hover .item-link {
  color: #333 !important;
}

.sp-navi {
  display: none;
}

@media (max-width: 1200px) {
  .header-inr {
    padding: 20px;
  }

  .pc-navi .item {
    font-size: 14px;
  }

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

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

  .pc-navi {
    display: none;
  }

  :root {
    --navi-background: #25429C;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: "Noto Sans JP", "游ゴシック 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: 10px;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

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

  .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 .img {
    display: block;
  }

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

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

  .sp-navi .sp-menu-btn {
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 15px;
    height: 50px;
    width: 50px;
    background-color: var(--navi-background);
    border: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

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

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

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

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

  .sp-navi .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 7px) 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%, -7px) rotate(45deg);
  }

  .sp-navi .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 80px 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 #dfdfdf;
    margin: 0 0 30px;
  }

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

  .sp-navi .sp-navi-list>li>a,
  .sp-navi .sp-navi-list>li span {
    display: block;
    font-size: 14px;
    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: #25429C;
    position: absolute;
    transition: 0.4 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;
  }

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

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  width: 100%;
  height: 900px;
  padding: 350px 0;
  margin-top: 85px;
  background: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  background: url(../images/hero-deco_r.jpg) no-repeat center/cover;
  right: 10px;
  bottom: 50px;
  width: 692px;
  height: 193px;
}

.hero::after {
  content: "";
  position: absolute;
  background: url(../images/hero-deco_l.jpg) no-repeat center/cover;
  width: 220px;
  height: 116px;
  left: 55px;
  top: 50px;
}

.hero-desc {
  text-align: center;
}

.hero-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 58px;
  color: #25429C;
  line-height: 1.4;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 15px;
}

.hero-sub-ttl {
  font-size: 19px;
  font-family: "Montserrat", serif;
  letter-spacing: 0.15em;
  color: #5AB2C9;
}

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

  .hero::before {
    right: 10px;
    bottom: 20px;
    width: 287px;
    height: 80px;
  }

  .hero::after {
    width: 91px;
    height: 48px;
    left: 20px;
    top: 10px;
  }

  .hero-desc {
    width: 100%;
    text-align: center;
  }

  .hero-ttl {
    font-size: 25px;
    margin-bottom: 5px;
  }

  .hero-sub-ttl {
    font-size: 10px;
  }

  .hero-news {
    display: block;
    padding: 20px;
    bottom: 10px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    width: 90%;
  }

  .hero-news .ttl {
    font-size: 18px;
    margin-right: 0;
  }

  .hero-news .btn-more {
    top: 20px;
    right: 20px;
  }

  .hero-news .splide {
    margin-top: 30px;
  }
}

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

.t-ttl .jp {
  display: block;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.7;
  color: #25429C;
}

.t-ttl .en {
  display: block;
  line-height: 1;
  font-family: "Montserrat", serif;
  font-size: 16px;
  font-weight: 400;
  color: #5AB2C9;
}

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

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

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

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

.contents::before {
  content: "";
  position: absolute;
  background: url(../images/wave_02.png) repeat-x center top/cover;
  height: 62px;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.sec01 {
  position: relative;
  padding: 185px 0 120px;
}

.sec01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/wave_03.png) repeat-x center top/cover;
  transform: rotate(180deg);
  height: 62px;
  width: 100%;
}

.sec01__ttl {
  width: 140px;
  margin-right: 144px;
}

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

.sec01 .t-ttl .jp {
  font-size: 25px;
  line-height: 1;
  margin-bottom: 15px;
}

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

.sec01 .container,
.sec01 .footer-inr,
.sec01 .breadcrumb ul,
.breadcrumb .sec01 ul {
  display: flex;
  justify-content: space-between;
}

.sec01 .list-top-news02 {
  position: relative;
  flex: 1;
  max-width: 740px;
  width: 100%;
}

.sec01 .btn-more {
  position: absolute;
  width: 140px;
  left: 0;
  bottom: 0;
  background: #F89736;
}

.sec02 {
  position: relative;
}

.sec02 .container,
.sec02 .footer-inr,
.sec02 .breadcrumb ul,
.breadcrumb .sec02 ul {
  display: grid;
  grid-template-columns: 496px 490px;
  gap: 38px;
}

.sec02__bnr {
  position: relative;
  display: block;
  margin-top: 35px;
  padding: 40px;
  transition: 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
  background: url(../images/sec02_bnr-bg.jpg) no-repeat center/cover;
}

.sec02__bnr::before {
  content: "";
  position: absolute;
  transition: 0.3s ease;
  background: rgba(38, 121, 142, 0.76);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.sec02__bnr::after {
  content: "";
  position: absolute;
  background: url(../images/sec02-btn-arrow.svg) no-repeat center/contain;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  z-index: 1;
}

.sec02__bnr:hover::before {
  background: #26798e;
}

.sec02__bnr-ttl {
  position: relative;
  z-index: 2;
  color: #fff;
}

.sec02__bnr-ttl .jp {
  display: block;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.7;
  margin-bottom: 5px;
}

.sec02__bnr-ttl .en {
  display: block;
  font-size: 14px;
  font-family: "Montserrat", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

.sec03 {
  position: relative;
  padding: 150px 0 182px;
  background: url(../images/sec03_bg.png) no-repeat bottom center/100% 64%;
}

.sec03::before {
  content: "";
  position: absolute;
  background: url(../images/wave_01.png) repeat-x center top/cover;
  height: 62px;
  width: 100%;
  left: 0;
  bottom: 0;
}

.sec03 .container,
.sec03 .footer-inr,
.sec03 .breadcrumb ul,
.breadcrumb .sec03 ul {
  max-width: 1300px;
}

.sec03 p+p {
  margin-top: 2rem;
}

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

@media screen and (max-width: 1300px) {
  .sec03__layout {
    justify-content: space-between;
  }
}

.sec03__img {
  flex: 1;
  max-width: 590px;
  width: 100%;
  z-index: 0;
}

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

@media screen and (max-width: 1300px) {
  .sec03__img {
    max-width: 480px;
  }
}

.sec03__desc {
  max-width: 1162px;
  width: 100%;
  margin-top: 143px;
  margin-left: -452px;
  padding: 85px 90px 90px 550px;
  background: #fff;
}

@media screen and (max-width: 1300px) {
  .sec03__desc {
    max-width: 1000px;
    padding: 85px 40px 90px 460px;
  }
}

.sec03__ttl {
  font-size: 26px;
  margin-bottom: 40px;
  color: #25429C;
}

.sec03__en {
  display: inline-block;
  position: absolute;
  font-size: 135px;
  font-family: "Montserrat", serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #BCCEE2;
  top: 45px;
  left: 40%;
  z-index: 2;
}

.sec03__btn-wrap {
  display: flex;
  margin-top: 45px;
}

.sec03__btn-wrap a+a {
  margin-left: 15px;
}

.sec03__btn-wrap a:first-child {
  flex: 1;
}

.sec04 {
  position: relative;
  overflow: hidden;
  padding: 120px 0 250px;
}

.sec04::before {
  content: "";
  position: absolute;
  background: url(../images/wave_02.png) repeat-x center top/cover;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 62px;
  z-index: 2;
}

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

.sec04__layout {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1450px;
  width: 90%;
  margin: 0 0 0 100px;
}

@media screen and (max-width: 1300px) {
  .sec04__layout {
    margin: 0 0 0 60px;
  }
}

.sec04__layout::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #FCF1DB 0%, #DBEDEF 100%);
}

.sec04__layout--num01::before {
  width: 250px;
  height: 455px;
  left: -100px;
  bottom: -66px;
}

.sec04__layout--num02 {
  flex-direction: row-reverse;
  margin: 155px 100px 0 auto;
}

@media screen and (max-width: 1300px) {
  .sec04__layout--num02 {
    margin: 155px 60px 0 auto;
  }
}

.sec04__layout--num02::before {
  width: 211px;
  height: 704px;
  right: -100px;
  bottom: -295px;
}

.sec04__layout--num02 .sec04__desc {
  padding: 0 95px 0 0;
}

.sec04__layout--num02 .sec04__num {
  right: initial;
  left: 0;
}

.sec04__layout--num03 {
  margin-top: 155px;
}

.sec04__layout--num03::before {
  width: 316px;
  height: 847px;
  left: -100px;
  bottom: -242px;
}

.sec04__ttl {
  margin-bottom: 40px;
  font-size: 38px;
  color: #25429C;
}

.sec04__img {
  position: relative;
  max-width: 840px;
  width: 100%;
  height: 515px;
  z-index: 4;
}

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

.sec04__desc {
  padding: 0 0 0 95px;
  position: relative;
  z-index: 5;
}

.sec04__num {
  display: inline-block;
  width: 127px;
  position: absolute;
  text-align: center;
  padding: 10px 10px 20px;
  right: 0;
  top: 0;
  background: #F9F6F0;
  border-radius: 0 0 0 10px;
}

.sec04__num span {
  display: inline-block;
  font-family: "Montserrat", serif;
  color: #25429C;
  font-weight: 300;
  font-size: 92px;
  line-height: 1;
}

.sec04__num span.en {
  display: block;
  margin-top: 5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 14px;
}

.sec05 {
  position: relative;
  padding: 120px 0 212px;
  background: linear-gradient(180deg, #E1F4F4 0%, #C9E3F4 100%);
}

.sec05::before {
  content: "";
  position: absolute;
  background: url(../images/wave_03.png) repeat-x center top/cover;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 62px;
  z-index: 2;
}

.sec05 .t-ttl {
  margin-bottom: 100px;
}

.sec05__layout {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 90px;
}

.sec05__img {
  max-width: 628px;
  width: 100%;
  flex: 1;
}

.sec05__desc {
  position: relative;
  color: #fff;
  max-width: 502px;
  width: 100%;
  padding: 65px 68px 60px;
  margin-top: 95px;
  margin-right: -106px;
  background: linear-gradient(180deg, rgba(78, 194, 203, 0.71) 0%, rgba(13, 84, 136, 0.71) 100%);
}

.sec05__ttl {
  font-size: 30px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px;
}

.sec05__ttl::before {
  content: "";
  position: absolute;
  background: url(../images/sec05_ttl-icon.svg) no-repeat center/contain;
  width: 30px;
  height: 40px;
  left: 0;
  top: 5px;
}

.sec05__en {
  position: absolute;
  font-family: "Montserrat", serif;
  color: #BACFE5;
  top: 25px;
  left: 75px;
  font-size: 103px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  z-index: 3;
}

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

.sec05__list>li {
  height: 241px;
  max-width: 241px;
  width: 100%;
}

.sec05__list>li a {
  position: relative;
  display: grid;
  place-content: center;
  text-align: center;
  background: #fff;
  height: 100%;
  padding-bottom: 35px;
  transition: 0.3s ease;
}

.sec05__list>li a::before {
  content: "";
  position: absolute;
  background: url(../images/sec05_btn-arrow.svg) no-repeat center/contain;
  width: 36px;
  height: 36px;
  right: 20px;
  bottom: 20px;
}

.sec05__list>li a:hover {
  box-shadow: 0 0 20px rgba(37, 66, 156, 0.4);
}

.sec05__list>li+li+li+li+li {
  margin-top: 30px;
}

.sec05__list>li:not(:nth-child(4)) {
  margin-right: 20px;
}

.sec05__list>li:nth-child(7) {
  margin-right: 0;
}

.sec05__listIcon {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
}

.sec05__listTtl .jp {
  display: block;
  line-height: 1.4;
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #25429C;
}

.sec05__listTtl .en {
  display: block;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: "Montserrat", serif;
  color: #5AB2C9;
}

.sec05 .btn-more {
  margin-top: 35px;
}

.sec06 {
  position: relative;
  background: #fff;
  padding: 120px 0 150px;
}

.sec06__ttl {
  width: 140px;
}

.sec06 .container,
.sec06 .footer-inr,
.sec06 .breadcrumb ul,
.breadcrumb .sec06 ul {
  display: flex;
  justify-content: space-between;
}

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

.sec06 .list-top-news03 {
  position: relative;
  flex: 1;
  max-width: 740px;
  width: 100%;
}

.map-layout01 {
  position: relative;
  padding: 0 0 210px;
  background: #fff;
}

.map-layout01 .container,
.map-layout01 .footer-inr,
.map-layout01 .breadcrumb ul,
.breadcrumb .map-layout01 ul {
  display: grid;
  grid-template-columns: 1fr 384px;
  gap: 36px;
}

.map-layout01 iframe {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
}

.map-layout01 .l-desc {
  text-align: center;
}

.map-layout01 .l-logo {
  text-align: center;
  margin-bottom: 25px;
}

.map-layout01 .l-logo img {
  max-width: 236px;
}

.map-layout01 .tel {
  margin: 15px 0;
}

.map-layout01 .map-dl {
  display: grid;
  grid-template-columns: 83px 1fr;
  gap: 5px;
  max-width: 350px;
  margin-left: auto;
  font-size: 13px;
  text-align: left;
}

.map-layout01 .btn-more {
  width: 220px;
  margin-top: 30px;
}

@media (max-width: 800px) {
  .contents::before {
    height: 15px;
  }

  .sec01 {
    padding: 50px 0;
  }

  .sec01::before {
    height: 15px;
  }

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

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

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

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

  .sec01 .list-top-news02 {
    max-width: 100%;
  }

  .sec01 .btn-more {
    inset: 0;
    position: relative;
    margin-top: 30px;
    width: 100%;
  }

  .sec02 .container,
  .sec02 .footer-inr,
  .sec02 .breadcrumb ul,
  .breadcrumb .sec02 ul {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sec02__bnr {
    margin-top: 20px;
    padding: 30px 20px;
  }

  .sec02__bnr:hover::before {
    background: #26798e;
  }

  .sec02__bnr-ttl {
    margin-bottom: 5px;
  }

  .sec02__bnr-ttl .jp {
    font: 20px;
  }

  .sec03 {
    padding: 60px 0 80px;
  }

  .sec03::before {
    height: 15px;
  }

  .sec03 p+p {
    margin-top: 1rem;
  }

  .sec03__layout {
    display: block;
  }

  .sec03__img {
    max-width: 100%;
    height: 300px;
  }

  .sec03__img img {
    object-position: top;
  }

  .sec03__desc {
    margin-top: 0;
    margin-left: 0;
    padding: 40px 20px;
  }

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

  .sec03__en {
    font-size: 55px;
    top: -32px;
    left: 10px;
  }

  .sec03__btn-wrap {
    display: block;
    margin-top: 30px;
  }

  .sec03__btn-wrap a+a {
    margin-left: 0;
    margin-top: 15px;
  }

  .sec04 {
    padding: 50px 0;
  }

  .sec04::before {
    height: 15px;
  }

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

  .sec04__layout {
    display: block;
    margin: 0 auto;
  }

  .sec04__layout--num01::before {
    width: 140px;
    height: 245px;
    left: -30px;
    bottom: initial;
    top: 10px;
  }

  .sec04__layout--num02 {
    margin: 40px auto 0;
  }

  .sec04__layout--num02::before {
    width: 176px;
    height: 314px;
    right: -30px;
    bottom: initial;
    top: -20px;
  }

  .sec04__layout--num02 .sec04__desc {
    padding: 40px 20px 30px;
  }

  .sec04__layout--num03 {
    margin: 40px auto 0;
  }

  .sec04__layout--num03::before {
    width: 256px;
    height: 227px;
    left: -30px;
    bottom: initial;
    top: 20px;
  }

  .sec04__ttl {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .sec04__img {
    height: 220px;
  }

  .sec04__desc {
    padding: 40px 20px 30px;
  }

  .sec04__num {
    width: 80px;
    padding: 10px 5px 15px;
    border-radius: 0 0 0 5px;
  }

  .sec04__num span {
    font-size: 60px;
  }

  .sec04__num span.en {
    font-size: 12px;
  }

  .sec05 {
    padding: 50px 0 80px;
  }

  .sec05::before {
    height: 15px;
  }

  .sec05 .t-ttl {
    margin-bottom: 50px;
  }

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

  .sec05__img {
    max-width: 100%;
  }

  .sec05__desc {
    max-width: 100%;
    padding: 30px 20px;
    margin-top: 0;
    margin-right: 0;
  }

  .sec05__ttl {
    font-size: 24px;
    margin-bottom: 20px;
    padding-left: 35px;
  }

  .sec05__ttl::before {
    width: 23px;
    height: 30px;
    top: 4px;
  }

  .sec05__en {
    font-size: 55px;
    top: -32px;
    left: 10px;
  }

  .sec05__list {
    justify-content: space-between;
  }

  .sec05__list>li {
    height: 210px;
    max-width: 48%;
  }

  .sec05__list>li a {
    padding-bottom: 30px;
  }

  .sec05__list>li a::before {
    width: 32px;
    height: 32px;
    right: 15px;
    bottom: 15px;
  }

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

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

  .sec05__list>li:not(:nth-child(4)) {
    margin-right: 0;
  }

  .sec05__listIcon {
    width: 60px;
    height: 60px;
  }

  .sec05__listTtl .jp {
    font-size: 17px;
  }

  .sec05 .btn-more {
    margin-top: 30px;
  }

  .sec06 {
    padding: 50px 0 80px;
  }

  .sec06__ttl {
    width: 100%;
  }

  .sec06 .container,
  .sec06 .footer-inr,
  .sec06 .breadcrumb ul,
  .breadcrumb .sec06 ul {
    display: block;
  }

  .sec06 .list-top-news03 {
    max-width: 100%;
  }

  .map-layout01 {
    padding: 0 0 80px;
  }

  .map-layout01 .container,
  .map-layout01 .footer-inr,
  .map-layout01 .breadcrumb ul,
  .breadcrumb .map-layout01 ul {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-layout01 iframe {
    height: 300px;
  }

  .map-layout01 .l-logo {
    margin-bottom: 20px;
  }

  .map-layout01 .l-logo img {
    max-width: 200px;
  }
}

/*------------
Post
--------------*/
/*お知らせ*/
.list-top-news01 {
  font-size: 14px;
}

.list-top-news01 li {
  display: flex;
  text-align: left;
}

.list-top-news01 time {
  display: inline-block;
  color: #888;
  width: 90px;
  margin-right: 40px;
}

.list-top-news01 time::after {
  content: "|";
  font-size: 12px;
  margin: 0 0 0 20px;
  vertical-align: 2px;
}

.list-top-news01 a {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}

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

.list-top-news02 .list-item {
  display: flex;
  align-items: center;
  padding: 20px 15px;
  border-bottom: 1px solid #ddd;
}

.list-top-news02 .list-item:first-child {
  border-top: 1px solid #ddd;
}

.list-top-news02 time {
  font-family: "Montserrat", serif;
  font-size: 13px;
  color: #9A9A9A;
  margin-right: 30px;
}

.list-top-news02 .list-txt {
  width: 100%;
  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;
}

.list-top-news03 {
  position: relative;
  border-top: 1px solid #ddd;
}

.list-top-news03 .list-item {
  border-bottom: 1px solid #ddd;
}

.list-top-news03 .list-data {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.list-top-news03 time {
  font-family: "Montserrat", serif;
  color: #9A9A9A;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-right: 15px;
}

.list-top-news03 .list-txt {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-weight: 500;
  line-height: 1.5;
}

.list-top-news03 a {
  display: block;
  transition: 0.3s ease;
  padding: 25px 0 20px 20px;
}

.list-top-news03 a:hover {
  opacity: 0.6;
}

@media (max-width: 800px) {

  /*お知らせ*/
  .list-top-news01 {
    margin-top: 30px;
    font-size: 14px;
  }

  .list-top-news01 li {
    display: block;
  }

  .list-top-news01 time {
    width: auto;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .list-top-news01 time::after {
    display: none;
  }

  .list-top-news02 .list-item {
    display: block;
    padding: 15px 0;
  }

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

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

  .list-top-news03 .list-data {
    margin-bottom: 10px;
  }

  .list-top-news03 a {
    padding: 15px 0;
  }
}

/*------------
下層レイアウト
--------------*/
.page-ttl {
  margin-top: 85px;
  width: 100%;
  background: linear-gradient(180deg, #E1F4F4 0%, #C9E3F4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 50px 5%;
  height: 450px;
  min-height: 450px;
  position: relative;
}

.page-ttl::before {
  content: "";
  position: absolute;
  background: url(../images/wave_01.png) repeat-x center top/cover;
  height: 62px;
  width: 100%;
  left: 0;
  bottom: 0;
}

.page-ttl-main {
  font-family: "Montserrat", serif;
  color: #BCCEE2;
  font-weight: 300;
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.page-ttl-sub {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  color: #25429C;
  font-size: 22px;
  font-weight: 500;
}

.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 {
  position: relative;
}

.u-contents::before {
  content: "";
  position: absolute;
  background: url(../images/wave_02.png) repeat-x center top/cover;
  height: 62px;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}

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

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

  .page-ttl::before {
    height: 25px;
  }

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

  .page-ttl-sub {
    font-size: 15px;
  }

  .u-contents::before {
    height: 15px;
  }

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

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

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

.u-h3,
.post-ttl,
.postdata h2 {
  font-size: 24px;
  color: #25429C;
  padding-left: 28px;
  margin-bottom: 30px;
  position: relative;
}

.u-h3::before,
.post-ttl::before,
.postdata h2::before {
  content: "";
  position: absolute;
  background: #5AB2C9;
  height: 24px;
  width: 8px;
  left: 0;
  top: 10px;
}

.u-h302 {
  font-size: 24px;
  color: #25429C;
  margin-bottom: 15px;
}

.u-h4,
.postdata h3 {
  font-size: 19px;
  color: #568CC7;
  margin-bottom: 15px;
  position: relative;
}

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

.num-ttl .num {
  background: #25429C;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  line-height: 25px;
  padding: 0 9px;
  margin-right: 20px;
  vertical-align: 3px;
  position: relative;
  font-family: "Montserrat", serif;
}

@media (max-width: 800px) {

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

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

  .u-h3::before,
  .post-ttl::before,
  .postdata h2::before {
    top: 2px;
  }

  .u-h302 {
    font-size: 20px;
  }

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

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

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

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

.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 {
  background: #F9F6F0;
  padding: 70px 0;
}

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

.tall.bg01 {
  background: #F9F6F0;
}

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

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

.column2-left {
  width: 740px;
}

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

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

.side-navi {
  border: 1px solid #25429C;
}

.side-navi .ttl {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1.7;
  padding: 15px 20px;
  border-bottom: 1px solid #25429C;
}

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

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

.side-navi ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #25429C;
}

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

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

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

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

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

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

.l-style01 {
  display: flex;
}

.l-style01 .l-img {
  flex: 1;
  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-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;
}

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

.l-style03 .l-desc {
  background: #fff;
  padding: 55px;
  margin: 110px 0 0 -55px;
  flex: 1;
  position: relative;
}

.l-style03 .l-ttl {
  font-size: 24px;
  margin-bottom: 35px;
}

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

.l-style03.reverse .l-desc {
  padding: 55px;
  margin: 110px -55px 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: 100%;
    position: relative;
    z-index: 3;
  }

  .l-style03 .l-desc {
    background: #fff;
    padding: 20px 0 30px;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .l-style03 .l-desc::after {
    content: "";
    width: 100vw;
    height: calc(100% + 60px);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: #fff;
    z-index: -1;
  }

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

  .l-style03.reverse .l-desc {
    padding: 30px 0;
    margin: 0;
  }
}

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

.list-col2 .list-item {
  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-img {
  margin-bottom: 20px;
}

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

@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-card01 .list-item {
  border: 1px solid #25429C;
  background: #fff;
}

.list-card01 .list-img {
  text-align: center;
  margin-bottom: 15px;
}

.list-card01 .num {
  display: block;
  color: #5AB2C9;
  font-family: "Montserrat", serif;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 5px;
}

.list-card01 .list-ttl {
  border-bottom: 1px solid #25429C;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.list-card01 .list-ttl.type01 {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-card03 .list-item {
  background-color: #fff;
}

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

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

.list-card01,
.list-card03 {
  display: flex;
  flex-wrap: wrap;
}

.list-card01.col1 .list-item,
.list-card03.col1 .list-item {
  width: 100%;
  height: 250px;
  padding: 25px;
}

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

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

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

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

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

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

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

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

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

.list-card01.col4 .list-item:not(:nth-child(4n)),
.list-card03.col4 .list-item:not(:nth-child(4n)) {
  margin-right: 2%;
}

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

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

.list-card01.center,
.list-card03.center {
  justify-content: center;
}

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

  .list-card01 .list-ttl.type01 {
    height: auto;
  }

  .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.col1 .list-item,
  .list-card03.col1 .list-item {
    height: 100%;
    padding: 20px;
  }

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

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

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

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

.list-check li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 7px;
  border-left: 2px solid #25429C;
  border-bottom: 2px solid #25429C;
  transform: rotate(-45deg);
}

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

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

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

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

.dl-style01 {
  display: flex;
  flex-wrap: wrap;
}

.dl-style01 dt {
  background: #25429C;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  padding: 20px;
  width: 25%;
}

.dl-style01 dt .num {
  display: block;
  color: #fff;
  font-family: "Montserrat", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 5px;
}

.dl-style01 dt:not(:first-child) {
  margin-top: 15px;
}

.dl-style01 dd {
  background: #fff;
  padding: 20px;
  width: 75%;
}

.dl-style01 dd:not(:nth-child(2)) {
  margin-top: 15px;
}

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

  .dl-style01 dt {
    padding: 15px;
    width: 100%;
  }

  .dl-style01 dd {
    padding: 15px;
    width: 100%;
  }

  .dl-style01 dd:not(:nth-child(2)) {
    margin-top: 0;
  }
}

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

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

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

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

.list-anchor-link a::before {
  content: "";
  background: url(../images/share/icon_arrow_down.svg) no-repeat 0 0/contain;
  width: 24px;
  height: 24px;
  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 25px;
  }

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

.merit-demerit {
  display: flex;
}

.merit-demerit .list-item {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border-top: 2px solid #25429C;
}

.merit-demerit .list-item:nth-child(even) {
  margin-left: 4%;
  border-top: 2px solid #5AB2C9;
}

.merit-demerit .list-item:nth-child(even) .list-ttl .en {
  color: #5AB2C9;
}

.merit-demerit .list-item:nth-child(even) .list-disc>li::before {
  background: #5AB2C9;
}

.merit-demerit .list-ttl {
  margin-bottom: 20px;
}

.merit-demerit .list-ttl .en {
  font-size: 16px;
  font-family: "Montserrat", serif;
  color: #25429C;
}

.merit-demerit .list-ttl .jp {
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-right: 15px;
}

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

  .merit-demerit .list-item {
    padding: 30px 20px;
  }

  .merit-demerit .list-item:nth-child(even) {
    margin-left: 0;
  }

  .merit-demerit .list-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .merit-demerit .list-ttl {
    margin-bottom: 10px;
  }

  .merit-demerit .list-ttl .en {
    font-size: 14px;
    margin-right: 10px;
  }

  .merit-demerit .list-ttl .jp {
    font-size: 20px;
  }
}

.before-after {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.before-after:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #25429C;
}

.before-after .l-item {
  width: 45%;
}

.before-after .l-img {
  position: relative;
  margin-bottom: 10px;
  background-color: #F9F6F0;
}

.before-after .l-img img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.before-after .l-txt {
  line-height: 1;
  text-align: center;
  font-family: "Montserrat", serif;
  font-weight: 500;
  font-size: 18px;
}

@media (max-width: 800px) {
  .before-after {
    display: block;
    justify-content: space-between;
    position: relative;
  }

  .before-after:after {
    border-width: 16px 0 16px 16px;
    transform: translate(-50%, -50%) rotate(90deg);
  }

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

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

  .before-after .l-img {
    position: relative;
    margin-bottom: 10px;
    background-color: #F9F6F0;
  }

  .before-after .l-img img {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }

  .before-after .l-txt {
    line-height: 1;
    text-align: center;
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 18px;
  }
}

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

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

.staff-layout .l-img figcaption {
  color: #25429C;
  font-weight: 500;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
}

.staff-layout .l-img .job {
  display: block;
  font-size: 14px;
}

.staff-layout .l-img .name {
  font-size: 20px;
}

.staff-layout .l-img .kana {
  font-size: 11px;
}

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

.staff-layout .l-ttl {
  color: #25429C;
  border-bottom: 2px solid #25429C;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  width: fit-content;
}

.staff-layout .l-message {
  margin-top: 0;
  font-size: 25px;
  font-weight: 500;
}

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

.card-profile {
  display: block;
}

.card-profile .item {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
}

.card-profile .card-ttl {
  border-bottom: 1px solid #ddd;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.card-profile .card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

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

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

  .staff-layout .l-img figcaption {
    flex-direction: column;
    gap: 10px;
  }

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

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

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

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

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

  .card-profile .card-wrap {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

.flow-style {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.flow-style>li {
  background-color: #fff;
  padding: 20px;
  position: relative;
}

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

.flow-style .flow-num {
  font-size: 25px;
  line-height: 1;
  color: #25429C;
  font-family: "Montserrat", serif;
  position: absolute;
  top: -15px;
  left: 20px;
  font-weight: 500;
}

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

.flow-style .flow-ttl {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.flow-style01 {
  border: 1px solid #ddd;
  padding: 50px;
  background: #fff;
}

.flow-style01 .l-item {
  position: relative;
}

.flow-style01 .l-item:not(:last-child) {
  border-bottom: 2px solid #ddd;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.flow-style01 .l-item:not(:last-child)::before,
.flow-style01 .l-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
}

.flow-style01 .l-item:not(:last-child)::before {
  background: url(../images/share/flow_arrow.svg) center/contain no-repeat;
  bottom: -20px;
  transform: translateX(-50%);
  height: 37px;
  width: 25px;
  z-index: 2;
}

.flow-style01 .l-item:not(:last-child)::after {
  background: #fff;
  width: 70px;
  height: 20px;
  bottom: -18px;
  transform: translateX(-50%);
  z-index: 1;
}

.flow-style03 {
  display: grid;
}

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

.flow-style03>li::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent #5AB2C9;
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.flow-style03>li:last-child::after {
  display: none;
}

.flow-style03 .list-ttl {
  display: block;
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.5;
}

.flow-style03 .num {
  color: #fff;
  background-color: #25429C;
  display: table;
  font-size: 13px;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
  border-radius: 20px;
}

.flow-style03 .list-img {
  text-align: center;
  margin-bottom: 15px;
}

.flow-style03 .list-desc {
  margin-bottom: 15px;
}

.flow-style03 .list-btn {
  margin-top: 20px;
}

.flow-style03 .btn-more {
  width: 100%;
  max-width: 100%;
}

.flow-style03.col2 {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.flow-style03.col2 .list-item {
  padding: 30px;
}

.flow-style03.col3 {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.flow-style03.col3>li::after {
  right: -22px;
}

.flow-style03.col4 {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.flow-style03.col4>li {
  padding: 20px;
}

.flow-style03.col4>li::after {
  right: -17px;
}

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

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

  .flow-style01 {
    padding: 25px 20px;
  }

  .flow-style01 .l-item:not(:last-child) {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .flow-style01 .l-item:not(:last-child)::before {
    bottom: -15px;
    width: 16.6666666667px;
    height: 24.6666666667px;
  }

  .flow-style03>li {
    padding: 25px 20px;
    position: relative;
  }

  .flow-style03>li::after {
    right: 50%;
    top: inherit;
    bottom: -32px;
    transform: translateX(50%) rotate(90deg);
  }

  .flow-style03 .list-img.sp-small img {
    width: 65%;
  }

  .flow-style03.col2,
  .flow-style03.col3,
  .flow-style03.col4 {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 40px;
  }

  .flow-style03.col2 .list-item,
  .flow-style03.col3 .list-item,
  .flow-style03.col4 .list-item {
    padding: 25px 20px;
  }

  .flow-style03.col3>li {
    padding: 25px 20px;
  }

  .flow-style03.col3>li::after {
    right: 50%;
  }

  .flow-style03.col4>li {
    padding: 25px 20px;
  }

  .flow-style03.col4>li::after {
    right: 50%;
  }
}

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

.table-style01 th:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.table-style01 th {
  background-color: #25429C;
  font-weight: 500;
  color: #fff;
  padding: 15px;
  width: 30%;
}

.table-style01 td {
  border-bottom: 1px solid #ddd;
  padding: 10px 30px;
  background: #fff;
}

@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;
    border-bottom: none;
  }

  .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: #25429C;
  }

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

.tel-layout {
  background: #fff;
  max-width: 800px;
  padding: 40px;
  margin: 0 auto;
}

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

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

.tel-layout .l-time dt {
  border: 1px solid #25429C;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #25429C;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tel-layout .tel {
  color: #25429C;
}

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

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

.box-style02 {
  background: #fff;
  border: 1px solid #25429C;
  padding: 50px;
  position: relative;
}

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

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

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

.box-style04 {
  background-image: linear-gradient(180deg, rgba(78, 194, 203, 0.71), rgba(13, 84, 136, 0.71));
  color: #fff;
  text-align: center;
  padding: 45px 40px 50px;
}

.box-style04 .box-ttl-deco {
  font-size: 20px;
  font-family: "Montserrat", serif;
  line-height: 1;
  margin-bottom: 10px;
}

.box-style04 .box-ttl {
  font-size: 24px;
  margin-bottom: 25px;
}

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

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

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

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

  .box-style04 {
    padding: 25px 20px;
  }

  .box-style04 .box-ttl-deco {
    font-size: 16px;
  }

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

.gallery-slider01 {
  overflow: hidden;
}

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

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

.gallery-slider01 .splide__arrow--next,
.gallery-slider01 .splide__arrow--prev {
  fill: #25429C;
}

.gallery-slider01 .splide__arrow--next::after,
.gallery-slider01 .splide__arrow--prev::after {
  display: none;
}

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

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

.gallery-slider01 .splide__arrow--prev {
  top: 50%;
  transform: translateY(-50%);
  left: calc((100% - 1024px) / 2);
}

.gallery-slider01 .splide__arrow--next {
  top: 50%;
  transform: translateY(-50%);
  right: calc((100% - 1024px) / 2);
}

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

.gallery-slider01 .item-ttl {
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 5px;
}

@media (max-width: 800px) {
  .gallery-slider01 .item-desc {
    margin-top: 15px;
  }

  .gallery-slider01 .item-ttl {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #25429C;
  font-size: 18px;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

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

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

.calculation-layout .item {
  background-color: #fff;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 110px;
  position: relative;
}

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

.calculation-layout .item:last-child {
  background-color: #25429C;
  color: #fff;
  width: 100%;
}

.calculation-layout .item:last-child::before {
  content: "=";
  color: #25429C;
  left: -23px;
}

.u-style01 .box-style02 {
  padding: 50px 14.65%;
  margin-bottom: 90px;
}

.u-style01 .box-style02::before {
  content: "";
  position: absolute;
  background: url(../images/under/arrow.svg) center/contain no-repeat;
  bottom: -59px;
  left: 50%;
  transform: translateX(-50%);
  height: 59px;
  width: 26px;
}

.u-style01 .ttl {
  text-align: center;
  font-size: 24px;
  color: #25429C;
}

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

  .u-style01 .box-style02 {
    padding: 25px;
    margin-bottom: 50px;
  }

  .u-style01 .box-style02::before {
    bottom: -40px;
    height: 39.3333333333px;
    width: 17.3333333333px;
  }

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

/*------------
Footer
--------------*/
.footer {
  position: relative;
  background: linear-gradient(180deg, #E1F4F4 0%, #C9E3F4 100%);
  padding-top: 70px;
}

.footer-inr {
  padding-bottom: 90px;
}

.footer-top .footer-inr {
  display: flex;
  justify-content: space-between;
}

.footer-top .f-left {
  flex: 1;
  max-width: 490px;
  width: 100%;
  margin-right: 50px;
}

.footer-top .f-right {
  flex: 1;
  max-width: 386px;
  width: 100%;
}

.footer .f-logo {
  display: block;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer .f-access {
  margin-bottom: 10px;
}

.footer .f-navi {
  display: flex;
  justify-content: space-between;
}

.footer .f-navi-item:not(:last-child) {
  margin-right: 5%;
}

.footer .f-navi-ttl {
  margin-bottom: 15px;
}

.footer .tel {
  margin-bottom: 15px;
}

.footer .f-navi-list li {
  position: relative;
}

.footer .f-navi-list li+li {
  margin-top: 10px;
}

.footer .f-navi-list li a:hover {
  text-decoration: underline;
}

.footer .f-navi-list li.child {
  font-size: 14px;
  padding-left: 15px;
}

.footer .f-navi-list li.child+.child {
  margin-top: 8px;
}

.footer .f-navi-list li.child::before {
  position: absolute;
  content: "";
  top: 14px;
  left: 0;
  background: #333;
  transform: none;
  width: 6px;
  height: 1px;
  border: none;
}

.footer .copyright {
  color: #939393;
  padding: 10px 10px 50px;
}

.footer .copyright .container,
.footer .copyright .breadcrumb ul,
.breadcrumb .footer .copyright ul,
.footer .copyright .footer-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .copyright-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: #333;
  font-size: 12px;
}

.footer .copyright-links li+li::before {
  content: "|";
  margin: 0 15px;
}

.footer .copyright-links a {
  line-height: 1.5;
}

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

.footer .pagetop {
  position: absolute;
  display: block;
  background: url(../images/share/pagetop.svg) no-repeat center/contain;
  width: 14px;
  height: 125px;
  bottom: 35px;
  right: 35px;
  z-index: 10;
  transition: 0.3s ease;
}

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

.fixed-menu02 {
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, rgb(103, 177, 196) 0%, rgb(86, 140, 199) 100%);
  color: #fff;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transition: transform 0.5s;
  transform: translate(400px, -50%);
  z-index: 10;
}

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

.fixed-menu02 .ttl {
  border-radius: 5px 0 0 5px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  font-feature-settings: normal;
  padding: 40px 0;
  width: 50px;
  font-family: "Noto Sans JP", sans-serif;
}

.fixed-menu02 .ttl i {
  width: 13px;
  height: 16.5px;
  margin-bottom: 5px;
}

.fixed-menu02 .tel {
  margin: 0 auto 5px;
  color: #fff;
}

.fixed-menu02 .tel::before {
  background: url(../images/share/icon_tel_w.svg) no-repeat center/contain;
}

.fixed-menu02 .inner {
  display: grid;
  place-content: center;
  text-align: center;
  padding: 20px 48px 25px;
  width: 400px;
}

.fixed-menu02 .fixed-desc {
  padding: 20px 15px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.fixed-menu02 .fixed-ttl {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 15px;
}

.fixed-menu02 .fixed-txt {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 5px;
}

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

  .footer-inr {
    padding-bottom: 40px;
  }

  .footer-top .footer-inr {
    display: block;
  }

  .footer-top .f-left {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .footer .f-logo {
    max-width: 240px;
    margin: 0 auto 20px;
  }

  .footer .f-navi {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer .f-navi-item {
    flex: none;
    width: 48%;
  }

  .footer .f-navi-item:not(:last-child) {
    margin-right: 0;
  }

  .footer .f-navi-item:nth-child(n+3) {
    margin-top: 20px;
  }

  .footer .f-navi-ttl {
    font-size: 14px;
  }

  .footer .f-navi-list li {
    font-size: 14px;
  }

  .footer .f-navi-list li+li {
    margin-top: 7px;
  }

  .footer .f-navi-list li.child {
    font-size: 13px;
  }

  .footer .f-navi-list li.child+.child {
    margin-top: 5px;
  }

  .footer .f-navi-list li.child::before {
    top: 12px;
  }

  .footer .copyright {
    padding: 20px 0 65px;
    text-align: center;
  }

  .footer .copyright .container,
  .footer .copyright .breadcrumb ul,
  .breadcrumb .footer .copyright ul,
  .footer .copyright .footer-inr {
    display: block;
    justify-content: space-between;
    align-items: center;
  }

  .footer .copyright-links {
    margin-bottom: 15px;
  }

  .footer .pagetop {
    display: none;
  }

  .fixed-menu02 {
    display: none;
  }
}

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

.list-post-type02 .list-item {
  padding: 50px;
  border: 1px solid #ddd;
}

.list-post-type02 .list-item:not(:last-child) {
  margin-bottom: 50px;
}

.list-post-type02 .list-cont+.list-cont {
  margin-top: 35px;
}

.list-post-type02 .btn-more {
  display: block;
  margin: 45px auto 0;
}

.list-post-type02.single .list-item {
  padding: 0;
  border: none;
}

.post-layout {
  display: flex;
}

.post-layout .post-img {
  flex: 1;
  margin-right: 50px;
}

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

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

.post-case-layout+.post-case-layout {
  margin-top: 80px;
}

/*詳細ページ*/
.post-single-img {
  text-align: center;
  margin-bottom: 40px;
}

.postdata h4 {
  font-size: 18px;
  color: #5AB2C9;
}

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

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

.postdata h6 {
  font-size: 16px;
  color: #5AB2C9;
}

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

.postdata a {
  text-decoration: underline;
}

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

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

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

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

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

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

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

.post-data time {
  font-size: 13px;
  font-family: "Montserrat", serif;
  color: #9A9A9A;
  line-height: 1;
}

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

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

.post-category02 {
  line-height: 1;
  margin-left: -2px;
}

.post-category02 span {
  display: inline-block;
  font-size: 12px;
  border: 1px solid #25429C;
  color: #25429C;
  padding: 5px 10px 6px;
  margin: 2px;
}

/*セレクト式カテゴリー*/
.select-area {
  margin-bottom: 50px;
}

.select-area .select-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.select-area .select-box:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border-top: 8px solid #5AB2C9;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.select-area .select-category {
  -webkit-appearance: none;
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  border-radius: 0;
  background: #fff;
  font-size: 16px;
  color: #5AB2C9;
  vertical-align: middle;
  height: 50px;
  padding: 5px 15px;
  border: none;
  width: 100%;
  cursor: pointer;
}

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

/*一覧用ページャー*/
.post-number {
  margin-top: 100px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  font-family: "Montserrat", serif;
  font-weight: 500;
}

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

.post-number a:hover {
  color: #25429C;
}

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

.post-number .current::after {
  content: "";
  border-bottom: 2px solid #25429C;
  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: "Montserrat", serif;
  font-weight: 500;
}

.post-number-single a {
  display: inline-block;
  color: #25429C;
}

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

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

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

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

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

  .list-post-type02 .list-item {
    padding: 25px 20px;
  }

  .list-post-type02 .list-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .list-post-type02 .list-cont+.list-cont {
    margin-top: 20px;
  }

  .list-post-type02 .btn-more {
    display: block;
    margin: 30px auto 0;
  }

  .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 {
    align-items: flex-start;
    margin-bottom: 10px;
  }

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

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

  /*詳細ページ*/
  /*セレクト式カテゴリー*/
  /*一覧用ページャー*/
  .post-number {
    margin-top: 60px;
  }
}

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

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

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

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

.side-contents-ttl {
  border-bottom: 1px solid #e8ecf0;
  font-size: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

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

.side-area-item-ttl {
  font-size: 13px;
  margin-bottom: 7px;
}

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

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

.side-area-links li+li {
  margin-top: 5px;
}

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

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

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

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

  .sidebar-layout .tall+.tall {
    margin-top: 50px;
  }

  .sidebar-layout.sp-reverse {
    flex-direction: column;
  }

  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }

  .main-contents {
    width: 100%;
    padding: 0;
  }

  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }

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

  .side-contents-ttl {
    font-size: 15px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

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

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
.btn-more {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 13px 50px 13px 40px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background-color: #5AB2C9;
  border-radius: 3px;
  transition: 0.3s ease;
  position: relative;
}

.btn-more::before {
  content: "";
  position: absolute;
  background: url(../images/share/icon_btn-arrow.svg) no-repeat center/contain;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15.4px;
  height: 7.7px;
}

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

.btn-more.white {
  background: #fff;
  color: #5AB2C9;
}

.btn-more.white::before {
  background: url(../images/share/icon_btn-arrow_b.svg) no-repeat center/contain;
}

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

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

.btn-icon {
  background: #25429C;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  color: #fff;
}

.btn-icon img {
  width: 20px;
  margin-right: 10px;
}

.btn-line {
  background: #4CC764;
  color: #fff;
  padding: 10px 25px;
}

.btn-line img {
  line-height: 1;
  margin: 0 10px 0 -20px;
}

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

  .btn-icon,
  .btn-line {
    width: 100%;
  }

  .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
-----------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 11px;
}

.txt-large {
  font-size: 20px;
}

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

.underline {
  text-decoration: underline;
}

.marker span {
  background: linear-gradient(transparent 60%, #c4d6ea 40%);
  padding-bottom: 3px;
}

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

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

.link {
  text-decoration: underline;
}

.link.url {
  overflow-wrap: break-word;
}

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

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

.m-auto {
  margin: 0 auto;
}

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

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

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

/*診療カレンダー*/
:root {
  --event01: #919191;
  --event02: #5AB2C9;
  --event03: #25429C;
  --event04: #333;
}

.business-calendar-box-wrap {
  background: #fff;
  padding: 40px 50px;
}

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

.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border-top: none !important;
  border-left: none !important;
}

.business-calendar-box-wrap .business-calendar caption {
  font-size: 18px;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: center;
  margin: 0 0 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #25429C;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 25px;
  vertical-align: -1px;
  display: inline-block;
  margin: 0 10px;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  width: 25px;
  height: 25px;
}

.business-calendar-box-wrap .business-calendar th {
  border-top: 1px solid #DBDEEA;
  text-align: center;
  font-size: 14px;
  padding: 15px 5px 7px;
  width: 14%;
  font-weight: 500;
  background: #fff;
  border-right: none;
  border-bottom: none;
}

.business-calendar-box-wrap .business-calendar td {
  position: relative;
  border-right: none;
  border-bottom: none;
  font-size: 15px;
  padding: 7px 5px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  position: absolute;
  background: #ccc;
  width: 30px;
  height: 30px;
  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: 15px;
}

.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);
  grid-gap: 3%;
}

.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
  background: #fff;
  opacity: 1;
}

.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;
  background: #fff !important;
}

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

.list-event li {
  font-size: 14px;
  line-height: 1;
  margin: 0 10px 0 0;
}

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

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

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

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

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

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

  .list-event li {
    font-size: 13px;
    margin: 0 5px 0 0;
  }
}

/*診療時間*/
.time-table {
  background: #fff;
  text-align: center;
  font-weight: 500;
  overflow: hidden;
}

.time-table-head {
  background-color: #568CC7;
  border: 1px solid #eee;
  color: #fff;
}

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

.time-table-body:nth-of-type(3) {
  border-top: 1px solid #dfdfdf;
}

.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 14px;
  color: #568CC7;
}

.time-table-body .item.slash {
  color: #37414F;
}

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

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

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

.time-table-txt {
  line-height: 1.5;
  font-size: 14px;
  margin-top: 10px;
}

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

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

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

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

.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: 25px;
  font-family: "Montserrat", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-left: 20px;
  position: relative;
}

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

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

/*------------
splide-core.min.css　※編集禁止
-------------*/
@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>.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__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 {
  -ms-flex-align: center;
  align-items: center;
  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;
  pointer-events: auto;
}

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

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

/*------------
splide
-------------*/
.splide__arrow {
  align-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 64px;
  width: 64px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border: solid #25429C;
  border-width: 4px 4px 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:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

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

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

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

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

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

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

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

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

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

/*------------
アニメーション
--------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

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

/*------------
Loading
-------------*/
#loading {
  width: 100vw;
  height: 100vh;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

#loading_barWrap {
  width: 30vw;
  height: calc(1rem + 5px);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

#loading_bar {
  width: 0;
  height: 5px;
  background: #fff;
  transition-duration: 1s;
}

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

.loadingNone {
  animation: loadingAnime 1s forwards;
}

@keyframes loadingAnime {
  0% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

.faq-style {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  .item {
    padding: 40px 40px 40px 100px;
    & + .item {
      border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
  }

  dt {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
  }

  .faq-icon {
    color: #01B0F1;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: 0;
    left: -60px;
  }
}

@media (max-width: 800px) {
  .faq-style {
    .item {
      padding: 40px 0 40px 60px;
    }
    dt {
      line-height: 1.5;
      margin-bottom: 15px;
    }
  }
}
