@charset "utf-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
.is-hidden {
  display: none !important;
}
button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
button:active {
  transform: none;
  box-shadow: none;
}
/*============================
　共通
============================*/
.hero{
  width: 100%;
  height: 240px;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
}
.hero-ttl-eng{
  font-size: 40px;
  font-weight: bold;
  font-family: var(--serif);
  color: #fff;
  text-shadow: 0px 0px 5px #000000;
}
.news.hero{
  background-image: 
    linear-gradient(rgba(3, 0, 0, 0.15), rgba(3, 0, 0, 0.15)),
    url(/assets/img/hero_img03.jpg) ;
  background-size: cover;
  background-position: center 40%;
}
.seminar.hero{
  background: url("/assets/img/hero_img02.jpg") no-repeat;
  background-size: cover;
  background-position: center 30%;
}
.property.hero{
  background: url("/assets/img/hero_img04.jpg") no-repeat;
  background-size: cover;
  background-position: right 20%;
}
.breadcrumb{
  margin-top: 20px;
  margin-bottom: 58px;
  text-align: right;
  font-size: clamp(1.2rem, 0.972vw, 1.4rem);
  text-wrap: nowrap;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}
.breadcrumb span {
  display: flex;
  justify-content: end;
  gap: 10px;
  width: 100%;
  font-size: 12px;
  white-space: nowrap;
}
.breadcrumb a{
  color: var(--font);
  text-wrap: nowrap;
}
.breadcrumb a:last-child {
  white-space: nowrap;   
  overflow: hidden;         
  text-overflow: ellipsis;
  display: inline-block;    
  max-width: 100%;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb a:last-child:hover{
  text-decoration: none;
  cursor: text;
}
.pagination{
  display: flex;
  gap: 24px;
  position: relative;
  margin: 80px auto;
  width: fit-content;
}
.pagination li .material-symbols-outlined{
  color: #d6082e;
}
.pagination li{
  font-size: clamp(1rem, 0.972vw, 1.4rem);
  width: 48px;
  height: 48px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .3s all;
}
.page_num:hover{
  background-color: #d6082e;
  color: white;
}
.page_num.active {
  background-color: #d6082e;
  color: white;
}
.formBtn{
  margin: 0 auto;
}
@media screen and (max-width: 768px){
  .hero{
    width: 100%;
    height: 167px;
    padding-top: 68px;
  }
  .hero-ttl-eng{
    font-size:2.4rem;
  }
  .news.hero{
    background-size:cover;
    background-position: center 32%;
  }
  .breadcrumb{
    justify-items: flex-start;
    margin-top: 16px;
    margin-bottom: 50px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pagination li{
    font-size: clamp(1.3rem, 0.972vw, 1.4rem);
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 550px) {
  .breadcrumb.news{
    margin-bottom: 0;
  }
  .breadcrumb span{
    justify-content: start;
  }
  .pagination{
    margin: 56px auto;
    max-width: 262px;
    width: fit-content;
    gap: 0;
    justify-content: space-between;
  }
  .formBtn{
    padding: 13px 0;
  }
}
/*============================
  news
============================*/
#news{
  padding:0;
}
/*============================
  news-detail
============================*/
article{
  overflow: hidden;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--font);
}
.news-content-title{
  width: 100%;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 1.66vw, 2.4rem);
  line-height: 1.5;
  margin: 16px 0 20px;
  overflow-wrap:anywhere;
}
.news-content{
  margin: 40px auto 0 auto;
  width: 100%;
}
.news-content p{
  width: 100%;
  line-height: 1.4em;
  font-size: clamp(1.3rem, 1.11vw, 1.6rem);
  /* margin: 30px 0; */
  line-break: anywhere;
}
.news-content a{
  color: var(--main);
  text-decoration: underline;
  transition: all 0.3s;
}
.news-content a:hover{
  text-decoration-color: transparent;
}
.news-content-img{
  width: 100%;
  max-width: 720px;
  margin: 30px auto;
  text-align: center;
}
.news-content-img.half {
  width: 100%;
  max-width: 990px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-content-img.half img {
  max-width: 480px;
  width: calc((100% - 2%) / 2);
  display: block;
  margin: auto;
}
.btn-back-list{
  display: flex;
  width: max-content;
  position: relative;
  justify-content: center;
  align-items: center;
  margin: 80px auto;
  font-size: 1.8rem;
  font-family: var(--serif);
}
.btn-back-list::after{
  position: absolute;
  left: -30px;
  transform: rotate(-180deg);
  font-family: 'Material Symbols Outlined';
  content: "arrow_forward_ios";
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  color: var(--main);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.btn-back-list:hover::after{
  left: -35px;
}
@media screen and (max-width: 550px){  
  .news-content-img.half img {
    width: 100%;
  }
  .news-content{
    margin-top: 24px;
  }
  .news-content-text{
    margin: 16px 0;
  }
  .news-content-text:last-child{
    margin-bottom: 0;
  }
  .news-content-img.half{
    gap: 14px;
  }
}
/* semina */
#seminar{
  margin: 0px auto;
  padding: 0;
}

.seminar-empty {
  margin: 100px 0;
}

/* #seminar-detail */
#seminar-detail{
  margin: 0px auto;
  padding: 0;
}
#seminar-detail .status{
  position: relative;
  display: inline-block;
}
#seminar-detail .seminar-list-title{
  font-size: clamp(1.8rem, 2.08vw, 3rem);
  -webkit-line-clamp: none;
}
.instructor-profile__table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0 35px 0;
  border-top: 1px solid #cccccc;
}
.instructor-profile__table th,
.instructor-profile__table td {
  padding: 15px 0px;
  border-bottom: 1px solid #cccccc;
}
.instructor-profile__table th {
  background: #f2f2f2;
  text-align: center;
  width: 20%;
  font-size: clamp(1.3rem, 1.11vw, 1.6rem);
}
table th, table td {
  white-space: normal;
  font-weight: normal;
}
.instructor-profile__table td {
  background: #fff;
  font-size: clamp(1.3rem, 1.11vw, 1.6rem);
  padding: 0 30px;
}
#seminar-detail .text-content{
  font-size: clamp(1.3rem, 0.972vw, 1.4rem);
}
.seminar_area #submitBtn{
  margin: 66px auto;
}
@media (max-width: 550px){
  #seminar .breadcrumb{
    margin-bottom: 24px;
  }
  .seminar-list {
    margin: 30px 0 60px 0;
  }
  #seminar-detail .breadcrumb{
    margin-bottom: 24px;
  }
  .instructor-profile__table{
    margin: 12px 0 24px 0;
  }
  .instructor-profile__table th{
    width: 25%;
  }
  .instructor-profile__table td{
    padding: 0px 0px 0px 10px;
  }
  .seminar_area #submitBtn{
    margin: 56px auto 43px auto;
  }
}
/*  */
.instructor_area{
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #f2f2f2;
}
.instructor-profile{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  color: var(--font);
  padding: 80px 0;
}
.instructor-profile__content{
  width: 94%;
  position: relative;
  margin: 30px auto 0px auto;
  color: var(--font);
  display: flex;
}
.instructor-profile__image{
  max-width: 192px;
  float: left;
  margin-right: 38px;
}
.instructor-profile-title{
  width: 100%;
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 1.66vw, 2.4rem);
  font-family: var(--serif);
}
.instructor-profile__text{
  width: 80%;
}
.instructor-profile__position{
  font-size: clamp(1.1rem, 0.972vw, 1.4rem);
  display: block;
  text-wrap: nowrap;
}
.instructor-profile__name{
  font-size: 1.8rem;
  font-family: var(--serif);
  margin-bottom: 25px;
}
.instructor-profile__description{
  font-size: clamp(1.3rem, 0.972vw, 1.4rem);
  line-height: 19.5px;
  letter-spacing: 0.05em;
}
.btn-back-list.seminars{
  margin: 40px auto;
}
/* .btn-back-list.seminar_detail{
  margin: 44px auto 27px auto;
} */
.pc_none{
  display: none;
}
@media (max-width: 768px) {
  .sp_none{
    display: none;
  }
  .pc_none{
    display: flex;
    flex-wrap: wrap;
  }
  #seminar-detail{
    margin:0px auto 57px auto;
  }
  .instructor-profile{
    padding: 40px 0;
  }
  .instructor-profile__content {
    width: 100%;
    align-items: center;
    margin: 14px auto 0px auto;
  }
  .instructor-profile__image{
    width: 40%;
    overflow: hidden;
    margin-right: 15px;
  }
  .instructor-profile__name{
    width: fit-content;
    margin-bottom: 0;
  }
  .instructor-profile__description{
    width: 100%;
    margin-top: 24px;
  }
  .instructor-profile-title{
    margin-bottom: 10px;
  }
  .btn-back-list{
    font-size: 1.4rem;
    margin: 40px auto 56px;
  }
  /* .btn-back-list.seminar_detail{
    margin: 24px auto;
  } */
}
/*  */
.form_area{
  background-color: #f2f2f2;
  width: 100%;
  padding: 25px 0 32px 0;
}
.form_area form{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 15px;
}
.search-box_label{
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
  font-size: 13px;
  text-wrap: nowrap;
  color: var(--font);
}
.search-box{
  max-width: 250px;
  width: 100%;
}
.search-box .material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
  color: var(--main);
  font-size: large;
}
.search-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><polyline points='5,7 10,12 15,7' fill='none' stroke='%23bababa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}
.search-box select::-ms-expand {
  display: none;
}
.search-box select:focus {
  outline: none;
  box-shadow: none;
}
.search-box select, option{
  width: 100%;
  padding: 15px 0 15px 16px;
  color: #707070;
  border: 1px solid #e1e1e1;
  font-size: 1.4rem;
}
.search-submit{
  align-self: end;
  margin-bottom: 6px;
}
.search-submit button{
  width: 80px;
  padding: 6px 0;
  border-radius: 3px;
  background-color: #1a1a1a;
  font-size: 1.6rem;
  font-family: var(--serif);
  color: #fff;
}
.search-submit button::-ms-expand {
  display: none;
}
.search-submit button:focus {
  outline: none;
  box-shadow: none;
}
.property_list{
  margin: 80px auto 0px auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.list_item{
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.list_item a{
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  gap: inherit;
}
.list_item a:hover{
  opacity: 0.6;
}
.property-img{
  max-width: 420px;
  overflow: hidden;
  width: 100%;
  padding-right: 20px;
}
.property-img img{
  aspect-ratio: 420 / 280;
  object-fit: cover;
  width: 100%;
}
.property-box{
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 34px;
}
.category_css_area{
  display: flex;
  gap: 10px;
}
.category_css_area .category_css{
  width: fit-content;
  margin: 0;
}
.property-box h3{
  font-family: var(--serif);
  font-size: clamp(1.8rem, 1.66vw, 2.3rem);
  margin: 18px 0;
  color: var(--font);
  letter-spacing: 0;
  overflow-wrap:anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.property-conditions{
  margin-top: 21px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  color: var(--font);
}
.property-conditions__item{
  display: block;
  width: 50%;
}
.property-conditions__item{
  font-size: clamp(1.3rem, 1.11vw, 1.6rem);
  display: flex;
  align-items: center;
  gap: 18px;
}
.property-conditions__label{
  background-color: #ebebeb;
  font-size: clamp(1.2rem, 0.972vw, 1.4rem);
  max-width: 77px;
  width: 77px;
  text-align: center;
  padding: 1px 0;
}
.property-link-detail{
  padding-right: 20px;
  position: relative;
  display: flex;
  align-self: self-end;
  margin-top: 34px;
  font-size: clamp(1.2rem, 0.972vw, 1.4rem);
  color: var(--main);
}
.property-link-detail .material-symbols-outlined{
  position: absolute;
  font-size: clamp(1.2rem, 0.972vw, 1.4rem);
  transform: translate(0%, 0%);
  right: 0;
  top: 25%;
  -webkit-transition: all .3s ease-in-out;
}
.list_item:hover .property-link-detail .material-symbols-outlined{
  right: -5px;
}
.cta_area{
  width: 100%;
}
.cta{
  height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.08vw, 3.2rem);
  color: #fff;
  text-shadow: 0px 0px 5px #000000;
}
.cta-contact:hover {
  opacity: 0.8;
}
.cta-request:hover {
  opacity: 0.8;
}
.cta-contact{
  background-image: 
    linear-gradient(rgba(3, 0, 0, 0.1), rgba(3, 0, 0, 0.1)),
    url(/assets/img/strength_img04.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 80%;
}
.cta-request {
  background-image: 
    linear-gradient(rgba(96, 0, 0, 0.62), rgba(96, 0, 0, 0.62)),
    url(/assets/img/strength_img02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 80%;
}
.no-result{
  text-align: center;
  font-family: var(--serif);
  color: var(--font);
}
#submitBtn{
  background: linear-gradient(135deg, #95804d, #cbae6c, #95804d);
  border-radius: 6px;
  margin: 32px auto 0;
  padding: 20px 0;
  width: 720px;
  display: block;
  letter-spacing: 0.05em;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all .4s;
}
#submitBtn:hover{
  opacity: .6;
}
@media (max-width: 1200px){
  .property.breadcrumb{
    width: 90%;
  }
}
@media (max-width: 1000px){
  #submitBtn{
    width: 80%;
  }
}
@media (max-width: 768px){
  .search-box{
    max-width: none;
  }
  .search-box select {
    background-position: right 5px center;
  }
  .search-box select, option{
    padding: 10px 20px 10px 10px;
    font-size: 1.2rem;
  }
  .property-img{
    margin: 0 auto;
    max-width: none;
  }
  .property.breadcrumb{
    margin-bottom: 25px;
  }
  .property_list{
    margin-top: 24px;
    gap: 56px;
  }
  .list_item a{
    flex-direction: column;
    gap: 16px;
  }
  .property-img{
    padding: 0;
    width: 100%;
  }
  .property-img img{
    width: 100%;
  }
  .property-box{
    margin: 0;
  }
  .list_item h3{
    margin: 13px 0;
  }
  .property-conditions{
    margin-top: 16px;
    gap: 0;
  }
  .property-conditions__item{
    width: 100%;
    border-top: 1px solid #cccccc;
    gap: 10px;
  }
  .property-conditions__item:nth-child(3),
  .property-conditions__item:nth-child(4) {
    width: 50%;
    border-bottom: 1px solid #cccccc;
  }
  .property-conditions__label{
    width: 80px;
    padding: 16px 0;
    text-align: center;
  }
  .property-link-detail{
    margin-top: 18px;
  }
  .cta_area{
    /* flex-direction: column;
    height: 160px; */
  }
  .cta{
    width: 100%;
    height: 50%;
  }
  .cta_area .cta{
    height: 100px;
  }
}
@media (max-width: 550px){
  .form_area{
    padding: 24px 0;
  }
  .form_area form{
    flex-direction: column;
    gap: 15px;
    max-width: 330px;
  }
  .search-box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .search-box select{
    width: 100%;
    max-width: 250px;
  }
  .search-submit{
    margin: 0 auto;
  }
  .search-submit button {
    width: 96px;
    padding: 4px 0px;
  }
  
  #submitBtn{
    margin-top: 16px;
    padding: 16px 0;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    font-size: 1.4rem;
  }
}
/* property-detail */
.property-detail h3{
  -webkit-line-clamp: none;
}
.property-detail-inner{
  display: flex;
  gap: 4.58%;
}
.property-img-area{
  width: 100%;
  position: relative;
  overflow: hidden;
}
.main-img{
  width: 100%;
  aspect-ratio: 573 / 430;
  position: relative;
  overflow: hidden;
}
.main-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-roll{
  margin-top: 10px;
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  gap: 2%;
}
.img-roll li {
  overflow: hidden;
  flex: 0 0 28%;
  aspect-ratio: 573 / 430;
}
.img-roll li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-roll {
  transition: transform 0.3s ease;
}
.slide-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  background-color: #0000007e;
  top: 50%;
  margin-top: -20px;
  z-index: 2;
  font-family: var(--en);
  color: var(--white);
  font-size: 32px;
  font-weight: 200;
  line-height: 15px;
  padding: 0;  
  border: none;
  box-sizing: border-box;
}
.prev {
  left: 0px;
}
.prev .material-symbols-outlined{
  transform: rotate(-180deg);
  font-size: 15px;
  line-height: 30px;
}
.next {
  right: 0px;
}
.next .material-symbols-outlined{
  font-size: 15px;
  line-height: 30px;
}
.img-roll img {
  opacity: 0.5;
  cursor: pointer;
}
.img-roll img.active {
  opacity: 1;
}
.property-detail .property-box{
  position: relative;
}
.property-info h4{
  display: inline-block;
  margin-top: 32px;
  padding-left: 8px;
  border-left: 3px solid var(--main);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.25vw, 1.8rem);
}
.property-table{
  width: 100%;
  margin: 15px 0 30px 0;
  font-size: clamp(1.2rem, 0.972vw, 1.4rem);
}
.property-table tr{
  border-top: 1px solid #cccccc;
}
.property-table tr:last-child{
  border-bottom: 1px solid #cccccc;
  width: 100%;
}
.table-option{
  width: 150px;
  padding: 13px 0;
  background-color: #f2f2f2;
  text-align: center;
}
.option-text{
  width: 25%;
  padding: 10px 15px;
}
.description{
  font-size: clamp(1.3rem, 0.972vw, 1.4rem);
}
.btn_area{
  margin: 80px auto;
}
.btn_area .formBtn{
  margin: 0 auto;
}
/* .btn_area .btn-back-list{
  margin: 32px auto 0 auto;
} */
@media (max-width: 768px){
  .property-detail-inner{
    display: flex;
    gap: 16px;
    flex-direction: column;
  }
  .property-info h4{
    margin-top: 15px;
  }
  .btn_area{
    margin: 32px auto;
  }
}
@media (max-width: 550px){
  .property-table{
    margin: 15px 0;
  }
  .table-option{
    width: 80px;
  }
  .option-text{
    padding: 10px;
  }
}
/*-----2026/06/12 追記-----*/
.option-text a{
  color: var(--main);
  text-decoration: underline;
  transition: all 0.3s;
}
.option-text a:hover{
  text-decoration-color: transparent;
}
.description a{
  color: var(--main);
  text-decoration: underline;
  transition: all 0.3s;
}
.description a:hover{
  text-decoration-color: transparent;
}
.instructor-profile__table td a{
  color: var(--main);
  text-decoration: underline;
  transition: all 0.3s;
}
.instructor-profile__table td a:hover{
  text-decoration-color: transparent;
}
#seminar-detail .text-content a{
  color: var(--main);
  text-decoration: underline;
  transition: all 0.3s;
}
#seminar-detail .text-content a:hover {
    text-decoration-color: transparent;
}
.instructor-profile__description a{
  color: var(--main);
  text-decoration: underline;
  transition: all 0.3s;
}
.instructor-profile__description a:hover {
    text-decoration-color: transparent;
}
p a{
  color: var(--main);
  text-decoration: underline;
  transition: all 0.3s;
}
p a:hover{
  text-decoration-color: transparent;
}