@charset "UTF-8";

.marquee{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  background: #f8f8f8;
  z-index: 1000;
}

#marquee-track{
  display:flex;
  width:max-content;
  will-change: transform;
  transform: translateZ(0);
  animation: marquee var(--marquee-duration, 80s) linear infinite;
}

#marquee-group{
  display: flex;
  align-items: center;
}

.marquee_item{
  height: 70px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transform: rotateZ(0.03deg);
  font-size: 2rem;
  color: #7f4601;
  font-weight: 600;
  margin-right: 100px;
}

.marquee_item span{
  display: flex;
  align-items: flex-end;
  height: 27px;
  padding-left: 30px;
  white-space: nowrap;
  line-height: 1;
  position: relative;
}

.marquee_item span::before{
  content: "";
  width: 26px;
  aspect-ratio: 100 / 113;
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../img/icon_soil.webp) no-repeat center center / contain;
  transform: translateY(-50%);
}

.marquee_item span:nth-child(2)::before{ background-image: url(../img/icon_leaf.webp);}
.marquee_item span:nth-child(3)::before{ background-image: url(../img/icon_salad.webp);}

@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--marquee-distance, 0px))); }
}


#container{
  width: min(100%, 1320px);
  margin: 70px auto 0 auto;
  height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 214px 1fr 214px;
  overflow: hidden;
}

#header, #side_r{
  color: #fff;
  background: #008442;
}

#header{
  padding: 60px 15px;
}

#header .logo a{
  display: block;
}

#side_r{
  padding: 90px 20px 60px 20px;
}

#side_r a{
  display: block;
}

#side_r p a:hover{
  opacity: 0.8;
}

#contents{
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 1.6rem;
  background: #f0f0f0;
  scroll-behavior: smooth;
}

@media screen and (max-width: 767px){
  #contents{
    font-size: 1.4rem;
  }
}

.page_body{
  padding-bottom: 90px;
}

.page_body p{
  font-weight: 500;
  font-size: 1.6rem;
}

.tags_body{
  padding: 30px 50px 70px 50px;
}

@media screen and (max-width: 1200px){
  .tags_body{
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px){
  .tags_body{
    padding: 30px 30px 90px 30px;
  }
}

#footer{
  padding: 0 30px 10px 30px;
  background: #FEFA70;
}

#footer .tt{
  width: min(100%, 630px);
  margin: 0 auto;
  transform: translateY(-50%);
}

#footer .inner{
  width: min(100%, 630px);
  margin: 50px auto 0 auto;
  display: grid;
  grid-template-columns: 1fr 114px;
  gap: 20px;
}

#footer .address .logo{
  max-width: 280px;
}

#footer .address dl{
  margin-top: 30px;
}

#footer .address dt{
  margin-top: 15px;
  font-size: 1.3rem;
}

#footer .address dd{
  font-size: 1rem;
  line-height: 1.4;
}

#footer .address dd p{
  display: flex;
  gap: .5em;
}

#footer .address dd p span:first-child{
  white-space: nowrap;
}

.footer_btn{
  margin-bottom: 15px;
}

.footer_btn li + li{
  margin-top: 10px;
}

.footer_btn li a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  background: rgba(255,255,255,1);
  border-radius: 5px;
}

.footer_btn li a:hover{
  background: rgba(255,255,255,.7);
}

#footer .copy{
  display: block;
  margin-top: 50px;
  text-align: center;
  font-size: .6rem;
  font-weight: 300;
}

@media screen and (max-width: 767px){
  #footer .address dd{
    font-size: 0.8rem;
  }
  #footer .copy{
    margin-top: 20px;
  }
}

#hamburger, #overlay{
  display: none;
}

@media (max-width: 767px) {
  #container{
    margin: 70px auto 0 auto;
    height: auto;
    grid-template-columns: 1fr;
    overflow: auto;
  }
  #header {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    padding: 80px 25px 20px 25px;
    transform: translateX(250px);
    z-index: 1000;
    transition: 0.3s ease;
  }
  #header.is-open {
    transform: translateX(0);
  }
  #contents {
    margin: 0;
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
  #side_r {
    display: none;
  }
  #hamburger{
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1100;
    width: 45px;
    height: 45px;
    padding: 0;
    background: #008442;
    border: 1px solid #008442;
    border-radius: 50%;
    cursor: pointer;
  }
  #hamburger.is-open{
    border: 1px solid #fff;
  }
  #hamburger span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 27px;
    height: 1px;
    background-color: #fff;
    border-radius: 9999px;
    transition: transform .3s ease, top .3s ease, opacity .3s ease;
    transform-origin: center center;
    transform: translate(-50%, -50%);
	}
	#hamburger span:nth-child(1) {
    top: calc(50% - 8px);
	}
	#hamburger span:nth-child(2) {
	  top: 50%; 
	}
	#hamburger span:nth-child(3) {
	  top: calc(50% + 8px);
	}
  #hamburger.is-open span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  #hamburger.is-open span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  }
  #overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 900;
  }
  #overlay.is-active {
    display: block;
  }
  body.is-menu-open {
    overflow: hidden;
  }
}

.sns{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#header .display_pc .sns{
  margin: 40px 0 25px 0;
}

.sns li{
  flex: 0 1 28px;
  margin: 0;
}

.sns li a{
  display: block;
  padding-left: 0!important;
}

.sns li a::before{
  display: none!important;
}

.c-search-form {
  max-width: 260px;
  margin: 0;
}

.c-search-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  height: 30px;
  border-radius: 999px;
  padding: 10px 16px 10px 14px;
}

.c-search-form__icon svg {
  display: block;
  width: 24px;
  height: 23px;
}

.c-search-form__input {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 1.2rem;
  color: #333;
  outline: none;
}

.c-search-form__input::placeholder {
  color: rgba(0,0,0,0.25);
}

.c-search-form__submit {
  position: absolute;
  left: -9999px;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.gnav{
  margin-top: 50px;
}

.gnav li{
  margin-bottom: 20px;
}

.gnav li a{
  display: block;
  line-height: 1.4;
  padding-left: 13px;
  font-size: 0.8rem;
  position: relative;
}

.gnav li a::before{
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
	background: #fff;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/icon_circle.svg);
	mask-size: contain;
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  transition: ease .3s;
}

.gnav li a:hover::before{
  background: #FEFA70;
}

.gnav li a span{
  display: block;
  font-size: 1.6rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}

.gnav p.about{
  margin-top: 50px;
  margin-left: 13px;
}

.gnav p.about a{
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 800;
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
}

.gnav p.about a:hover{
  border-bottom: 1px solid #FEFA70;
}

.gnav p.about a::before{
  content: "";
  width:0;
  height:0;
  border-style:solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #fff;
  transition: ease .3s;
}

.gnav p.about a:hover::before{
  border-color: transparent transparent transparent #FEFA70;
}

.gnav a:hover{
  color: #FEFA70;
}

@media screen and (max-width: 767px){
  #header .display_sp .sns{
    margin: 40px 0 10px 0;
  }
  .c-search-form {
    margin-top: 30px;
  }
  .gnav{
    margin-top: 30px;
  }
  .gnav li{
    margin-bottom: 18px;
  }
  .gnav p.about{
    margin-top: 30px;
  }
  #header .display_sp .bnr{
   padding: 0 13px; 
  }
  #header .display_sp .bnr + .bnr{
    margin-top: 10px;
  }
}

.ttl_wrap{
  text-align: center;
  line-height: 1;
  color: #E4381D;
  margin-bottom: 25px;
}

.ttl_wrap .jp{
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 10px 0!important;
}

.ttl_wrap .jp span{
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid #E4381D;
}

.ttl_wrap .txt{
  font-size: 4.2rem;
  font-weight: 900;
}

.tags_body .ttl_wrap .txt{
  font-size: 3.6rem;
  letter-spacing: -.05em;
}

.ttl_wrap .txt span{
  font-size: 75%;
  padding: 0 3px;
}

.ttl_wrap .img{
  margin-top: 12px;
}

.ttl_wrap .img img{
  width: auto!important;
}

.tag_list_wrap{
  padding: 20px 50px;
  width: min(100%, 560px);
  margin: 0 auto 70px auto;
  background: #fff;
}

@media screen and (max-width: 950px){
  .tag_list_wrap{
    padding: 20px;
    width: 100%;
    margin: 0 auto 70px auto;
  }
  .ttl_wrap .txt{
    font-size: 3.2rem;
    font-weight: 800;
  }
}
@media screen and (max-width: 767px){
  .tag_list_wrap{
    margin: 0 auto 50px auto;
  }
}

.tag_list_wrap h3{
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 900;
  color: #E4381D
}

#tagFilter.tag-filter{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow: hidden;
  transition: max-height .4s ease;
}

.tag-filter-item{
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  color: #4d4d4d;
  font-size: 1.2rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

@media screen and (max-width: 767px){
  .tag-filter-item{
    padding: 8px;
  }
}

.tag-filter-item.is-active {
  font-weight: 900;
  background-color: #f5f5f5;

}

.tag-filter-inner {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media screen and (max-width: 767px){
  .tag-filter-inner {
    gap: 2px;
  }
}

.tag-toggle-btn_wrap{
  text-align: right;
  margin-top: 12px;
  line-height: 1;
}

#toggleTags.tag-toggle-btn{
  display: inline-block;
  text-align: right;
  padding: 0;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 900;
  color: #E4381D;
  cursor: pointer;
  position: relative;
}

#toggleTags.tag-toggle-btn::before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  padding-right: 5px;
  width:0;
  height:0;
  border-style:solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #E4381D;
}

#toggleTags.tag-toggle-btn:hover {
  text-decoration: underline;
}

.post_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px 40px;
}

.post_list li{
  position: relative;
  aspect-ratio: auto!important;
}

.post_type_label{
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 5px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(10px, -40%);
}

.post_type_label span{
  min-width: 85px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 5px;
  position: relative;
}

.post_list li.post_type_post .img{
  border-radius: 10px;
}

.post_list li.post_type_post .post_type_label span{ 
  background: var(--cat-color);
}

