@charset "utf-8";

/***************************************************************************

  共通

***************************************************************************/
.kirigirisu {
  font-family: "ab-kirigirisu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a:link {
  color: #000;
}

.bgTxtLink a {
  border-radius: 20px;
  padding: 12px 40px 12px 30px;
  position: relative;
  transition: .3s;
}

.bgTxtLink a:after {
  position: absolute;
  content: '';
  background: #000;
  height: calc(tan(60deg)* 8px / 2);
  width: 6px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  right: 26px;
  margin-top: -4px;
}

.bgTxtLink a:hover,
a img:hover {
  opacity: .8;
}

a img {
  transition: .3s;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/*****************************************
  MV
*****************************************/
.mvWrap {
  background-image: url("../images/top/main_bg.png");
  background-repeat: repeat;
}

.mvBox {
  max-width: 1440px;
  min-width: 1200px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.mvSlide {
  width: 500px;
  flex: none;
  padding: 50px 50px 10px;
}

.mvSlideBox {
  width: 100%;
  height: 100%;
  padding: 0 0 40px;
  overflow: hidden;
  position: relative;
}

.mvSlideBox .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mvSlideBox .swiper-slide a {
  color: #000;
  display: block;
  transition: 0.3s;
}

.mvSlideBox .swiper-slide a:hover {
  opacity: 0.7;
}

.mvSlideBox .swiper-slide a img:hover {
  opacity: 1;
}

.mvSlideBox .swiper-slide a img {
  display: block;
  transition: 0.3s;
}

.mvSlideBox .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mvSlideBox .swiper-slide span {
  display: block;
  width: 100%;
  padding: 10px 10px;
  background: #fbb03b;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}

.mvSlideBox .swiper-slide span i {
  display: inline-block;
  padding: 0 19px 0 0;
  background: url(../images/arw_black.png) no-repeat right center;
  background-size: 8px auto;
}

.mvSlideBox .swiper-pagination01 {
  position: absolute !important;
  bottom: 20px !important;
  right: -4px !important;
  left: auto !important;
  z-index: 50 !important;
  width: initial !important;
  height: 12px !important;
  display: inline-block !important;
}

.mvSlideBox .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 12px !important;
  background: #c0b6ac !important;
  z-index: 50 !important;
  opacity: 1 !important;
}

.mvSlideBox .swiper-pagination-bullet-active {
  background: #ff7b06 !important;
  z-index: 50 !important;
}

.mvSlideBox .swiper-button-prev01::after,
.mvSlideBox .swiper-button-next01::after {
  display: none;
}

.mvSlideBox .swiper-button-prev01,
.mvSlideBox .swiper-button-next01 {
  cursor: pointer;
}

.mvSlideBox .swiper-button-prev01 {
  width: 40px;
  height: 40px;
  background: url(../images/top/ptl_prv.png) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  z-index: 2;
}

.swiper-button-prev01.swiper-button-lock {
  display: none;
}

.mvSlideBox .swiper-button-prev01:hover {
  opacity: 0.7;
}

.mvSlideBox .swiper-button-next01 {
  width: 40px;
  height: 40px;
  background: url(../images/top/ptl_next.png) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 0;
  left: 41px;
  transition: 0.3s;
  z-index: 2;
}

.swiper-button-next01.swiper-button-lock {
  display: none;
}

.mvSlideBox .swiper-button-next01:hover {
  opacity: 0.7;
}

.mvImg {
  flex: auto;
}

@media screen and (max-width: 767px) {
  .mvBox {
    min-width: 100%;
  }

  .mvSlide {
    display: none;
  }

  .mvImg {
    width: 100%;
    margin: -25px 0 0;
  }
}

/*****************************************
  トップナビ
*****************************************/
.topNaviWrap {
  background-color: #fbf7ed;
  padding: 50px 0;
}

.topNaviBox {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topNaviBtn {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center top 14px;
  background-size: 80px auto;
  border-radius: 20px;
  border: solid 2px #9edade;
  border-bottom: solid 5px #9edade;
  text-align: center;
}

.topNaviBtn a {
  display: block;
  padding: 106px 14px 20px 14px;
  transition: .3s;
  color: #000;
}

.topNaviBtn:hover {
  opacity: .8;
}

.topNaviBtn .txt01 {
  position: relative;
  display: inline;
}

.topNaviBtn .txt01:before,
.topNaviBtn .txt01:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 16px;
  background-color: #adadad;
  top: 0;
}

.topNaviBtn .txt01:before {
  transform: rotate(-20deg);
  left: -8px;
}

.topNaviBtn .txt01:after {
  transform: rotate(20deg);
  right: -8px;
}

.topNaviBtn .txt02 {
  font-size: 120%;
  font-weight: bold;
}

.topNaviOuentai {
  width: 23.3%;
  background-image: url("../images/ouentai_icn.png");
}

.topNaviShisetsu {
  width: 23.3%;
  background-image: url("../images/odekake_icn.png");
  border-color: #afd7af;
}

.topNaviKosodate {
  width: 15%;
  background-image: url("../images/information_icn.png");
  border-color: #ffd605;
}

.topNaviJirei {
  width: 15%;
  background-image: url("../images/consultation_case_icn.png");
  border-color: #fbb03b;
}

.topNaviEvent {
  width: 15%;
  background-image: url("../images/event_icn.png");
  border-color: #fbc2ac;
}

@media screen and (max-width: 767px) {
  .topNaviWrap {
    padding: 30px 20px;
  }

  .topNaviBox {
    width: 100%;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .topNaviBtn a {
    padding: 106px 10px 20px 10px;
  }

  .topNaviBtn .txt01 {
    font-size: 86%;
  }

  .topNaviOuentai {
    width: 49%;
    margin-bottom: 10px;
  }

  .topNaviShisetsu {
    width: 49%;
    margin-bottom: 10px;
  }

  .topNaviKosodate {
    width: 32%;
  }

  .topNaviJirei {
    width: 32%;
  }

  .topNaviEvent {
    width: 32%;
  }
}

/*****************************************
  重要なお知らせ
*****************************************/
.importantWrap {
  padding: 50px 0;
  width: 1200px;
  margin: 0 auto;
}

.importantBox {
  position: relative;
}

.ti_oshirase {
  width: 280px;
  height: auto;
  margin-bottom: 38px;
}

.importantNews {
  border: solid 2px #eb001f;
  border-radius: 50px;
  padding: 14px 30px;
}

.importantNews a {
  display: block;
  position: relative;
}

.importantNews a:after {
  position: absolute;
  content: '';
  background: #eb001f;
  height: calc(tan(60deg)* 8px / 2);
  width: 6px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  right: 0;
  margin-top: -4px;
}

.importantNewsDay {
  display: inline;
}

.importantNewsDay .txt01 {
  margin-right: 40px;
}

.importantNewsDay .txt02 {
  margin-right: 40px;
  color: #fff;
  background-color: #eb001f;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 86.67%;
}

.importantNews .txt03 {
  font-weight: bold;
}

.importantBox .bgTxtLink {
  position: absolute;
  top: 0;
  right: 0;
}

.importantBox .bgTxtLink a {
  background-color: #f9bdc7;
  color: #000;
}

@media screen and (max-width: 767px) {
  .importantWrap {
    padding: 30px 20px 36px 20px;
    width: 100%;
  }

  .importantBox {
    position: relative;
  }

  .ti_oshirase {
    width: 277px;
    margin: 0 auto 20px auto;
    display: block;
  }

  .importantNews {
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .importantNews a:after {
    right: -20px;
  }

  .importantNewsDay {
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .importantNewsDay .txt01 {
    margin-right: 0;
  }

  .importantNewsDay .txt02 {
    margin-right: 0;
  }

  .importantBox .bgTxtLink {
    position: static;
    text-align: center;
  }
}

/*****************************************
  子育て情報
*****************************************/
.kosodateWrap {
  background-color: #fbf7ed;
  padding: 50px 0;
}

.kosodateBox {
  width: 1200px;
  margin: 0 auto;
}

.ti_kosodate {
  width: 220px;
  margin-bottom: 34px;
}

.ti_kosodate02 {
  width: 636px;
  margin-bottom: 30px;
}

.ti_kosodate03 {
  width: 482px;
  margin-bottom: 30px;
}

.ti_kosodate04 {
  width: 272px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .kosodateWrap {
    padding: 40px 20px 20px 20px;
  }

  .kosodateBox {
    width: 100%;
  }

  .ti_kosodate {
    margin: 0 auto 28px auto;
    display: block;
  }

  .ti_kosodate02 {
    width: 100%;
    max-width: 374px;
    margin: 0 auto 28px auto;
    display: block;
  }

  .ti_kosodate03 {
    width: 260px;
    margin: 0 auto 18px auto;
    display: block;
  }

  .ti_kosodate04 {
    width: 215px;
    margin: 0 auto 20px auto;
    display: block;
  }

  .commonSearchBox {
    margin-bottom: 0;
  }
}

/*****************************************
  のびのび応援隊と施設検索
*****************************************/
.ouenShisetsuWrap {
  background: linear-gradient(90deg, #ddf2f3 0%, #ddf2f3 50%, #e7f3e7 50%, #e7f3e7 100%);

}

.ouenShisetsuWrap .inner {
  padding: 50px 0;
  background: url(../images/body_bg_dots.png) repeat left top;
  background-size: 30px auto;
}

.ouenShisetsuBox {
  display: flex;
  width: 1200px;
  margin: 0 auto;
}

.flexColumn {
  width: 50%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.flexColumn p {
  flex-grow: 1;
  text-align: left;
  padding: 0 64px;
  margin-bottom: 18px;
}

.ouenBox {}

.nobinobi_ti {
  width: 460px;
  margin-bottom: 30px;
}

.nobinobi_img {
  width: 386px;
  margin: 0 auto 30px auto;
}

.ouenShisetsuBox .bgTxtLink a {}

.ouenBox .bgTxtLink a {
  background-color: #9edade;
  color: #000;
}

.shisetsuBox {}

.kensaku_ti {
  width: 256px;
  margin-bottom: 30px;
}

.kensaku_img {
  width: 326px;
  margin: 0 auto 24px auto;
}

.shisetsuBox .bgTxtLink a {
  background-color: #afd7af;
  color: #000;
}

@media screen and (max-width: 767px) {
  .ouenShisetsuWrap {
    background: none;

  }

  .ouenShisetsuWrap .inner {
    padding: 0;
    background: none;
  }

  .ouenShisetsuBox {
    display: block;
    width: 100%;
  }

  .flexColumn {
    width: 100%;
    padding: 30px 20px;
  }

  .flexColumn p {
    padding: 0;
  }

  .ouenBox {
    background: url("../images/top/body_bg_dots01.png") repeat left top;
    background-size: 30px auto;
  }

  .nobinobi_ti {
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
  }

  .nobinobi_img {
    width: 288px;
    margin: 0 auto 20px auto;
  }

  .shisetsuBox {
    background: url("../images/top/body_bg_dots02.png") repeat left top;
    background-size: 30px auto;
  }

  .kensaku_ti {
    width: 200px;
    margin-bottom: 20px;
  }

  .kensaku_img {
    width: 226px;
    margin: 0 auto 20px auto;
  }

  .shisetsuBox .bgTxtLink a {
    background-color: #afd7af;
  }
}

/*****************************************
  相談事例集
*****************************************/
.jireiWrap {
  background-color: #fdf6e5;
  padding: 50px 0;
}

.jireiBox {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}

.jireiLink {
  width: calc(100% - 280px);
  padding-right: 50px;
}

.jireiTi {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}

.jireiBnr {
  width: 280px;
}

.soudan_ti {
  width: 232px;
  margin-right: 45px;
}

.soudan_ti02 {
  width: 558px;
}

.jireiTabWrap {
  position: relative;
}

.jireiTabUl {
  width: 100%;
  border-bottom: solid 4px #ff7834;
  display: flex;
  align-items: flex-end;
}

.jireiTabLi {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: solid 4px #ff7834;
  border-bottom: none;
  background-color: #fff;
  margin-right: 10px;
  padding: 18px 40px;
  font-size: 120%;
  font-weight: bold;
  cursor: pointer;
}

.jireiTabLi.active {
  background-color: #ff7834;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  position: relative;
  padding: 20px 40px;
}

.jireiTabLi.active:after {
  position: absolute;
  content: '';
  background: #ffffff;
  height: calc(tan(60deg)* 8px / 2);
  width: 8px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: 8px;
  left: 50%;
}

.jireiPanel {
  padding: 30px 0 15px 0;
  border-bottom: solid 2px #ff7834;
  display: none;
}

.jireiPanel.active {
  display: block;
}

.jireiPanelUl {
  display: flex;
  flex-wrap: wrap;
}

.bnr_line-ehime {
  margin-bottom: 10px;
}
.bnr_line-oyako {
  margin-bottom: 10px;
}
.jireiPanelUl .bgTxtLink {
  margin: 0 15px 15px 0;
}

.jireiPanelUl .bgTxtLink a {
  background-color: #fff;
  color: #000;
  display: block;
  padding: 10px 30px 10px 20px;
}

.jireiPanelUl .bgTxtLink a:after {
  background: #ff7834;
  right: 16px;
}

.moreLink.bgTxtLink {
  position: absolute;
  top: 0;
  right: 0;
}

.moreLink.bgTxtLink a {
  background-color: #ffd605;
  color: #000;
}

@media screen and (max-width: 767px) {
  .jireiWrap {
    padding: 30px 20px;
  }

  .jireiBox {
    width: 100%;
    display: block;
  }

  .jireiLink {
    width: 100%;
    padding-right: 0;
  }

  .jireiTi {
    display: block;
    margin-bottom: 30px;
  }

  .jireiBnr {
    width: 100%;
    display: block;
    max-width: 290px;
    margin: 10px auto;
  }

  .jireiBnr a {
    width: 100%;
  }

  .soudan_ti {
    width: 232px;
    margin: 0 auto 20px auto;
    display: block;
  }

  .soudan_ti02 {
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
    display: block;
  }

  .jireiTabUl {
    justify-content: space-between;
  }

  .jireiTabLi {
    width: 49%;
    margin-right: 0;
    text-align: center;
  }

  .jireiPanel {
    padding: 15px 0 7px 0;
  }

  .bnr_line-ehime {
    margin-bottom: 14px;
  }

  .bnr_line-oyako {
    margin-bottom: 14px;
  }

  .jireiPanelUl .bgTxtLink {
    margin: 0 10px 10px 0;
  }

  .moreLink.bgTxtLink {
    text-align: center;
    padding: 20px 0 30px 0;
    position: static;
  }
}

/*****************************************
  イベント情報
*****************************************/
.eventWrap {
  padding: 50px 0;
}

.eventBox {
  width: 1200px;
  margin: 0 auto;
}

.eventTi {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.ti_event {
  width: 250px;
  margin-right: 40px;
}

.ti_event02 {
  width: 370px;
}

.topEvent02 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 4px #ffd605;
}

.eventLinkBox {
  position: absolute;
  top: -66px;
  right: 0;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.eventLinkBox .bgTxtLink a {
  background-color: #ffd605;
  color: #000;
}

.event02ListBox .kaisaiFlag {
  position: absolute;
  color: #fff;
  font-size: 90%;
  background-color: #ff6600;
  padding: 4px 20px;
  top: -16px;
  left: -10px;
  border-radius: 20px;
}

.event02ListWrap {
  width: 100%;
}

.event02ListWrap .swiper-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.event02ListWrap .swiper-wrapper:after {
  content: '';
  display: block;
  width: calc(100% / 4 - 14px);
}

.event02ListBox {
  width: calc(100% / 4 - 14px);
  height: auto;
}

.event02ListBox .inner {
  border: solid 2px #f3cd22;
  border-radius: 20px;
  position: relative;
  padding: 16px;
  height: 100%;
}

.event02ListBox .inner a {
  color: #000;
}

.event02ListBox figure {
  margin-bottom: 16px;
}

.event02ListBox figure img {
  border-radius: 10px;
  width: 100%;
  height: 242px;
  object-fit: cover;
}

.event02ListTi {
  margin-bottom: 12px;
  font-weight: bold;
}


.icoCal,
.icoMap {
  font-size: 80%;
  padding-left: 22px;
  position: relative;
}

.icoCal:before,
.icoMap:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("../images/lower/event02/ico_cal.svg");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}

.icoCal {
  margin-bottom: 6px;
}

.icoMap:before {
  width: 12px;
  height: 16px;
  background-image: url("../images/lower/event02/ico_baloon.svg");
  top: 2px;
  left: 2px;
}

.eventUnderBnr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.eventUnderBnr li {
  width: 23.34%;
}

.eventUnderBnr::after {
  content: "";
  width: 23%;
  display: block;
}

.eventUnderBnr::before {
  content: "";
  width: 23%;
  display: block;
  order: 1;
}
.eventUnderBnr2_single {
  width: 49.2%;
  display: block;
  margin: 25px auto 0;
}

@media screen and (max-width: 767px) {
  .eventWrap {
    padding: 30px 20px;
  }

  .eventBox {
    width: 100%;
  }

  .eventTi {
    display: block;
    margin-bottom: 30px;
  }

  .ti_event {
    width: 250px;
    margin: 0 auto 10px auto;
    display: block;
  }

  .ti_event02 {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    display: block;
  }

  .topEvent02 {
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .eventLinkBox {
    position: static;
    justify-content: center;
  }

  .eventLinkBox .bgTxtLink a:after {
    margin-top: -3px;
  }

  .event02ListWrap {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .event02ListWrap .swiper-wrapper {
    align-items: initial;
    justify-content: initial;
    flex-wrap: initial;
    margin-bottom: 40px;
  }

  .event02ListWrap .swiper-slide {
    height: auto;
  }

  .event02ListWrap .swiper-slide .inner {
    height: 100%;
  }

  .event02ListWrap:after {
    display: none;
  }

  .swiper-pagination03 {
    position: absolute !important;
    bottom: 32px !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 12px !important;
    display: inline-block !important;
    text-align: center;
  }

  .swiper-pagination03 .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    border-radius: 12px !important;
    background: #c0b6ac !important;
    z-index: 50 !important;
    opacity: 1 !important;
  }

  .swiper-pagination03 .swiper-pagination-bullet-active {
    background: #ff7b06 !important;
    z-index: 50 !important;
  }

  .event02ListBox {
    width: 100%;
    margin-bottom: 20px;
  }
  .event02ListBox .kaisaiFlag {
    font-size: 11px;
    top: 8px;
    left: 8px;
    border-radius: 18px;
}

  .event02ListBox figure img {
    width: 100%;
    height: 185px;
  }

  .event02ListTi {
    font-size: 110%;
  }

  .icoCal,
  .icoMap {
    font-size: 100%;
  }

  .eventUnderBnr {
    flex-wrap: wrap;
  }

  .eventUnderBnr li {
    width: 49%;
    margin-bottom: 10px;
  }
  .eventUnderBnr2_single {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 360px) {
  .eventLinkBox .bgTxtLink a {
    padding: 12px 30px 12px 20px;
  }

  .eventLinkBox .bgTxtLink a:after {
    right: 15px;
  }
}

/*****************************************
  お知らせ
*****************************************/
.newsWrap {
  padding: 50px 0;
  background-color: #fbf7ed;
}

.newsBox {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.newsTi {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.ti_news {
  width: 178px;
  margin-right: 38px;
}

.ti_news02 {
  width: 322px;
}

.newsList {}

.newsListUl {}

.newsListUl li {
  border-radius: 50px;
  padding: 14px 30px;
  background-color: #fff;
  margin-bottom: 15px;
}

.newsListUl li a {
  color: #000;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .newsListUl li a {
    display: block;
  }
}
.newsListUl li a:after {
  position: absolute;
  content: '';
  background: #ff7834;
  height: calc(tan(60deg)* 8px / 2);
  width: 6px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  right: 0;
  margin-top: -4px;
}

.newsListDay {
  box-sizing: border-box;
  display: inline-block;
  width: 315px;
}
@media screen and (max-width: 767px) {
  .newsListDay {
    width: 100%;
  }
}
.newsListDay .txt01 {
  width: 165px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .newsListDay .txt01 {
    width: auto;
  }
}
.newsListDay .txt02 {
  background-color: #ffd605;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 86.67%;
}

.newsListUl .txt03 {
  font-weight: bold;
  box-sizing: border-box;
  width: calc( 100% - 315px );
}
@media screen and (max-width: 767px) {
  .newsListUl .txt03 {
    width: 100%;
  }
}
.newsBox .bgTxtLink {
  position: absolute;
  top: 0;
  right: 0;
}

.newsBox .bgTxtLink a {
  background-color: #ffd605;
  color: #000;
}

@media screen and (max-width: 767px) {
  .newsWrap {
    padding: 30px 20px;
  }

  .newsBox {
    width: 100%;
  }

  .newsTi {
    display: block;
    margin-bottom: 30px;
  }

  .ti_news {
    margin: 0 auto 20px auto;
    display: block;
  }

  .ti_news02 {
    max-width: 315px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .newsList {}

  .newsListUl {}

  .newsListUl li {
    border-radius: 20px;
  }

  .newsListUl li a:after {
    right: -20px;
  }

  .newsListDay {
    display: block;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .newsListDay .txt01 {
    margin-right: 0;
  }

  .newsListDay .txt02 {
    margin-right: 0;
  }

  .newsBox .bgTxtLink {
    position: static;
    text-align: center;
    padding: 20px 0;
  }

  .newsBox .bgTxtLink a {
    background-color: #ffd605;
  }
}

/*****************************************
  SNS
*****************************************/
.snsWrap {
  padding: 50px 0;
  border-top: solid 10px #f7d3df;
  background-image: url("../images/top/sns_bgleft.png"), url("../images/top/sns_bgright.png"), url("../images/top/sns_bgcenter.png");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: left top, right top, center 50px;
  background-size: 300px auto, 300px auto, auto auto;
}

.snsBox {
  width: 1200px;
  margin: 0 auto;
}

.ti_sns {
  width: 204px;
  margin-bottom: 32px;
}

.boxSnsWrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.boxSns {
  border-radius: 20px;
  text-align: center;
  padding: 34px 16px 30px 16px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.boxSns.insta {
  border: solid 5px #f7d3df;
  width: 770px;
}

.boxSns.youtube {
  border: solid 5px #fcdcdc;
  width: 400px;
}

.boxSnsTi {
  font-size: 146%;
  font-weight: bold;
  position: relative;
  margin-bottom: 52px;
}

.boxSnsTi:after {
  position: absolute;
  content: '';
  width: 168px;
  height: 13px;
  background-image: url("../images/top/ti_sns_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
}

.boxSns.youtube .boxSnsTi:after {
  background-image: url("../images/top/ti_sns_bg02.png");
}

.boxSnsTxt {
  margin-bottom: 20px;
}

.boxSns .bgTxtLink a {
  color: #fff;
}

.boxSns .bgTxtLink a:after {
  background: #fff;
}

.boxSns.insta .bgTxtLink a {
  background-color: #d93177;
}

.boxSns.youtube .bgTxtLink a {
  background-color: #ed0000;
}

.instaCnt,
.youtubeCnt {
  margin-bottom: 10px;
  flex-grow: 1;
}

.movWrap {
  margin-bottom: 20px;
}

.movBox {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 10px;
}

.movBox iframe {
  width: 100%;
  height: 100%;
}

.movTxt {
  font-size: 86%;
  text-align: left;
  letter-spacing: -0.04em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.movTxt span {
  min-width: 4.5em;
  display: inline-block;
  text-align: center;
  background-color: #f1abab;
  padding: 2px 10px;
  border-radius: 20px;
  margin-right: 8px;
  font-size: 85.5%;
}

.movTxt i {
  flex: 1;
  display: inline-block;
  padding: 2px 0;
}

.sns_img01,
.sns_img02,
.sns_img03,
.sns_img04 {
  position: absolute;
}

.sns_img01 {
  width: 134px;
  top: -79px;
  right: 10px;
}

.sns_img02 {
  width: 72px;
  bottom: -17px;
  left: -40px;
}

.sns_img03 {
  width: 154px;
  top: -106px;
  right: 10px;
}

.sns_img04 {
  width: 74px;
  bottom: -17px;
  right: -33px;
}

@media screen and (max-width: 767px) {
  .snsWrap {
    padding: 30px 20px;
    background-image: url("../images/top/sns_bgleft.png"), url("../images/top/sns_bgright.png"), url("../images/top/sns_bgcenter_sp.png");
    background-size: 150px auto, 150px auto, auto auto;
  }

  .snsBox {
    width: 100%;
  }

  .ti_sns {
    margin: 0 auto 48px auto;
    display: block;
  }

  .boxSnsWrap {
    display: block;
  }

  .boxSns.insta {
    width: 100%;
    margin-bottom: 88px;
  }

  .boxSns.youtube {
    width: 100%;
  }

  .sns_img01 {
    width: 110px;
    top: -66px;
    right: 0;
  }

  .sns_img02 {
    width: 58px;
    bottom: -17px;
    left: -10px;
  }

  .sns_img03 {
    width: 124px;
    top: -86px;
  }

  .sns_img04 {
    width: 60px;
    bottom: -17px;
    right: -10px;
  }
}

/*****************************************
  関連リンク
*****************************************/
.linkWrap {
  padding: 50px 0;
  background-color: #fbf7ed;
}

.linkBox {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.ti_link {
  width: 207px;
  margin-bottom: 30px;
}

.ptlLinkBoxOuter {
  width: 100%;
  position: relative;
  padding: 0 0 30px;
}

.ptlLinkBoxWrap {
  width: 100%;
  padding: 0 60px 0;
  background: #fff;
  position: relative;
}

.ptlLinkBox {
  background: #fff;
  width: 100%;
  padding: 20px 0 20px;
  position: relative;
  overflow: hidden;
}

/*
.ptlLinkBox .swiper-wrapper {
  width: 100%;
  background: #fff;
  padding: 10px 20px 20px;
}
*/

.ptlLinkBox .swiper-slide img {
  width: 100%;
}

.swiper-pagination02 {
  position: absolute !important;
  bottom: 10px !important;
  right: 16px !important;
  left: auto !important;
  z-index: 50 !important;
  width: initial !important;
  height: 12px !important;
  display: inline-block !important;
}

.swiper-pagination02 .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 12px !important;
  background: #c0b6ac !important;
  z-index: 50 !important;
  opacity: 1 !important;
}

.swiper-pagination02 .swiper-pagination-bullet-active {
  background: #ff7b06 !important;
  z-index: 50 !important;
}

.swiper-button-prev02::after,
.swiper-button-next02::after {
  display: none;
}

.swiper-button-prev02,
.swiper-button-next02 {
  cursor: pointer;
}

.swiper-button-prev02 {
  width: 20px;
  height: 66px;
  background: #fff url(../images/top/ptl_lnk_prv.png) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  transition: 0.3s;
  z-index: 2;
}

.swiper-button-prev02.swiper-button-lock {
  display: none;
}

.swiper-button-prev02:hover {
  opacity: 0.7;
}

.swiper-button-next02 {
  width: 20px;
  height: 66px;
  background: #fff url(../images/top/ptl_lnk_next.png) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.3s;
  z-index: 2;
}

.swiper-button-next02.swiper-button-lock {
  display: none;
}

.swiper-button-next02:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .linkWrap {
    display: none;
  }
}

@media screen and (max-width: 380px) {

  .commonSearchBox input#gsc-i-id1,
  .commonSearchBox input.gsc-input {
    width: 180px !important;
    height: 32px !important;
    font-size: 100% !important;
    padding: 0 10px !important;
  }
}

/***************************************************************************

  google検索フォーム

***************************************************************************/
.topWordSearchBlock {
  width: 1200px;
  margin: 50px auto 10px;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #fff;
}

.topWordSearchBlock strong {
  font-size: 120%;
  line-height: 1;
  padding: 0 1em 0 0;
}

.topWordSearchBlock .commonSearchBox {
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0;
  padding: 0 0 0 0;
  background: none;
}

.topWordSearchBlock .commonSearchBox #___gcse_0,
.topWordSearchBlock .commonSearchBox #___gcse_1 {
}

.topWordSearchBlock .commonSearchBox form {
  flex: 1;
  display: flex;
  justify-content: space-around;
}

.topWordSearchBlock .commonSearchBox form.gsc-search-box {
  margin: 0;
}

.topWordSearchBlock .commonSearchBox table.gsc-search-box {
  margin-bottom: 0;
}

.topWordSearchBlock .commonSearchBox .gsib_a {
  padding: 0;
}

.topWordSearchBlock .commonSearchBox .gsc-input-box {
  border: none;
  background: #fff;
  border-radius: 20px 0 0 20px !important;
  padding: 0;
  line-height: 1;
}

.topWordSearchBlock .commonSearchBox input#gsc-i-id1,
.commonSearchBox input.gsc-input {
  width: 380px !important;
  height: 36px !important;
  border-radius: 20px 0 0 20px !important;
  font-size: 15px;
  padding: 0 10px !important;
  border: solid 2px #fbb03b !important;
}

.topWordSearchBlock .commonSearchBox table.gsc-search-box td.gsc-input {
  padding-right: 0;
}

.topWordSearchBlock .commonSearchBox table.gsc-search-box td.gsib_b {
  display: none;
}

.topWordSearchBlock .commonSearchBox form input[type=text] {
  flex: 1;
  height: 36px;
  font-size: 15px;
  padding: 0 10px;
  border-radius: 5px;
  border: solid 1px #00a4af;
  background-position: 10px center !important;
}

.topWordSearchBlock .commonSearchBox form input[type=submit],
.topWordSearchBlock .commonSearchBox button,
.topWordSearchBlock .gsc-search-button-v2 {
  width: 72px;
  height: 36px;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #222222;
  background: #fbb03b !important;
  border: 0;
  border-radius: 0 20px 20px 0;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.topWordSearchBlock .commonSearchBox form input[type=submit]:hover,
.topWordSearchBlock .commonSearchBox button:hover,
.topWordSearchBlock .gsc-search-button-v2:hover {
  opacity: 0.7;
}

.topWordSearchBlock .commonSearchBox button::before {
  content: '検索';
  position: absolute;
  color: #222;
  top: 10px;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
}

.topWordSearchBlock .commonSearchBox .gsc-search-button svg {
  display: none;
}

@media screen and (max-width: 767px) {
  .topWordSearchBlock {
    width: 100%;
    margin: 20px auto 0;
    padding: 20px 25px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .topWordSearchBlock strong {
    padding: 0 0 10px;
  }

  .topWordSearchBlock .commonSearchBox {
    width: 100%;
  }

  .topWordSearchBlock .commonSearchBox #___gcse_0,
  .topWordSearchBlock .commonSearchBox #___gcse_1 {
    width: 100%;
  }

  .topWordSearchBlock .commonSearchBox form.gsc-search-box {
    margin: 0;
  }

  .topWordSearchBlock .commonSearchBox .gsib_a {
    padding: 0;
    width: 100%;
  }

  .topWordSearchBlock .commonSearchBox input#gsc-i-id1,
  .commonSearchBox input.gsc-input {
    width: 100% !important;
    height: 32px !important;
    font-size: 100% !important;
    padding: 0 10px !important;
  }

  .topWordSearchBlock .commonSearchBox form input[type=submit],
  .topWordSearchBlock .commonSearchBox button,
  .gsc-search-button-v2 {
    width: 60px;
    height: 32px;
    font-size: 100%;
  }
}
/* spのみバナー */
.topSpBnrArea {
  display: none;
}
@media screen and (max-width: 767px) {
  .topSpBnrArea {
    max-width: 500px;
    margin: 30px auto 0 auto;
    display: block;
  }  
}
/* コラムバナー追加20250728 */
.topPickUpBnrArea {
  box-sizing: border-box;
  width: 100%;
  max-width: 858px;
  margin: 30px auto 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.topPickUpBnrArea > div {
  box-sizing: border-box;
  width: calc(50% - 13px);
}
@media screen and (max-width: 767px) {
  .topPickUpBnrArea {
    display: block;
    margin: 30px auto 0 auto;
    max-width: 500px;
  }
  .topPickUpBnrArea > div {
    width: 100%;
    margin-bottom: 15px;
  }
  .topPickUpBnrArea > div:last-of-type {
    margin-bottom: 0;
  }
}