@import url("https://fonts.googleapis.com/css2?family=Corinthia&display=swap");
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections */

:root {
  --color-key-color: #5ec2cf;
  --color-key-color2: #edfdff;
  --color-key-red: #edfdff;
  --color-text-color: #222222;
  --color-light-grey: #ccc;
  --color-lightest-gray:#e6e6e6;
  --color-dark-grey: #666;
  --color-white: #fff;

  --space-s: 16px;
  --space-m: 32px;
  --space-l: 64px;

  --radius: 10px;
  --shadow: 0 0 2px 2px var(--color-light-grey);

  --font: 16px;
  --font-s: 13px;
  --font-m: 22px;
  --font-l: 48px;

  --font-base: YakuHanJPs, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3","Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  --font-headline: "Corinthia", cursive, serif;

  --width-content:1200px;
}

body {
 	margin: 0;
 	font-feature-settings: "palt" 1;
	font-size:var(--font);
 	font-family: var(--font-base);
 	text-autospace: normal;
	font-smoothing: antialiased;
}

@supports (text-spacing-trim: normal) {
  body { text-spacing-trim: normal; }
}

main {
  display: block;
}
h1 {
  font-size: var(--font-m);
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: var(--font);
}
a {
  background-color: transparent;
  transition: 0.4s;
  word-wrap: break-word;
  color: var(--color-text-color);
}
a:hover {
  opacity: 0.4;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: var(--font-m);
}
small {
  font-size: var(--font-s);
}
sub,
sup {
  font-size: var(--font);
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
ul,
ol {
  list-style: none;
}
/* Embedded content
	 ========================================================================== */
img {
  border-style: none;
  vertical-align: bottom;
}
/* Forms
	 ========================================================================== */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: var(--font);
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}
[hidden] {
  display: none;
}

/* Box sizing */

*,
*::before,
*::after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
}
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--color-text-color);
  font-family: var(--font-base);
  font-size: var(--font);
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}
p {
  margin-bottom: 1.5em;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: var(--font-headline);
  line-height: 1.6;
  margin-bottom: var(--space-s);
  max-width: 100%;
  overflow: auto;
  padding: var(--space-s);
}
code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr,
acronym {
  border-bottom: 1px dotted var(--color-dark-grey);
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: var(--font-m);
}
/* Elements
--------------------------------------------- */
body {
  background: var(--color-white);
  color: var(--color-text-color);
  line-height: 1.9;
  letter-spacing: 0.1em;
  font-size: var(--font);
}

hr {
  background-color: var(--color-light-grey);
  border: 0;
  height: 1px;
  margin-bottom: var(--space-s);
}
dt {
  font-weight: 700;
}

embed,
iframe,
object {
  max-width: 100%;
}
img {
  height: auto;
  max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
/* Links
--------------------------------------------- */
a {
  color: var(--color-text-color);
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: var(--color-light-grey);
  border-radius: var(--radius);
  background: #e6e6e6;
  color: var(--color-text-color);
  line-height: 1;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: var(--color-light-grey);
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: var(--color-light-grey);
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: var(--color-text-color);
  border: 1px solid var(--color-light-grey);
  border-radius: var(--radius);
  padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: var(--color-text-color);
}
select {
  border: 1px solid var(--color-light-grey);
}
textarea {
  width: 100%;
}
/*--------------------------------------------------------------
Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  box-shadow: var(--shadow);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation li {
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}
.site-main {
  margin-top: 0px;
  padding: 0 0 50px 0;
}
.site-main .entry-header {
  padding: 0;
  z-index: 0;
}
.table_entry {
  margin: 30px 0;
}
.table_entry th,
.table_entry td {
  padding: 15px;
  border: 1px solid var(--color-light-grey);
}
.table_entry th {
  background: #efefef;
  width: 150px;
}
.entry-content h3 {
  padding: 17px 18px 15px;
  margin-bottom: 36px;
  font-size: var(--font-m);
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-key-color);
  letter-spacing: 0.04em;
  background-color: var(--color-key-color2);
  border-bottom: 2px solid var(--color-key-color);
  border-radius: var(--radius) var(--radius) 0 0;
}
.entry-content h4 {
  padding-bottom: 12px;
  margin-bottom: 36px;
  font-size: var(--font-m);
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-key-color);
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--color-key-color2);
}
.home .site-branding {
  visibility: hidden;
}
.entry-header .entry-title {
  margin: 0 0 50px;
  font-weight: normal;
  text-align: center;
  font-size: var(--font-s);
}
.entry-header .entry-title span {
  font-family: var(--font-headline);
  font-size: var(--font-l);
  line-height: 1;
  display: block;
  text-transform: capitalize;
  color: var(--color-key-color);
}
.site-main .entry-content {
  padding: 0 0 50px 0;
  margin: 0;
}
.site-main .entry-content p {
  margin: 0;
}
.site-main .entry-content h2 {
  background: var(--color-key-color2);
  color: var(--color-key-color);
  padding: 10px 20px;
  font-weight: normal;
  margin: 30px 0;
  border-radius: var(--radius);
  line-height: 1.3;
}
.site-main .entry-content h2 b {
  font-weight: normal;
}
.site-main .entry-content h4 {
  color: var(--color-key-color);
  border-bottom: 1px solid var(--color-key-color);
  padding: 0 20px 10px 0;
  margin: 30px 0;
  font-weight: normal;
}
.single .site-main .entry-content figure {
  text-align: center;
  margin: 40px 0;
}
.grid_view {
  gap: 20px;
}
.single .site-main .grid_view figure {
  margin-bottom: var(--space-m);
  border-radius: var(--radius);
  overflow: hidden;
}
.single .site-main .grid_view figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.single .site-main .grid_view h3 {
  padding: 0;
  background: transparent;
  font-size: var(--font);
  border: none;
  margin-bottom: var(--space-s);
}
.site-main-wrap {
  justify-content: space-between;
  padding: 0 0 100px;
}
.site-left {
  width: 750px;
}
.wrap.page-header {
  border-bottom: 1px solid var(--color-key-color);
  margin: 50px auto;
  padding: 50px 0;
  text-align: center;
}
.wrap.page-header p {
  margin-bottom: 0;
}
.wrap.page-header .page-title {
  line-height: 1.2;
  margin: 0px;
  font-weight: normal;
  font-size: var(--font-m);
}

aside {
  width: 300px;
}

aside .title-section_aside {
  font-size: 14px;
  color: #222;
}

aside .title-section_aside:before {
  font-size: 40px;
  color: var(--color-key-color);
  display: block;
  content: "";
  margin-right: 15px;
  display: inline-block;
  font-family: var(--font-headline);
}

aside .title-section_aside-about:before {
  content: "About us";
}

aside .title-section_aside-search:before {
  content: "Search";
}

aside .title-section_aside-column:before {
  content: "Column";
}

aside .title-section_aside-items:before {
  content: "Items";
}

aside .title-section_aside-news:before {
  content: "News";
}

aside .widget_block .wp-element-button {
}

.sec_azarashi {
  margin-top: 100px;
  padding: 100px;
  background: var(--color-key-color2);
}
.sec_azarashi .wrap {
  width: var(--width-content);
}
.sec_azarashi .title-section {
  flex-direction: column;
  margin-top: -50px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: normal;
}
.sec_azarashi .title-section span {
  margin: 20px 0 0 0;
}
.sec_azarashi h3 {
  color: var(--color-key-color);
  margin: 20px 0;
  text-align: left;
}
.list_azarashi {
  display: grid;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr 1fr 1fr;
  gap: 20px;
}
.list_azarashi li {
  text-align: center;
  height: 180px;
  border-radius: var(--radius);
  background: var(--color-white);
  border: 1px solid var(--color-key-color);
  overflow: hidden;
  position: relative;
}
.list_azarashi li figure {
  width: 100%;
  height: 120px;
  padding: 20px;
  padding-bottom: 0;
  margin: 0 auto;
  margin-bottom: 0;
  background-size: cover;
  align-items: center;
  transition: 0.4s;
  position: relative; /* 子の absolute を効かせるため */
  display: block;
}
.list_azarashi li a {
  display: block;
  position: absolute;
  opacity: 0.5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.list_azarashi li figure:after {
  content: "";
  display: block;
  inset: 0;
  transition: transform 0.6s ease;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  top: 0;
  left: 0;
  transform: translateX(-100%); /* ←左に隠しておく */
  transform-origin: left;
}
.list_azarashi li:hover figure:after {
  transform: translateX(0);
}
.list_azarashi li figure.loc_hokkyoku:after {
  background: url(https://azarashi.love/wp-content/uploads/hokkyoku.jpg);
  background-size: cover;
}
.list_azarashi li figure.loc_nangoku:after {
  background: url(https://azarashi.love/wp-content/uploads/nangoku.jpg);
  background-size: cover;
}
.list_azarashi li figure.loc_nankyoku:after {
  background: url(https://azarashi.love/wp-content/uploads/nankyoku.jpg);
  background-size: cover;
}
.list_azarashi li figure.loc_kitaguni:after {
  background: url(https://azarashi.love/wp-content/uploads/kitaguni.jpg);
  background-size: cover;
}
.list_azarashi li figure img {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  z-index: 100;
  position: relative;
}
.list_azarashi li p {
  margin: 0;
  height: 60px;
  padding: 24px 10px;
  font-size: var(--font-s);
  line-height: 1;
  letter-spacing: 0px;
  vertical-align: text-top;
}
.list_post li {
  margin-bottom: 50px;
}
.list_post li:last-child {
  margin-bottom: 0px;
}
.list_post a {
  justify-content: space-between;
  color: var(--color-text-color);
}
.list_post a figure {
  width: 250px;
  border-radius: var(--radius);
  overflow: hidden;
}
.list_post a figure img {
  height: 175px;
  width: 100%;
  object-fit: cover;
}
.list_post a figcaption {
  width: calc(100% - 280px);
}
.list_post a figcaption .excerpt {
  font-size: var(--font-s);
  color: var(--color-light-grey);
}
.list_post a h3 {
  font-weight: normal;
}
aside .list_post li {
  margin-bottom: var(--space-m);
}
aside .list_post a h3 {
  font-size: var(--font);
}
/*　施設アーカイブ */
.main_facility {
  margin-top: 0;
  padding: 0 0 var(--space-m);
}
.single-facility .section-title,
.main_facility .section-title {
  background: var(--color-key-color2);
  color: var(--color-key-color);
  padding: 10px var(--space-s);
  font-weight: normal;
  margin: var(--space-m) 0;
  border-radius: var(--radius);
}
.list_facility {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.list_facility > li {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #b9f0f7;
}
.list_facility > li a {
  display: block;
}
.list_facility > li figure img {
  height: 170px;
  object-fit: cover;
  width: 100%;
}
.list_facility li figcaption {
  padding: 15px;
}
.list_facility li figcaption h3 {
  font-size: var(--font);
  letter-spacing: 0.05rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 10px;
}
.list_facility li figcaption address {
  font-size: var(--font-s);
  pointer-events: none;
  font-style: normal;
  margin-bottom: var(--space-s);
}
.azarashi_place a,
.list_facility_azarashi li {
  font-size: var(--font-s);
  letter-spacing: 0;
  color: var(--color-key-color);
  background: var(--color-key-color2);
  display: inline-block;
  padding: 0;
  line-height: 1;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 100px;
}
.facility-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.facility-list li {
  width: 31%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  border: 1px solid var(--color-key-color2);
  margin-right: var(--font-s);
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: var(--space-m);
}
.facility-list li:nth-child(3n) {
  margin-right: 0;
}
.facility-list li a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
}
.site-main .entry-content .facility-list li figure {
  margin: 0;
  width: 80px;
  height: 80px;
  background: #aaa;
}
.site-main .entry-content .facility-list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-list li .facility-item_text {
  width: calc(100% - 80px);
  padding: var(--space-s);
  height: 80px;
}
.facility-list li .facility-item_text h4 {
  padding: 0;
  font-weight: 400;
  margin: 0;
  font-size: var(--font);
  background: transparent;
  border: none;
}
.azarashi_genus {
  margin-bottom: var(--space-s);
  line-height: 1;
  font-size: var(--font-s);
  color: var(--color-light-grey);
}
.azarashi_place {
  margin: 0;
  line-height: 1;
  font-size: var(--font-s);
  color: var(--color-light-grey);
}
.azarashi_place a {
}
.facility-post-header {
  justify-content: space-between;
}
.facility-post-header .area_outline {
  width: 600px;
  position: relative;
}
.facility-post-header .area_outline h1 {
  font-weight: normal;
  margin: 0 0 var(--space-m);
  font-size: var(--font-m);
}
.facility-post-header .area_outline figure {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 250px;
}
.facility-grouped-list {
  margin-top: var(--space-s);
}
.facility-grouped-list .region-block h3 {
  padding: 0;
  font-size: var(--font-m);
  background: transparent;
}
.facility-grouped-list .region-block address {
  font-style: normal;
  font-size: var(--font-s);
}
.facility-post-header figure {
  width: 450px;
}
.facility-post-header figure img {
  border-radius: var(--radius);
  width: 100%;
}
.facility-post-header figure .inyo {
  font-size: var(--font-s);
  margin: 10px 0 0;
}
.facility-post-header figure .inyo a {
  text-decoration: underline;
}
.list_twitter li {
  width: 31%;
  margin-right: 3.5%;
}
.list_twitter li:nth-child(3n) {
  margin-right: 0;
}
.facility-data dt {
  width: 100px;
  font-weight: normal;
  font-size: var(--font);
  margin-bottom: 5px;
  color: var(--color-key-color);
  line-height: 1;
}
.facility-data dd {
  width: calc(100% - 100px);
  margin-bottom: var(--space-s);
}
.url_facility {
  margin: 30px 0;
}
.url_facility li {
  margin-right: 10px;
}
.url_facility li a {
  background: var(--color-key-color);
  font-size: var(--font-s);
  padding: 10px 15px;
  border-radius: var(--radius);
  color: var(--color-white);
  margin-top: 10px;
  display: inline-block;
}
.url_facility li a i {
  margin-right: 5px;
}
.url_facility li.btn_twitter a {
  background: #1da1f2;
}
.url_facility li.btn_facebook a {
  background: #1877f2;
}
.url_facility li.btn_instagram a {
  background: #cf2e92;
}
.url_facility li.btn_youtube a {
  background: #da1725;
}
.list_fc_azarashi > li {
  width: 19%;
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: var(--space-m);
  overflow: hidden;
  margin-right: 1%;
  border: 1px solid #b9f0f7;
}
.list_fc_azarashi > li figcaption {
  padding: 20px;
}
.view_azarashi {
  padding: 0;
  margin: 50px calc(50% - 50vw) 0;
}
.title-section-azarashi,
.view_azarashi h3 {
  background: var(--color-key-color2);
  font-size: var(--font);
  color: var(--color-key-color);
  padding: 10px 20px;
  font-weight: normal;
  margin: 30px 0;
}
.facility-data dt {
  width: 100%;
}
.facility-data dd {
  width: 100%;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 var(--space-s);
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}


/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}
.updated:not(.published) {
  display: none;
}
.page-content,
.entry-content,
.entry-summary {
  margin: var(--space-s) 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 var(--space-s);
}
/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 var(--space-s);
}
.widget select {
  max-width: 100%;
}
/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: var(--space-s);
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: var(--space-s);
  display: grid;
  grid-gap: var(--space-s);
}
.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
  display: block;
}
/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}
/* Alignments
--------------------------------------------- */
.alignleft {
  float: left;
  margin-right: var(--space-s);
  margin-bottom: var(--space-s);
}
.alignright {
  float: right;
  margin-right: var(--space-s);
  margin-bottom: var(--space-s);
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-s);
}
.flexbox {
  display: flex;
  flex-wrap: wrap;
}
.sp_only {
  display: none;
}
.wrap {
  width: var(--width-content);
  margin: 0 auto;
}
.btn {
}

.wp-block-button a,
.btn a {
  background: var(--color-key-color);
  font-size: var(--font-s);
  padding: 10px 15px;
  border-radius: var(--radius);
  color: var(--color-white);
  margin-top: 20px;
  display: inline-block;
}
.fluffy img {
  -webkit-animation: fluffy 0.5s linear 0s 1;
  animation: fluffy 0.5s linear 0s 1;
}
@-webkit-keyframes fluffy {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.1, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.1) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes fluffy {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.1, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.1) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
.title-section {
  font-family: var(--font-headline);
  font-size: 60px;
  line-height: 1;
  display: flex;
  align-items: center;
  font-weight: normal;
  color: var(--color-key-color);
}
.title-section span {
  margin-left: var(--space-s);
  font-size: var(--font-s);
  display: block;
  color: var(--color-text-color);
}
/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;

  padding: 12px 16px;
  background: #fff;
  color: #000;
  border: 2px solid currentColor;
  border-radius: 8px;

  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

header {
  position: relative;
  width: 100%;
  z-index: 200;
  transition: 0.4s;
  padding: 30px 0;
}
.g-nav {
  width: 100%;
  z-index: 3000;
}
.g-nav-menu {
  text-align: center;
}
.g-nav-menu li {
  color: var(--color-white);
  padding: 0 30px;
  list-style-type: none;
  display: inline-block;
}
.fixed {
  position: fixed;
  top: 0;
  padding: 20px 0;
  left: 0;
  display: block;
}
.fixed .g-nav-menu li {
  line-height: 40px;
}

