@charset "utf-8";


/* ========================================================
** Theme basic settings
======================================================== */

/* Base settings
-------------------------------------------------------- */

:root {
  --site-padding-horiz: 3%;
  --site-baseColor: #fff;
  --site-contrastColor: #505050;
  --site-link-txtColor: #0693e3;
  --newsList-color: #ee7800;
  --basic-font-family: 'Quicksand', 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --clamp_font_size-S_1: clamp(0.75rem, 3vw, 0.9rem);
  --clamp_font_size-M_1: clamp(0.85rem, 3vw, 1rem);
  --clamp_font_size-M_2: clamp(1rem, 4vw, 1.125rem);
  --clamp_font_size-M_3: clamp(1.175rem, 4vw, 1.5rem);
  --clamp_font_size-M_4: clamp(1.25rem, 4vw, 1.5rem);
  --clamp_font_size-L_1: clamp(1.5rem, 5vw, 2rem);
  --clamp_font_size-L_2: clamp(1.75rem, 4vw, 2.5rem);
  --site-header-height: 8.75rem;
  --backToTop-width: clamp(3.25rem, 9vw, 5rem);
  --backToTop-position: 15px;
}
/*
It is more reliable to set the height using CSS
than to get and reflect it using JavaScript
(this avoids having to reload the browser each time
you manually change the browser width).
*/
@media screen and (max-width: 1220px) {
  :root {
    --site-header-height: 60px;
  }
}

html {
  background-color: var(--site-baseColor);
}
body {
  background-color: var(--site-baseColor);
  color: var(--site-contrastColor);
  font-family: var(--basic-font-family);
}
a {
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.5;
}
p {
  text-align: justify;
}
img {
  object-fit: contain;
}
ul, li, dl, dt, dd, ol {
  margin: 0;
  padding: 0;
  text-indent: 0;
  list-style-type: none;
}


/* Common layout settings (Basics)
-------------------------------------------------------- */

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--site-header-height);
}
main {
  overflow: hidden;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}
body:not(.home) #pageHeader {
  height: 120px;
  width: 100%;
  background: url(../images/pageHeader_back.webp) 0 0 no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e9e7e7;
  border-top: 1px solid #e9e7e7;
}
body:not(.home) .pageHeader_title {
  display: block;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px #ee7800;
  width: 500px;
}
main > *:not(#graphic):not(#count):not(#contact):not(#pageHeader) {
  padding-left: var(--site-padding-horiz);
  padding-right: var(--site-padding-horiz);
}
main > *:not(#graphic):not(#count):not(#contact):not(#pageHeader) > * {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}


/* Site header
-------------------------------------------------------- */

/*** Basics ***/
header#top {
  width: 100%;
  height: var(--site-header-height);
  top: 0;
  left: 0;
  background-color: var(--site-baseColor);
  display: flex;
  position: fixed;
  z-index: 999;
  box-shadow: 0 0 2px #ddd;
}
header#top.active {
  padding-bottom: 60px;
  transition: 0.3s ease-in-out;
}
.header_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background-color: var(--site-baseColor);
  padding: 15px 15px;
}
header#top .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header#top .header-bottom {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/*** Site logo (Title) ***/
header#top h1 {
  margin: 0;
}
header#top h1 a {
  display: block;
}
header#top h1 a img {
  max-height: 50px;
}

/*** Global navi ***/
.nav_search {
  position: relative;
}
.nav_search nav {
  width: 100%;
  height: auto;
}
.nav_search #menu-header {
	margin: 0;
  vertical-align: bottom;
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 15px; */
  gap: 40px;
}
.nav_search #menu-header .menu-item > a {
  font-weight: bold;
}
.nav_search #menu-header .button-style > a {
  display: flex;
  align-items: center;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1;
  /*
  box-shadow: 0px 0px 0px 1px #515151;
  border-radius: 5px;
  padding: 10px 10px;
  */
}
.button-style.bg-blue > a {
  /* background-color: #77c9ef; */
}
.button-style.bg-yellow > a {
  /* background-color: #ffeeb7; */
}
.button-style.bg-pink > a {
  /* background-color: #fbe3d6; */
}
.button-style.bg-green > a {
  /* background-color: #b0cb7f; */
}
.button-style.bg-grad-yellow > a {
  /*
  background: linear-gradient(to bottom,
    #f8f87d 0%,
    #e6e650 50%,
    #bfbf3f 100%
  );
  */
}
.nav_search #menu-header .btn-newsLists > a {
  /* align-items: flex-start !important; */
}
.nav_search #menu-header .btn-newsLists::before {
  /* content: 'News'; */
  font-family: var(--basic-font-family);
  font-size: .675em;
  font-weight: bold;
  color: currentColor;
  position: absolute;
  position: absolute;
  top: calc(2px + 2.125em);
  left: calc(22px + 1.5em + 3px);
}
.nav_search #menu-header .btn-newsLists > a::before {
  content: "\e91a";
  font-family: 'icomoon';
  font-size: 1.275em; /* Icon size */
  font-weight: normal;
  color: #fcb529;
  text-shadow: 0 0 1px rgb(0 0 0);
  margin-right: 5px;
}
.nav_search #menu-header .menu-item.btn-newsLists > a::after {
  align-self: center;
}
@media (min-width: 1221px) {
  .nav_search #menu-header .button-style {
    display: grid;
    align-self: stretch;
  }
  .nav_search #menu-header .button-style > a:hover {
    opacity: .7 !important;
  }
}
@media (max-width: 1220px) {
  .nav_search #menu-header {
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto 0;
  }
  .nav_search #menu-header .button-style > a {
    background: inherit;
    box-shadow: none;
    border-radius: 0;
    border-bottom: none !important;
    align-items: center !important;
    padding-left: 0 !important;
    width: fit-content;
    position: relative;
  }
  .nav_search #menu-header .btn-newsLists::before {
    content: none;
  }
  .nav_search #menu-header .menu-item.menu-item-has-children > a::before,
  .nav_search #menu-header .menu-item.menu-item-has-children > a::after {
    content: '' !important;
    display: block;
    border: none !important;
    width: 1rem !important;
    height: .125rem !important;
    background-color: #fcb529;
    transform: none !important;
    transition: transform 0.3s ease !important;
  }
  .nav_search #menu-header .menu-item.menu-item-has-children > a::before {
    position: absolute;
    /* right: 10px; */
    right: 0;
    transform: rotate(90deg) !important;
    margin: 0 !important;
  }
  .nav_search #menu-header .menu-item.menu-item-has-children.sub-open > a::before {
    transform: rotate(0deg) !important;
  }
}

