@charset "utf-8";

/**
リニューアルデザイン　TOPページスタイル
**/

:root {
  --bg01: #A9CC66; /**新着記事背景**/
  --bg02: #EBEBE3; /**ご案内背景**/
}

/* -----------------------------------------------------------
　home
----------------------------------------------------------- */

/** common **/

.home section h2 {
  position: relative;
  z-index: 10;
  font-size: 2.25em;
  text-align: center;
  line-height: 1.2;
  padding: 50px 0 0;
  margin: 0 auto 60px;
}
.home section h2 span:nth-of-type(1) {
  position: absolute;
  z-index: -1;
  margin: auto;
  inset: 0 -100% auto;
  color: #FEFBF8;
  font-family: var(--ppn);
  font-size: 1.9em;
  font-weight: 100;
  transform: translateY(100px);
  opacity: 0;
  transition: 1s;
}
.home section h2 span:nth-of-type(2) {
  display: inline-block;
  color: var(--color01);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.075em;
  transform: translateY(100px);
  opacity: 0;
  transition: 1s 0.5s;
}
.home section h2.fadein span {
  opacity: 1;
  transform: translateY(0);
}

/** home_slider **/

.home_slider {
  width: 640px;
  padding: 40px 0 0;
  margin: 0 auto 110px;
}
.home_slider .slick-list {
  padding: 0!important;
  overflow: visible;
}
.home_slider .slick-slide {
  width: 580px;
  padding: 30px;
  border: solid 1px var(--color01);
  border-radius: 20px;
  margin: 0 30px;
  transition: transform 0.5s;
}
.home_slider .slick-slide.slick-current {
  transform: scale(1.05);
}
.home_slider .slick-slide a {
  color: var(--color01);
  text-decoration: none;
  transition: 0.5s;
}
.home_slider .slick-slide a:hover {opacity: 0.5;}
.home_slider ul .slick-slide .new {position: relative;}
.home_slider ul .slick-slide .new::before {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: 160px;
  height: 160px;
  inset: -45px -60px auto auto;
  background: url("../img/common/ico_new.svg") no-repeat center / contain;
  animation: rotate 12s infinite linear;
}
.home_slider .slick-slide a > span {
  display: block;
  font-weight: 600;
  margin: 0 0 1em;
}
.home_slider .slick-slide a figure {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 0 20px;
}
.home_slider .slick-slide a > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  min-height: 3em;
}
.home_slider .slick-slide a > p span {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  line-height: 1.2;
  font-size: 0.6em;
  padding: 0.25em 0.75em;
  border: solid 1px var(--color01);
  border-radius: 99px;
  margin: 0 0.5em 0.25em 0;
}
.home_slider .slick-dots {bottom: -50px;}
.home_slider .slick-dots li button::before {
  width: 10px;
  height: 10px;
  content: "";
  opacity: 1;
  border: solid 1px var(--color01);
  border-radius: 50%;
}
.home_slider .slick-dots li.slick-active button::before {background: var(--color01);}

/** home_post **/

.home_post {
  position: relative;
  z-index: 0;
  background: var(--bg01);
  padding: 60px 0 0;
  border-radius: 80px 80px 0 0;
}
.home_post::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  width: 100%;
  height: 300px;
  inset: 100% 0 auto;
  background: var(--bg01);
}

.home_article .post_list {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 0 0 53%;
  min-height: 53%;
  overflow: hidden;
}
.home_article .post_list li {
  width: 44%;
  margin: 0 0 30px;
}
.home_article .post_list li a {
  color: #333333;
  text-decoration: none;
  transition: 0.5s;
}
.home_article .post_list li a:hover {color: var(--color01);}
.home_article .post_list li figure {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0 0 20px;
}
.home_article .post_list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}
.home_article .post_list li a:hover figure img {transform: scale(1.15);}
.home_article .post_list li p {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.44;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home_article .post_list li p + span {
  display: inline-block;
  width: auto;
  color: #FFFFFF;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  padding: 0.5em 1em;
  background: #CCC;
  border-radius: 99px;
  margin: 0 5px 5px 0;
}
.home_article .post_list li p + span::before {content: "#";}
  
.home_article .post_list li:nth-child(1) {
  position: absolute;
  z-index: 1;
  inset: 0 auto auto 0;
  width: 47%;
}
.home_article .post_list li:nth-child(2) {
  position: relative;
  z-index: 0;
  padding: 0 0 30px;
}
.home_article .post_list li:nth-child(2)::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 250%;
  height: 1px;
  background: var(--color01);
  inset: auto auto 0 0;
}

.home_ee .box {
  position: relative;
  z-index: 1;
  padding-top: min(20vw,250px);
  padding-bottom: 100px;
  border-top: solid 1px var(--color01);
}
.home_ee .box::after {
  position: absolute;
  z-index: -2;
  display: block;
  content: "";
  width: 100%;
  height: 120%;
  background: url("../img/home/bg.png") no-repeat top center / 100%;
  inset: 0 0 auto;
  animation: furiko 6s infinite;
  transform-origin: top center;
}
.home_ee .post_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 570px;
  margin: 0 auto;
}
.home_ee .post_list li {width: 44%;}
.home_ee .post_list li a {
  color: #333333;
  text-decoration: none;
  transition: 0.5s;
}
.home_ee .post_list li a:hover {color: var(--color01);}
.home_ee .post_list li figure {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin: 0 0 20px;
}
.home_ee .post_list li figure img {transition: 0.5s;}
.home_ee .post_list li a:hover figure img {transform: scale(1.15);}
.home_ee .post_list li p {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.44;
}

/** home_select **/

.home_select {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  padding: 60px 0 100px;
  border-radius: 80px 80px 0 0;
}
.home_area {padding: 0 0 100px;}
.home .home_area h2 span:nth-of-type(1) {color: #EBEBE3;}

.home_area .area_list {
  max-width: 700px;
  margin: 0 auto;
}
.home_area .area_list {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.home_area .area_list::before {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  aspect-ratio: 474 / 285;
  width: 67%;
  margin: auto;
  inset: 0;
  background: url("../img/home/ico_shikoku.svg") no-repeat center / contain;
  pointer-events: none;
}
.home_area .area_list li {
  width: 48.5%;
  margin: 0 0 3%;
  aspect-ratio: 1 / 1;
  text-align: center;
}
.home_area .area_list li a {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 50%;
  font-size: min(27px,3vw);
  font-weight: 600;
  padding: 10% 0 0;
  line-height: 1;
  text-decoration: none;
  transition: 0.5s;
}
.home_area .area_list .area_ehime a {
  background: url("../img/home/bg_ehime.png") no-repeat center / contain;
  color: var(--color_ehime);
  border: solid 1px var(--color_ehime);
}
.home_area .area_list .area_kagawa a {
  background: url("../img/home/bg_kagawa.png") no-repeat center / contain;
  color: var(--color_kagawa);
  border: solid 1px var(--color_kagawa);
}
.home_area .area_list .area_tokushima a {
  background: url("../img/home/bg_tokushima.png") no-repeat center / contain;
  color: var(--color_tokushima);
  border: solid 1px var(--color_tokushima);
  padding: 70% 0 0;
}
.home_area .area_list .area_kochi a {
  background: url("../img/home/bg_kochi.png") no-repeat center / contain;
  color: var(--color_kochi);
  border: solid 1px var(--color_kochi);
  padding: 70% 0 0;
}
.home_area .area_list li a::after {
  position: absolute;
  z-index: -2;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  opacity: 0;
  transition: 0.5s;
}
.home_area .area_list li a:hover::after {opacity: 1;}
.home_area .area_list .area_ehime a:hover::after {background: var(--color_ehime);}
.home_area .area_list .area_kagawa a:hover::after {background: var(--color_kagawa);}
.home_area .area_list .area_tokushima a:hover::after {background: var(--color_tokushima);}
.home_area .area_list .area_kochi a:hover::after {background: var(--color_kochi);}

.home_area .area_list li a p {
  position: relative;
  z-index: -1;
  transition: 0.5s;
}
.home_area .area_list li a:hover p {color: #FFFFFF;}
.home_area .area_list li a span {
  display: block;
  color: #FFFFFF;
  font-size: 1.75em;
  font-family: var(--ppn);
  font-weight: 600;
  transition: 0.5s;
}
.home_area .area_list .area_ehime a span {-webkit-text-stroke: 1px var(--color_ehime);}
.home_area .area_list .area_kagawa a span {-webkit-text-stroke: 1px var(--color_kagawa);}
.home_area .area_list .area_tokushima a span {-webkit-text-stroke: 1px var(--color_tokushima);}
.home_area .area_list .area_kochi a span {-webkit-text-stroke: 1px var(--color_kochi);}
.home_area .area_list .area_ehime a:hover span {-webkit-text-stroke: 1px #FFFFFF;color:var(--color_ehime);}
.home_area .area_list .area_kagawa a:hover span {-webkit-text-stroke: 1px #FFFFFF;color:var(--color_kagawa);}
.home_area .area_list .area_tokushima a:hover span {-webkit-text-stroke: 1px #FFFFFF;color:var(--color_tokushima);}
.home_area .area_list .area_kochi a:hover span {-webkit-text-stroke: 1px #FFFFFF;color:var(--color_kochi);}

.home .home_back .box {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}
.home .home_back .box::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  width: auto;
  height: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color01);
  margin: auto;
  inset: 0 -100%;
  border-radius: 50%;
}
.home .home_back h2 {margin: 0 auto 50px;}
.home .home_back h2 span:nth-of-type(1) {color: #6798BF;}
.home .home_back h2 span:nth-of-type(2) {color: #FFFFFF;}
.home .home_back .box figure {
  position: relative;
  width: 280px;
  margin: 0 auto 30px;
}
.home .home_back .box figure::before {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: 160px;
  height: 160px;
  inset: -60px -50px auto auto;
  /*background: url("../img/common/ico_new_t.svg") no-repeat center / contain;*/
  background: url("../img/common/ico_new.svg") no-repeat center / contain;
  animation: rotate 12s infinite linear;
}
.home .home_back .box .btn {
  width: 320px;
  height: 70px;
  margin: 0 auto;
}
.home .home_back .box .btn a {
  display: block;
  height: 100%;
  line-height: 70px;
  background: #FEFBF8;
  border-radius: 99px;
  text-align: center;
  font-size: 1.125em;
  font-weight: 500;
  color: var(--color01);
  text-decoration: none;
  transition: 0.25s;
}
.home .home_back .box .btn a:hover {transform: translateY(-5px);}

/** home_info **/

.home_info {
  position: relative;
  background: var(--bg02);
  padding: 60px 0 100px;
  border-radius: 80px 80px 0 0;
}
.home_info::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background: #FFFFFF;
}
.home_info section section {
  position: relative;
  z-index: 0;
}
.home_info section section > div {
  background: #FFFFFF;
  padding: 50px;
  transform: translateY(100px);
  transition: 1s 0.5s;
  opacity: 0;
}
.home_info section section::before {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  margin: auto;
  transform: translateY(100px);
  transition: 1s;
  opacity: 0;
}

.home_info section section.fadein > div {
  transform: translateY(0);
  opacity: 1;
}
.home_info section section.fadein::before {
  transform: translateY(0);
  opacity: 1;
}


/**モニター募集**/
.home_monitor {
  text-align: center;
  margin: 0 auto 90px;
}
.home_monitor h3 {
  color: var(--color01);
  font-size: 1.875em;
  font-weight: 700;
  margin: 0 auto 20px;
}
.home_monitor div > div {
  max-width: 720px;
  margin: 0 auto;
}
.home_monitor div > p {
  color: var(--color01);
  font-weight: 500;
  text-align: left;
  margin: 0 auto 30px;
}
.home_monitor div > .monitor_date {
  font-size: 1.25em;
  font-weight: 600;
  text-align: center;
}
.home_monitor dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: left;
}
.home_monitor dl dt {
  position: relative;
  z-index: 0;
  width: 100px;
  font-size: 0.9375em;
  font-weight: 700;
  margin: 0 20px 20px 0;
  padding: 0 0 0 1em;
}
.home_monitor dl dt::before {
  position: absolute;
  inset: 0.6em auto auto 0;
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  background: #EC8097;
  border-radius: 50%;
}
.home_monitor dl dd {
  width: calc(100% - 120px);
  margin: 0 0 20px;
}

.home_monitor div > .btn {
  display: block;
  width: 280px;
  height: 60px;
  line-height: 60px;
  margin: 20px auto 0;
}
.home_monitor div > .btn a {
  display: block;
  height: 100%;
  color: #FFFFFF;
  font-weight: 500;
  background: var(--color01);
  border-radius: 99px;
  text-align: center;
  text-decoration: none;
  transition: 0.25s;
}
.home_monitor div > .btn a:hover {transform: translateY(-5px);}

/**お便り募集**/
.home_inquiry {
  text-align: center;
  margin: 0 auto 90px;
}
.home_inquiry::before {
  width: 90px;
  height: 60px;
  background: url("../img/home/ico_contact.svg") no-repeat center / contain;
  inset: -30px 0 auto;
}
.home_inquiry h3 {
  color: var(--color01);
  font-size: 1.25em;
  font-weight: 500;
  margin: 0 auto 30px;
}
.home_inquiry h3 img {
  display: block;
  width: 160px;
  margin: 0 auto 10px;
}
.home_inquiry div > p {
  display: inline-block;
  color: var(--color01);
  font-weight: 500;
  text-align: left;
  margin: 0 auto 20px;
}
.home_inquiry div > div + p {max-width: 610px;}
.home_inquiry div > div {
  max-width: 400px;
  padding: 30px 20px 20px;
  background: url("../img/home/ico_pin.svg") no-repeat top 10px center / 15px,#F9C965;
  color: var(--color01);
  font-size: 1.25em;
  font-weight: 600;
  margin: 0 auto 20px;
}
.home_inquiry div > div p {
  text-align: center;
  margin: 0;
}
.home_inquiry div > .btn {
  display: block;
  width: 280px;
  height: 60px;
  line-height: 60px;
  margin: 25px auto 0;
}
.home_inquiry div > .btn a {
  display: block;
  height: 100%;
  color: #FFFFFF;
  font-weight: 500;
  background: #EE695C;
  border-radius: 99px;
  text-align: center;
  text-decoration: none;
  transition: 0.25s;
}
.home_inquiry div > .btn a:hover {transform: translateY(-5px);}

/**愛でたい四国**/
.home_medetai::before {
  width: 90px;
  height: 60px;
  background: url("../img/home/ico_medetai.svg") no-repeat center / contain;
  inset: -50px 0 auto;
}
.home_medetai h3 {
  color: #725639;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 25px;
}
.home_medetai p {
  max-width: 480px;
  margin: 0 auto;
}
.home_medetai p a {transition: 0.5s;}
.home_medetai p a:hover {opacity: 0.5;}
.home_medetai p a img {
  display: block;
  width: 100%;
}



@media screen and (max-width: 800px) {

  /** common **/

  .home section h2 {
    font-size: 1.5em;
    padding: 40px 0 0;
    margin: 0 auto 30px;
  }

  /** home_slider **/

  .home_slider {
    width: 85%;
    padding: 10% 0 0;
    margin: 0 auto 90px;
  }
  .home_slider .slick-slide {
    width: 90%;
    padding: 20px;
    border-radius: 15px;
    margin: 0 2.5vw;
  }
  .home_slider ul .slick-slide .new::before {
    width: 40%;
    height: 40%;
    inset: calc(-20px - 12%) calc(-20px - 12%) auto auto;
  }

  .home_slider .slick-slide a > span {font-size: 12px;}
  .home_slider .slick-slide a > p {font-size: 1.125em;}
  .home_slider .slick-slide a > p span {
    font-size: 0.75em;
    padding: 0.25em 0.75em;
  }

/** home_post **/

  .home_post {
    padding: 30px 0 0;
    border-radius: 35px 35px 0 0;
  }
  .home_article .post_list {
    padding: 0;
    min-height: auto;
  }
  .home_article .post_list li {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px!important;
    border-bottom: solid 1px var(--color01);
  }
  .home_article .post_list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .home_article .post_list li figure {
    width: 48%;
    margin: 0;
  }
  .home_article .post_list li figure img {transition: 0s;}
  .home_article .post_list li a:hover figure img {transform: scale(1);}
  .home_article .post_list li a > div {width: 48%;}
  .home_article .post_list li p {
    font-size: 0.875em;
    margin: 0 0 1em;
  }
  
  .home_article .post_list li:nth-child(1) {
    position: static;
    width: 100%;
  }
  .home_article .post_list li:nth-child(1) a {flex-wrap: wrap;}
  .home_article .post_list li:nth-child(1) a figure {
    width: 100%;
    margin: 0 auto 20px;
  }
  .home_article .post_list li:nth-child(1) a > div {width: 100%;}
  
  .home_article .post_list li:nth-child(2)::after {display: none;}
  .home_ee .box {
    padding-top: 30vw;
    padding-bottom: 50px;
    border: none;
  }
  .home_ee .box::after {
    width: auto;
    height: 120%;
    aspect-ratio : 1 / 1.113;
    background: url("../img/home/bg_sp.png") no-repeat top center / 100%;
    inset: 0 -100% auto;
    margin: auto;
  }
  .home_ee .post_list {
    display: block;
    max-width: 100%;
  }
  .home_ee .post_list li {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: solid 1px var(--color01);
  }
  .home_ee .post_list li:nth-last-child(1) {
    padding: 0;
    margin: 0;
    border: none;
  }
  .home_ee .post_list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .home_ee .post_list li figure {
    width: 48%;
    margin: 0;
  }
  .home_ee .post_list li figure img {transition: 0s;}
  .home_ee .post_list li a:hover figure img {transform: scale(1);}
  .home_ee .post_list li p {
    width: 48%;
    font-size: 0.875em;
  }

  /** home_select **/

  .home_select {
    padding: 30px 0 50px;
    border-radius: 35px 35px 0 0;
  }
  .home_area {padding: 0 0 50px;}
  .home_area .area_list li a {font-size: min(27px, 3.5vw);}
  .home .home_back .box {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .home .home_back .box figure {
    width: 180px;
    margin: 0 auto 20px;
  }
  .home .home_back .box figure::before {
    width: 80px;
    height: 80px;
    inset: -30px -30px auto auto;
  }
  .home .home_back .box .btn {
    width: 280px;
    height: 60px;
    margin: 0 auto;
  }
  .home .home_back .box .btn a {
    line-height: 60px;
    font-size: 1em;
  }

  /** home_info **/

  .home_info {
    padding: 30px 0 50px;
    border-radius: 35px 35px 0 0;
  }
  .home .home_info h2 {margin-bottom: 60px;}
  .home_info section section > div {padding: 40px 5%;}
  
  /**モニター募集**/
  .home_monitor {margin: 0 auto 50px;}
  .home_monitor h3 {font-size: 1.25em;}
  .home_monitor div > p {
    font-size: 0.875em;
    margin: 0 auto 20px;
    line-height: 1.7;
  }
  .home_monitor div > .monitor_date {font-size: 1.1em;}
  .home_monitor dl dt {
    font-size: 0.875em;
    margin: 0 0 10px;
  }
  .home_monitor dl dd {width: 100%;}
  .home_monitor div > .btn {margin: 10px auto 0;}

  /**お便り募集**/
  
  .home_inquiry {margin: 0 auto 50px;}
  .home_inquiry h3 {
    font-size: 1.125em;
    margin: 0 auto 20px;
  }
  .home_inquiry div > p {
    display: block;
    font-size: 0.875em;
    line-height: 1.7;
  }
  
  /**愛でたい四国**/

  .home_medetai::before {inset: -30px 0 auto;}
  .home_medetai h3 {font-size: 1.125em}
  .home_medetai p {max-width: 90%;}
  
}



