/*
Theme Name: 421.Lab 専用テーマ
Author: Bratech
Author URI: https://www.bratech.co.jp/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
*/
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz@9..40&display=swap');

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# foundation
	## reset
	## base
# layout
	## l-main
	## l-header
	## l-foote
	## l-fullmenu
# utility
	## u-utility
# component
	## c-btn
	## c-link
	## c-heading
	## c-list
	## c-pagination
	## c-form
	## c-breadcrumb
	## c-txt
	## c-table
	## c-backtotop
# projects
	## p-404
	## p-access
	## p-archive
	## p-collection
	## p-exhibition
	## p-page
	## p-single
	## p-top
	## p-visitor
# external
	## e-wordpress
--------------------------------------------------------------*/

:root {
  --bg-nav: #fff;
  --bg-mega: #f5f5f5;
  --bg-mega-odd: #DEFFFF;
  --bg-mega-even: #FFEEFF;
  --bg-page-ttl: #8D9CAB;
  --bg-header: #fff;
  --bg-body: #fff;
  --bg-footer: #EBF8FC;
  --bg-category: #6f8083;
  --bg-tag: #7f8083;
  --font-color: #333333;
  --font-gray: #666;
  --color-main: #009BDD;
  --color-sub: #0FB4E6;
  --color-dark: #003B83;
  --color-light: #6DC5EB;
  --color-accent: #B3E60E;
  --color-bg: #EBF8FC;
  --color-bg-gray: #f3f3f3;
  --color-border: #dcdcdc;
  --color-green-main: #5AB151;
  --color-green-sub: #89C782;
  --color-green-bg: #EEF6EA;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: .01ms !important;
    animation-duration: .01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes PageIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes PageIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes FadeIn {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes FadeIn {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Bullet {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }

  100% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

@-webkit-keyframes Bullet {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }

  100% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

@keyframes Load {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }

  100% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

@-webkit-keyframes Load {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }

  100% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

@keyframes Flash {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes Flash {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 90px;
  }

  100% {
    bottom: -10px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 90px;
  }

  100% {
    bottom: -10px;
  }
}

@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: .9;
  }

  100% {
    opacity: 0;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: .9;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  50% {
    transform-origin: left;
    transform: scaleX(1);
  }

  50.001% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  50% {
    transform-origin: left;
    transform: scaleX(1);
  }

  50.001% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@-webkit-keyframes round {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes round {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes floating-horizontal {
  0% {
    transform: translateX(-3px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes floating-horizontal {
  0% {
    transform: translateX(-3px);
  }

  100% {
    transform: translateX(0);
  }
}

@-webkit-keyframes floating-vertical {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floating-vertical {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "BIZ UDGothic", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.8;
  width: 100%;
  color: var(--font-color);
}

@media print, screen and (min-width: 600px) {
  body {
    font-size: 1.6rem;
    line-height: 2;
  }
}

@media screen and (min-width: 1025px) {
  body {
    font-size: 1.8rem;
    line-height: 2;
  }
}

::-moz-selection {
  background: #dcdcdc;
}

::selection {
  background: #dcdcdc;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

#wrapper {
  overflow-x: hidden;
}

.l-main {
  padding: 0 0 60px;
}

.l-content {
  padding: 40px 0;
}

.l-content__main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

@media print, screen and (min-width: 600px) {
  .l-content {
    padding: 60px 0;
  }

  .l-content__main {
    padding: 0 30px;
  }
}

@media screen and (min-width: 1025px) {
  .l-content {
    padding: 60px 0;
  }

  .l-content__main {
    padding: 20px;
    background-color: var(--color-bg);
    border-radius: 10px;
  }

  .l-content__inner {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
  }
}

@media screen and (min-width: 1400px) {

}

.l-content__medium {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px 40px;
}

@media print,
screen and (min-width: 600px) {
  .l-content__medium {
    padding: 60px 30px 60px;
  }
}

@media screen and (min-width: 1025px) {
  .l-content__medium {
    padding: 60px 20px 60px;
  }
}

@media screen and (min-width: 1400px) {
  .l-content__medium {
    padding: 60px 0 60px;
  }
}

.l-content__large {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 40px;
}

@media print,
screen and (min-width: 600px) {
  .l-content__large {
    padding: 60px 30px 60px;
  }
}

@media screen and (min-width: 1025px) {
  .l-content__large {
    padding: 60px 20px 60px;
  }
}

@media screen and (min-width: 1400px) {
  .l-content__large {
    padding: 60px 0 60px;
  }
}

.l-header {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  background-color: var(--bg-header);
  z-index: 100;
  padding: 0;
  position: relative;
}

.l-header__inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px;
  
}

@media print, screen and (min-width: 600px) {
  .l-header {
    height: 80px;
  }
}

@media screen and (min-width: 1025px) {
  .l-header {
    justify-content: space-between;
    display: block;
    height: auto;
    border-top: 8px solid;
    border-image: linear-gradient(to right, #009BDD, #0FB4E6) 1;
  }

  .l-header__inner {
    justify-content: space-between;
    height: 200px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
}



.l-header__logo > * {
  padding: 0 0 0 10px;
  text-align: left;
  font-weight: 700;
  font-size: 3.2rem;
}

.l-header__logo img {
  max-width: 250px;
  width: 120px;
  height: auto;
  display: block;
}

.l-header__logo img:hover {
  opacity: .7;
}

@media print, screen and (min-width: 600px) {
  .l-header__logo img {
    width: 200px;
  }
}

@media screen and (min-width: 1025px) {
  .l-header__logo {
    padding: 1em 0;
  }

  .l-header__logo > * {
    padding: 0 30px;
    font-size: 3.2rem;
    text-align: center;
  }

  .l-header__logo img {
    display: inline-block;
    width: 300px;
  }
}

.l-header__logo img:hover {
  opacity: .8;
  transition: .2s ease-in;
}

.l-header__pc {
  display: none;
}

@media screen and (min-width: 1025px) {
  .l-header__pc {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}

.l-header__subnav {
  display: flex;
  align-items: center;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}

.l-header__sns {
  display: none;
  margin-left: 40px;
  
}

@media screen and (min-width: 1025px) {
  .l-header__sns {
    display: block;
  }
}

.l-header__sns-list {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: right;
  gap: 20px;
}

.l-header__sns-list li {
  font-size: 3rem;
  line-height: 1;
}

.l-header__sns-list li img {
  height: 26px;
}

.l-header__menu-list {
  display: flex;
}

.l-header__menu-list li {
  width: 160px;
}

.l-header__menu-list li:nth-child(2) a {
  color: white;
  background-color: #9a5016;
}

.l-header__menu-list li:nth-child(3) a {
  color: #2b2b2b;
  background-color: #dcdcdc;
}

.l-header__menu-list li:nth-child(4) a {
  color: #2b2b2b;
  background-color: #ebebeb;
}

.l-header__menu-list li a {
  display: block;
  padding: .4em 1em;
  color: white;
  background-color: #6f8083;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  transition: .3s ease-in;
}

.l-header__menu-list li a:hover {
  transition: .3s ease-in;
  background-color: #4682b4;
  color: white;
}

.l-header__gnav {
  margin-top: 0;
  position: relative;
}

.l-header__gnav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top: 3px solid var(--color-main);
}

.l-header__gnav-list li {
  font-weight: bold;
  width: 100%;
}

.l-header__gnav-list li:last-child a {
  border-right: none;
}

.l-header__gnav-list li a {
  color: var(--font-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  height: 68px;
  vertical-align: middle;
  border-right: 1px dashed var(--color-sub);
  background-color: var(--color-bg);
  letter-spacing: .06em;
  font-size: 1.5rem;
  line-height: 1.5;
}

.l-header__gnav-list li a:hover {
  color: var(--color-main);
}

.l-header__gnav-list li a.active + .header-nav-child {
  display: block;
}

@media screen and (min-width: 1400px) {
  .l-header__gnav-list li a {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}


.header-nav-child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ccc;
  z-index: 10;
}

.l-header__gnav-sub {
  position: absolute;
  top: 66px;
  left: 0;
  width: 100%;
  background-color: white;
  display: none;
  z-index: 10;
}

.l-header__gnav-sub a {
  padding: 0;
}

.l-header__gnav-sub li {
  line-height: 1.8;
}

.l-header__gnav-sub__inner {
  width: 100%;
  background-color: var(--color-light);
  padding: 40px 100px;
  min-height: 242px;
  display: flex;
  align-items: center;
}

.l-header__gnav-sub__cont {
  width: 100%;
  margin: 0 auto;
}

/* .l-header__gnav-sub__cont .col {
  width: 33.33%;
}

.l-header__gnav-sub__cont .col p {
  font-size: 1.4rem;
  padding: 10px 0;
  line-height: 1.6;
}

.l-header__gnav-sub__cont .col_1 {
  padding: 0 30px 0 0;
}

.l-header__gnav-sub__cont .col_2,
.l-header__gnav-sub__cont .col_3 {
  position: relative;
  padding: 0 30px;
  font-weight: 400;
}

.l-header__gnav-sub__cont .col_2::before,
.l-header__gnav-sub__cont .col_3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #dcdcdc;
} 

.l-header__gnav-sub__cont a.gnav_sub__menu {
  background-color: white;
  width: 90%;
  position: relative;
  padding: 18px 16px;
  line-height: 1.6;
  transition: .5s;
}

.l-header__gnav-sub__cont a.gnav_sub__menu::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: solid 1px #2b2b2b;
  border-right: solid 1px #2b2b2b;
  transform: rotate(45deg) translateY(-50%);
}

.l-header__gnav-sub__cont a.gnav_sub__menu:hover {
  background-color: #4682b4;
  color: white;
}

.l-header__gnav-sub__cont a.gnav_sub__menu:hover::before {
  border-color: white;
}
 */

.l-header__gnav-sub__cont .sub_lower__menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.l-header__gnav-sub__cont .sub_lower__menu li {
  line-height: 2.6;
  padding: 0;
  margin: 0;
  position: relative;
  flex: 1 1 calc(25% - 20px);
}

.l-header__gnav-sub__cont .sub_lower__menu li::after {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  padding: 0;
  display: block;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  color: var(--color-light);
}

.l-header__gnav-sub__cont .sub_lower__menu li:hover::after {
  color: var(--color-main);
}

.l-header__gnav-sub__cont .sub_lower__menu li a {
  position: relative;
  padding-left: 1.2em;
  font-weight: 400;
  font-size: 1.6rem;
  font-weight: bold;
  transition: .3s ease-in;
  text-align: left;
  background-color: white;
  border: 0;
}

.l-header__gnav-sub__cont .sub_lower__menu li a:hover {
  color: var(--color-main);
  transition: .3s ease-in;
  background-color: var(--color-bg);
}


.l-header__gnav-sub .l-header__gnav-sub {
  top: 60px;
  left: 10px;
  z-index: 11;
  max-width: 80%;
  min-width: 500px;
}

@basecolor: #f5f5f5;

.l-header__gnav-sub .l-header__gnav-sub .l-header__gnav-sub__cont {
  width: 100%;
  padding: 30px;
  min-height: auto;
  border: 1px solid #f5f5f5;
}

.l-header__gnav-sub .l-header__gnav-sub__cont .depth-odd {
  background-color: var(--bg-mega-odd);
}

.l-header__gnav-sub .l-header__gnav-sub__cont .depth-even {
  background-color: var(--bg-mega-even);
}

.l-header__search {
  margin-left: 30px;
  height: 30px;
  width: 30px;
}

.l-header__search p {
  cursor: pointer;
}

.l-header__search-area {
  background: #f5f5f5;
  position: absolute;
  top: 180px;
  left: 0;
  width: 100%;
  height: auto;
  display: none;
  z-index: 10;
}

.l-header__search-inner {
  width: 840px;
  margin: 0 auto;
  padding: 40px 0;
}

.l-header__search-inner #search_form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header__search-inner #search_form input {
  appearance: none;
  outline: none;
}

.l-header__search-inner #search_form input[type=text] {
  border: 1px solid #dcdcdc;
  padding: .4em .8em;
  width: 750px;
}

.l-header--pc {
  display: none;
}

@media screen and (min-width: 1025px) {
  .l-header--pc {
    display: block;
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 1025px) {
  .l-header--sp {
    display: none;
  }
}

/* footer */
.l-footer {
  margin-top: auto;
  position: relative;
  background-color: var(--bg-footer);
}

@media screen and (min-width: 1025px) {
  .l-footer {
    position: relative;
  }

  .l-footer::before,
  .l-footer::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
  }

  .l-footer::before {
    left: 0;
    width: calc((100vw - 1400px) / 2);
    background-color: var(--color-bg);
  }

  .l-footer::after {
    right: 0;
    width: calc((100vw - 1400px) / 2);
    background-color: var(--color-sub);
  }
}

.l-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1025px) {
  .l-footer__inner {
    flex-direction: row;
  }
}

.l-footer__left {
  background-color: var(--color-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 50px 16px 86px 16px;
  order: 2;
}

@media screen and (min-width: 1025px) {
  .l-footer__left {
    order: 1;
    width: 50%;
    padding: 80px 80px 80px 30px;
  }
}

.l-footer__right {
  background-color: var(--color-sub);
  padding: 4vw;
  order: 1;
}

@media screen and (min-width: 1025px) {
  .l-footer__right {
    order: 2;
    width: 50%;
    padding: 80px 30px 100px 80px;
  }
}

.l-footer__right hr {
  display: none;
}

@media screen and (min-width: 1025px) {
  .l-footer__right hr {
    height: 0;
    border: 0;
    display: block;
    border-top: 1px solid white;
    margin: 70px 0;
  }
}

.l-footer__logo {
  margin-bottom: 20px;
  text-align: center;
}

.l-footer__logo img {
  width: 100px;
  margin: 0 auto;
}

@media print, screen and (min-width: 600px) {
  .l-footer__logo img {
    width: 140px;
  }
}

@media screen and (min-width: 1025px) {
  .l-footer__logo {
    margin-bottom: 30px;
    text-align: left;
  }

  .l-footer__logo img {
    width: 9vw;
  }
}

.l-footer__branch {
  margin-bottom: 40px;
  text-align: center;
}

.l-footer__branch-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: .5em;
}

@media print, screen and (min-width: 600px) {
  .l-footer__branch-name {
    text-align: center;
  }
}

@media screen and (min-width: 1025px) {
  .l-footer__branch {
    text-align: left;
  }

  .l-footer__branch-name {
    font-size: 1.7rem;

    text-align: left;
  }
}

.l-footer__branch-hour {
  font-size: 1.2rem;
  margin-bottom: 2em;
}

@media screen and (min-width: 1025px) {
  .l-footer__branch-hour {
    font-size: 1.4rem;
  }
}

.l-footer__branch-address {
  font-size: 1.3rem;
  line-height: 2.2;
}

@media print, screen and (min-width: 600px) {
  .l-footer__branch-address {
    text-align: center;
  }
}

@media screen and (min-width: 1025px) {
  .l-footer__branch-address {
    font-size: 1.3rem;
    text-align: left;
    line-height: 2.0;
  }
}

.l-footer__branch-address span {
  margin-left: 4em;
}

.l-footer__copyright {
  font-size: 1.1rem;
  margin-top: auto;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .l-footer__copyright {
    font-size: 1.2rem;
    text-align: left;
  }
}

.l-footer__sitemap {
  display: none;
}

@media screen and (min-width: 1025px) {
  .l-footer__sitemap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.l-footer__sitemap-list {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

@media screen and (min-width: 1025px) {
  .l-footer__sitemap-list {
    gap: 1.6em;
  }
}

.l-footer__sitemap-list li {
  font-size: 1.3rem;
}

@media screen and (min-width: 1025px) {
  .l-footer__sitemap-list li {
    font-size: 1.5rem;
  }
}

.l-footer__sitemap-list li a {
  color: white;
}

.l-footer__sitemap-list li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: .5em 0 2em;
}

.l-footer__sitemap-list li ul li {
  font-weight: normal;
  margin-bottom: .5em;
}

.l-footer__sitemap-list li ul li ul li {
  padding-left: 1em;
  position: relative;
}

.l-footer__sitemap-list li ul li ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #2b2b2b;
  width: 6px;
  height: 1px;
}

.l-footer__sns {
  margin: 0 0 20px;
}

.l-footer__sns-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}

@media screen and (min-width: 1025px) {
  .l-footer__sns {
    margin: 0 0 50px;
  }

  .l-footer__sns-list {
    justify-content: right;
  }
}

.l-footer__sns-list li {
  font-size: 2.6rem;
}

.l-footer__sns-list li img {
  height: 26px;
  fill: black;
}

.l-footer__link {
  margin: 0 0 10px;
}

@media print, screen and (min-width: 600px) {
  .l-footer__link {
    margin: 0;
  }
}

.l-footer__link-list {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media screen and (min-width: 1025px) {
  .l-footer__link-list {
    justify-content: flex-end;
  }
}


.l-footer__link-list .menu-item {
  width: calc((100% / 2) - 10px);
}

@media print,screen and (min-width: 600px) {
  .l-footer__link-list .menu-item {
    width: calc((100% / 3) - 10px);
  }
}


.l-footer__link-list .menu-item:hover {
  opacity: .7;
}

#page_top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 20;
}

@media print,
screen and (min-width: 600px) {
  #page_top {
    right: 20px;
    bottom: 20px;
  }
}

#page_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 1.4;
  transition: ease-in .3s;
  background-color: var(--color-main);
  border-radius: 4px;
  color: white;
  position: relative;
}

.nav-btn {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 110;
  cursor: pointer;
  background-color: var(--color-sub);
  width: 60px;
  height: 60px;
  border: 0;
}

@media print,
screen and (min-width: 600px) {
  .nav-btn {
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 1025px) {
  .nav-btn {
    display: none;
  }
}

@media print {
  .nav-btn {
    display: none;
  }
}

.nav-btn i {
  font-size: 26px;
  color: white;
}

.nav-btn.active i::before {
  font: var(--fa-font-solid);
  content: "\f00d";
}

.nav-btn.change-color {
  background-color: var(--color-main);
  transition: .2s ease-in;
}

.l-fullmenu {
  background: var(--color-dark);
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 102;
  overflow-y: scroll;
}

.l-fullmenu__inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  padding: 60px 4% 4% 4%;
}

.l-fullmenu__nav {
  padding: 4%;
}

.l-fullmenu__head {
  height: 60px;
  display: flex;
  align-items: center;
}

.l-fullmenu__head a,
.l-fullmenu__head a:visited {
  color: white;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu__head {
    height: 100px;
  }
}

.l-fullmenu__head h1 img {
  min-width: 160px;
  width: 42vw;
  transition: .2s ease-in;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu__head h1 img {
    width: 200px;
  }
}

@media screen and (min-width: 1025px) {
  .l-fullmenu__head h1 img {
    width: 260px;
  }
}

.l-fullmenu__head h1 img:hover {
  opacity: .8;
  transition: .2s ease-in;
}

.l-fullmenu__subnav {
  padding: 10px 4vw;
}

.l-fullmenu__subnav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu__subnav-list {
    gap: 20px;
  }
}

.l-fullmenu__subnav-list li {
  width: calc(50% - 5px);
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu__subnav-list li {
    width: calc(50% - 10px);
  }
}

.l-fullmenu__subnav-list li a {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #dcdcdc;
  display: block;
  padding: 1.4em .4em;
  color: white;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu__subnav-list li a {
    font-size: 1.4rem;
    padding: 1em .4em;
  }
}

.l-fullmenu__nav .sub-menu {
  display: none;
  margin-left: 25px;
}

.l-fullmenu__sns {
  padding: 10px 4vw;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu__sns {
    padding: 20px 4vw;
  }
}

.l-fullmenu__sns-list {
  display: flex;
  font-size: 3.6rem;
  gap: 30px;
  justify-content: center;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu__sns-list {
    font-size: 3rem;
    gap: 40px;
  }
}

.l-fullmenu__foot {
  margin-top: auto;
  padding-bottom: 4vw;
}

.l-fullmenu__copyright {
  font-size: 1rem;
  text-align: center;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu__copyright {
    font-size: 1.2rem;
  }
}

.l-fullmenu-ac {
  font-size: 1.4rem;
  font-weight: bold;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu-ac {
    font-size: 1.5rem;
  }
}

/* .l-fullmenu-ac > li {
  border-bottom: 1px solid #dcdcdc;
} */

.l-fullmenu-ac li a {
  display: block;
  padding: 25px 0;
  color: white;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu-ac li a {
    padding: 15px 0;
  }
}

.l-fullmenu-ac dl dt {
  padding: 14px 0;
  border-bottom: 1px solid #dcdcdc;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu-ac dl dt {
    padding: 15px 0;
  }
}

.l-fullmenu-ac dl dt a {
  display: block;
}

.l-fullmenu-ac .subpage {
  position: relative;
}

.l-fullmenu-ac .subpage.open:after {
  height: 0;
  transition: .2s ease-in;
}

.l-fullmenu-ac .subpage::before,
.l-fullmenu-ac .subpage::after {
  content: "";
  position: absolute;
  background-color: #9a5016;
  top: 50%;
  transform: translateY(-50%);
  transition: .2s ease-in;
}

.l-fullmenu-ac .subpage::before {
  right: 0;
  width: 15px;
  height: 1px;
}

.l-fullmenu-ac .subpage::after {
  right: 7px;
  width: 1px;
  height: 15px;
}

.l-fullmenu-ac2 li a {
  padding: 14px 0 14px 2em;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu-ac2 li a {
    padding: 15px 0 15px 2em;
  }
}

.l-fullmenu-ac2 p {
  padding: 14px 0 14px 2em;
  border-bottom: 1px solid #dcdcdc;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu-ac2 p {
    padding: 15px 0 15px 2em;
  }
}

.l-fullmenu-ac3 li a {
  padding: 14px 0 14px 4em;
}

@media print,
screen and (min-width: 600px) {
  .l-fullmenu-ac3 li a {
    padding: 15px 0 15px 4em;
  }
}

.l-fullmenu-ac li.menu-item-has-children {
  position: relative;
}

.l-fullmenu-ac li.menu-item-has-children > a {
  width: calc(100% - 50px);
}

.l-fullmenu-ac li.menu-item-has-children > i::after {
  font-family: "Font Awesome 6 Free";
  content: "\2b";
  position: absolute;
  top: 13px;
  right: 0;
  padding: 0;
  display: block;
  width: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  color: white;
}

.l-fullmenu-ac li.menu-item-has-children > i.active::after {
  content: "\f068";
}

.l-fullmenu-ac li.menu-item-has-children > i.active + .sub-menu {
  display: block;
}

.u-align--right {
  text-align: right;
}

.u-align--center {
  text-align: center;
}

.u-align--left {
  text-align: left;
}

.u-size--small {
  font-size: 1.3rem;
}

@media print,
screen and (min-width: 600px) {
  .u-size--small {
    font-size: 1.4rem;
  }
}

.u-size--xsmall {
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 600px) {
  .u-size--xsmall {
    font-size: 1.3rem;
  }
}

.u-size--large {
  font-size: 1.6rem;
}

@media print,
screen and (min-width: 600px) {
  .u-size--large {
    font-size: 1.8rem;
  }
}

.u-mt--20 {
  margin-top: 20px;
}

.c-btn {
  position: relative;
  display: inline-block;
  padding: 1em 4.4em 1em 1.6em;
  background-color: var(--color-sub);
  color: white !important;
  text-decoration: none;
  text-align: left;
  transition: .3s ease-in-out;
  font-size: 1.3rem;
  width: 100%;
  border-bottom: none !important;
  border-radius: 5px;
}

@media print, screen and (min-width: 600px) {
  .c-btn {
    width: auto;
    font-size: 1.5rem;
    padding: .8em 4.4em .8em 1.6em;
  }
}

.c-btn:visited,
.c-btn:active {
  color: white !important;
}

.c-btn:hover {
  background-color: var(--color-main);
  color: white !important;
}

.c-btn:hover::after {
  color: white;
}

.c-btn::before {
  content: "";
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: white;
}

.c-btn::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.c-btn__large {
  width: 100%;
  padding: 1.4em 4.4em 1.4em 1.6em;
}

@media print, screen and (min-width: 1025px) {
  .c-btn__large {
    font-size: 2.0rem;
    padding: 2em 4.4em 2em 1.6em;
    font-weight: bold;
  }

  .c-btn__large::before {
    right: 100px;
    width: 2px;
  }

  .c-btn__large::after {
    font-size: 28px;
    right: 42px;
  }
}

.c-btn__external {
  margin: 1em 0;
}

.c-btn__external::after {
  content: "\f35d";
}

.c-btn__pdf {
  margin: 1em 0;
}

.c-btn__pdf::after {
  content: "\f1c1";
}

.c-btn__word {
  margin: 1em 0;
}

.c-btn__word::after {
  content: "\f1c2";
}

.c-btn__twitter {
  margin: 1em 0;
  background-color: #1da1f2;
  color: white !important;
}

.c-btn__twitter:visited,
.c-btn__twitter:active {
  color: white !important;
}

.c-btn__twitter:hover {
  background-color: rgba(29, 161, 242, .7);
  color: white !important;
}

.c-btn__twitter::after {
  content: "\e61b";
  /*content: "\f099";*/
  font-family: "Font Awesome 5 Brands";
}

.c-btn__insta {
  margin: 1em 0;
  background-color: #e1306c;
  color: white !important;
}

.c-btn__insta:visited,
.c-btn__insta:active {
  color: white !important;
}

.c-btn__insta:hover {
  background-color: rgba(225, 48, 108, .7);
  color: white !important;
}

.c-btn__insta::after {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
}

.c-btn__schedule {
  background-color: #1c3a57;
  color: white !important;
}

@media screen and (min-width: 1025px) {
  .c-btn__schedule {
    width: auto;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 1em 6em 1em 2em;
    letter-spacing: .08em;
  }
}

.c-btn__schedule:visited,
.c-btn__schedule:active {
  color: white !important;
}

@media screen and (min-width: 1025px) {
  .c-btn__schedule::before {
    right: 60px;
  }
}

.c-btn__schedule::after {
  content: "\f1c1";
}

@media screen and (min-width: 1025px) {
  .c-btn__schedule::after {
    right: 24px;
  }
}

.btn--center {
  margin: 0 auto;
}

.btn--small {
  padding: .3em 0;
  width: 200px;
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 600px) {
  .btn--small {
    font-size: 1.3rem;
    padding: .2em 0;
  }
}

.btn--large {
  width: 90%;
  margin: 0 auto;
}

@media print,
screen and (min-width: 600px) {
  .btn--large {
    width: 80%;
  }
}

@media screen and (min-width: 1025px) {
  .btn--large {
    width: 100%;
    font-size: 1.8rem;
  }
}

a {
  color: #2b2b2b;
  text-decoration: none;
}

a:visited {
  color: #2b2b2b;
}

a:hover,
a:focus,
a:active {
  color: #4682b4;
}

a:hover,
a:active {
  outline: 0;
}

/* 見出し */
.c-heading-top {
  margin-bottom: 20px;
}

.c-heading-top h2 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-main);
  letter-spacing: .08em;
  text-align: center;
}

