@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.8em;
}

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,
video {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

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: #241A17;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "FP-ヒラギノ明朝 ProN W3";
  letter-spacing: 0.15em;
}

th,
dt {
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

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

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

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

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

@media (max-width: 800px) {
  html {
    font-size: 15px;
  }
  :target {
    scroll-margin-top: 60px;
  }
}
.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}
.container.wide {
  max-width: 1300px;
}
.container.narrow {
  max-width: 800px;
}

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

/*------------
Header02
--------------*/
.header-layout {
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  width: 100%;
}
.header-layout .h-logo {
  flex: 1;
}
.header-layout .h-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 20px;
  margin-bottom: 13px;
}

@media (max-width: 1024px) {
  .header-layout {
    padding: 10px;
    height: 75px;
    background-color: #fff;
  }
  .header-layout .h-logo {
    max-width: 80%;
  }
  .header-layout .h-logo img {
    max-height: 75px;
  }
  .header-layout .h-utility {
    display: none;
  }
}
/*------------
Gnavi
--------------*/
/*normal*/
.gnavi-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.gnavi-list > li {
  margin-left: 30px;
}
.gnavi-list > li > a {
  display: inline-block;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  letter-spacing: 0.05em;
  font-size: 16px;
  color: #fff;
  padding-bottom: 4px;
  position: relative;
}
.gnavi-list > li > a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  transition: 0.5s all;
}
.gnavi-list > li > a:hover::after {
  width: 100%;
}
.page_319 .gnavi-list > li > a{
	font-size:12px;
}

/*dropdown*/
.dropdown {
  display: flex;
  align-items: center;
  position: relative;
}
.dropdown::after {
  content: "";
  display: block;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  transform: rotate(45deg);
  transform-origin: right;
}
.dropdown > a:hover {
  opacity: 0.5;
}
.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}
.dropdown .sub-menu {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  position: absolute;
  top: 30px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}
.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}
.dropdown:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

/*drawer*/
.gnavi-drawer {
  pointer-events: none;
  background-color: #f5f5f5;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
}
.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  display: grid;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.gnavi-drawer-wrapper {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
}

.gnavi-drawer-right-area {
  width: 50%;
  padding: 100px 5%;
  overflow: auto;
}

.gnavi-drawer-links {
  display: grid;
  grid-gap: 30px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
}
.gnavi-drawer-links > li {
  font-size: 16px;
}
.gnavi-drawer-links > li > a {
  text-decoration: underline;
}
.gnavi-drawer-links > li > a:hover {
  text-decoration: none;
}
.gnavi-drawer-links .sub-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px 20px;
  margin-top: 15px;
  font-size: 14px;
}
.gnavi-drawer-links .sub-menu > li > a:hover {
  text-decoration: underline;
}

.gnavi-drawer-left-area {
  background: url(../images/share/gnavi-drawer_bg.jpg) no-repeat center/cover;
  width: 50%;
  height: 100%;
  padding: 0 0 0 5%;
  display: flex;
  position: fixed;
  inset: 0;
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero-wrap {
  position: relative;
}

.hero {
  position: relative;
}
.hero .hero-img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.hero .splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.hero .splide__pagination {
  justify-content: flex-end;
  right: 10px;
}

.hero-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #fff;
  text-align: center;
}
.hero-catch .ttl {
  font-size: 64px;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 50px;
}
.hero-catch .sub-ttl {
  font-size: 25px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
}
.hero-catch .sub-tt small{
	font-size:18px;
}
.hero-post-layout01 {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
  display: flex;
}
.hero-post-layout01 .l-ttl {
  display: grid;
  place-content: center;
  place-items: center;
  font-family: "EB Garamond", serif;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  background: #233957;
  text-align: center;
  padding: 20px 60px;
  min-width: 180px;
}
.hero-post-layout01 .l-desc {
  flex: 1;
}

.list-top-news {
  color: #333;
  background: #F5F5F5;
}
.list-top-news a {
  display: flex;
  padding: 24px 30px;
}
.list-top-news a:hover .ttl {
  text-decoration: underline;
}
.list-top-news time {
  font-family: "EB Garamond", serif;
  display: inline-block;
  margin-right: 25px;
}
.list-top-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: "FP-ヒラギノ明朝 ProN W3";
}

@media (max-width: 800px) {
  .hero {
    margin: 75px 0 0 0;
  }
  .hero .splide__slide img {
    height: 50vh;
  }
  .hero .splide__pagination {
    display: none;
  }
  .hero .hero-img img {
    height: auto;
  }
  .hero-catch .ttl {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .hero-catch .sub-ttl {
    font-size: 13px;
    white-space: nowrap;
  }
  .hero-post-layout01 {
    display: block;
    width: 100%;
    bottom: 0;
    position: static;
    transform: none;
    box-shadow: 0px 5px 5px 0px #eaeaea;
  }
  .hero-post-layout01 .l-ttl {
    padding: 10px;
  }
  .list-top-news a {
    display: flex;
    align-items: center;
    width: 90%;
    margin: auto;
    padding: 20px 0;
  }
  .list-top-news time {
    font-size: 13px;
  }
  .list-top-news .ttl {
    -webkit-line-clamp: 2;
  }
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-h2 {
  text-align: center;
  margin-bottom: min(90px, 5vw);
}
.t-h2 .en {
  display: block;
  font-size: 50px;
  font-family: "EB Garamond", serif;
  line-height: 1;
  padding-bottom: 10px;
}
.t-h2 .jp {
  display: block;
  font-size: 50px;
  line-height: 1;
}

.t-h3 {
  font-size: 34px;
  letter-spacing: 0.1em;
  margin-bottom: min(120px, 2vw);
}

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 40px;
  }
  .t-h2 .en {
    font-size: 30px;
  }
	.t-h2 .jp{
		font-size: 30px;
	}
  .t-h3 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
/*------------
Block
--------------*/
.sec01 {
  padding: 80px 0;
  background: #F5F5F5;
}

.l-t_sec {
  display: flex;
}
.l-t_sec .l-img {
  width: 40%;
  margin: 0 min(120px, 5vw) 0 0;
}
.l-t_sec .l-img figure {
  position: relative;
  z-index: 1;
}
.l-t_sec .l-img figure::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 17px);
  background: #FCC830;
  position: absolute;
  left: -17px;
  top: -17px;
  z-index: -1;
}
.l-t_sec .l-desc {
  flex: 1;
}
.l-t_sec.reverse {
  flex-direction: row-reverse;
}
.l-t_sec.reverse .l-img {
  margin: 0 0 0 min(120px, 5vw);
}

.sec02 {
  padding: 160px 0;
}

.h2-container {
  margin: 0 auto;
  max-width: 1500px;
  width: 90%;
}
.h2-container .t-h2 {
  text-align: left;
}

.sec03 {
  padding: 160px 0;
  background: #F5F5F5;
}

.sec04 {
  padding: 160px 0;
}

.sec04-list li {
  background: #F5F5F5;
  border-bottom: 1px solid #000;
  padding: 38px 50px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
}
.sec04-list li + li {
  margin-top: 8px;
}

.sec05 {
  padding: 160px 0;
  background: #F5F5F5;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 60px 0;
  }
  .l-t_sec {
    display: block;
  }
  .l-t_sec .l-img {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .l-t_sec .l-img figure::before {
    height: calc(100% + 10px);
    left: -10px;
    top: -10px;
  }
  .l-t_sec.reverse .l-img {
    margin: 0 0 20px 0;
  }
  .sec02 {
    padding: 60px 0;
  }
  .sec03 {
    padding: 60px 0;
  }
  .sec04 {
    padding: 60px 0;
  }
  .sec04-list li {
    padding: 10px;
  }
  .sec05 {
    padding: 60px 0;
  }
}
/*------------
Post
--------------*/
.list-top-report {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.list-top-report > li {
  display: flex;
  flex-direction: column;
}
.list-top-report .list-img {
  border: 1px solid #eaeaea;
}
.list-top-report .list-desc {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
  padding: 20px 20px 40px;
}
.list-top-report time {
  line-height: 1.8;
  font-family: "EB Garamond", serif;
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
.list-top-report .list-ttl {
  text-align: center;
  margin-bottom: 10px;
}
.list-top-report .list-ttl .txt01 {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 20px;
}
.list-top-report .list-ttl .txt02 {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: "EB Garamond", serif;
  font-size: 17px;
}
.list-top-report .list-txt {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 15px;
  margin-bottom: 30px;
}
.list-top-report .list-btn {
  text-align: center;
  margin: auto 0 0;
}

@media (max-width: 800px) {
  .list-top-report {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
  .list-top-report .list-desc {
    padding: 10px 10px 20px;
  }
  .list-top-report .list-desc .list-txt {
    margin-bottom: 15px;
  }
}
/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  position: relative;
  color: #fff;
  padding: 240px 0 160px;
  text-align: center;
	overflow: hidden;
}
.page-ttl h1 {
  font-size: 40px;
  line-height: 1.2;
}
.page-ttl .page-ttl-bg {
  background: url(../images/under/pagettl_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: max(48vh, 447px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.page_319 .page-ttl{
	display:none;
}
.breadcrumb {
  position: relative;
  z-index: 1;
}
.breadcrumb ul {
  font-size: 0.8rem;
  padding: 5px 5vw;
}
.breadcrumb ul li {
  display: inline;
}
.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 {
  padding: 150px 0;
}
.u-contents p + p {
  margin-top: 15px;
}
.page_319 .u-contents {
  padding: 0px 0;
}
@media (max-width: 800px) {
  .page-ttl {
    padding: 130px 0 60px;
  }
  .page-ttl h1 {
    font-size: 25px;
  }
  .page-ttl .page-ttl-bg {
    height: 217px;
  }
  .u-contents {
    padding: 50px 0 100px;
  }
}
.u-h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
	color:#233957;
}
.u-h2::after {
  content: "";
  background: #A7A7A7;
  width: 52px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.u-h2 .sub-ttl {
    font-family: "FP-ヒラギノ明朝 ProN W3";
    /* font-size: 18px; */
    padding-left: 55px;
    margin-bottom: 10px;
    position: relative;
}
.u-h2 .sub-ttl::before {
    content: "";
    background: #233957;
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.u-h3,
.postdata h3 {
  font-size: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #A7A7A7;
  margin-bottom: 30px;
  position: relative;
}
.u-h3::before,
.postdata h3::before {
  content: "";
  background: #233957;
  width: 52px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.postdata h3 {
  margin-bottom: 25px;
}

.u-h4,
.postdata h4 {
  font-size: 20px;
  padding-left: 14px;
  margin-bottom: 15px;
  position: relative;
}
.u-h4::before,
.postdata h4::before {
  content: "";
  background: #233957;
  width: 3px;
  height: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media (max-width: 800px) {
  .u-h2 {
    font-size: 21px;
    margin-bottom: 30px;
  }
	.u-h2 .sub-ttl{
		display:block;
		padding-left: 0px;
    text-align: center;
    margin-left: 0px;
	}
	.u-h2 .sub-ttl::before {
		display:none;
	}
  .u-h3,
  .postdata h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .u-h4,
  .postdata h4 {
    font-size: 18px;
  }
}
.tall + .tall {
  margin-top: 120px;
}

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall + .tall {
    margin-top: 100px;
  }
  .short + .short {
    margin-top: 50px;
  }
}
.list-disc {
  display: grid;
  grid-gap: 5px;
}
.list-disc li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}
.list-disc li:before {
  content: "・";
  color: #233957;
  display: block;
  position: absolute;
  left: 0;
}

.list-num {
  counter-reset: number;
  display: grid;
  grid-gap: 5px;
}
.list-num > li {
  padding-left: 30px;
  position: relative;
}
.list-num > li::before {
  background: #233957;
  border-radius: 20px;
  color: #fff;
  font-size: 11px;
  text-align: center;
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 8px;
  left: 0;
  width: 22px;
  height: 22px;
}

.table-style01 th,
.table-style01 td {
  border: 1px solid #A7A7A7;
  padding: 10px;
  vertical-align: middle;
}
.table-style01 th {
  font-family: "FP-ヒラギノ明朝 ProN W3";
  background: #d5d5d5;
}
.table-style01 td {
  background: #fff;
}

.box-style01 {
  padding: 60px;
  border: 1px solid #A7A7A7;
}
.box-style01 .box-ttl {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #233957;
  margin-bottom: 10px;
}

.box-style02 {
  background-color: #f5f5f5;
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: 1fr auto;
  padding: 50px 60px;
  min-height: 255px;
  position: relative;
}
.box-style02 .box-ttl {
  font-size: 25px;
  color: #233957;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 20px;
  }
  .box-style01 .box-ttl {
    font-size: 18px;
  }
  .box-style02 {
    grid-template-columns: 1fr;
    padding: 30px 5%;
    min-height: 0;
  }
  .box-style02 .box-ttl {
    font-size: 21px;
    margin-bottom: 10px;
    text-align: center;
  }
  .box-style02 .l-btn {
    margin-top: 20px;
  }
}
/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.l-imgR .l-img,
.l-imgL .l-img {
  margin: 0 5% 0 0;
  width: 40%;
}
.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 30%;
}
.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR {
  flex-direction: row-reverse;
}
.l-imgR .l-img {
  margin: 0 0 0 5%;
}

@media (max-width: 800px) {
  .l-imgR,
  .l-imgL {
    display: block;
  }
  .l-imgR .l-img,
  .l-imgL .l-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }
  .l-imgR .l-img.small,
  .l-imgL .l-img.small {
    width: 100%;
  }
  .l-imgR .l-img {
    margin: 0 0 15px;
  }
}
/*------------
お問い合わせ
--------------*/
.tel-layout {
  background: #f5f5f5;
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}
.tel-layout .l-ttl {
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: fit-content;
}
.tel-layout .l-tel {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 35px;
  line-height: 1;
  margin: 0 auto;
  white-space: nowrap;
}
.tel-layout .l-tel img {
  margin-right: 10px;
}
.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 #000;
  text-align: center;
  font-weight: bold;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout .l-ttl {
    font-size: 15px;
  }
  .tel-layout .l-tel {
    font-size: 25px;
  }
  .tel-layout .l-tel img {
    width: 15px;
  }
}
/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #A7A7A7;
  font-size: 20px;
  padding: 0 0 5px;
  margin: 0 0 15px;
}
.dl-privacy dd + dt {
  margin-top: 30px;
}

.list-privacy li {
  position: relative;
  padding: 0 0 0 15px;
}
.list-privacy li::before {
  background: #333;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
}
.list-privacy li + li {
  margin-top: 3px;
}

/*------------
Add
--------------*/
.ordered-layout {
  display: flex;
  position: relative;
  z-index: 0;
}
.ordered-layout .l-img {
  width: 45.3%;
  margin: 0 5.5% 0 0;
}
.ordered-layout .l-desc {
  flex: 1;
  max-width: 500px;
}
.ordered-layout .l-desc .number {
  color: #233957;
  font-family: "EB Garamond", serif;
  font-size: 30px;
}
.ordered-layout .l-desc .l-ttl {
  font-size: 25px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  color: #233957;
  margin-bottom: 15px;
}
.ordered-layout .l-desc .sub-ttl {
  font-family: "FP-ヒラギノ明朝 ProN W3";
  /*font-size: 18px;*/
  padding-left: 55px;
  margin-bottom: 10px;
  position: relative;
	
}
.ordered-layout .l-desc .sub-ttl::before {
  content: "";
  background: #233957;
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
span.sub-ttl{
	margin-left:20px;
}
.ordered-layout.reverse {
  flex-direction: row-reverse;
}
.ordered-layout.reverse .l-img {
  margin: 0 0 0 5.5%;
}

@media (max-width: 800px) {
  .ordered-layout {
    display: block;
  }
  .ordered-layout .l-img {
    width: 100%;
    margin: 0 0 15px;
  }
  .ordered-layout.reverse .l-img {
    margin: 0 0 15px;
  }
  .ordered-layout .l-desc {
    max-width: 100%;
  }
  .ordered-layout .l-desc .number {
    font-size: 24px;
  }
  .ordered-layout .l-desc .l-ttl {
    font-size: 21px;
    margin-bottom: 5px;
  }
  .ordered-layout .l-desc .sub-ttl {
    margin-bottom: 0;
  }
}
.staff-layout,
.staff-layout02 {
  display: flex;
}
.staff-layout .l-img,
.staff-layout02 .l-img {
  width: 40%;
  margin: 0 5% 0 0;
}
.staff-layout .l-desc,
.staff-layout02 .l-desc {
  flex: 1;
}
.staff-layout .l-ttl,
.staff-layout02 .l-ttl {
  font-size: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #A7A7A7;
  margin-bottom: 20px;
}

.staff-name .job {
  padding-right: 10px;
}
.staff-name .jp {
  font-size: 26px;
  padding-right: 10px;
}
.staff-name .en {
  font-family: "EB Garamond", serif;
  letter-spacing: 0.05em;
}

.staff-layout02 .staff-name {
  margin-bottom: 40px;
}

.staff-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.staff-profile .item {
  background: #F5F5F5;
  border-top: 1px solid #233957;
  padding: 35px;
}
.staff-profile .box-ttl {
  font-size: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #A7A7A7;
  margin-bottom: 10px;
}
.staff-profile .staff-profile-dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  font-size: 15px;
}
.staff-profile .staff-profile-dl dt {
  color: #233957;
  padding: 10px 0 5px;
  border-bottom: 1px dotted #a4a4a4;
}
.staff-profile .staff-profile-dl dd {
  padding: 10px 0 5px;
  border-bottom: 1px dotted #a4a4a4;
}
.staff-profile .staff-profile-list {
  display: grid;
  grid-gap: 5px;
}
.staff-profile .staff-profile-list li {
  line-height: 2;
  font-size: 15px;
  position: relative;
  padding-left: 15px;
}
.staff-profile .staff-profile-list li:before {
  content: "・";
  color: #233957;
  display: block;
  position: absolute;
  left: 0;
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.staff-list li {
  padding: 0 20px;
	border-left: 1px solid #233957;
	margin-bottom: 30px;
}
.staff-list li + li {
  border-left: 1px solid #233957;
}
.staff-list .staff-name {
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .staff-layout,
  .staff-layout02 {
    display: block;
  }
  .staff-layout .l-img,
  .staff-layout02 .l-img {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .staff-layout .l-ttl,
  .staff-layout02 .l-ttl {
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  .staff-name .jp {
    font-size: 20px;
  }
  .staff-layout02 .staff-name {
    margin-bottom: 15px;
  }
  .staff-profile {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .staff-profile .item {
    padding: 25px;
  }
  .staff-profile .box-ttl {
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  .staff-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .staff-list li {
    padding: 15px 5px;
	 border-left: none;
	  margin-bottom:0px;
  }
  .staff-list li + li {
    border-left: none;
    border-top: 1px solid #233957;
  }
  .staff-list .staff-name {
    margin-bottom: 10px;
  }
}
.report-box p + p {
  margin-top: 0;
}
.report-box .indent {
  text-indent: 1em;
}

.link-report {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 30px;
}
.link-report a {
  display: inline-block;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  background: #F5F5F5;
  width: 100%;
  padding: 38px;
  text-align: center;
  position: relative;
}
.link-report a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  background: #233957;
  transition: 0.5s all;
}
.link-report a:hover::after {
  width: 0%;
}

@media (max-width: 800px) {
  .link-report {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .link-report a {
    padding: 16px;
  }
}
.box-contact {
  background: #F5F5F5;
  padding: 40px;
}
.box-contact .box-ttl {
  font-size: 22px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #A7A7A7;
}
.box-contact .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.box-contact .wrapper .btn-icon{
	max-width:320px;
}
.box-contact .tel {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.1em;
}
.box-contact .tel .number {
  font-size: 35px;
  margin: 0 8px;
}
.box-contact .tel .other {
  font-family: "FP-ヒラギノ明朝 ProN W3";
  font-size: 18px;
}
.box-contact .time {
  display: grid;
  grid-template-columns: 90px 1fr;
  font-size: 15px;
}

@media (max-width: 800px) {
  .box-contact {
    padding: 30px 5%;
  }
  .box-contact .box-ttl {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .box-contact .wrapper {
    display: block;
    text-align: center;
  }
  .box-contact .tel .number {
    font-size: 24px;
    margin-right: 0;
  }
  .box-contact .tel .other {
    font-size: 15px;
  }
  .box-contact .time {
    grid-template-columns: 80px 1fr;
    text-align: left;
  }
}
.box-layout {
  display: flex;
}
.box-layout .l-img {
  width: 55%;
}
.box-layout .l-desc {
  flex: 1;
  background: #f5f5f5;
  padding: 5%;
  position: relative;
  margin: 60px 0 0 -60px;
  z-index: 0;
}
.box-layout .l-desc .l-ttl {
  font-size: 25px;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  color: #233957;
  margin-bottom: 15px;
}
.box-layout.reverse {
  flex-direction: row-reverse;
}
.box-layout.reverse .l-desc {
  margin: 60px -60px 0 0;
}

@media (max-width: 800px) {
  .box-layout {
    display: block;
  }
  .box-layout .l-img {
    width: 100%;
  }
  .box-layout .l-desc {
    padding: 15px 5%;
    margin: 0;
  }
  .box-layout .l-desc .l-ttl {
    font-size: 21px;
    margin-bottom: 5px;
  }
  .box-layout.reverse .l-desc {
    margin: 0;
  }
}
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background: #F5F5F5;
  position: relative;
}

.f-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
}
.f-layout .l-map iframe {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
}
.f-layout .l-desc {
  padding: 10% 75px;
}
.f-layout .l-desc .l-txt {
  font-size: 15px;
  text-align: center;
  margin-bottom: 30px;
}

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

.f-links {
  display: grid;
  grid-gap: 10px;
}
.f-links > li::before {
  content: "・";
}
.f-links a:hover {
  text-decoration: underline;
}
.f-links .sub-menu {
  margin: 5px 0 0 15px;
}
.f-links .sub-menu > li::before {
  content: "-";
}
.footer .f-navi-list li {
      display: inline-block;
      margin-right: 20px;
      font-size: 12px;
      font-weight: bold; }
    .footer .f-navi-list a:hover {
      text-decoration: underline; }
  .footer .f-navi-btm {
    border-top: 1px solid #393a3c;
    border-bottom: 1px solid #393a3c;
    padding: 25px 0;
    position: relative; }
    .footer .f-navi-btm:before {
      content: '';
      display: inline-block;
      width: 15px;
      height: 1px;
      position: absolute;
      top: -1px;
      left: 0;
      background: #fff; }
    .footer .f-navi-btm .f-navi-list li {
      color: #bdbebf;
      font-weight: normal; }
.copyright {
  background-color: #233957;
  color: #fff;
  padding: 6px 40px;
  text-align: right;
  line-height: 1;
}
.copyright small {
  font-size: 9px;
}

.pagetop {
  position: absolute;
  bottom: 100px;
  right: 50px;
  z-index: 5;
}
.pagetop a {
  display: inline-block;
  background: #37414f;
  text-align: center;
  width: 50px;
  height: 50px;
  padding: 18px 0 0;
  transition: transform 0.5s;
  position: relative;
  z-index: 0;
}
.pagetop a:hover {
  transform: translateY(-10px);
}

@media (max-width: 800px) {
  .f-layout {
    grid-template-columns: 1fr;
  }
  .f-layout .l-map iframe {
    height: 300px;
  }
  .f-layout .l-desc {
    padding: 10% 5%;
  }
  .f-layout .l-desc .l-txt {
    margin-bottom: 20px;
  }
  .f-logo {
    margin-bottom: 15px;
  }
  .copyright {
    text-align: center;
  }
  .pagetop {
    bottom: 70px;
    right: 20px;
  }
	.footer .f-navi-list li{
		margin-bottom:20px;
		    text-align: left;
	}
}
.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  .sp-navi {
    display: block;
  }
  .sp-navi-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    box-shadow: 0 0 20px rgba(70, 70, 70, 0.2);
    background: #fff;
    font-weight: bold;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    height: 70px;
    z-index: 10;
  }
  .sp-navi-btns a {
    background: #233957;
    color: #fff;
    position: relative;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    padding: 8px;
  }
  .sp-navi-btns a img {
    margin-right: 10px;
  }
  .sp-menu-btn {
    cursor: pointer;
    position: fixed;
    top: 13px;
    right: 10px;
    display: flex;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #233957;
    z-index: 1010;
  }
  .sp-menu-btn span {
    background: #fff;
    position: absolute;
    width: 20px;
    height: 1px;
    transition: 0.3s;
    transform-origin: center center;
  }
  .sp-menu-btn span:nth-of-type(1) {
    top: 17px;
  }
  .sp-menu-btn span:nth-of-type(2) {
    top: 24px;
  }
  .sp-menu-btn span:nth-of-type(3) {
    top: 31px;
  }
  .sp-menu-btn.is-open span {
    background-color: #fff;
  }
  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
  }
  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-menu-btn.is-open span:nth-of-type(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 20px;
  }
  .sp-logo {
    max-width: 150px;
    margin-bottom: 30px;
  }
  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #233957;
    color: #fff;
    padding: 70px 30px 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    transform: translateX(60px);
    transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0;
    z-index: 1000;
  }
  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
  }
  .sp-navi-list {
    margin: 0 0 50px;
  }
  .sp-navi-list > li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .sp-navi-list > li > a {
    display: block;
    font-family: "FP-ヒラギノ明朝 ProN W3";
    letter-spacing: 0.05em;
    font-size: 14px;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 10px/13px auto;
    padding: 10px 15px 10px 0;
  }
  .sp-navi-list .sp-dropdown {
    position: relative;
  }
  .sp-navi-list .sp-dropdown::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 15px;
    right: 40px;
    width: 1px;
    height: 17px;
  }
  .sp-navi-list .sp-dropdown-btn .ttl {
    display: block;
    padding: 10px 0;
  }
  .sp-navi-list .sp-dropdown-plus {
    background: url(../images/share/sp_navi_plus.svg) no-repeat center/11px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 47px;
    transition: 0.3s;
  }
  .sp-navi-list .is-on .sp-dropdown-plus {
    transform: rotate(45deg);
    transform-origin: center;
  }
  .sp-navi-list .sub-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    padding: 0 0 15px;
  }
  .sp-navi-list .sub-menu li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .sp-navi-list .sub-menu a {
    display: block;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 15px/13px auto;
    padding: 5px 0;
    font-size: 0.9333333333rem;
  }
  .sp-information {
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    padding: 20px 10px;
    line-height: 1.5;
    display: grid;
    gap: 10px;
  }
  .sp-information .item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
  }
  .sp-information dt {
    border-right: 1px solid #BFE0D4;
    color: #233957;
    font-weight: bold;
    font-size: 0.9333333333rem;
    padding-right: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .sp-information dt img {
    object-fit: contain;
    width: 25px;
    height: 25px;
  }
  .sp-information a {
    display: inline-block;
  }
}
/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*活動報告*/
.select-area {
  margin-bottom: 70px;
}
.select-area .select-category {
  -webkit-appearance: none;
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  border-radius: 0;
  background: #f6f6f6;
  font-size: 16px;
  color: #233957;
  vertical-align: middle;
  height: 50px;
  padding: 5px 15px;
  border: none;
  width: 100%;
  cursor: pointer;
}

.list-under-post li + li {
  margin-top: 60px;
}

.post-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  font-size: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #A7A7A7;
  margin-bottom: 30px;
  position: relative;
}
.post-ttl::before {
  content: "";
  background: #233957;
  width: 52px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.post-layout {
  display: flex;
}
.post-layout .post-img {
  flex: 1;
  margin: 0 50px 0 0;
}
.post-layout .list-img{
	width:30%;
	margin-right:20px;
}
.post-layout .post-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-layout .post-desc {
  flex: 2;
}
.post-layout .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.post-layout .post-data time {
  line-height: 1.8;
  font-family: "EB Garamond", serif;
  display: block;
  margin-right: 15px;
}
.post-layout .post-data .category {
  display: inline-block;
  background-color: #233957;
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
}
.post-layout .post-txt {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 15px;
}

/*詳細ページ*/
.single-post-layout .l-ttl {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.single-post-layout .l-ttl::after {
  content: "";
  background: #A7A7A7;
  width: 52px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.single-post-layout .post-img {
  text-align: center;
  margin-bottom: 40px;
}
.single-post-layout .post-img img {
  max-width: 800px;
  object-fit: contain;
}
.single-post-layout .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.single-post-layout .post-data time {
  line-height: 1.8;
  font-family: "EB Garamond", serif;
  display: block;
  margin-right: 15px;
}
.single-post-layout .post-data .category {
  display: inline-block;
  background-color: #233957;
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}
.postdata a {
  color: #233957;
  text-decoration: underline;
}
.postdata a:hover {
  text-decoration: none;
}
.postdata strong {
  font-weight: bold;
}
.postdata em {
  font-style: italic;
}
.postdata ul li {
  list-style: inside disc;
}
.postdata ul li > ul {
  margin: 0 0 0 15px;
}
.postdata ol li {
  list-style: inside decimal;
}
.postdata ol li > ol {
  margin: 0 0 0 15px;
}

/*ページャー*/
.post-number {
  margin-top: 100px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-family: "EB Garamond", serif;
  border-bottom: 1px solid #d3d3d3;
}
.post-number span,
.post-number a {
  color: #a5a5a5;
  display: inline-block;
  padding: 0 10px 15px;
}
.post-number a:hover {
  color: #241A17;
}
.post-number .current {
  color: #241A17;
  display: inline-block;
  padding: 0 10px 15px;
  position: relative;
}
.post-number .current::after {
  content: "";
  border-bottom: 2px solid #241A17;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
}

.post-number-single {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
  font-family: "EB Garamond", serif;
}
.post-number-single a {
  display: inline-block;
}
.post-number-single .prev,
.post-number-single .next {
  position: relative;
}
.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #233957;
}

.prev::before {
  content: "";
  position: absolute;
  transform: rotate(45deg);
  bottom: 13px;
  right: -39px;
  border-right: 1px solid #a5a5a5;
  border-top: 1px solid #a5a5a5;
  width: 10px;
  height: 10px;
}

.next::before {
  content: "";
  position: absolute;
  transform: rotate(225deg);
  bottom: 13px;
  left: -39px;
  border-right: 1px solid #a5a5a5;
  border-top: 1px solid #a5a5a5;
  width: 10px;
  height: 10px;
}

@media (max-width: 800px) {
  /*活動報告*/
  .select-area {
    margin-bottom: 50px;
  }
  .post-ttl {
    font-size: 20px;
    margin-bottom: 20px;
	  line-height:2;
  }
  .post-layout {
    display: block;
  }
  .post-layout .post-img {
    width: 100%;
    margin: 0 0 15px;
  }
	.post-layout .list-img{
	width: 100%;
    margin: 0 0 15px;
}
  .post-layout .post-data {
    display: block;
  }
  .post-layout .post-data time {
    margin-right: 0;
  }
  .post-layout .post-data .category {
    font-size: 10px;
  }
  .post-number {
    margin-top: 60px;
  }
  /*詳細ページ*/
  .single-post-layout .post-data {
    display: block;
  }
  .single-post-layout .post-data time {
    margin-right: 0;
  }
  .single-post-layout .post-data .category {
    font-size: 10px;
  }
  .single-post-layout .l-ttl {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .single-post-layout .post-img img {
    max-width: 100%;
  }
  .prev::before {
    bottom: 10px;
  }
  .next::before {
    bottom: 10px;
  }
}
/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
}

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

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

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

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

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

.side-area-links {
  display: grid;
  grid-gap: 5px;
}
.side-area-links li {
  padding-left: 20px;
  position: relative;
}
.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 9px;
  left: 0;
}
.side-area-links a {
  display: inline-block;
}
.side-area-links a:hover {
  text-decoration: underline;
}

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

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 0 5vw;
    width: 100%;
  }
  .sidebar-layout.sp-reverse {
    flex-direction: column;
  }
  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }
  .main-contents {
    width: 100%;
    padding: 0;
  }
  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }
  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }
  .side-area-item + .side-area-item {
    margin-top: 30px;
  }
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.fade {
  transition: opacity 0.5s;
}
.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 11px;
}

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

.red {
  color: #572323;
}

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

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

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

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

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

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

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

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
  .mbL {
    margin-bottom: 30px !important;
  }
  .mbXL {
    margin-bottom: 50px !important;
  }
}
/*ボタン*/
.btn-more {
  background: #233957;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  min-height: 50px;
  min-width: 200px;
  padding: 15px 20px;
  transition: opacity 0.5s;
  line-height: 1.5;
  position: relative;
}
.btn-more::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.btn-more:hover {
  opacity: 0.5;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.btn-wrap.center {
  justify-content: center;
}

.conatct-btn {
  display: inline-flex;
  align-items: center;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  transition: 0.3s;
}
.conatct-btn img {
  margin-right: 10px;
}

.btn-icon {
  background: #233957;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "FP-ヒラギノ明朝 ProN W3";
  min-height: 50px;
  width: 100%;
  padding: 15px 20px;
  transition: opacity 0.5s;
  line-height: 1.5;
  position: relative;
}
.btn-icon img {
  margin-right: 10px;
}
.btn-icon .small {
  font-size: 10px;
}
.btn-icon:hover {
  opacity: 0.5;
}
.btn-icon + a {
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .conatct-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .btn-more {
    width: 100%;
  }
}
/*------------
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 2px;
  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: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #333;
  transform: scale(1.4);
  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;
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}
.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */