@charset "UTF-8";
/*
	00. common
========================================================================== */
#content #low_content {
    width: 1000px;
    max-width: 92%;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 130px;
    min-height: 500px;
}
#content section.low_sec:not(:last-child) {
    margin-bottom: 110px;
}
/* crumb -------------------------------- */
#content .crumb {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    padding: 10px 25px;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
#content .crumb ul li {
    display: inline;
    font-size: 1.4rem;
    line-height: 1.3;
    color: #fff;
}
#content .crumb ul li::after {
    display: inline;
    content: "＞";
    padding: 0 0.6em;
    color: #fff;
}
#content .crumb ul li:last-child::after {
    display: none;
}
#content .crumb ul li a {
    color: #fff;
}
/* mv -------------------------------- */
.low #low_mv {
    position: relative;
    width: 100vw;
    height: 44vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.low #low_mv .low_mv_txt {
    padding: 35px 30px 0;
    min-width: 630px;
    background: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}
.low #low_mv .low_mv_txt .low_mv_txt_ttl {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
}
/* low_index -------------------------------- */
#content .low_index {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}
#content .low_index .low_index_ttl {
    width: 9rem;
}
#content .low_index .low_index_ttl span {
    font-size: 4.5rem;
    color: #656160;
    writing-mode: vertical-rl;
}
#content .low_index .low_index_list {
    width: calc(100% - 9rem);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px 2%;
}
#content .low_index .low_index_list li {
    display: block;
    width: 32%;
}
#content .low_index .low_index_list li a {
    display: block;
    border-radius: 30px;
    border: 2px solid #c6b168;
    color: #c6b168;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
    padding: 15px 35px 15px 25px;
    position: relative;
}
#content .low_index .low_index_list li a span {
    font-weight: 500;
}
#content .low_index .low_index_list li a::before,
#content .low_index .low_index_list li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 18px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #c6b168;
  transform-origin: calc(100% - 1px) 50%;
}
#content .low_index .low_index_list li a::before {
  transform: rotate(45deg);
}
#content .low_index .low_index_list li a::after {
  transform: rotate(-45deg);
}
#content .low_index .low_index_list li a:hover {
    opacity: 1;
    background: #c6b168;
    color: #fff;
}
#content .low_index .low_index_list li a:hover::before,
#content .low_index .low_index_list li a:hover::after {
  background-color: #fff;
}
/* anchor-link -------------------------------- */
#content .anchor-link {
    margin-bottom: 70px;
}
#content .anchor-link .anchor-link_list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px 2%;
}
#content .anchor-link .anchor-link_list li {
    display: block;
    width: 32%;
}
#content .anchor-link .anchor-link_list li a {
    display: block;
    border-radius: 10px;
    border: 2px solid #c6b168;
    color: #c6b168;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
    padding: 22px 35px 22px 25px;
    position: relative;
}
#content .anchor-link .anchor-link_list li a::before,
#content .anchor-link .anchor-link_list li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 18px;
  width: 2px;
  height: 10px;
  border-radius: 9999px;
  background-color: #c6b168;
  transform-origin: 50% calc(100% - 1px);
}
#content .anchor-link .anchor-link_list li a::before {
  transform: rotate(45deg);
}
#content .anchor-link .anchor-link_list li a::after {
  transform: rotate(-45deg);
}
#content .anchor-link .anchor-link_list li a:hover {
    opacity: 1;
    background: #c6b168;
    color: #fff;
}
#content .anchor-link .anchor-link_list li a:hover::before,
#content .anchor-link .anchor-link_list li a:hover::after {
  background-color: #fff;
}