.post_list li.post_type_post .img img{ 
  background: var(--cat-color);
  border-right: 4px solid var(--cat-color);
  border-bottom: 4px solid var(--cat-color);
}

.post_list li.post_type_obog .post_type_label span{ 
  background: #ffe054;
}

.post_list li.post_type_obog .img_wrap .img .img_inner img{
  border-right: 4px solid #ffe054;
  border-bottom: 4px solid #ffe054;
}

.post_list li.post_type_staff .post_type_label span{
  background: var(--staff-color);
}

.post_list li.post_type_staff .img_wrap .img .img_inner img{
  border-right: 4px solid var(--staff-color);
  border-bottom: 4px solid var(--staff-color);
}

.post_list li.post_type_koushi .post_type_label span{
  background: var(--koushi-color);
 }

.post_list li.post_type_koushi .img_wrap .img .img_inner img{
  border-right: 4px solid var(--koushi-color);
  border-bottom: 4px solid var(--koushi-color);
}

.post_list li.post_type_info .post_type_label span{ 
  background: var(--cat-color);
 }

.post_type_label span::before{
  content: "";
  display: block;
  width:0;
  height:0;
  border-style:solid;
  border-width: 10px 4px 0 4px;
  border-color: transparent transparent transparent transparent;
  position: absolute;
  left: 10px;
  bottom: -7px;
  transform: rotate(15deg) translateY(0%);
}

.post_list li.post_type_post .post_type_label span::before{ border-color: var(--cat-color) transparent transparent transparent; }
.post_list li.post_type_obog .post_type_label span::before{ border-color: #ffe054 transparent transparent transparent; }
.post_list li.post_type_staff .post_type_label span::before{ border-color: var(--staff-color) transparent transparent transparent; }
.post_list li.post_type_koushi .post_type_label span::before{ border-color: var(--koushi-color) transparent transparent transparent; }
.post_list li.post_type_info .post_type_label span::before{ border-color: var(--cat-color) transparent transparent transparent; }

.no_post{
  text-align: center;
  grid-column: 1 / -1;
}

@media screen and (max-width: 1200px){
  .post_list{
    grid-template-columns: 1fr 1fr;
  }
}

.post_list li.new::before{
  content: "";
  display: block;
  width: 28%;
  max-width: 58px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon_new.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-30%, -34%);
  z-index: 20;
}

.post_list li a{
  display: block;
  position: relative;
}

.post_list li .img_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
}

.post_list li .img_wrap .img{
  position: relative;
  overflow: hidden;
  transition: ease .3s;
  display: flex;
  align-items: flex-start;;
  justify-content: center;
  aspect-ratio: 4 / 5;
}

.post_list li.ratio-5-4 .img_wrap,
.post_list li.ratio-5-4 .img_wrap .img{
  aspect-ratio: auto;
}