/*** Global navi - Sub menu ***/
.nav_search #menu-header .menu-item.menu-item-has-children {
  position: relative;
}
.nav_search #menu-header .menu-item.menu-item-has-children > a::after {
  /* content: ''; */
  width: .5em;
  height: .5em;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-0.125em) rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 7px;
}
.nav_search #menu-header .menu-item > a + .sub-menu {
  min-width: 100%;
  height: auto;
  border: 1px solid #e0e4e9;
  background-color: #f8f8f8;
  z-index: 2;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  transform: translateY(-22px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.nav_search #menu-header .sub-menu .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: none;
  box-shadow: none;
  font-size: 85%;
  font-weight: bolder;
  white-space: nowrap;
  border-radius: inherit;
  padding: 10px 10px;
}
.nav_search #menu-header .sub-menu .menu-item:not(:last-of-type) > a {
  border-bottom: 1px solid #e0e4e9;
}
.nav_search #menu-header .sub-menu .menu-item > a::before {
  content: '' !important;
  font-family: unset;
  border: .3em solid transparent;
  border-left: calc(.3em * 1.6) solid currentColor;
  margin-right: 0 !important;
  font-size: 1.5em;
  font-weight: normal;
  color: #fcb529;
  text-shadow: none !important;
}
@media (min-width: 1221px) {
  .nav_search #menu-header .menu-item.menu-item-has-children:hover > a::after {
    transform: translateY(0.125em) rotate(-135deg);
  }
  .nav_search #menu-header .menu-item.menu-item-has-children:hover > a + .sub-menu {
    transform: translateY(-9px);
    visibility: visible;
    opacity: 1;
  }
  .nav_search #menu-header .sub-menu .menu-item > a:hover {
    background-color: #a1a1a1;
    color: #fff;
    opacity: 1 !important;
  }
}
@media (max-width: 1220px) {
  .nav_search #menu-header .menu-item > a + .sub-menu {
    border: none !important;
    background: none !important;
    position: relative !important;
    visibility: hidden !important;
    opacity: 0 !important;
    top: inherit !important;
    left: inherit !important;
    transform: none !important;
    max-height: 0;
    transition: all 0.3s ease;
  }
  .nav_search #menu-header .menu-item.sub-open > a + .sub-menu {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 1000px;
  }

}

/*** "New!" mark ***/
.with-new-mark {
  position: relative;
}
.with-new-mark .mark-new {
  display: block;
  width: fit-content;
  /* font-size: .875rem; */
  font-size: .85rem;
  font-weight: bold;
  color: #d50000;
  line-height: 1;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  border-radius: 5px;
  position: absolute;
  /* top: -10px; */
  top: -5px;
  /* left: 0.5em; */
  right: -10px;
  pointer-events: none;
}
@media screen and (max-width: 1220px) {
  .with-new-mark .mark-new {
    top: -15px;
    right: auto;
  }
}

/*** Hamburger button ***/
@media screen and (min-width: 1221px) {
	.btn {
		display: none;
	}
}

/*** Site Search ***/
ul.search {
  overflow: hidden;
	margin: 0;
	list-style-type: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
}
ul.search li {
	text-align: left;
  vertical-align: middle;
  color: #fff;
}
ul.search li:nth-child(2) {
  margin-left: 25px;
}
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2;
  border-radius: 20px;
  border: 2px solid #828282;
  background-color: #ffffff;
  width: 9rem;
  height: 2.25rem;
  color: #828282;
}
.search-btn:hover {
  background-color: #fcb529;
  border: #fcb529;
  color: #fff;
}
.search-btn span {
  font-size: var(--clamp_font_size-M_1);
  font-weight: bold;
  width: 100%;
  text-align: center;
  vertical-align: baseline;
}
div.header_search.active {
  z-index: 50;
  position: absolute;
  top: var(--site-header-height);
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: #fcb529;
  transition: .2s ease;
  display: flex;
}
form.header_search_window.active {
  display: table;
  margin: 0 auto;
  font: inherit;
}
form.header_search_window.active input[type="text"] {
  display: table-cell;
  vertical-align: top;
  width: 400px;
  height: 40px;
  margin-right: 5px;
  color: #3e3a39;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  padding: 5px 8px;
  box-sizing: border-box;
}
form.header_search_window.active input[type="submit"] {
  vertical-align: top;
  width: 80px;
  height: 40px;
  color: #fff;
  background-color: #828282;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}
form.header_search_window.active input[type="submit"]:hover {
  opacity: 0.5;
}
.search_close.active {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 260%;
  font-weight: normal;
  color: rgb(255 255 255 / 85%);
  height: 40px;
  margin-right: 20px;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}
input:focus::-ms-input-placeholder,
textarea:focus::-ms-input-placeholder {
  color: transparent;
}
input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #b0c4de;
}
::placeholder{ /* Others */
  color: #b0c4de;
}
form.header_search_window {
  display: none;
}
.search_close {
  display: none;
}
.header_search-mob {
  display: none;
}

/*** Valious elements ***/
.button-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 20px;
  border: 1px solid #fcb529;
  background-color: #fcb529;
  /* width: 11rem; */
  /* height: 2.5rem; */
  text-shadow: 0 0 5px #ee7800;
  padding: 8px 10px 7px;
}
.button-contact a:hover {
  color: #fcb529;
  background-color: #fff;
  background-size: 8%;
  border: 1px solid #fcb529;
  text-shadow: none;
  opacity: 1;
}