.c-heading-top h2 span {
  display: block;
}

.c-heading-top h2 span img {
  height: 30px;
}

@media print, screen and (min-width: 600px) {
  .c-heading-top h2 {
    font-size: 1.4rem;
  }

  .c-heading-top h2 span img {
    height: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .c-heading-top {
    margin-bottom: 30px;
  }

  .c-heading-top h2 {
    font-size: 1.6rem;
  }

  .c-heading-top h2 span img {
    height: 60px;
  }
}


.c-heading-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  background: linear-gradient(to right, #009BDD 0%, #0FB4E6 100%);
}

@media print, screen and (min-width: 600px) {
  .c-heading-page {
    height: 200px;
  }
}

@media screen and (min-width: 1025px) {
  .c-heading-page {
    height: 240px;
  }
}

.c-heading-page__esd {
  background: linear-gradient(to right, var(--color-green-main) 0%, var(--color-green-sub) 100%);
}


.c-heading-page > * {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  z-index: 1;
  color: white;
  font-weight: 700;
  letter-spacing: .1em;
}

.c-heading-page > * span {
  display: block;
  font-size: 1.3rem;
  padding-bottom: .5em;
}


@media print, screen and (min-width: 600px) {
  .c-heading-page > * {
    font-size: 2.4rem;
  }

  .c-heading-page > * span {
    font-size: 1.8rem;

  }
}

@media screen and (min-width: 1025px) {
  .c-heading-page > * {
    font-size: 2.8rem;
  }

  .c-heading-page > * span {
    font-size: 1.6rem;
  }
}




.c-list-news li {
  position: relative;
  border-bottom: 1px solid #dcdcdc;
  margin: 0;
}

.c-list-news li:first-child {
  border-top: 1px solid #dcdcdc;
}

.c-list-news li:hover::after {
  width: 100%;
  transition: ease-in .3s;
}

.c-list-news li::before {
  content: "\f105";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-main);
  
}

.c-list-news li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-bg);
  transition: ease-in .3s;
  z-index: -1;
}

.c-list-news li a {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 1.2em 0;
}

@media print, screen and (min-width: 600px) {
  .c-list-news li a {
    padding: 1.5em 0;
    flex-direction: row;
  }
}

.c-list-news li a:hover,
.c-list-news li a:visited,
.c-list-news li a:active {
  color: #2b2b2b;
}

.c-list-news__date {
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 3px 10px 2px;
  color: white;
  background-color: var(--color-main);
  border-radius: 2px;
}

@media print, screen and (min-width: 600px) {
  .c-list-news__date {
    font-size: 1.4rem;
    border-radius: 5px;
    margin-right: 2em;
    min-width: 100px;
    text-align: center;
  }
}

.c-list-news__ttl {
  font-size: 1.45rem;
  line-height: 1.6;
  margin-top: .5em;
}

@media screen and (min-width: 600px) {
  .c-list-news__ttl {
    font-size: 1.6rem;
    margin-top: 0;
  }
}

.c-list-news__taxonomy {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0 10px;
}

.c-list-news__cat {
  display: flex;
  align-items: center;
  gap: 0 5px;
  margin-right: 10px;
}

.c-list-news__cat span {
  background-color: var(--color-dark);
  color: white;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: bold;
  padding: .3em .6em .1em;
}

.c-list-news__tag {
  display: flex;
  align-items: center;
  gap: 0 5px;
}

.c-list-news__tag span {
  background-color: var(--bg-tag);
  color: white;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: bold;
  padding: .3em .6em .1em;
  display: inline-block;
}

@media screen and (min-width: 1025px) {

  .c-list-news__tag span,
  .c-list-news__cat span {
    font-size: 1.3rem;
    padding: .2em .6em .1em;
  }
}

.c-list-news__event span {
  font-size: 1.3rem;
  padding: .2em .6em .1em;
  border: 1px solid #2b2b2b;
  background-color: white;
}


.c-list-link {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-list-link li {
  position: relative;
  border-top: 1px solid #dcdcdc;
  transition: .2s ease-in;
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  .c-list-link li {
    font-size: 1.8rem;
  }
}

.c-list-link li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

.c-list-link li:hover {
  background-color: #f5f5f5;
  transition: .2s ease-in;
}

.c-list-link li:hover::before {
  right: -4px;
  transition: .2s ease-in;
}

.c-list-link li:hover::after {
  right: -8px;
  transition: .2s ease-in;
}

.c-list-link li::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 16px;
  height: 1px;
  background-color: #2b2b2b;
  transition: .2s ease-in;
  transform: translateY(-50%);
}

.c-list-link li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 49%;
  width: 9px;
  height: 9px;
  border-top: 1px solid #2b2b2b;
  border-right: 1px solid #2b2b2b;
  transform: rotate(45deg) translateY(-50%);
  transition: .2s ease-in;
}

.c-list-link li a {
  display: block;
  border-bottom: none;
  color: #2b2b2b;
  padding: 1em 0;
}

@media screen and (min-width: 1025px) {
  .c-list-link li a {
    padding: 1.6em 0;
  }
}

.c-list-link li a:hover {
  border-bottom: none;
}

.c-list-search li {
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
}

.c-list-search li:first-child {
  border-top: 1px solid #dcdcdc;
}

@media screen and (min-width: 1025px) {
  .c-list-search li {
    padding: 30px;
  }
}

.c-list-search__date {
  font-size: 1.3rem;
  text-align: right;
  font-weight: bold;
  margin-top: 1em;
}

.c-list-search__title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: .5em;
}

@media print,
screen and (min-width: 600px) {
  .c-list-search__title {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1025px) {
  .c-list-search__title {
    font-size: 1.8rem;
    line-height: 2;
  }
}

.c-list-search__txt {
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 600px) {
  .c-list-search__txt {
    font-size: 1.4rem;
  }
}

.c-list-nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 40px 0 !important;
}

.c-list-nav li {
  text-align: center;
  font-weight: bold;
  padding: 0 !important;
  margin: 0 1em 1em 0 !important;
}

.c-list-nav li::before {
  display: none;
}

.c-list-nav a {
  display: block;
  padding: .8em;
  transition: .2s ease-in;
  border: 1px solid #6f8083;
}

.c-list-nav a:hover {
  background-color: #f5f5f5;
}

.c-list-nav a.current {
  pointer-events: none;
}

.c-list-post ul li {
  border-bottom: 1px solid #dcdcdc;
  padding: .8em 0 !important;
  margin: 0 !important;
}

@media screen and (min-width: 1025px) {
  .c-list-post ul li {
    padding: 1.2em 0 !important;
  }
}

.c-list-post ul li::before {
  display: none;
}

.c-list-post ul li:hover::after {
  width: 100%;
  transition: ease-in .3s;
}

.c-list-post ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #6f8083;
  transition: ease-in .3s;
}

.c-list-post ul li a {
  display: block;
  border-bottom: none !important;
  margin-top: .5em;
}

@media screen and (min-width: 1025px) {
  .c-list-post ul li a {
    display: inline-block;
    margin-top: 0;
  }
}

.c-list-post ul li span {
  display: inline-block;
  margin-right: 1em;
}

.c-list-post ul li span + a.label-15,
.c-list-post ul li span + a.label-16 {
  background-color: #9a5016;
  color: white;
  font-size: 1.2rem;
  padding: .1em .8em;
  display: inline-block;
  font-weight: bold;
}

@media print,
screen and (min-width: 600px) {

  .c-list-post ul li span + a.label-15,
  .c-list-post ul li span + a.label-16 {
    font-size: 1.3rem;
    margin-right: 1em;
  }
}

/* 固定ページで使用 */
.c-list-dl {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 1.4rem;
}

.c-list-dl dt {
  width: 100%;
  background-color: var(--color-bg);
  border-radius: 6px 6px 0 0;
  position: relative;
  padding: 20px 20px 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.c-list-dl dt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background-color:var(--color-main);
}

.c-list-dl dd {
  width: 100%;
  background-color: var(--color-bg);
  border-radius: 0 0 6px 6px;
  margin-bottom: 10px;
  padding: 10px 20px 20px;
}

@media screen and (min-width: 1025px) {
  .c-list-dl {
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 1.7rem;
  }

  .c-list-dl dt {
    width: 22%;
    border-radius: 6px 0 0 6px;
    margin-bottom: 10px;
    padding: 26px;
  }

  .c-list-dl dt::after {
    bottom: auto;
    left: auto;
    top: 20px;
    right: 0;
    width: 2px;
    height: calc(100% - 40px);
  }
  
  .c-list-dl dd {
    width: 78%;
    border-radius: 0 6px 6px 0;
    padding: 26px;
  }
}


.c-list-note {
  margin: .5em 0 !important;
  padding: 0;
  list-style: none;
}

.c-list-note li {
  position: relative;
  font-size: 1.2rem;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: .2em;
  line-height: 1.7;
}

@media print,
screen and (min-width: 600px) {
  .c-list-note li {
    font-size: 1.4rem;
  }
}

.c-list-note li::before {
  content: "※";
}

.c-list-note li a {
  border-bottom: 1px solid #2b2b2b;
  transition: ease-in .2s;
}

ol.c-list-number {
  counter-reset: item;
  list-style-type: none;
  margin: 1em 0 !important;
  padding-left: 26px !important;
}

ol.c-list-number li {
  position: relative;
}

ol.c-list-number li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: -26px;
  top: 2px;
  color: white;
  /*
  font-family: "Lato", sans-serif;
*/
  width: 21px;
  height: 21px;
  background-color: #6f8083;
  border: 1px solid #6f8083;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media print,
screen and (min-width: 600px) {
  ol.c-list-number li:before {
    top: 6px;
  }
}

ol.c-list-number li ol {
  counter-reset: sub;
  margin: 10px 0 10px 26px !important;
}

ol.c-list-number li ol li {
  position: relative;
}

ol.c-list-number li ol li::before {
  counter-increment: sub;
  content: counter(sub);
  position: absolute;
  left: -26px;
  color: #6f8083;
  background-color: white;
}

.c-list-archives li {
  border-bottom: 1px dotted #dcdcdc;
  padding: .4em 0;
  font-weight: bold;
}

.c-list-archives li span {
  font-size: 1.1rem;
}

@media print,
screen and (min-width: 600px) {
  .c-list-archives li span {
    font-size: 1.3rem;
  }
}

.c-list-archives li span.date {
  font-weight: normal;
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 600px) {
  .c-list-archives li span.date {
    font-size: 1.4rem;
  }
}

.c-list-data {
  border-top: dotted 1px #dcdcdc;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1.4rem;
}

@media print,
screen and (min-width: 600px) {
  .c-list-data {
    font-size: 1.5rem;
  }
}

.c-list-data dt {
  padding: .6em 0;
  border-bottom: dotted 1px #dcdcdc;
  font-weight: bold;
  width: 7em;
}

.c-list-data dd {
  padding: .6em 0;
  border-bottom: dotted 1px #dcdcdc;
  width: calc(100% - 7em);
}

.c-list-data dd span {
  margin-left: 1em;
}

.c-pagination {
  margin-top: 40px;
}

@media screen and (min-width: 1025px) {
  .c-pagination {
    margin-top: 60px;
  }
}

.c-pagination .pagination {
  display: flex;
  justify-content: center;
}

@media print,
screen and (min-width: 600px) {
  .c-pagination .pagination {
    margin-top: 0;
    text-align: center;
  }
}

@media screen and (min-width: 1025px) {
  .c-pagination .pagination {
    margin-top: 20px;
  }
}

.c-pagination .nav-links {
  display: flex;
}

.c-pagination .nav-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
  transition: all .3s ease;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--font-color);
  background-color: var(--color-bg);
  border: 1px solid var(--color-bg);
  margin-right: 4px;
  border-radius: 14px;
}

@media print, screen and (min-width: 600px) {
  .c-pagination .nav-links a {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    margin-right: 6px;
    border-radius: 21px;
  }
}

.c-pagination .nav-links a:hover {
  background-color:var(--color-light);
  color: white;
}

.c-pagination .nav-links a.prev,
.c-pagination .nav-links a.next {
  color: var(--font-color);
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-bg);
}

@media print, screen and (min-width: 600px) {

  .c-pagination .nav-links a.prev,
  .c-pagination .nav-links a.next {
    width: 42px;
    height: 42px;
  }
}

.c-pagination .nav-links a.prev:hover,
.c-pagination .nav-links a.next:hover {
  background-color:var(--color-light);
  color: white;
}

.c-pagination .nav-links span.dots {
  color: #6f8083;
  width: 28px;
  height: 28px;
}

@media print, screen and (min-width: 600px) {
  .c-pagination .nav-links span.dots {
    width: 42px;
    height: 42px;
  }
}

.c-pagination .nav-links span.current {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  width: 28px;
  height: 28px;
  background-color: var(--color-sub);
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  margin-right: 4px;
  border-radius: 14px;
}

@media print, screen and (min-width: 600px) {
  .c-pagination .nav-links span.current {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    margin-right: 6px;
    border-radius: 21px;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.c-form-contact__list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

@media screen and (min-width: 1025px) {
  .c-form-contact__list li {
    margin-bottom: 30px;
  }
}

.c-form-contact__list li:last-child {
  border-bottom: none;
}

.c-form-contact__title {
  margin-bottom: 8px;
  font-weight: bold;
}

.c-form-contact__title span {
  margin-left: 10px;
  font-size: 1.1rem;
  color: white;
  background-color: #ba2636;
  border-radius: 2px;
  padding: .2em .6em;
}

@media screen and (min-width: 1025px) {
  .c-form-contact__title span {
    margin-left: 16px;
  }
}

.c-form-contact__input {
  word-wrap: break-word;
}

.c-form-contact__input input[type=text],
.c-form-contact__input input[type=email],
.c-form-contact__input textarea,
.c-form-contact__input select {
  padding: 10px;
  background-color: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  caret-color: #6f8083;
  width: 100%;
}

.c-form-contact__input input[type=text]:focus,
.c-form-contact__input input[type=email]:focus,
.c-form-contact__input textarea:focus,
.c-form-contact__input select:focus {
  outline: none;
  border: 1px solid #9a5016;
}

.c-form-contact__input select {
  position: relative;
  display: block;
}

.c-form-contact__input select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #2b2b2b;
  border-right: 1px solid #2b2b2b;
  transform: rotate(45deg) translateY(-50%);
  z-index: 10;
}

.c-form-contact__input ::-moz-placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-contact__input :-ms-input-placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-contact__input ::placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-contact__btn {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-form-contact__input input[type=text].tel-area {
  width: auto;
}

@media print,
screen and (min-width: 600px) {
  .c-form-contact__btn {
    flex-direction: row;
  }
}

.c-form-contact__btn .btn {
  position: relative;
  display: inline-block;
  padding: 1.2em 2em;
  background-color: #6f8083;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: .3s ease-in-out;
  font-size: 1.5rem;
  font-weight: bold;
  width: 100%;
  border-bottom: none !important;
}

@media print,
screen and (min-width: 600px) {
  .c-form-contact__btn .btn {
    width: auto;
    font-size: 1.6rem;
    padding: 1em 4em;
  }
}

.c-form-contact__btn .btn:visited,
.c-form-contact__btn .btn:active {
  color: #2b2b2b !important;
}

.c-form-contact__btn .btn:hover {
  background-color: #4682b4;
  color: white !important;
}

.c-form-contact__btn .btn--back {
  background-color: #ebebeb;
  color: #6f8083;
}

.c-form-contact__confirm p {
  text-align: center;
}

.c-form-contact__confirm p.tel {
  margin-top: 1em;
  font-size: 1.8rem;
  /*
  font-family: "Lato", sans-serif;
*/
}

@media print,
screen and (min-width: 600px) {
  .c-form-contact__confirm p.tel {
    font-size: 2.4rem;
  }
}

.contact_caution {
  margin-top: 20px;
  color: #9a5016;
  font-weight: bold;
}

.btn_confirm {
  text-align: center;
}

.c-form-search {
  position: relative;
  width: 100%;
  height: 50px;
}

@media print,
screen and (min-width: 600px) {
  .c-form-search {
    max-width: 250px;
  }
}

.c-form-search__box {
  height: 50px;
  width: 100%;
  padding: 0 10px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0;
  outline: 0;
  background: #ebebeb;
  border: none;
  -webkit-appearance: none;
}

.c-form-search__submit {
  height: 50px;
  width: 40px;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  border-radius: 0;
  background: #f5f5f5;
  border-top: 1px solid #f5f5f5;
  border-right: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}

.c-form-search__submit img {
  width: 22px;
}

.c-form-search__submit:hover {
  border-color: #f5f5f5;
  cursor: pointer;
}

.c-form-search button {
  padding: 0;
}

.c-form-search input[type=text] {
  border: 1px solid #f5f5f5;
  padding: 0 10px;
  border-radius: 0;
}

.c-form-application .title {
  font-weight: bold;
  font-size: 1.7rem;
  margin: 4em 0 0;
  border-bottom: 1px dotted #dcdcdc;
  padding-bottom: .8em;
}

.c-form-application .title span {
  font-size: 1.2rem;
  display: block;
  margin-top: .5em;
}

@media print,
screen and (min-width: 600px) {
  .c-form-application .title span {
    display: inline;
    font-size: 1.4rem;
    margin-left: 2em;
    margin-top: 0;
  }
}

.c-form-application input[type=text],
.c-form-application input[type=email],
.c-form-application textarea,
.c-form-application select {
  padding: 3px 6px;
  background-color: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  caret-color: #6f8083;
  max-width: 100%;
}

.c-form-application input[type=text]:focus,
.c-form-application input[type=email]:focus,
.c-form-application textarea:focus,
.c-form-application select:focus {
  outline: none;
  border: 1px solid #9a5016;
}

.c-form-application input[type=text].full,
.c-form-application input[type=email].full {
  width: 100%;
}

.c-form-application textarea {
  width: 100%;
}

.c-form-application textarea.exhibition_detail,
.c-form-application textarea.purpose_other {
  margin-top: .5em;
}

@media screen and (min-width: 1025px) {
  .c-form-application select {
    font-size: 1.5rem;
  }
}

.c-form-application select.purpose_school {
  margin: .6em 0 0 1.6em;
  padding: 3px 10px;
}

.c-form-application dl {
  display: flex;
  flex-wrap: wrap;
}

.c-form-application dl dt {
  position: relative;
  width: 100%;
  padding: 1em 0 0;
  font-weight: bold;
}

@media print,
screen and (min-width: 600px) {
  .c-form-application dl dt {
    border-bottom: 1px dotted #dcdcdc;
    width: 30%;
    padding: 1em;
    background-color: #f5f5f5;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1025px) {
  .c-form-application dl dt {
    font-size: 1.5rem;
  }
}

.c-form-application dl dt span {
  margin-left: 10px;
  font-size: 1.1rem;
  line-height: 11px;
  color: white;
  background-color: #ba2636;
  border-radius: 2px;
  padding: .2em .3em;
}

@media print,
screen and (min-width: 600px) {
  .c-form-application dl dt span {
    position: absolute;
    top: 25px;
    right: 20px;
    line-height: 11px;
  }
}

.c-form-application dl dd {
  width: 100%;
  padding: .5em 0 1em;
  border-bottom: 1px dotted #dcdcdc;
}

@media print,
screen and (min-width: 600px) {
  .c-form-application dl dd {
    width: 70%;
    padding: 1em 0 1em 1em;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1025px) {
  .c-form-application dl dd {
    font-size: 1.5rem;
  }
}

.c-form-application dl dd ul.number li {
  margin-bottom: .6em;
  font-size: 1.4rem;
}

.c-form-application dl dd ul.number li:last-child {
  margin-bottom: 0;
}

.c-form-application dl dd ul.number li label {
  display: inline-block;
  width: 6em;
}

.c-form-application dl dd ::-moz-placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-application dl dd :-ms-input-placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-application dl dd ::placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-application dl dd .sub_area {
  margin: 10px 0 0 29px;
  font-size: 1.5rem;
}

.c-form-application dl dd .sub_area p {
  font-size: 1.4rem;
}

.c-form-application dl dd .note_area {
  margin: 10px 0 0;
}

.c-form-application dl dd .note_area p {
  font-size: 1.2rem;
  margin: 0 !important;
  line-height: 1.6;
  color: #696969;
}

@media print,
screen and (min-width: 600px) {
  .c-form-application dl dd .note_area p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

.c-breadcrumb {
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: var(--color-bg);
}

@media print, screen and (min-width: 600px) {
  .c-breadcrumb {
    padding: 12px 30px;
  }
}

@media screen and (min-width: 1025px) {
  .c-breadcrumb {
    margin-top: 0;
    border-top: none;
    padding: 10px 20px;
  }
}

@media screen and (min-width: 1400px) {
  .c-breadcrumb {
    padding: 10px 100px;
  }
}

.c-breadcrumb-list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.1;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media print, screen and (min-width: 600px) {
  .c-breadcrumb-list {
    line-height: 1.3;
  }
}

@media screen and (min-width: 1025px) {
  .c-breadcrumb-list {
    white-space: normal;
  }
}

.c-breadcrumb-list li {
  display: inline;
  list-style: none;
  font-size: 1.1rem;
  letter-spacing: .04em;
  position: relative;
  padding-right: 12px;
  margin-right: 8px;
  color: #2b2b2b;
}

@media print, screen and (min-width: 600px) {
  .c-breadcrumb-list li {
    font-size: 1.2rem;
  }
}

.c-breadcrumb-list li:last-child::after {
  display: none;
}

.c-breadcrumb-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  transform: rotate(-45deg);
}

.c-breadcrumb-list li a {
  text-decoration: none;
  transition: ease-in .2s;
}

.c-breadcrumb-list li br {
  display: none;
}

.c-breadcrumb span {
  font-size: 1.1rem;
}

@media screen and (min-width: 1025px) {
  .c-breadcrumb span {
    font-size: 1.4rem;
  }
}

.c-txt--right {
  text-align: right;
}

.c-txt--center {
  text-align: center;
}

.c-txt--sign {
  text-align: right;
  margin-top: 2em;
}

.c-txt--small {
  font-size: 1.3rem;
}

@media print,
screen and (min-width: 600px) {
  .c-txt--small {
    font-size: 1.4rem;
  }
}

.c-txt--red {
  color: #ba2636;
}

.c-table-esd {
  border-collapse: collapse;
  margin-bottom: 10px;
  width: 100%;
  border-collapse: separate;
}

.c-table-esd th,
.c-table-esd td {
  padding: 10px;
  font-size: 1.4rem;
  border: 1px solid white;
  vertical-align: top;
}

.c-table-esd th {
  background-color: var(--color-green-main);
  white-space: nowrap;
  color: white;
}

.c-table-esd td {
  background-color: var(--color-green-bg);
}

@media screen and (min-width: 1025px) {

  .c-table-esd th,
  .c-table-esd td {
    padding: 8px 12px;
    font-size: 1.6rem;
  }

  .c-table-esd th {
    padding: 12px;
  }
}


.c-table-membership {
  border-collapse: collapse;
  margin-bottom: 40px;
  width: 100%;
}

.c-table-membership th,
.c-table-membership td {
  border: 1px solid #6f8083;
  padding: 10px;
  font-size: 1.4rem;
}

@media screen and (min-width: 1025px) {

  .c-table-membership th,
  .c-table-membership td {
    font-size: 1.6rem;
    padding: 12px 14px;
  }
}

.c-table-membership th {
  background-color: #f5f5f5;
}

.c-table-membership td.center {
  text-align: center;
}

.c-table-fee {
  border-collapse: collapse;
  margin-bottom: 20px;
  width: 100%;
}

.c-table-fee th,
.c-table-fee td {
  border: 1px solid #dcdcdc;
  padding: 10px;
  text-align: center;
  font-size: 1.4rem;
}

@media screen and (min-width: 1025px) {

  .c-table-fee th,
  .c-table-fee td {
    padding: 12px 14px;
    font-size: 1.6rem;
  }
}

.c-table-fee th {
  background-color: #f5f5f5;
  white-space: nowrap;
}

#c-backtotop {
  position: fixed;
  bottom: 33px;
  right: 20px;
  z-index: 10;
  opacity: 0;
  transform: translateX(100px);
}

@media print,
screen and (min-width: 600px) {
  #c-backtotop {
    bottom: 20px;
    right: 20px;
  }
}

@media screen and (min-width: 1025px) {
  #c-backtotop {
    bottom: 60px;
    right: 0;
  }
}

#c-backtotop a {
  display: block;
  width: 44px;
  height: 44px;
  background-image: url(/421/wp-content/themes/img/backtotop_sp.png);
  background-size: 44px 44px;
  background-repeat: no-repeat;
}

@media print,
screen and (min-width: 600px) {
  #c-backtotop a {
    width: 44px;
    height: 44px;
    background-size: 44px 44px;
  }
}

@media screen and (min-width: 1025px) {
  #c-backtotop a {
    width: 50px;
    height: 140px;
    background-image: url(/421/wp-content/themes/img/backtotop_pc.png);
    background-size: 50px 140px;
  }
}

#c-backtotop a:hover {
  opacity: .8;
  transition: .2s ease-in;
}

#c-backtotop.LeftMove {
  -webkit-animation: LeftAnime .5s forwards;
  animation: LeftAnime .5s forwards;
}

#c-backtotop.RightMove {
  -webkit-animation: RightAnime .5s forwards;
  animation: RightAnime .5s forwards;
}

@-webkit-keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

.c-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

@media print,
screen and (min-width: 600px) {
  .c-gallery {
    gap: 30px;
    margin: 40px 0;
  }
}

.c-gallery img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 !important;
}

@media print,
screen and (min-width: 600px) {
  .c-gallery img {
    width: calc(50% - 15px);
  }
}

.c-timeline {
  position: relative;
}

.c-timeline__line {
  border-right: 2px solid #6f8083;
  left: 10px;
  position: absolute;
  top: 12px;
  height: calc(100% - 12px);
}

.c-timeline__item {
  list-style-type: none;
  margin: 0;
  padding: 0 0 2em;
}

.c-timeline__item:last-of-type {
  padding-bottom: 0;
}

.c-timeline__top {
  align-items: center;
  display: flex;
}

.c-timeline__circle {
  background-color: #6f8083;
  border-radius: 9999px;
  height: 22px;
  width: 22px;
}

.c-timeline__title {
  flex: 1;
  padding-left: 18px;
  color: #6f8083;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: .4em;
}

@media print,
screen and (min-width: 600px) {
  .c-timeline__title {
    padding-left: 26px;
    font-size: 1.8rem;
  }
}

.c-timeline__title span {
  text-transform: uppercase;
  /*
  font-family: "Lato", sans-serif;
*/
  font-size: 1.6rem;
  margin-right: 1em;
}

.c-timeline__desc {
  margin-left: 40px;
}

@media print, screen and (min-width: 600px) {
  .c-timeline__desc {
    margin-left: 48px;
  }
}

.c-timeline__desc p {
  margin-bottom: 1em;
}

.p-top-eyecatch {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  padding: 0;
}

.xo-slider-template-simple .swiper-slide img {
  height: 250px!important;
}

@media print, screen and (min-width: 600px) {
  .xo-slider-template-simple .swiper-slide img {
    height: 500px!important;
  }
}

@media screen and (min-width: 1025px) {
  .xo-slider-template-simple .swiper-slide img {
    height: 800px!important;
  }
}

.p-top-notice {
  background-color: #f5f5f5;
  max-width: 1280px;
  margin: 30px 4vw;
  padding: 4vw;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-main);
}

@media screen and (min-width: 1025px) {
  .p-top-notice {
    padding: 40px;
    margin: 60px 4vw;
  }
}

@media screen and (min-width: 1400px) {
  .p-top-notice {
    margin: 60px auto;
  }
}

.p-top-notice__item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #dcdcdc;
}

.p-top-notice__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.p-top-notice__ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: .4em;
  text-align: center;
}

@media print,
screen and (min-width: 600px) {
  .p-top-notice__ttl {
    font-size: 1.8rem;
    text-align: left;
  }
}

@media screen and (min-width: 1025px) {
  .p-top-notice__ttl {
    font-size: 2rem;
  }
}

.p-top-notice__txt {
  font-size: 1.3rem;
  line-height: 1.6;
}

@media screen and (min-width: 1025px) {
  .p-top-notice__txt {
    font-size: 1.6rem;
  }
}


@media screen and (min-width: 1025px) {
  .p-top-info__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media screen and (min-width: 1400px) {
  .p-top-info__inner {
    padding: 0;
  }
}

.p-top-news {
  padding: 50px 20px;
}

@media print, screen and (min-width: 600px) {
  .p-top-news {
    padding: 60px 40px;
  }
}

@media screen and (min-width: 1025px) {
  .p-top-news {
    padding: 100px 0;
  }
}

.p-top-news__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-top-news__btn {
  text-align: right;
  margin-top: 20px;
}

@media print,
screen and (min-width: 600px) {
  .p-top-news__btn {
    margin-top: 40px;
  }
}

.p-top-event {
  padding: 60px 20px 40px;
}

.p-top-event__inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media print,
screen and (min-width: 600px) {
  .p-top-event {
    padding: 60px 40px;
  }
}

@media screen and (min-width: 1025px) {

}

.p-top-event__btn {
  text-align: right;
  margin-top: 20px;
}

@media print,
screen and (min-width: 600px) {
  .p-top-event__btn {
    margin-top: 40px;
  }
}


.p-top-branch__item {
  background-color: var(--color-bg);
  padding: 6vw;
}

@media screen and (min-width: 1025px) {
  .p-top-branch__item {
    width: calc((100% - 80px) / 3);
    padding: 20px;
  }
}

.p-top-branch__item-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  .p-top-branch__item-img {
    height: 320px;
  }
}

@media screen and (min-width: 1400px) {
  .p-top-branch__item-img {
    height: 400px;
  }
}

.p-top-branch__item-img:hover figcaption {
  opacity: 1;
}

.p-top-branch__item-img:hover figcaption p {
  transition-delay: .1s;
}

.p-top-branch__item-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.p-top-branch__item-img figcaption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: var(--bg-page-ttl);
  transition: .3s ease-in;
  opacity: 0;
  text-align: center;
}

.p-top-branch__item-img figcaption p {
  font-size: 2.8rem;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease-in;
  font-weight: bold;
  line-height: 1.6;
}

.p-top-branch__item-ttl {
  text-align: center;
  margin: 16px 0 30px;
  font-size: 1.6rem;
  position: relative;
}

.p-top-branch__item-ttl::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%) rotate(45deg);
  background-color: var(--color-light);
  width: 8px;
  height: 8px;
}

@media print, screen and (min-width: 600px) {
  .p-top-branch__item-ttl {
    font-size: 1.7rem;
    margin: 16px 0 32px;
  }

  .p-top-branch__item-ttl::after {
    width: 10px;
    height: 10px;
    bottom: -18px;
  }
}

@media screen and (min-width: 1025px) {
  .p-top-branch__item-ttl {
    font-size: 1.8rem;
    margin: 30px 60px 36px;
  }

  .p-top-branch__item-ttl::after {
    bottom: -20px;
  }
}

.p-top-branch__item-txt {
  letter-spacing: .1em;
  font-size: 1.3rem;
  line-height: 1.6;
}

