@charset "utf-8";
/* CSS Document */
.topList {
  background-color: #F7F9FA;
  padding: 30px 0 80px;
}
.topList .ttlBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.topList .ttlBox p {
  background-color: #EE6E00;
  color: #FFF;
  border-radius: 99px;
  overflow: hidden;
  letter-spacing: 1px;
  padding: 0.5em 1em;
}
.topList ul.list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.topList ul.list > li {
  flex-basis: calc(50% - 7.5px);
  background-color: #FFF;
  box-shadow: 0 0 5px #EEE;
  display: flex;
  flex-direction: column;
}
.topList ul.list > li a {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  padding: 15px 4px;
  gap: 8px;
  line-height: 1.2;
}
.topList ul.list > li a .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #EE6E00;
}
.topList ul.list > li a .heading h3 {
  font-weight: 700;
}
.topList ul.list > li .kingaku {
  margin-top: auto;
}
.topList ul.list > li .kingaku li {
  background-repeat: no-repeat;
  background-position: 0 0;
  text-align: right;
}
.topList ul.list > li .kingaku li.week {
  background-image: url("../img/ico_week.png");
}
.topList ul.list > li .kingaku li.month {
  background-image: url("../img/ico_month.png");
}
.topList ul.list > li .kingaku li strong {
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  display: inline-block;
}
.topList ul.btn_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.topList ul.btn_menu > li {
  flex-basis: calc(50% - 7.5px);
}
@media (max-width: 750px) {
  .topList .ttlBox p {
    font-size: 80%;
  }
  .topList ul.list > li .kingaku {
		margin-inline: 8px;
  }
  .topList ul.list > li .kingaku li {
    background-size: auto 15px;
    padding-top: 15px;
    font-size: 11px;
  }
  .topList ul.list > li .kingaku li strong {
    font-size: 24px;
    padding-right: 2px;
  }
  .topList ul.list > li a .heading h3 {
    font-size: calc(50vw / 10);
  }
  .topList ul.list > li a .heading p {
    font-size: calc(50vw / 28);
  }
  .topList ul.btn_menu {
    max-width: 90%;
    margin-inline: auto;
  }
}
@media (min-width: 751px) {
  .topList .ttlBox h2 {
    font-size: 36px;
  }
  .topList ul.list {
    max-width: 1200px;
    margin-inline: auto;
    margin-bottom: 60px;
  }
  .topList ul.list > li {
    flex-basis: calc(33.3% - 10px);
  }
  .topList ul.list > li a .heading h3 {
    font-size: 34px;
  }
  .topList ul.list > li a .heading p {
    font-size: 14px;
  }
  .topList ul.list > li .img,
  .topList ul.list > li .kingaku {
		margin-inline: 15px;
  }
  .topList ul.list > li .kingaku li {
    background-position: 0 center;
  }
  .topList ul.list > li .kingaku li strong {
    font-size: 48px;
    padding-right: 8px;
  }
  .topList ul.btn_menu {
    max-width: 1200px;
    margin-inline: auto;
  }
  .topList ul.btn_menu > li {
    flex-basis: calc(25% - 11.25px);
  }
}
.topStrong {
  background-color: #FFF;
  padding: 30px 0 80px;
}
.topStrong h2.secTtl {
  color: #ee6e00;
  margin-bottom: 1em;
  font-weight: bold;
  text-align: center;
}
.topStrong .flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.topStrong .flex .item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.topStrong .flex .item .text h3 {
  color: #ee6e00;
  line-height: 1.1;
  margin-bottom: 0.67em;
  font-weight: bold;
}
.topStrong .flex .item .text h4 {
  font-weight: bold;
}
.topStrong .flex .item .img {
  margin-top: auto;
  text-align: center;
}
.topStrong .bnrBox {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (max-width: 750px) {
  .topStrong .flex {
    width: 75vw;
    margin-inline: auto;
		margin-bottom: 30px;
  }
}
@media (min-width: 751px) {
  .topStrong h2.secTtl {
    font-size: 46px;
  }
  .topStrong .flex {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px;
		margin-bottom: 50px;
  }
  .topStrong .flex > div {
    flex-basis: calc(33.3% - ((60px * 2) / 3));
  }
  .topStrong .flex .item .text h3 {
    font-size: 34px;
  }
}
.topColumn {
	background-color: #FFF;
	background-image: url("../img/columnBg_sp.png");
	background-repeat: no-repeat;
	background-size: auto 40%;
	background-position: right 20vw top;
	padding-inline: calc(5vw / 2);
	padding-top: 30px;
	padding-bottom: 50px;
}
.topColumn .innr {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.topColumn .innr .slider ul {
	margin-bottom: 30px;
}
.topColumn .innr .slider ul li {
	padding: 8px;
}
.topColumn .innr .slider .more {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.topColumn .innr .slider .more a {
	display: block;
	background-color: #000;
	color: #FFF;
	padding: 1em 2em;
	border-radius: 99px;
}
.topColumn .innr .ttlBox p {
	margin-bottom: 1em;
	font-weight: bold;
	letter-spacing: 2px;
}

@media (max-width: 750px) {
.topColumn {
	padding-inline: calc(10vw / 2);
}
.topColumn .innr .ttlBox {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	width: 70%;
}
.topColumn .innr .ttlBox h2 {
	flex-basis: 50%;
}
.topColumn .innr .ttlBox p {
	flex-basis: calc(50% - 15px);
	white-space: nowrap;
	font-size: 80%;
}
.topColumn .innr .slider .more {
	text-align: center;
}
.topColumn .innr .slider .more a {
	width: 75%;
}
}
@media (min-width: 751px) {
.topColumn {
	background-size: auto 450px;
	background-position: right 70vw top;
	padding-block: 80px;
}
.topColumn .innr {
	flex-direction: row;
	gap: 50px;
	width: 100%;
	max-width: 1400px;
	margin-inline: auto;
}
.topColumn .innr .ttlBox {
	flex-basis: calc(20% - 50px);
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
}
.topColumn .innr .slider {
	flex-basis: 80%;
	flex-shrink: 0;
	width: 75%;
	padding-block: 30px;
}
.topColumn .innr .slider ul {
	margin-bottom: 80px;
}
.topColumn .arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 45px;
  position: relative;
}	
.topColumn .arrow_box .prev-arrow,
.topColumn .arrow_box .next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position:relative;
}

.topColumn .arrow_box .prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
}

.topColumn .arrow_box .prev-arrow::before,
.topColumn .arrow_box .next-arrow::before{
  position:absolute;
  content: "";
  width:10px;
  height:10px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  transform:rotate(45deg);
}
.topColumn .innr .slider .more {
	text-align: center;
}
.topColumn .innr .slider .more a {
	width: 400px;
	font-size: 22px;
	font-weight: lighter;
}

}
@media (min-width: 1400px) {
.topColumn {
	padding-inline: calc((100vw - 1400px) / 2);
}
}

@media (max-width: 750px) {
}
@media (min-width: 751px) {
}
@media (min-width: 1400px) {}