@charset "utf-8";
/*全体の設定*/
/*
* {
	outline: 1px solid magenta;
}
*/
html {
    scroll-behavior: smooth;
}
.top_main_title{
	font-size:120px;
}
.main-font h2{
	display: inline-block;
    border-bottom: 1px solid;
    padding-bottom: 10px;
   }
#site-footer{
	display:none;
}
#site-header{
    display:none;
}
.breadcrumb{
	font-size:14px;
	margin-top:1em;
	font-weight:600;
	color:#808080;
}
.none_view{
	display:none;
}
.pc_view{
	display:block;
}
.pc_view_fx{
	display:flex;
}
.pc_view_tb{
	display:block;
}
.pc_view_tb_fx{
	display:flex;
}
.tb_view{
	display:none;
}
.tb_view_fx{
	display:none;
}
.sf_view{
	display:none;
}
.sf_view_fx{
	display:none;
}
@media (max-width: 1020px) {
	.pc_view_tb{
		display:none;
	}
	.pc_view_tb_fx{
		display:none;
	}
	.tb_view{
		display:block;
	}
	.tb_view_fx{
		display:flex;
	}
}
@media (max-width: 767px) {
	.pc_view{
		display:none;
	}
	.pc_view_fx{
		display:none;
	}
	/*.tb_view{
		display:none;
	}
	.tb_view_fx{
		display:none;
	}*/
	.sf_view{
		display:block;
	}
	.sf_view_fx{
		display:flex;
	}
}

.tategaki {
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;        /* 左寄せ */
  display: inline-block;   /* ブロック化で位置調整しやすく */
}


/*form*/

.form__row {
    margin-bottom: 67px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .form__row {
        margin-bottom: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
label[for] {
    padding-left: 2.3em;
}
@media screen and (max-width: 767px) {
    label[for] {
        padding-left: 1.5em;
    }
}
label[for] {
    cursor: pointer;
}
.form__label {
    color: #333;
    width: 250px;
    margin: 0;
    padding-top: 13px;
    margin-right: 10px;
    font-size: 18px;
    font-family:"Noto Sans Gothic", Sans-serif;
    font-weight: bold;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .form__label {
    font-size: 16px;
}
}
@media screen and (max-width: 767px) {
    .form__label {
        width: 100%;
        margin-bottom: 10px;
    }
}
.form__must {
    font-size: 14px;
    font-weight: bold;
    color: #008E00;
    line-height: 1;
    position: relative;
    top: -12px;
    left: 5px;
}
@media screen and (max-width: 767px) {
    .form__must {
        font-size: 12px;
        top: -9px;
    }
}
input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    border: 1px solid #333;
    border-radius:0px;
    background:#fff;
    margin-left: 0px;
    font-family:"Noto Sans Gothic", Sans-serif;
    font-size: 18px;
    padding:10px;
}
.form__content {
    width: 778px;
    padding-right: 2.3em;
}
@media screen and (max-width: 767px) {
	input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    font-size: 16px;
	}
    .form__content {
        width: 100%;
        padding-left: 1em;
        padding-right: 1em;
    }
}
.form__selectbox {
    width: 100%;
    height: 57px;
    font-size: 18px;
    letter-spacing: 0.05em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 10px;
}
@media screen and (max-width: 767px) {
    .form__selectbox {
        width: 100%;
    }
}
.form__button {
    text-align: center;
}
.form__button input[type=submit]:hover, .form__button input[type=submit]:focus {
    background-color: #008E00;
    border: 1px solid #008E00;
    color: #fff;
}
.form__button input[type=submit] {
    width: 200px;
    max-width: 100%;
    height: 60px;
    font-family:"Noto Sans Gothic", Sans-serif;
    background-color: #fff;
    /*border-radius: 30px;*/
    border: 1px solid #008E00;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #008E00;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.wpcf7-spinner {
    background-color: #82a677;
    position: absolute;
}
.wpcf7-spinner::before {
    content: '';
    position: absolute;
    background-color: #fff;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.wrapper {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
}
.target {
  display: block;
  width: 100%;
  height: auto;
}


/*form*/
.wpcf7-list-item-label{
    line-height:1.5em;
    font-family:"Noto Sans Gothic", Sans-serif;
    }
.form__acceptance{
    margin-top:-0.2em;
}

.contact_comment .elementor-heading-title{
    line-height:1.3em;
}
.wpcf7-list-item-label a{
	text-decoration:underline;
}
/*top_archive*/