/*** Below 1220px screen width ***/
@media screen and (max-width: 1220px) {
  /* Commons */
  header#top {
    display: flex;
    position: fixed;
    z-index: 999;
  }
  .header_wrap {
    width: auto;
    height: auto;
  }
  header#top h1 {
    padding: 0;
    width: 172px;
    height: 40px;
  }
  /* Hamburger menu */
  .nav_search {
    position: fixed;
    top: 0;
    right: -100%;
    transform: translateX(100%);
    max-width: 50vw;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: rgba(193, 218, 109, 1);
    transition: .5s;
    z-index: 50;
    overflow-y: scroll;
    padding: 5% 5% 5% 7%;
    box-sizing: border-box;
  }
  .header-nav-sub {
    visibility: hidden;
    opacity: 0;
    display: none;
  }
  .nav_search.open {
    background-color: rgba(193, 218, 109, 1);
    right: 0;
    transform: translateX(0);
    max-width: 100vw;
    padding-top: 50px;
  }
  .nav_search.open::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
  }
  .nav_search.open nav {
    width: auto;
    height: auto;
    margin-bottom: 5%;
    display: block;
    height: 100%;
    overflow: auto;
  }
  .nav_search.open nav::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
  }
  ul.search {
    padding-top: 2%;
    padding-bottom: 2%;
    border-top: 1px #bbbbbb dotted;
    border-bottom: 1px #bbbbbb dotted;
    display: block;
    width: auto;
  }
  ul.search li {
    margin-left: 0;
    padding: 8px 0;
  }
  ul.header-nav {
    display: block;
    height: auto;
    padding-bottom: 25px;
    width: auto;
  }
  /* Invisible Site Search */
  ul.search li:first-child {
    display: none;
  }
  .search-btn, .contact-btn {
    width: 83vw;
  }
  /* Hamburger button */
  .btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 100;
  background-color: rgba(193, 218, 109, 1);
  }
  .btn-line {
    display: block;
    position: relative;
    width: 35%;
    height: 2px;
    background-color: #ffffff;
    transition: .2s;
    margin: auto;
  }
  .btn-line::before,
  .btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: .5s;
  }
  .btn-line::before {
    transform: translateY(-10px);
  }
  .btn-line::after {
    transform: translateY(10px);
  }
  .btn-line.open {
    background-color: transparent;
  }
  .btn-line.open::before ,
  .btn-line.open::after {
    content: "";
    background-color: rgb(255, 255, 255);
    transition: .2s;
  }
  .btn-line.open::before {
    transform: rotate(45deg);
  }
  .btn-line.open::after {
    transform: rotate(-45deg);
  }
  /* Site Saerch settings */
  div.header_search-mob.open {
    display: block;
    padding-top: 5%;
    margin-bottom: 50px;
    z-index: 100;
    position: relative;
  }
  div.header_search-mob {
    display: none;
  }
  form.search_window-mob {
    display: table;
    font: inherit;
    margin-bottom: 100px;
  }
  form.search_window-mob input[type="text"] {
    display: table-cell;
    vertical-align: top;
    width: 83vw;
    height: 40px;
    color: #3e3a39;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    padding: 5px 8px;
    box-sizing: border-box;
    margin-bottom: 5px;
    appearance: none;
    -webkit-appearance: none;
  }
  form.search_window-mob input[type="submit"] {
    display: table-cell;
    vertical-align: top;
    width: 83vw;
    height: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background-color: #828282;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    line-height: 1.2;
    cursor: pointer;
  }
  form.search_window-mob input[type="submit"]:hover {
    opacity: 0.5;
  }
  form.search_window-mob input:focus::-webkit-input-placeholder {
    color: transparent;
  }
  form.search_window-mob input:focus::-moz-placeholder {
    color: transparent;
  }
  form.search_window-mob input:focus::-ms-input-placeholder {
    color: transparent;
  }
  form.search_window-mob input:focus::placeholder {
    color: transparent;
  }
  .header_search-mob.open p {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    color: #7c7c7c;
    padding-top: 15px;
  }
}
/*** Below 740px screen width ***/
@media screen and (max-width: 740px) {
  .header-nav-sub div ul li a {
    padding-left: 1em;
  }
}


/* Site footer
-------------------------------------------------------- */

/*** Basics ***/
footer {
  width: 100%;
  padding-top: 50px;
  background-color: #fff;
}
#footer_inner {
  position: relative;
  max-width: 1080px;
  padding: 0 calc(var(--backToTop-width) + var(--backToTop-position));
  margin: 0 auto;
}
#footer_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#footer_logo {
  width: 100%;
  max-width: 250px;
  flex-shrink: 0;
}
.footer_lists ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 2em;
  font-weight: bold;
}
.footer_lists li {
  flex-shrink: 0;
  text-decoration: underline;
}
.footer_lists li:hover {
  text-decoration: none;
}
#footer_bottom {
  position: relative;
  text-align: center;
}

/*** Button of scroll to page top ***/
#backtoTop {
  position: fixed;
  bottom: var(--backToTop-position);
  right: var(--backToTop-position);
  width: var(--backToTop-width);
  height: var(--backToTop-width);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  transform: translateY(10px);
  z-index: 30;
}
#backtoTop.show {
  opacity: 1;
  visibility: visible;
}
#backtoTop a {
  display: none;
  width: 100%;
  height: 100%;
  background: url('../images/yotsuba_up.webp') 0 0 no-repeat;
  background-size: cover;
  transition: opacity .3s ease;
  opacity: 0.8;
}
#backtoTop.show a {
  display: block;
}
#backtoTop a:hover {
  opacity: 0.5;
}

/*** Below 1050px screen width ***/
@media screen and (max-width: 1050px) {
  #footer_logo,
  .footer_lists {
    margin: 0 auto;
  }
  .footer_lists ul {
    justify-content: center;
    margin: 0 auto;
    position: relative;
  }
  #footer_bottom ul li {
    text-align: center;
  }
  #footer_bottom_2 p {
    margin: 0 auto;
    text-align: center;
  }
}

/*** Below 430px screen width ***/
@media screen and (max-width: 430px) {
  #footer_links {
    width: 85%;
    padding: 0 15px;
    height: auto;
  }
  #footer_links ul {
    margin: 0 auto;
  }
  #footer_bottom ul {
    width: 100%;
  }
  #footer_bottom ul li {
    margin: 20px auto;
  }
  #footer_bottom p {
    width: 100%;
    font-size: 80%;
    text-align: center;
  }
}


/* Other layouts
-------------------------------------------------------- */

/*** Page(Post) Basics ***/
#entryWrap {
  background-color: #FAF9F2;
  min-height: inherit;
}
#enclosure {
  width: 100%;
  max-width: 1040px;
  padding-left: calc(var(--backToTop-width) + var(--backToTop-position));
  padding-right: calc(var(--backToTop-width) + var(--backToTop-position));
  margin-left: auto;
  margin-right: auto;
}
.entryArea {
  background-color: #fff;
  padding: 20px 40px;
  border-radius: 20px;
  margin: 0 auto;
  border: 1px solid #ddd6;
}
.entryArea_header {
  display: block;
  position: relative;
  padding-bottom: 5px;
}
.entryArea_header h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
  color: #fcb529;
}
.entryDetail {
  display: block;
}
.entryDetail h2 {
  width: 100%;
}
.entryDetail h3,
.entryDetail h4,
.entryDetail h5,
.entryDetail h6,
.entryDetail .wp-block-heading {
  margin-bottom: 0;
}
.entryDetail p {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 740px) {
  #enclosure {
    padding-left: calc(calc(var(--backToTop-width) + var(--backToTop-position)) / 2);
    padding-right: calc(calc(var(--backToTop-width) + var(--backToTop-position)) / 2);
  }
  .entryArea {
    padding: 20px 25px;
  }
  .entryArea_header h3 {
    font-size: 22px;
    margin-bottom: 0;
  }
}