.drawer-checkbox {
  display: none;
}

header .wrap {
  width: var(--width-content);
  align-items: center;
  justify-content: space-between;
}
header .wrap .site-branding {
  width: 200px;
}
header .wrap .site-branding h1 {
  margin: 0;
  line-height: 1;
  height: 65px;
}
header .wrap .site-branding h1 img {
  height: 65px;
}
header .wrap .main-navigation {
  width: 600px;
}
header .wrap .main-navigation ul {
  justify-content: space-between;
}
header .wrap nav {
  align-items: center;
}
header .wrap .menu-main-container ul li {
  margin-left: var(--space-m);
}
header .wrap .menu-main-container ul li a {
  color: var(--color-text-color);
}
header .wrap .btn_donation {
  margin: 0 0 0 var(--space-m);
}
header .wrap .btn_donation a {
  padding: 10px 70px 10px 10px;
  font-size: var(--font-s);
  color: var(--color-white);
}
header .wrap .btn_donation a img {
  width: 60px;
  height: 55px;
}
footer {
  background: #f5f5f5;
  padding-bottom: var(--space-m);
  font-size: var(--font-s);
}
footer .site-info {
  text-align: center;
  font-size: var(--font-s);
  margin-bottom: 0;
}
footer nav ul {
  justify-content: center;
  margin-bottom: var(--space-m);
}
footer nav ul li:nth-child(2) {
  margin: 0 var(--space-m);
}
.sec_vis {
  margin-top: var(--space-l);
}

