@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** spスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

body {
  min-height: 100vh;
}

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

::-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 {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  /* background: #fff; */
  color: #666;
  transition: 0.3s;
  /* border-radius: 30px; */
}
.hd_bg .hd .hd_logo a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.hd_bg .hd .hd_logo img {
  width: 30px;
  height: auto;
  margin-right: 7px;
  padding-bottom: 1px;
}
.hd_bg .hd .hd_logo .hd_ttl {
  font-size: 18px;
}
.hd_bg .hd .hd_logo .hd_ttl span {
  display: block;
  font-size: 0.6em;
  line-height: 1.4;
  font-size: 6px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: calc(-100% - 500px);
  right: 0;
  z-index: 1010;
  width: 60%;
  height: calc(100% + 500px);
  padding: 45px 10px;
  background: #ffdbb7;
  transition: All 0.5s ease;
}
.nav .nav_list {
  margin-top: 50px;
}
.nav .nav_list > li {
  position: relative;
  z-index: 1020;
}
.nav .nav_list > li > a {
  border-bottom: 1px solid rgba(85, 85, 85, 0.15);
  font-size: 16px;
  color: #555;
  font-weight: bold;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1em;
  right: 0.5em;
  z-index: 1030;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #ffac59;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap {
  display: none;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 1.5em;
  background: rgba(255, 219, 183, 0.4);
  color: #555;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(85, 85, 85, 0.1);
}
.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 #555;
  border-right: 1px solid #555;
  transform: rotate(45deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 0.65em;
  right: 0.5em;
  z-index: 1040;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #ffddcc;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 2em;
  background-color: rgba(85, 85, 85, 0.7);
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid rgba(85, 85, 85, 0.4);
}
.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 .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #ccc;
}

.sp_nav_open {
  top: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1100;
  position: fixed !important;
  top: 20px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #555;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: "MENU";
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #555;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}
.sp_nav_trigger.sp_active::after {
  content: "CLOSE";
  bottom: -25px;
  color: #555;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #555;
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #555;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #555;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  flex: 1;
}
.con_bg .con {
  padding: 0 0 30px;
}
.con_bg .con .main {
  margin-bottom: 30px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  background: url(../images/ft_bg.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
}
.ft_bg .ft {
  height: 100%;
  padding: 70px 20px;
}
.ft_bg .ft .ft_ttl {
  background: rgba(255, 255, 255, 0.5);
}
.ft_bg .ft .ft_ttl h1 {
  color: #777;
  font-size: 18px;
  margin: 0 auto;
  line-height: 1.3;
  text-align: center;
}
.ft_bg .ft .ft_ttl h1 span {
  display: block;
  line-height: 1.4;
  font-size: 6px;
}
.ft_bg .ft .ft_ttl p {
  margin-bottom: 10px;
  display: block;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}
.ft_bg .ft .ft_bnr {
  padding-top: 20px;
}
.ft_bg .ft .ft_bnr .ft_bnr_list li {
  margin-bottom: 4px;
  background: #fff;
}
.ft_bg .ft .ft_bnr .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 .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 {
  background: #ffddcc;
  font-size: 10px;
  color: #666;
  text-align: center;
  padding: 10px;
  line-height: 1.3;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: -80px;
  bottom: -70px;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 63px;
  background: url(../images/pt.png) no-repeat center center;
  background-size: cover;
  transition: 0.5s all;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  position: relative;
  transform: rotate(45deg);
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  margin-top: 8px;
}
.pt .pt_btn::before, .pt .pt_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #fff;
}
.pt .pt_btn::before {
  bottom: 0;
  width: 4px;
}
.pt .pt_btn::after {
  right: 0;
  height: 4px;
}
.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 0.5s;
}
.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: 17px;
  color: #000;
  font-size: 14px;
  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: -6px;
  width: 2px;
  height: 20px;
  background: #000;
  transform: skewX(-31deg);
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  height: 85px;
  background: #000;
}
.scroll_down.fadeout {
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
@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: 1rem;
  margin: 0 3px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.5rem;
  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.2em;
  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;
  height: 100vh !important;
  height: 100lvh !important;
  height: 100svh !important;
  -o-object-fit: cover;
  object-fit: cover;
}
.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;
  align-items: flex-end;
  writing-mode: vertical-rl;
  position: absolute;
  top: 80px;
  z-index: 1;
  width: 100%;
}
.index_slider_bg .catchcopy_bg .catchcopy {
  width: 100%;
  padding: 30px;
  font-family: "Hina Mincho", serif;
}
.index_slider_bg .catchcopy_bg .catchcopy p {
  color: #333;
  font-family: "Hina Mincho", "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 800;
}

