@charset "UTF-8";
/*
Theme Name:WEN
Theme URI:
Description:
Version: 999
Author:
Author URI:
*/
/*　reset css　*/
#wpadminbar {
  bottom: 0;
  top: unset;
}

html {
  scroll-padding-top: 130px;
  scroll-behavior: smooth;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th {
  vertical-align: top;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

#printarea {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}

figure {
  margin: 0;
}

/*　reset css end　*/
/* 全体設定 */
body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 2;
  color: #5d5d5d;
}

a {
  text-decoration: none;
  color: inherit;
  transition-duration: 0.3s;
}
a:hover {
  color: #b9b9b9;
}

.clearboth {
  clear: both;
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
  margin-top: 4px;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  font-size: clamp(28px, 4.9vw, 64px);
  font-weight: bold;
}

h2 {
  font-size: clamp(28px, 4.9vw, 64px);
}

h3 {
  font-size: clamp(24px, 3.1vw, 40px);
}

h4 {
  font-size: 14px;
}

.center {
  text-align: center;
}

.j_center {
  justify-content: center !important;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 10%;
  }
}

.item_wrap {
  display: flex;
}

.no_drag {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.text_link {
  transition: 0.3s;
  color: blue;
}

.hov_border,
.text_link {
  display: inline-block;
  font-size: clamp(14px, 1.2vw, 16px);
}
.hov_border span,
.text_link span {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.hov_border span::after,
.text_link span::after {
  content: "";
  height: 2px;
}
.hov_border span:hover::after,
.text_link span:hover::after {
  content: "";
  animation: border 0.3s ease;
  background: #707070;
}

.hov_border02 {
  display: inline-block;
}
.hov_border02 span {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.hov_border02 span::after {
  content: "";
  height: 2px;
}
.hov_border02:hover span::after {
  content: "";
  animation: border 0.3s ease;
  background: #707070;
  height: 2px;
}

@keyframes border {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
.but_arrow a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.67em;
  border: 1px solid;
  border-radius: 0.21em;
  max-width: 13.3em;
  height: 2.67em;
  max-width: 13.3em;
  margin: auto;
}
.but_arrow a::after {
  content: "";
  background: url(images/arrow.svg) 0 0/contain no-repeat;
  width: 1.67em;
  aspect-ratio: 1;
  transition-duration: 0.3s;
}
.but_arrow a:hover {
  background: #b9b9b9;
  color: #fff;
  opacity: 1;
}
.but_arrow a:hover::after {
  background: url(images/arrow02.svg) 0 0/contain no-repeat;
  transition-duration: 0.3s;
}

.but_arrow02 a {
  border: 1px solid #707070;
  border-radius: 2em;
  display: block;
  height: 44px;
  overflow: hidden;
  position: relative;
  transition: color 0.3s;
  max-width: 200px;
  margin: auto;
}
.but_arrow02 a:before, .but_arrow02 a::after {
  border-radius: 50%;
  content: "";
  display: block;
  left: 2em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  aspect-ratio: 1;
}
.but_arrow02 a:before {
  background-color: #000;
  transition: transform 0.3s, background-color 0s 0.3s;
}
.but_arrow02 a:after {
  background-color: #000;
  transition: background-color 0s 0.3s;
}
.but_arrow02 a span {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: end;
  letter-spacing: 0.16px;
  position: relative;
  z-index: 1;
  margin-right: 2em;
}
.but_arrow02 a.mar_32 span {
  margin-right: 1.33em;
}
.but_arrow02 a.mar_32:before, .but_arrow02 a.mar_32::after {
  left: 1.33em;
}
@media (hover: hover) and (pointer: fine) {
  .but_arrow02 a:hover {
    color: #fff;
    transition: color 0.2s 0.1s, border-width 0s 0.2s;
  }
  .but_arrow02 a:hover::before {
    background-color: #707070;
    transform: translateY(-50%) scale(100);
    transition: transform 1s;
  }
  .but_arrow02 a:hover:after {
    transition: background-color 0.2s 0.1s, left 0s 0.2s;
  }
}

.num,
.num02 {
  counter-reset: count 0;
}
.num li,
.num02 li {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.num li span,
.num02 li span {
  width: calc(100% - 3em);
}

.num > li::before {
  counter-increment: count 1;
  content: "(" counter(count) ")";
}

.num02 > li::before {
  counter-increment: count 1;
  content: counter(count) ".";
}
.num02 .num {
  margin-left: 3.8em;
}

.w_730 {
  width: clamp(235px, 73vw, 730px);
}

/* 全体設定end */
.tab_wrap .tab {
  display: flex;
  flex-wrap: wrap;
}
.tab_wrap .tab ul li a {
  display: block;
  background: #ddd;
  margin: 0 2px;
  padding: 10px 20px;
}
.tab_wrap .tab ul li.active a {
  background: #fff;
}
.tab_wrap .area {
  display: none;
  opacity: 0;
  background: #fff;
}
.tab_wrap .area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeInTrigger {
  opacity: 0;
  overflow: hidden;
}

/*　main　*/
main {
  position: relative;
  overflow: hidden;
}

#main #breadcrumb {
  background-color: #f0f0f0;
  padding-left: 10px;
  font-size: 12px;
  width: calc(100% - 14px);
  margin-left: 2px;
  margin-bottom: 10px;
  margin-top: 3px;
}

/*　main end　*/
#mametisiki-icon-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
#mametisiki-icon-wrap img.icon1 {
  width: 25px;
}
#mametisiki-icon-wrap img.icon2 {
  width: 37px;
}
#mametisiki-icon-wrap img.icon3 {
  width: 37px;
}
#mametisiki-icon-wrap img.icon4 {
  width: 46px;
}
#mametisiki-icon-wrap img.icon5 {
  width: 27px;
}

/**************************************************************
header
**************************************************************/
#g-nav ul {
  display: flex;
  line-height: 1.5;
}
#g-nav ul.nav {
  position: relative;
}
#g-nav ul.nav > li span {
  padding: 0 1em;
}
#g-nav ul li {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
#g-nav ul li::after {
  content: "";
  height: 2px;
}
@media screen and (min-width: 1025px) {
  #g-nav ul li:hover::after {
    content: "";
    animation: border 0.3s ease;
    background: #707070;
  }
  @keyframes border {
    0% {
      opacity: 0;
      width: 0;
    }
    100% {
      opacity: 1;
      width: 100%;
    }
  }
}
#g-nav ul .title {
  cursor: pointer;
}
#g-nav ul .sp_but {
  display: none;
}
#g-nav ul .sp_contact {
  display: none;
}
@media screen and (max-width: 768px) {
  #g-nav ul .sp_contact {
    display: block;
  }
}
#g-nav ul .hover .sub_box {
  background: #fff;
  position: absolute;
  top: min(2.5vw, 44px);
  left: calc(0px - clamp(67px, 19vw, 360px));
  width: 100vw;
  z-index: 1;
  display: none;
  animation: appear 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #g-nav ul .hover .sub_box {
    position: unset;
    width: 100%;
  }
}
#g-nav ul .hover .sub-menu {
  display: flex;
  gap: 0.5em min(6.25vw, 120px);
  margin-left: clamp(67px, 19vw, 360px);
  background: #fff;
  padding: clamp(28px, 2.1vw, 40px) clamp(28px, 4vw, 40px);
}
#g-nav ul .hover .sub-menu li {
  transition: 0.3s;
}
#g-nav ul .hover .sub-menu li a,
#g-nav ul .hover .sub-menu li span {
  display: block;
  padding: 11px 0;
  font-size: clamp(14px, 0.84vw, 16px);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #g-nav ul .hover .sub-menu {
    flex-direction: column;
    margin: unset;
    padding: unset;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  #g-nav ul .hover:hover .sub_box {
    display: flex;
    animation: appear 0.3s ease;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
    top: min(2.1vw, 40px);
  }
  100% {
    opacity: 1;
    top: min(2.5vw, 44px);
  }
}

.last_nav {
  display: flex;
  gap: min(1.7vw, 25px);
  align-items: center;
}
.last_nav.sparea {
  display: none !important;
}
.last_nav .nav_item_access {
  font-size: 13px;
  display: flex;
  gap: 0.5em;
}
.last_nav .nav_item_access::before {
  content: "";
  background: url(../image/icon_access.svg) 0 0/contain no-repeat;
  width: 16px;
  height: 20px;
}

@media screen and (max-width: 1024px) {
  .nav_logo {
    display: block;
    text-align: center;
    margin: 0 0 70px;
    width: 70%;
  }
  .nav_logo a {
    width: min(64vw, 300px);
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .nav_logo {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .last_nav.pcarea {
    display: none !important;
  }
  .last_nav.sparea {
    display: flex !important;
    flex-direction: column;
    gap: 50px;
    width: 70%;
  }
  .last_nav.sparea li {
    border-right: unset !important;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .last_nav.sparea {
    width: 100%;
    padding: 0 10%;
  }
  .last_nav.sparea li {
    width: 100%;
  }
  .last_nav.sparea li a {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  #g-nav {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #g-nav.panelactive {
    right: 0;
  }
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 90px 0;
    box-sizing: border-box;
  }
  #g-nav .nav {
    z-index: 999;
    width: 70%;
    padding: 0 10% 90px;
    box-sizing: border-box;
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  #g-nav .nav {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #g-nav .nav > li {
    border-bottom: 1px dotted #cccccc;
  }
  #g-nav .nav li {
    display: flex;
    gap: 0.4em;
    padding: 10px 0;
    border-right: unset !important;
  }
  #g-nav .nav .sp_but {
    display: block;
  }
  #g-nav .nav .pc_but {
    display: none;
  }
  #g-nav .nav .hover {
    flex-direction: column;
  }
  #g-nav .nav .hover .sub-menu li {
    background: #dde2ea;
  }
  #g-nav .nav .hover .sub-menu li a {
    padding: 3px 2em;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  #g-nav .nav .hover .sub-menu li:hover {
    background: #feebcc;
  }
}
@media screen and (max-width: 1024px) {
  .openbtn1 {
    width: 30px;
    height: 25px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: clamp(26px, 5vw, 46px);
    right: 15px;
    z-index: 1000;
    display: block;
  }
  .openbtn1 span {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #707070;
    transition: all 0.5s;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 0;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 10px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 20px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 5px;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 17px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
  }
}
.home header::before {
  content: "";
  background: #707070;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
}
.home header .openbtn1 span {
  background-color: #fff;
}
.home header .logo a {
  background: url(images/h_logo_w.svg) 0 0/contain no-repeat;
}
.home header.scroll::before {
  content: unset;
}
.home header.scroll a,
.home header.scroll span {
  color: inherit;
}
.home header.scroll .openbtn1 span {
  background-color: #707070;
}
.home header.scroll .logo a {
  background: url(images/logo.svg) 0 0/contain no-repeat;
}
@media screen and (min-width: 1025px) {
  .home header a,
  .home header span {
    color: #fff;
  }
  .home header:hover::before {
    content: unset;
  }
  .home header:hover a,
  .home header:hover span {
    color: inherit;
  }
  .home header:hover .logo a {
    background: url(images/logo.svg) 0 0/contain no-repeat;
  }
}