@media print,
screen and (min-width: 600px) {
  .p-top-branch__item-txt {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1025px) {
  .p-top-branch__item-txt {
    margin: 0 3% 10px;
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1400px) {
  .p-top-branch__item-txt {
    margin: 0 6% 16px;
  }
}


.p-page__content h3 {
  font-size: 1.6rem;
  letter-spacing: .04em;
  position: relative;
  padding: 16px 16px 16px 24px;
  margin-bottom: 20px;
  background-color: var(--color-main);
  color: white;
  border-radius: 5px;
}

@media print, screen and (min-width: 600px) {
  .p-page__content h3 {
    font-size: 2rem;
    padding: 16px 16px 16px 30px;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1025px) {
  .p-page__content h3 {
    font-size: 2.4rem;
    padding: 16px 16px 16px 40px;
    margin-bottom: 40px;
  }
}

.p-page__content h3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 3px;
  background-color: white;
}

@media print,
screen and (min-width: 600px) {
  .p-page__content h3::after {
    width: 16px;
    height: 4px;
  }
}

@media screen and (min-width: 1025px) {
  .p-page__content h3::after {
    width: 20px;
    height: 4px;
  }
}


.p-page__content h4 {
  background-color: var(--color-bg);
  font-size: 1.6rem;
  padding: .6em .8em;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: .08em;
  border-radius: 5px;
}

@media print,
screen and (min-width: 600px) {
  .p-page__content h4 {
    padding: .4em .8em;
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1025px) {
  .p-page__content h4 {
    font-size: 2rem;
    padding: .6em .8em;
  }
}

.p-page__content h5 {
  font-size: 1.6rem;
  margin-bottom: 40px;
  line-height: 1.4;
  position: relative;
}

@media print,
screen and (min-width: 600px) {
  .p-page__content h5 {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1025px) {
  .p-page__content h5 {
    font-size: 1.8rem;
  }
}

.p-page__content h5:after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #2b2b2b;
}

.p-page__content h6 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

@media print,
screen and (min-width: 600px) {
  .p-page__content h6 {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1025px) {
  .p-page__content h6 {
    font-size: 1.6rem;
  }
}

.p-page__content section {
  margin-bottom: 40px;
}

@media print,
screen and (min-width: 600px) {
  .p-page__content section {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1025px) {
  .p-page__content section {
    margin-bottom: 80px;
  }
}

.p-page__content section:last-of-type {
  margin-bottom: 0;
}

.p-page__content img {
  max-width: 100%;
  margin: 2em 0;
}

.p-page__content img.center {
  margin: 2em auto;
}

.p-page__content hr {
  border: 0;
  margin: 2em 0;
  border-top: 1px solid #dcdcdc;
}

@media screen and (min-width: 1025px) {
  .p-page__content hr {
    margin: 4em 0;
  }
}

.p-page__content a {
  color: #4682b4;
  border-bottom: 1px solid #4682b4;
  transition: ease-in .2s;
}

.p-page__content a:hover {
  color: #6f8083;
  border-bottom: 1px solid #6f8083;
}

.p-page__content a[href$=".pdf"]::after {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .3em;
}

.p-page__content a[href*=".doc"]::after,
.p-page__content a[href*=".docx"]::after {
  content: "\f1c2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .3em;
}

.p-page__content a[href*=".xlsx"]::after {
  content: "\f1c3";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .3em;
}

.p-page__content p strong {
  font-weight: bold;
}

.p-page__content p strong.red {
  color: #ba2636;
}

.p-page__content p + h3,
.p-page__content ul + h3,
.p-page__content dl + h3,
.p-page__content ol + h3,
.p-page__content div + h3,
.p-page__content table + h3,
.p-page__content img + h3,
.p-page__content figure + h3 {
  margin-top: 60px;
}

.p-page__content p + h4,
.p-page__content p + h5,
.p-page__content ul + h4,
.p-page__content ul + h5,
.p-page__content dl + h4,
.p-page__content dl + h5,
.p-page__content ol + h4,
.p-page__content ol + h5,
.p-page__content div + h4,
.p-page__content div + h5,
.p-page__content img + h4,
.p-page__content img + h5,
.p-page__content figure + h4,
.p-page__content figure + h5,
.p-page__content table + h4,
.p-page__content table + h5 {
  margin-top: 60px;
}

.p-page__content ol {
  margin: 0 0 1em 2.5em;
  padding: 0;
}

.p-page__content ol li {
  margin-bottom: .4em;
}

.p-page__content ol li a {
  border-bottom: 1px solid #2b2b2b;
  transition: ease-in .2s;
}




.p-page__footer {
  padding: 60px 0 0;
  margin: 0;
}

@media screen and (min-width: 1025px) {
  .p-page__footer {
    padding: 100px 0 0;
  }
}

.p-page__edit a {
  border: 1px solid var(--color-main);
  color: var(--color-main);
  padding: .8em 1em;
  font-size: 1.3rem;
  border-radius: 4px;
}

@media print,
screen and (min-width: 600px) {
  .p-page__edit a {
    font-size: 1.4rem;
  }
}

.p-page__edit a:hover {
  background-color: var(--color-bg);
}

.p-page-subnav {
  margin-bottom: 40px;
}

@media print,
screen and (min-width: 600px) {
  .p-page-subnav {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1025px) {
  .p-page-subnav {
    margin-bottom: 60px;
  }
}

.p-page-subnav__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}

@media print,
screen and (min-width: 600px) {
  .p-page-subnav__list {
    gap: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .p-page-subnav__list {
    gap: 40px;
  }
}

.p-page-subnav__list li {
  padding: 0 !important;
  margin: 0 !important;
}

@media screen and (min-width: 1025px) {
  .p-page-subnav__list li {
    width: calc(50% - 20px);
  }
}

.p-page-subnav__list li::before {
  display: none;
}

.p-page-subnav__list li::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1px solid #2b2b2b;
  border-top: 1px solid #2b2b2b;
  transform: rotate(45deg) translateY(-50%);
}

.p-page-subnav__list li a {
  border: 1px solid #dcdcdc !important;
  padding: 14px 20px;
  display: block;
  transition: .3s ease-in;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: #2b2b2b;
}

@media screen and (min-width: 1025px) {
  .p-page-subnav__list li a {
    padding: 40px 20px;
    font-size: 1.8rem;
  }
}

.p-page-subnav__list li a:hover {
  background-color: #f5f5f5;
  color: #2b2b2b;
  transition: .3s ease-in;
}

.p-page-nav {
  margin-bottom: 40px;
}

@media print,
screen and (min-width: 600px) {
  .p-page-nav {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1025px) {
  .p-page-nav {
    margin-bottom: 60px;
  }
}

.p-page-nav__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

@media print,
screen and (min-width: 600px) {
  .p-page-nav__list {
    justify-content: center;
    gap: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .p-page-nav__list {
    gap: 10px;
  }
}

.p-page-nav__list li {
  padding: 0 !important;
  margin: 0 !important;
}

.p-page-nav__list li::before {
  display: none;
}

.p-page-nav__list li a {
  border: 1px solid #dcdcdc !important;
  padding: 8px 16px;
  display: block;
  transition: .3s ease-in;
  font-weight: bold;
  font-size: 1.4rem;
  color: #2b2b2b;
}

@media screen and (min-width: 1025px) {
  .p-page-nav__list li a {
    padding: 10px 20px;
    font-size: 1.5rem;
  }
}

.p-page-nav__list li a:hover {
  background-color: #f5f5f5;
  color: #2b2b2b;
  transition: .3s ease-in;
}

.p-page-nav__list li a.current {
  background-color: #6f8083;
  color: white;
  pointer-events: none;
}

.p-page-anchor {
  margin-bottom: 40px;
}

@media print,
screen and (min-width: 600px) {
  .p-page-anchor {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1025px) {
  .p-page-anchor {
    margin-bottom: 80px;
  }
}

.p-page-anchor__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 !important;
}

.p-page-anchor__list li {
  padding: 0 !important;
  margin: 0 !important;
}

.p-page-anchor__list li::before {
  display: none;
}

.p-page-anchor__list li a {
  display: block;
  transition: .3s ease-in;
  font-weight: bold;
  font-size: 1.3rem;
  color: #2b2b2b;
  position: relative;
  border-bottom: none !important;
  background-color: #6f8083;
  color: white;
  padding: .4em 1.2em;
  border-radius: 20px;
}

@media screen and (min-width: 1025px) {
  .p-page-anchor__list li a {
    padding: .2em 1.2em;
    font-size: 1.5rem;
  }
}

.p-page-anchor__list li a:hover {
  background-color: #4682b4;
  transition: .3s ease-in;
  color: white;
}

.p-single-head {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 0;
}

@media screen and (min-width: 1025px) {
  .p-single-head {
    margin-bottom: 60px;
    padding-bottom: 5px;
  }
}

.p-single__title {
  font-weight: normal;
  font-size: 1.6rem;
  width: 100%;
  margin-bottom: 20px;
  word-wrap: break-word;
  /*
  font-family: "Lato", sans-serif;
*/
  font-weight: 600;
}

@media print,
screen and (min-width: 600px) {
  .p-single__title {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1025px) {
  .p-single__title {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
}

.p-single__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: .6em 0;
}

.p-single__posted {
  font-size: 1.3rem;
  margin-right: 1em;
}

@media print, screen and (min-width: 600px) {
  .p-single__posted {
    font-size: 1.4rem;
    margin-right: 2em;
  }
}

.p-single__cat {
  margin-right: 15px;
}

.p-single__cat a {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  border: 1px solid var(--color-main);
  background-color: var(--color-main);
  padding: .1em .6em 0;
  display: inline-block;
  border-radius: 2px;
}

.p-single__tag a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-main);
  background-color: white;
  border: 1px solid var(--color-main);
  padding: .1em .6em 0;
  display: inline-block;
  border-radius: 2px;
}

.p-single__tag a + a,
.p-single__cat a + a {
  margin-left: 7px;
}

@media print, screen and (min-width: 600px) {

  .p-single__tag a,
  .p-single__cat a {
    font-size: 1.2rem;
    padding: 0 1em;
  }
}

.p-single__content p {
  line-height: 2;
  margin-bottom: 1em;
  word-wrap: break-word;
}

@media print,
screen and (min-width: 600px) {
  .p-single__content p {
    line-height: 2.2;
  }
}

.p-single__content p strong {
  font-weight: bold;
}

.p-single__content p strong.red {
  color: #ba2636;
}

.p-single__content p a {
  border-bottom: 1px solid #2b2b2b;
  transition: ease-in .2s;
}

.p-single__content img {
  max-width: 100%;
  height: auto;
}

.p-single__content h1,
.p-single__content h2,
.p-single__content h3,
.p-single__content h4,
.p-single__content h5,
.p-single__content h6 {
  margin: 1em 0;
}

.p-single__content h1 {
  font-size: 1.7rem;
}

@media print,
screen and (min-width: 600px) {
  .p-single__content h1 {
    font-size: 2.4rem;
  }
}

.p-single__content h2 {
  font-size: 1.6rem;
}

@media print,
screen and (min-width: 600px) {
  .p-single__content h2 {
    font-size: 2.2rem;
  }
}

.p-single__content h3 {
  font-size: 1.5rem;
}

@media print,
screen and (min-width: 600px) {
  .p-single__content h3 {
    font-size: 2rem;
  }
}

.p-single__content a[target=_blank]::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .3em;
}

.p-single__content a[href$=".pdf"]::after {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .2em;
}

.p-single__content a[href*=".docx"]::after {
  content: "\f1c2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .2em;
}

.p-single__content a[href*=".xlsx"]::after {
  content: "\f1c3";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .3em;
}

.p-single__gallery {
  -moz-column-count: 2;
  column-count: 2;
  margin: 40px 0;
}

@media print,
screen and (min-width: 600px) {
  .p-single__gallery {
    -moz-column-count: 3;
    column-count: 3;
  }
}

.p-single__gallery-item {
  margin: 0 auto 15px;
  width: 100%;
}

.p-single__footer {
  padding: 60px 0 0;
}

@media screen and (min-width: 1025px) {
  .p-single__footer {
    padding: 80px 0 0;
  }
}

.p-single__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 1px;
  justify-content: center;
  margin-top: 60px !important;
}

@media print, screen and (min-width: 600px) {
  .p-single__nav {
    margin-top: 100px !important;
  }
}

.p-single__nav li:hover {
  transition: .3s ease-in;
}


.p-single__nav li.prev:hover {
  background-color: #f5f5f5;
}

.p-single__nav li.prev a {
  position: relative;
  padding: .6em 1.2em .6em 2em;
  background-color: var(--color-sub);
  border-radius: 25px 0 0 25px;
}

@media print,screen and (min-width: 600px) {
  .p-single__nav li.prev a {
    padding: .6em 1.4em .6em 2.8em;
  }
}

.p-single__nav li.prev a::before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: white;
}

@media print,screen and (min-width: 600px) {
  .p-single__nav li.prev a::before {
    left: 20px;
  }
}

.p-single__nav li.next:hover {
  background-color: #f5f5f5;
}

.p-single__nav li.next a {
  position: relative;
  padding: .6em 2em .6em 1.2em;
  background-color: var(--color-sub);
  border-radius: 0 25px 25px 0;
}

@media print, screen and (min-width: 600px) {
  .p-single__nav li.next a {
    padding: .6em 2.8em .6em 1.4em;
  }
}

.p-single__nav li.next a::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: white;
}

@media print, screen and (min-width: 600px) {
  .p-single__nav li.next a::before {
    right: 18px;
  }
}

.p-single__nav li a {
  display: inline-block;
  font-size: 1.3rem;
  letter-spacing: .12em;
  padding: .6em 1em;
  color: white;
  background-color: var(--color-main);
}

@media print, screen and (min-width: 600px) {
  .p-single__nav li a {
    font-size: 1.5rem;
    padding: .6em 2em;
  }
}

.p-single__nav li a:hover {
  background-color: var(--color-light);
}

.p-single__edit {
  padding-top: 60px;
}

.p-single__edit a {
  background-color: #9a5016;
  border: 1px solid #9a5016;
  color: white;
  padding: .6em 1em;
  font-size: 1.3rem;
}

@media print,
screen and (min-width: 600px) {
  .p-single__edit a {
    font-size: 1.4rem;
  }
}

.p-single__edit a:hover {
  background-color: white;
  color: #9a5016;
}

h4.p-archive__ttl {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: normal;
  color: #6f8083;
}

@media screen and (min-width: 1025px) {
  h4.p-archive__ttl {
    font-size: 2.6rem;
  }
}

.p-archive__line {
  height: 0;
  margin: 3em 0 4em;
  padding: 0;
  border: 0;
  border-top: 1px dashed #dcdcdc;
}

.p-archive-guide {
  margin-bottom: 40px;
}

@media print,
screen and (min-width: 600px) {
  .p-archive-guide {
    margin-bottom: 40px;
  }
}

.p-archive-guide select {
  width: calc(50% - 8px);
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: .4em 1em;
  box-sizing: border-box;
  font-size: 1.2rem;
  border: 1px solid #6f8083;
  box-shadow: none;
  background: url(/421/wp-content/themes/img/icon_caret-down.svg) no-repeat 94% center;
  background-size: 20px 20px;
  color: #6f8083;
  letter-spacing: .08em;
  transition: ease-in .2s;
  cursor: pointer;
}

@media print,
screen and (min-width: 600px) {
  .p-archive-guide select {
    width: 200px;
    font-size: 1.4rem;
  }
}

.p-archive-guide select:first-child {
  margin-right: 10px;
}

.p-archive-guide select:hover {
  background-color: #f5f5f5;
}

.p-404-head h3 {
  font-size: 4rem;
  text-align: center;
  margin: 20px;
}

@media print,
screen and (min-width: 600px) {
  .p-404-head h3 {
    font-size: 6rem;
  }
}

@media screen and (min-width: 1025px) {
  .p-404-head h3 {
    font-size: 8rem;
    margin: 20px;
  }
}

.p-404-content p {
  margin-bottom: 1em;
}

/* 固定ページ：北九大生はコチラ */
.p-student-flow {
  background-color: var(--color-bg);
  padding: 20px;
  margin: 40px 0;
  border-radius: 5px;
}

.p-student-flow__list dt {
  text-align: center;
  color: var(--color-main);
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: .8em;
}

.p-student-flow__list dt span {
  display: inline-block;
  background-color: var(--color-main);
  color: white;
  font-size: 1.8rem;
  line-height: 42px;
  width: 42px;
  height: 42px;
  border-radius: 21px;
  margin-bottom: 6px;
}

.p-student-flow__list dd {
  position: relative;
  margin-bottom: 50px;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
}

.p-student-flow__list dd:last-child {
  margin-bottom: 0;
}

.p-student-flow__list dd:last-child::after {
  display: none;
}

.p-student-flow__list dd::after {
  content: "\f0dd";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-light);
  font-size: 36px;
}

@media screen and (min-width: 1025px) {
  .p-student-flow {
    padding: 40px;
    margin: 40px 0;
  }

  .p-student-flow h4 {
    font-size: 2.4rem;
  }

  .p-student-flow__list dt {
    font-size: 2.2rem;
  }

  .p-student-flow__list dd {
    font-size: 1.6rem;
    margin-bottom: 60px;
    padding: 30px;
  }

  .p-student-flow__list dd::after {
    bottom: -70px;
    font-size: 80px;
  }
}

.p-access-transport {
  padding: 2.2em 1.6em 2em;
  margin: 3em 0 2em;
  background-color: #f5f5f5;
  border-radius: 8px;
  position: relative;
}

.p-access-transport h6 {
  margin: 0 0 1em;
  position: absolute;
  top: -10px;
  left: 20px;
}

.p-access-transport h6 span {
  font-size: 1.5rem;
  background-color: #6f8083;
  color: white;
  padding: 1em 1em;
  border-radius: 6px;
}

@media print,
screen and (min-width: 600px) {
  .p-access-transport h6 span {
    font-size: 1.6rem;
    padding: 1em 1.2em;
  }
}

.p-access-transport p {
  margin: 0;
  font-size: 1.3rem;
}

@media print,
screen and (min-width: 600px) {
  .p-access-transport p {
    font-size: 1.5rem;
  }
}

.p-access-transport img {
  margin: 1em 0 1em 0 !important;
}


.p-faq-area h3 {
  font-size: 1.6rem;
  letter-spacing: .08em;
  text-align: center;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 12px;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-area h3 {
    font-size: 2rem;
    padding-bottom: 50px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .p-faq-area h3 {
    font-size: 2.2rem;
    padding-bottom: 70px;
    margin-bottom: 30px;
  }
}

.p-faq-area h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 30px;
  background-color: #6f8083;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-area h3::after {
    height: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .p-faq-area h3::after {
    height: 60px;
  }
}

.p-faq-list dt {
  position: relative;
  padding: 16px 38px 16px 56px;
  background-color: #ebebeb;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  line-height: 1.6;
  font-size: 1.4rem;
  font-weight: bold;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dt {
    padding: 20px 60px 20px 64px;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1025px) {
  .p-faq-list dt {
    padding: 20px 70px 20px 74px;
  }
}

.p-faq-list dt::before {
  content: "Q";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background-color: #696969;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  font-size: 1.4rem;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dt::before {
    font-size: 1.5rem;
    left: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .p-faq-list dt::before {
    font-size: 1.8rem;
    left: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
}

.p-faq-list dt::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #696969;
  border-bottom: 2px solid #696969;
  color: white;
  transition: .3s;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dt::after {
    width: 10px;
    height: 10px;
    right: 30px;
  }
}

.p-faq-list dt.open::after {
  transform: translateY(-50%) rotate(225deg);
}

.p-faq-list dd {
  display: none;
  padding: 10px 0;
  margin-bottom: 10px;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dd {
    padding: 20px 0;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .p-faq-list dd {
    margin-bottom: 20px;
  }
}

.p-faq-list dd hr {
  border: 0;
  margin: 1em 0;
  border-top: 1px dotted #dcdcdc;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dd hr {
    margin: 1.6em 0;
  }
}

.p-faq-list dd a[target=_blank]::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .3em;
}

.p-faq-list dd p {
  margin-bottom: 1em;
  font-size: 1.3rem;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dd p {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.p-faq-list dd p:last-of-type {
  margin-bottom: 0;
}

.p-faq-list dd p span {
  display: block;
  color: white;
  width: 80px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1em;
}

.p-faq-list dd p span.honkan {
  background-color: #6f8083;
}

.p-faq-list dd p span.bunkan {
  background-color: #9a5016;
}

.p-press-top h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  position: relative;
}

@media print,
screen and (min-width: 600px) {
  .p-press-top h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.p-press-top__btn {
  text-align: right;
  margin-top: 20px;
}

@media print,
screen and (min-width: 600px) {
  .p-press-top__btn {
    margin-top: 40px;
  }
}

.p-gallery-top {
  margin-bottom: 60px;
}

@media screen and (min-width: 1025px) {
  .p-gallery-top {
    margin-bottom: 80px;
  }
}

.p-gallery-top h3 {
  font-size: 1.8rem;
  letter-spacing: .08em;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 8px;
  text-align: center;
}

@media print,
screen and (min-width: 600px) {
  .p-gallery-top h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1025px) {
  .p-gallery-top h3 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    letter-spacing: .04em;
    text-align: left;
  }
}

.p-gallery-top h3::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background-color: #2b2b2b;
}

@media print,
screen and (min-width: 600px) {
  .p-gallery-top h3::after {
    height: 50px;
    bottom: -50px;
  }
}

@media screen and (min-width: 1025px) {
  .p-gallery-top h3::after {
    bottom: -60px;
    height: 60px;
    left: 1.5em;
    transform: translateX(0);
  }
}

.p-gallery-area {
  background-color: #f5f5f5;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media print,
screen and (min-width: 600px) {
  .p-gallery-area {
    padding: 60px;
    gap: 40px;
  }
}

.p-gallery-area__open {
  position: relative;
  font-weight: bold;
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 600px) {
  .p-gallery-area__open {
    font-size: 1.4rem;
  }
}

.p-gallery-area__open span {
  display: inline-block;
  border: 1px solid #2b2b2b;
  background-color: white;
  padding: 0 .6em;
}

.p-gallery-area__title {
  font-weight: bold;
  margin: .8em 0 .4em;
}

@media print,
screen and (min-width: 600px) {
  .p-gallery-area__title {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1025px) {
  .p-gallery-area__title {
    font-size: 2rem;
    margin: .6em 0 .2em;
  }
}

.p-gallery-area__date {
  font-size: 1.3rem;
  font-weight: bold;
}

@media print,
screen and (min-width: 600px) {
  .p-gallery-area__date {
    font-size: 1.5rem;
  }
}

.p-gallery-area__time {
  font-size: 1.3rem;
  margin-top: .4em;
}

@media print,
screen and (min-width: 600px) {
  .p-gallery-area__time {
    font-size: 1.4rem;
  }
}

.post-password-form input[type=password] {
  padding: .2em .8em;
  background-color: white;
  border: 1px solid #6f8083;
  border-radius: 0;
  font-size: 1.6rem;
  -webkit-appearance: none;
}

.post-password-form input[type=password]:focus {
  outline: none;
  border: 1px solid #9a5016;
}

.post-password-form input[type=submit] {
  background-color: #6f8083;
  color: white;
  padding: .2em .8em;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  font-size: 1.6rem;
}

.post-password-form input[type=submit]::-webkit-search-decoration {
  display: none;
}

.post-password-form input[type=submit]:focus {
  outline-offset: -2px;
}

/* block editer */
.p-page__content p {
  margin: 1em 0;
}

ol[class="wp-block-list"],
ul[class="wp-block-list"] {
    list-style: auto;
    padding-left: 40px;
    margin: 16px 0;
}

[class="wp-block-list"] ul {
  list-style-type: circle;
}

[class="wp-block-list"] ul ul {
  list-style-type: square;
}

[class="wp-block-list"] ol,
[class="wp-block-list"] ul {
  padding-left: 40px;
}

.wp-block-image img {
  margin: 0;
}

.wp-block-button__link {
  color: #fff;
  background-color: #32373c;
  border-radius: 9999px;
  box-shadow: none;
  text-decoration: none;
  padding: calc(.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em;
}

.wp-block-button__link:hover {
  opacity: .8;
}

.wp-block-separator {
  margin: 2em 0;
}

.wp-element-caption {
  text-align: center;
  color: var(--font-gray);
}

/*
.fa-instagram:before {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.l-main .fa-instagram:before {
  background: #fff no-repeat;
  background: #fff no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
*/

/* GTranslate */
.gtranslate_wrapper {
  position: relative;
}

.gtranslate_wrapper::after {
  content: "\f078";
  font: var(--fa-font-solid);
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  border: 1px solid #ccc;
  z-index: 10;
  text-align: center;
}

.gtranslate_wrapper .gt_selector {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 8px;
  border: 1px solid #ccc;
  display: block;
  appearance: none;
  padding-right: 60px;
}

.gtranslate_wrapper .gt_selector:focus-visible {
  outline: 0;
  /* background: #efefef; */
}

@media screen and (min-width: 768px) {
  .gtranslate_wrapper::after {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .gtranslate_wrapper .gt_selector {
    height: 40px;
    line-height: 40px;
  }
}

/* Snow Monkey Forms button */
.smf-button-control {
  position: relative;
}

.smf-button-control::before {
  content: "";
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: .5px;
  height: 30px;
  background-color: white;
  z-index: 10;
}

.smf-button-control::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.smf-button-control:hover::after {
  color: #fff;
}

.smf-action .smf-button-control__control {
  background: none;
  border-radius: 0;
  display: inline-block;
  padding: 1em 4.4em 1em 1.6em;
  background-color: #dcdcdc;
  color: #2b2b2b !important;
  text-decoration: none;
  text-align: left;
  transition: .3s ease-in-out;
  font-size: 1.3rem;
  width: 100%;
}

@media print,
screen and (min-width: 600px) {
  .smf-action .smf-button-control__control {
    width: auto;
    font-size: 1.5rem;
    padding: .8em 4.4em .8em 1.6em;
  }
}

.smf-action .smf-button-control__control:visited,
.smf-action .smf-button-control__control:active {
  color: #2b2b2b !important;
}

.smf-action .smf-button-control__control:hover {
  background-color: #4682b4;
  color: white !important;
}

.smf-action .smf-button-control__control[data-action="back"] {
  padding: 1em 1.6em 1em 4.4em;
  text-align: right;
}

@media print,
screen and (min-width: 600px) {
  .smf-action .smf-button-control__control[data-action="back"] {
    padding: .8em 1.6em .8em 4.4em;
  }
}

.smf-button-control:has([data-action="back"])::before {
  right: auto;
  left: 48px;
}

.smf-button-control:has([data-action="back"])::after {
  right: auto;
  left: 18px;
  transform: rotate(180deg);
  margin-top: -16px;
}

/* XO Slider */
.xo-slider-template-default .swiper-slide {
  aspect-ratio: 1/1;
}

@media print,
screen and (min-width: 600px) {
  .xo-slider-template-default .swiper-slide {
    aspect-ratio: 3/2;
  }
}

@media print,
screen and (min-width: 1025px) {
  .xo-slider-template-default .swiper-slide {
    aspect-ratio: 16/9;
  }
}

/* iframe */
.iframe-container {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
}

/* トップページカレンダー */
.fc-button-group .fc-button {
  background-color: var(--color-sub);
  border: 0;
  border-radius: 2px!important;
}

.fc-button-group .fc-button .fc-icon {
  color: white;
}

.fc-button-group .fc-today-button {
  color: white;
  letter-spacing: .06em;
}

.fc-ltr .fc-basic-view .fc-sun {
  color: #D70035;
}

.fc-ltr .fc-basic-view .fc-sat {
  color: #006EB0;
}

/* 地域活動 */
.p-page-project h2 {
  border-left: 6px solid var(--color-sub);
  border-bottom: 2px solid var(--color-sub);
  padding-left: .6em;
}

.p-page-project img {
  width: 100%;
  height: auto;
  margin: 2em 0;
}

.p-page-project__sns {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.p-page-project__sns a img {
  height: 30px;
}


/* 固定ページ - 421Lab.とは */
.c-list-summary {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 2em 0!important;
}

.c-list-summary li {
  position: relative;
  background-color: var(--color-bg);
  border-radius: 20px;
  padding: 25px;
}

.c-list-summary__num {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-sub);
  border-radius: 50%;
  width: 58px;
  height: 58px;
  color: white;
  font-size: 26px;
  line-height: 58px;
  text-align: center;

}

.c-list-summary__title {
  position: relative;
  text-align: center;
  color: var(--color-main);
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: .08em;
  padding-bottom: .8em;
}

.c-list-summary__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-sub);
}

.c-list-summary__text {
  font-size: 1.4rem;
}

@media print, screen and (min-width: 600px) {
  .c-list-summary {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .c-list-summary li {
    width: calc(50% - 20px);
    padding: 40px;
    margin-top: 40px;
  }

  .c-list-summary__title {
    font-size: 2.0rem;
  }

  .c-list-summary__text {
    font-size: 1.5rem;
  }
}

.c-list-staff {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.c-list-staff li {
  text-align: center;
}

.c-list-staff__photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  margin: 10px 0!important;
  border-radius: 110px;
}

.c-list-staff__name {
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0!important;
}

.c-list-staff__name span {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}

.c-list-staff__position {
  color: var(--color-main);
  font-size: 1.4rem;
  margin: 0!important;
}

@media print, screen and (min-width: 600px) {
  .c-list-staff {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }

  .c-list-staff li {
    width: calc(50% - 20px);
  }

  .c-list-staff__photo {
    margin: 20px 0 10px!important;
  }

  .c-list-staff__name {
    font-size: 2.0rem;
  }

  .c-list-staff__name span {
    display: block;
    font-size: 1.6rem;
    font-weight: normal;
  }

  .c-list-staff__position {
    font-size: 1.5rem;
  }
}

/* google map */
.map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 下層ページ一覧 */
.c-list-subpage {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-list-subpage li {
  width: 100%;
  background-color: var(--color-bg);
  padding: 20px;
  border-radius: 5px;
}

.c-list-subpage li a {
  color: var(--font-color);
}

.c-list-subpage li a:hover {
  color: #4682b4;
}

.c-list-subpage__thum img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin: 0!important;
}

.c-list-subpage__thum:hover figcaption {
  opacity: 0.8;
}

.c-list-subpage__thum:hover figcaption p {
  transition-delay: .1s;
}

.c-list-subpage__thum figure {
  position: relative;
}

.c-list-subpage__thum figcaption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 200px;
  background: var(--color-dark);
  transition: .3s ease-in;
  opacity: 0;
  text-align: center;
  border-radius: 5px;
}

.c-list-subpage__thum figcaption p {
  font-size: 1.5rem;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease-in;
  font-weight: bold;
  line-height: 1.6;
  margin: 0!important;
  white-space: nowrap;
}

.c-list-subpage__title {
  font-weight: bold;
  margin: 0.6em 0!important;
  font-size: 1.5rem;
  letter-spacing: .06em;
}

.c-list-subpage__text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0!important;
}

.c-list-subpage__link {
  text-align: right;
  margin-top: 1em;
}

.c-list-subpage__link span {
  background-color: var(--color-main);
  color: white;
  font-size: 1.3rem;
  letter-spacing: .1em;
  padding: .6em 1em;
  border-radius: 2px;
}

@media print, screen and (min-width: 600px) {
  .c-list-subpage {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }

  .c-list-subpage li {
    width: calc(50% - 20px);
  }

  .c-list-subpage__title {
    font-size: 1.8rem;
    margin: 0.4em 0!important;
  }

  .c-list-subpage__link {
    margin-top: 1em;
  }

  .c-list-subpage__link span {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1025px) {

  .c-list-subpage li {
    background-color: white;
    padding: 0;
  }

  .c-list-subpage__link {
    text-align: right;
  }
}

/* 固定ページ-事業メニュー */
.p-menu-dl dt {
  position: relative;
  background-color: var(--color-bg);
  border-radius: 20px 20px 0 0;
  padding: 68px 10px 20px 10px;
  text-align: center;
  border-top: 2px solid var(--color-light);
  border-left: 2px solid var(--color-light);
  border-right: 2px solid var(--color-light);
  font-weight: bold;
  letter-spacing: .08rem;
  font-size: 1.6rem;
}

.p-menu-dl dt span {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: normal;
  font-size: 2.2rem;
  background-color: var(--color-main);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  line-height: 42px;
}

.p-menu-dl dd {
  padding: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-light);
  border-left: 2px solid var(--color-light);
  border-right: 2px solid var(--color-light);
  border-radius: 0 0 20px 20px;
}

.p-menu-dl dd .subarea {
  border: 1px dotted var(--color-main);
  padding: 15px;
  margin-top: 1em;
  border-radius: 4px;
  background-color: var(--color-bg);
}

.p-menu-dl dd ol {
  margin: 0 0 0 2em;
}

.p-menu-dl dd ol li {
  margin: 0;
}

@media print, screen and (min-width: 600px) {
  .p-menu-dl dt {
    font-size: 2.0rem;
    padding: 90px 10px 20px 10px;
  }

  .p-menu-dl dt span {
    top: 26px;
    font-size: 2.6rem;
    width: 52px;
    height: 52px;
    line-height: 52px;
  }

  .p-menu-dl dd {
    padding: 30px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .p-menu-dl dt {
    padding: 100px 20px 30px 20px;
    font-size: 2.2rem;
  }

  .p-menu-dl dt span {
    top: 26px;
    font-size: 3.0rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }

  .p-menu-dl dd {
    padding: 40px;
  }
}

/* 固定ページ - 広報誌 */
.c-list-magazine {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-list-magazine li {
  width: 100%;
  background-color: var(--color-bg);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.c-list-magazine li a,
.c-list-magazine li a:hover {
  border: none;
  cursor: zoom-in;
}

.c-list-magazine li a[href$=".pdf"]::after {
  display: none;
}

.c-list-magazine li a img {
  width: 70%;
  margin: 0 auto;
}

.c-list-magazine li p {
  font-size: 1.5rem;
  margin: 0;
  font-weight: bold;
  text-align: center;
}

@media print, screen and (min-width: 600px) {
  .c-list-magazine {
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
  }

  .c-list-magazine li {
    width: calc(33.33% - 20px);
  }
}

/* 画像マージン設定 */
.img-space {
  margin: 2em auto 3em!important;
}

/* 質問 */
.c-list-faq dt {
  position: relative;
  padding: 16px 38px 16px 0;
  letter-spacing: 0.08em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-border);
}

.c-list-faq dt:last-of-type,
.c-list-faq dd:last-of-type {
  border-bottom: 1px solid var(--color-border);
}

@media print, screen and (min-width: 600px) {
  .c-list-faq dt {
    padding: 30px 60px 30px 0;
  }
}

.c-list-faq dt span {
  display: inline-block;
}

.c-list-faq dt span,
.c-list-faq dd span {
  min-width: 30px;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
}

@media print, screen and (min-width: 600px) {
  .c-list-faq dt span,
  .c-list-faq dd span {
    min-width: 40px;
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 1025px) {
  .c-list-faq dt,
  .c-list-faq dd {
    font-size: 1.6rem;
  }

  .c-list-faq dt span,
  .c-list-faq dd span {
    min-width: 40px;
    font-size: 2.6rem;
  }
}

.c-list-faq dt::before,
.c-list-faq dt::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-main);
}

.c-list-faq dt::before {
  right: 14px;
  width: 12px;
  height: 2px;
}

.c-list-faq dt::after { 
  right: 19px;
  width: 2px;
  height: 12px;
}

@media print, screen and (min-width: 600px) {
  .c-list-faq dt::before {
    width: 16px;
    height: 2px;
  }
  
  .c-list-faq dt::after { 
    right: 21px;
    width: 2px;
    height: 16px;
  }
}

.c-list-faq dt.open::after {
  display: none;
}

.c-list-faq dd {
  display: none;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
}

@media print, screen and (min-width: 600px) {
  .c-list-faq dd {
    padding: 30px 0;
  }
}

.c-list-faq dd span {
  display: block;
  color: var(--color-main);
}

/* トップページ note */
.p-top-topics {
  padding: 60px 20px 40px;
}

.p-top-topics_inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}

@media print, screen and (min-width: 600px) {
  .p-top-topics {
    padding: 60px 40px 40px;
  }
  
  .p-top-topics_inner {
    gap: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .p-top-topics {
    padding: 100px 100px 40px;
  }
  
  .p-top-topics_inner {
    gap: 40px;
  }
}

.c-list-topics {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-list-topics li {
  background-color: var(--color-bg);
  border-radius: 5px;
}

@media print, screen and (min-width: 600px) {
  .c-list-topics {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .c-list-topics li {
    width: calc(50% - 20px);
    border-radius: 0;
  }
}

@media screen and (min-width: 1025px) {
  .c-list-topics li {
    width: calc(25% - 40px);
  }
}

.c-card-topics a {
  display: flex;
  flex-direction: row;
  padding: 16px;
  gap: 16px;
}

.c-card-topics__thumbnail {
  width: 100px;
  margin: 0;
  padding: 0;
}

.c-card-topics__thumbnail img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.c-card-topics__contents {
  background-color: var(--color-bg);
  border-radius: 0 0 5px 5px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 116px);
}

.c-card-topics__title {
  font-size: 15px;
  line-height: 1.6;
}

.c-card-topics__text {
  font-size: 12px;
  display: none;
}

.c-card-topics__date {
  font-size: 11px;
  
}

@media print, screen and (min-width: 600px) {
  .c-card-topics a {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .c-card-topics__contents {
    padding: 20px 30px 30px;
    width: 100%;
  }

  .c-card-topics__thumbnail {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .c-card-topics__thumbnail img {
    width: 100%;
  }

  .c-card-topics__title {
    font-size: 16px;
    line-height: 1.8;
  }

  .c-card-topics__text {
    display: block;
    font-size: 13px;
  }

  .c-card-topics__date {
    font-size: 12px;
    margin-top: auto;
  }
}

/* EDS */
.p-page-esd h3 {
  background-color: var(--color-green-main);
}

.p-page-esd h4 {
  background-color: var(--color-green-bg);
}

.p-page-esd .c-list-magazine li {
  background-color: var(--color-green-bg);
}

.p-page-esd__target ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.p-page-esd__target ul li {
  color: var(--color-green-main);
  border: 2px solid var(--color-green-main);
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
}

.p-page-esd__capacity p span {
  color: var(--color-green-main);
  font-weight: bold;
  padding: 10px;
  font-size: 18px;
}

@media print, screen and (min-width: 600px) {
  .p-page-esd__target ul {
    gap: 20px;
  }

  .p-page-esd__target ul li {
    padding: 6px 14px;
    font-size: 22px;
  }

  .p-page-esd__capacity p span {
    font-size: 28px;
  }
}

/* スライドショーブロック */

.c-list-slideshow .prev-arrow,
.c-list-slideshow .next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.25));
  z-index: 1;
}

.c-list-slideshow .prev-arrow {
  transform: translateY(-50%) rotate(180deg);
  left: -12px;
}

.c-list-slideshow .next-arrow {
  right: -12px;
}

.c-list-slideshow .prev-arrow::before,
.c-list-slideshow .next-arrow::before{
    position:absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-main);
    border-top: 2px solid var(--color-main);
    top: 0;
    bottom: 0;
    left: -6px;
    right: 0;
    margin:auto;
    transform:rotate(45deg);
}

@media print, screen and (min-width: 600px) {
  .c-list-slideshow .prev-arrow,
  .c-list-slideshow .next-arrow {
    width: 54px;
    height: 54px;
  }

  .c-list-slideshow .prev-arrow {
    left: -32px;
  }
  
  .c-list-slideshow .next-arrow {
    right: -32px;
  }
}

.c-list-slideshow .slick-dots {
  bottom: -30px;
}

.c-list-slideshow .slick-dots li button:before {
  font-size: 10px;
}

@media print, screen and (min-width: 600px) {
  .c-list-slideshow .slick-dots {
    bottom: -36px;
  }
}