@charset "UTF-8";
/*====================================

  URAKAWA PLUS

  ----------------------------------
  Color
  ----------------------------------

    primary     : #FAF0E6
    secondary   : #FC8E62
    tertiary    : #FFDB64

    border      : #D1D1D1
    text        : #1C1C1C

  ----------------------------------
  font
  ----------------------------------

    JP  : BIZ UDGothic
    EN  : Poppins

====================================*/
/* 置換済 */
:root {
  --primary: #FAF0E6;
  --secondary: #FC8E62;
  --tertiary: #FFDB64;
  --border: #D1D1D1;
  --text: #1C1C1C;
}

/*==================================
  General - サイト共通
==================================*/
body {
  font-family: "BIZ UDGothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
  color: #1C1C1C;
  letter-spacing: 0.15em;
}

#skiptocontent a {
  color: #1C1C1C;
  background: #FC8E62;
}

.l-wrapper {
  width: 100%;
  text-align: left;
  overflow: hidden;
  font-size: 1.8rem;
}
.l-wrapper.is-fixed {
  position: fixed;
}

@media only screen and (max-width: 767px) {
  .l-wrapper {
    font-size: 1.6rem;
  }
}
.l-inner {
  max-width: 1560px;
  padding: 0 20px;
  margin: 0 auto;
}

.l-wrap {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/*==================================
  Parts - 共通パーツ
==================================*/
.u-bg {
  position: relative;
}
.u-bg::before, .u-bg::after {
  content: "";
  position: absolute;
  right: 0;
  width: calc(100% - 80px);
  min-width: 1840px;
}
.u-bg::before {
  top: 0;
  height: 100%;
  z-index: -1;
  border-radius: 0 0 0 90px;
}
.u-bg::after {
  top: -90px;
  height: 90px;
  z-index: -2;
}
.u-bg_beige::before, .u-bg_beige::after {
  background-color: #FAF0E6;
}
.u-bg_white::before, .u-bg_white::after {
  background-color: #FFFFFF;
}
.u-bg_orange::before, .u-bg_orange::after {
  background-color: #FC8E62;
}

@media (max-width: 1839px) {
  .u-bg::before {
    left: 0;
    right: auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .u-bg::before {
    border-radius: 0 0 0 50px;
  }
}
.u-relative {
  position: relative;
}

/*
  Button - ボタン
====================================*/
a.c-btn {
  color: #1c1c1c;
  font-weight: 700;
  display: inline-block;
}
a.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
a.c-btn:hover, a.c-btn:focus {
  opacity: 0.8;
}
a.c-btn .arrow {
  min-height: 30px;
}
a.c-btn .arrow.__left {
  padding-left: 46px;
}
a.c-btn .arrow.__right {
  padding-right: 46px;
}

.arrow {
  position: relative;
}
.arrow::before, .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  aspect-ratio: 1;
}
.arrow::before {
  width: 30px;
  background-color: #1c1c1c;
  border-radius: 50%;
}
.arrow.__left::before {
  left: 0;
}
.arrow.__left::after {
  left: 9px;
}
.arrow.__right::before {
  right: 0;
}
.arrow.__right::after {
  right: 9px;
}

/* → */
.__right::after {
  background: url(/assets/images/common/arrow.svg) center/cover no-repeat;
  width: 12px;
}

.__left::after {
  background: url(/assets/images/common/arrow.svg) center/cover no-repeat;
  width: 12px;
  transform: rotate(180deg);
}

.c-btn02 {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  width: 100%;
  max-width: 320px;
  padding: 10px 30px;
  border-radius: 9999px;
  border: 1px solid #1c1c1c;
  background: #fff;
  color: #1c1c1c;
}
.c-btn02:visited {
  color: #1c1c1c;
}
.c-btn02:hover,.c-btn02:focus,.c-btn02:active {
  color: #fff;
  background: #1c1c1c;
}

.c-btn02_bk {
  color: #fff;
  background: #1c1c1c;
}
.c-btn02_bk:visited {
  color: #fff;
}
.c-btn02_bk:hover,.c-btn02_bk:focus,.c-btn02_bk:active {
  color: #1c1c1c;
  background: #fff;
}

/*==================================
  Header - ヘッダー
==================================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  background: rgb(255, 255, 255);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}
.l-header.is-hide {
  transform: translateY(-100%);
  opacity: 0;
}
.l-header_inr {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header_logo {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  max-width: 482px;
  width: 32%;
}
.l-header_logo > a {
  display: inline-block;
  width: 100%;
}
.l-header_logo-sub {
  max-width: 310px;
  width: 20%;
  z-index: 999;
}
.l-header_utility {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100vh; */
  background: #FAF0E6;
  overflow: scroll;
  padding: 200px 0 40px;
  height: 100dvh;
}
.l-header_utility_inr {
  width: 100%;
  margin: 60px auto 0;
  display: flex;
  justify-content: flex-end;
}
.l-header_utility_logo {
  display: inline-block;
  max-width: 482px;
  width: 45%;
}
.l-header_utility_sub {
  margin-left: 120px;
}
.l-header_utility_sub_inr > *:not(:first-of-type) {
  margin-top: 60px;
}
.l-header_utility_sub_search > p {
  font-size: 2.4rem;
  font-weight: 700;
}
.l-header_utility_sub_navi {
  margin-top: 60px;
}
.l-header_utility_sub_navi_item:not(:first-of-type) {
  margin-top: 10px;
}
.l-header_utility_sub_form {
  height: 50px;
  width: 480px;
}
.l-header_utility_sub_form form {
  width: 100%;
  height: 100%;
  position: relative;
}
.l-header_utility_sub_form form input {
  width: calc(100% - 6em);
  height: 100%;
  padding: 0 1em;
  text-align: left;
  background: #fff;
  margin-right: 6em;
  border-radius: 30px 0 0 30px;
}
.l-header_utility_sub_form form button {
  width: 6em;
  height: 100%;
  text-align: center;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  background: #FC8E62;
  border-radius: 0 30px 30px 0;
}
.l-header_nav_item {
  padding-left: 45px;
  position: relative;
}
.l-header_nav_item:not(:first-of-type) {
  margin-top: 20px;
}
.l-header_nav_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1;
}
.l-header_nav_item a {
  font-size: 3.6rem;
  color: #1c1c1c;
  text-decoration: none;
  font-weight: 700;
}
.l-header_link > a {
  color: inherit;
}

.i-tag::before {
  background: url(/assets/images/common/icon_tag.svg) no-repeat center/cover;
}

.i-topics::before {
  background: url(/assets/images/common/icon_topics.svg) no-repeat center/cover;
}

.i-door::before {
  background: url(/assets/images/common/icon_door.svg) no-repeat center/cover;
}

.i-search::before {
  background: url(/assets/images/common/icon_search.svg) no-repeat center/cover;
}

@media only screen and (min-width: 1200px) {
  .l-header_logo.--under {
    top: 20px;
    max-width: 280px;
  }
}

@media only screen and (max-width: 1199px) {
   .l-header_utility {
    padding: 100px 0 20px;
  }
  .l-header_inr {
    padding: 10px 20px;
  }
  .l-header_logo-sub {
    display: none;
  }
  .l-header_logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    min-width: 160px;
  }
  .l-header_utility_inr {
    flex-direction: column;
  }
  .l-header_utility_sub {
    margin-left: 0;
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header_utility_sub_inr > p {
    font-size: 1.8rem;
  }
  .l-header_nav_item {
    padding-left: 30px;
  }
  .l-header_nav_item::before {
    width: 20px;
  }
  .l-header_nav_item a {
    font-size: 2.2rem;
  }
  .l-header_utility_sub_search > p {
    font-size: 1.8rem;
  }
  .l-header_utility_sub_form {
    width: 100%;
  }
}

/* Google翻訳 */
.l-header_translate {
  position: relative;
  display: inline-block;
}
.l-header_translate::after {
  content: "";
  position: absolute;
  right: 1em;
  top: calc(1em * 0.6);
  pointer-events: none;
  width: calc(1em * .9);
  aspect-ratio: 1;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #1c1c1c;
}
.l-header_translate select {
  background-color: #fff;
  display: inline-block;
  padding: 0 calc(20px + 1em) 0 16px;
  border: solid 1px #D1D1D1;
  border-radius: 10px;
  -webkit-appearance: none; /* Chrome, Safari */
  appearance: none;
}

/*
 	Hamburger
====================================*/
#nav-toggle .hamburger {
  position: relative;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 999;
}
#nav-toggle .on,
#nav-toggle .off {
  display: block;
  text-align: center;
  padding-top: 28px;
  font-size: 90%;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "Poppins", sans-serif;
}
#nav-toggle span.line {
  display: block;
  height: 1px;
  width: 50px;
  background: #1C1C1C;
  position: absolute;
  top: 0;
  left: 5px;
  transition: 0.35s ease-in-out;
}
#nav-toggle span.line:nth-child(1) {
  top: 2px;
}
#nav-toggle span.line:nth-child(2) {
  top: 14px;
}
#nav-toggle span.line:nth-child(3) {
  top: 26px;
}
#nav-toggle .off {
  display: none;
}

.open #nav-toggle .on {
  display: none;
}
.open #nav-toggle .off {
  display: block;
}
.open #nav-toggle span.line {
  top: 14px;
}
.open #nav-toggle span.line:nth-child(1) {
  transform: rotate(200deg);
}
.open #nav-toggle span.line:nth-child(2) {
  display: none;
}
.open #nav-toggle span.line:nth-child(3) {
  transform: rotate(-200deg);
}

#global-nav {
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.open {
  overflow: hidden;
}
.open #global-nav {
  visibility: visible;
  opacity: 1;
}

/*==================================
  Footer - フッター
==================================*/
.l-footer {
  margin-top: 160px;
  background-color: #FAF0E6;
}
.l-footer_unit {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-top: 60px;
  padding-bottom: 20px;
  border-bottom: solid 1px #1C1C1C;
}
.l-footer_unit_inner {
  display: flex;
  gap: 40px;
  flex: 1;
  width: 100%;
}
.l-footer_logo {
  display: inline-block;
  width: 100%;
  max-width: 280px;
}
.l-footer_text {
  max-width: 400px;
}
.l-footer_SNS_list {
  display: flex;
  gap: 15px;
}
.l-footer_SNS_list li {
  width: 30px;
}
.l-footer_SNS_list li a {
  display: inline-block;
}
.l-footer_SNS_list li img {
  width: 100%;
}
.l-footer_unit-sub {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 0;
}
.l-footer_copy {
  font-family: "Poppins", serif;
  font-size: 90%;
  letter-spacing: 0.1em;
}

.l-footer_link {
  display: flex;
  flex-wrap: wrap;
}
.l-footer_link li:not(:last-of-type) {
  margin-right: 1em;
  padding-right: 1em;
  position: relative;
}
.l-footer_link li:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 1em;
  background: #1C1C1C;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1199px) {
  .l-footer_unit {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer {
    margin-top: 80px;
  }
  .l-footer_unit_inner {
    gap: 20px;
    flex-direction: column;
  }
  .l-footer_logo {
    max-width: 200px;
  }
  .l-footer_text {
    max-width: none;
  }
  .l-footer_unit-sub {
    flex-direction: column;
    padding: 20px 0;
    align-items: center;
    gap: 10px;
  }
}
/*
  Pagetop - ページトップ
====================================*/
.pagetop {
  position: absolute;
  top: -50px;
  right: 20px;
}
.pagetop a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #1C1C1C;
  border-radius: 50%;
  min-width: 90px;
  aspect-ratio: 1;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.pagetop a > span {
  padding: 10px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .pagetop {
    top: -30px;
  }
  .pagetop a {
    min-width: 60px;
    font-size: 1.2rem;
  }
}
/*==================================
  Calendar - イベント本体
==================================*/
.p-eventList {
  display: grid;
  gap: 10px 0;
}
.p-eventList > li {
  display: flex;
  gap: 0 40px;
}
.p-eventList_label {
  display: grid;
}
.p-eventList_label > span {
  text-align: center;
  width: 10em;
  font-size: 1.6rem;
  background: #f5f5f5;
}
.p-eventList_title {
  flex: 1;
}
.p-eventList_title a {
  text-decoration: underline;
}
.p-eventList_title a:hover, .p-eventList_title a:focus {
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .p-eventList_label {
    place-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .p-eventList {
    gap: 20px 0;
  }
  .p-eventList > li {
    flex-direction: column;
    gap: 10px 0;
  }
  .p-eventList_label > span {
    font-size: 1.4rem;
  }
}
/*==================================
  List - リスト系
==================================*/
/*
  Grid - 左寄せ
====================================*/
.c-gridList {
  display: grid;
  gap: 40px;
}
.c-gridList:not(:first-of-type) {
  margin-top: 40px;
}
.c-gridList a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.c-gridList figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-gridList figure figcaption {
  font-weight: 700;
}

@media only screen and (min-width: 1200px) {
  .c-gridList.pc-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-gridList.pc-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-gridList.pc-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-gridList.pc-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .c-gridList.tb-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-gridList.tb-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-gridList.tb-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .c-gridList {
    gap: 20px;
  }
  .c-gridList:not(:first-of-type) {
    margin-top: 20px;
  }
  .c-gridList.sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-gridList.sm-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*
  Flex - 中央寄せ
====================================*/
.c-flexList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -20px;
  margin-top: -20px;
}
.c-flexList a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.c-flexList a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-flexList a figcaption {
  font-weight: 700;
}
.c-flexList li {
  margin-left: 20px;
  margin-top: 20px;
}
.c-flexList.c-flexList__col2 > li {
  width: calc(50% - 20px);
}
.c-flexList.c-flexList__col3 > li {
  width: calc(33.3333333333% - 20px);
}
.c-flexList.c-flexList__col4 > li {
  width: calc(25% - 20px);
}
.c-flexList.c-flexList__col5 > li {
  width: calc(20% - 20px);
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .c-flexList.c-flexList__col4 > li, .c-flexList.c-flexList__col5 > li {
    width: calc(33.3333333333% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .c-flexList.c-flexList__col2 > li, .c-flexList.c-flexList__col3 > li {
    width: calc(100% - 20px);
  }
  .c-flexList.c-flexList__col4 > li, .c-flexList.c-flexList__col5 > li {
    width: calc(50% - 20px);
  }
}
/*
  textlink - 通常
====================================*/
.c-linkList > li {
  border-bottom: 1px solid #dedede;
  padding: 20px 0;
  /* アイコン */
  position: relative;
  padding-left: calc(1.4em + 40px);
}
.c-linkList > li::before {
  content: "";
  position: absolute;
  top: calc(0.2em + 20px);
  left: 20px;
  width: 1.4em;
  height: 1.4em;
}
.c-linkList > li > a {
  display: inline-block;
}
.c-linkList.i-folder > li::before {
  background: url(/assets/images/common/i_folder.svg) no-repeat;
}
.c-linkList.i-page > li::before {
  background: url(/assets/images/common/i_page.svg) no-repeat;
}
.c-linkList_unit .c-linkList:first-of-type {
  border-top: 1px solid #dedede;
}
.c-linkList__col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}

@media only screen and (max-width: 767px) {
  .c-linkList > li {
    padding: 16px 0;
    padding-left: calc(1.4em + 32px);
  }
  .c-linkList > li::before {
    top: calc(0.2em + 16px);
    left: 16px;
  }
  .c-linkList__col2 {
    display: block;
  }
}
/*
  Thumbnail - サムネ
====================================*/
.c-tmbList_article > a {
  display: block;
  text-decoration: none;
  position: relative;
  color: #1c1c1c;
  height: 100%;
}
.c-tmbList_article > a:hover, .c-tmbList_article > a:active, .c-tmbList_article > a:focus {
  opacity: 1;
}
.c-tmbList_article > a:hover img, .c-tmbList_article > a:active img, .c-tmbList_article > a:focus img {
  opacity: 1;
  transform: scale(1.1);
}
.c-tmbList_photo {
  position: relative;
  border-radius: 0 0 30px 0;
  overflow: hidden;
  transform: translateZ(0);
}
.c-tmbList_photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: inherit;
  /* background-color: #ECECEC; */
}
.c-tmbList_photo > figcaption {
  background: #FC8E62;
  padding: 0 10px;
  border-radius: 0 0 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  font-size: 90%;
  min-width: 9.5em;
  text-align: center;
}
.c-tmbList_info > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
.c-tmbList.c-tmbList--tb.c-tmbList__line .c-tmbList_article {
  border-top: 1px solid #e0e0e0;
  padding: 20px 0;
}
.c-tmbList.c-tmbList--tb.c-tmbList__line .c-tmbList_article:last-of-type {
  border-bottom: 1px solid #e0e0e0;
}

/* rl */
.c-tmbList--rl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
}