.post_list li .img_wrap .img .img_inner{
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.post_list li .img_wrap .img .img_inner img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 10px;
  border-right: 4px solid var(--cat-color, #ddd);
  border-bottom: 4px solid var(--cat-color, #ddd);
}

.post_list li a:hover .img{
  filter: brightness(1.1);
}

@media screen and (max-width: 950px){
  .post_list{
    grid-template-columns: 1fr;
  }
  .post_list li .img_wrap,
  .post_list li .img_wrap .img{
    aspect-ratio: auto!important;

  }
}
@media screen and (max-width: 767px){
  .post_list{
    gap: 100px;
  }
  .post_list li.ratio-4-5{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.ratio-5-4{
  
}

.ratio-4-5{
  
}
/*
.ratio-5-4 img,
.ratio-4-5 img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain!important;
	margin: 0!important;
}
*/

.post_list li .title_wrap{
  
  line-height: 1;
  padding-right: 14px;
  position: absolute;
  left: -10px;
  bottom: 10px;
  text-align: left;
}

.post_list li .title_wrap time{
  display: inline-block;
  font-size: .8rem;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  background: #fff;
  border-radius: 3px 3px 0 0;
}

.post_list li .title_wrap h3{
  display: block;
  padding: 10px;
  line-height: 1.3;
  background: #fff;
  border-radius: 0 3px 3px 3px;
}

.post_list li .title_wrap h3 span{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  font-weight: 800;
}

.post_cate{
  min-width: 85px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 5px;
  position: absolute;
  top: 0;
  right: 0;
}

.post_cate a{
  padding: 5px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 5px;
  transform: translate(8%, -40%);
  position: relative;
}

.post_cate a::before{
  content: "";
  display: block;
  width:0;
  height:0;
  border-style:solid;
  border-width: 10px 4px 0 4px;
  border-color: transparent transparent transparent transparent;
  position: absolute;
  left: 10px;
  bottom: -7px;
  transform: rotate(15deg) translateY(0%);
}

.post_cate a::before {
  border-color: var(--tri-border, transparent transparent transparent transparent);
}

.post_tag{
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  line-height: 1.3;
}

.post_tag a{
  display: flex!important;
  flex-wrap: wrap!important;
  gap: 2px;
}

.post_tag span{
  font-size: 1rem;
}

.post_tag .tag-name{
  color: #4D4D4D;
}

.post_tag a:hover .tag-name{
  text-decoration: underline!important;
}

.btn_more{
  margin: 60px auto 0 auto;
  width: 230px;
  aspect-ratio: 462 / 128;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/btn_cloud.webp) no-repeat center center / contain;
  color: #E4381D;
  font-weight: 800;
  transition: ease .3s;
}

.btn_more:hover{
  opacity: 0.8;
}

.single_post_main{
  padding: 70px 0;
  background: var(--cat-color);
}

.single_post_inner{
  position: relative;
  margin: 0 30px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
}

@media screen and (max-width: 950px){
  .single_post_inner{
    margin: 0 20px;
    padding: 25px;
  }
}

.single_post_inner::before{
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 154 / 176;
  background: url(../img/icon_leaf2.webp) no-repeat center center / contain;
  position: absolute;
  top: 0;
  left: 40px;
  transform: translateY(-100%);
}

.single_post_flex::after {
  content: "";
  display: block;
  clear: both;
}

.single_post_flex .img{
  float: left;
  width: 45%;
  margin-right: 24px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.single_post_flex .img img{
  border-radius: 10px;
}

@media screen and (max-width: 950px){
  .single_post_flex .img{
    float: none;
    width: 100%;
  }
}

.single_post_cate{
  display: flex;
  text-align: center;
  border-radius: 5px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-130%);

}

.single_post_cate .cat_baloon,
.post_cat{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  color: var(--tri-border);
  font-size: 1.6rem;
  font-weight: 800;
  border-radius: 5px;
  position: relative;
  background: #fff;
  pointer-events: none;
}

.single_post_cate .cat_baloon::before{
  content: "";
  display: block;
  width:0;
  height:0;
  border-style:solid;
  border-width: 10px 4px 0 4px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  left: 15%;
  bottom: -7px;
  transform: rotate(15deg) translateY(0%);
}

.single_post_cate .cat_baloon .sep{
  padding: 0 3px;
}

.single_post_flex .txt{
  transform:rotateZ(0.03deg);
}

.single_post_flex .txt time{
  display: block;
  font-size: 1rem;
  line-height: 1;
}

.single_post_flex .txt h1{
  margin: 5px 0 10px 0;
  font-size: 2.1rem;
  line-height: 1.4;
}

.single_post_flex .txt h2.wp-block-heading{
  margin-top: 20px;
}

.single_post_flex .txt h3.wp-block-heading{
  margin-top: 20px;
}

.single_post_flex .txt .wp-block-list,
.single_post_flex .txt p{
  margin-bottom: 20px;
}

.single_post_flex .txt p a{
  text-decoration: underline;
}

.single_post_flex .txt p a:hover{
  text-decoration: none;
  color: #008442;
}

@media screen and (max-width: 1100px){
  .single_post_flex{
   grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px){
  .single_post_inner::before{
    width: 32px;
    left: 13px;
  }
  .single_post_cate span::before{
     left: 40%;
  }
  .single_post_flex .txt h1{
    font-size: 1.6rem;
  }
}

.btn-wakuwaku{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  line-height: 26px;
  gap: 0.4em;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid #FA7514;
  background: #fff;
  color: #FA7514;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .1s ease, background .2s ease, opacity .2s ease;
  margin: 10px 0 15px auto;
  overflow: hidden;
}

.btn-wakuwaku::before{
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 100 / 113;
  background: url(../img/icon_soil.webp) no-repeat center center / contain;
  transform: translateY(-30%);
  margin-right: 4px;
}

.btn-wakuwaku.is-active::before{
  background-image: url(../img/icon_leaf.webp);
  transform: translateY(0%);
}

.btn-wakuwaku .wakuwaku-count{
  margin-left: 3px;
}

.btn-wakuwaku .wakuwaku-count:empty{
  margin-left: 0;
}

.btn-wakuwaku.is-active {
  background: #FA7514;
  color: #fff;
}

.btn-wakuwaku.is-disabled {
  cursor: default;
  pointer-events: none;
}

.other_img_wrap{
  margin-top: 50px;
}

.splide__list {
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.addimg_wrap {
  --addimg-gap: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--addimg-gap);
}

.addimg_item{
  flex: 0 0 calc((100% - (var(--addimg-gap) * 2)) / 3);
  min-height: 100%!important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.addimg_img img{
  border-radius: 10px;
}

.addimg_txt{
  width: 90%;
  margin: 0 auto;
  font-size: 1rem;
  transform:rotateZ(0.03deg);
  line-height: 1.4;
  padding: 8px;
  background: #fff;
  border: 1px solid #736C66;
  border-radius: 5px;
  transform: translateY(-50%);
}

.splide__arrow{
  cursor: pointer!important;
}

.other_img_slider .splide__pagination {
  position: static;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.other_img_slider .splide__pagination__page {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  opacity: 1;
  background: #E9EEF4;
  border: 1px solid #E9EEF4;
}

.other_img_slider .splide__pagination__page.is-active {
  opacity: 1;
  transform: scale(1.2);
  background: #fff;
}

#petit-info-splide .splide__pagination__page{
  background: #fff;
  border: 1px solid #fff;
}
#petit-info-splide .splide__pagination__page.is-active {
  border: 1px solid #fff;
}
#petit-info-splide.is-few-slides .splide__list{
  justify-content: center!important;
}

@media screen and (max-width: 767px){
  .other_img_wrap{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .addimg_wrap {
    --addimg-gap: 12px;
  }
  .addimg_wrap .addimg_item {
    flex: 0 0 calc(50% - (var(--addimg-gap) / 2));
  }
}

.otoku_list_wrap{
  margin-top: 60px;
}

.otoku_list_wrap_off{
  min-height: 60px;
}

.otoku_list_wrap h2{
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
}

.otoku_list{
  padding: 30px 0 30px 0;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px){
  .otoku_list{
    padding: 30px 15px;
    margin-bottom: 60px;
  }
}

.petit-card {
  display: flex;
  align-items: stretch;
}

.petit-card__inner {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

@media (min-width: 768px){
  #petit-info-splide .petit-card__inner {
    width: min(100%, 380px);
  }
}

.petit-card__logo {
  flex: 0 1 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  /*border: 1px solid #eee;*/
}

.petit-card__logo img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.petit-card__inner .txt_wrap{
  flex: 1 1 0%;
}

.petit-card__title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

.petit-card__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 6px;
  flex-grow: 1;
}

.petit-card__links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.petit-card__links a{
  flex: 0 1 22px;
  display: block;
  line-height: 1;
}

.petit-card__links a:hover{
  filter: brightness(1.2);
}

.petit-info .splide__pagination {
  margin-top: 16px;
}

.petit-info .splide__pagination__page {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  opacity: .5;
}

.petit-info .splide__pagination__page.is-active {
  width: 18px;
  opacity: 1;
}

@media (max-width: 800px) {
  .petit-info {
    padding: 30px 0 40px;
  }
  #petit-info-splide.is-few-slides .splide__list{
    justify-content: center;
  }
  .petit-info__title {
    font-size: 18px;
  }

  .petit-card__inner {
    padding: 16px 16px 12px;
    min-height: 0; /* スマホは高さ縛りゆるめ */
  }

  .petit-card__title {
    font-size: 13px;
  }

  .petit-card__text {
    font-size: 11px;
  }
}

.related_wrap{
  position: relative;
  background: #fff;
}

.related_wrap::before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 860 / 120;
  background: url(../img/top_cloud.webp) no-repeat center top / 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(calc(-100% + 1px));
}

.related_wrap h2{
  text-align: center;
  margin-bottom: 60px;
}

.related_wrap h2 img{
  width: auto;
}

.related_wrap_in{
  padding: 0 50px 100px 50px;
  background: #fff;
  text-align: center;
}

.related_wrap_in .post_list li{
  aspect-ratio: auto;
}

@media screen and (max-width: 767px){
  .related_wrap::before{
    background: url(../img/top_cloud_sp.webp) no-repeat center top / 100% auto;
  }
  .related_wrap .post_list{
    gap: 50px;
  }
}

.post_nav{
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  line-height: 1;
  font-size: .8rem;
  text-align: center;
}

.post_nav a{
  display: block;
  color: #E4381D;
}

.post_nav a:hover{
  opacity: 0.8;
}

.post_nav .post-nav-prev a::before,
.post_nav .post-nav-next a::before{
  content: "";
  display: block;
  margin: 0 auto 5px auto;
  width:0;
  height:0;
  border-style:solid;
}

.post_nav .post-nav-prev a::before{
  border-width: 7px 12.1px 7px 0;
  border-color: transparent #FF0000 transparent transparent;
}

.post_nav .post-nav-next a::before{
  border-width: 7px 0 7px 12.1px;
  border-color: transparent transparent transparent #FF0000;
}

.btn_img a{
  display: inline-block;
}

.btn_img a img{
  width: auto;
  transition: ease .3s;
}

/* --------------------------------------------------------------
 * 404
 * -------------------------------------------------------------- */
.error404_body{
  padding: 110px 30px 180px 30px;
  text-align: center;
  line-height: 1.5;
  font-size: 1.8rem;
}

.error404_body .img404{
  display: block;
  width: min(100%, 375px);
  margin: 0 auto;
}

.error404_body h1{
  font-size: 2.8rem;
  margin: 80px 0 20px 0;
}

.btn_green{
  margin-top: 60px;
}

.btn_green a{
  display: inline-block;
  padding: 5px 20px;
  font-size: 1.6rem;
  color: #fff;
  background: #008442;
  border: 1px solid #008442;
  border-radius: 9999px;
}

.btn_green a:hover{
  color: #008442;
  background: #fff;
}

@media screen and (max-width: 1000px){
  .error404_body h1{
    font-size: 2rem;
    margin: 80px 0 20px 0;
  }
  .error404_body{
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px){
  .error404_body .img404{
    width: 85%;
  }
  .error404_body h1{
    font-size: 1.8rem;
    margin: 50px 0 20px 0;
  }
  .error404_body{
    font-size: 1.1rem;
  }
  .btn_green{
    margin-top: 50px;
  }
  .btn_green a{
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------
 * default_page_body
 * -------------------------------------------------------------- */
.default_page_body{
  padding: 0 40px 200px 40px;
  background: #fff;
}

.sec{
  padding: 50px 0;
}

.def_title{
  margin-bottom: 40px;
  padding: 35px 0;
  text-align: center;
  line-height: 1.3;
  font-size: 4.2rem;
  font-weight: 800;
  color: #008442;
  border-bottom: 1px solid #008442;
}

.page-post-list .def_title{
  margin-bottom: 80px;
}

.default_page_body h2{
  text-align: center;
  letter-spacing: 0.05em;
  margin: 50px auto;
  font-size: 2.4rem;
}

.default_page_body .sec h2{
  margin-top: 0;
}

.default_page_body h3{
  margin-top: 30px;
  font-size: 1.6rem;
}

.default_page_body p,
.default_page_body .wp-block-list{
  margin-bottom: 20px;
}

.kiyaku_body .wp-block-list{
  margin-bottom: 0px;
}

.policy_add{
  padding-left: 2em;
}

@media screen and (max-width: 767px){
  .default_page_body{
    padding: 0 20px 100px 20px;
  }
  .default_page_body h1{
    padding: 25px 0;
    font-size: 2rem;
  }
  .default_page_body h2{
    margin: 25px 0;
    font-size: 2rem;
  }
  .default_page_body h3{
    margin-top: 30px;
    font-size: 1.4rem;
  }
  .default_page_body p,
  .default_page_body .wp-block-list{
    margin-bottom: 1.5em;
  }
  .policy_add{
    padding-left: 1em;
  }
}

/* --------------------------------------------------------------
 * school
 * -------------------------------------------------------------- */
.school_body{
  padding: 0 0 90px 0;
  background: #fff;
}

.school_body .mv{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1709 / 893;
  padding: 0 9% 15% 9%;
  background: url(../img/school/mv.webp) no-repeat center center / contain;
}

.school_body .mv h1{
  width: min(100%, 312px);
}

@media screen and (max-width: 950px){
  .school_body .mv{
    align-items: flex-start;
    aspect-ratio: 750 / 868;
    padding: 13vw 0 0 0;
    background: url(../img/school/mv_sp.webp) no-repeat center center / contain;
  }
  .school_body .mv h1{
    width: 84vw;
  }
}

.school_about h2{
  margin: 0 0 0 12%;
  line-height: 1;
  font-weight: 800;
  font-size: 3.2rem;
}

.school_about{
  position: relative;
}

.school_about::before,
.school_about::after{
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
}

.school_about::before{
  width: 9.3%;
  aspect-ratio: 154 / 327;
  background: url(../img/school/school_about_l.webp) no-repeat center top / contain;
  top: 25px;
  left: 3%;
}

.school_about::after{
  width: 11%;
  aspect-ratio: 193 / 376;
  background: url(../img/school/school_about_r.webp) no-repeat center top / contain;
  top: 10px;
  right: 3%;
}

.school_about .txt{
  margin-top: 40px;
  padding: 0 20px;
  text-align: center;
  position: relative;
  line-height: 2;
  z-index: 1;
}

.school_about p span{
  padding: 0 2px;
  background-color: #FEFA70;
}

.school_about .img{
  margin-top: 30px;
  height: 203px;
  background: url(../img/school/about.webp) no-repeat center center / auto 100%;
}

.school_body .btn_orange{
  margin: 25px 8% 0 auto;
  text-align: right;
}

.school_body .btn_orange a{
  display: inline-block;
  padding: 10px 24px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: #FA7514;
  border: 2px solid #FA7514;
  border-radius: 10px;
}

.btn_orange a:hover{
  color: #FA7514;
  background: #fff;
}

.school_obog{
  padding: 60px 0 90px 0;
  background: url(../img/school/obog_bg.webp) no-repeat center center / 100% 100%;
}

.school_body .ttl_wrap2{
  display: inline-block;
  text-align: center;
  margin: 0 0 30px 12%;
  line-height: 1;
}

.school_body .ttl_wrap2 p{
  font-size: 1.2rem;
}

.school_body .ttl_wrap2 h2{
  margin-top: 3px;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 800;
}

.school_body .ttl_wrap2 h2 span{
  display: inline-block;
  font-size: 2.4rem;
}

.school_obog .txt,
.school_koushi .txt{
  margin-bottom: 40px;
  padding: 0 20px;
  text-align: center;
  position: relative;
  line-height: 2;
  z-index: 1;
}

.school_boshu{
  margin-top: 40px;
}

.school_boshu .bn_13kisei{
  width: min(73%, 500px);
  margin: 0 auto;
  transform: translateY(-25%);
}

.school_boshu .bn_13kisei a{
  display: block;
  position: relative;
}

.school_boshu .bn_13kisei a img{
  transition: ease .3s;
}

.school_boshu .bn_13kisei a:hover img{
  filter: brightness(1.1);
}

.school_boshu .bn_13kisei a::before{
  content: "";
  display: block;
  width: 140px;
  aspect-ratio: 140 / 76;
  background: url(../img/school/signboard.svg) no-repeat center top / contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-70px,-43px);
  z-index: 2;
}

@media screen and (max-width: 980px){
  .school_boshu .bn_13kisei{
    transform: translateY(-18vw);
  }
  .school_boshu .bn_13kisei a::before{
    width: 32vw;
    transform: translate(-9vw,-12vw);
  }
}

/* --------------------------------------------------------------
 * obog
 * -------------------------------------------------------------- */
.obog_body{
  padding: 30px 50px 130px 50px;
  background: url(../img/obog/bg.webp) repeat-y center -40px / 100% auto;
  background-color: #fff;
}

.obog_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.68%;
}

.obog_list li .img{
  display: flex;
  justify-content: center;
  aspect-ratio: 4 / 5;
}

.obog_list li .img .img_inner{
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.obog_list li .img img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 10px;
}

.obog_list li .img:hover{
  filter: brightness(1.1);
}

@media screen and (max-width: 1100px){
  .obog_list{
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 950px){
  .obog_list{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .obog_list li .img{
    aspect-ratio: auto;
  }
}

.btn_cloud{
  width: 230px;
  text-align: center;
  margin: 60px auto 0 auto;
}

.single_body{
  padding-bottom: 60px;
  background: #fff;
}

.btn_cloud a{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 462 / 128;
  background: url(../img/btn_cloud.webp) no-repeat center center / contain;
  color: #E4381D;
  font-weight: 800;
}

.btn_cloud a:hover{
  opacity: 0.8;
}

/*single obog/staff/koushi*/
.single_prof_body{
  padding: 30px 50px 160px 50px;
}

.single-staff .single_prof_body{
  background: url(../img/bg_dot.webp) repeat center top var(--staff-color);
}

.single-info .single_info_body{
  background-color: var(--cat-color);
}

.single-koushi .single_prof_body{
  background: url(../img/koushi/single_bg.webp) no-repeat center top var(--koushi-color);
}

.single-obog .single_prof_body{
  background: url(../img/obog/single_bg.webp) repeat-y center -40px / 100% auto;
  background-color: #FFFDDA;
}

.koushi-staff .single_prof_body .ttl_wrap,
.single-staff .single_prof_body .ttl_wrap,
.single-koushi .single_prof_body .ttl_wrap{
  margin-bottom: 40px;
  color: #fff;
}

.koushi-staff .single_prof_body .ttl_wrap .jp span,
.single-staff .single_prof_body .ttl_wrap .jp span,
.single-koushi .single_prof_body .ttl_wrap .jp span{
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 950px){
  .single_prof_body{
    padding: 25px 20px 110px 20px;
  }
}

.single_prof_wbox{
  padding: 20px 25px;
  background: #fff;
  border-radius: 25px;
}

.single_prof{
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 3%;
}

.single_prof .txt{
  font-weight: 500;
}

.single_prof .staff_area{
  margin-top: 6px;
}

.single_prof .staff_area span{
  display: inline-block;
  padding: 1px 14px;
  font-size: 1.2rem;
  color: #fff;
  background: #BC8450;
  border-radius: 5px;
}

.name_adana_wrap{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
}

.single_prof .txt p.tt{
  color: #BC8450;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
}

.single_prof .txt p.tt::after {
  content: "";
  flex-grow: 1;
  margin-left: 1em;
  border-top: 1px solid #BC8450;
}

.single_prof .txt h1{
  font-size: 2.8rem;
  font-weight: 500;
}

.single_prof .img img{
  border-radius: 10px;
}

.adana_wrap{
  position: relative;
  line-height: 1.2;
  font-weight: 900;
}

.adana_wrap .adana_tt{
  display: inline-block;
  padding: 3px 7px;
  font-size: 1rem;
  color: #BC8450;
  background: #fff;
  position: absolute;
  top: 0;
  left: 7px;
  transform: translateY(-50%);
  z-index: 2;
}

.adana_wrap .adana_txt{
  display: inline-block;
  padding: 10px 25px 7px 25px;
  font-size: 1.2rem;
  border: 1px solid #BC8450;
}

@media screen and (max-width: 1000px){
  .single_prof{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .single_prof .txt h1{
    font-size: 2.4rem;;
  }
}

.single_prof .list1{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.single_prof .list1 > li,
.single_prof .list2 > li{
  position: relative;
  margin: 5px 0;
  padding-left: 18px;
  background: url(../img/icon_star.svg) no-repeat left center;
}

.single_prof .list1 > li span,
.single_prof .list2 > li span{
  display: inline-block;
  margin-right: 10px;
  color: #BC8450;
  font-weight: 800;
}

.single_prof .list2 > li > a:hover{
  text-decoration: underline;
}

.single_prof .list2 > li{
  display: grid;
  grid-template-columns: 3.5em 1fr;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
  position: relative;
}

.single_prof .list2 > li + li{
  margin-top: 20px;
}

.url_anywhere{
  overflow-wrap: anywhere;
}

.sns_list{
  display: flex;
  align-items: center;
  gap: 20px;
}

.sns_list li{
  flex: 0 1 35px;
}

.sns_list li a {
  display: block;
}

.single_interview h3 {
  color: #BC8450;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  transform: rotateZ(0.03deg);
  transform-origin: 0 0;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 25px 0 10px 0;
}

.single_interview h3::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #BC8450;
  margin-right: 0.6em;
  flex-shrink: 0;
}

.single_interview h3::after {
  content: "";
  flex-grow: 1;
  margin-left: 1em;
  border-top: 1px solid #BC8450;
}

.single_interview h4 {
  font-size: 2rem;
  font-weight: 500;
  transform: rotateZ(0.03deg);
  transform-origin: 0 0;
}

.single_interview p{
  font-weight: 500;
}

.saibai_wrap{
  display: flex;
  gap: 35px;
}

.saibai_wrap .txt{
  flex: 1 1 0%;
  font-weight: 500;
}

.saibai_wrap .img{
  flex: 0 1 257px;
}

.saibai_wrap .img img{
  border-radius: 10px;
}

@media screen and (max-width: 1100px){
  .saibai_wrap{
    gap: 20px;
  }
  .saibai_wrap .img{
    flex: 0 1 180px;
  }
}
@media screen and (max-width: 1000px){
  .saibai_wrap .img{
    flex: 0 1 180px;
  }
}
@media screen and (max-width: 950px){
  .saibai_wrap{
    display: block;
  }
  .saibai_wrap .img{
    margin-top: 20px;
  }
}

.single_interview .post_tag{
  margin-top: 15px;
  justify-content: flex-end;
}

.single-obog main, 
.single-staff main{
  padding-bottom: 100px;
  background: #fff;
}

.recommend_sec{
  margin: 0;
  padding: 0 50px;
  position: relative;
  background: #fff;
}

.recommend_sec::before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 860 / 120;
  background: url(../img/top_cloud.webp) no-repeat center top / 100% 100%;
  position: absolute;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
}

.recommend_sec h2{
  width: min(100%, 320px);
  margin: 0 auto 60px auto;
}

.recommend_sec .post_list{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px 40px;
}

.recommend_sec .post_list li{
  flex: 0 1 30%;
}

@media screen and (max-width: 950px) {
  .single-staff main{
    padding-bottom: 80px;
  }
  .recommend_sec{
    padding: 0 20px;
  }
  .recommend_sec .post_list{
    flex-direction: column;
    gap: 40px;
  }

  .recommend_sec .post_list li{
    width: min(60%, 250px);
    margin: 0 auto;
    
  }
}

/* --------------------------------------------------------------
 * staff
 * -------------------------------------------------------------- */
.staff_body{
  padding: 30px 50px 130px 50px;
  background: url(../img/bg_dot2.webp) repeat center top;
  background-color: #fff;
}

.staff_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 3.68%;
}

.staff_list li .img{
  display: flex;
  justify-content: center;
  aspect-ratio: 4 / 5;
}

.staff_list li .img .img_inner{
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.staff_list li .img img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 10px;
}

.staff_list li .img:hover{
  filter: brightness(1.1);
}

@media screen and (max-width: 1100px){
  .staff_list{
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 950px){
  .staff_list{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .staff_list li .img{
    aspect-ratio: auto;
  }
}


/* --------------------------------------------------------------
 * koushi
 * -------------------------------------------------------------- */
.koushi_body{
  padding: 30px 50px 130px 50px;
  background: url(../img/koushi/bg.webp) repeat-y center top / 100% auto;
  background-color: #fff;
}

.koushi_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 2.9%;
}

@media screen and (max-width: 1100px){
  .koushi_list{
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 950px){
  .koushi_list{
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.koushi_splide li .img,
.ogob_splide li .img,
.splide__list li .img,
.koushi_list li .img{
  display: flex;
  justify-content: center;
  aspect-ratio: 4 / 5;
}

#index_post_pickup .splide__list li .img{
  aspect-ratio: auto;
}

.koushi_splide li .img .img_inner,
.ogob_splide li .img .img_inner,
.splide__list li .img .img_inner,
.koushi_list li .img .img_inner{
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.koushi_splide li .img .img_inner img,
.ogob_splide li .img .img_inner img,
.splide__list li .img .img_inner img,
.koushi_list li .img .img_inner img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 10px;
}

.koushi_list li .img:hover{
  filter: brightness(1.1);
}

/* --------------------------------------------------------------
 * about
 * -------------------------------------------------------------- */
.about_body h2{
  text-align: left;
  letter-spacing: 0.05em;
  margin: 30px 0 0 0;
  font-size: 2.4rem;
}

.about_body h3{
  font-size: 1.4rem;
}

.about_body p, .about_body li{
  font-size: 1.4rem;
}

.ex_block p{
  margin-bottom: 0;
}

.ex_block .wp-block-list{
  margin-left: 1em;
}

@media screen and (max-width: 950px){
  .ex_block.is-layout-flex{
    display: block;
  }
}

 /* --------------------------------------------------------------
 * company
 * -------------------------------------------------------------- */
.company_body .company_sec{
  padding: 50px 0 0 0;
}

.company_body h2 {
  margin: 0 0 50px 0;
  color: #008442;
}

.sub_nav{
  margin: 20px!important;
  padding: 0!important;
  display: flex;
  gap: 30px;
  list-style-type: none!important;
}

.sub_nav li::marker {
  content: none!important;
  display: none;
}

ul.sub_nav li a{
  padding: 5px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #008442;
  background: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  border: 1px solid #008442;
}

.sub_nav li{
  margin: 0!important;
}

.sub_nav li a::before{
  content: "";
  display: inline-block;
  width: 16px;
  aspect-ratio: 16 / 11;
	background: #008442;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/icon_arrow_down.svg);
	mask-size: contain;
  transition: ease .3s;
}

.sub_nav li a:hover{
  color: #fff;
  background: #008442;
}

.sub_nav li a:hover::before{
	background: #fff;
}

@media screen and (max-width: 950px){
  .sub_nav{
    margin: 20px 10px!important;
    gap: 15px;
  }
  ul.sub_nav li a{
    padding: 5px 15px;
    gap: 10px;
    font-size: 1.2rem;
  }
  .sub_nav li a::before{
    width: 10px;
  }
}

.overview_tb{
  display: grid;
  grid-template-columns: 200px 1fr;
}

.overview_tb dt, .overview_tb dd{
  padding: 15px 0;
  margin: 0;
  font-weight: 500;
  font-size: 2rem;
  transform: rotateZ(0.03deg);
  transform-origin: 0 0;
  border-bottom: 1px solid #736C66;
}

.overview_tb dt {
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.btn_green_line{
  margin: 0!important;
  display: inline-block;
  min-width: 180px;
}

.btn_green_line a{
  padding: 5px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #008442;
  background: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  border: 1px solid #008442;
}

.btn_green_line a::before{
  content: "";
  display: inline-block;
  width: 16px;
  aspect-ratio: 16 / 11;
	background: #008442;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/icon_arrow_down.svg);
	mask-size: contain;
  transform: rotate(-90deg);
  transition: ease .3s;
}

#message p{
  font-size: 1.8rem;
  transform: rotateZ(0.03deg);
  transform-origin: 0 0;
  margin-bottom: 1.5em;
}

#message .img_right{
  float: right;
  margin: 0 0 1.5em 1.5em;
  width: 280px;
}

@media screen and (max-width: 1050px){
  .overview_tb{
    grid-template-columns: 150px 1fr;
  }
  .overview_tb dt, .overview_tb dd{
    padding: 15px 0;
    font-size: 1.6rem;
  }
  .overview_tb dt {
    padding-left: 0;
  }
  #message .img_right {
    float: none;
    display: block;
    margin: 0 auto 20px;
    width: min(100%, 400px);
  }
  #message p{
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 950px){
  .overview_tb{
    grid-template-columns: auto 1fr;
  }
  .overview_tb dt, .overview_tb dd{
    padding: 10px 0;
    font-size: 1.2rem;
  }
  .overview_tb dt{
    padding-right: 15px;
  }
  .btn_green_line{
    min-width: auto;
  }
  .btn_green_line a{
    padding: 8px 15px;
    font-size: 1.2rem;
  }
  .btn_green_line a::before{
    width: 10px;
  }
  #message .img_right {
    width: 100%;
  }
  #message p{
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}

 /* --------------------------------------------------------------
 * work
 * -------------------------------------------------------------- */
.work_body{
  padding: 40px 40px 130px 40px;
}

.work_list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.work_list li a{
  display: block;
  padding: 40px;
}

.work_list .img_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.work_list .img{
  margin: 0 auto;
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
  aspect-ratio: 1 / 1;
}

.work_list li .img .img_inner{
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.work_list li .img .img_inner img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 5px;
}

@media screen and (max-width: 1200px){
  .work_list li a{
    padding: 20px 0;
  }
}
@media screen and (max-width: 950px){
  .work_body{
    padding: 40px 20px 130px 20px;
  }
  .work_list{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .work_list li .img_wrap{
    aspect-ratio: auto!important;
    height: auto!important;
    margin-bottom: 10px;
  }
  .work_list li .img{
    width: 100%;
    height: auto;
  }
  .work_list li .img.ratio-5-4{
    aspect-ratio: auto!important;
  }
}

.work_list li time{
  display: block;
  font-size: 1rem;
}

.work_list li h3{
  margin-bottom: 5px;
  font-size: 1.6rem;
  border-bottom: 1px solid #008442;
}

.work_list li .excerpt{
  margin: 0;
  font-size: 1.4rem;
}

.single_work_img img{
  border-radius: 15px;
}

.single_work_time{
  display: block;
  text-align: right;
  margin-bottom: 40px;
}

.single_work_body .def_title{
  text-align: left;
  padding-top: 0;
  margin-bottom: 15px;
  font-size: 3.2rem;
}

@media screen and (max-width: 767px){
  .single_work_body .def_title{
    font-size: 2.1rem;
  }
}

.article_body .single_work_time{
  margin-bottom: 40px;
}

.article_body h2{
  margin: 60px 0 20px 0;
  text-align: left;
  font-size: 2rem;
  transform: rotateZ(0.03deg);
  transform-origin: 0 0;
}

.article_body h3{
  margin: 30px 0 10px 0;
  text-align: left;
  font-size: 1.8rem;
}

.article_body h4{
  margin: 30px 0 10px 0;
  text-align: left;
  font-size: 1.6rem;
}

.article_body .wp-block-image img{
  border-radius: 5px;
}

.article_body a{
  text-decoration: underline;
}

.article_body a:hover{
  text-decoration: none;
}



 /* --------------------------------------------------------------
 * info
 * -------------------------------------------------------------- */
.info_body{
  padding: 40px 40px 130px 40px;
}

.info_body .def_title{
  color: #E4381D;
  border-bottom: 1px solid #E4381D;
  margin-bottom: 30px;
}

.info_list li{
  margin-top: 20px!important;
  display: grid!important;
  grid-template-columns: 150px 1fr!important;
  align-items: center!important;
  gap: 20px!important;
  background: #fff!important;
  padding: 20px!important;
  border-radius: 10px!important;
  line-height: 1.3!important;
  position: relative!important;
}

.info_list li .img_wrap{
  aspect-ratio: 1 / 1;
  
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
}

.info_list li .img{
  width: 150px;
  height: 150px;
  aspect-ratio: 1 / 1;
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
}

.info_list li .img .img_inner{
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.info_list li .img .img_inner img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 5px;
}

.info_list li:hover .img{
  filter: brightness(1.1)!important;
}

.info_list li .info_cate a{
  padding: 3px 12px!important;
  color: #fff!important;
  font-size: 1rem!important;
  font-weight: 800!important;
}

.info_list li time{
  font-size: 1rem!important;
  font-weight: 500!important;
  display: block!important;
  margin: 5px 0!important;
}

.info_list li h3{
  font-size: 1.8rem!important;
  margin: 0 0 5px 0!important;
}

.info_list li h3 a.wrap{
  z-index: 1;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
}

.info_list li h3 a::after{
	content:""!important;
  position: absolute!important;
  top: 0!important;
  right: 0!important;
  bottom: 0!important;
  left: 0!important;
  z-index: 1!important;
  pointer-events: auto!important;
	background-color: rgba(0,0,0,0)!important;
}

.info_list li .excerpt{
  font-size: 1.4rem!important;
}

.info_list li .post_tag{
  position: relative!important;
  z-index: 10!important;
  font-weight: 500!important;
}

@media screen and (max-width: 950px){
  .info_list li{
    grid-template-columns: 1fr!important;
    gap: 10px!important;
  }
  .info_list li .img_wrap{
    aspect-ratio: auto!important;
    height: auto!important;
  }
  .img_wrap .ratio-4-5{
    width: 80%;
  }
  .info_list li .img{
    width: 100%;
    height: auto;

  }
  .info_list li .img.ratio-5-4{
    aspect-ratio: auto!important;
  }
  .info_list li h3{
    font-size: 1.6rem!important;
  }
  .info_list li .excerpt{
    font-size: 1.2rem!important;
  }
}
@media screen and (max-width: 767px){
  .info_list li{
    padding: 10px!important;
  }
}

/* --------------------------------------------------------------
 * features
 * -------------------------------------------------------------- */
.features_body{
  padding: 30px 0 130px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.features_body::before{
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/features/bg.webp) no-repeat center bottom / 100% auto;
}

.features_body .ttl_wrap{
  position: relative;
  z-index: 1;
}

.features_body .features_img{
  margin: 30px 0;
  height: 203px;
  background: url(../img/features/img_01.webp) no-repeat center center / auto 100%;
  position: relative;
  z-index: 1;
}

.features_about{
  padding: 0 50px;
}

.features_about_flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.features_about_flex + .features_about_flex{
  margin-top: 40px;
}

.features_about_inner{
  flex: 1 1 0%;
  border: 1px solid 3px;
}

.features_about_inner h2{
  display: inline-block;
  padding: 0 12px;
  font-size: 2rem;
  color: #fff;
  background: #008442;
  border-radius: 10px 10px 0 0;
}

.features_about_inner h2 span{
  font-size: 1.4rem;
}

.features_about_inner h3{
  margin: 20px 0 20px 0;
  padding-bottom: 3px;
  line-height: 1.4;
  font-weight: 500;
  font-size: 2.4rem;
  color: #008442;
  border-bottom: 1px solid #008442;
}

.features_about_inner .txt{
  flex: 1 1 0%;
  padding: 15px 20px;
  font-size: 1.6rem;
  background: #fff;
  position: relative;
}

.features_about_inner.with_leaf .txt::before{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio: 54 / 61;
  background: url(../img/features/leaf_w.webp) no-repeat center top / contain;
  position: absolute;
  top: 0;
  right: 40px;
  transform: translateY(-100%);
}

@media screen and (max-width: 1150px){
  .features_about_inner.with_leaf .txt::before{
    right: 0;
  }
}
@media screen and (max-width: 1050px){
  .features_about_inner.with_leaf .txt::before{
    right: 30px;
  }
}

.features_about_flex .img{
  flex: 0 1 280px;
}

.features_about_flex .img img{
  border-radius: 10px;
}

.features_body .ttl_c_border{
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
  text-align: center;
  line-height: 1;
  color: #008442;
  margin: 40px 0;
}

.features_body .ttl_c_border::before,
.features_body .ttl_c_border::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #008442;
}

.features_body .ttl_c_border .jp{
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 10px 0!important;
}

.features_body .ttl_c_border .jp span{
  display: inline-block;
}

.features_body .ttl_c_border .txt{
  font-size: 3.2rem;
  font-weight: 900;
}

.features_body .ttl_c_border .txt span{
  font-size: 75%;
  padding: 0 2px;
}

@media screen and (min-width: 1051px){
  .features_about_flex + .features_about_flex .img{
    order: -2;
  }
}
@media screen and (max-width: 1050px){
  .features_about_flex{
    display: block;
  }
  .features_about_flex .img{
    width: 65%;
    transform: translate(15px, -15px);
  }
  .features_about_inner .txt{
    padding: 15px 20px 25px 20px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 950px){
  .features_body{
    padding: 30px 0 80px 0;
  }
  .features_body .ttl_c_border{
    width: 100vw;
    gap: 10px;
    transform: translateX(-20px);
  }
  .features_body .ttl_c_border .jp{
    font-size: 1.1rem;
  }
  .features_body .ttl_c_border .txt{
    font-size: 3rem;
  }
  .features_about {
    padding: 0 20px;
  }
  .features_about_inner h3{
    font-size: 2rem;
    text-align: right;
  }
}

/* --------------------------------------------------------------
 * contact
 * -------------------------------------------------------------- */
.contact_body {
  padding-bottom: 100px;
}

.form_wrap{
  margin-top: 50px;
  font-size: 1.4rem;
  padding: 40px 6%;
  background: #F0F0F0;
}

.form_wrap table{
  width: 100%;
}

.form_wrap table th,
.form_wrap table td{
  vertical-align: middle;
  font-weight: 500;
  text-align: left;
}

.form_wrap table th{
  white-space: nowrap;
}

.form_wrap table th p{
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 1.4rem;
}

.form_wrap span.req{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  background: #E4381D;
}

.form_wrap span.req.no_req{
  color: #E4381D;
  background: none;
  border: 1px solid #E4381D;
}

.form_wrap table td{
  padding: 10px 0 10px 25px;
}

.form_wrap table th p{
  font-size: 1.4rem;
}

@media screen and (max-width: 1150px){
  .form_wrap table th,
  .form_wrap table td{
    display: block;
    width: auto;
  }
  .form_wrap table th{
    white-space: normal;
  }
  .form_wrap table th p{
    justify-content: flex-start;
    gap: 10px;
  }
  .form_wrap table td{
    padding: 10px 0 20px 0;
  }
}
@media screen and (max-width: 950px){
  .contact_body{
    padding: 30px 20px 100px 20px;
  }
}

/* --------------------------------------------------------------
* home
* -------------------------------------------------------------- */
#index_post_pickup{
  padding: 60px 0 120px 0;
  background: #FEFB94;
}

#index_post_pickup .splide__pagination__page {
  background: #E4381D;
  border: 1px solid #E4381D;
}

.splide__slide {
  padding: 0;
}

#index_post_pickup .post_list{
  padding-top: 13px!important;
  gap: 0;
}

#index_post_pickup .post_list.static_post_list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#index_post_pickup .post_list.static_post_list li{
  flex: 0 1 267px;
}

#topSplide.no-slider .splide__track {
  overflow: visible;
}

#topSplide.no-slider .splide__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#topSplide.no-slider .splide__slide {
  flex: 0 1 267px;
  max-width: 267px;
}

@media screen and (max-width: 950px){
  #index_post_pickup .post_list.static_post_list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  #index_post_pickup .post_list.static_post_list li{
    flex: 0 1 267px;
    margin: 0!important;
  }
}

#index_new{
  padding: 0 30px 130px 30px;
  background: url(../img/bg_grid.webp) repeat center top #f1f1f1;
}

#index_new .ttl_wrap{
  margin-bottom: 0;
  transform: translateY(-75%);
}

#index_new .post_list {
  gap: 40px;
}

#index_school{
  padding: 0 10px 130px 10px;
  background: #9FCAF2;
}

#index_school .ttl_wrap{
  margin-bottom: 0;
  transform: translateY(-75%);
}

#index_school .splide__pagination__page {
  background: #fff!important;
  border: 1px solid #fff!important;
}

#index_school .splide__pagination__page.is-active{
  background: none!important;
}

#index_school .txt_wrap{
  width: min(100%, 750px);
  margin: 30px auto;
  padding: 20px 20px 40px 20px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}

#index_school .txt_wrap h3{
  font-size: 3.2rem;
}

@media screen and (max-width: 950px){
  #index_school .txt_wrap h3{
    font-size: 1.8rem;
  }
}

#index_school .txt_wrap p{
  font-size: 1.4rem;
}

#index_school .txt_wrap p.btn{
  margin-top: 20px;
}

#index_school .txt_wrap p.btn a{
  display: inline-block;
  text-align: center;
  min-width: 140px;
  padding: 10px 20px;
  line-height: 1.3;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: #FA7514;
  border: 2px solid #FA7514;
  border-radius: 10px;
}

#index_school .txt_wrap p.btn a:hover{
filter: brightness(1.2);
}

#index_school .koushi_tt{
  width: min(100%, 497px);
  margin: 30px auto;
}

#index_tags{
  padding: 0 30px 130px 30px;
  background: url(../img/bg_grid.webp) repeat center top #f1f1f1;
}

#index_tags .ttl_wrap{
  margin-bottom: 0;
  transform: translateY(-75%);
}

#index_recommended{
  position: relative;
  padding: 0 30px 100px 30px;
  background: url(../img/bg_dot100.webp) repeat center top #FFD7E9;
}

#index_recommended .ttl_wrap{
  margin: 0 auto;
  width: min(100%, 270px);
  transform: translateY(-50%);
}

#index_recommended .post_list{
  gap: 30px 40px
}

#index_recommended .post_list li{
  aspect-ratio: auto!important;
}

#index_recommended .post_list li .img_wrap{
  display: block;
  position: relative;
}

#index_recommended .post_list li .img_wrap_in{
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

#index_recommended .post_list li .img_wrap_in .img .img_inner img{
  width: auto!important;
  height: auto!important;
  max-width: 100%!important;
  max-height: 100%!important;
  display: block;
  border-radius: 10px;
  aspect-ratio: auto!important;
}

#index_recommended .post_list .btn-wakuwaku{
  margin-bottom: 0;
}

#index_recommended .post_list li .post_cate{
  display: none;
}

.recommend_obog_block{
  margin-bottom: 10px;
}

.recommend_obog_block a{
  display: flex!important;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 950px){
  .recommend_obog_block{
    margin-bottom: 0;
    transform: translateY(10px);
    position: relative;
    z-index: 3;
  }
  .recommend_obog_block a{
    justify-content: center;
  }
}

.recommend_obog_block .obog_icon{
  flex: 0 1 50px;
  width: 50px;
  aspect-ratio: 1 / 1;
  position: relative;
}

.recommend_obog_block .obog_icon img{
	display: block;
	width: 100%!important;
	height: 100%!important;
	margin: 0!important;
	object-fit: cover!important;
}

.recommend_obog_icon{
  border-radius: 50%;
  
}

.recommend_obog_block .obog_icon::before{
  content: "";
  display: block;
  width: 29px;
  height: 28px;
  background: url(../img/parts_recommend.webp) no-repeat center top / contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-11px, -11px);
}

.recommend_obog_name{
  flex: 0 1 auto;
  display: inline-block;
  padding: 5px 10px;
  position: relative;
  line-height: 1.2;
  font-size: 1.4rem;
  font-weight: 800;
  transform: rotateZ(0.03deg);
  background: #fff;
}

.recommend_obog_name span.txt1{
  font-size: 75%;
}

.recommend_obog_name span.txt2{
  font-size: 1.6rem;
  color: #E4381D;
}

.recommend_obog_name::before{
  content: "";
  width:0;
  height:0;
  border-style:solid;
  border-width: 3px 8px 3px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute!important;
  top: 50%!important;
  left: -8px!important;
}

@media screen and (max-width: 767px){
  #index_recommended .post_list{
    gap: 30px;
  }
}

#index_staff{
  padding: 0;
  background: #fff;
}

#index_staff .ttl_wrap{
  transform: translateY(-75%);
}

#index_staff .splide__slide{
display: flex;
justify-content: space-between;
flex-direction: column;
padding-bottom: 3px;
}

#index_staff .splide__slide a.img{
  display: block;
}

#index_staff .splide__slide .post_tag{
  margin-bottom: 10px;
}

#index_staff .splide__slide . span {
  font-size: .8rem;
}

#index_staff .more a{
  display: block;
  text-align: center;
  padding: 5px 10px;
  width: 134px;
  margin: auto auto 0 auto;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 10px;
  color: var(--staff-color);
  border: 1px solid var(--staff-color);
}

#index_staff .splide__pagination__page {
  background: #E4381D;
  border: 1px solid #E4381D;
}

#index_check{
  padding: 80px 0 100px 0;
  background: #fff;
}

#index_check .inner{
  padding: 0 20px;
}

.ttl_wrap_outer{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.ttl_wrap_outer::before,
.ttl_wrap_outer::after{
  content: "";
  flex: 1;
  height: 1px;
  background: none;
  border-top: 1px dashed #E4381D;
}

#index_check .bnr_13kisei{
  width: min(100%, 430px);
  margin: 0 auto;
}

.torikumi_wrap{
  width: min(100%, 630px);
  margin: 50px auto 0 auto;
  padding: 0 20px 50px 20px;
  border: 1px solid #E4381D;
  border-radius: 5px;
}

.torikumi_wrap h3{
  position: relative;
  text-align: center;
  transform: translateY(-50%);
}

.torikumi_wrap h3 span{
  display: inline-block;
  padding: 0 30px;
  font-size: 2rem;
  font-weight: 800;
  transform: rotateZ(0.03deg);
  color: #E4381D;
  background: #fff;
}

.torikumi_flex{
  display: flex;
  justify-content: center;
  gap: 50px;
}

.torikumi_flex dl{
  flex: 0 1 180px;
}

.torikumi_flex dt{
  padding-bottom: 0.1em;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 900;
  transform: rotateZ(0.03deg);
  border-bottom: 1px solid #E9EEF4;
}

.torikumi_flex dd{
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  padding: 0 20px;
  line-height: 1.4; 
  font-size: 1.4rem;
}

.torikumi_flex dd::before{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #D9D9D9;
}

@media screen and (max-width: 950px){
  .torikumi_flex{
    gap: 10px;
  }
  .torikumi_flex dl{
    flex: 0 1 50%;
    font-size: 1.2rem;
  }
  .torikumi_flex dd{
    padding: 0 0 0 10px;
    grid-template-columns: 5px 1fr;
    gap: 8px;
  }
  .torikumi_flex dd::before{
    width: 5px;
    height: 5px;
  }
}

/* --------------------------------------------------------------
 * 検索
 * -------------------------------------------------------------- */
 /*
 .search-highlight {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #ffe66b 60%);
}
*/
.search_keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.search_keywords li {
  padding: 10px 30px;
  font-size: 1.6rem;
  background: #E9EEF4;
}

.search_result_list li{
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}

.search_result_list li a{
  display: flex;
  gap: 20px;
}

.search_result_cat{

}

.search_result_list li .search_result_title{
  margin: 0;
  text-decoration: underline;
}


@media screen and (max-width: 950px){
  .search_result_body{
    padding: 0 20px 100px 20px;
  }
  .search_keywords {
    gap: 10px;
  }
  .search_keywords li {
    padding: 5px 20px;
    font-size: 1.4rem;
  }
  .search_result_list li a{
    flex-direction: column;
    gap: 0px;
  }
}

/* --------------------------------------------------------------
 * kouza
 * -------------------------------------------------------------- */
.kouza_body{
  padding: 0 0 90px 0;
  color: #40220F;
  background: #fff;
}

.bg1{
  padding: 180px 60px 120px 60px;
  background: url(../img/kouza/bg1.webp) no-repeat center top / 100% auto;
  background-color: #fff;
}

.bg2{
  padding: 150px 60px 120px 60px;
  background: url(../img/kouza/bg2.webp) no-repeat center top / 100% auto;
  background-color: #F8F1DC;
}

@media screen and (max-width: 1270px){
  .bg1, .bg2{
    padding-left: 20px!important;
    padding-right: 20px!important;
  }
}

.kouza_about{
  padding: 10px 65px 30px 65px;
  text-align: center;
  position: relative;
}

.kouza_about .bnr_boshu{
  width: min(100%, 254px);
  position: absolute;
  top: 0;
  right: 6.5%;
  transform: translateY(-70%);
}

.kouza_about h2{
  font-size: 2.1rem;
  text-align: left;
  margin-bottom: 20px;
}

.kouza_about p.txt{
  font-size: 1.8rem;
  transform: rotateZ(0.03deg);
  transform-origin: 0 0;
}

.kouza_btn3{
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.kouza_btn3 li a{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 8px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  color: #fff;
  background: #BC8450;
  border-radius: 10px;
}

.kouza_btn3 li a::before{
  content: "";
	width: 11px;
	aspect-ratio: 11 / 16;
	background: #fff;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/icon_arrow.svg);
	mask-size: contain;
}

.kouza_btn3 li a:hover{
  opacity: 0.8;
}

@media screen and (max-width: 1270px){
  .kouza_about{
    padding: 10px 20px 30px 20px;
  }
  .kouza_btn3{
    gap: 10px;
  }
  .kouza_btn3 li a{
    gap: 8px;
    padding: 15px 8px;
    font-size: 1.4rem;
  }
  .kouza_btn3 li a::before{
    width: 8px;
  }
}
@media screen and (max-width: 1150px){
  .kouza_about .bnr_boshu{
    width: 40%;
    right: 20px;
    transform: translateY(-70%);
  }
  .kouza_about .bnr_boshu img{
   transform: translateY(20%);
  }
  .kouza_about p.txt{
    font-size: 1.6rem;
  }
  .kouza_btn3{
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }
  .kouza_btn3 li a{
    gap: 3px;
    padding: 15px 5px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 950px){
  .kouza_about .bnr_boshu{
    width: 58%;
    position: static;
    margin: 0 0 0 auto;
    transform: translate(10px,0%);
  }
  .kouza_about .bnr_boshu img{
    transform: translateY(-50px);
  }
  .kouza_about h2{
    font-size: 1.8rem;
  }
  .kouza_about p.txt{
    font-size: 1.2rem;
  }
  .kouza_btn3{
    width: min(100%, 187px);
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .kouza_btn3 li a{
    gap: 8px;
    padding: 12px;
    font-size: 1.2rem;
  }
}

.kouza_info{
  padding: 150px 60px 0px 60px;
  background: 
  url(../img/kouza/kouza_info_bg_top.webp) no-repeat center 110px,
  url(../img/kouza/kouza_info_bg_bottom.webp) no-repeat center bottom,
  url(../img/kouza/bg2.webp) no-repeat center top;
  background-size: 100% auto, 100% auto, 100% auto;
  background-color: #F8F1DC;
}

@media screen and (max-width: 1270px){
  .kouza_info {
    padding: 140px 20px 40px 20px;
  } 
}
@media screen and (max-width: 950px){
  .kouza_info {
    padding: 80px 20px 40px 20px;
    background-position: center 50px, center 70%, center top;
    background-size: 110% auto, 100% auto, 100% auto;
  } 
}

.kouza_info h2{
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 1.8rem;
  line-height: 1;
}

.kouza_info h2 span{
  display: inline-block;
  margin-top: 10px;
  padding: 0 40px;
  position: relative;
  font-size: 4.4rem;
}

.kouza_info h2 span::before,
.kouza_info h2 span::after{
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 54 / 56;
  background: url(../img/kouza/ttl_bg.webp) no-repeat center top / contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}

.kouza_info h2 span::after{
  right: 0;
  left: auto;
  transform: translateY(-50%) scale(-1, 1);
}

.lead_txt{
  margin: 30px 0 40px 0;
  font-size: 1.6rem;
  text-align: center;
}

@keyframes tabAnim{
 0%{opacity:0;}
 100%{opacity:1;}
}

.tab_wrap [name=tab_btn]{
	display: none;
}

.tab_area{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.tab_area label{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
  transition: ease 0.2s opacity;
  font-size: 1.8rem;
  font-weight: 500;
  transform: rotateZ(0.03deg);
  transform-origin: 0 0;
  padding: 15px;
  line-height: 1.3;
  transition: ease-in-out .3s;
  border-radius: 30px 5px 0 0;
}

.tab1_label{
  background: #A0D363;
}

.tab2_label{
  background: #C0DBF5;
}

.tab_area label span{
  transform: none;
  font-size: 1.4rem;
}

.tab_area label:hover,
#tab1:checked ~ .tab_area .tab1_label,
#tab2:checked ~ .tab_area .tab2_label{}

#tab1:checked ~ .panel_area #panel1,
#tab2:checked ~ .panel_area #panel2{
  display:block; 
  animation:tabAnim ease 0.6s forwards;
  -ms-animation:tabAnim ease 0.6s forwards;
}

.tab_panel{
  width: 100%;
  opacity: 0;
  padding: 45px 6.5%;
  display: none;
  background: #fff;
  border: 3px solid #A6BB5E;
}

#panel2{
  border: 3px solid #C0DBF5;
}

.tab_panel h3{
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  border-bottom: 5px solid #d9edc0;
}

#panel2 h3{
  border-bottom: 5px solid #E6F1FB;
}

.tab_panel h3 span{
  display: inline-block;
}

.tab_panel p.txt{
  margin: 30px 0;
  font-size: 1.4rem;
  text-align: center;
}

.tab_panel table{
  width: 100%;
  border-top: 1px solid #D9EDC0;
}

#panel2.tab_panel table{
  width: 100%;
  border-top: 1px solid #C0DBF5;
}

.tab_panel table th,
.tab_panel table td{
  padding: 10px 20px;
  font-size: 2rem;
  font-weight: 500;
  vertical-align: middle;
  transform: rotateZ(0.03deg);
  border-bottom: 1px solid #D9EDC0;
}

#panel2.tab_panel table th,
#panel2.tab_panel table td{
  border-bottom: 1px solid #C0DBF5;
}

.tab_panel table th{
  white-space: nowrap;
  border-right: 1px dashed #D9EDC0;
}

#panel2.tab_panel table th{
  white-space: nowrap;
  border-right: 1px dashed #C0DBF5;
}

.tab_panel table td.flex_item{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.flex_item .price span{
  font-size: 66%;
}

.cost-breakdown{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 500;
  border: 1px dotted #D9EDC0;
}

#panel2 .cost-breakdown{
  border: 1px dotted #C0DBF5!important;
}

.cost-breakdown table{
  width: auto;
  border: none!important;
}

.tab_panel .cost-breakdown table th,
.tab_panel .cost-breakdown table td{
  padding: 0 10px;
  font-size: 1.4rem;
  text-align: left;
  border: none!important;
}

.tab_panel .note{
  margin-top: 10px;
  text-align: right;
  font-size: 1rem;
}

.tab_panel .note ul{
  display: inline-block;
}

.tab_panel .note ul li{
  text-align: left;
}

@media screen and (max-width: 950px){
  .kouza_info h2{
    font-size: 1.4rem;
  }
  .kouza_info h2 span{
    padding: 0 25px;
    font-size: 3.0rem;
  }
  .kouza_info h2 span::before,
  .kouza_info h2 span::after{
    width: 22px;
  }
  .lead_txt{
    margin: 20px 0;
    font-size: 1.2rem!important;
  }
  .tab_area label{
    font-size: 1rem;
    padding: 10px;
    border-radius: 25px 5px 0 0;
  }
  .tab_area label span{
    font-size: 0.8rem;
  }
  .tab_panel{
    padding: 30px 15px;
  }
  .tab_panel h3{
    font-size: 1.8rem;
    padding-bottom: 6px;
  }
  .tab_panel p.txt{
    font-size: 1rem;
  }
  .tab_panel table th,
  .tab_panel table td{
    padding: 10px 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }
   .tab_panel table th{
    padding-right: 4px;
   }
  .tab_panel table td{
    padding-left: 4px;
  }
  .tab_panel table td.flex_item{
    gap: 8px;
  }
  .flex_item .price span {
    font-size: 50%;
  }
  .cost-breakdown{
    gap: 8px;
    padding: 5px;
    font-size: 1rem;
  }
  .tab_panel .cost-breakdown table th,
  .tab_panel .cost-breakdown table td{
    padding: 0;
    font-size: 1rem;
  }
  .tab_panel .cost-breakdown table th{
    padding-right: 3px;
  }
  .tab_panel .note{
    text-align: left;
    font-size: 0.8rem;
  }
}

.kouza_body .btn_orange{
  width: min(100%, 276px);
  margin: 25px 0 0 auto;
  text-align: right;
}

.kouza_body .btn_orange a{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 24px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: #FA7514;
  border: 2px solid #FA7514;
  border-radius: 10px;
  position: relative;
}
.wrap2 .btn_orange a{
  background: #BC8450;
  border: 2px solid #BC8450;
}

.kouza_body .btn_orange a::before{
  content: "";
	width: 11px;
	aspect-ratio: 11 / 16;
	background: #fff;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/icon_arrow.svg);
	mask-size: contain;
  transition: ease .3s;
}
.kouza_body .btn_orange a:hover::before{
  background: #FA7514;
}
.kouza_body .btn_orange a:hover{
  color: #FA7514;
  background: #fff;
}
.wrap2 .btn_orange a:hover{
  color: #BC8450;
}
.kouza_body .btn_orange a:hover::before{
  color: #FA7514;
}
.wrap2 .btn_orange a:hover::before{
  background: #BC8450;
}

@media screen and (max-width: 950px){
  .kouza_body .btn_orange{
    width: min(100%, 220px);
  }
  .kouza_info .btn_orange{
    width: min(100%, 220px);
    margin: 25px auto 0 auto;
    text-align: center;
  }
  .kouza_body .btn_orange a{
    gap: 6px;
    padding: 10px;
    font-size: 1.4rem;
  }
  .kouza_body .btn_orange a::before{
    width: 8px;
  }
}

.r_ttl{
  text-align: center;
}

.r_ttl span{
  display: inline-block;
  padding: 5px 10px;
  width: 203px;
  font-size: 1.8rem;
  font-weight: 500;
  border: 1px solid #40220F;
  border-radius: 9999px;
}

@media screen and (max-width: 950px){
  .r_ttl span{
    padding: 3px 10px;
    width: 150px;
    font-size: 1.4rem;
  }
}

.bg2 .r_ttl span{
  background: #fff;
  border: none;
}

.kouza_features .wrap{
  margin-top: 30px;
  position: relative;
}

.kouza_features .wrap h3,
.kouza_features .wrap h4,
.kouza_features .wrap p{
  position: relative;
  z-index: 2;
}

.kouza_features .wrap span.num{
  font-size: 20rem;
  font-weight: 500;
  line-height: 1;
  color: #FCF8EE;
  position: absolute;
  top: 0;
  z-index: 0;
}

.kouza_features .wrap1 span.num,
.kouza_features .wrap3 span.num{
  right: 0;
}

.kouza_features .wrap2 span.num,
.kouza_features .wrap4 span.num{
  left: 0;
}

.kouza_features .wrap2 #koushi-splide{
  margin-top: 20px;
}

.kouza_features .wrap2 #koushi-splide .img_wrap{
  aspect-ratio: 4 / 5;
}

.kouza_features .wrap2 #koushi-splide .img_inner{
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.kouza_features .wrap2 #koushi-splide .img_inner img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 10px;
}






.kouza_features .wrap h3 img{
  width: auto;
}

.kouza_features .wrap h4{
  margin: 10px 0 20px 0;
  padding-bottom: 3px;
  line-height: 1.3;
  font-size: 2rem;
  font-weight: 500;
  transform: rotateZ(0.03deg);
}

.kouza_features .wrap h4 span{
  border-bottom: 2px solid #FF8B10;
}

.kouza_features .wrap3 h4{
  margin: 20px 0 0 0;
  padding-bottom: 0;
}

.kouza_features .wrap3 h4 img{
  width: auto;
}

.kouza_features .wrap3 h5{
  margin: 20px 0 0 0;
  font-size: 2.4rem;
}

@media screen and (max-width: 950px){
  .kouza_features.bg1{
    padding-top: 100px;
  }
  .kouza_features .wrap span.num{
    font-size: 15rem;
  }
  .kouza_features .wrap h4{
    font-size: 1.4rem!important;
  }
  .kouza_features .wrap3 h4 img{
    display: inline-block;
    width: 60vw;
  }
  .kouza_features .wrap3 h5{
    font-size: 1.4rem;
  }
  .kouza_features .wrap p{
    font-size: 1rem;
  }
}

.bnr_maff{
  width: min(100%, 536px);
  margin: 50px auto 0 auto;
}

.features4_list{
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.features4_list li h4{
  text-align: center!important;
  font-size: 1.6rem!important;
  margin: 0 0 5px 0!important;
}

.features4_list li p{
  font-size: 1.4rem;
  margin: 10px 0 0 0!important;
}

@media screen and (max-width: 950px){
  .features4_list{
    width: 61%;
    margin: 20px auto 0 auto;
    grid-template-columns: 1fr;
  }
}

.kouza_curriculum h3{
  margin: 50px 0 30px 0;
  text-align: center;
  font-size: 2.8rem;
}

.kouza_curriculum p.txt{
  font-size: 1.8rem;
  transform: rotateZ(0.03deg);
}

.kouza_curriculum .sch{
  margin: 50px 0 70px 0;
}

.kouza_curriculum .sch h4{
  text-align: center;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.kouza_curriculum .sch .note{
  margin-top: 10px;
  text-align: right;
  font-size: 1rem;
}

.kouza_curriculum .ex{
  line-height: 1.5;
  padding: 0 15px 15px 15px;
  border-top: 1px solid #40220F;
  border-bottom: 1px solid #40220F;
}

.kouza_curriculum .ex h5{
  text-align: center;
}

.kouza_curriculum .ex h5 span{
  display: inline-block;
  padding: 0px 10px;
  font-weight: 500;
  font-size: 1.4rem;
  transform: translateY(-50%);
  background: #F8F1DC;
}

.kouza_curriculum .ex p{
  font-size: 1.4rem;
}

@media screen and (max-width: 950px){
  .kouza_curriculum h3{
    margin: 40px 0 20px 0;
    font-size: 1.6rem;
  }
  .kouza_curriculum p.txt{
    font-size: 1rem;
  }
  .kouza_curriculum .sch {
    margin: 40px 0;
  }
  .kouza_curriculum .sch h4{
    font-size: 1rem;
  }
  .kouza_curriculum .sch .note{
    font-size: .8rem;
  }
  .kouza_curriculum .ex h5 span{
    font-size: .8rem;
  }
  .kouza_curriculum .ex p{
    font-size: .8rem;
  }
}

.kouza_faq{
  position: relative;
}

.kouza_faq::before{
  content: "";
  display: block;
  width: 100%;
  height: 135px;
  background: url(../img/kouza/faq_tt.webp) no-repeat right top / auto 100%;
  position: absolute;
  top: 5%;
  right: 0;
  z-index: 0;
}

.faq_list{
  position: relative;
  z-index: 2;
}

.faq_list dt{
  margin: 50px 0 0 0;
  padding-left: 70px;
  font-size: 2.1rem;
  font-weight: 800;
  position: relative;
}

.faq_list dt::before,
.faq_list dd::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.faq_list dt::before{
  width: 54px;
  aspect-ratio: 54 / 46;
  background: url(../img/kouza/faq_q.svg) no-repeat left top / contain;
  transform: translateY(-20%);
}

.faq_list dd::before{
  width: 43px;
  aspect-ratio: 43 / 42;
  background: url(../img/kouza/faq_a.svg) no-repeat left top / contain;
}

.faq_list dd{
  margin: 20px 0 0 25px;
  padding-left: 60px;
  font-size: 1.6rem;
}

@media screen and (max-width: 1150px){
  .kouza_faq::before{
    top: 10px;
  }
}
@media screen and (max-width: 950px){
  .kouza_faq::before{
    top: 30px;
    height: 110px;
  }
  .faq_list dt{
    margin: 30px 0 0 0;
    padding-left: 40px;
    font-size: 1.2rem;
  }
  .faq_list dd{
    padding-left: 40px;
    font-size: 1rem;
  }
  .faq_list dt::before{
    width: 31px;
  }
  .faq_list dd::before{
    width: 25px;
  }
}

.kouza_body{
  padding-bottom: 0;
}

.kouza_contact{
  padding-top: 200px;
}

.kouza_contact .inner{
  text-align: center;
}

.kouza_contact h2{
  line-height: 1;
  font-size: 3.6rem;
}

.kouza_contact h2 span{
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.4rem;
}

.kouza_contact h2 span::before,
.kouza_contact h2 span::after{
  content: "/";
}

.kouza_contact h2 span::before{
  transform: scaleX(-1);
}

@media screen and (max-width: 950px){
  .kouza_contact{
    padding-top: 150px;
  }
  .kouza_contact h2{
    font-size: 2.1rem;
  }
  .kouza_contact h2 span{
    margin-bottom: 6px;
    font-size: .9rem;
  }
}