/* 各画像の開始タイミングをずらす */
.slider .image:nth-child(1) {
  animation-delay: 0s;
}

.slider .image:nth-child(2) {
  animation-delay: 4s;
}

.slider .image:nth-child(3) {
  animation-delay: 8s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  8.33% {
    /* 12秒中の1秒 */
    opacity: 1;
  }
  33.33% {
    /* 12秒中の4秒 */
    opacity: 1;
  }
  41.66% {
    /* フェードアウト1秒 */
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.sec_vis .slider {
  position: relative;
  height: 500px; /* 高さは調整してください */
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec_vis .slider li {
  margin: 0;
}

.sec_vis .slider .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 12s infinite; /* 3枚×4秒 = 12秒 */
}

.sec_vis .slider img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.sec_vis .wrap {
  justify-content: space-between;
  align-items: center;
}
.sec_vis_left {
  width: 35%;
}
.sec_vis_left h1 {
  margin: 0 auto var(--space-m);
  width: 300px;
}
.sec_vis_left p {
  margin-bottom: 0;
}
.btn_contact,
.btn_donation {
  text-align: center;
  margin-top: var(--space-l);
}
.btn_contact {
  margin-right: var(--space-s);
}
.btn_contact a,
.btn_donation a {
  background: #ef8ea2;
  font-size: var(--font);
  padding: 20px 100px 20px 20px;
  position: relative;
  margin-top: 0;
  transition: 0.3s;
}
.btn_contact {
  margin: 0 0 0 var(--space-s);
}
.btn_contact a {
  background: var(--color-key-color);
}
.btn_contact a:hover {
  background: var(--color-key-color);
}
.btn_donation a:hover {
  background: #ff5e7f;
}
.btn_contact a img,
.btn_donation a img {
  display: block;
  width: 90px;
  position: absolute;
  right: 4px;
  height: 75px;
  bottom: 0;
}
.btn_contact a img {
  width: 100px;
  height: auto;
}
.btn_contact a:after,
.btn_donation a:after {
  transition: 0.3s;
}
.btn_contact:hover a:after,
.btn_donation:hover a:after {
  display: block;
  content: "";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: -20px;
  color: var(--color-key-red);
  font-size: var(--font-s);
}
.sec_vis_right {
  width: 60%;
}
.sec_news {
  padding: 0;
  margin-bottom: 50px;
}
.sec_news .leftbox {
  width: 45%;
}
.sec_news .leftbox h2 {
  font-family: var(--font-headline);
  font-size: 50px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.sec_news .leftbox h2 span {
  margin-left: var(--space-s);
  font-size: var(--font-s);
  display: block;
}
.sec_news .leftbox .btn {
  margin-bottom: 0;
}
.sec_news .rightbox {
  width: 48%;
}
.list_pickup {
  justify-content: space-between;
  width: var(--width-content);
  margin: var(--space-l) auto;
  position: relative;
  z-index: 100;
}
.list_pickup li {
  width: 32%;
}
.list_pickup li a {
  color: var(--color-key-color);
  display: flex;
  justify-content: space-between;
  padding: var(--font-s);
  border-radius: var(--radius);
  background: var(--color-key-color2);
  align-items: center;
  transition: 0.3s;
}
.list_pickup li a:hover {
  background: #cbf0f5;
}
.list_pickup li a figure {
  width: 80px;
}
.list_pickup li a figure img {
  height: 80px;
}
.list_pickup li a figcaption {
  width: calc(100% - 100px);
  letter-spacing: 0;
}
.list_pickup li a figcaption h2 {
  font-size: var(--font);
  font-weight: normal;
}
.list_contents li a {
  background: var(--color-key-color2);
  background-size: cover;
  display: flex;
  width: 100%;
  border-radius: var(--radius);
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  text-decoration: none;
  padding: var(--font-s);
  position: relative;
  transition: 0.3s;
}
.list_contents li a:hover {
  background: #cbf0f5;
}
.list_contents li a figure {
  width: 60px;
}
.list_contents li a figure img {
  height: 60px;
}
.list_contents li a figcaption {
  width: calc(100% - 70px);
}
.list_contents li a figcaption h2 {
  margin-bottom: var(--space-s);
  position: relative;
  z-index: 100;
  font-weight: 400;
  line-height: 1.2;
  font-size: var(--font);
  letter-spacing: 0;
  color: var(--color-key-color);
  transition: 0.3s;
}
.list_contents li a figcaption p {
  color: var(--color-text-color);
  letter-spacing: 0;
}
.list_contents li a p {
  position: relative;
  z-index: 100;
  margin-bottom: 0;
  line-height: 1.4;
  font-size: var(--font-s);
}
.list_pickup li a p {
  position: relative;
  z-index: 100;
  margin-bottom: 0;
  line-height: 1.4;
  font-size: var(--font-s);
  color: var(--color-text-color);
}
.sec_news .wrap {
  justify-content: space-between;
}
.sec_news .leftbox .title-section {
  margin-bottom: 30px;
  font-weight: normal;
}
.list_news_recent li {
  margin-bottom: var(--space-m);
  position: relative;
}
.list_news_recent li .meta {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}
.list_news_recent li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  opacity: 0;
}
.list_news_recent li a:hover {
  opacity: 0.5;
}
.list_news_recent li h3 {
  font-weight: normal;
  line-height: 1.3;
  font-size: var(--font);
}
.list_news_recent li .meta time {
  font-size: var(--font);
  margin-right: var(--space-s);
  line-height: 1;
}
.list_news_recent li .meta .cats {
  font-size: var(--font);
  padding: 3px 5px;
  border-radius: var(--radius);
  margin: 0;
  background: var(--color-key-color2);
  color: var(--color-key-color);
  line-height: 1;
}
.sec_news .rightbox {
  border: 20px solid var(--color-white);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}
.sec_news .rightbox img {
  height: 100%;
  object-fit: cover;
}
.sec_donation {
  margin-bottom: 50px;
  padding: 100px 0 100px;
  margin-top: -70px;
  background: #f5f5f5;
}
.sec_donation .wrap {
  background: var(--color-white);
  border-radius: var(--radius);
}
.sec_donation .wrap figcaption {
  padding: 50px;
  width: 60%;
}
.sec_donation .wrap figure {
  width: 40%;
}
.sec_donation .wrap figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.sec_donation .wrap figcaption h2 {
  margin-bottom: 30px;
}
.sec_donation .wrap figcaption .btn_donation {
  margin-bottom: 0;
}
.sec_about {
  padding: 100px 0 50px;
  background: #f5f5f5;
  margin-top: 0px;
}
.sec_about p {
  margin-bottom: 0;
}
.home .sec_about {
  padding: 100px 0 50px;
  margin-top: -50px;
}
.sec_about .wrap {
  justify-content: space-between;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius);
  width: var(--width-content);
  overflow: hidden;
}
.sec_about figcaption {
  width: 65%;
  padding: 50px;
}
.sec_about figcaption h2 {
  margin-bottom: 30px;
  font-weight: normal;
}
.sec_about figcaption .btn {
  margin-bottom: 0;
  margin-top: 40px;
}
.sec_about figure {
  width: 35%;
}
.sec_about figure img {
  height: 440px;
  object-fit: cover;
}
.sec_contents_left {
  width: 40%;
  padding-left: 50px;
}
.sec_contents .title-section {
  margin-bottom: 50px;
  text-align: center;
  font-weight: normal;
}
.sec_contents .title-section-center {
  flex-direction: column;
  margin-top: -75px;
}
.sec_contents .title-section-center span {
  margin: 20px 0 0;
}
.sec_contents .wrap {
  justify-content: space-between;
  align-items: flex-start;
  width: var(--width-content);
}
.sec_contents .list_contents {
  width: 60%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec_contents .list_contents li {
  width: 49%;
  margin-bottom: var(--space-m);
}
.sec_contents .list_contents li:nth-child(n + 7) {
  margin-bottom: 0;
}
.sec_contents_left .title-section {
  margin-bottom: 30px;
}
.list_photo {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}
.list_photo li {
  width: 32%;
  margin-bottom: 30px;
  margin-right: calc(3% / 2);
}
.site-main .entry-content .list_photo li figure {
  margin: 0;
  font-size: var(--font-s);
  text-align: left;
}
.list_photo li figure img {
  border-radius: var(--radius);
  margin-bottom: 5px;
  height: 255px;
  object-fit: cover;
}
.list_photo li:nth-child(3n) {
  margin-right: 0;
}
.page-id-6055 .site-main .wrap {
  width: var(--width-content);
}
.page-id-6055 .site-main .entry-content .list_azarashi li a figure {
  margin: 0;
}

.site-main .entry-content .box_itemlink {
  background: var(--color-key-color2);
  padding: 30px;
  position: relative;
  margin-top: 40px;
}

.site-main .entry-content .box_itemlink figure {
  margin: 0;
}

.site-main .entry-content .box_itemlink h2 {
  padding: 0;
  background: transparent;
  margin: 0 0 20px;
  position: absolute;
  top: -13px;
  left: 30px;
  font-size: 20px;
}

@media only screen and (min-width: 1030px) {
  .entry-data {
    margin: 25px 40px 10px;
  }
}