.news__top-item{
    margin-bottom:0.5em;

}
.news__top-link{
    display:flex;
    flex-direction: row;
    background:#f5f5f5;
    padding:0.8em 0.5em 0.8em 1.3em;
    transition: 0.5s;
    font-family: "Noto Sans Gothic", Sans-serif;
}
.news__top-link:hover{
    background: #CAEEFE;
    transition: 0.5s;
}
.news__top-time{
    margin-right:1em;
}
.form__time{
    margin-top:1em;
}

/*faqページ*/
.faq-select ul {
  display: flex;
  justify-content: space-evenly;
  padding-left: 0px;
}

.faq-select ul li {
  list-style: none;
}

.faq-select ul li a {
  color: #2b3c7b;
  font-size: 18px;
  font-family: "Zen Kaku Gothic Antique", Sans-serif;
  font-weight: 500;
}

.faq-select ul li a:hover {
  color: #000;
}

.faq-select ul li span {
  vertical-align: middle;
}

.faq-select ul li span::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 15px;
  height: 16px;
  background-image: url(../images/angle-down-solid.svg);
  background-size: contain;
  vertical-align: middle;
}

#faq-section1, #faq-section2, #faq-section3, #faq-section4 {
  padding-top: 140px;
}

.FaqBlock2 {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  color:#666;
}

@media (max-width: 767px) {
  .FaqBlock2 {
    margin-top: 0px;
  }
  .faq-select ul li a {
    font-size: 16px;
  }
}
.FaqDt2 {
  /*align-items: center;*/
  /*background-color: #fff;*/
  display: flex;
  justify-content: space-between;
  padding: 15px 10px;
  cursor: pointer;
	border-top:2px dotted #666;
	border-bottom:2px dotted #666;
}

.FaqDt__icon2, .FaqDdContent__icon2 {
  font-family: ten-mincho-text, serif;
  font-size: 30px;
  font-weight: 500;
  height: 30px;
  line-height: 1;
  letter-spacing: 0.15em;
  width: 50px;
  margin-bottom: 0px;
}

.FaqDt__icon2 {
  color: #666;
}

.FaqDdContent__icon2 {
  margin-top: 3px;
  color: #666;
}

.FaqDtBody2 {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 95%;
}

.FaqDtBody__text2 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2em;
  width: 95%;
  margin-bottom: 0px;
}

.FaqDtBody__open-icon2, .FaqDtBody__close-icon2 {
  height: auto;
  width: 30px;
}

.FaqDd2 {
  /*background-color: #fff;*/
  display: none;
  padding: 15px 10px;
  margin-inline-start: 0px;
  cursor: pointer;
	border-bottom:2px dotted #666;
}

.FaqDdContent2 {
  /*align-items: center;*/
  display: flex;
  justify-content: space-between;
}

.FaqDdContent__text2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2em;
  width: 95%;
  margin-top: 2px;
  margin-bottom: 0px;
}

.FaqDdContent__text2 a {
  color: #000;
  text-decoration: underline;
}

.FaqDdContent__text2 a:hover {
  color: #112f55;
  text-decoration: none;
}

.FaqDtBody__close-icon2.hidden-dn.visible-dn {
  display: block;
}

.hidden-dn {
  display: none;
}

.faq__content {
  cursor: pointer;
}

@media (max-width: 767px) {
  .faq-select ul {
    flex-direction: column;
  }
  .faq-select ul li {
    text-align: center;
    padding-bottom: 12px;
  }
  .FaqDt__icon2{
	  width:30px;
    font-size: 20px;
    height: 20px;
	  margin-top:2px;
  }
  .FaqDdContent__icon2 {
	  width:30px;
    font-size: 20px;
    height: 20px;
	  margin-top:11px;
  }
  .FaqDtBody__text2 {
    font-size: 14px;
    padding-left: 5px;
  }
  .FaqDdContent__text2 {
    font-size: 14px;
    margin-top: 8px;
    padding-left: 5px;
  }
  .FaqDtBody__open-icon2, .FaqDtBody__close-icon2 {
    width: 27px;
  }
  .FaqDt2 {
    padding: 20px 10px;
	  margin-bottom:10px;
  }
  .FaqDd2 {
    padding: 0 10px 20px;
  }
}




/*トップお知らせセクション1*/
.information {
  /*margin-top: 3.85417vw;*/
}
.information__meta {
  margin-bottom:3vw;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.information__lists, .news__list{
  margin: 2vw 0 -20px;
  padding: 0;
  list-style: none;
}
.news__list{
    min-height:110px;
    max-height:450px;
}
@media screen and (max-width: 500px){
.news__list{
    max-height:310px;
	margin-top:10px;
	margin-bottom:10px;
}
}
.information__item , .news__list-item{
  font-size: 16px;
  font-family: "Zen Old Mincho", Sans-serif;
}
.news__link {
    display: flex;
    position: relative;
}
.information__link, .news__link {
  padding:1.3em;
  padding-left: 4em;
  border-bottom:1px solid #333;
  -webkit-transition: background-color .25s;
  transition: background-color .25s;
}
@media screen and (max-width: 767px){
.information__link, .news__link {
  padding-left: 1.3em;
}
.news__body{
    margin-bottom:30px;
}
}
.news__time{
    letter-spacing:0.2em;
}

.information__link:hover, .information__link:focus ,.news__link:hover{
  background: #f0f0f0;
}
.information__tabs {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.information__button {
  margin: 2.1875vw auto 0;
}
.information .tabs__item {
  font-size: 0.83333vw;
}
.information .tabs__item:not(:first-child) {
  margin-left: 1.23em;
}
.information .tabs__item:not(:first-child) .tabs__link::before {
  content: '';
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.4em;
  background-repeat: no-repeat;
  background-size: contain;
}
.information .tabs__link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.3em 0.8em;
  font-family: "Zen Old Mincho", Sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
  border-radius: 0.26042vw;
  background: #fff;
  border:2px solid #000;
  cursor: pointer;
  -webkit-transition: background-color .25s;
  transition: background-color .25s;
}
.information .tabs__link--important:hover, .information .tabs__link--important:focus {
  background-color: #feb9d9;
}
.information .tabs__link--important::before {
  background-image: url(../image/star.png);
}
.information .tabs__link--news:hover, .information .tabs__link--news:focus {
  background-color: #74d5b1;
}
.information .tabs__link--news::before {
  background-image: url(../image/comment.png);
}
.information .tabs__link--event:hover, .information .tabs__link--event:focus {
  background-color: #74d5b1;
}
.information .tabs__link--active:hover, .information .tabs__link--event:focus {
  background-color: #74d5b1;
}
.information .tabs__link--event::before {
  background-image: url(../image/pencil.png);
}
.information .tabs__link--teams:hover, .information .tabs__link--teams:focus {
  background-color: #e4c1f9;
}
.information .tabs__link--teams::before {
  background-image: url(../image/users.png);
}
.information .post-link, .infomation .news__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.information .post-link:hover , .infomation .news__link:hover{
  background: #74d5b1;
}
.information .post-link__date, .infomation .news__time {
  font-family: "Zen Old Mincho", Sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2em;
  font-size: 0.83333vw;
}
.information .post-link__icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-left: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.news__categories{
    display:flex;
    margin-top: -44px;
}
.categories__list:hover{
    background:#f0f0f0;
    cursor:pointer;
}
.button__active{
    background:#ECEDF1;
}
.categories__list .categories__button{
  font-family: "Noto Sans", Sans-serif;
  position: relative;
  display:flex;
  border: 1px solid;
  padding: 0.5em 1.5em;
}
.categories__list .categories__button.categories__button__new{
  font-family: "Zen Old Mincho", Sans-serif;
}
.categories__list{
    margin-right:18px;
    border-radius: 5px;
}
@media screen and (max-width: 1000px){
.news__categories{
    justify-content: start; 
    margin-top: 20px;
    margin-bottom: 30px;
}
.categories__list{
  margin-left:0px;
  margin-right:5px;
}
}
.cat-icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  top:2px;
  background-repeat: no-repeat;
  background-size: contain;
}
.categories__list .cat-icon::before {
    margin-right:4px;
}
@media screen and (max-width: 500px){
.information__meta .top-blog__header h2{
    width:240px;
}
.news__categories,.news__list-item{
    font-size:12px;
	margin-top:0px;
	margin-bottom:10px;
}
.cat-icon::before{
    width: 15px;
    height: 15px;
}
.categories__list .categories__button{
    padding: 0.7em 0.5em;
}
}
@media screen and (max-width: 320px){
.news__categories,.news__list-item{
    font-size:10px;
}
}
.cat-icon--news::before {
  background-image: url(../image/comment2.png);
}
.cat-icon--event::before {
  background-image: url(../image/home.png);
}
.cat-icon--blog::before {
    background-image: url(../image/pen.png);
}
.news__post-title {
    width: 730px; /* 省略せずに表示するサイズを指定 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 1200px){
.news__post-title {
    width: 590px; /* 省略せずに表示するサイズを指定 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
}
@media screen and (max-width: 1250px){
.news__read-more {
    display:none;
}
}
.information .post-link__text, .infomation .news__post-title  {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
   -ms-flex: 1;
  flex: 1;
  margin-left: 1.5em;
  font-weight: 500;
  font-style: normal;
  font-size: 0.83333vw;
  letter-spacing: 0.2em;
}
.information .post-link__more , .infomation .news__read-more{
  font-weight: 700;
  font-style: normal;
  font-size: 0.625vw;
  letter-spacing: 0.2em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.information .post-link__more::after , .infomation .news__read-more::after {
  content: '';
  width: 0.75em;
  height: 0.75em;
  margin-left: 1.2em;
  background-image: url(../image/play.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


@keyframes spin-fade-loader {
  50% {
    opacity: 0.3;
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
  }
.spin-fade-loader {
  position: absolute;
  top: 66%;
  left: 49%;
}
@media screen and (max-width: 1000px){
.spin-fade-loader {
  top: 70%;
}
}
@media screen and (max-width: 767px){
.spin-fade-loader {
  top: 71%;
  left: 48%;
}
}
@media screen and (max-width: 500px){
.spin-fade-loader {
  top: 63%;
  left: 47%;
}
}
.spin-fade-loader.hide {
  display: none;
}
.spin-fade-loader > div {
  background-color: #000;
  width: 15px;
  height: 15px;
  /*border-radius: 100%;*/
  margin: 2px;
  animation-fill-mode: both;
  position: absolute;
}
.spin-fade-loader > div:nth-child(1) {
  top: 25px;
  left: 0;
  animation: spin-fade-loader 1s -0.96s infinite linear;
}
.spin-fade-loader > div:nth-child(2) {
  top: 17.04545px;
  left: 17.04545px;
  animation: spin-fade-loader 1s -0.84s infinite linear;
}
.spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 25px;
  animation: spin-fade-loader 1s -0.72s infinite linear;
}
.spin-fade-loader > div:nth-child(4) {
  top: -17.04545px;
  left: 17.04545px;
  animation: spin-fade-loader 1s -0.6s infinite linear;
}
.spin-fade-loader > div:nth-child(5) {
  top: -25px;
  left: 0;
  animation: spin-fade-loader 1s -0.48s infinite linear;
}
.spin-fade-loader > div:nth-child(6) {
  top: -17.04545px;
  left: -17.04545px;
  animation: spin-fade-loader 1s -0.36s infinite linear;
}
.spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -25px;
  animation: spin-fade-loader 1s -0.24s infinite linear;
}
.spin-fade-loader > div:nth-child(8) {
  top: 17.04545px;
  left: -17.04545px;
  animation: spin-fade-loader 1s -0.12s infinite linear;
}



.link-home,
.link-about {
  display: block;
  position: absolute;
}
.link-home {
  width: 17.44792vw;
  height: 3.64583vw;
  left: 5.57292vw;
  top: 2.60417vw;
}
.link-about {
  width: 6.35417vw;
  height: 1.5625vw;
  top: 5.625vw;
  left: 39.21875vw;
}

.new-topics__items {
    display: flex;
    align-items: center;
    padding: 0,.78vw 0vw;
}
time.new-post__date{
    font-weight:bold;
}
.new-post__title>a {
    font-weight:500;
}
.new-post__title>a:hover{
    color:white;
}
time.new-post__date,
.new-post__title{
    font-size: 0.83vw;
    letter-spacing: 0.2em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
ul.post-categories>li>a {
    margin: 0 1.46vw;
    padding: 8px 0;
    width: 150px;
}
.new-post__meta{
    padding-left:3em;
    display:flex;
}
.new-post__body{
    overflow: hidden;
    width: 100%;
}
.elementor-tabs-wrapper{
    margin-bottom:-5vw;
}
.news-topics-wrap{
    width:60.5vw;
    margin-left:auto;
    margin-right:auto;
}
.news-topics-wrap2{
    width:60.5vw;
    margin-left:auto;
    margin-right:auto;
    margin-top:3vw;
}
.news_header{
    margin-bottom:3.5vw;
}

.news_header span{
	font-size:0.73vw;
	font-weight:bold;
	letter-spacing:0.05em;
	font-family: "din-2014", sans-serif;
}
.news_header_nav{
    display:flex;
}
.new-topics__items{
    width:100%;
    font-size:0.83vw;
    height:3.5vw;
    background:#f0f0f0;
    color:#000;
    margin-bottom:1.2em;
    border-radius: 0.7vw 0.7vw 0.7vw 0.7vw;
    position:relative;
    font-family: kozuka-gothic-pr6n, sans-serif;
}
.new-topics__items:hover{
    background:#74d5b1;
    color:white;
}
.new-topics__items2{
    width:100%;
    height:10vw;
    background:#f0f0f0;
    margin-bottom:2em;
    border-radius: 0.7vw 0.7vw 0.7vw 0.7vw;
}
.new-read_more{
    font-size:0.63vw;
    font-weight:bold;
    position:absolute;
    right:2vw;
    font-family: "din-2014", sans-serif;
}
.news_content{
    font-size:0.83vw;
    margin-left:2vw;
}
.nav_main_icon{
    width:1.5em;
    height:1.5em;
    margin:0 1.5em;
}
.elementor-tabs-wrapper{
    margin-right:19.5vw;
}
#elementor-tab-title-6141,#elementor-tab-title-6142,#elementor-tab-title-6143{
    color:black;
    border:2px solid black;
    margin-left:1em;
    border-radius: 0.3vw 0.3vw 0.3vw 0.3vw;
    padding:0.58vw 1.33vw;
    z-index:508;
    font-size:0.83vw;
    font-family: kozuka-gothic-pr6n, sans-serif;
    position:relative;
}
#elementor-tab-title-6141:hover,#elementor-tab-title-6142:hover,#elementor-tab-title-6143:hover{
    background:#74d5b1;
}
.osirase_icon,.kensyu_icon{
    width:0.83vw;
    height:0.83vw;
}
.news-topics__item2__wrap{
    display:flex;
    padding-top:0.5vw;
}
.news_content{
    padding-left:0.8vw;
    padding-top:0.5vw;
}
.news__post-cate{
	display:flex;
	justify-content: space-evenly;
	width:80px;
	padding: 0px 10px;
}

/*お知らせセクションレスポンシブ*/
@media screen and (max-width: 1400px){
    .elementor-tabs-wrapper{
    margin-bottom:-6.5vw;
    }
}
@media screen and (max-width: 1100px){
   .osirase_icon,.kensyu_icon{
      width:11px;
       height:11px;
    }
    .nav_main_icon{
    width:11px;
    height:11px;
}

#elementor-tab-title-6141, #elementor-tab-title-6142, #elementor-tab-title-6143 {
        padding: 6.4px 14.6px;
}
}
@media screen and (max-width: 1000px){
    .new-read_more{
            display:none;
    }
    .elementor-tabs-wrapper{
    margin-bottom:-7vw;
    margin-right:17vw;
    }
    .new-topics__items{
        height:4vw;
    }
    .all_news_go a{
        width: 124px;
        border-radius: 15px 15px 15px 15px ;
        line-height:3.5em;
    }
    }
}
@media screen and (max-width: 768px){
    .new-read_more{
            display:inline-block;
    }
    .news_header{
        margin-bottom:8vw;
    }
    .elementor-tabs-wrapper{
        margin-bottom:-14.5vw;
        margin-right:10vw;
    }
    .news-topics-wrap{
    width:80vw;
    margin-left:auto;
    margin-right:auto;
    }
    .new-topics__items{
        height:5.5vw;
    }
    .all_news_go a{
        width:12.42vw;
        border-radius: 2vw 2vw 2vw 2vw;
        line-height:3.5em;
    }
    #elementor-tab-title-6141, #elementor-tab-title-6142, #elementor-tab-title-6143 {
        border-radius: 4.5px 4.5px 4.5px 4.5px;
    }
}
@media screen and (max-width: 680px){
    .new-read_more{
            display:none;
    }
    .news_header{
        margin-bottom:10vw;
    }
    .elementor-tabs-wrapper{
        margin-bottom:-17.5vw;
    }
    .all_news_go a{
        width:14.42vw;
        border-radius: 3vw 3vw 3vw 3vw;
        line-height:4em;
    }

.carousel .swiper-button-prev::after {
  content: url(../image/prev-2.png);
  margin-top: -7px;
}
.carousel .swiper-button-next::after {
  content: url(../image/next-2.png);
  margin-top: -7px;
}
}
@media screen and (max-width: 560px){
    .elementor-tabs-wrapper{
        margin-right:5vw;
        margin-bottom:-18.5vw;
    }
    .news-topics-wrap{
        width:90vw;
    }
    .new-topics__items{
        height:7vw;
        margin-bottom:2em;
    }
    .all_news_go a{
        width:18vw;
        border-radius: 4vw 4vw 4vw 4vw;
        line-height:5em;
    }

}
@media screen and (max-width: 480px){
 .elementor-tabs-wrapper{
        margin-right:25vw;
        margin-bottom:-100px;
    }
    .news_header {
    margin-bottom: 55px;
}
.carousel .swiper-button-prev::after {
  content: url(../image/prev-2.png);
  margin-right: 0px;
}
.carousel .swiper-button-next::after {
  content: url(../image/next-2.png);
  margin-left: 0px;
}
}
@media screen and (max-width: 400px){
    .news-topics-wrap {
        margin-top: -10vw;
    }

    .news_header{
        margin-bottom:60px;
    }
    .elementor-tabs-wrapper{
        margin-right: 40px;
    margin-bottom: -60px;
    }
    #elementor-tab-title-6141, #elementor-tab-title-6142, #elementor-tab-title-6143 {
    padding: 3.4px 4.6px;
}
    .new-topics__items{
        height:11vw;
        margin-bottom:2.5em;
    }
        .all_news_go a{
        width:25vw;
        border-radius: 3vw 3vw 3vw 3vw;
        line-height:6em;
    }
}
@media screen and (max-width: 320px){
    .elementor-tabs-wrapper{
        margin-right:20vw;
    }
    .footer_button a {
    margin-top: -14.3vw;
}
}


/*お知らせ・イベント*/

.article-wrap {
  width: 1480px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px 0px;
}
@media (max-width: 1024px) {
  .article-wrap {
    padding: 0 10px 0 10px;
  }
}

.article-item {
  margin-bottom: 38px;
}
.article-item:last-of-type {
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .article-item {
    margin-bottom: 35px;
  }
}
.article-item__link {
  display: block;
  padding: 2em 2em;
  border-radius: 3px;
  background-color: #F5F5F5;
  color: #333;
  transition: background-color 0.5s;
}
.article-item__link:hover {
  background-color: #61CE7080;
  color: #333;
}
.article-item__link:hover .article-item__left > img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
	.article-wrap {
    padding: 0 20px 0 20px;
  }
  .article-item__link {
    padding: 6vw;
    font-size: 20px;
  }
}
.article-item__inner {
  display: flex;
}
@media (max-width: 768px) {
  .article-item__inner {
    flex-direction: column;
  }
}
.article-item__left {
  width: 250px;
  height: 153px;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .article-item__left {
    width: 100%;
    height: auto;
    aspect-ratio: 245/153;
    margin-right: 0;
  }
}
.article-item__left > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.article-item__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s, transform-scale 0.2s;
}
.article-item__right {
  width: calc(100% - 250px);
  padding-left: 1.5em;
}
@media (max-width: 768px) {
  .article-item__right {
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .article-item__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.article-item__date {
  margin-bottom: 8px;
  font-family: "Noto Sans", Sans-serif;
  font-size: 15px;
  /*font-weight: 600;*/
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
}
.article-item__date.article-item__date__new {
  font-family:"Zen Old Mincho", Sans-serif;
}
@media (max-width: 768px) {
  .article-item__date {
    margin: 0 1em 0 0;
    font-size: 14px;
    line-height: 1.2;
  }
}
.article-item__categories {
  margin-top: 0.9em;
}
@media (max-width: 768px) {
  .article-item__categories {
    margin-top: 0;
  }
}
.article-item__title {
  margin: 0.6em 0 0;
  font-family: "Noto Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.225em;
  line-height: 1.3125;
  color: inherit;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.article-item__title.article-item__title__new{
  font-family:"Zen Old Mincho", Sans-serif;
}
@media (max-width: 768px) {
  .article-item__title {
    width: 100%;
    margin: 0.5em 0 0;
    font-size: 18px;
    line-height: 1.5;
    white-space: normal;
  }
}
.article-item__body {
  margin-top: 0.5em;
  font-family: "Noto Sans", Sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1.7;
}
.article-item__body__new{
  font-family:"Zen Old Mincho", Sans-serif;
}
@media (max-width: 768px) {
  .article-item__body {
    margin-top: 1em;
    font-size: 14px;
  }
}

.post-categories {
  list-style: none;
  padding-inline-start: 0;
  display: none;
  flex-wrap: wrap;
}
.post-categories__item {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0.1em 0.9em 0.1em 0;
}
.post-categories__item--news {
  background-image: url(../image/comment2.png);
}
.post-categories__item--event {
  background-image: url(../image/home.png);
}
.post-categories__item--blog {
  background-image: url(../image/pen.png);
}
@media (max-width: 768px) {
  .post-categories__item {
    margin: 0 0.6em 0 0;
  }
}

.wp-pagenavi {
  text-align: center;
}

.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  aspect-ratio: 1/1;
  padding: 0.75em;
  vertical-align: middle;
  position: relative;
}
.wp-pagenavi .previouspostslink::before, .wp-pagenavi .nextpostslink::before {
  content: "";
  display: block;
  width: 9px;
  height: 11px;
  background: 50% 50%/contain no-repeat;
  background-image: url(../image/prev_icon.svg);
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 5px);
}
.wp-pagenavi .previouspostslink {
  margin-right: 2.57em;
}
.wp-pagenavi .previouspostslink::before {
  transform: scale(-1, 1);
  left: calc(50% - 7px);
}
@media (max-width: 480px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 1em;
  }
}
.wp-pagenavi .nextpostslink {
  margin-left: 2.57em;
}
@media (max-width: 480px) {
  .wp-pagenavi .nextpostslink {
    margin-left: 1em;
  }
}


/* news */
.page-head {
  height: 424px;
  padding-top: 93px;
}
@media (max-width: 1024px) {
  .page-head {
    height: 41.40625vw;
    min-height: 250px;
  }
}
.page-head__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 94px;
  position: relative;
}
@media (max-width: 1024px) {
  .page-head__inner {
    padding: 10% 10px;
  }
}
.page-head__title {
  max-width: 960px;
  margin: 0 auto;
  font-family: "din-2014", sans-serif !important;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.075em;
  color: #FFF;
  position: relative;
}
@media (max-width: 768px) {
  .page-head__title {
    font-size: 28px;
  }
}
.page-head__background {
  position: absolute;
  top: 0;
  left: calc(50% - 960px);
  border-bottom: 580px solid transparent;
  border-left: 930px solid #6FD9B7;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .page-head__background {
    left: calc(50% - 850px);
  }
}

.category-list {
  list-style-type: none;
  max-width: 100%;
  margin: 0px auto 30px;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  font-size:14px;
}
.category-list.works-list {
  list-style-type: none;
  max-width: 100%;
  margin: 0px 0px 50px 9vw;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  font-size:14px;
}
@media (max-width: 1024px) {
  .category-list {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (max-width: 768px) {
  .category-list {
    margin-bottom: 25px;
	  padding-right:20px;
	  padding-left:20px;
  }
  .category-list.works-list {
    margin: 0px 0px 50px 3vw;
  }
}
.category-list__item {
  margin: 0.5em 1.3em 0.5em 0;
}
.category-list__link {
  display: flex;
  align-items: center;
  padding: 0.3em 1em;
  border: 1px solid currentColor;
  transition: background-color 0.25s;
  font-family: "Noto Sans", Sans-serif;
}
.category-list__link.works-list__link {
  border: 1px solid #3D1900;
  color:#3D1900;
}
.category-list__link:hover {
  color: #000;
  background-color: #ECEDF1;
}
.category-list__link--current {
  background-color: #ECEDF1;
}
.category-list__link--news::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.4em;
  background-image: url(../image/comment2.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.category-list__link--event::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.4em;
  background-image: url(../image/home.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.category-list__link--blog::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.4em;
  background-image: url(../image/pen.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.post-category-link{
	border:1px solid #333;
	padding:3px 5px;
}

.blog_comment.blog_text h2{
	font-size:18px;
	margin:1em 0em;
	padding:0.5em;
	font-weight:600;
	background:#D2B48C;
}