@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.w_base {
  width: 100%;
  margin: 0 auto;
  max-width: 1220px;
  padding-right: 10px;
  padding-left: 10px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 2px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to top, #ffddcc 0%, #fde1cf 100%);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
**  font
******************************************************************************
----------------------------------------------------------------------------*/
body {
  font-family: "Shippori Mincho", serif, "Noto Sans JP", sans-serif;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.hd_bg .hd {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.hd_bg .hd .hd_logo a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  /* background: #fff; */
  color: #666;
  /* border-radius: 30px; */
  transition: 0.3s;
}
.hd_bg .hd .hd_logo a img {
  width: 60px;
  height: auto;
  margin-right: 7px;
}
.hd_bg .hd .hd_logo a .hd_ttl {
  font-size: 25px;
}
.hd_bg .hd .hd_logo a .hd_ttl span {
  display: block;
  font-size: 0.5em;
  line-height: 1.4;
  font-size: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
.nav_bg .nav {
  overflow: visible;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-right: 20px;
}
.nav_bg .nav .nav_list {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1010;
}
.nav_bg .nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 10px 10px;
  color: #555;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 0 0 5px 5px;
}
.nav_bg .nav .nav_list > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #ffdbb7;
  border-radius: 0 0 5px 5px;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffac59 0%, #f4bdae 100%);
  border-radius: 0 0 5px 5px;
}
.nav_bg .nav .nav_list > li > a:hover::before {
  opacity: 0;
}
.nav_bg .nav .nav_list > li.current a::before {
  opacity: 0;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1020;
  display: none;
  width: 100%;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-top: 15px;
  background: #ffdbb7;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:first-of-type:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ffdbb7;
  position: absolute;
  top: -10px;
  left: 1em;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  opacity: 0.8;
  background: rgba(51, 51, 51, 0.4);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1030;
  display: none;
  width: 100%;
  background: #ffdbb7;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  opacity: 0.8;
  background: rgba(51, 51, 51, 0.4);
}
.nav_bg .nav .nav_list > li:last-of-type > .child_wrap > .sub-menu > li > .child_wrap {
  left: -100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  flex: 1;
}
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
  padding-bottom: 70px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  background: url(../images/ft_bg.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
}
.ft_bg .ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 80px 20px 60px;
  padding: 100px 20px;
}
.ft_bg .ft .ft_ttl {
  background: rgba(255, 255, 255, 0.5);
}
.ft_bg .ft .ft_ttl h1 {
  color: #777;
  font-size: 25px;
  line-height: 1.3;
}
.ft_bg .ft .ft_ttl h1 span {
  display: block;
  line-height: 1.4;
  font-size: 10px;
}
.ft_bg .ft .ft_ttl p {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.ft_bg .ft .ft_bnr ul.ft_bnr_list li {
  margin-bottom: 4px;
  background: #fff;
}
.ft_bg .ft .ft_bnr ul.ft_bnr_list li a {
  padding: 8px 16px 8px 42px;
  border: 1px solid #777;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_gray.png) no-repeat 16px center;
  color: #777;
}
.ft_bg .ft .ft_bnr ul.ft_bnr_list li a:hover {
  transition: 0.3s;
  background-color: #777;
  background-image: url(../images/icon_elink_white.png);
  color: #fff;
}
.ft_bg .ft_copy {
  font-size: 14px;
  background: #ffddcc;
  color: #666;
  text-align: center;
  padding: 10px;
  line-height: 1.3;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: -90px;
  bottom: -70px;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 93px;
  padding-bottom: 5px;
  background: url(../images/pt.png) no-repeat center center;
  transition: 0.5s all;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  position: relative;
  transform: rotate(45deg);
  cursor: pointer;
  display: block;
  width: 25px;
  height: 25px;
  margin-top: 15px;
}
.pt .pt_btn::before, .pt .pt_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
}
.pt .pt_btn::before {
  bottom: 0;
  width: 5px;
}
.pt .pt_btn::after {
  right: 0;
  height: 5px;
}
.pt.slideOutLeft {
  right: 20px;
  bottom: 10px;
  animation-name: slideOutLeft;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 0, 0);
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** scroll_down
******************************************************************************
----------------------------------------------------------------------------*/
.scroll_down {
  position: fixed;
  bottom: 1%;
  right: 50%;
  opacity: 1;
  animation: arrowmove 2s ease-in-out infinite;
  transition: all 1s;
}
.scroll_down a {
  position: absolute;
  left: -30px;
  bottom: 26px;
  color: #000;
  font-size: 18px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -9px;
  width: 2px;
  height: 30px;
  background: #000;
  transform: skewX(-31deg);
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  height: 115px;
  background: #000;
}
.scroll_down.fadeout {
  opacity: 0;
  pointer-events: none;
  transition: all 1s;
}
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 5%;
  }
  100% {
    bottom: 1%;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  /* border: 1px solid #000; */
  color: #fff !important;
  /* font-weight: bold; */
  display: block;
  font-size: 1.3rem;
  margin: 0 3px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 3rem;
  transition: all 0.5s ease;
  background: url(../images/pager_bg_01.png) no-repeat center;
  background-size: contain;
}
.pager .pager_list .page-numbers:nth-child(2n) {
  background: url(../images/pager_bg_02.png) no-repeat center;
  background-size: contain;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  /* background: #000; */
  /* color: #FFF !important; */
  scale: 1.1;
  font-size: 1.5em;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers.dots {
  border-color: #000;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider img {
  width: 100vw;
  max-width: 100vw;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}
.index_slider_bg .index_slider::after {
  display: block;
  content: "";
  background: url(../images/slide_mask.png) no-repeat center;
  background-size: cover;
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 100px;
}
.index_slider_bg .catchcopy_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  writing-mode: vertical-rl;
  position: absolute;
  top: 100px;
  right: 0;
  width: 50%;
  z-index: 1;
}
.index_slider_bg .catchcopy_bg .catchcopy {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
}
.index_slider_bg .catchcopy_bg .catchcopy p {
  color: #333;
  font-family: "Hina Mincho", "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 800;
}

.upright {
  text-orientation: upright;
}

.index_main {
  order: 1;
  width: 100%;
  padding-top: 200px;
}
.index_main .index_greet {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 250px;
  padding: 0 40px;
}
.index_main .index_greet .txt {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  max-width: 100%;
}
.index_main .index_greet .txt h2 {
  margin-top: 50px;
  color: #ffac59;
  font-size: 36px;
  text-align: center;
  line-height: 1.3;
  position: relative;
  white-space: nowrap;
}
.index_main .index_greet .txt h2::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 50%;
  top: -80px;
  left: -50%;
  background: url(../images/about_bg.png) no-repeat center;
  background-size: cover;
  width: 230px;
  height: 230px;
  white-space: nowrap;
}
.index_main .index_greet .txt h2::after {
  display: block;
  content: attr(data-text);
  font-size: 16px;
}
.index_main .index_greet .txt p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #777;
}
.index_main .index_greet img {
  max-width: 100%;
  max-height: 100%;
  padding-left: 40px;
}
.index_main .index_news {
  padding: 90px 0;
  background: url(../images/news_bg.png) no-repeat center center;
  background-size: cover;
}
.index_main .index_news .index_news_con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.index_main .index_news .index_news_con h2 {
  padding: 0 70px;
  color: #666;
  font-size: 48px;
  position: relative;
}
.index_main .index_news .index_news_con h2::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 50%;
  top: -70px;
  left: -30%;
  background: url(../images/news_hd_bg.png) no-repeat center;
  background-size: cover;
  width: 230px;
  height: 230px;
}
.index_main .index_news .index_news_con .index_news_scrl {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  width: 100%;
  max-width: 950px;
  max-height: 300px;
  overflow: auto;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px dotted #666;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_date {
  width: 140px;
  color: #666;
  text-align: center;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 140px);
  color: #666;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #666;
  position: relative;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl a::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url(../images/icon_elink_gray.png);
  background-size: contain;
  vertical-align: top;
  margin-left: 5px;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  margin-left: 0.3em;
  padding: 0 5px;
  background: #fff;
  color: #c00;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 3px;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

.index_btn {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  display: block;
  margin: auto;
  position: relative;
  color: #777;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 20px 0;
  width: 300px;
  border: solid 1px #777;
  cursor: pointer;
}
.index_btn:before {
  content: "→";
  font-size: 2em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.index_btn:hover:before {
  right: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list,
.photo_list {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  width: 100%;
  min-width: calc(100% - 250px);
}
.news_list .news_item,
.news_list .photo_item,
.photo_list .news_item,
.photo_list .photo_item {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px dotted #ffdbb7;
}
.news_list .news_item_ttl,
.news_list .photo_item_ttl,
.photo_list .news_item_ttl,
.photo_list .photo_item_ttl {
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 15px;
}
.news_list .news_item_ttl_date,
.news_list .photo_item_ttl_date,
.photo_list .news_item_ttl_date,
.photo_list .photo_item_ttl_date {
  width: 140px;
  color: #666;
  text-align: center;
}
.news_list .news_item_ttl .tag_list,
.news_list .photo_item_ttl .tag_list,
.photo_list .news_item_ttl .tag_list,
.photo_list .photo_item_ttl .tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-left: auto;
  order: 1;
}
.news_list .news_item_ttl .tag_list > .tag,
.news_list .photo_item_ttl .tag_list > .tag,
.photo_list .news_item_ttl .tag_list > .tag,
.photo_list .photo_item_ttl .tag_list > .tag {
  background-color: #ffddcc;
  /* border: none; */
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
  /* font-size: 12px; */
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.3s;
}
.news_list .news_item_ttl .tag_list > .tag:not(:has(a)),
.news_list .photo_item_ttl .tag_list > .tag:not(:has(a)),
.photo_list .news_item_ttl .tag_list > .tag:not(:has(a)),
.photo_list .photo_item_ttl .tag_list > .tag:not(:has(a)) {
  color: #666;
  padding: 0.6em 1em;
}
.news_list .news_item_ttl .tag_list > .tag a,
.news_list .photo_item_ttl .tag_list > .tag a,
.photo_list .news_item_ttl .tag_list > .tag a,
.photo_list .photo_item_ttl .tag_list > .tag a {
  display: block;
  color: #666;
  padding: 0.6em 1em;
}
.news_list .news_item_ttl .tag_list > .tag:hover,
.news_list .photo_item_ttl .tag_list > .tag:hover,
.photo_list .news_item_ttl .tag_list > .tag:hover,
.photo_list .photo_item_ttl .tag_list > .tag:hover {
  opacity: 0.7;
}
.news_list .news_item_ttl > h1,
.news_list .photo_item_ttl > h1,
.photo_list .news_item_ttl > h1,
.photo_list .photo_item_ttl > h1 {
  color: #666;
  font-size: 1.5em;
}
.news_list .news_item_ttl > h1 a,
.news_list .photo_item_ttl > h1 a,
.photo_list .news_item_ttl > h1 a,
.photo_list .photo_item_ttl > h1 a {
  color: #666;
  text-decoration: underline;
}
.news_list .news_item_ttl > h1 .news_item_icon_new,
.news_list .photo_item_ttl > h1 .news_item_icon_new,
.photo_list .news_item_ttl > h1 .news_item_icon_new,
.photo_list .photo_item_ttl > h1 .news_item_icon_new {
  display: inline-block;
  margin-left: 0.3em;
  padding: 0 5px;
  background: #fff;
  color: #c00;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 3px;
}
.news_list .news_item_ttl > h1 .news_item_icon_new:before,
.news_list .photo_item_ttl > h1 .news_item_icon_new:before,
.photo_list .news_item_ttl > h1 .news_item_icon_new:before,
.photo_list .photo_item_ttl > h1 .news_item_icon_new:before {
  content: "NEW";
}
.news_list .news_item_cont,
.news_list .photo_item_cont,
.photo_list .news_item_cont,
.photo_list .photo_item_cont {
  padding: 10px 20px;
}

.member_list {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.member_list .member_item {
  width: 100%;
  padding: 15px 0;
  border-radius: 1em;
  background: url(../images/member_item_bg.jpg);
  margin: 20px 0;
  position: relative;
  z-index: 2;
}
.member_list .member_item .member_item_ttl {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #333;
  margin: 0 20px;
  justify-content: space-between;
  min-height: 50px;
}
.member_list .member_item .member_item_ttl div {
  width: calc(100% - 300px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.member_list .member_item .member_item_ttl div > h1 {
  width: 200px;
  color: #333;
  font-size: 17.5px;
}
.member_list .member_item .member_item_ttl div > a {
  width: 130px;
  margin: 0 10px 5px;
  padding: 8px 8px 8px 42px;
  border: 1px solid #777;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_gray.png) no-repeat 16px center;
  color: #777;
}
.member_list .member_item .member_item_ttl > p {
  width: 300px;
  margin-bottom: 10px;
  padding-right: 60px;
  font-size: 16px;
  text-align: right;
  color: #666;
}
.member_list .member_item .member_item_cont {
  padding: 0 20px;
}
.member_list .member_item .member_item_cont h2 {
  margin: 0.5em 0 0.3em;
  color: #666;
  font-size: 16px;
}
.member_list .member_item .member_item_cont h2::before {
  display: none;
}
.member_list .member_item .member_item_cont p {
  margin-bottom: 0;
  font-size: 13px;
}
.member_list .member_item::after {
  content: "";
  display: block;
  background: url(../images/flowers.png);
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 48px;
  margin-top: 10px;
  margin-right: 30px;
  z-index: -1;
}

#side {
  position: sticky;
  top: calc(160px + 2em);
  width: 100%;
  max-width: 250px;
}
#side #link {
  margin: 0 auto;
  max-width: 250px;
}
#side #link ul {
  width: 100%;
}
#side #link ul > li {
  position: relative;
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 0.5em;
}
#side #link ul > li > a {
  position: relative;
  display: block;
  padding: 10px 25px;
  color: #666;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
#side #link ul > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #ffdbb7;
  transition: all 0.3s ease;
}
#side #link ul > li > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffac59 0%, #f4bdae 100%);
  border-radius: 5px;
}
#side #link ul > li.current a::before {
  opacity: 0;
}
.searchandfilter input[type=submit] {
  display: block;
  width: 100px;
  margin: 0 auto;
  padding: 5px;
  border: none;
  border-radius: 15px;
  background: #f4bdae;
  color: #333;
  transition: all 0.3s;
}
.searchandfilter input[type=submit]:hover {
  opacity: 0.7;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
  position: relative;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon .mcon_ttl {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 160px;
  overflow: hidden;
}
.mcon .mcon_ttl h1 {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5em 1em 2em;
  font-size: 36px;
  line-height: 1.4;
  z-index: 10;
}
.mcon .mcon_ttl .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.7;
}
.mcon .mcon_ttl .ttl_mask {
  width: 100%;
  position: absolute;
  bottom: -10px;
  bottom: -5px;
  min-height: 50px;
}
.mcon > section {
  padding-top: 2em;
}
.mcon > section > *:first-of-type {
  margin-top: 0;
}
.mcon h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2em 0 1.1em;
  color: #ffac59;
  font-size: 1.5em;
}
.mcon h2 a {
  color: #ffac59;
}
.mcon h2 a:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h2::before {
  content: "";
  width: 65px;
  height: 45px;
  background: url(../images/h2.png) center no-repeat;
  background-size: contain;
}
.mcon h3 {
  position: relative;
  margin: 1em 0 0.75em;
  padding-bottom: 10px;
  color: #666;
  font-size: 1.3em;
}
.mcon h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: url(../images/h3.png) center no-repeat;
  background-size: contain;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin: 5px 0;
  color: #666;
  font-size: 1.15em;
}
.mcon h4::before, .mcon h4::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/h4.png) center no-repeat;
  background-size: contain;
}
.mcon h4::before {
  margin-right: 10px;
}
.mcon h4::after {
  margin-left: 10px;
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #666;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon ul.list_none li {
  margin-bottom: 1em;
}
.mcon ul.auto_list > li {
  border-bottom: 3px solid #f4bdae;
  margin-left: 0;
  margin-bottom: 0.5em;
  list-style: none;
}
.mcon ul.auto_list > li > a {
  display: block;
  width: 100%;
  padding: 10px 25px 0;
  color: #666;
  font-size: 18px;
  font-weight: 700;
}
.mcon .wp-block-gallery.has-nested-images > figure.wp-block-image,
.mcon figure.wp-block-image {
  position: relative;
  box-shadow: inset 0 0 5px 5px #fff;
  border-radius: 28px;
}
.mcon .wp-block-gallery.has-nested-images > figure.wp-block-image a,
.mcon figure.wp-block-image a {
  box-shadow: inset 0 0 5px 5px #fff;
  border-radius: 28px;
}
.mcon .wp-block-gallery.has-nested-images > figure.wp-block-image a::after,
.mcon figure.wp-block-image a::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 5px 5px #fff;
  border-radius: 28px;
}
.mcon .wp-block-gallery.has-nested-images > figure.wp-block-image img,
.mcon figure.wp-block-image img {
  position: relative;
  z-index: -1;
  border-radius: 30px;
}
.mcon .wp-block-gallery.has-nested-images > figure.wp-block-image > figcaption,
.mcon figure.wp-block-image > figcaption {
  background: none;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 0 10px #000;
}
.mcon .wp-block-gallery.has-nested-images > figure.wp-block-image:has(figcaption):before,
.mcon figure.wp-block-image:has(figcaption):before {
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
.mcon .photo_list .wp-block-gallery.has-nested-images > figure.wp-block-image a,
.mcon .photo_list figure.wp-block-image a {
  pointer-events: none;
}
.mcon details {
  background: url(../images/member_item_bg.jpg);
  border-radius: 1em;
  border-bottom: none;
  transition: 0.4s;
  padding: 1.6em;
  width: 100%;
  margin: auto;
}
.mcon details summary {
  padding: 5px 0;
  position: relative;
  line-height: 1.5;
  display: block;
  list-style: none;
  font-size: 1.2em;
}
.mcon details summary::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 0 0 0.5em;
  vertical-align: middle;
  box-sizing: border-box;
  border-right: solid 2px #4547ac;
  border-bottom: solid 2px #4547ac;
  transform: rotate(45deg);
  transition: 0.2s;
}
.mcon details summary::-webkit-details-marker {
  display: none;
}
.mcon details > * {
  position: relative;
  margin: 0;
  padding: 0 0 15px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}
.mcon details > * .member_item {
  background: none;
}
.mcon details.project {
  background: none;
}
.mcon details[open] summary::after {
  margin: 3px 0 0 0.5em;
  transform: rotate(225deg);
  transition: 0.2s;
}
.mcon ul.project > li > a {
  color: #383838;
  position: relative;
}
.mcon ul.project > li > a::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url(../images/icon_elink_gray.png);
  background-size: contain;
  vertical-align: top;
  margin-left: 5px;
}
.mcon .pubmed > a {
  color: #502200;
  border: 1px solid #502200;
  border-radius: 3px;
  background: url(../images/icon_elink_gray.png) no-repeat 16px center;
  padding: 8px 32px 8px 42px;
  margin-top: 5px;
  max-width: 100%;
  display: inline-block;
}
.mcon .pdf p {
  font-family: "Shippori Mincho", serif;
}
.mcon .pdf p a {
  color: #383838;
}
.mcon .pdf p a::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url(../images/icon_elink_black.png);
  background-size: contain;
  vertical-align: top;
  margin-left: 5px;
}
.mcon .pdf figure.wp-block-image {
  position: static;
  box-shadow: none;
  border-radius: 0;
}
.mcon .pdf figure.wp-block-image a {
  box-shadow: none;
}
.mcon .pdf figure.wp-block-image a img {
  border-radius: 0;
}
.mcon .pdf figure.wp-block-image a::after {
  position: static;
  content: "";
  box-shadow: none;
  border-radius: 0;
}/*# sourceMappingURL=style.css.map */