header {
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 99;
  box-sizing: border-box;
  font-size: min(1.3vw, 24px);
  top: 0;
  transition: 0.3s;
  padding: 10px 0;
}
header.scroll {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  header {
    font-size: clamp(16px, 1.3vw, 24px);
  }
}
@media screen and (min-width: 1025px) {
  header:hover {
    background: #fff;
  }
}
@media screen and (max-width: 1024px) {
  header {
    padding: 10px 15px;
  }
}
header .logo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(67px, 19vw, 360px);
}
header .logo a {
  background: url(images/logo.svg) 0 0/contain no-repeat;
  width: clamp(70px, 12vw, 120px);
  aspect-ratio: 1/0.858;
}

/**************************************************************
footer
**************************************************************/
footer {
  background: #486a91;
  color: #fff;
  padding: clamp(70px, 12.5vw, 160px) 0;
}
footer p,
footer ul {
  line-height: 1.15;
}
footer .item_wrap {
  gap: min(8vw, 100px);
  justify-content: space-between;
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
footer .item_wrap ul {
  line-height: 2.25;
}
footer .item_wrap ul li:not(:last-of-type) {
  margin-bottom: 1em;
}
footer .item_wrap .in_list p {
  margin-bottom: 1em;
}
footer .item_wrap .in_list ul {
  list-style: disc;
  padding-left: 1.4rem;
}
footer .item_wrap .f_logo {
  width: clamp(89px, 11vw, 198px);
}
footer .f_adress {
  text-align: center;
}
footer .f_adress h2 {
  font-size: clamp(25px, 2.8vw, 36px);
  margin-bottom: 0.9em;
}
footer .f_adress h2 span {
  display: block;
  font-size: 50%;
}
footer .f_adress .adress_text {
  margin-bottom: clamp(28px, 3.1vw, 40px);
}
footer .f_adress p:not(:last-of-type) {
  margin-bottom: 1em;
}
footer .f_adress ul {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}
footer .f_adress ul li {
  border-left: 2px solid;
}
footer .f_adress ul li:last-of-type {
  border-right: 2px solid;
}
footer .f_adress ul li a {
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  footer ul,
  footer .item_wrap {
    flex-direction: column;
  }
  footer .item_wrap .f_logo {
    margin: auto;
  }
  footer .f_adress ul li {
    border-right: 2px solid;
  }
  footer .f_adress ul li:not(:last-of-type) {
    margin-bottom: 1em;
  }
}

/**************************************************************
top
**************************************************************/
.top h2 {
  font-weight: bold;
}
.top section {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.top section.back_color {
  background: #dde2ea;
  padding: clamp(70px, 12.5vw, 160px) 0;
}
.top .mv {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.top .mv img {
  width: 100vw;
}
.top .sec01 h2 {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.top .sec01 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.top .sec01 .flex .but_arrow02 {
  width: min(100%, 200px);
}
@media screen and (max-width: 768px) {
  .top .sec01 .flex {
    flex-direction: column;
  }
}
.top .sec01 .item_wrap {
  margin-bottom: clamp(56px, 6.2vw, 80px);
  gap: 3.3em;
  justify-content: center;
}
.top .sec01 .item_wrap .left {
  width: calc(100% - (min(52.8vw, 686px) + 3.3em));
}
.top .sec01 .item_wrap .right {
  width: min(52.8vw, 680px);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 2.5;
  margin-top: clamp(24px, 2.6vw, 34px);
}
@media screen and (max-width: 767px) {
  .top .sec01 .item_wrap {
    flex-wrap: wrap;
  }
  .top .sec01 .item_wrap .left,
  .top .sec01 .item_wrap .right {
    width: 100%;
  }
  .top .sec01 .item_wrap .right {
    margin-top: unset;
  }
}
.top .sec02 .item_wrap {
  margin-bottom: clamp(56px, 6.2vw, 80px);
  gap: 3.3em;
}
.top .sec02 .item_wrap ul li:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.top .sec02 .item_wrap ul h3 {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 3;
}
.top .sec02 .item_wrap ul .day {
  display: block;
}
.top .sec02 .item_wrap a:hover .hov_border span {
  color: #b9b9b9;
}
.top .sec02 .item_wrap a:hover .hov_border span::after {
  content: "";
  animation: border 0.3s ease;
  background: #707070;
  height: 2px;
}
.top .sec02 .item_wrap .hov_border {
  padding-top: clamp(17px, 1.8vw, 24px);
}
@media screen and (max-width: 767px) {
  .top .sec02 .item_wrap {
    flex-direction: column;
  }
}
.top .sec03 .item_wrap {
  gap: min(clamp(45px, 4vw, 65px));
  justify-content: space-between;
}
.top .sec03 .item_wrap .item {
  width: calc((100% - clamp(45px, 4vw, 65px)) / 3);
  display: flex;
  gap: 1em;
  flex-direction: column;
}
.top .sec03 .item_wrap .item h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  margin: min(8vw, 80px) 0;
}
.top .sec03 .item_wrap .item .img_inn {
  aspect-ratio: 387/323;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
}
.top .sec03 .item_wrap .item .img_inn img {
  width: 85.5%;
}
.top .sec03 .item_wrap .item .hov_border {
  margin-top: auto;
  width: 5em;
}
.top .sec03 .item_wrap .item:hover {
  color: #707070;
}
.top .sec03 .item_wrap .item:hover .hov_border span {
  color: #b9b9b9;
}
.top .sec03 .item_wrap .item:hover .hov_border span::after {
  content: "";
  animation: border 0.3s ease;
  background: #707070;
  height: 2px;
}
@media screen and (max-width: 900px) {
  .top .sec03 .item_wrap {
    flex-direction: column;
    gap: clamp(56px, 6.2vw, 80px);
  }
  .top .sec03 .item_wrap .item {
    width: 100%;
  }
}
.top .sec05 .title_box {
  margin-bottom: clamp(70px, 12.5vw, 160px);
  text-align: center;
}
.top .sec05 .title_box h2 {
  margin-bottom: 1em;
}
.top .sec05 .item_wrap {
  display: flex;
  gap: clamp(56px, 6.2vw, 80px) clamp(44px, 4.9vw, 64px);
  flex-wrap: wrap;
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.top .sec05 .item_wrap .item {
  width: calc((100% - clamp(44px, 4.9vw, 64px) * 2) / 3);
  border: 1px solid #ccc;
  padding: 15px;
  box-sizing: border-box;
}
.top .sec05 .item_wrap .item figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(28px, 3.1vw, 40px);
}
.top .sec05 .item_wrap .item img:not(.noimg) {
  width: 100%;
  aspect-ratio: 380/242;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.top .sec05 .item_wrap .item .day {
  display: block;
  margin-bottom: clamp(17px, 1.8vw, 24px);
}
.top .sec05 .item_wrap .item .icon_cat {
  margin-bottom: clamp(39px, 4.4vw, 56px);
  display: flex;
  gap: 1em;
  align-items: center;
  min-height: 50px;
  flex-wrap: wrap;
}
.top .sec05 .item_wrap .item .icon_cat img {
  aspect-ratio: unset;
}
.top .sec05 .item_wrap .item .cat_wrap {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.top .sec05 .item_wrap .item .cat_wrap .cat {
  width: unset;
}
.top .sec05 .item_wrap .item h3 {
  font-size: clamp(17px, 1.8vw, 24px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.top .sec05 .item_wrap .item a {
  display: flex;
  flex-direction: column;
}
.top .sec05 .item_wrap .item a:hover {
  color: #707070;
}
.top .sec05 .item_wrap .item a:hover .hov_border span {
  color: #b9b9b9;
}
.top .sec05 .item_wrap .item a:hover .hov_border span::after {
  content: "";
  animation: border 0.3s ease;
  background: #707070;
  height: 2px;
}
.top .sec05 .item_wrap .item .hov_border {
  margin-top: auto;
  padding-top: 1em;
  width: 5em;
}
@media screen and (max-width: 768px) {
  .top .sec05 .item_wrap .item {
    width: 100%;
  }
  .top .sec05 .item_wrap .item img:not(.noimg) {
    height: unset;
  }
}
.top .sec06 {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.top .sec06 h2 {
  margin-bottom: clamp(70px, 12.5vw, 160px);
  text-align: center;
}
.top .sec06 .hov_border span:hover {
  color: #b9b9b9;
}
.top .sec06 .item_wrap {
  gap: clamp(56px, 6.2vw, 80px);
  justify-content: space-between;
}
.top .sec06 .item_wrap.rev {
  flex-direction: row-reverse;
}
.top .sec06 .item_wrap:not(:last-of-type) {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.top .sec06 .item_wrap figure {
  width: min(40vw, 560px);
}
.top .sec06 .item_wrap .text_box {
  width: calc(100% - (clamp(56px, 6.2vw, 80px) + min(40vw, 560px)));
}
.top .sec06 .item_wrap .text_box h3 {
  margin-bottom: 2em;
  font-weight: bold;
}
.top .sec06 .item_wrap .text_box ul {
  font-size: clamp(16px, 1.8vw, 24px);
  margin-bottom: 2.67em;
  line-height: 1.2;
}
.top .sec06 .item_wrap .text_box ul li:not(:last-of-type) {
  margin-bottom: 1em;
}
.top .sec06 .item_wrap .text_box p {
  margin-bottom: 4em;
}
@media screen and (max-width: 767px) {
  .top .sec06 .item_wrap, .top .sec06 .item_wrap.rev {
    flex-direction: column;
  }
  .top .sec06 .item_wrap figure,
  .top .sec06 .item_wrap .text_box {
    width: 100%;
  }
  .top .sec06 .item_wrap figure img {
    width: 100vw;
  }
}

.info_link_wrap .item_wrap {
  gap: clamp(45px, 4vw, 65px);
  justify-content: center;
}
.info_link_wrap .item_wrap li {
  width: calc((100% - clamp(45px, 4vw, 65px) * 2) / 3);
}
.info_link_wrap .item_wrap li a {
  font-size: clamp(17px, 1.8vw, 24px);
  width: 100%;
  height: 6.67em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #dbd2cb;
  border-radius: 10px;
  box-sizing: border-box;
}
.info_link_wrap .item_wrap li a:hover {
  opacity: 1;
  background: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .info_link_wrap .item_wrap {
    flex-direction: column;
  }
  .info_link_wrap .item_wrap li {
    width: 100%;
  }
}

.info_link_wrap02 .item_wrap {
  gap: clamp(45px, 4vw, 65px);
  justify-content: center;
}
.info_link_wrap02 .item_wrap li {
  width: calc((100% - clamp(45px, 4vw, 65px) * 2) / 3);
}
.info_link_wrap02 .item_wrap li a {
  overflow: hidden;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f8f7f2;
  border-radius: 10px;
  box-sizing: border-box;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6.6875em;
}
.info_link_wrap02 .item_wrap li a span {
  position: relative;
  z-index: 1;
}
.info_link_wrap02 .item_wrap li a::before, .info_link_wrap02 .item_wrap li a::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 500%;
  transition: all 0.5s ease-in-out;
  transform: rotate(45deg) translateX(0) translateY(0);
  background: #dbd2cb;
}
.info_link_wrap02 .item_wrap li a:before {
  top: 0;
  left: calc(-130% + min(2.7vw, 50px));
}
.info_link_wrap02 .item_wrap li a:after {
  top: -400%;
  right: calc(-130% + min(2.7vw, 50px));
}
.info_link_wrap02 .item_wrap li a:hover {
  opacity: 1;
  color: #fff;
}
.info_link_wrap02 .item_wrap li a:hover:before {
  transform: rotate(45deg) translateX(0) translateY(-50%);
}
.info_link_wrap02 .item_wrap li a:hover:after {
  transform: rotate(45deg) translateX(0) translateY(50%);
}
@media screen and (max-width: 850px) {
  .info_link_wrap02 .item_wrap li a:before {
    left: calc(-152% + min(2.7vw, 50px));
  }
  .info_link_wrap02 .item_wrap li a::after {
    right: calc(-152% + min(2.7vw, 50px));
  }
}
@media screen and (max-width: 767px) {
  .info_link_wrap02 .item_wrap {
    flex-direction: column;
  }
  .info_link_wrap02 .item_wrap li {
    width: 100%;
  }
  .info_link_wrap02 .item_wrap li a:before {
    left: calc(-106% + min(8vw, 50px));
  }
  .info_link_wrap02 .item_wrap li a:after {
    right: calc(-106% + min(8vw, 50px));
  }
}
@media screen and (max-width: 540px) {
  .info_link_wrap02 .item_wrap li a:before {
    left: calc(-118% + min(5vw, 50px));
  }
  .info_link_wrap02 .item_wrap li a:after {
    right: calc(-118% + min(5vw, 50px));
  }
}
@media screen and (max-width: 430px) {
  .info_link_wrap02 .item_wrap li a:before {
    left: calc(-130% + min(11.7vw, 50px));
  }
  .info_link_wrap02 .item_wrap li a:after {
    right: calc(-130% + min(11.7vw, 50px));
  }
}

.under_link_wrap02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(44px, 4.9vw, 64px);
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .under_link_wrap02 {
    width: unset;
  }
}
.under_link_wrap02.col1 {
  display: block;
}
.under_link_wrap02.col1 a {
  width: min(100%, 400px);
  margin: 0 auto;
}
.under_link_wrap02 a {
  overflow: hidden;
  background: #dde2ea;
  border-radius: 10px;
  width: calc((100% - clamp(44px, 4.9vw, 64px) * 2) / 3);
  position: relative;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.458em;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .under_link_wrap02 a {
    width: 100%;
  }
}
.under_link_wrap02 a span {
  position: relative;
  z-index: 1;
}
.under_link_wrap02 a::before, .under_link_wrap02 a::after {
  content: "";
  background: #96a6bc;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  transition: all 0.3s ease-in-out;
}
.under_link_wrap02 a::before {
  -webkit-clip-path: polygon(0 60%, 0% 100%, 100% 100%);
          clip-path: polygon(0 60%, 0% 100%, 100% 100%);
  left: 0;
}
.under_link_wrap02 a::after {
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 40%);
          clip-path: polygon(100% 0, 0 0, 100% 40%);
  right: 0;
}
.under_link_wrap02 a:hover {
  color: #fff;
  font-weight: bold;
}
.under_link_wrap02 a:hover::before, .under_link_wrap02 a:hover::after {
  width: 110%;
}
.under_link_wrap02 a:hover::before {
  -webkit-clip-path: polygon(0 0%, 0% 100%, 100% 100%);
          clip-path: polygon(0 0%, 0% 100%, 100% 100%);
}
.under_link_wrap02 a:hover::after {
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.under_link_wrap02 a.current {
  background: #96a6bc;
  color: #fff;
  font-weight: bold;
}
.under_link_wrap02.top_under {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}

/**************************************************************
page
**************************************************************/
.page_wrap,
.category_page,
.single_page {
  padding: clamp(67px, 6.5vw, 120px) 0 min(17vw, 320px);
}
@media screen and (max-width: 768px) {
  .page_wrap,
  .category_page,
  .single_page {
    padding-top: 0;
  }
}
.page_wrap .img_no_title,
.category_page .img_no_title,
.single_page .img_no_title {
  padding: clamp(70px, 12.5vw, 160px) 0;
}
.page_wrap .img_no_title02,
.category_page .img_no_title02,
.single_page .img_no_title02 {
  padding: clamp(70px, 12.5vw, 160px) 0 clamp(70px, 9.3vw, 120px);
}
.page_wrap .under_link_wrap,
.category_page .under_link_wrap,
.single_page .under_link_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(56px, 6.2vw, 80px) clamp(70px, 12.5vw, 160px);
  margin: 0 auto;
}
.page_wrap .under_link_wrap a,
.category_page .under_link_wrap a,
.single_page .under_link_wrap a {
  background: #dbd2cb;
  border-radius: 10px;
  width: calc((100% - clamp(70px, 12.5vw, 160px)) / 2);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6.67em;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_wrap .under_link_wrap a,
  .category_page .under_link_wrap a,
  .single_page .under_link_wrap a {
    width: 100%;
  }
}
.page_wrap .under_link_wrap a:hover,
.category_page .under_link_wrap a:hover,
.single_page .under_link_wrap a:hover {
  background: #f8f7f2;
}
.page_wrap .under_link_wrap a.current,
.category_page .under_link_wrap a.current,
.single_page .under_link_wrap a.current {
  background: #f8f7f2;
  color: #b9b9b9;
}

.page_wrap {
  /**************************************************************
    出版・冊子、フォーラム、オープンスクール、他
    **************************************************************/
}
.page_wrap.temp_page .page_mv {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.page_wrap.temp_page .page_mv img {
  width: calc(min(100%, 640px) * 0.8);
}
.page_wrap.temp_page.en_page {
  padding: 0 0 50px;
}
.page_wrap.temp_page .en_link_wrap {
  width: min(100%, 832px);
}
@media screen and (max-width: 768px) {
  .page_wrap.temp_page .en_link_wrap {
    flex-direction: column;
    align-items: center;
  }
}
.page_wrap.temp_page .en_link_wrap a {
  width: calc((100% - clamp(44px, 4.9vw, 64px) * 2) / 2);
}
@media screen and (max-width: 768px) {
  .page_wrap.temp_page .en_link_wrap a {
    width: 100%;
  }
}
.page_wrap.temp_page .page_temp_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-top: clamp(56px, 6.2vw, 80px);
}
.page_wrap.temp_page .page_temp_flex .but_arrow02 {
  width: min(100%, 200px);
}
.page_wrap .page_mv {
  display: flex;
  justify-content: center;
  padding: clamp(28px, 3.1vw, 40px) 10px;
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.page_wrap .page_mv.full_img {
  padding: unset;
}
.page_wrap .page_mv.full_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 1920/560;
}
@media screen and (max-width: 768px) {
  .page_wrap .page_mv.full_img img {
    aspect-ratio: 1920/1080;
  }
}
.page_wrap h1 span {
  display: block;
  font-size: 50%;
  margin-top: 0.66em;
  font-weight: normal;
}
.page_wrap.temp_page h1 span {
  font-size: 37.5%;
}
.page_wrap.temp_page .content p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.page_wrap.temp_page .content .item_wrap {
  gap: min(12vw, 152px);
  justify-content: space-between;
  flex-wrap: wrap;
}
.page_wrap.temp_page .content .item_wrap .left {
  width: clamp(220px, 25vw, 320px);
}
.page_wrap.temp_page .content .item_wrap .left figure {
  margin-top: clamp(56px, 6.2vw, 80px);
}
.page_wrap.temp_page .content .item_wrap .left figcaption {
  margin-top: clamp(34px, 3.7vw, 48px);
}
.page_wrap.temp_page .content .item_wrap .right {
  width: calc(100% - (clamp(220px, 25vw, 320px) + min(12vw, 152px)));
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .page_wrap.temp_page .content .item_wrap .left,
  .page_wrap.temp_page .content .item_wrap .right {
    width: 100%;
  }
}
.page_wrap.temp_page .content .map {
  margin-top: clamp(70px, 12.5vw, 160px);
}
.page_wrap.temp_page .content .map iframe {
  width: 100%;
  height: clamp(250px, 50vw, 400px);
}
.page_wrap.temp_page .content .under_link_wrap02 {
  margin-top: clamp(70px, 12.5vw, 160px);
}
.page_wrap.temp_page.access_page h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: 2em;
}
.page_wrap.temp_page.constitution_page h2 {
  font-size: clamp(28px, 3.1vw, 40px);
  margin-bottom: 1.6em;
}
.page_wrap.temp_page.constitution_page h2:not(:first-of-type) {
  margin-top: 3em;
}
.page_wrap.temp_page.constitution_page h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: 1.25em;
}
.page_wrap.temp_page.constitution_page .item:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap.temp_page.constitution_page .pdf {
  border: 1px solid;
}
.page_wrap.temp_page.constitution_page .pdf a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5em;
}
.page_wrap.project_page {
  padding: clamp(70px, 9.3vw, 120px) 0 0;
}
.page_wrap.project_page .page_mv {
  margin-bottom: unset;
}
.page_wrap.project_page .content {
  padding: clamp(70px, 12.5vw, 160px) 0 min(17vw, 320px);
}
.page_wrap.project_page h1 {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.page_wrap.project_page .text {
  margin-bottom: clamp(70px, 9.3vw, 120px);
  line-height: 3;
}
.page_wrap.project_page .text p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.page_wrap.project_page .link_wrap {
  gap: clamp(56px, 6.2vw, 80px) clamp(70px, 12.5vw, 160px);
  justify-content: space-between;
  flex-wrap: wrap;
}
.page_wrap.project_page .link_wrap li {
  width: calc((100% - clamp(70px, 12.5vw, 160px)) / 2);
}
@media screen and (max-width: 540px) {
  .page_wrap.project_page .link_wrap li {
    width: 100%;
  }
}
.page_wrap.project_page .link_wrap li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #e8e8e8;
  border: 1px solid;
  box-sizing: border-box;
  border-radius: 10px;
  height: 7em;
}
.page_wrap.project_page .link_wrap li a span {
  font-size: 66.7%;
}
.page_wrap.project_page .link_wrap li a:hover {
  opacity: 1;
  background: #fff;
  color: inherit;
}
.page_wrap.project_page .img_wrap {
  display: flex;
  gap: clamp(56px, 6.2vw, 80px);
  flex-wrap: wrap;
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.page_wrap.project_page .img_wrap li {
  width: calc((100% - clamp(56px, 6.2vw, 80px) * 3) / 4);
}
.page_wrap.project_page .img_wrap img {
  width: 100%;
  aspect-ratio: 260/343;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.page_wrap.project_page .img_wrap figcaption {
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.5;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .page_wrap.project_page .img_wrap li {
    width: calc((100% - clamp(56px, 6.2vw, 80px)) / 2);
  }
}
@media screen and (max-width: 540px) {
  .page_wrap.project_page .img_wrap li {
    width: 100%;
  }
}
.page_wrap.info_page .item {
  line-height: 3;
}
.page_wrap.info_page .item p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.page_wrap.info_page .first_text {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.page_wrap.info_page .tab_wrap .tab {
  display: flex;
  justify-content: center;
  gap: clamp(56px, 6.2vw, 80px);
  width: 79.7%;
  margin: auto;
}
.page_wrap.info_page .tab_wrap .tab li {
  width: calc((100% - clamp(56px, 6.2vw, 80px) * 2) / 3);
  text-align: center;
  box-sizing: border-box;
  border-bottom: unset;
  border-radius: 10px 10px 0 0;
  background: #dbd2cb;
}
.page_wrap.info_page .tab_wrap .tab li:hover {
  background: #f8f7f2;
  color: #b9b9b9;
}
.page_wrap.info_page .tab_wrap .tab li.active {
  background: #f8f7f2;
  color: #b9b9b9;
}
.page_wrap.info_page .tab_wrap .tab li a {
  height: clamp(100px, 9.3vw, 120px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 clamp(17px, 1.8vw, 24px);
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .page_wrap.info_page .tab_wrap .tab {
    gap: min(4vw, 40px);
  }
  .page_wrap.info_page .tab_wrap .tab li {
    width: calc((100% - min(4vw, 40px) * 2) / 3);
  }
}
@media screen and (max-width: 767px) {
  .page_wrap.info_page .tab_wrap .tab {
    width: 100%;
  }
  .page_wrap.info_page .tab_wrap .tab li {
    font-size: 12px;
  }
}
.page_wrap.info_page .tab_wrap .tab_box {
  border-top: 1px solid #417e45;
  padding-top: clamp(56px, 6.2vw, 80px);
}
.page_wrap.info_page .tab_wrap .tab_box .area .item:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap.info_page .tab_wrap .tab_box h2 {
  font-size: clamp(17px, 1.8vw, 24px);
  margin-bottom: 2em;
}
.page_wrap.info_page .tab_wrap .tab_box h2::before {
  content: "●";
}
.page_wrap.info_page .tab_wrap .tab_box a {
  word-break: break-all;
}
.page_wrap.report_materials_page h2 {
  font-size: clamp(22px, 2.4vw, 32px);
}
.page_wrap.report_materials_page section {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.page_wrap.report_materials_page .sec02 p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.page_wrap.report_materials_page .sec02 p span {
  text-indent: 1.4em;
  display: block;
}
.page_wrap.report_materials_page .sec03 h2 {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap.report_materials_page .sec03 .text_list {
  list-style: disc;
  margin: 0 0 clamp(28px, 3.1vw, 40px) 1em;
}
.page_wrap.report_materials_page .sec03 .text_list span {
  margin-bottom: clamp(28px, 3.1vw, 40px);
  display: block;
}
.page_wrap.report_materials_page .sec03 .text_list a {
  text-indent: -1em;
  display: block;
}
.page_wrap.report_materials_page .sec03 .text_list li:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap.report_materials_page .sec03 .img_list {
  display: flex;
  gap: clamp(44px, 4.9vw, 63px);
  flex-wrap: wrap;
}
.page_wrap.report_materials_page .sec03 .img_list li {
  width: calc((100% - clamp(44px, 4.9vw, 63px) * 2) / 3);
}
@media screen and (max-width: 767px) {
  .page_wrap.report_materials_page .sec03 .img_list li {
    width: 100%;
  }
  .page_wrap.report_materials_page .sec03 .img_list li img {
    width: 100vw;
  }
}
.page_wrap.custompage .publications_mv {
  text-align: center;
}
.page_wrap.custompage h2 {
  text-align: center;
}
.page_wrap.custompage .item_wrap {
  gap: 28px clamp(70px, 12.5vw, 160px);
  flex-wrap: wrap;
}
.page_wrap.custompage .item_wrap .item {
  width: calc((100% - clamp(70px, 12.5vw, 160px)) / 2);
}
@media screen and (max-width: 860px) {
  .page_wrap.custompage .item_wrap .item {
    width: 100%;
  }
}
.page_wrap.custompage .first_wrap {
  margin-bottom: clamp(70px, 12.5vw, 160px);
  line-height: 3;
}
.page_wrap.custompage .blog_wrap h2 {
  font-size: clamp(28px, 3.1vw, 40px);
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap.custompage .blog_wrap h3 {
  font-size: clamp(17px, 1.8vw, 24px);
}
.page_wrap.custompage .blog_wrap ul {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.page_wrap.custompage .blog_wrap ul.fo_op .left p {
  font-size: clamp(17px, 1.8vw, 24px);
  margin-bottom: 0.75em;
}
.page_wrap.custompage .blog_wrap ul.publications_wrap {
  margin: 0 auto clamp(70px, 9.3vw, 120px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px clamp(70px, 12.5vw, 160px);
}
@media screen and (max-width: 800px) {
  .page_wrap.custompage .blog_wrap ul.publications_wrap {
    grid-template-columns: 1fr;
  }
}
.page_wrap.custompage .blog_wrap ul.publications_wrap h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  text-align: left;
}
.page_wrap.custompage .blog_wrap ul.publications_wrap figure {
  text-align: center;
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.page_wrap.custompage .blog_wrap ul.publications_wrap figure img {
  aspect-ratio: 560/795;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_wrap.custompage .blog_wrap ul li:not(:last-of-type) {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.page_wrap.custompage .blog_wrap ul .co_text {
  margin-bottom: clamp(44px, 4.9vw, 64px);
}
.page_wrap.custompage .blog_wrap ul .linkwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px clamp(56px, 6.2vw, 80px);
}
.page_wrap.custompage .blog_wrap ul .linkwrap li {
  margin-bottom: unset;
  width: calc((100% - 20px) / 2);
}
.page_wrap.custompage .blog_wrap ul .linkwrap li a {
  text-align: center;
  border: 1px solid #707070;
  border-radius: 10px;
  height: 3.5em;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_wrap.custompage .blog_wrap ul .linkwrap li a:hover {
  background: #707070;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .page_wrap.custompage .blog_wrap ul .linkwrap {
    flex-direction: column;
  }
  .page_wrap.custompage .blog_wrap ul .linkwrap li {
    width: 100%;
  }
}
.page_wrap.custompage .blog_wrap .hov_border {
  font-size: 16px;
}
.page_wrap.custompage .karenda,
.page_wrap.custompage .link_wrap {
  width: 75%;
}
@media screen and (max-width: 540px) {
  .page_wrap.custompage .karenda,
  .page_wrap.custompage .link_wrap {
    width: 90%;
  }
}
.page_wrap.custompage .karenda {
  margin: clamp(70px, 12.5vw, 160px) auto clamp(70px, 9.3vw, 120px);
}
.page_wrap.custompage .karenda h2 {
  font-size: clamp(28px, 3.1vw, 40px);
  margin-bottom: 1em;
}
.page_wrap.custompage .karenda .fc-left h2 {
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page_wrap.custompage .karenda .fc-left h2 {
    margin-bottom: 1em;
  }
}
.page_wrap.custompage .karenda .fc-event-container a {
  pointer-events: none;
}
.page_wrap.custompage.archive_page .first_wrap {
  margin-bottom: clamp(53px, 5.8vw, 76px);
}
.page_wrap.custompage.archive_page .first_wrap p {
  font-size: clamp(17px, 1.8vw, 24px);
}
.page_wrap.custompage.archive_page .box:not(:last-of-type) {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.page_wrap .accordion_content h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_wrap .accordion_content h4 br {
    display: none;
  }
}
.page_wrap .accordion_content .box {
  background: #dde2ea;
  padding: clamp(28px, 3.1vw, 40px);
  display: none;
}
.page_wrap .accordion_content .box.open {
  display: block;
}
.page_wrap .accordion_content .item_box {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.page_wrap .accordion_content .item_box h3 {
  font-size: clamp(16px, 1.8vw, 24px);
  cursor: pointer;
  position: relative;
  max-width: 560px;
  margin: 0 auto clamp(28px, 3.1vw, 40px) 0;
  display: flex;
}
.page_wrap .accordion_content .item_box h3 .title_span {
  width: calc(100% - (clamp(21px, 2.3vw, 30px) + 1em));
}
.page_wrap .accordion_content .item_box h3 span:not(.title_span) {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: clamp(21px, 2.3vw, 30px);
  height: clamp(21px, 2.3vw, 30px);
  transition: all 0.4s;
  border: 1px solid #707070;
  border-radius: 15px;
}
.page_wrap .accordion_content .item_box h3 span:not(.title_span)::after, .page_wrap .accordion_content .item_box h3 span:not(.title_span)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 0px;
  border-bottom: 2px solid #707070;
  transition: all 0.4s ease-out;
}
.page_wrap .accordion_content .item_box h3 span:not(.title_span)::after {
  rotate: 90deg;
}
.page_wrap .accordion_content .item_box h3.close span:not(.title_span) {
  rotate: 180deg;
  background: #486a91;
  border: 1px solid #486a91;
}
.page_wrap .accordion_content .item_box h3.close span:not(.title_span)::after, .page_wrap .accordion_content .item_box h3.close span:not(.title_span)::before {
  border-bottom: 2px solid #fff;
}
.page_wrap .accordion_content .item_box h3.close span:not(.title_span)::after {
  opacity: 0;
  rotate: 180;
}
.page_wrap .accordion_content .item_box .sub_title {
  max-width: unset;
}
.page_wrap .accordion_content .item_box .sub_term_box:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap .accordion_content .item_box .text_item_wrap:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap .accordion_content .item_box .text_item_wrap .text_item {
  line-height: 1.4;
  display: flex;
  gap: 10px clamp(28px, 3.1vw, 40px);
}
.page_wrap .accordion_content .item_box .text_item_wrap .text_item h4 {
  font-size: clamp(14px, 1.2vw, 16px);
}
.page_wrap .accordion_content .item_box .text_item_wrap .text_item:not(:first-of-type) {
  margin-top: clamp(56px, 6.2vw, 80px);
}
.page_wrap .accordion_content .item_box .text_item_wrap .text_item .left {
  width: 9em;
  flex-shrink: 0;
}
.page_wrap .accordion_content .item_box .text_item_wrap .text_item .right .text {
  display: flex;
  align-items: baseline;
}
.page_wrap .accordion_content .item_box .text_item_wrap .text_item .right .text:not(:last-of-type) {
  margin-bottom: clamp(22px, 2.4vw, 32px);
}
.page_wrap .accordion_content .item_box .text_item_wrap .text_item .right .text p::before {
  content: "：";
}
.page_wrap .accordion_content .item_box .text_item_wrap .text_item.is-hidden {
  display: none;
  transition: all 0.4s ease-out;
}
@media screen and (max-width: 767px) {
  .page_wrap .accordion_content .item_box .text_item_wrap .text_item .text {
    flex-direction: column;
  }
  .page_wrap .accordion_content .item_box .text_item_wrap .text_item .text p:before {
    content: unset !important;
  }
}
@media screen and (max-width: 767px) {
  .page_wrap .accordion_content .item_box .text_item_wrap .text_item {
    flex-direction: column;
  }
  .page_wrap .accordion_content .item_box .text_item_wrap .text_item .left.right {
    width: 100%;
  }
}
.page_wrap .accordion_content .item_box .text_item_wrap .more {
  margin-left: calc(clamp(28px, 3.1vw, 40px) + 9em);
  margin-top: clamp(28px, 3.1vw, 40px);
}
.page_wrap .accordion_content .item_box .text_item_wrap .more.left_non {
  margin-left: unset;
}
.page_wrap .accordion_content .item_box .text_item_wrap .more p {
  display: inline-block;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page_wrap .accordion_content .item_box .text_item_wrap .more {
    margin-left: unset;
  }
}
.page_wrap .accordion_content .item_box.long_box h3 {
  max-width: 810px;
  margin: 0 auto clamp(28px, 3.1vw, 40px) 0;
}
@media screen and (max-width: 767px) {
  .page_wrap .table_box {
    overflow-x: scroll;
  }
}
.page_wrap .ac_table {
  width: 100%;
  background: #dae3f3;
}
@media screen and (max-width: 767px) {
  .page_wrap .ac_table {
    width: 1000px;
  }
}
.page_wrap .ac_table:nth-of-type(2n) {
  background: #ededed;
}
.page_wrap .ac_table,
.page_wrap .ac_table th,
.page_wrap .ac_table td {
  border: 2px solid #fff;
}
.page_wrap .ac_table:not(:last-of-type) th,
.page_wrap .ac_table:not(:last-of-type) td,
.page_wrap .ac_table tr:not(:last-of-type) th,
.page_wrap .ac_table tr:not(:last-of-type) td {
  border-bottom: unset;
}
.page_wrap .ac_table:not(:last-of-type) {
  border-bottom: unset;
}
.page_wrap .ac_table th,
.page_wrap .ac_table td {
  padding: 1em;
}
.page_wrap .ac_table .first {
  width: 3em;
  vertical-align: middle;
}
.page_wrap .ac_table th:not(.first) {
  width: 6em;
}
.page_wrap.page_pro_under .title_wrap, .page_wrap.page_member .title_wrap {
  padding: clamp(70px, 12.5vw, 160px) 0 clamp(70px, 9.3vw, 120px);
}
.page_wrap.page_pro_under .title_wrap h1, .page_wrap.page_member .title_wrap h1 {
  margin-bottom: clamp(70px, 9.3vw, 120px);
  font-weight: normal;
  font-size: clamp(28px, 4.9vw, 56px);
}
.page_wrap.activity_report_page .first_wrap {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.page_wrap.activity_report_page h1 .span01 {
  display: inline-block;
}
.page_wrap.activity_report_page ul {
  font-size: clamp(14px, 2.4vw, 32px);
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}
.page_wrap.activity_report_page ul figure {
  width: min(100%, 432px);
}
.page_wrap.activity_report_page ul figure img {
  aspect-ratio: 1/0.861;
}
.page_wrap.activity_report_page ul::after {
  content: "";
  width: 16px;
  height: auto;
  background: #e8e8e8;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.page_wrap.activity_report_page ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(24vw, 240px);
  height: calc(80px + clamp(14px, 2.4vw, 32px) * 1.7);
  position: relative;
}
.page_wrap.activity_report_page ul li:nth-of-type(odd) .fadeInTrigger.fadeIn {
  animation: right_anime 1.5s ease forwards;
}
.page_wrap.activity_report_page ul li:nth-of-type(odd) .img {
  margin-left: min(6.2vw, 80px);
}
.page_wrap.activity_report_page ul li:nth-of-type(odd).img_doub figure:nth-of-type(2) {
  margin-left: calc(min(32vw, 320px) - clamp(56px, 6.2vw, 80px));
}
@media screen and (max-width: 1500px) {
  .page_wrap.activity_report_page ul li:nth-of-type(odd).img_doub figure:nth-of-type(2) {
    position: absolute;
    right: 0;
  }
}
.page_wrap.activity_report_page ul li:nth-of-type(odd) p {
  text-align: right;
}
.page_wrap.activity_report_page ul li:nth-of-type(even) {
  flex-direction: row-reverse;
}
.page_wrap.activity_report_page ul li:nth-of-type(even) .img {
  margin-right: min(6.2vw, 80px);
}
.page_wrap.activity_report_page ul li:nth-of-type(even) .img figure {
  margin-left: auto;
}
.page_wrap.activity_report_page ul li:nth-of-type(even).img_doub figure:nth-of-type(2) {
  margin-right: calc(min(32vw, 320px) - clamp(56px, 6.2vw, 80px));
}
.page_wrap.activity_report_page ul li:nth-of-type(even) .fadeInTrigger.fadeIn {
  animation: left_anime 1.5s ease forwards;
}
.page_wrap.activity_report_page ul li p {
  width: 22em;
}
.page_wrap.activity_report_page ul li .disc {
  background: #adadad;
  width: clamp(34px, 3.7vw, 48px);
  height: clamp(34px, 3.7vw, 48px);
  border-radius: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_wrap.activity_report_page ul li.size_442 figure {
  width: min(100%, 442px);
}
.page_wrap.activity_report_page ul li.size_442 figure img {
  aspect-ratio: 1/0.842;
}
.page_wrap.activity_report_page ul li.size_773 figure {
  width: min(100%, 773px);
}
.page_wrap.activity_report_page ul li.size_773 figure img {
  aspect-ratio: 1/0.6;
}
.page_wrap.activity_report_page ul li.bottom .fadeInTrigger.fadeIn {
  animation: bottom_anime 1.5s ease forwards;
}
.page_wrap.activity_report_page ul li .non {
  width: 50%;
}
.page_wrap.activity_report_page ul li .img {
  width: calc(50% - min(6.2vw, 80px));
}
.page_wrap.activity_report_page ul li .img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.page_wrap.activity_report_page ul li.img_doub .img {
  position: relative;
}
.page_wrap.activity_report_page ul li.img_doub .img figure {
  width: min(100%, 320px);
}
.page_wrap.activity_report_page ul li.img_doub .img figure:nth-of-type(2) {
  margin-top: clamp(-80px, -5.3vw, -10px);
  animation-delay: 0.3s;
}
.page_wrap.activity_report_page ul li.img_doub .img figure img {
  aspect-ratio: 1/0.75;
}
@media screen and (max-width: 1100px) {
  .page_wrap.activity_report_page ul li.img_doub .img figure {
    width: min(80%, 320px);
  }
}
@media screen and (max-width: 768px) {
  .page_wrap.activity_report_page ul {
    line-height: 2.2;
  }
  .page_wrap.activity_report_page ul li:nth-of-type(even) .img {
    margin-right: unset;
  }
  .page_wrap.activity_report_page ul li:nth-of-type(odd) .img {
    margin-left: unset;
  }
  .page_wrap.activity_report_page ul li.size_773 figure img,
  .page_wrap.activity_report_page ul li .size_442 figure img {
    aspect-ratio: 1/0.861;
  }
  .page_wrap.activity_report_page ul li .img {
    width: 50%;
  }
}
@keyframes left_anime {
  0% {
    opacity: 0;
    transform: translateX(-20px) skew(2deg, 2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) skew(0deg, 0deg);
  }
}
@keyframes right_anime {
  0% {
    opacity: 0;
    transform: translateX(20px) skew(-2deg, -2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) skew(0deg, 0deg);
  }
}
@keyframes bottom_anime {
  0% {
    opacity: 0;
    transform: translateY(20px) skew(-2deg, -2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) skew(0deg, 0deg);
  }
}
.page_wrap.radiation_research_page .first_title {
  padding: clamp(70px, 12.5vw, 160px) 0 clamp(56px, 6.2vw, 80px);
}
.page_wrap.radiation_research_page .first_title h1 {
  margin-bottom: clamp(70px, 9.3vw, 120px);
  font-size: clamp(28px, 4.9vw, 56px);
}
.page_wrap.radiation_research_page .first_title p {
  line-height: 3;
}
.page_wrap.radiation_research_page .first_title figure {
  text-align: center;
  margin-top: 20px;
}
.page_wrap.radiation_research_page h2 {
  font-size: inherit;
  text-align: left;
  margin-bottom: 8px;
}
.page_wrap.radiation_research_page .radiation_research_list {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.page_wrap.radiation_research_page li:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap.event_arc {
  margin-top: clamp(70px, 12.5vw, 160px);
}
.page_wrap.event_arc .item_wrap .text {
  display: flex;
  gap: 1em;
  align-items: baseline;
}
.page_wrap.event_arc .item_wrap .text h4 {
  font-size: clamp(14px, 1.2vw, 16px);
}
.page_wrap.event_arc .item_wrap .text h4 {
  width: 3em;
}
.page_wrap.event_arc .item_wrap .text:not(:last-of-type) {
  margin-bottom: clamp(22px, 2.4vw, 32px);
}
.page_wrap.privacy-policy_page section:not(:last-of-type),
.page_wrap.privacy-policy_page section .text:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap.privacy-policy_page h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: 1em;
}
.page_wrap.privacy-policy_page h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  margin-bottom: 1em;
}
.page_wrap.pab_maga_page .maga_icon_list {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 360px;
  background: #fff;
}
.page_wrap.pab_maga_page .maga_icon_list li {
  flex: 1;
}
.page_wrap.pab_maga_page .maga_icon_list figcaption {
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
  margin-top: auto;
}
.page_wrap.pab_maga_page .maga_icon_list figure {
  padding: 10px;
  height: 85px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.page_wrap.pab_maga_page .maga_icon_list img.icon1 {
  width: min(100%, 25px);
}
.page_wrap.pab_maga_page .maga_icon_list img.icon2 {
  width: min(100%, 37px);
}
.page_wrap.pab_maga_page .maga_icon_list img.icon3 {
  width: min(100%, 37px);
}
.page_wrap.pab_maga_page .maga_icon_list img.icon4 {
  width: min(100%, 46px);
}
.page_wrap.pab_maga_page .maga_icon_list img.icon5 {
  width: min(100%, 27px);
}
.page_wrap.pab_maga_page .first_wrap {
  padding-top: clamp(70px, 12.5vw, 160px);
}
.page_wrap.pab_maga_page .magazine_list {
  display: flex;
  gap: clamp(56px, 6.2vw, 80px) clamp(44px, 4.9vw, 64px);
  flex-wrap: wrap;
}
.page_wrap.pab_maga_page .magazine_list .magazine_item {
  border: 1px solid #ccc;
  padding: 15px;
  box-sizing: border-box;
}
.page_wrap.pab_maga_page .magazine_list li {
  width: calc((100% - clamp(44px, 4.9vw, 64px) * 2) / 3);
  margin-bottom: unset !important;
}
.page_wrap.pab_maga_page .magazine_list li figure {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
  margin-bottom: clamp(28px, 3.1vw, 40px);
}
.page_wrap.pab_maga_page .magazine_list li img {
  width: 100%;
  height: min(100vw, 240px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.page_wrap.pab_maga_page .magazine_list li .day {
  display: block;
  margin-bottom: clamp(17px, 1.8vw, 24px);
}
.page_wrap.pab_maga_page .magazine_list li .icon_cat {
  margin-bottom: clamp(39px, 4.4vw, 56px);
  display: flex;
  gap: 1em;
  align-items: center;
  min-height: 50px;
  flex-wrap: wrap;
}
.page_wrap.pab_maga_page .magazine_list li .cat_wrap {
  display: flex;
  gap: 1em;
  margin-bottom: unset;
  flex-wrap: wrap;
}
.page_wrap.pab_maga_page .magazine_list li .cat_wrap .cat {
  width: unset;
}
.page_wrap.pab_maga_page .magazine_list li h3 {
  font-size: clamp(17px, 1.8vw, 24px);
  min-height: 65.5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .page_wrap.pab_maga_page .magazine_list li {
    width: 100%;
  }
}
.page_wrap.sitemap_page h1 {
  padding: clamp(70px, 12.5vw, 160px) 0;
}
.page_wrap.sitemap_page .list_box {
  display: flex;
  gap: clamp(70px, 9.3vw, 120px);
  flex-wrap: wrap;
}
.page_wrap.sitemap_page .item:not(:last-of-type) {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.page_wrap.sitemap_page h3 {
  font-size: clamp(17px, 1.8vw, 24px);
}
.page_wrap.sitemap_page h3::before {
  content: "・";
}
.page_wrap.sitemap_page .list_inn {
  margin-top: clamp(28px, 3.1vw, 40px);
}
.page_wrap.sitemap_page .inn_item:not(:last-of-type) {
  margin-bottom: 1em;
}
.page_wrap.page_member h2 {
  font-size: clamp(25px, 2.8vw, 36px);
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap.page_member h3 {
  font-size: clamp(17px, 1.8vw, 24px);
}
.page_wrap.page_member .more {
  margin-top: clamp(28px, 3.1vw, 40px);
}
.page_wrap.page_member .table_box table,
.page_wrap.page_member .table_box th,
.page_wrap.page_member .table_box td {
  border: 1px solid;
}
.page_wrap.page_member .table_box table {
  width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .page_wrap.page_member .table_box table {
    width: 760px;
  }
}
.page_wrap.page_member .table_box tr:not(.th_wrap) th {
  text-align: right;
}
.page_wrap.page_member .table_box .th_wrap th {
  text-align: center;
}
.page_wrap.page_member .table_box th {
  padding: 0.5em 1em;
}
.page_wrap.page_member .table_box th:first-of-type {
  width: 3em;
}
.page_wrap.page_member .table_box th:not(:first-of-type) {
  width: calc((100% - 3em) / 5);
}
.page_wrap.page_member .table_box td {
  vertical-align: baseline;
}
.page_wrap.page_member .table_box li {
  border-bottom: 1px dotted;
}
.page_wrap.page_member .table_box li.red {
  background: #fbe5d6;
}
.page_wrap.page_member .table_box li.blue {
  background: #b4c7e7;
}
.page_wrap.page_member .table_box li.green {
  background: #c5e0b4;
}
.page_wrap.page_member .table_box li p {
  padding: 0.5em 1em;
  box-sizing: border-box;
}
.page_wrap.page_member .table_box > p {
  display: flex;
  align-items: center;
}
.page_wrap.page_member .table_box > p:first-of-type {
  margin-top: 1em;
  white-space: nowrap;
}
.page_wrap.page_member .table_box > p span {
  width: 20px;
  aspect-ratio: 1;
  display: inline-block;
}
.page_wrap.page_member .table_box > p .red {
  background: #fbe5d6;
}
.page_wrap.page_member .table_box > p .blue {
  background: #b4c7e7;
}
.page_wrap.page_member .table_box > p .green {
  background: #c5e0b4;
}
.page_wrap.page_member .jimu {
  margin-top: clamp(70px, 9.3vw, 120px);
}
.page_wrap.page_member .jimu .gimu_item:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.page_wrap.page_member .jimu .gimu_item p span {
  color: red;
}
.page_wrap.page_member .jimu .gimu_item h3 {
  margin-bottom: clamp(28px, 3.1vw, 40px);
}
.page_wrap.page_member .menber_list {
  margin-top: clamp(70px, 9.3vw, 120px);
}
.page_wrap.koneta_page .koneta_wrap {
  background: #dde2ea;
  padding: clamp(28px, 3.1vw, 40px);
}
.page_wrap.koneta_page .koneta_wrap h3 {
  font-size: clamp(16px, 1.8vw, 24px);
  margin-bottom: clamp(28px, 3.1vw, 40px);
}
.page_wrap.koneta_page .koneta_wrap .text_item {
  margin-top: clamp(56px, 6.2vw, 80px);
  display: block;
}
.page_wrap.koneta_page .koneta_wrap .box {
  display: inline-block;
}

ul.archive_list {
  display: flex;
  justify-content: center;
  gap: clamp(70px, 12.5vw, 160px);
  flex-wrap: wrap;
}
ul.archive_list li {
  width: calc((100% - clamp(70px, 12.5vw, 160px)) / 2);
  text-align: center;
  box-sizing: border-box;
}
ul.archive_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10em;
  line-break: auto;
  border: 1px solid #707070;
  background: #707070;
  color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
ul.archive_list li a:hover {
  color: #5d5d5d;
  opacity: 1;
  background: #fff;
}
@media screen and (max-width: 767px) {
  ul.archive_list {
    gap: 3em;
  }
  ul.archive_list li {
    width: 100%;
  }
}

/**************************************************************
category
**************************************************************/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.pagination span,
.pagination a {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination a:hover {
  color: #fcf8f2;
}

.category_page .page_title,
.single_page .page_title {
  text-align: center;
  padding: clamp(70px, 12.5vw, 160px) 0;
}
.category_page h1,
.single_page h1 {
  font-weight: bold;
}

.category_page .news_wrap {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.category_page .news_wrap li:not(:last-of-type) {
  margin-bottom: clamp(50px, 5.5vw, 72px);
}
.category_page .news_wrap h3 {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 3;
}
.category_page .news_wrap .day {
  display: block;
  margin-bottom: clamp(17px, 1.8vw, 24px);
}
.category_page .news_wrap a:hover {
  color: #707070;
}
.category_page .news_wrap a:hover .hov_border span {
  color: #b9b9b9;
}
.category_page .news_wrap a:hover .hov_border span::after {
  content: "";
  animation: border 0.3s ease;
  background: #707070;
  height: 2px;
}
.category_page .news_wrap .hov_border {
  padding-top: clamp(17px, 1.8vw, 24px);
}
@media screen and (max-width: 767px) {
  .category_page .news_wrap {
    flex-direction: column;
  }
}
.category_page .pagination {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}

/**************************************************************
single
**************************************************************/
.single_page .inner_730 {
  max-width: 750px;
  margin: auto;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .single_page .inner_730 {
    padding: 0 10%;
  }
}
.single_page .blog_title {
  font-size: clamp(22px, 2.4vw, 32px);
  margin: 0 auto clamp(70px, 12.5vw, 160px);
}
.single_page .blog_title span {
  font-size: 50%;
  display: block;
  margin-bottom: clamp(44px, 4.9vw, 64px);
}
.single_page .img {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.single_page .img img:not(.not_style) {
  width: 100%;
  aspect-ratio: 1/0.292;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_page .img_wrap {
  margin-bottom: clamp(70px, 12.5vw, 160px);
  display: flex;
  flex-wrap: wrap;
}
.single_page .img_wrap figure {
  width: 50%;
}
.single_page .img_wrap figcaption {
  text-align: center;
  font-size: clamp(12px, 1.6vw, 16px);
  margin-top: 2em;
}
.single_page .img_wrap img {
  width: 100%;
  aspect-ratio: 1/0.583;
  max-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_page .text_content {
  margin-bottom: clamp(70px, 12.5vw, 160px);
  line-height: 3;
}
.single_page .text_content p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.single_page .if_content {
  margin-top: clamp(70px, 12.5vw, 160px);
}
.single_page.magazine_single {
  padding-bottom: 0;
}
.single_page.magazine_single .blog_title span {
  margin: clamp(44px, 4.9vw, 64px) 0 0;
}
.single_page.magazine_single .magazine_inn {
  margin-top: clamp(70px, 12.5vw, 160px);
  margin-bottom: min(17vw, 320px);
}
.single_page.magazine_single .magazine_inn h2 {
  font-size: clamp(16px, 1.8vw, 24px);
}
.single_page.magazine_single .magazine_inn .dl_but {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #a2a1a1;
  border-radius: 5px;
  color: #fff;
  height: 2.56em;
}
.single_page.magazine_single .magazine_inn .text_content {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.single_page.magazine_single .magazine_inn .text_content p:not(:last-of-type) {
  margin-bottom: 1em;
}
.single_page.magazine_single .magazine_inn .dl_list {
  margin-bottom: clamp(70px, 7.7vw, 100px);
  display: flex;
  gap: clamp(70px, 12.5vw, 160px) clamp(70px, 9.3vw, 120px);
  flex-wrap: wrap;
}
.single_page.magazine_single .magazine_inn .dl_list.col1 li {
  width: 100%;
}
.single_page.magazine_single .magazine_inn .dl_list.col2 li {
  width: calc((100% - clamp(70px, 9.3vw, 120px)) / 2);
}
.single_page.magazine_single .magazine_inn .dl_list.col3 li {
  width: calc((100% - clamp(70px, 9.3vw, 120px) * 2) / 3);
}
@media screen and (max-width: 767px) {
  .single_page.magazine_single .magazine_inn .dl_list.col2 li, .single_page.magazine_single .magazine_inn .dl_list.col3 li {
    width: 100%;
  }
}
.single_page.magazine_single .magazine_inn .dl_list li {
  display: flex;
  flex-direction: column;
}
.single_page.magazine_single .magazine_inn .dl_list li h2 {
  margin-bottom: auto;
  padding-bottom: clamp(38px, 4.2vw, 54px);
}
.single_page.magazine_single .magazine_inn .dl_list li .img_item {
  margin-bottom: clamp(21px, 2.3vw, 30px);
}
.single_page.magazine_single .magazine_inn .dl_list li img {
  margin-bottom: clamp(28px, 3.1vw, 40px);
}
.single_page.magazine_single .magazine_inn .dl_list li p {
  font-size: 12px;
}
.single_page.magazine_single .magazine_inn .dl_wrap {
  width: min(100%, 430px);
  margin: 0 auto clamp(70px, 7.7vw, 100px);
}
.single_page.magazine_single .magazine_inn .dl_wrap h2 {
  margin-bottom: clamp(28px, 3.1vw, 40px);
}
.single_page.magazine_single .magazine_inn .dl_wrap a {
  width: 74.5%;
  margin: 0 auto;
  margin-bottom: clamp(22px, 2.4vw, 32px);
}
.single_page.magazine_single .magazine_inn .dl_wrap p {
  font-size: 16px;
  text-align: center;
}
.single_page.magazine_single .magazin_blog {
  padding: clamp(70px, 12.5vw, 160px) 0 min(17vw, 320px);
}
.single_page.magazine_single .magazin_blog .blog_title h1 {
  font-size: inherit;
}
.single_page.magazine_single .magazin_blog .blog_title .cat_wrap,
.single_page.magazine_single .magazin_blog .blog_title .day {
  font-size: 50%;
}
.single_page.magazine_single .magazin_blog .blog_title .cat_wrap {
  display: flex;
  gap: 1em;
  margin-top: clamp(28px, 3.1vw, 40px);
  flex-wrap: wrap;
}
.single_page.magazine_single .magazin_blog .text_content {
  margin-bottom: unset;
}
.single_page.magazine_single .magazin_blog .text_content:last-of-type {
  margin-top: clamp(70px, 9.3vw, 120px);
}
.single_page.magazine_single .magazin_blog .img02 {
  margin-top: clamp(70px, 9.3vw, 120px);
}
.single_page.magazine_single .magazin_blog .img02 img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 728/400;
  width: 100%;
}
.single_page.archive_single h1 {
  padding: clamp(70px, 12.5vw, 160px) 0;
}
.single_page.archive_single h1.topics_tit {
  font-size: clamp(28px, 3.75vw, 40px);
  padding: clamp(70px, 12.5vw, 160px) 0 clamp(56px, 6.2vw, 80px);
}
.single_page.archive_single h1.topics_tit br {
  display: none;
}
.single_page.archive_single h1.topics_tit span {
  margin-top: unset;
  margin-bottom: 3em;
  font-weight: normal;
  font-size: 33.4%;
}
.single_page.archive_single h1 span {
  font-size: 37.5%;
  display: block;
  margin-top: clamp(22px, 2.4vw, 32px);
}
.single_page.archive_single h2 {
  font-size: clamp(22px, 2.4vw, 32px);
}
.single_page.archive_single .textarea {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.single_page.archive_single .textarea h2 {
  margin: clamp(56px, 6.2vw, 80px) 0;
}
.single_page.archive_single .textarea p {
  line-height: 3;
}
.single_page.archive_single .archive_content {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.single_page.archive_single .archive_content table {
  width: 100%;
}
.single_page.archive_single .archive_content th,
.single_page.archive_single .archive_content td {
  padding: clamp(17px, 1.8vw, 24px) 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  box-sizing: border-box;
}
.single_page.archive_single .archive_content th {
  padding-right: clamp(22px, 2.4vw, 32px);
  padding-left: clamp(22px, 2.4vw, 32px);
  border-left: 1px solid;
  width: 375px;
}
.single_page.archive_single .archive_content td {
  border-right: 1px solid;
}
.single_page.archive_single .archive_content section:not(:last-of-type) {
  margin-bottom: clamp(70px, 9.3vw, 120px);
}
.single_page.archive_single .archive_content section:last-of-type {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.single_page.archive_single .archive_content section h2 {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.single_page.archive_single .archive_content section .flex {
  display: flex;
  justify-content: space-between;
  gap: clamp(70px, 9.3vw, 120px);
}
.single_page.archive_single .archive_content section .flex .text {
  width: calc(100% - (clamp(70px, 9.3vw, 120px) + min(100%, 256px)));
}
.single_page.archive_single .archive_content section .flex .img_wrap,
.single_page.archive_single .archive_content section .flex figure {
  width: min(100%, 256px);
}
.single_page.archive_single .archive_content section .flex .img_wrap {
  margin-bottom: unset;
}
.single_page.archive_single .archive_content section .flex figure:not(:last-of-type) {
  margin-bottom: 1em;
}
.single_page.archive_single .archive_content section .flex figure img {
  width: 100%;
  aspect-ratio: unset;
}
@media screen and (max-width: 767px) {
  .single_page.archive_single .archive_content th,
  .single_page.archive_single .archive_content td {
    display: block;
  }
  .single_page.archive_single .archive_content tr:not(:last-of-type) td {
    border-bottom: unset;
  }
  .single_page.archive_single .archive_content th {
    width: 100%;
    border-bottom: unset;
    border-right: 1px solid;
  }
  .single_page.archive_single .archive_content td {
    border-left: 1px solid;
    border-top: unset;
    padding-right: clamp(22px, 2.4vw, 32px);
    padding-left: clamp(22px, 2.4vw, 32px);
  }
}
.single_page.archive_single .archive_content.topics h2 {
  font-size: clamp(17px, 1.8vw, 24px);
  margin-bottom: clamp(44px, 4.9vw, 64px);
  font-weight: bold;
}
.single_page.archive_single .archive_content.topics section {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.single_page.archive_single .archive_content.topics section p {
  line-height: 3;
}
.single_page.archive_single .sub_area {
  margin-bottom: clamp(70px, 12.5vw, 160px);
}
.single_page.archive_single .sub_area h2,
.single_page.archive_single .sub_area h3 {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.single_page.archive_single .sub_area h3 {
  font-size: clamp(17px, 1.8vw, 24px);
}
.single_page.archive_single .sub_area .topics_list li:not(:last-of-type) {
  margin-bottom: clamp(39px, 4.4vw, 56px);
}
.single_page.archive_single .f_text {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.single_page.activity_report_single h1 {
  padding: clamp(70px, 12.5vw, 160px) 10px clamp(56px, 6.2vw, 80px);
}
.single_page.activity_report_single h1 span {
  font-size: 50%;
}
.single_page.activity_report_single h2 {
  font-size: inherit;
  margin-bottom: clamp(28px, 3.1vw, 40px);
  display: flex;
  gap: clamp(21px, 2.3vw, 30px);
}
.single_page.activity_report_single h2 span {
  white-space: nowrap;
}
.single_page.activity_report_single .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem 0;
  flex-wrap: wrap;
  border-bottom: 1px solid;
  line-height: 3;
}
.single_page.activity_report_single .wrap img {
  width: min(26vw, 400px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .single_page.activity_report_single .wrap img {
    width: 100vw;
  }
}
.single_page.activity_report_single table,
.single_page.activity_report_single .r_text,
.single_page.activity_report_single .rich-text {
  margin-left: calc(clamp(21px, 2.3vw, 30px) + 2em);
}
.single_page.activity_report_single table,
.single_page.activity_report_single .rich-text {
  margin-left: calc(clamp(21px, 2.3vw, 30px) + 2em);
  margin-bottom: clamp(28px, 3.1vw, 40px);
}
.single_page.activity_report_single th {
  -moz-text-align-last: justify;
       text-align-last: justify;
  vertical-align: top;
  white-space: nowrap;
}
.single_page.activity_report_single td {
  padding-left: clamp(21px, 2.3vw, 30px);
}
.single_page.activity_report_single .item:not(:last-of-type) {
  margin-bottom: clamp(28px, 3.1vw, 40px);
}
.single_page.radiation_research_single h1 {
  padding: clamp(70px, 12.5vw, 160px) 0;
  font-size: clamp(28px, 3.75vw, 48px);
}
.single_page.radiation_research_single h1 span {
  font-size: 50%;
}
.single_page.radiation_research_single h1 span.normal {
  font-weight: normal;
}
.single_page.radiation_research_single section {
  margin-bottom: clamp(70px, 9.3vw, 120px);
  display: flex;
  gap: clamp(42px, 4.6vw, 60px);
}
.single_page.radiation_research_single section h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.single_page.radiation_research_single section .text {
  width: calc(100% - (min(40vw, 480px) + clamp(42px, 4.6vw, 60px)));
}
.single_page.radiation_research_single section figure {
  width: min(40vw, 480px);
}
@media screen and (max-width: 767px) {
  .single_page.radiation_research_single section {
    flex-direction: column;
  }
  .single_page.radiation_research_single section .text,
  .single_page.radiation_research_single section figure {
    width: 100%;
  }
}
.single_page.radiation_research_single section .img_list {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 3.1vw, 40px);
}
.single_page.radiation_research_single section .img_list li {
  display: flex;
  width: calc((100% - clamp(28px, 3.1vw, 40px) * 2) / 3);
}
.single_page.radiation_research_single section .img_list figure {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.single_page.radiation_research_single section .img_list figure figcaption {
  margin-top: auto;
  font-size: clamp(14px, 1.2vw, 16px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single_page.radiation_research_single section .img_list {
    flex-wrap: wrap;
  }
  .single_page.radiation_research_single section .img_list li {
    width: calc((100% - 2em) / 2);
  }
  .single_page.radiation_research_single section .img_list.sp_one li {
    width: 100%;
  }
}
.single_page.radiation_research_single section .text_item:not(:last-of-type) {
  margin-bottom: 2em;
}
.single_page.radiation_research_single section .text_item h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  margin-bottom: 1em;
}
.single_page.radiation_research_single .under_link_wrap li {
  width: calc((100% - clamp(110px, 12.5vw, 160px)) / 2);
}
.single_page.radiation_research_single .under_link_wrap li a {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single_page.radiation_research_single .under_link_wrap li {
    width: 100%;
  }
}
.single_page.radiation_research_single.survey_single section ul {
  margin: 0 0 1em 1em;
  list-style: disc;
}
.single_page.radiation_research_single.survey_single section figure {
  display: inline-block;
}
.single_page.radiation_research_single.survey_single section figcaption {
  margin-top: 0.5em;
  text-align: center;
}
.single_page.single_free {
  padding-bottom: clamp(70px, 12.5vw, 160px);
}
.single_page.single_free .title {
  padding: clamp(56px, 6.2vw, 80px) 0;
}
.single_page.single_free .title .day {
  margin-bottom: clamp(44px, 4.9vw, 64px);
}
.single_page.single_free .title h1 {
  font-size: clamp(28px, 3.1vw, 40px);
}
.single_page.single_free .single_free_content {
  margin-bottom: clamp(70px, 9.3vw, 120px);
  line-height: 3;
}
.single_page.single_free .single_free_content h2,
.single_page.single_free .single_free_content h3 {
  font-size: clamp(17px, 1.8vw, 24px);
  margin-bottom: clamp(44px, 4.9vw, 64px);
  font-weight: bold;
}
.single_page.single_free .single_free_content p:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.single_page.single_free .single_free_content .pub_img_wrap {
  margin-top: clamp(56px, 6.2vw, 80px);
}
.single_page.single_free .single_free_content .pub_img_wrap ul {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 3.1vw, 40px);
  flex-wrap: wrap;
}
.single_page.single_free .single_free_content .pub_img_wrap ul li {
  width: calc((100% - clamp(28px, 3.1vw, 40px) * 2) / 3);
}
.single_page.single_free .single_free_content .pub_img_wrap ul figcaption {
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
}
@media screen and (max-width: 768px) {
  .single_page.single_free .single_free_content .pub_img_wrap ul li {
    width: 100%;
  }
  .single_page.single_free .single_free_content .pub_img_wrap ul img {
    width: 100%;
  }
}
.single_page.single_free .single_free_content .pub_img_wrap .last_p {
  margin-top: 1em;
  text-align: center;
}
.single_page.single_free .single_free_content .text .mb,
.single_page.single_free .single_free_content .text p:not(:last-of-type) {
  margin-bottom: 1em;
}
.single_page.single_free .single_free_content .text:not(:last-of-type) {
  margin-bottom: clamp(56px, 6.2vw, 80px);
}
.single_page.single_free table tr td:nth-of-type(2) {
  padding: 0 1em;
}
.single_page.single_free .img_wrap {
  display: flex;
  gap: clamp(28px, 3.1vw, 40px);
  margin-top: clamp(70px, 9.3vw, 120px);
  margin-bottom: unset;
  flex-wrap: wrap;
}
.single_page.single_free .img_wrap li {
  display: flex;
  width: calc((100% - clamp(28px, 3.1vw, 40px) * 2) / 3);
}
.single_page.single_free .img_wrap li figure {
  display: flex;
  gap: 0.5em;
  flex-direction: column;
  width: 100%;
}
.single_page.single_free .img_wrap li img {
  max-height: unset;
  aspect-ratio: 1/0.6;
}
.single_page.single_free .img_wrap li figcaption {
  font-size: clamp(14px, 1.2vw, 16px);
  margin-top: unset;
  line-height: 1.5;
}
.single_page.single_free .img_wrap.single-image {
  justify-content: center;
}
.single_page.single_free .img_wrap.single-image li {
  width: min(100%, 480px);
}
.single_page.single_free .img_wrap.single-image li img {
  aspect-ratio: 1/0.667;
}
@media screen and (max-width: 767px) {
  .single_page.single_free .img_wrap {
    justify-content: space-between;
  }
  .single_page.single_free .img_wrap li {
    width: 100%;
  }
}
.single_page.single_free .under_link_wrap {
  margin-top: clamp(70px, 9.3vw, 120px);
}

.single-event .single_free_content {
  margin-bottom: unset !important;
}

.contact p {
  font-size: 16px;
}
.contact table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
.contact table th,
.contact table td {
  border: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
}
.contact table th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
}
.contact table td span {
  font-size: 16px;
}
.contact table [type=text],
.contact table [type=tel],
.contact table [type=email],
.contact table textarea {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  padding: 1em;
  width: 60%;
  box-sizing: border-box;
  vertical-align: middle;
}
.contact table select {
  height: 45.52px;
  width: 60%;
}
.contact .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 10px;
}
.contact .wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}
.contact .but_wrap {
  display: flex;
  justify-content: center;
  gap: 1em;
  position: relative;
  margin-top: clamp(28px, 3.1vw, 40px);
}
.contact .but_wrap input {
  width: 10em;
  height: 4em;
}
.contact .but_wrap .wpcf7-spinner {
  position: absolute;
}
.contact .but_wrap [type=button],
.contact .but_wrap [type=reset],
.contact .but_wrap [type=submit] {
  -webkit-appearance: button;
}
@media screen and (max-width: 767px) {
  .contact table th,
  .contact table td {
    display: block;
    width: 100%;
  }
  .contact table td {
    border-top: unset;
    margin-bottom: 10px;
  }
  .contact table [type=text],
  .contact table [type=tel],
  .contact table [type=email],
  .contact table textarea,
  .contact table select {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */