@charset "utf-8";
/* CSS Document */
/* -------------------------
/* Created date: 2021.11.04
/* Created user: yamaguchi
/* Last up date: 2023.12.11
/* Last up date user: yamaguchi
/* for sp and pc
--------------------------*/

/* ======== common start ================*/
.searchFreeBar {
  margin: 0 auto 30px;
  padding: 15px 50px;
  background: rgb(var(--naviUsuGray));
}

.searchFreeBar .searchForm {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 500px;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.15);
}

.searchFreeBar .searchInput {
  width: calc(100% - 2.25em);
}

.searchFreeBar .searchInput input[type="search"] {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 4rem;
  font-size: 1.5rem;
}

.searchFreeBar .searchFreeBtn {
  cursor: pointer;
  width: 2.25em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.71 54.42"><path fill="rgba(128,128,128,1)" fill-rule="evenodd" d="M1.56,53.4a4.35,4.35,0,0,0,6.14-.54l9.81-11.74a21.86,21.86,0,0,0,24.41-36A21.85,21.85,0,0,0,10.83,35.5L1,47.23A4.39,4.39,0,0,0,1.56,53.4ZM15.15,11.27l2.59-2.51a16.36,16.36,0,0,1,3-1.84l3.35-1.19A16.49,16.49,0,0,1,38.56,9.14a16.61,16.61,0,1,1-23.41,2.13Z" /></svg>') center / 1em auto no-repeat;
  border-radius: 0.5rem 0 0 0.5rem;
}

.searchFreeBar .searchFreeBtn label {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 4rem;
  border-radius: 0.5rem 0 0 0.5rem;
}

.searchFreeBar .searchFreeBtn input {
  display: none;
}

.menuBar {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  width: 100%;
  max-width: var(--outerWidth);
  gap: 10px;
}

.mainTitle {
  margin: 0 0 15px;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: left;
}

.articleBlock {
  margin: 0 auto;
  padding: 0 10px 50px;
  max-width: var(--outerWidth);
}

.articleInner {
  width: 100%;
  max-width: var(--outerWidth);
}

.pageContetnts .hasThmb h3 a{
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 1.25em 0 0;
  min-height: 5rem;
  background: #f2f4f8;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #CED9ED;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: bold;
  color: #333;
  overflow: hidden;
}


.searchCommon .pageSum{
  display: grid;
  gap: 1rem;
  margin: 0 auto 3rem;
  padding: 0 15px;
  max-width: var(--outerWidth);
}

.searchCommon .fieldMsg {
  position: relative;
  overflow: hidden;
  background: rgba(77, 137, 209, 0.1);
  border-radius: 0 1.5rem;
  transition: all 0.25s 0s ease;
  container: fieldMsgBox /inline-size;
}

.searchCommon .fieldMsg.show {
  border-radius: 0;
}

.searchCommon .fieldMsg .inner{
  padding: 1rem;
}

.searchCommon .fieldMsg .thmb {
  float: left;
  padding: 0 1rem 1rem 0;
  width: 90px;
  overflow: hidden;
}

.searchCommon .fieldMsg .front {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.searchCommon .fieldMsg .back{
  display: none;
}

.searchCommon .fieldMsg .txt {
  position: relative;
  height: 100%;
}

.searchCommon .fieldMsg h2 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  line-height: 1.4;
}

.searchCommon .fieldMsg .txt p {
  line-height: 1.8;
}

.searchCommon .fieldMsg .more{
  cursor: pointer;
  position: sticky;
  bottom: 0;
  left: 0;
  padding: 0.5rem 1rem;
  width: 100%;
  background: linear-gradient(45deg, rgb(var(--naviBlue)) 0, rgb(var(--naviEmerald)));
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.searchCommon .fieldMsg .more span{
  position: relative;
  padding-right: 1.5em;
}

.searchCommon .fieldMsg .more span::before{
  content: '';
  top: 50%;
  right: 0;
  width: 0.75em;
  aspect-ratio: 1 / 1;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: translateY(-80%) rotate(45deg);
  transition: all 0.15s 0s linear;
}

.searchCommon .fieldMsg.show .more{
  background: none;
  box-shadow: 0 -2px 0 0 #fff;
  color: rgb(var(--naviKoiBlue));
}

.searchCommon .fieldMsg.show .more span::before{
  border-color: rgb(var(--naviKoiBlue));
  transform: translateY(-10%) rotate(-135deg);
}


@container fieldMsgBox (width >= 600px) {
  .searchCommon .fieldMsg .inner{
    display: grid;
    grid-auto-flow: column;
    padding: 0;
    min-height: 150px;
  }

  .searchCommon .fieldMsg .thmb {
    position: relative;
    float: none;
    padding: 0;
    width: 200px;
  }
  
  .searchCommon .fieldMsg .front {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 150px;
    width: auto;
    object-fit: cover;
    transform: translateY(0);
  }
  
  .searchCommon .fieldMsg .back{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(7px) brightness(120%) opacity(80%);
    transform: translate(-50%, -50%);
  }

  .searchCommon .fieldMsg .txt{
    padding: 1.5rem;
  }

  .searchCommon .fieldMsg .more {
    left: 200px;
    width: calc(100% - 200px);
  }

  .searchCommon .fieldMsg.show .thmb .front{
    top: 50%;
    transform: translateY(-50%);
  }
}

.pageContetnts .hasThmb h3 img {
  margin-right: 10px;
  width: 5rem;
  height: 5rem;
  object-fit: cover;
}

.pageContetnts .hasThmb h3 a::before {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 50%;
  right: 0.3em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: solid 1px #333;
  border-right: solid 1px #333;
  transform: translate(0, -50%) rotate(-45deg);
}

.pageContetnts .hasThmb h4 {
  padding-top: 15px;
  color: rgb(var(--naviKoiBlue));
  font-size: 1.4rem;
  line-height: 1.4;
}

.pageContetnts .subTitle {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: bold;
  color: rgb(var(--naviKoiBlue));
  text-align: center;
}

.pageContetnts .col + .subTitle {
  margin-top: 15px;
}

.searchCommon .slideTggle {
  display: grid;
}

.searchCommon .slideTggle .slideInner{
  display: grid;
}


@media screen and (max-width: 767px) {
  .pageContetnts .toggleTtl h3 a::before {
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.15s 0s ease;
  }
  
  .pageContetnts .toggleTtl h3.open a::before {
    transform: translate(-50%, -50%) rotate(-135deg);
  }

  .searchCommon .toggleTtl .slideTggle{
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: all 0.25s 0s ease;
  }

  .searchCommon .toggleTtl .slideInner{
    overflow: hidden;
  }

  .searchCommon .toggleTtl *.open + .slideTggle{
    gap: 15px;
    grid-template-rows: 1fr;
    padding-bottom: 30px;
  }

  .searchCommon .toggleTtl *.open + .slideTggle .slideInner{
    gap: 15px;
  }
}

.pageContetnts .flexCols {
  display: grid;
  gap: 5px 30px;
  margin-bottom: 30px;
  max-width: var(--outerWidth);
}

.pageContetnts .detailList,
.pageContetnts .cateList{
  margin-top: 5px;
}

.pageContetnts .detailList li,
.pageContetnts .cateList li {
  line-height: 1.2;
  border-bottom: solid 1px #CED9ED;
}

.pageContetnts .detailList li:first-child,
.pageContetnts .cateList li:first-child {
  border-top: solid 1px #CED9ED;
}

.pageContetnts .detailList a,
.pageContetnts .cateList a {
  position: relative;
  display: block;
  padding: 12px 3em 10px 1em;
  font-size: 1.4rem;
  line-height: 1.2;
  -webkit-tap-highlight-color: rgba(0, 73, 208, 0.05);
}

.pageContetnts .columnList a {
  position: relative;
  display: inline-block;
  padding: 3px 0.5em 3px 1.25em;
  border-radius: 0.3rem;
  font-size: 1.4rem;
  line-height: 1.2;
  -webkit-tap-highlight-color: rgba(0, 73, 208, 0.05);
}

.pageContetnts .allList {
  align-self: flex-end;
  display: grid;
  margin: 0 auto;
  width: 90%;
  max-width: 350px;
  gap: 15px;
}

.pageContetnts a.simpleBtn,
.pageContetnts span.simpleBtn{
  cursor: pointer;
  position: relative;
  display: grid;
  place-content: center;
  padding: 5px 1em 5px 0.5em;
  min-height: 40px;
  background: rgb(var(--gsGreen));
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: 3rem;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.pageContetnts a.simpleBtn::after,
.pageContetnts span.simpleBtn::after {
  content: '';
  top: 50%;
  right: 0.7em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translate(0, -50%) rotate(-45deg);
}

.searchCommon .detailList a::before,
.searchCommon .cateList a::before {
  content: '';
  top: 50%;
  right: 0.5em;
  width: 0.5em;
  height: 0.5em;
  border-right: solid 1px rgb(var(--naviKoiBlue));
  border-bottom: solid 1px rgb(var(--naviKoiBlue));
  font-weight: bold;
  transform: translate(0, -50%) rotate(-45deg);
}

.searchCommon .allBtn{
  margin: 0 auto;
  width: 90%;
}

.searchCommon .allBtn a{
  position: relative;
  display: grid;
  place-content: center;
  padding: 5px 1em 5px 0.5em;
  min-height: 40px;
  background: #f2f4f8;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #CED9ED;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  color: #333;
  font-weight: bold;
}

.searchCommon .allBtn a::before {
  content: '';
  top: 50%;
  right: 0.5em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: solid 1px #333;
  border-right: solid 1px #333;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.searchCommon .moreBtn {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.25em 0 1em;
  min-width: 150px;
  min-height: 30px;
  background: #fff;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  border: solid 1px #666;
  border-radius: 2rem;
  color: #666;
  font-size: 1.1rem;
  font-weight: bold;
}

.searchCommon .moreBtn::before {
  content: '';
  top: 50%;
  right: 0.75em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: solid 1px #666;
  border-right: solid 1px #666;
  transform: translate(0, calc(-50% - 2px)) rotate(45deg);
  transition: all 0.25s 0s ease-out;
}

.searchCommon .readMore .moreBtn::before{
  transform: translate(0, -50%) rotate(-45deg);
}

.searchCommon .on .moreBtn::before ,
.searchCommon .moreBtn.on::before {
  transform: translate(0, -50%) rotate(-135deg);
}

.searchCommon .slideTggle .readMore{
  margin: 0 auto;
  text-align: center;
}

.pageContetnts .columnList a::before {
  content: '';
  top: 50%;
  left: 0.25em;
  width: 0.7em;
  height: 0.5em;
  border-left: solid 2px rgb(var(--naviKoiBlue));
  border-bottom: solid 2px rgb(var(--naviKoiBlue));
  font-weight: bold;
  transform: translate(0, -50%) rotate(-45deg);
}

.pageContetnts .textClamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-height: 4.8em;
  font-size: 1.4rem;
  line-height: 1.6;
}

.pageContetnts .oneLink{
  align-self: flex-end;
  display: grid;
  margin: 0 auto;
  width: 90%;
  gap: 15px;
}

.pageContetnts .oneText {
  display: block;
  margin-bottom: 10px;
  color: rgb(var(--naviKoiBlue));
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}

.pageContetnts .columnList dt {
  padding-bottom: 15px;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
}

.pageContetnts .columnList dd {
  margin-bottom: 5px;
}

.pageContetnts .checkMe {
  color: rgb(var(--naviKoiBlue));
  font-weight: bold;
}

.pageContetnts .pt40{
  padding-top: 30px;
}

@media screen and (min-width: 768px) {

  /* -------------------------
  /* for pc
  --------------------------*/
  /* ======== search Common start ================*/
  .searchFreeBar .searchForm {
    flex-direction: row-reverse;
  }

  .searchFreeBar .searchInput {
    padding-left: 15px;
  }

  .searchFreeBar .searchInput input[type="search"] {
    min-height: 3rem;
    font-size: 1.3rem;
  }

  .searchFreeBar .searchFreeBtn {
    width: 3em;
    background: var(--svgGlassWhite), #999;
    background-size: 1em auto;
    border-radius: 0 0.5rem 0.5rem 0;
  }

  .searchFreeBar .searchFreeBtn label {
    min-height: 3rem;
    border-radius: 0 0.5rem 0.5rem 0;
  }

  .searchFreeBar .adBaner {
    margin-bottom: 40px;
  }

  .menuBar {
    margin-bottom: 30px;
    padding: 0 50px;
    gap: 15px;
  }

  .mainTitle {
    font-size: 3rem;
  }

  .subTitle {
    margin-bottom: 15px;
    text-align: left;
  }

  .articleBlock {
    padding: 0 50px 50px;
  }

  .pageContetnts .flexCols .col {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 15px;
    height: 100%;
  }
  
  .pageContetnts .hasThmb h3 {
    align-self: flex-start;
    cursor: default;
    font-size: 1.6rem;
  }

  .pageContetnts .hasThmb h3 a {
    min-height: 3rem;
    font-size: 1.3rem;
  }

  .pageContetnts .hasThmb h3 img {
    margin-right: 10px;
    width: 4em;
    height: 4em;
  }

  .pageContetnts .hasThmb h3 a::before {
    content: '';
    top: 50%;
    right: 0.5em;
    width: 0.5em;
    height: 0.5em;
    border-bottom: solid 1px #333;
    border-right: solid 1px #333;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .pageContetnts .flexCols{
    margin-bottom: 90px;
    gap: 60px 30px;
  }

  .pageContetnts .flexCols.cols2{
    grid-template-columns: repeat(2, 1fr);
  }

  .pageContetnts .flexCols.cols3{
    grid-template-columns: repeat(3, 1fr);
  }

  .pageContetnts .flexCols.cols4{
    grid-template-columns: repeat(4, 1fr);
  }

  .pageContetnts .flexCols.cols2 .subTitle{
    grid-column: 1 / 3;
  }

  .pageContetnts .flexCols.cols3 .subTitle{
    grid-column: 1 / 4;
  }

  .pageContetnts .flexCols.cols4 .subTitle{
    grid-column: 1 / 5;
  }


  .pageContetnts .detailList li:first-child,
  .pageContetnts .cateList li:first-child{
    border-top: none;
  }

  .pageContetnts h3.tokucho {
    margin-bottom: 30px;
  }

  .searchCommon .slideTggle{
    gap: 30px;
  }

  .searchCommon .toggleTtl .slideInner{
    overflow: visible;
    gap: 15px;
  }

  .searchCommon .cateList,
  .searchCommon .detailList {
    align-self: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
    padding: 0;
  }

  .searchCommon .cateList li,
  .searchCommon .detailList li {
    line-height: 1;
    border-bottom: none;
  }

  .searchCommon .cateList a,
  .searchCommon .detailList a {
    position: relative;
    display: inline-block;
    padding: 3px 2em 3px 5px;
    font-size: 1.3rem;
    border-radius: 0.3rem;
    transition: all 0.15s 0s ease;
  }

  .searchCommon .cateList a:hover,
  .searchCommon .detailList a:hover {
    opacity: 1;
    background: rgba(0, 73, 208, 0.05);
    transform: translate(5px, 0);
  }

  .pageContetnts a.simpleBtn,
  .pageContetnts span.simpleBtn {
    font-size: 1.4rem;
    transition: all 0.25s 0s ease;
  }

  .pageContetnts .allList a:hover{
    opacity: 1;
  }

  .pageContetnts a.simpleBtn:hover,
  .pageContetnts span.simpleBtn:hover {
    opacity: 0.75;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
  }

  .pageContetnts .oneText {
    font-size: 1.2rem;
  }

  .pageContetnts .columnList a::before {
    transition: all 0.25s 0s ease;
  }

  .pageContetnts .columnList a:hover {
    opacity: 1;
    transition: all 0.15s 0s ease;
    background: rgba(0, 73, 208, 0.05);
  }

  .pageContetnts .columnList a:hover::before {
    transform: translate(0, -50%) rotate(-405deg);
  }

  .pageContetnts .detailList a {
    transition: all 0.15s 0s ease;
  }

  .pageContetnts .detailList a:hover {
    background: rgba(0, 73, 208, 0.05);
    box-shadow: 0 3px 2px 0 rgba(78, 57, 57, 0.25);
    transform: translate(0, -2px);
    opacity: 1;
  }

  .searchCommon .moreBtn:hover {
    opacity: 0.5;
    transition: all 0.25s 0s ease;
  }

  .pageContetnts .textClamp {
    -webkit-line-clamp: 4;
    max-height: 6.4em;  
  }

  .searchCommon .slideTggle .textClamp {
    -webkit-line-clamp: 3;
    max-height: 4.8em;  
    font-size: 1.2rem;
  }

  .searchCommon .slideTggle .slideInner{
    padding: 0 15px;
  }

  .pageContetnts .hasThmb h4{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding: 0;
    max-height: 2.8em;
  }
}

/* ======== article end ================*/