@charset "UTF-8";
/*-----------------------------
 切り替え
-------------------------------*/
.pc {
  display: none;
}

.sp {
  display: block;
}

.sp02 {
  display: none;
}

@media (max-width: 350px) { /* 350px以下 */
  .pc {
    display: none;
  }
  .sp {
    display: none;
  }
  .sp02 {
    display: block;
  }
}
@media (min-width: 600px) and (max-width: 979px) { /* 600px以上～979px以下（タブレット） */
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp02 {
    display: none;
  }
}
@media (min-width: 1024px) { /* 1024px以上（PC） */
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .sp02 {
    display: none;
  }
}
/*-----------------------------
 コンテンツ共通
-------------------------------*/
.wrap {
  margin: 0 auto;
  padding: 5vw 5vw 10vw;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-feature-settings: "palt" 1; /*自動字詰め*/
  text-align: justify; /*均等割り付け*/
  text-justify: inter-ideograph; /*IE用均等割り付け*/
  background: url(../img/back.jpg) top left repeat;
  background-color: #e6e6e6;
  overflow: visible;
}

p {
  line-height: 160%;
}

a:hover {
  opacity: 0.6;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

#page-top {
  display: none;
  margin-left: -9999px;
  padding-left: 6vw;
}
#page-top:hover {
  opacity: 0.6;
  transition: 0.4s;
}
#page-top::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e00003;
}
#page-top::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 6px;
  bottom: 0;
  left: 23px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

.fv {
  margin-bottom: 3vw;
}
.fv h1 {
  margin-left: -3vw;
  width: 96vw;
}
.fv h1 img {
  width: 100%;
}

.lead {
  padding: 10vw 4vw 8vw;
  text-align: center;
  background: #fff;
}
.lead h2 {
  margin: 0 0 3vw;
  padding: 0;
  font-family: "vdl-v7marugothic", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #e00003;
  line-height: 130%;
  letter-spacing: 0.1rem;
}
.lead .txt {
  margin-bottom: 5vw;
  font-weight: 200;
  font-size: 1rem;
  color: #e00003;
  letter-spacing: 0.08rem;
}
.lead .kmlogo {
  margin: 0 auto;
  width: 20%;
}

.date {
  padding: 10vw 4vw 3vw;
  background: #e00003;
}
.date h3 {
  margin-bottom: 6vw;
  text-align: center;
  font-family: "vdl-v7marugothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  color: #fff;
}
.date ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.date ul:first-of-type {
  margin-bottom: 9vw;
  padding-bottom: 9vw;
}
.date ul:first-of-type::after {
  display: inline-block;
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0; /*線の上下位置*/
  width: 65vw; /*線の長さ*/
  height: 1px; /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); /*位置調整*/
  background-color: #fff; /*線の色*/
}
.date ul li {
  margin: 0 2vw 2vw 0;
  width: 48.75%;
}
.date ul li:nth-child(2n) {
  margin: 0 0 2vw;
}

section {
  margin-bottom: 3vw;
  padding: 10vw 4vw;
  border-radius: 20px;
}
section .sub {
  position: relative;
  margin: 0 auto 2vw;
  padding-top: 0.4vw;
  text-align: center;
  font-family: "vdl-v7marugothic", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 130%;
  color: #fff;
}
section .sub::before {
  position: absolute;
  content: "";
  top: 2.5vw;
  margin-right: 5vw;
  background: url(../img/line.png) top left no-repeat;
  width: 48px;
  height: 10px;
  background-size: 80%;
}
section .sub::after {
  content: "";
  position: absolute;
  top: 2.5vw;
  margin-left: 5vw;
  background: url(../img/line.png) top right no-repeat;
  width: 48px;
  height: 10px;
  background-size: 80%;
}
section h4 {
  margin-bottom: 5vw;
  text-align: center;
  font-weight: 700;
  font-size: 1.9rem;
  color: #fff;
  line-height: 120%;
  letter-spacing: 0.1rem;
}
section .txt {
  margin: 3vw 0 5vw;
  padding: 0 2vw;
  font-weight: 200;
  font-size: 1rem;
  color: #fff;
  line-height: 150%;
  letter-spacing: 0.08rem;
}
section .item {
  margin-bottom: 11vw;
}
section .item .img {
  margin: 0 -4vw;
}
section .item h5 {
  margin-top: 5vw;
  text-align: center;
  font-family: "vdl-v7marugothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #fff;
}
section .item h5 p {
  margin-bottom: 0.3vw;
  font-family: "vdl-v7marugothic", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0;
}
section .item .more {
  margin: 6vw auto 0;
  padding: 2vw 0 2vw 4vw;
  text-align: center;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  background: #fff;
  border-radius: 50px;
  width: 75%;
}
section .set h3 {
  position: relative;
  margin: 10vw 0 6vw;
  padding-top: 10vw;
  text-align: center;
  font-weight: 700;
  font-size: 1.9rem;
  color: #fff;
  letter-spacing: 0.2rem;
}
section .set h3::before {
  display: inline-block;
  position: absolute;
  content: "";
  left: 50%;
  top: 0; /*線の上下位置*/
  width: 65vw; /*線の長さ*/
  height: 1px; /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); /*位置調整*/
  background-color: #fff; /*線の色*/
}
section .set .item {
  margin-bottom: 2vw !important;
}
section .set .item:last-of-type {
  margin-bottom: 0;
}
section .set .item dl {
  padding: 6vw 4vw;
  border-radius: 10px;
  background: #f8e9c9;
}
section .set .item dl dt {
  margin: 0 auto 3vw;
  text-align: center;
  font-family: "vdl-v7marugothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  line-height: 110%;
}
section .set .item dl .txt {
  margin: 3vw 0 0;
  padding: 0;
}
section .set .item dl .txt ul li {
  position: relative;
  padding-left: 0.8rem;
}
section .set .item dl .txt ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
section .set .item dl .txt p {
  margin-top: 2vw;
  text-align: right;
}
section .set .item dl .more {
  margin: 3vw auto 0;
  text-align: center;
  color: #fff !important;
  letter-spacing: 0.1rem;
  width: 82%;
}

#date01 {
  background-color: #60b265;
}
#date01 .sub::before {
  left: 13vw;
}
#date01 .sub::after {
  right: 14vw;
}
#date01 h4 {
  margin-bottom: 2vw;
}
#date01 .item {
  position: relative;
}
#date01 .item:first-of-type .txt ul:first-of-type {
  margin-right: 2vw;
}
#date01 .item:last-of-type {
  margin-bottom: 0;
}
#date01 .item .amount {
  position: absolute;
  top: 56vw;
  right: -5vw;
}
#date01 .item .amount img {
  text-align: right;
  width: 80%;
}
#date01 .item h5 {
  letter-spacing: 0.3rem;
}
#date01 .item .txt {
  margin: 0 auto 5vw;
  padding: 0;
  width: 78vw;
}
#date01 .item .txt ul {
  display: inline-block;
  vertical-align: top;
}
#date01 .item .txt ul li {
  position: relative;
  padding-left: 0.8rem;
}
#date01 .item .txt ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
#date01 .item .more {
  color: #60b265;
}

#date02 {
  background: #5199c3;
}
#date02 .sub::before {
  left: 6vw;
}
#date02 .sub::after {
  right: 6vw;
}
#date02 .item {
  margin-bottom: 0;
}
#date02 .item .more {
  color: #5199c3;
}

#date03 {
  padding: 10vw 4vw 2vw;
  background: #36579f;
}
#date03 .sub::before {
  left: 8vw;
}
#date03 .sub::after {
  right: 9vw;
}
#date03 .item .more {
  color: #36579f;
}
#date03 .set .item dl dt {
  color: #36579f;
}
#date03 .set .item dl .txt {
  color: #36579f;
}
#date03 .set .item dl .more {
  background: #36579f;
}

#date04 {
  background: #c15e8f;
}
#date04 .sub::before {
  left: 11.5vw;
}
#date04 .sub::after {
  right: 12vw;
}
#date04 .item:last-of-type {
  margin-bottom: 0;
}
#date04 .item .more {
  color: #c15e8f;
}

#date05 {
  background: #973f17;
}
#date05 .sub::before {
  left: 9vw;
}
#date05 .sub::after {
  right: 9vw;
}
#date05 .item:last-of-type {
  margin-bottom: 0;
}
#date05 .item .more {
  color: #973f17;
}

#date06 {
  background: #80be39;
}
#date06 .sub::before {
  left: 3.5vw;
}
#date06 .sub::after {
  right: 4vw;
}
#date06 .item {
  margin-bottom: 0;
}
#date06 .item .txt {
  margin: 6vw 0 5vw;
}
#date06 .item .more {
  color: #80be39;
}

#date07 {
  background: #d68626;
}
#date07 .sub::before {
  left: 13.5vw;
}
#date07 .sub::after {
  right: 14vw;
}
#date07 .item:last-of-type {
  margin-bottom: 0;
}
#date07 .item:nth-of-type(5) h5 p, #date07 .item:nth-of-type(6) h5 p {
  letter-spacing: 0.1rem;
}
#date07 .item .more {
  color: #d68626;
}

#date08 {
  margin-bottom: 0;
  background: #976ccb;
}
#date08 .sub::before {
  top: 5vw;
  left: 8vw;
}
#date08 .sub::after {
  top: 5vw;
  right: 8vw;
}
#date08 .item {
  margin-bottom: 0;
}
#date08 .item .txt {
  margin: 6vw 0 5vw;
}
#date08 .item .more {
  color: #976ccb;
}

.Android { /* Android用css */ }
.Android section .sub {
  font-size: 1.1rem;
}
.Android section .txt {
  font-size: 1rem;
}
.Android .lead h2 {
  font-size: 1.6rem;
}
.Android .lead .txt {
  font-size: 0.9rem;
}
.Android .date h3 {
  font-size: 1.4rem;
}
.Android section h4 {
  font-size: 1.7rem;
}
.Android section .txt {
  font-size: 0.9rem;
}
.Android section .item h5 {
  font-size: 1.5rem;
}
.Android section .item .more {
  font-size: 1.2rem;
}
.Android section .set h3 {
  font-size: 1.7rem;
}
.Android section .set .item dl dt {
  font-size: 1.5rem;
}
.Android #date01 .sub::before {
  left: 12vw;
}
.Android #date01 .sub::after {
  right: 11vw;
}
.Android #date01 .item .amount img {
  width: 70%;
}
.Android #date02 .sub::before {
  left: 5vw;
}
.Android #date02 .sub::after {
  right: 5vw;
}
.Android #date03 .sub::before {
  left: 7vw;
}
.Android #date03 .sub::after {
  right: 8vw;
}
.Android #date04 .sub::before {
  left: 10.5vw;
}
.Android #date04 .sub::after {
  right: 11vw;
}
.Android #date05 .sub::before {
  left: 8vw;
}
.Android #date05 .sub::after {
  right: 8vw;
}
.Android #date06 .sub::before {
  left: 2.5vw;
}
.Android #date06 .sub::after {
  right: 3vw;
}
.Android #date07 .sub::before {
  left: 12.5vw;
}
.Android #date07 .sub::after {
  right: 13vw;
}
.Android #date08 .sub::before {
  left: 7vw;
}
.Android #date08 .sub::after {
  right: 7vw;
}

@media (max-width: 350px) { /* 350px以下 */
  section {
    padding: 8vw 4vw;
  }
  section .sub {
    font-size: 1.1rem;
  }
  section .sub::before, section .sub::after {
    top: 3vw;
    background-size: 70%;
  }
  section h4 {
    font-size: 1.5rem;
  }
  section .txt {
    font-size: 1rem;
  }
  section .item h5 {
    font-size: 1.4rem;
    letter-spacing: 0.3rem;
  }
  section .item .more {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    width: 80%;
  }
  section .set h3 {
    font-size: 1.5rem;
  }
  section .set .item dl dt {
    font-size: 1.3rem;
    letter-spacing: 0.15rem;
  }
  section .set .item dl .more {
    font-size: 1.2rem;
    width: 90%;
  }
  .lead h2 {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
  .lead .txt {
    font-size: 1rem;
  }
  .date h3 {
    margin-bottom: 6vw;
    font-size: 1.3rem;
  }
  #date01 .sub::before {
    left: 10vw;
  }
  #date01 .sub::after {
    right: 11vw;
  }
  #date01 .item:first-of-type .txt ul:first-of-type {
    margin-right: 0;
  }
  #date01 .item .amount {
    right: -9vw;
  }
  #date01 .item .amount img {
    width: 70%;
  }
  #date01 .item .txt {
    margin: 2vw auto 5vw;
  }
  #date02 .sub::before {
    left: 2vw;
  }
  #date02 .sub::after {
    right: 3vw;
  }
  #date03 .sub::before {
    left: 4vw;
  }
  #date03 .sub::after {
    right: 6vw;
  }
  #date04 .sub::before {
    left: 8vw;
  }
  #date04 .sub::after {
    right: 9vw;
  }
  #date04 .set h3 {
    font-size: 2.5rem;
  }
  #date04 .set .item dl dt {
    font-size: 2.3rem;
  }
  #date04 .set .item dl .more {
    width: 90%;
  }
  #date05 .sub::before {
    left: 5vw;
  }
  #date05 .sub::after {
    right: 6vw;
  }
  #date06 .sub::before {
    left: 0;
  }
  #date06 .sub::after {
    right: 0.5vw;
  }
  #date07 .sub::before {
    left: 11vw;
  }
  #date07 .sub::after {
    right: 12vw;
  }
  #date07 .item h5 p {
    font-size: 1.1rem;
  }
  #date08 .sub::before {
    top: 7vw;
    left: 5vw;
  }
  #date08 .sub::after {
    top: 7vw;
    right: 5vw;
  }
}
@media (min-width: 600px) { /* 600px以上（タブレット） */
  .wrap {
    margin: 0;
    padding: 5vw 18vw 10vw;
    width: 100%;
  }
  p {
    font-size: 1.5rem;
    line-height: 160%;
  }
  #page-top {
    padding-left: 0;
  }
  .fv {
    margin: 0 auto 2vw;
    width: 500px;
  }
  .fv h1 {
    margin-left: -2vw;
    width: 530px;
  }
  .lead {
    padding: 7vw 2.7vw 5vw;
  }
  .lead h2 {
    font-size: 2.5rem;
  }
  .lead .txt {
    margin-bottom: 3vw;
    font-size: 1.3rem;
  }
  .date {
    padding: 7vw 2.4vw 1.5vw;
  }
  .date h3 {
    margin-bottom: 4vw;
    font-size: 2.2rem;
  }
  .date ul:first-of-type {
    margin-bottom: 7vw;
    padding-bottom: 7vw;
  }
  .date ul:first-of-type::after {
    width: 35vw;
  }
  .date ul li {
    margin: 0 1vw 1vw 0;
    width: 225px;
  }
  .date ul li:nth-child(2n) {
    margin: 0 0 1vw;
  }
  .date ul li:last-child {
    margin: 0 0 -4vw;
  }
  section {
    margin: 0 auto 2vw;
    padding: 6vw 2.7vw;
    width: 500px;
  }
  section .sub {
    margin: 0 auto 1vw;
    font-size: 1.5rem;
  }
  section .sub::before, section .sub::after {
    top: 2vw;
  }
  section h4 {
    margin-bottom: 2vw;
    font-size: 2.7rem;
  }
  section .txt {
    margin: 2vw 0 5vw;
    padding: 0 1vw;
    font-size: 1.1rem;
  }
  section .txt p {
    font-size: 1.1rem;
  }
  section .item {
    margin-bottom: 7vw;
  }
  section .item .img {
    margin: 0 -2.7vw;
  }
  section .item h5 {
    margin-top: 3vw;
    font-size: 2.2rem;
  }
  section .item h5 p {
    margin-bottom: 0;
    font-size: 1.5rem;
  }
  section .item .more {
    margin: 4vw auto 0;
    padding: 1vw 0 1vw 3vw;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    width: 60%;
  }
  section .set h3 {
    margin: 5vw 0 4vw;
    padding-top: 7vw;
    font-size: 2.7rem;
  }
  section .set h3::before {
    width: 35vw;
  }
  section .set .item dl {
    padding: 4vw 2vw;
  }
  section .set .item dl dt {
    font-size: 2.3rem;
  }
  section .set .item dl .more {
    padding: 1vw 0 1vw 3vw;
    font-size: 1.6rem;
    width: 65%;
  }
  #date01 .sub::before {
    left: 14vw;
  }
  #date01 .sub::after {
    right: 14.5vw;
  }
  #date01 h4 {
    margin-bottom: 2vw;
  }
  #date01 .item:first-of-type .txt ul:first-of-type {
    margin-right: 2vw;
  }
  #date01 .item .amount {
    top: 42vw;
    right: 1vw;
  }
  #date01 .item .amount img {
    width: 100%;
  }
  #date01 .item .txt {
    margin: 1vw auto 3vw;
    width: 48vw;
  }
  #date02 .sub::before {
    left: 9.5vw;
  }
  #date02 .sub::after {
    right: 10vw;
  }
  #date03 {
    padding: 6vw 2.7vw 1vw;
  }
  #date03 .sub::before {
    left: 10.5vw;
  }
  #date03 .sub::after {
    right: 11vw;
  }
  #date04 .sub::before {
    left: 12.5vw;
  }
  #date04 .sub::after {
    right: 13vw;
  }
  #date05 .sub::before {
    left: 10.5vw;
  }
  #date05 .sub::after {
    right: 11vw;
  }
  #date06 .sub::before {
    left: 7vw;
  }
  #date06 .sub::after {
    right: 7.5vw;
  }
  #date06 .item .txt {
    margin: 4vw 0;
  }
  #date07 .sub::before {
    left: 14vw;
  }
  #date07 .sub::after {
    right: 14.5vw;
  }
  #date08 .sub::before {
    top: 5vw;
    left: 10vw;
  }
  #date08 .sub::after {
    top: 5vw;
    right: 10vw;
  }
  #date08 .item .txt {
    margin: 4vw 0 5vw;
  }
}
@media (min-width: 1024px) { /* 1024px以上（PC） */
  .wrap {
    margin: 0 auto;
    padding: 30px 0 100px;
    width: 100%;
  }
  p {
    font-size: 1.5rem;
    line-height: 170%;
  }
  .fv {
    margin: 0 auto 10px;
  }
  .fv h1 {
    margin-left: -15px;
  }
  .lead {
    padding: 60px 20px 55px;
  }
  .lead h2 {
    margin: 0 0 20px;
  }
  .lead .txt {
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  .date {
    padding: 60px 20px 10px !important;
  }
  .date h3 {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .date ul:first-of-type {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
  .date ul:first-of-type::after {
    width: 80%;
  }
  .date ul li {
    margin: 0 10px 10px 0;
  }
  .date ul li:nth-child(2n) {
    margin: 0 0 10px;
  }
  .date ul li:last-child {
    margin: 0 0 -40px;
  }
  section {
    margin: 0 auto 10px;
    padding: 50px 20px;
  }
  section .sub {
    margin: 0 auto 5px;
    padding-top: 3px;
    font-size: 1.4rem;
  }
  section .sub::before, section .sub::after {
    top: 13px;
    background-size: 100%;
  }
  section h4 {
    margin-bottom: 15px;
    font-size: 2.5rem;
  }
  section .txt {
    margin: 20px 0 30px;
    padding: 0 10px;
    font-size: 1.1rem;
  }
  section .item {
    margin-bottom: 50px;
  }
  section .item .img {
    margin: 0 -20px;
  }
  section .item h5 {
    margin-top: 20px;
    font-size: 1.9rem;
    line-height: 120%;
  }
  section .item h5 p {
    margin-bottom: -4px;
    font-size: 1.4rem;
    letter-spacing: 0.15rem;
  }
  section .item .txt {
    margin-top: 15px;
  }
  section .item .txt p {
    font-size: 1.1rem;
  }
  section .item .more {
    margin: 30px auto 0;
    padding: 10px 0 10px 20px;
    font-size: 1.4rem;
    width: 55%;
  }
  section .set h3 {
    margin: 40px 0 30px;
    padding-top: 40px;
    font-size: 2.5rem;
  }
  section .set h3::before {
    width: 80%;
  }
  section .set .item {
    margin-bottom: 10px !important;
  }
  section .set .item dl {
    padding: 40px 20px;
  }
  section .set .item dl dt {
    margin: 0 auto 20px;
    font-size: 1.9rem;
  }
  section .set .item dl .txt {
    margin: 20px 0 0;
  }
  section .set .item dl .txt p {
    margin-top: 10px;
  }
  section .set .item dl .more {
    margin: 20px auto 0;
    padding: 10px 0 10px 20px;
    font-size: 1.4rem;
    width: 60%;
  }
  #date01 .sub::before {
    left: 100px;
  }
  #date01 .sub::after {
    right: 103px;
  }
  #date01 h4 {
    margin-bottom: 20px;
  }
  #date01 .item:first-of-type .txt ul:first-of-type {
    margin-right: 20px;
  }
  #date01 .item .amount {
    top: 320px;
    right: 0;
  }
  #date01 .item .txt {
    margin: 10px auto 30px;
    width: 440px;
  }
  #date02 .sub::before {
    left: 65px;
  }
  #date02 .sub::after {
    right: 70px;
  }
  #date03 {
    padding: 50px 20px 10px !important;
  }
  #date03 .sub::before {
    left: 80px;
  }
  #date03 .sub::after {
    right: 83px;
  }
  #date04 .sub::before {
    left: 90px;
  }
  #date04 .sub::after {
    right: 95px;
  }
  #date05 .sub::before {
    left: 80px;
  }
  #date05 .sub::after {
    right: 82px;
  }
  #date06 .sub::before {
    left: 58px;
  }
  #date06 .sub::after {
    right: 61px;
  }
  #date06 .item .txt {
    margin: 30px 0;
  }
  #date07 .sub::before {
    left: 105px;
  }
  #date07 .sub::after {
    right: 107px;
  }
  #date08 .sub::before {
    top: 32px;
    left: 80px;
  }
  #date08 .sub::after {
    top: 32px;
    right: 80px;
  }
  #date08 .item .txt {
    margin: 30px 0;
  }
}