/*
    about
========================================================================== */
#about #low_mv {
  background: url("../images/about/about_mv.webp") no-repeat 50% 20% / cover;
}
#about .about_reason_list > div {
  margin-bottom: 70px;
}
/*
    about philosophy
=========================================== */
#philosophy #low_mv {
  background: url("../images/about/philosophy_mv.webp") no-repeat 50% 50% / cover;
}
/*
    about history
=========================================== */
#history #low_mv {
  background: url("../images/about/history_mv.webp") no-repeat 50% 50% / cover;
}
#history .history_list {
  width: 100%;
  padding: 0 24px;
  position: relative;
}
#history .history_list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 170px;
  width: 2px;
  background: linear-gradient(to bottom, #a5505e, rgba(165, 80, 94, .25));
}
#history .history_item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 90px;
  position: relative;
  padding: 0 0 56px;
}
#history .history_item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 163px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #a5505e;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px #a5505e;
  z-index: 1;
}
#history .history_year {
    padding-right: 10px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: #a5505e;
  letter-spacing: .04em;
  text-align: right;
  font-family: "Zen Old Mincho", 'Noto Serif JP', serif;
}
#history .history_card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}
#history .history_card .history_list_ttl {
  margin: 0 0 12px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}
#history .history_card .history_list_ttl:not(:first-child) {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
#history .history_card figure {
  margin: 20px 0 0;
}
#history .history_card img {
  width: 50%;
  height: auto;
  border-radius: 14px;
  display: block;
}
/*
    about president
=========================================== */
#president #low_mv {
  background: url("../images/about/president_mv.webp") no-repeat 50% 50% / cover;
}
.president_history {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.president_history dt {
    width: 5em;
    font-weight: bold;
    margin-bottom: 1em;
}
.president_history dd {
    width: calc(100% - 5em);
    margin-bottom: 1em;
}
/*
    about teachers
=========================================== */
#teachers #low_mv {
  background: url("../images/about/teachers_mv.webp") no-repeat 50% 50% / cover;
}
#teachers .teachers_list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 60px 7%;
    padding: 6%;
    border-radius: 4px;
    background: #f8f8f8;
}
#teachers .teachers_cont {
    width: 46.5%;
}
#teachers .teachers_cont .img {
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
}
#teachers .teachers_cont .img img {
    width: 100%;
}
#teachers .teachers_cont .txt .teachers_cont_position {
    margin-bottom: 12px;
    display: inline-block;
    line-height: 1;
    padding: 10px 14px;
    color: #fff;
    font-size: 1.4rem;
    background: #a5505e;
}
#teachers .teachers_cont .txt .teachers_cont_name_wrap {
    margin-bottom: 15px;
}
#teachers .teachers_cont .txt .teachers_cont_name {
    display: block;
    line-height: 1;
    font-size: 3rem;
    margin-bottom: 5px;
}
#teachers .teachers_cont .txt .teachers_cont_en {
    font-size: 1.4rem;
}
#teachers .teachers_cont_readmore {
    position: relative;
}
#teachers .teachers_cont_readmore p {
    font-size: 1.5rem;
}
#teachers .teachers_cont_readmore .teachers_cont_readmore_inner {
    position: relative;
    max-height: 96px; /* 開く前に見せたい高さを指定 */
    margin-bottom: 10px;
    overflow: hidden;
    transition: max-height 1s;
}
#teachers .teachers_cont_readmore:has(:checked) .teachers_cont_readmore_inner {
    max-height: 100vh;
}
#teachers .teachers_cont_readmore .teachers_cont_readmore_inner::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .9) 50%, hsla(0, 0%, 100%, .9) 0, #f8f8f8);
    content: '';
}
#teachers .teachers_cont_readmore:has(:checked) .teachers_cont_readmore_inner::after {
    content: none;
}
#teachers .teachers_cont_readmore label {
    display: flex;
    align-items: center;
    gap: 0 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: .35em 3em;
    border-radius: 30px;
    background-color: #496832;
    border:1px solid #496832;
    color: #fff;
    font-size: 1.5rem;
    z-index: 1;
    transition: 0.4s ease-out;
}
#teachers .teachers_cont_readmore label:hover {
    border:1px solid #496832;
    background-color: #fff;
    color: #496832;
    cursor: pointer;
}
#teachers .teachers_cont_readmore:has(:checked) label {
    display: none;
}
#teachers .teachers_cont_readmore label::after {
    display: inline-block;
    width: 10px;
    height: 5px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
#teachers .teachers_cont_readmore label:hover::after{
    background-color: #496832;
}
#teachers .teachers_cont_readmore input {
    display: none;
}
/*
    about assessment
=========================================== */
#assessment #low_mv {
  background: url("../images/about/assessment_mv.webp") no-repeat 50% 50% / cover;
}

/*
    education
========================================================================== */
#education #low_mv {
    background: url("../images/education/education_mv.webp") no-repeat 50% 50% / cover;
}
#education .education_section {
    margin-bottom: 80px;
}
#education .education_section > div {
    width: 46.5%;
}
/*
    education event
=========================================== */
#event #low_mv {
    background: url("../images/education/event_mv.webp") no-repeat 50% 50% / cover;
}
#event .event_cont {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    margin-bottom: 80px;
}
#event .event_cont > * {
    width: 50%;
}
#event .event_cont .img {
    position: relative;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    overflow: hidden;
}
#event .event_cont .event_cont_month {
    width: 90px;
    height: 90px;
    position: absolute;
    left: -40px;
    top: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    border-radius: 50px;
    z-index: 1;
}
#event .event_cont .event_cont_month:nth-child(2) {
    left: 56px;
}
#event .event_cont .event_cont_month .event_cont_month_num {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 0.8;
    width: 100%;
    text-align: center;
    margin-bottom: -25px;
}
#event .event_cont .event_cont_month .event_cont_month_en {
    font-size: 1.4rem;
    line-height: 1;
}
#event .event_cont .txt {
    padding: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    background: url("../images/common/bg_stripe_w01.png") repeat 0 0 / 4px;
}
#event .event_cont.event_cont_A .event_cont_month {
    background-color: #496832;
}
#event .event_cont.event_cont_A .txt {
    background-color: #e7efe1;
}
#event .event_cont.event_cont_B .event_cont_month {
    background-color: #c6b168;
}
#event .event_cont.event_cont_B .txt {
    background-color: #f8f1d7;
}
/*
    education overnight
=========================================== */
#overnight #low_mv {
    background: url("../images/education/overnight_mv.webp") no-repeat 50% 50% / cover;
}
#overnight .overnight_cont {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    margin-bottom: 80px;
}
#overnight .overnight_cont > * {
    width: 50%;
}
#overnight .overnight_cont .img {
    position: relative;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    overflow: hidden;
}
#overnight .overnight_cont .txt {
    padding: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    background: url("../images/common/bg_stripe_w01.png") repeat 0 0 / 4px;
}
#overnight .overnight_cont.overnight_cont_A .txt {
    background-color: #f7e7ea;
}
#overnight .overnight_cont.overnight_cont_B .txt {
    background-color: #f8f1d7;
}
/*
    education ict
=========================================== */
#ict #low_mv {
    background: url("../images/education/ict_mv.webp") no-repeat 50% 50% / cover;
}
/*
    education career
=========================================== */
#career #low_mv {
    background: url("../images/education/career_mv.webp") no-repeat 50% 50% / cover;
}
/*
    education destination
=========================================== */
#destination #low_mv {
    background: url("../images/education/destination_mv.webp") no-repeat 50% 50% / cover;
}
#destination .destination_university th.year {
    width: 16%;
}
#destination .destination_university th.school {
    width: 40%;
}
/*
    education subject
=========================================== */
#subject #low_mv {
    background: url("../images/education/subject_mv.webp") no-repeat 50% 50% / cover;
}
#subject .subject_cont {
    position: relative;
    margin: 50px 0 100px;
    padding: 40px;
    border-radius: 20px;
    background: url("../images/common/bg_dot_gray01.png") repeat 0 0 / 4px;
}
#subject .subject_cont .subject_cont_ttl {
    position: absolute;
    top: -60px;
    left: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 55px;
    padding: 10px 30px;
    color: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
#subject .subject_cont .subject_cont_txt {
    width: 48%;
}
#subject .subject_cont .subject_cont_ttl .subject_cont_ttl_jp {
    font-size: 2.6rem;
    font-weight: bold;
    margin-right: 15px;
    line-height: 1;
}
#subject .subject_cont .subject_cont_ttl .subject_cont_ttl_en {
    line-height: 1;
    margin-top: 0.4em;
}
#subject .subject_cont.subject_cont_green {
    background-color: #eff5ea;
    border: 5px solid #d7e2cf;
}
#subject .subject_cont.subject_cont_green .subject_cont_ttl {
    background: #496832;
}
#subject .subject_cont.subject_cont_yellow {
    background-color: #faf6e6;
    border: 5px solid #f7f1de;
}
#subject .subject_cont.subject_cont_yellow .subject_cont_ttl {
    background: #c6b168;
}
#subject .subject_cont.subject_cont_red {
    background-color: #f8edef;
    border: 5px solid #f6dbe0;
}
#subject .subject_cont.subject_cont_red .subject_cont_ttl {
    background: #a5505e;
}
#subject .subject_table_eiken {
    width: 500px;
    max-width: 100%;
}
#subject .subject_table_toefl th {
    background: #fff;
}
#subject .subject_table_toefl td {
    text-align: center;
}
#subject .subject_table_toefl .bg_or {
    background: #f5e1e4;
}
#subject .subject_table_toefl .bg_gr {
    background: rgb(215, 226, 207);
}
/*
    education voice
=========================================== */
#voice #low_mv {
    background: url("../images/education/voice_mv.webp") no-repeat 50% 50% / cover;
}
#voice .voice_cont {
    position: relative;
    margin: 0 0 60px;
    padding: 40px;
    border-radius: 20px;
    background: url("../images/common/bg_stripe_w01.png") repeat 0 0 / 4px;
}
#voice .voice_cont::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    border-radius: 20px;
}
#voice .voice_cont .voice_cont_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#voice .voice_cont .img {
    width: 32%;
    overflow: hidden;
    border-radius: 10px;
}
#voice .voice_cont .txt {
    width: 64%;
    background: #fff;
    border-radius: 4px;
    padding: 30px 40px;
    position: relative;
}
#voice .voice_cont .txt::after {
    content: '';
    display: block;
    background: url("../images/common/clip_gray.webp") no-repeat 0 0 / contain;
    width: 44px;
    height: 84px;
    position: absolute;
    top: -20px;
    right: 20px;
}
#voice .voice_cont .txt .voice_cont_ttl {
    border-bottom: 1px dotted #999;
    padding-bottom: 15px;
}
#voice .voice_cont .txt .voice_cont_name {
    font-weight: bold;
    margin-bottom: 20px;
}
#voice .voice_cont.voice_cont_yellow {
    background-color: #faf6e6;
}
#voice .voice_cont.voice_cont_yellow::after {
    border: 1px solid #efda97;
}
#voice .voice_cont.voice_cont_yellow .txt {
    border-top: 7px solid #efda97;
}
#voice .voice_cont.voice_cont_green {
    background-color: #eff5ea;
}
#voice .voice_cont.voice_cont_green::after {
    border: 1px solid #bee0a5;
}
#voice .voice_cont.voice_cont_green .txt {
    border-top: 7px solid #bee0a5;
}
#voice .voice_cont.voice_cont_red {
    background-color: #f8edef;
}
#voice .voice_cont.voice_cont_red::after {
    border: 1px solid #f4bbc5;
}
#voice .voice_cont.voice_cont_red .txt {
    border-top: 7px solid #f4bbc5;
}




/*
    admission
========================================================================== */
#admission #low_mv {
    background: url("../images/admission/admission_mv.webp") no-repeat 50% 50% / cover;
}
#admission .admission_outline th {
    width: 10em;
}
#admission .admission_outline th,
#admission .admission_outline td {
    padding: 20px 20px;
}
/*
    admission tour
=========================================== */
#tour #low_mv {
    background: url("../images/admission/tour_mv.webp") no-repeat 50% 50% / cover;
}
#tour .briefing_table th.tour_session_date {
  width: 10em;
}
#tour .briefing_table th.tour_session_status {
  width: 14em;
}
#tour .briefing_table .strike,
#tour .briefing_table .tour_session_program s {
  text-decoration: line-through;
}
#tour .briefing_table .tour_session_program a {
  text-decoration: underline;
  color: #496832;
}
#tour .briefing_table .tour_session_program strong {
  font-weight: bold;
}
#tour .briefing_table .tour_session_program em {
  font-style: italic;
}

/*
    admission transfer
=========================================== */
#transfer #low_mv {
    background: url("../images/admission/transfer_mv.webp") no-repeat 50% 50% / cover;
}
/*
    admission domestic
=========================================== */
#domestic #low_mv {
    background: url("../images/admission/transfer_mv.webp") no-repeat 50% 50% / cover;
}
/*
    admission return
=========================================== */
#return #low_mv {
    background: url("../images/admission/transfer_mv.webp") no-repeat 50% 50% / cover;
}
#return .return_country_list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px 6.5%;
}
#return .return_country_list li {
    width: 29%;
}

/*
    admission faq
=========================================== */
#faq #low_mv {
    background: url("../images/admission/faq_mv.webp") no-repeat 50% 50% / cover;
}


/*
    schoollife
========================================================================== */
#schoollife #low_mv {
    background: url("../images/schoollife/schoollife_mv.webp") no-repeat 50% 50% / cover;
}

/*
    schoollife facility
=========================================== */
#facility #low_mv {
    background: url("../images/schoollife/facility_mv.webp") no-repeat 50% 50% / cover;
}
/*
    schoollife access
=========================================== */
#access #low_mv {
    background: url("../images/schoollife/access_mv.webp") no-repeat 50% 50% / cover;
}
#access #low_mv {
    background: url("../images/schoollife/access_mv.webp") no-repeat 50% 50% / cover;
}
#access .location_cont .ggmp {
    padding-top: 80%;
}
/*
    schoollife afterschool
=========================================== */
#afterschool #low_mv {
    background: url("../images/schoollife/afterschool_mv.webp") no-repeat 50% 50% / cover;
}
#afterschool .afterschool_program {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 50px 5%;
}
#afterschool .afterschool_program .afterschool_program_cont {
    width: 30%;
    overflow: hidden;
    border-radius: 12px;
}
#afterschool .afterschool_program .afterschool_program_cont_txt {
    padding: 40px 25px 25px;
    background: #faf6e6;
    position: relative;
    height: 100%;
}
#afterschool .afterschool_program .afterschool_program_cont_txt_ttl {
    position: absolute;
    top: -20px;
    left: 10px;
    width: calc(100% - 20px);
    background: #fff;
    border-radius: 2px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0;
    padding: 10px 8px;
    box-shadow: 3px 3px 0px 0px rgba(198, 177, 104, 0.6);
}
#afterschool .afterschool_program .afterschool_program_cont_txt_target {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 500;
}
#afterschool .afterschool_program .afterschool_program_cont_txt_main p {
    font-size: 1.5rem;
}
@media screen and (max-width: 1050px) {
    #afterschool .afterschool_program .afterschool_program_cont_txt_ttl {
        font-size: 1.5vw;
    }
}
/*
    schoollife library
=========================================== */
#library #low_mv {
    background: url("../images/schoollife/library_mv.webp") no-repeat 50% 50% / cover;
}
/*
    schoollife safety
=========================================== */
#safety #low_mv {
    background: url("../images/schoollife/safety_mv.webp") no-repeat 50% 50% / cover;
}
/*
    schoollife families
=========================================== */
#families #low_mv {
    background: url("../images/schoollife/families_mv.webp") no-repeat 50% 50% / cover;
}
/*
    general
========================================================================== */
#general #low_mv {
    background: url("../images/general/general_mv.webp") no-repeat 50% 50% / cover;
}
#general .general_cont .ttl_C .ttl_inner {
    font-size: 2.2rem;
}
/*
    news
========================================================================== */
#news #low_mv {
  background: url("../images/news/news_mv.webp") no-repeat 50% 50% / cover;
}
#news .news_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#news .news_list {
    width: calc(100% - 230px);
}
#news .news_list li {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}
#news .news_list ul li .news_list_ttl {
    font-weight: bold;
    margin-bottom: 5px;
}
#news .news_list ul li .news_list_category_date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 10px;
}
#news .news_category {
    color: #fff;
    font-weight: bold;
    line-height: 1;
    font-size: 1.2rem;
    text-align: center;
    padding: 8px;
    border-radius: 30px;
    min-width: 150px;
}
#news .news_list ul li .news_list_date {
    line-height: 1;
    font-size: 1.5rem;
}
#news .news_side {
    width: 180px;
}
#news .news_side_ttl {
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    padding-left: 17px;
}
#news .news_side_ttl::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: #496832;
    border-radius: 3px;
    position: absolute;
    top: 9px;
    left: 0;
}
#news .news_side_category_list .news_category {
    display: block;
    padding: 10px 8px;
    margin-bottom: 8px;
    width: 100%;
}
#news .news_side_archive_list li {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ccc;
}
#news .news_side_archive_list li a {
    font-size: 1.5rem;
}

/*wp-pagenavi base*/
#content .wp-pagenavi {
	clear: both;
	text-align:center;
}
#content .wp-pagenavi a, 
#content .wp-pagenavi span {
	color: #999;
	background-color: #FFF;
	border: solid 1px #999;
    font-size: 1.65rem;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	border-radius: 3px;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
}
#content .wp-pagenavi a:hover{
	color:#FFF; 
	background-color:#999; 
	border-color:#999;
}
#content .wp-pagenavi span.current{
	color: #FFF;
	background-color: #c6b168;
	border-color: #c6b168;
	font-weight: bold;
}
/* single */
.roop {
	min-height: 500px;
}
.roop .post .size-full,
.roop .post img{
	max-width: 100%;
	height: auto;
}
.roop .post iframe{
	max-width: 600px;
}
.cms_content {
  margin-bottom: 60px;
}
.wp-pagenavi {
	margin-top: 70px;
	font-size: 90%;
}

/* post */
#content .post h1 {
	font-size: 30px;
	font-weight: 600;
	margin: 1rem 0;
	line-height: 1.3;
}
#content .post .date_category {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#content .post .date_category .date {
	color: #666;
    margin-right: 10px;
}
#content .post .date_category .category {
    margin: 0.2em 0 0 1.5em;
    padding: 0.4em 0.3em 0.6em;
    width: 7.5em;
    line-height: 1;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    background: #336633;
}
#content .post .entry {
	margin-top: 30px;
}
#content .post .entry > *:first-child {
	margin-top: 0;
}
#content .post .entry p {
	margin-top: 20px;
}
#content .post .entry a {
	color: #003e22;
    text-decoration: underline;
}
#content .post .entry strong {
  font-weight: bold;
}
#content .post .entry em {
  font-style: italic;
}
#content .post .entry blockquote {
  border-left: 6px solid #d9d9d9;
  padding-left: 10px;
}
#content .post .entry .marker {
    display: inline;
    background: linear-gradient(transparent 40%, #ffff00 40%);
    font-weight: bold;
}
#content .post .entry .box {
	margin-top: 15px;
    padding: 20px;
	background: #ecf7fb;
}
#content .post .entry .box > *:first-child {
	margin-top: 0;
}
#content .post .entry ul,
#content .post .entry  ol{
    display: block;
    margin-top: 25px;
}
#content .post .entry ul li {
    list-style: disc;
    margin-left: 1.5em;
}
#content .post .entry ol li {
    list-style: decimal;
    margin-left: 1.5em;
}
#content .post .entry ul + *,
#content .post .entry ol + * {
	margin-top: 25px;
}
#content .post .entry h2 {
    position: relative;
	margin: 35px 0 0;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3;
    font-family: "Zen Old Mincho", 'Noto Serif JP';
    background: #d7e2cf;
}
#content .post .entry h3 {
	margin: 35px 0 0;
	padding-left: 0.5em;
	border-left: 10px solid #336633;
	font-size: 2.2rem;
    font-weight: 500;
    font-family: "Zen Old Mincho", 'Noto Serif JP';
}
#content .post .entry h4 {
	margin: 35px 0 0;
	font-size: 2rem;
	font-weight: 500;
    font-family: "Zen Old Mincho", 'Noto Serif JP';
}
#content .post .entry h4::before {
	display: inline-block;
	content: '●';
	margin-right: 0.3em;
	color: #a11d45;
}
#content .post .entry h5 {
	margin: 35px 0 15px;
    display: block;
    padding-bottom: 8px;
    border-bottom: 1px solid #496832;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: "Zen Old Mincho", 'Noto Serif JP';
}
#content .post .entry h2 + p,
#content .post .entry h3 + p {
	margin-top: 12px;
}
#content .post .entry h4 + p,
#content .post .entry h5 + p {
	margin-top: 10px;
}
/*画像設定*/
#content .post .size-full,
#content .post .size-large,
#content .post .size-medium,
#content .post .size-thumbnail{
	max-width:100%; 
    height:auto;
    margin-top: 25px;
}
#content .post .alignleft {
	float: left;
	margin: 0 10px 10px 0;
}
#content .post .aligncenter {
	display: block;
	margin:0 auto 10px auto;
}
#content .post .alignright {
	float: right;
	margin: 0 0 10px 10px;
}
#content .post .wp-caption{margin-top:20px;}
#content .post .wp-caption a{display:block;}
#content .post .wp-caption a:hover{border-bottom: none;}
#content .post .wp-caption img{vertical-align: bottom;}
#content .post .wp-caption-text{
	margin-top: 10px;
	text-align:center;
	font-size:1.4rem;
}
#content .post .two_img {
	margin: 30px auto 0;
	width: 800px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
#content .post .two_img img {
	float: none;
	margin: 0;
	width: 48.5%;
}
/*
    search
========================================================================== */
#search #low_mv {
  background: url("../images/search/search_mv.webp") no-repeat 50% 50% / cover;
}
#search .search_result_num {
    display: block;
    margin-top: 8px;
}
/* search form */
.searchPage_search {
    margin: 0 auto 60px;
    width: 600px;
}
.searchPage_search .spnavi_searchform {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 40px;
    background-color: #ffffff;
}
.searchPage_search .spnavi_searchform label {
    width: 100%;
}
.searchPage_search .spnavi_searchform input {
    height: 50px;
    padding: 8px 20px;
    border: none;
    box-sizing: border-box;
    background-color: #ffffff;
    font-size: 1.65rem;
    outline: none;
    width: 100%;
}
.searchPage_search .spnavi_searchform input::placeholder {
    color: #777777;
}
.searchPage_search .spnavi_searchform button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.searchPage_search .spnavi_searchform button::after {
    width: 17px;
    height: 17px;
    background: url("../images/common/searchform_btn.webp") no-repeat 0 0 / contain;
    content: '';
}
/* search list */
#search .search_list {
    border-top: 1px solid #ddd;
}
#search .search_list li {
    border-bottom: 1px solid #ddd;
}
#search .search_list li a {
    display: block;
    padding: 20px 16px;
}
#search .search_list li:nth-child(odd) a {
    background-color: #fdf9eb;
}
#search .search_list .search_list_ttl {
    margin-bottom: 8px;
    font-size: 2rem;
    font-weight: 500;
}
#search .search_list p {
    color: #666;
    line-height: 1.8;
    font-size: 1.4rem;
}
#search .search_none {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}
#search .navigation.pagination {
    margin-top: 50px;
    text-align: center;
}
/* 検索結果ページ ページネーション */
#content .navigation.pagination {
	clear: both;
	text-align: center;
}

#content .navigation.pagination .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

#content .navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

#content .navigation.pagination .page-numbers {
	display: inline-block;
	box-sizing: border-box;
	color: #999;
	background-color: #fff;
	border: solid 1px #999;
	font-size: 1.65rem;
	line-height: 1.4;
	padding: 8px 15px;
	white-space: nowrap;
	border-radius: 3px;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration: none;
}

#content .navigation.pagination a.page-numbers:hover {
	color: #fff;
	background-color: #999;
	border-color: #999;
}

#content .navigation.pagination .page-numbers.current {
	color: #fff;
	background-color: #c6b168;
	border-color: #c6b168;
	font-weight: bold;
}

#content .navigation.pagination .page-numbers.dots {
	border-color: transparent;
	background-color: transparent;
	padding-right: 8px;
	padding-left: 8px;
}