/*** News list ***/
body.wp-singular #enclosure {
  /* Setting for the abolition of breadcrumb list */
  padding-top: 35px;
}
.newsList-usual .list-item {
  background: url('../images/arrow_o.png') no-repeat right 15px center #fff;
  background-size: 1.5rem;
  border: 1px solid #ddd6;
  border-radius: 20px;
  overflow: hidden;
}
.newsList-usual .list-item:not(:last-of-type) {
  margin-bottom: 10px;
}
.newsList-usual .list-item a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 2em calc(1.5rem + 20px) 2em 1.75em;
}
.newsList-usual .list-item a:hover {
  background-color: #fcb62948;
}
.newsList-usual .list-item a > * {
  display: block;
}
.newsList-usual .list-item .item-title {
  color: var(--newsList-color);
  text-decoration: underline;
}
.newsList-usual .list-item a[href*="members-news"] .item-title::before {
  content:'【会員専用】';
  font-size: 1em;
  font-weight: bold;
  /* color: rgb(198, 0, 0); */
  background: linear-gradient(90deg, rgb(250 67 67), rgb(180 80 80));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.newsList-usual .list-item time {
  flex-shrink: 0;
  font-weight: bold;
}
.newsList-usual .list-item .item-term {
  flex-shrink: 0;
  display: block;
  width: fit-content;
  font-size: .875rem;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  border-radius: 3px;
  padding: 5px 7px 5px;
  margin-left: auto;
  margin-right: 10px;
}
.newsList-usual .list-item .item-term.term--from-rijikai {
  background-color: #c04f15;
}
.newsList-usual .list-item .item-term.term--info-workshop {
  background-color: #4ea72e;
}
.newsList-usual .list-item .item-term.term--info-grant {
  background-color: #0070c0;
}
.newsList-usual .list-item .item-term.term--info-support {
  background-color: #7030a0;
}
.newsList-usual .list-item .item-term.term--satooya-seido {
  background-color: #eb27df;
}
.newsList-usual .list-item .item-term.term--riji-letter {
  background-color: #e7a626;
}
@media (min-width: 576px) {
  .newsList-usual .list-item a {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}

/*** Pagenation (Archive page) ***/
.nav-links {
  color: #fff;
  display: inline-flex;
}
.page-numbers {
  display: inline-block;
  background-color: #fcb529;
  text-decoration: none;
  text-align: center;
  line-height: 44px;
  width: 44px;
  height: 44px;
  margin: 0 3px;
  transition: .2s ease-in-out;
  white-space: nowrap;
  -webkit-border-radius: 50%;
  border-radius: 15px;
  text-shadow: 0 0 5px #ee7800;
  font-size: 18px;
}
.page-numbers.current {
  background-color: #c1da6d;
  color: #505050;
  font-weight: bold;
  text-shadow: none;
}
.dots {
  background: none;
  color: #fcb529;
  font-weight: bold;
  text-shadow: none;
}

/*** Pagenation (Post page) ***/
.pagenation {
  width: 80%;
  margin: 0 auto;
  background: rgba(255,255,255,0);
  padding: 20px 0 50px 0;
}
.pagenation li.pn_center {
  text-align: center;
}
.prev {
  float: left;
}
.left-arrow {
  position: relative;
  padding-left: 1.5em;
}
.left-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  left: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: translateY(-50%) rotate(-45deg);
}
.next {
  float: right;
}
.right-arrow {
  position: relative;
  padding-right: 1.5em;
}
.right-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 740px) {
  .pagenation {
    width: 100% !important;
  }
  .page-numbers {
    line-height: 30px;
    width: 30px;
    height: 30px;
    margin: 0 2px;
    font-size: 15px;
    border-radius: 10px;
  }
}

/*** Others ***/
.postPage-mainTtl {
  font-size: var(--clamp_font_size-M_3);
  margin-bottom: 2em;
}
.postPage-contsWrap {
  max-width: 900px;
  margin: 1.5em auto;
}
.postPage-contsWrap p {
  text-indent: 1em;
  margin-top: 0;
  margin-bottom: 1em;
}
.txtIndent-no {
  text-indent: unset !important;
}
.additionals {
  padding: 1em;
}


/* ========================================================
** Elements
======================================================== */

/* icomoon
-------------------------------------------------------- */
.icon_adj::before {
  padding-right: 2px;
  font-size: 90%;
  font-weight: normal;
  text-decoration: none;
}
.icon_adj:hover {
  color: #fff;
}
.icon_top::before {
  vertical-align: top;
  display: inline-block;
}
.icon_large {
  display: table-cell;
}
.icon_large::before {
  font-size: 2.5em;
  font-weight: normal;
}
.icon_yellow {
  color: #ffe401;
  text-shadow: 0 0 1px rgb(0 0 0);
}
.icon_orange {
  color: #fcb529;
  text-shadow: 0 0 1px rgb(0 0 0);
}
.icon_lm {
  display: table-cell;
  padding-left: 10px;
}
.icon_lm::before {
  font-size: 2.25em;
  font-weight: normal;
  padding-right: 10px;
}
.icon_lm2 {
  display: table-cell;
  padding-left: 20px;
}
.icon_lm2::before {
  font-size: 300%;
  font-weight: normal;
  padding-right: 0;
}
.icon_tweak {
  margin-right: 5px;
}

/* Breadcrumb
-------------------------------------------------------- */
.bcArea {
  margin: 0 auto 15px;
  padding-top: 40px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
}
.breadcrumb li {
  line-height: 1;
  padding-right: .5em;
  position: relative;
  text-decoration: underline;
  font-size: 85%;
}
.breadcrumb li:last-child {
  pointer-events: none;
  font-weight: bold;
  text-decoration: none;
}
.breadcrumb li::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid #828282;
  border-right: 1px solid #828282;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.breadcrumb li:last-child::before {
  border: none;
}
.breadcrumb li a {
  display: block;
  color: #828282;
  padding: 0 .5em .5em;
}
.breadcrumb li a span {
  vertical-align: top;
}