.upright {
  text-orientation: upright;
}

.index_main {
  padding-top: 100px;
}
.index_main .index_btn {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, 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_main .index_btn:before {
  content: "→";
  font-size: 2em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.index_main .index_btn:hover:before {
  right: 10px;
}
.index_main .index_greet {
  padding-bottom: 150px;
}
.index_main .index_greet .txt {
  max-width: 100%;
}
.index_main .index_greet .txt h2 {
  margin-bottom: 60px;
  color: #ffac59;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  position: relative;
}
.index_main .index_greet .txt h2::before {
  display: block;
  position: absolute;
  top: -42px;
  left: calc(50% - 65px);
  content: "";
  background: url(../images/about_bg.png) no-repeat center;
  background-size: cover;
  width: 130px;
  height: 130px;
}
.index_main .index_greet .txt h2::after {
  display: block;
  content: attr(data-text);
  font-size: 0.44em;
}
.index_main .index_greet img {
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 20px auto;
  height: 200px;
}
.index_main .index_news {
  padding: 50px 0 70px;
  background: url(../images/news_bg.png) no-repeat center center;
  background-size: cover;
}
.index_main .index_news .index_news_con {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.index_main .index_news .index_news_con h2 {
  margin-bottom: 30px;
  color: #666;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  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: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  max-height: 50vh;
  overflow: auto;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item {
  padding: 10px 0;
  color: #666;
  border-bottom: 1px dotted #666;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_date {
  margin-bottom: 3px;
}
.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_side {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}
.index_side .index_bnr_list li {
  margin-bottom: 4px;
}
.index_side .index_bnr_list li a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #666;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_gray.png) no-repeat 16px center;
  color: #666;
}
.index_side .index_bnr_list li a:hover {
  background-color: #666;
  background-image: url(../images/icon_elink_white.png);
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list,
.photo_list {
  width: 100%;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}
.news_list .news_item,
.news_list .photo_item,
.photo_list .news_item,
.photo_list .photo_item {
  padding: 10px 0;
  color: #666;
  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;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.news_list .news_item_ttl .news_item_date,
.news_list .news_item_ttl .photo_item_date,
.news_list .photo_item_ttl .news_item_date,
.news_list .photo_item_ttl .photo_item_date,
.photo_list .news_item_ttl .news_item_date,
.photo_list .news_item_ttl .photo_item_date,
.photo_list .photo_item_ttl .news_item_date,
.photo_list .photo_item_ttl .photo_item_date {
  margin-bottom: 3px;
  width: -moz-max-content;
  width: max-content;
}
.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;
}
.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;
  /* order: 1; */
  /* margin-left: auto; */
  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 {
  width: 100%;
  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 0;
}

.member_list {
  width: 100%;
}
.member_list .member_item {
  padding: 10px 0;
  margin: 20px 0;
  border-radius: 1em;
  color: #333;
  background: url(../images/member_item_bg.jpg);
  position: relative;
  z-index: 2;
}
.member_list .member_item .member_item_ttl {
  border-bottom: 1px dotted #333;
  margin: 0 20px;
}
.member_list .member_item .member_item_ttl div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.member_list .member_item .member_item_ttl div > h1 {
  font-size: 15.5px;
}
.member_list .member_item .member_item_ttl div > a {
  width: 130px;
  margin: 5px 0;
  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: 100%;
  margin-bottom: 1em;
  color: #666;
  font-size: 14px;
}
.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: 14px;
}
.member_list .member_item .member_item_cont h2::before {
  display: none;
}
.member_list .member_item .member_item_cont p {
  margin-bottom: 0;
  font-size: 11.3px;
}
.member_list .member_item::after {
  content: "";
  display: block;
  background: url(../images/flowers.png);
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0px;
  width: 28px;
  height: 32px;
  margin-top: 18px;
  margin-right: 30px;
  z-index: -1;
}

#side {
  width: 100%;
}
#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;
}
#side .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;
}
#side .searchandfilter input[type=submit]:hover {
  opacity: 0.7;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  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: 150px;
  overflow: hidden;
}
.mcon .mcon_ttl h1 {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em 2em;
  font-size: 24px;
  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 {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  min-height: 40px;
  bottom: -5px;
}
.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: 52px;
  height: 36px;
  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 {
  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: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, 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;
  width: -moz-fit-content;
  width: fit-content;
  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-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;
  margin: auto;
  width: 100%;
}
.mcon details summary {
  position: relative;
  padding: 5px 0;
  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;
  background: url(../images/icon_elink_gray.png) no-repeat 16px center;
  border-radius: 3px;
  padding: 8px 32px 8px 42px;
  margin-top: 5px;
  /* width: 150px; */
  max-width: 100%;
  display: inline-block;
}
.mcon .pdf p {
  font-family: "Shippori Mincho", serif;
}
.mcon .pdf p a {
  color: #383838;
}
.mcon .pdf p a:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.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;
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tabスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** header
    ******************************************************************************
    ----------------------------------------------------------------------------*/
  .hd_bg .hd .hd_logo .hd_ttl {
    font-size: 25px;
  }
  .hd_bg .hd .hd_logo .hd_ttl span {
    font-size: 8px;
  }
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** index
    ******************************************************************************
    ----------------------------------------------------------------------------*/
  .index_slider_bg {
    position: relative;
  }
  .index_slider_bg .index_slider {
    position: relative;
  }
  .index_slider_bg .index_slider img {
    width: 100vw;
    max-width: 100vw;
    height: auto !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
  }
  .index_slider_bg .index_slider img::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 {
    right: 0;
    width: 50%;
  }
  .index_slider_bg .catchcopy_bg .catchcopy {
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    padding: 30px 0;
  }
  .index_slider_bg .catchcopy_bg .catchcopy p {
    font-size: 15px;
  }
  .index_greet {
    display: flex;
    justify-content: space-between;
  }
  .index_greet p {
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  }
  .index_greet img {
    width: 350px;
    height: 100%;
    padding-left: 30px;
  }
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** navigation
    ******************************************************************************
    ----------------------------------------------------------------------------*/
  .nav {
    width: 43% !important;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .ft_bg .ft .ft_ttl h1 {
    font-size: 25px;
  }
  .ft_bg .ft .ft_ttl h1 span {
    font-size: 8px;
  }
  .ft_bnr_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .ft_bnr_list li {
    width: calc(50% - 2em);
  }
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** page
    ******************************************************************************
    ----------------------------------------------------------------------------*/
  .news_list,
  .photo_list {
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
    width: 100%;
    min-width: calc(100% - 200px);
    padding-right: 50px;
  }
  .news_list .news_item_cont,
  .news_list .photo_item_cont,
  .photo_list .news_item_cont,
  .photo_list .photo_item_cont {
    padding: 10px;
  }
  #side {
    position: sticky;
    top: calc(130px + 2em);
    width: 100%;
    max-width: 200px;
  }
  #side #link {
    margin: 0;
    width: 100%;
  }
  .tab_dn {
    display: none;
  }
}/*# sourceMappingURL=sp.css.map */