@charset "UTF-8";
body {
  font-family: 'Be Vietnam Pro', 'Noto Sans JP', sans-serif;
}

main {
  display: block;
}
.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}
.l-section {
  border-top: 1px solid #eee;
}
.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
[class*=swiper]:focus {
  outline: none;
}
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-button-prev, .swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.swiper-button-prev::before, .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
.swiper-button-prev::after, .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.mv {
  margin: 0;
  position: relative;
}
.mv .l-inner {
  padding-bottom: 0;
}
.mv .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}
.mv .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.mv .swiper-pagination {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 3.2rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}
.mv .swiper-pagination-bullet {
  display: block;
  width: 3px;
  height: 4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.4);
}
.mv .swiper-pagination-bullet:not(:first-child) {
  margin-top: 0.8rem;
}
.mv .swiper-pagination-bullet-active {
  background-color: var(--color-theme);
}
.mv .slide-media {
  height: 800px;
}
.mv .slide-media img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
}
.mv .slide-title {
  position: absolute;
  left: 8rem;
  bottom: 5%;
  padding: 30px 40px 40px;
  text-align: left;
  width: 60%;
}
.mv .slide-title.slide-title-pattern_01 {
  color: #000;
}
.mv .slide-title.slide-title-pattern_02 {
  color: #fff;
}
.mv .slide-title.slide-title-pattern_03 {
  background: rgb(0, 0, 0, 0.5);
  border-top-right-radius: 32px;
  color: #fff;
}
.mv .slide-title h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.mv .slide-title h3 {
  border-bottom: 0.5px solid #000;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  margin-top: 20px;
  padding-bottom: 0.5em;
  padding-right: 40px;
}
.mv .slide-title.slide-title-pattern_02 h3,
.mv .slide-title.slide-title-pattern_03 h3 {
  border-bottom: 0.5px solid #fff;
}
.mv .slide-title p {
  font-size: 10px;
  line-height: 1.5;
  margin-top: 15px;
}
.mv .slide-title p:last-child {
  font-size: 10px;
  line-height: 1.5;
}
.mv .swiper-slide[class*=-active] .slide-media img {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.mv .swiper-slide[class*=-active] .slide-title {
  -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
          animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}
.mv .cta {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 180px;
  z-index: 1;
}
.mv .cta img {
  width: 100%;
}

@-webkit-keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
    -webkit-filter: blur(300px);
            filter: blur(300px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
    -webkit-filter: blur(300px);
            filter: blur(300px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .l-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
  .mv {
    margin-bottom: 0;
  }
  .mv .slide-media {
    height: max(70vh, 70vw);
  }
}
@media only screen and (max-width: 599px) {
  html {
    font-size: 50%;
  }
  .pc-tab {
    display: none !important;
  }
  .mv .slide-title {
    background: none;
    bottom: 0;
    left: 5%;
    text-align: center;
    padding: 15px 20px;
    width: 90%;
  }
  .mv .slide-title.slide-title-pattern_03 {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    border-bottom-right-radius: 0;
  }
  .mv .slide-title h2 {
    font-size: 21px;
    line-height: 1.1;
  }
  .mv .slide-title h3 {
    border-bottom: 0.5px solid #000;
    display: block;
    font-size: 11px;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
    padding-right: 0;
    text-align: center;
  }
  .mv .slide-title.slide-title-pattern_02 h3,
  .mv .slide-title.slide-title-pattern_03 h3 {
    border-bottom: 0.5px solid #fff;
  }
  .mv .slide-title p {
    font-size: 9px;
    margin-top: 0.5em;
  }
  .mv .slide-title p:last-child {
    font-size: 9px;
  }
  .mv .cta {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .swiper-button-prev::before, .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .swiper-button-prev:hover::before, .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}

.section-home {
  padding: 60px 0;
}
.section-bgcolor {
  background-color: #e6e6dc;
  /* box-shadow: 0 1.25px 6px rgba(0,0,0,.2); */
  box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.2);
  margin: 60px auto;
}
.section-home .title-block {
  margin-top: 0;
}
.section-home .link {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin: 40px 0 0;
}
.section-home .link a {
	background: #8c8c8c;
	border: 1px solid #8c8c8c;
	color: #fff;
	width: 150px;
	height: 40px;
	line-height: 40px;
	margin: 0;
}
.section-home .link a:hover {
  opacity: .7;
}

.section-home .news {
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
	padding: 20px 0;
}
.section-home .news li {
	position: relative;
	padding: 0;
	-webkit-transition: background .3s ease;
	transition: background .3s ease;
}
.section-home .news li:hover {
	background: #E5F0F8;
}
.section-home .news li a {
	display: block;
	position: relative;
	padding: 10px 0;
	text-decoration: none;
}
.section-home .news li .date {
	margin-right: 40px;
}

@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 599px) {
  .section-bgcolor {
    box-shadow: none;
  }
  .section-home .news {
    border-top: 0.5px solid #666;
    border-bottom: 0.5px solid #666;
  }
  .section-home .news li .date {
    display: block;
    margin-bottom: 0.2em;
  }
  .section-home .link {
    margin-top: 20px;
  }
  .section-home .link a {
    width: 100%;
  }
}

.section-home .tiles {
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0;
}
.section-home .tile {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  position: relative;
  transition: all .2s cubic-bezier(.175,.885,.32,1.275);
  width: calc(( 100% - 20px ) / 3);
}
.section-home .tile:hover {
	transform: translateY(-3px);
}
.section-home .tile-2up .tile {
  width: calc(( 100% - 10px ) / 2);
}

.section-home .tile a {
  background-color: #fff;
  border-radius: 0 32px 0 0;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  z-index: 0;
}
.section-home .tile .tile__media {
  flex-basis: auto;
  flex-shrink: 1;
  height: 100%;
  min-height: auto;
  width: 100%;
}
.section-home .tile .tile__description {
  background: #fff;
  display: flex;
  flex-basis: auto;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 1;
  justify-content: space-between;
  padding: 1em;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
}
.section-home .tile .tile__category {
  border-bottom: 0.5px solid #000;
  font-size: 10px;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-bottom: 0.5em;
  position: relative;
}
.section-home .tile .tile__category:after {
  border-left: solid 1px #0068B7;
  border-top: solid 1px #0068B7;
  content: '';
  margin-top: -8px;
  position: absolute;
  top: 50%;
  right: 2px;
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.section-home .tile .tile__headline {
  font-size: 14px;
  line-height: 1.2;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  scale: 1;
}
.section-home .tile .tile__text p {
  font-size: 10px;
  line-height: 1.5;
  margin-top: 6px;
}
@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 599px) {
  .section-home .tile,
  .section-home .tile-2up .tile {
    margin-top: 20px;
    width: 100%;
  }
  .section-home.section-pickup .tile .tile__description {
    display: none !important;
  }
  .section-home .tile .tile__category {
    border-bottom: 0.5px solid #000;
  }
}

.section-home .boxes {
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0;
}
.section-home .box {
	background: rgb(255, 255, 255, 0.5);
	padding: 20px;
	width: calc(100% / 3 - 7px);
}
.section-home .box h3 {
	border-bottom: 1px solid #000;
  font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 12px;
	padding-bottom: 0.5em;
  text-align: center;
}
.section-home .box h3 + p {
  line-height: 1.5;
	margin: 0;
	text-align: justify;
}
@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 599px) {
  .section-home .box {
    width: 100%;
  }
  .section-home .boxes .box:not(:first-child) {
    margin-top: 20px;
  }
  .section-home .box h3 {
    border-bottom: 0.5px solid #000;
  }
}