/* Accordion menu
-------------------------------------------------------- */
.accordion-menu {
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 20px;
}
.accordion-menu .acc-menu-head {
  background-color: #fcb529;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 5px #ee7800;
  padding: 20px 65px 20px 60px;
  position: relative;
}
.accordion-menu .acc-menu-head::before {
  content: 'Q.';
  width: 60px;
  height: 100%;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  padding: 20px 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.accordion-menu .acc-menu-head .mark {
  display: block;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
}
.accordion-menu .acc-menu-head .mark::before {
  content: '';
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 3px solid rgb(255, 255, 255);
  border-right: 3px solid rgb(255, 255, 255);
  transform: rotate(135deg);
  transition: .3s ease-in-out;
}
.accordion-menu.open .acc-menu-head .mark::before {
  transform: rotate(-45deg);
}
.accordion-menu .acc-menu-body > .body-inner {
  background-color: rgba(252, 201, 41, 0.18);
  position: relative;
  text-align: justify;
  padding: 20px 40px 20px 60px;
  margin-left: 0;
}
.accordion-menu .acc-menu-body > .body-inner::before {
  content: 'A.';
  width: 60px;
  height: 100%;
  font-size: 1.25rem;
  font-weight: bold;
  color: #805946;
  text-align: center;
  white-space: nowrap;
  padding: 20px 20px;
  position: absolute;
  left: 0;
  top: 0;
}

/* CSS Animation - slide (fade)
-------------------------------------------------------- */
/* Animation settings */
@keyframes slide1 { /* Slide image 1 */
	0% {
    opacity: 0;
  }
	10% {
    opacity: 1;
  }
	30% {
    opacity: 1;
  }
	40% {
    opacity: 0;
  }
	100% {
    opacity: 0;
  }
}
@keyframes slide2 { /* Slide image 2 */
	0% {
    opacity: 0;
  }
	20% {
    opacity: 0;
  }
	30% {
    opacity: 1;
  }
	60% {
    opacity: 1;
  }
	70% {
    opacity: 0;
  }
	100% {
    opacity: 0;
  }
}
@keyframes slide3 { /* Slide image 3 */
	0% {
    opacity: 0;
  }
	50% {
    opacity: 0;
  }
	60% {
    opacity: 1;
  }
	85% {
    opacity: 1;
  }
	95% {
    opacity: 0;
  }
	100% {
    opacity: 0;
  }
}
/* Each image settings */
.slide1,
.slide1_2,
.slide2,
.slide2_2,
.slide3,
.slide3_2 { /* Commons */
	animation-duration: 20s;
	animation-iteration-count:infinite;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
  object-fit: cover;
	animation-fill-mode: both;
	animation-delay: 2s;
}
.slide0,.slide0_2 { /* Base image setting */
	position: relative;
	width: 100%;
	height: 100%;
  object-fit: cover;
}
.slide1,.slide1_2 { /* Slide image 1 */
	animation-name: slide1;
}
.slide2,.slide2_2 { /* Slide image 2 */
	animation-name: slide2;
}
.slide3,.slide3_2 { /* Slide image 3 */
	animation-name: slide3;
}
.slide0, .slide1, .slide2, .slide3 {
  display: block;
}
.slide0_2, .slide1_2, .slide2_2, .slide3_2 {
  display: none;
}


/* Other valious elements
-------------------------------------------------------- */
h2 {
  letter-spacing: .07em;
}
h2 span {
  font-size: 60%;
  margin-left: 5px;
  display: block;
  line-height: 1.5em;
}


/* CSS Animation - flower petals falling
-------------------------------------------------------- */
/* Basics */
#flower_block {
  position: absolute;
  z-index: 0;
  width: 100%;
  /* height: 32rem; */
  height: 100%;
  overflow: hidden;
}
#flower_block .flower_parts_box {
  position: relative;
}
#flower_block .flower_parts_box img {
  position: absolute;
}
/* Petal size */
#flower_block .flower_parts_box img:nth-child(2n+1) {
  width: 60px;
}
#flower_block .flower_parts_box img:nth-child(2) {
  width: 55px;
}
#flower_block .flower_parts_box img:nth-child(4) {
  width: 50px;
}
#flower_block .flower_parts_box img:nth-child(6) {
  width: 75px;
}
#flower_block .flower_parts_box img:nth-child(8) {
  width: 80px;
}
#flower_block .flower_parts_box img:nth-child(10) {
  width: 60px;
}
#flower_block .flower_parts_box img:nth-child(1) {
  width: 150px;
}
#flower_block .flower_parts_box img:nth-child(9) {
  width: 170px;
}
/* Display position of Petals */
img.flower_01 {
  top: 0;
  left: 5%;
}
img.flower_02 {
  top: 0;
  left: 12%;
}
img.flower_03 {
  top: 0;
  left: 22%;
}
img.flower_04 {
  top: 0;
  left: 28%;
}
img.flower_05 {
  top: 0;
  left: 40%;
}
img.flower_06 {
  top: 0;
  left: 50%;
}
img.flower_07 {
  top: 0;
  left: 60%;
}
img.flower_08 {
  top: 0;
  left: 70%;
}
img.flower_09 {
  top: 0;
  left: 81%;
}
img.flower_10 {
  top: 0;
  left: 90%;
}
/* Animation details */
@keyframes flower {
  0% {
    opacity: 0.2;
  }
  10% {
    transform:translate(50px,50px) rotate(20deg);
    opacity: 0.3;
  }
  30% {
    transform:translate(0px,130px) rotate(50deg);
    opacity: 0.3;
  }
  50% {
    transform:translate(20px,200px)  rotate(150deg);
    opacity: 0.3;
  }
  70% {
    transform:translate(10px,320px) rotate(-50deg);
    opacity: 0.3;
  }
  90% {
    transform:translate(-30px,450px) rotate(-180deg);
    opacity: 0.3;
  }
  100% {
    transform:translate(0px,500px);
    opacity: 0.2;
  }
}
/* Initial Settings of animation */
.flower_parts_box img {
  animation: flower linear 7s infinite;
  opacity: 0;
}
/* Time before animation starts */
img.flower_01 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
img.flower_10 {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
img.flower_02 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
img.flower_05 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
img.flower_03 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
img.flower_09 {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
img.flower_06 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
img.flower_08 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
img.flower_04 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
img.flower_07 {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}


/* ========================================================
** Page - search (results)
======================================================== */

#sResultsWrap {
  padding-top: 0;
  min-height: inherit;
  background-color: #faf4eb;
}
/* Below 1050px screen */
@media screen and (max-width: 1050px) {
	#sResultsWrap {
		padding-top: 60px;
	}
}
.page-title {
  font-size: 20px;
  border-bottom: 5px solid #e6e6e6;
  padding-bottom: 10px;
}
.searchResultsBlock {
  background-image: linear-gradient(to right, #646464, #646464 1px, transparent 1px, transparent 1px);
  background-size: 6px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
  padding: 30px 0;
}
.article-title {
  font-size: 24px;
}
.meta {
  margin: 0;
  padding: 0;
}
.meta ol {
  padding-left: 0;
  margin-top: 0;
}
.meta li {
  display: inline-block;
  vertical-align: middle;
  padding-left: 0;
  margin-right: 20px;
  font-weight: bold;
  color: #fcb529;
}
.readmore {
  margin-left: 10px;
  font-weight: bold;
}
.readmore a {
  text-decoration: underline;
}


/* ========================================================
** Page - home (Top page)
======================================================== */

/*** #graphic ***/
#graphic {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.top-graphic-inner {
  position: relative;
  /* border-radius: 10px; */
  overflow: hidden;
  /* margin: 10px; */
  /* box-shadow: 0px 0px 5px #828282; */
  width: 100%;
}
.top-graphic-inner > img {
  /* height: 65vh; */
  height: 100%;
  min-height: 470px;
}
.words_onGraphic {
  z-index: 10;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 35%;
  max-width: 450px;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 699.98px) {
  #graphic {
    display: block;
  }
  .top-graphic-inner {
    border-radius: inherit;
    box-shadow: none;
    /* margin: 0 0 10px; */
  }
  .slide0, .slide1, .slide2, .slide3 {
    display: none;
  }
  .slide0_2, .slide1_2, .slide2_2, .slide3_2 {
    display: block;
  }
  .words_onGraphic {
    width: auto;
    left: -17px;
    bottom: 10px;
    background-color: initial;
  }
  .words_onGraphic img {
    width: 250px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    margin-bottom: 0;
  }
}
@media (min-width: 700px) {
  .words_onGraphic {
    min-width: 300px;
  }
}

/*** #count ***/
#count {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 460px;
  background-color: #ffffff;
  display: flex;
  /* justify-content: center; */
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
#count .catch-link-box {
  align-self: flex-start;
  position: relative;
  z-index: 1;
  max-width: 255px;
}
#count .catch-link-box a::after {
  content: none;
}
#count .catch-link-box .box-inner {
  margin-bottom: 0;
}
#count .catch-link-box.link-box-1 a {
  display: block;
  background-color: #ee8698;
  padding: .75em;
  border-radius: 15px;
}
#count .catch-link-box.link-box-1 .box-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  background-color: var(--site-baseColor);
  border-radius: 10px;
  padding: 10px;
}
#count .catch-link-box.link-box-1 figcaption {
  font-size: var(--clamp_font_size-M_2);
  font-weight: bold;
  color: #ee8698;
  margin-bottom: .5em;
}
#count .catch-link-box.link-box-2 figcaption {
  font-size: var(--clamp_font_size-S_1);
  text-decoration: underline;
  color: #ee7800;
}
#catch {
  padding: 0 1em;
}
#catch h2 {
  padding: 0 0 20px 0;
  margin: 0 auto;
  /* width: 880px; */
  text-align: center;
  /* font-size: 320%; */
  font-size: calc(var(--clamp_font_size-L_2) * 1.25);
  font-weight: bold;
  line-height: 2em;
  letter-spacing: 0.6em;
  white-space: nowrap;
}
#catch ul li {
  display: block;
  width: fit-content;
  text-align: center;
  margin: auto;
}
#catch ul li p {
  width: fit-content;
  line-height: 1;
  font-size: .875rem;
  font-weight: bold;
  letter-spacing: .2em;
  margin: 10px auto 0;
}
#catch ul li p strong {
  /* font-size: 48px; */
  font-size: var(--clamp_font_size-L_2);
  color: rgba(252, 201, 41, 1);
  font-family: 'Quicksand', sans-serif;
  padding: 0 .2em;
  display: inline-block;
  vertical-align: sub;
  letter-spacing: 0;
}
@media (max-width: 991px) {
  #catch h2 {
    font-size: var(--clamp_font_size-L_1);
  }
}
@media (max-width: 900px) {
  #count {
    flex-direction: column;
    padding: 3em 10px 20px;
  }
  #count .catch-link-box {
    align-self: inherit;
  }
  #count .catch-link-box.link-box-1 {
    order: 2;
    margin: 2em 0;
  }
  #count .catch-link-box.link-box-2 {
    order: 3;
  }
}

/*** #about, etc. ***/
#mid-contents {
  background-color: rgba(193, 218, 109, 0.9);
}
#about {
  margin: 0 auto;
  max-width: 1040px;
  width: 94%;
  height: auto;
  padding: 60px 0 0;
}
.titleGroup {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
}
.title_frame {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: fit-content;
}
.title_frame > * {
  display: inline-block;
  font-size: 1.125rem;
  vertical-align: middle;
  letter-spacing: .03em;
  line-height: 1.2;
  margin: 0;
}
.title_frame > .icon_orange {
  color: #fcb529;
  text-shadow: 0 0 1px rgb(0 0 0);
  padding-left: 10px;
}
.title_frame > .icon-lock {
  padding-left: 20px;
  margin-right: -20px;
}
.box-table {
  display: flex;
  width: 100%;
}
.list-box {
  width: 32%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 18px;
}
.list-box:nth-child(2) {
  margin: 0 2%;
}
.list-box a {
  width: 88%;
  display: block;
  overflow: hidden;
  margin: 6%;
  height: 100%;
}
.list-box img {
  border-radius: 12px;
}
.list-box h3 {
  text-align: left;
  font-weight: bold;
  font-size: 110%;
  line-height: 1.2;
  margin-bottom: -3px;
  padding: 5px 0 0 0;
  letter-spacing: 0.05em;
  color: #fcb529;
}
.list-box p {
  line-height: 1.2;
  font-size: 95%;
  text-align: justify;
  text-justify: inter-ideograph;
  margin-bottom: 8px;
}
#news-letter-listBlock {
  padding-top: 60px;
  padding-bottom: 60px;
}
#news-letter-listBlock > *:not(:last-child) {
  margin-bottom: 60px;
}
.detail {
  width: 100%;
  margin-top: 20px;
}
.detail a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  vertical-align: middle;
  border-radius: 20px;
  width: 100%;
  height: 2.25rem;
  background: url('../images/arrow_w.png') no-repeat right 13px center #fcb529;
  background-size: 1.125rem;
  transition: .3s ease-out;
}
.detail a:hover {
  color: #fcb529;
  background: url('../images/arrow_o.png') no-repeat right 13px center #fff;
  background-size: 1.125rem;
  text-shadow: none;
  opacity: 1;
}
.detail_2 {
  width: 250px;
  padding-top: 2%;
  display: flex;
  justify-content: center;
}
.detail_2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  vertical-align: middle;
  border: 1px solid #fcb529;
  border-radius: 20px;
  width: 15.625rem;
  height: 2.25rem;
  background: url('../images/arrow_w.png') no-repeat right 13px center #fcb529;
  background-size: 8%;
  text-shadow: 0 0 5px #ee7800;
}
.detail_2 a:hover {
  color: #fcb529;
  background: url('../images/arrow_o.png') no-repeat right 13px center #fff;
  background-size: 8%;
  border: 1px solid #fcb529;
  text-shadow: none;
  opacity: 1;
}

/*** #contact ***/
#contact {
  width: 100%;
  min-height: 350px;
  background: url('../images/contact_back.webp') no-repeat;
  background-size: cover;
  padding: 3% 0;
  position: relative;
}
#contact div.bg_cover-w {
  background-color: #ffffff94;
  position: absolute;
  top: 0;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact .contentBox {
  width: 50%;
  background-color: #fff;
  padding: 30px 0;
  border-radius: 10px;
  max-width: 690px;
  box-shadow: 0 0 5px #ddd;
}
#contact .contentBox h2 {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 4%;
  width: 100%;
}
#contact .contentBox h2 span {
  margin-left: 0;
}
#contact .contentBox p {
  text-align: center;
  font-size: 90%;
  width: 80%;
  margin: 0 auto;
}

/*** Below 1050px screen width ***/
@media screen and (max-width: 1050px) {
  #catch {
    /* width: 90%; */
  }
  #catch h2 {
    width: 100%;
  }
  #contact article {
    width: 75%;
  }
}

/*** Below 740px screen width ***/
@media screen and (max-width: 740px) {
  #count {
    /* height: 500px; */
  }
  #catch {
    height: auto;
  }
  #catch h2 {
    font-size: 220%;
    letter-spacing: 0.4em;
    padding-bottom: 1.5em;
  }
  #catch ul li:first-child {
    border: none;
    padding-bottom: 1.2em;
  }
  #catch ul li p {
    letter-spacing: .1em;
  }
  .box-table {
    display: block;
  }
  .list-box {
    width: 100%;
  }
  .list-box:nth-child(2) {
    margin: 5% 0;
  }
  .box {
    order: 1;
  }
  #contact .contentBox {
    width: 80%;
  }
}

/*** Below 430px screen width ***/
@media screen and (max-width: 430px) {
  #catch h2 {
    font-size: 190%;
  }
  .detail_2 a {
    background-image: none;
  }
}

@media (min-width: 576px) {
  .detail {
    width: 250px;
    flex-shrink: 0;
    margin-top: 12px;
  }

}


/* ========================================================
** Page - about
======================================================== */

/* General settings
-------------------------------------------------------- */
.wp-block-column img {
  border-radius: 20px;
}
div:has(> aside#sideMenu) {
  flex-shrink: 0;
  flex-basis: 30%;
  max-width: 18rem;
  min-width: 14rem;
}
#sideMenu {
  border-radius: 20px;
  overflow: hidden;
  background-color: #fcb529;
}
#sideMenu p {
  margin: 0;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: .05em;
  color: #fff;
  text-shadow: 0 0 10px #ee7800;
}
#sideMenu ul {
  margin-top: 0;
  background-color: #fffdee;
}
#sideMenu ul li {
  border-radius: 0;
  background: none;
  padding: 15px;
  border-bottom: 1px dotted #c5c5c5;
}
#sideMenu ul li:nth-child(even) {
  margin: 0;
}
#sideMenu ul li:last-child {
  border: none;
}
#sideMenu ul li a {
  display: block;
  width: 100%;
  height: 50px;
  padding: 10px 10px;
  box-sizing: border-box;
  font-size: 19px;
  font-weight: bold;
  white-space: nowrap;
}
#sideMenu ul li a::before {
  content: '⇒ ';
  box-sizing: border-box;
}
#mainConts h3 {
  font-size: 20px;
  border-bottom: 2px solid #fca129;
  padding-bottom: 5px;
}

/* For Branch page
-------------------------------------------------------- */
:root {
  --branch-color-chuo: #ff6464;
  --branch-color-ichikawa: #faed00;
  --branch-color-kashiwa: #30e02a;
  --branch-color-toso: #0481cb;
  --branch-color-east-kazusa: #d89de0;
  --branch-color-kimitsu: #faa200;
}
.whole-column {
  max-width: 1040px;
  margin: 50px auto 0;
}
.wp-block-columns {
  justify-content: space-around;
  align-items: center;
}
.branch-list-block {
  background-color: rgba(252, 201, 41, 0.18);
  border-radius: 20px;
  padding: 10px;
  gap: 0;
  position: relative;
}
.branch-logoimg {
  max-width: 210px;
  margin: 0;
}
.mar_left-narrow {
  margin-left: 0 !important;
}
#mainConts h4 {
  font-size: 18px;
  border-bottom: 2px solid #a7aaad;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0.1em;
}
#svg-map-wrap {
  width: 80%;
  max-width: 780px;
  position: relative;
  margin: 3vw auto 30px;
}
#svg-map-chiba {
  width: 90%;
  margin-left: 5vw;
}
#svg-map-chiba svg {
  width: 100%;
  height: auto;
}
#svg-map-chiba svg a path {
  transition: fill 0.3s linear;
}
#svg-map-chiba svg a:hover path {
  fill: #8f8f8f;
}
#anchor-chuo::before, #anchor-ichikawa::before, #anchor-kashiwa::before,
#anchor-toso::before, #anchor-higashikazusa::before, #anchor-kimitsu::before {
  content: "";
  display: block;
  height: 120px;
  margin-top: -120px;
}
#svg-map-wrap .map-hanrei {
  width: fit-content;
  position: absolute;
  bottom: 5%;
  right: 5vw;
}
#svg-map-wrap .map-hanrei .hanrei {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1em;
  border: none !important;
}
#svg-map-wrap .map-hanrei .hanrei:not(:last-of-type) {
  margin-bottom: clamp(5px, 1vw, 10px);
}
#svg-map-wrap .map-hanrei .hanrei > * {
  flex-shrink: 0;
}
#svg-map-wrap .map-hanrei .hanrei .target-color {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}
#svg-map-wrap .map-hanrei .hanrei .target-color.branch-chuo {
  background-color: var(--branch-color-chuo);
}
#svg-map-wrap .map-hanrei .hanrei .target-color.branch-ichikawa {
  background-color: var(--branch-color-ichikawa);
}
#svg-map-wrap .map-hanrei .hanrei .target-color.branch-kashiwa {
  background-color: var(--branch-color-kashiwa);
}
#svg-map-wrap .map-hanrei .hanrei .target-color.branch-toso {
  background-color: var(--branch-color-toso);
}
#svg-map-wrap .map-hanrei .hanrei .target-color.branch-east-kazusa {
  background-color: var(--branch-color-east-kazusa);
}
#svg-map-wrap .map-hanrei .hanrei .target-color.branch-kimitsu {
  background-color: var(--branch-color-kimitsu);
}
#svg-map-wrap .map-hanrei .hanrei .target-txt {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: clamp(0.85rem, 4vw, 1.125rem);
  font-weight: bold;
  color: #080808;
  text-decoration: none;
  line-height: 1;
}
#svg-map-wrap .map-hanrei .hanrei .target-txt::before {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  background: url('../images/three_dots_080808.svg') no-repeat center center / contain;
  margin-right: 3px;
}
.branch-territory {
  margin-top: 3px;
  font-size: 95%;
}
.branch-ad li {
  border: none !important;
  line-height: 1.5;
  font-size: 95%;
}
.branch-ad .go-details {
  position: absolute !important;
  right: 30px;
  bottom: 15px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: bold;
  color: #ee7800;
  display: inline-block !important;
  width: auto !important;
  z-index: 2;
}
.branch-ad .go-details a {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.branch-ad .go-details a:hover {
  background-color: inherit !important;
  opacity: 1;
  text-decoration: none;
  color: inherit;
}
.branch-links {
  text-decoration: underline;
  color: #0077cb;
}
.branch-links:hover {
  text-decoration: none;
}
body[class*="branch-"] #pageHeader {
  background-image: none !important;
}
body.branch-chuo #pageHeader {
  background-color: var(--branch-color-chuo);
}
body.branch-ichikawa #pageHeader {
  background-color: var(--branch-color-ichikawa);
}
body.branch-kashiwa #pageHeader {
  background-color: var(--branch-color-kashiwa);
}
body.branch-toso #pageHeader {
  background-color: var(--branch-color-toso);
}
body.branch-east-kazusa #pageHeader {
  background-color: var(--branch-color-east-kazusa);
}
body.branch-kimitsu #pageHeader {
  background-color: var(--branch-color-kimitsu);
}
body[class*="branch-"] #pageHeader .pageHeader_title {
  text-shadow: none !important;
  font-size: var(--clamp_font_size-L_2);
}

/* Below 1050px screen
-------------------------------------------------------- */
@media screen and (max-width: 1050px) {
  #svg-map-chiba {
    width: 100%;
    margin-left: 0;
  }
  .wp-block-columns {
    display: block;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child) {
    margin-left: 0;
  }
  #sideMenu {
    margin-top: 40px;
  }
  .branch-list-block {
    padding: 15px 30px 25px;
  }
  .branch-logoimg {
    margin: 0 auto;
  }
  #mainConts h4 {
    margin-top: 5px;
  }
  .branch-ad .go-details {
    position: relative !important;
    right: 0;
    bottom: 0;
    margin-top: 10px;
  }
  .branch-ad li:has(.go-details) a {
    text-align: right;
  }
}

/* Below 781px screen
-------------------------------------------------------- */
@media (max-width: 781px) {
  #svg-map-wrap {
    width: 100%;
  }
  .branch-logoimg {
    width: 50%;
  }
}

/* Below 740px screen
-------------------------------------------------------- */
@media screen and (max-width: 740px) {
  #svg-map-wrap .map-hanrei {
    position: relative;
    width: clamp(100px, 25vw, 140px);
    margin: -65px 15px 10px auto;
  }
}

/* Each Branch pages
-------------------------------------------------------- */
.members-top-photo {
  grid-template-columns: auto 1fr;
  width: 80%;
  margin: 20px auto 0;
}
.members-top-photo figure {
  max-width: 300px;
}
.members-photo {
  grid-template-columns: auto 1fr;
  margin-bottom: 30px;
}
.members-photo figure {
  max-width: 350px;
  margin-bottom: 0.5em;
}
.branch-h3 {
  font-size: 1.75rem !important;
  border-bottom: 2px solid #fca129;
  padding-bottom: 5px;
  color: #fca129;
}
.members-top-photo h3 {
  border-bottom: none !important;
}
.branch-h4 {
  font-size: 1.5rem !important;
  border-bottom: none !important;
  white-space: nowrap;
}
.branch-h4 span {
  display: block;
}
.branch-p {
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  line-height: 1.5;
}
.branch-list {
  font-size: clamp(1rem, 3vw, 1.05rem);
}
.branch-list dt {
  font-weight: bold;
  padding: 0 !important;
}
.branch-list dd {
  padding: 0 !important;
  margin-bottom: 0.5em;
}
.member-page-ul li {
  border: none !important;
}
.member-page-ul strong {
  display: inline-block;
  width: 3em;
  text-align: right;
  margin-right: 1em;
}
.member-page-ul img {
  max-width: 300px;
  display: block;
  margin: 0 0 1em 4em;
}
@media screen and (max-width: 740px) {
  .members-top-photo, .members-photo {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .members-top-photo h3 {
    margin-bottom: 0;
  }
  .branch-h4 {
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .member-page-ul li {
    margin-bottom: 0.5em !important;
    line-height: 1.4;
  }
  .member-page-ul strong {
    display: block;
    text-align: left;
  }
  .member-page-ul img {
    margin-left: 0;
  }
  .branch-ad a {
    position: relative !important;
    right: auto;
    bottom: auto;
  }
}
@media (min-width: 600px) {
  .members-photo figure img {
    width: 350px;
  }
}

/* For gaiyou page
-------------------------------------------------------- */
body.gaiyou dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 85px;
}
body.gaiyou dt {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: bold;
  /* border-bottom: 1px #e6e6e6 solid; */
}
body.gaiyou dd {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  /* border-bottom: 1px #e6e6e6 solid; */
}
@media screen and (max-width: 1050px) {
  body.gaiyou dl {
    display: block;
  }
  body.gaiyou dt {
    border-bottom: none;
    padding-bottom: 0px;
    width: auto;
  }
  body.gaiyou dd {
    width: 100%;
  }
}


/* ========================================================
** Sitemap page
======================================================== */

#sitemap {
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 2em;
  margin-bottom: 35px;
}
#sitemap a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
#sitemap a:hover {
  text-decoration: none;
  color: #ee7800;
}
#sitemap ul li {
  margin: 0.5em 0;
}
.sitemap-top .icon-home {
  font-weight: bold;
}
.sitemap-top .icon-home::before {
  font-weight: normal;
  padding-right: 5px;
}
.sitemap-postItem {
  display: none;
}
.children {
  margin-left: 1em;
  font-weight: normal;
  font-size: 1.025rem;
}
.children li {
  margin: 0 !important;
  line-height: 1.75em;
}
.children li a {
  position: relative;
  padding-left: 1em;
}
.children li a::before {
  position: absolute;
  width: 6px;
  height: 6px;
  content: '';
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fcb529;
  border-right: 2px solid #fcb529;
  top: 50%;
  left: 0;
}
.page_item_has_children {
  font-weight: bold;
}


/* ========================================================
** Utilities
======================================================== */

/* Block layout */
.display-pc {
  display: none;
}
@media (min-width: 576px) {
  .display-pc {
    display: block;
  }
  .display-mobile {
    display: none;
  }
}
/*
@media (max-width: 1220px) {
  .hidden-mobile {
    display: none;
  }
}
*/
@media (min-width: 1221px) {
  .hidden-pc {
    display: none;
  }
}
.only-text-link-wrap {
  width: fit-content;
  padding-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.email-link-text-wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

/* Text layout */
.txt-indent-1 span {
  display: inline-block;
  text-indent: 1em;
}
.font-size-1-125 {
  font-size: clamp(1rem, 3vw, 1.25rem);
}
.margin-top-none {
  margin-top: 0 !important;
}
.margin-bottom-none {
  margin-bottom: 0 !important;
}
.mar-lef-minus-8 {
  margin-left: -8px;
}
.mar-top-2em {
  margin-top: 2em;
}
.txt-deco-uline a {
  text-decoration: underline;
  color: rgb(60, 133, 206);
}
.txt-deco-uline a:hover {
  text-decoration: none;
}
.no-border,
.no-border li {
  border: none !important;
}
.dsp-iln-blk {
  display: inline-block;
}
.dsp-blk-pc {
  display: block;
}
@media screen and (max-width: 740px) {
  .dsp-blk-pc {
  display: inline;
  }
}
.link-pdf {
  border: none !important;
}
.link-pdf a {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 3px;
  width: fit-content !important;
  padding: 0 !important;
  border-radius: unset !important;
  text-decoration: underline !important;
  color: var(--site-link-txtColor);
}
.link-pdf a:hover {
  background-color: inherit !important;
  text-decoration: none !important;
  opacity: 1 !important;
}
.link-pdf a::before {
  content: '';
  display: block;
  width: 1.25em;
  height: 1.25em;
  background: url('../images/icon-pdf_3.svg') no-repeat center center / contain;
}
a[target="_blank"]::after {
  content: '';
  display: inline-block;
  background: url('../images/icon-open_new.svg') no-repeat left center / contain;
  width: .75em;
  height: .75em;
  margin-left: 3px;
}

/* Text styles */
.a-link-orange {
  display: inline-flex;
  flex-direction: column;
  margin-top: 2em;
}
.a-link-orange li {
  display: inline-block;
  margin-bottom: 2em;
  font-size: clamp(0.9rem, 3vw, 1rem);
}
.a-link-orange a {
  color: #ee7800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.a-link-orange a:hover {
  color: inherit;
  text-decoration: none;
}
.only-text-link b {
  color: var(--site-link-txtColor, #0693e3);
  text-decoration: underline;
  text-align: center;
}
.email-link-text {
  color: var(--site-link-txtColor, #0693e3) !important;
  text-decoration: underline !important;
}