/* tb */
.c-tmbList--tb .c-tmbList_item {
  display: flex;
  gap: 40px;
}
.c-tmbList--tb .c-tmbList_photo {
  flex-shrink: 0;
  width: 240px;
}
.c-tmbList--tb .c-tmbList_info {
  width: 100%;
}

@media only screen and (max-width: 1199px) {
  .c-tmbList--rl {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-tmbList_photo > figcaption {
    border-radius: 0 0 10px 0;
  }
  .c-tmbList--tb .c-tmbList_item {
    flex-direction: column;
    gap: 10px;
  }
  .c-tmbList--tb .c-tmbList_photo {
    width: 100%;
  }
}
/*
  Card list - カードリスト 
====================================*/
.c-date {
  display: block;
  margin-top: 10px;
  font-size: 90%;
  font-weight: 700;
}
.c-date span {
  padding-left: 20px;
  position: relative;
}
.c-date span::before {
  content: "";
  background-color: #1C1C1C;
  width: 10px;
  height: 1px;
  position: absolute;
  top: 8px;
  left: 0;
}

/*
  Slick - スライダー
====================================*/
/* Arrows */
.c-splide-controls {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media only screen and (max-width: 767px) {
  .c-splide-controls {
    margin-top: 30px;
  }
}
.c-splide_arrows .arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.c-splide-counter .current {
  padding-right: 1em;
  margin-right: 0.5em;
  position: relative;
}
.c-splide-counter .current::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #1C1C1C;
  position: absolute;
  top: 0;
  right: 0;
}

.c-splide-toggle {
  padding: 0 20px;
  border: 1px solid #1c1c1c;
  border-radius: 20px;
}
.c-splide-toggle > span {
  padding-left: 16px;
  position: relative;
}
.c-splide-toggle > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  aspect-ratio: 1;
}

.is-playing {
  background-color: transparent;
}
.is-playing span::before {
  background: url(/assets/images/common/i_pause.svg) center/cover no-repeat;
}

.is-paused {
  background-color: #1c1c1c;
}
.is-paused span {
  color: #fff;
}
.is-paused span::before {
  background: url(/assets/images/common/i_play.svg) center/cover no-repeat;
}