﻿* {
  margin: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  letter-spacing: 1px;
  line-height: 1.5;
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Osaka, sans-serif;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

:root {
  --pc-content-width: 1200px;
  --gray8: #8C8C8C;
  --gray6: #6C6C6C;
  --blue: #49BCBD;
  --bg-blue: #F2FBFB;
  --pink: #E88994;
  --bg-gray: #FAF9F7;
}

[data-animation] {
  transition: 0.5s 0.3s;
  transition-property: opacity transform;
}
.transparent {
  opacity: 0;
  transform: translateY(50px);
}

/* Header */
.header {
  padding: 0 10px;
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
}
.header-inner {
  padding: 10px 0;
}
.header-inner {
  margin: 0 auto;
  width: var(--pc-content-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 60px;
}
.headerNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
}
.headerNav-inner {
  position: relative;
  display: block;
  margin: auto;
  width: 1200px;
}
.headerNav-inner-open {
  position: absolute;
  right: 0;
  display: block;
  width: 57px;
  padding: 10px;
  background-color: white;
}
.headerNav-inner-open img {
  display: block;
}
.headerNav-content {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  animation: navOpen 0.2s;
  overflow: hidden;
  display: none;
}
.headerNav-content.show {
  display: block;
  animation: navOpen 0.2s;
}
.headerNav-content.show.hide {
  animation: navClose 0.2s;
}
@keyframes navOpen {
  from {
    height: 0;
  }
  to {
    height: 100vh;
  }
}
@keyframes navClose {
  from {
    height: 100vh;
  }
  to {
    height: 0;
  }
}
.headerNav-content-inner {
  display: block;
  margin: auto;
  width: 1200px;
}
.headerNav-content-inner-close {
  margin-left: auto;
  display: block;
  width: 57px;
  padding: 10px;
  background-color: white;
}
.headerNav-content-inner-close img {
  display: block;
}
.headerNav-content-inner ul {
  width: 400px;
  margin: auto;
  padding: 0 20px;
}
.headerNav-content-inner ul + ul {
  margin-top: 70px;
}
.headerNav-content-inner ul li {
  margin: 1em 0;
}
.headerNav-content-inner ul li a {
  font-size: 17px;
  font-weight: bold;
  line-height: 2;
  color: var(--blue);
}
.headerNav-content-inner .button {
  display: block;
  margin-top: 20px;
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  color: white;
}
.headerNav-content-inner .button.register {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.headerNav-content-inner .button.login {
  background: white;
  color: var(--blue);
}
.headerLogo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
}
.headerLogo-image {
  margin-right: 15px;
  width: 160px;
}
.headerButtonList {
  display: flex;
}
@media (max-width: 535px) {
  .headerButtonList {
    display: none;
  }
  .headerLogo-image {
    margin-right: 15px;
    width: 128px;
  }
  .header {
    position: relative;
  }
  .header-inner {
    padding: 8px 0;
  }
  .headerNav-inner-open,
  .headerNav-content-inner-close {
    width: 47px;
    padding: 7px;
  }
}
.headerButtonList-item:not(:first-child) {
  margin-left: 12px;
}
.headerButtonList-item-button {
  display: block;
  padding: 6px 10px;
  width: 170px;
  border-radius: 20px;
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  color: white;
}
.headerButtonList-item-button.register {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.headerButtonList-item-button.login {
  background: white;
  color: var(--blue);
}

.tmpInformation {
  max-width: var(--pc-content-width);
  margin: auto;
  padding: 15px 10px;
  text-align: right;
}
.tmpInformation a {
  font-size: 14px;
  font-weight: bold;
  color: var(--pink);
  text-decoration: underline;
}
.tmpInformation a:hover {
  text-decoration: none;
}

/* Cover */
.cover {
  width: var(--pc-content-width);
  margin: auto;
  display: flex;
  position: relative;
}
.cover-content {
  width: 380px;
  text-align: center;
  padding: 40px 30px 20px 20px;
}
.cover-content-title {
  color: var(--gray8);
  font-size: 17px;
  letter-spacing: 4px;
}
.cover-content-image {
  width: 210px;
}
.cover-content-title strong {
  display: block;
  margin-top: 2px;
  font-size: 30px;
  color: var(--blue);
  letter-spacing: 2px;
}
.cover-content-title .supplement {
  margin-right: -1em;
  font-size: 10px;
  color: var(--gray8);
}
.cover-content-registerButton {
  position: relative;
  margin-top: -20px;
  display: block;
  padding: 17px 20px;
  border-radius:40px;
  background: var(--blue);
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  color: white;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.1), inset -1px -1px 1px rgba(0, 0, 0, 0.05), 1px 1px 7px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.cover-content-login {
  margin: 16px auto;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  color: var(--gray6);
  text-decoration: underline;
}
.cover-content-login:hover {
  text-decoration: none;
}
.cover-content-attention {
  font-size: 10px;
  color: var(--gray8);
  line-height: 1.5;
}
.cover-content-attention a {
  color: var(--gray8);
}
.cover-content-storeButtons {
  display: flex;
  justify-content: center;
}
.cover-content-storeButtons li {
  margin: 10px 5px;
}
.cover-content-storeButtons li img {
  height: 36px;
}
.cover-mainVisual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /*background-image: url('../img/cover-1031px.jpg');*/
  background-size: cover;
  background-position: center;
  padding: 0 20px;
}
.cover-supplement {
  position: absolute;
  right: 0;
  bottom: -17px;
  color: var(--gray8);
  font-size: 10px;
}

/* Introduction */
.introduction {
  position: relative;
  padding: 30px 20px 50px;
  text-align: center;
}
.introduction-title {
  margin: 30px auto;
  font-size: 3.4rem;
  font-weight: normal;
  color: var(--blue);
  line-height: 1.4;
  letter-spacing: 3px;
}
.introduction-desc {
  margin: 15px auto;
  font-size: 1.8rem;
  color: var(--gray8);
  line-height: 1.8;
}
.introduction-image {
  margin-top: 25px;
  width: var(--pc-content-width);
}

/* Usage */
.usage {
  padding: 50px 20px;
  background: var(--bg-blue);
  text-align: center;
}
.usage-inner {
  margin: auto;
  width: var(--pc-content-width);
}
.usage-inner-title {
  margin-bottom: 25px;
  font-size: 3.4rem;
  font-weight: normal;
  color: var(--blue);
}
.usage-inner-title-effect {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.usage-inner-title-effect::before,
.usage-inner-title-effect::after {
  position: absolute;
  top: -3px;
  left: 6px;
  display: block;
  content: '';
  width: 0;
  border-top: 13px solid var(--blue);
  border-left: 4px solid transparent;
  border-right: 5px solid transparent;
}
.usage-inner-title-effect::before {
  transform: rotate(45deg);
}
.usage-inner-title-effect::after {
  transform: rotate(90deg);
  top: 5px;
  left: 12px;
}
.usage-inner-list {
  padding-top: 75px;
}
.usage-inner-list input {
  display: none;
}
.usageList {
  display: flex;
  justify-content: space-between;
}
.usageList-item {
  width: 30%;
  position: relative;
}
.usageList-item.transparent {
  transition-delay: 0s;
}
.usageList-item:not(.transparent):nth-child(2) {
  transition-delay: 0.5s;
}
.usageList-item:not(.transparent):nth-child(3) {
  transition-delay: 0.7s;
}
.usageList-item-image {
  position: relative;
  width: 270px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.usageList-item-desc {
  margin-top: 30px;
  font-size: 22px;
  color: var(--gray8);
}
.usageList-item-number {
  position: absolute;
  top: -60px;
  left: calc(50% - 180px);
  font-size: 2.7rem;
  color: var(--blue);
  border: 2px dashed;
  border-radius: 40px;
  line-height: 1.2;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.usageList-item-number small {
  font-size: 12px;
}
.usageList-item-arrow {
  display: block;
  position: absolute;
  top: calc(50% - 60px);
  right: max(-4.5vw, -50px);
  color: var(--blue);
  width: 40px;
  height: 40px;
}
.usageList-item-arrow.prev {
  display: none;
}
.usageList-item-arrow::before {
  content: '';
  display: block;
  position: relative;
  top: 4%;
  left: 28%;
  border-left: 2px solid;
  border-radius: 100px;
  height: 92%;
  width: 15%;
}
.usageList-item-arrow::after {
  content: '';
  display: block;
  width: 70%;
  height: 70%;
  border-right: 2px solid;
  border-radius: 6px;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  position: absolute;
  left: 0%;
  top: 13%;
}

/* Features */
.features {
  padding: 60px 0;
  overflow: hidden;
}
.features-inner {
  margin: auto;
  width: var(--pc-content-width);
}
.features-inner-title {
  margin-bottom: 50px;
  font-size: 3.4rem;
  font-weight: normal;
  color: var(--blue);
  text-align: center;
}
.features-inner-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.features-inner-list-item {
  margin-bottom: 4%;
  width: 48%;
}
.featureItem {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--bg-gray);
  background-repeat: no-repeat;
  background-size: auto 50%;
}
.featureItem::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1000px;
  background-color: var(--bg-gray);
}
.featureItem:nth-of-type(2n+1)::before {
  right: 100%;
}
.featureItem:nth-of-type(2n)::before {
  left: 100%;
}
.featureItem:nth-of-type(2n+1) {
  padding-left: 80px;
  padding-right: 20px;
  background-position: 20px center;
}
.featureItem:nth-of-type(2n) {
  background-position: right 20px center;
  transform: translateY(45px);
}
.featureItem:nth-of-type(1) {
  background-image: url('../image/feature-bg1.png');
}
.featureItem:nth-of-type(2) {
  background-image: url('../image/feature-bg2.png');
}
.featureItem:nth-of-type(3) {
  background-image: url('../image/feature-bg3.png');
}
.featureItem:nth-of-type(4) {
  background-image: url('../image/feature-bg4.png');
}
.featureItem-number {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 3px;
  color: var(--blue);
}
.featureItem:nth-of-type(4n+2) .featureItem-number,
.featureItem:nth-of-type(4n+3) .featureItem-number {
  color: var(--pink);
}
.featureItem-title {
  margin: 6px 0 12px;
  font-size: 2.7rem;
  font-weight: normal;
  color: var(--gray8);
}
.featureItem-title strong {
  position: relative;
  text-shadow: 2px 2px 0 var(--bg-gray);
  box-shadow: inset 0 -9px #49BCBD88;
  padding-bottom: 2px;
}
.featureItem:nth-of-type(4n+2) .featureItem-title strong,
.featureItem:nth-of-type(4n+3) .featureItem-title strong {
  box-shadow: inset 0 -9px #E8899488;
}
.featureItem-desc {
  font-size: 1.8rem;
  color: var(--gray8);
}

/* Event features */
.eventFeatures {
  padding: 60px 20px;
  background-color: var(--bg-blue);
  text-align: center;
}
.eventFeatures-inner {
  margin: 0 auto;
  width: var(--pc-content-width);
}
.eventFeatures-inner-title {
  margin-bottom: 25px;
  font-size: 3.4rem;
  font-weight: normal;
  color: var(--blue);
}
.eventFeatures-inner-list {
  display: flex;
  justify-content: space-between;
}
.eventFeatures-inner-list-item {
  margin-top: 80px;
  width: 30%;
}
.eventFeatures-inner-list-item.transparent {
  transition-delay: 0s;
}
.eventFeatures-inner-list-item:not(.transparent):nth-child(2) {
  transition-delay: 0.5s;
}
.eventFeatures-inner-list-item:not(.transparent):nth-child(3) {
  transition-delay: 0.7s;
}
.eventFeatureItem {
  padding: 30px;
  border-radius: 18px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.eventFeatureItem-image {
  position: relative;
  margin: -110px auto 0;
  width: 160px;
  border: 5px solid white;
  border-radius: 160px;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}
.eventFeatureItem-image img {
  position: relative;
  display: block;
}
.eventFeatureItem-title {
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--blue);
  margin: 10px auto 15px;
}
.eventFeatureItem-desc {
  font-size: 2rem;
  color: var(--gray8);
  line-height: 1.8;
}

/* Safety */
.safety {
  padding: 80px 0;
  text-align: center;
}
.safety-title {
  margin-bottom: 35px;
  font-size: 3.4rem;
  font-weight: normal;
  color: var(--blue);
}
.safety-list {
  margin: auto;
  width: 1000px;
  display: flex;
  justify-content: space-around;
}
.safety-list-item {
  width: 270px;
  margin: 0 15px;
}
.safety-list-item.transparent {
  transition-delay: 0s;
}
.safety-list-item:not(.transparent):nth-child(2) {
  transition-delay: 0.5s;
}
.safety-list-item:not(.transparent):nth-child(3) {
  transition-delay: 0.7s;
}
.safety-list-item-desc {
  margin-top: 20px;
  font-size: 1.5rem;
  color: var(--gray6);
}
.safety-extra {
  margin-top: 40px;
  color: var(--pink);
  font-size: 12px;
  font-weight: bold;
}

/* Happy customers */
.happyCustomers {
  padding: 60px 20px;
  overflow: hidden;
}
.happyCustomers-inner {
  margin: auto;
  width: 900px;
}
.happyCustomers-inner-title {
  margin-bottom: 50px;
  font-size: 3.4rem;
  font-weight: normal;
  color: var(--blue);
  text-align: center;
}
.happyCustomers-inner-list-item {
  margin-bottom: 25px;
}
.happyCustomers-inner-readMore {
  font-size: 1.8rem;
  text-align: right;
}
.happyCustomers-inner-readMore a {
  color: var(--blue);
  text-decoration: underline;
}
.happyCustomers-inner-readMore a:hover {
  text-decoration: none;
}
.happyCustomers-inner-readMore a::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}
.customerItem {
  padding: 13px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-start;
}
.customerItem-image {
  border-radius: 10px;
  margin-right: 15px;
  width: 240px;
  overflow: hidden;
  font-size: 0;
}
.customerItem-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--gray6);
}
.customerItem-content-info {
  margin: 10px 0 0;
  display: flex;
  font-size: 1.6rem;
  flex-wrap: wrap;
}
.customerItem-content-info dt {
  margin-right: 0.5em;
}
.customerItem-content-info dd {
  margin-right: 2em;
}
.customerItem-content-info .female {
  color: var(--pink);
}
.customerItem-content-info .male {
  color: var(--blue);
}
.customerItem-content-title {
  margin: 10px 0;
  font-size: 1.9rem;
  font-weight: bold;
  color: var(--gray6);
}
.customerItem-content-link {
  margin: auto 7px 4px auto;
  font-size: 1.7rem;
  color: var(--blue);
  text-decoration: underline;
}
.customerItem-content-link:hover {
  text-decoration: none;
}
.customerItem-content-link::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}

/* Recommended Contents */
.recommendedContents {
  padding: 60px 20px;
  text-align: center;
}
.recommendedContents-title {
  margin-bottom: 20px;
  font-size: 3.4rem;
  font-weight: normal;
  color: var(--blue);
}
.recommendedContents-list {
  margin: auto;
  width: 550px;
}
.recommendedContents-list-item {
  margin-bottom: 50px;
}
.recommendedContents-list-item-desc {
  font-size: 1.5rem;
  color: var(--gray6);
  margin-bottom: 10px;
}
.recommendedContents-list-item-image {
  width: 100%;
}

/* Bottom induction */
.bottomInduction {
  margin-top: 100px;
  padding: 0 20px;
  background: var(--bg-gray);
  display: flex;
  justify-content: center;
}
.bottomInduction-content {
  padding: 30px 0;
  width: 350px;
  text-align: center;
}
.bottomInduction-content-title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: normal;
  color: var(--gray6);
  text-align: center;
}
.bottomInduction-content-registerButton {
  display: block;
  padding: 17px 20px;
  border-radius:40px;
  background: var(--blue);
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  color: white;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.1), inset -1px -1px 1px rgba(0, 0, 0, 0.05), 1px 1px 7px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.bottomInduction-content-login {
  margin: 16px auto;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  color: var(--gray6);
  text-decoration: underline;
}
.bottomInduction-content-login:hover {
  text-decoration: none;
}
.bottomInduction-content-buttons {
  display: flex;
  justify-content: center;
}
.bottomInduction-content-buttons a {
  margin: 7px;
}
.bottomInduction-content-buttons a img {
  display: block;
  height: 32px;
}
.bottomInduction-image {
  width: 375px;
  margin-top: -100px;
  margin-left: 50px;
}

/* Footer */
.footer {
  position: relative;
  padding: 80px 20px 50px;
  text-align: center;
}
.footer-links-item {
  display: inline-block;
  font-size: 11px;
  margin: 0.5em;
}
.footer-links-item a {
  color: var(--gray8);
}
.footer-logo {
  margin-top: 80px;
}
.footer-extra {
  margin-top: 15px;
  font-size: 10px;
  color: var(--gray8);
}
.footer-storeCopyright {
  margin-top: 50px;
  font-size: 10px;
  color: var(--gray8);
}
.footer-storeCopyright small {
  display: block;
}
.footer-copyright {
  display: inline-block;
  margin-top: 50px;
  font-size: 13px;
  color: var(--gray6);
}
.totop {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  color: var(--blue);
  border: 1px solid;
  border-radius: 50px;
  transform: rotate(45deg);
  cursor: pointer;
}
.totop::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid;
  border-right: transparent;
  border-bottom: transparent;
  margin-top: 5px;
  margin-left: 5px;
}

/* Floating content */
.floatingContent {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 15px 18px;
  background: white;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.floatingContent.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.floatingContent-registerButton {
  display: block;
  padding: 12px 20px;
  border-radius:40px;
  background: var(--blue);
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: white;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.1), inset -1px -1px 1px rgba(0, 0, 0, 0.05), 1px 1px 7px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* SP */
@media screen and (max-width: 800px) {
  html {
    font-size: 7px;
  }
  .tmpInformation {
    text-align: center;
  }
  .cover {
    position: relative;
    width: 100%;
    flex-direction: column-reverse;
  }
  .cover-content {
    width: 100%;
    padding: 20px 20px 20px;
  }
  .cover-content-title {
    display: none;
  }
  .cover-content-image {
    display: none;
  }
  /* 画像を変更する場合は、frontend/index.htmlでのcssのverも更新することが必要 */
  .cover-mainVisual {
    background-image: url('../image/cover-800px.jpg');
    flex: auto;
  }
  .cover-content-registerButton {
    margin-top: 0;
  }
  .cover-supplement {
    left: 15px;
    right: 15px;
    top: calc(100% - 18px);
    bottom: auto;
    display: block;
    text-align: center;
  }
  .introduction {
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
    padding-bottom: 150px;
  }
  .introduction-title {
    margin-top: 10px;
    font-size: 21px;
    letter-spacing: 2px;
  }
  .introduction-desc {
    font-size: 15px;
  }
  .introduction-image {
    margin-top: 15px;
    max-width: none;
    width: 800px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .usage {
    padding-left: 0;
    padding-right: 0;
  }
  .usage-inner-title {
    margin-bottom: 0;
  }
  .usage-inner-list {
    overflow: hidden;
  }
  .usageList {
    position: relative;
    max-width: none;
    width: 300vw;
    left: 0;
    transition: 0.3s;
  }
  input[value="2"]:checked + input + .usageList {
    left: -100vw;
  }
  input[value="3"]:checked + .usageList {
    left: -200vw;
  }
  .usageList-item {
    width: 100vw;
    user-select: none;
  }
  .usageList-item-number {
    left: 7vw;
  }
  .usageList-item-image {
    width: auto;
    height: calc(100vh - 270px);
  }
  .usageList-item-desc {
    margin-top: 15px;
  }
  .usageList-item-arrow {
    cursor: pointer;
    width: min(9vw, 60px);
    height: min(9vw, 60px);
  }
  .usageList-item-arrow.prev {
    display: block;
    left: 2vw;
    right: auto;
    transform: rotate(180deg);
  }
  .usageList-item-arrow.next {
    right: 2vw;
  }
  .features-inner-list-item {
    width: 100%;
  }
  .featureItem:nth-of-type(2n) {
    transform: none;
  }
  .featureItem,
  .featureItem:nth-of-type(2n+1) {
    padding: 20px 20px 20px 30px;
  }
  .eventFeatures-inner-list {
    flex-direction: column;
  }
  .eventFeatures-inner-list-item {
    width: auto;
    margin-top: 30px;
  }
  .eventFeatureItem {
    position: relative;
    margin-left: 35px;
    padding: 20px 20px 20px 55px;
    text-align: left;
  }
  .eventFeatureItem-title {
    margin: 0 0 5px;
  }
  .eventFeatureItem-title br {
    display: none;
  }
  .eventFeatureItem-image {
    position: absolute;
    top: calc(50% - 40px);
    left: -40px;
    width: 80px;
    border-width: 3px;
    margin: 0;
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
  }
  .eventFeatures-inner-list-item:not(.transparent):nth-child(2),
  .eventFeatures-inner-list-item:not(.transparent):nth-child(3) {
    transition-delay: 0.3s;
  }
  .safety-extra {
    font-size: 10px;
  }
  .customerItem {
    flex-direction: column;
  }
  .customerItem-image {
    width: 100%;
  }
  .customerItem-image img {
    width: 100%;
  }
  .customerItem-content {
    width: 100%;
  }
  .customerItem-content-title {
    margin: 5px 0 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .customerItem-content-info dd {
    margin-right: 1em;
  }
  .bottomInduction {
    margin-top: 0;
    display: block;
  }
  .bottomInduction-content {
    margin: auto;
    padding: 30px 0 0 0;
  }
  .bottomInduction-image {
    width: 260px;
    margin: auto;
    padding: 10px 0 20px 0;
  }
  .footer {
    padding-top: 100px;
  }
  .totop {
    border: none;
    bottom: auto;
    top: 20px;
    left: calc(50% - 30px);
  }
  .floatingContent {
    display: block;
  }
}
@media screen and (min-width: 1031px) {
  /* 画像を変更する場合は、frontend/index.htmlでのcssのverも更新することが必要 */
  .cover-mainVisual {
    background-image: url('../image/cover-1031px.jpg');
  }
  .bottomInduction-image {
    margin-left: 75px;
  }
}
@media screen and (min-width: 801px) and (max-width: 1030px) {
  /* 画像を変更する場合は、frontend/index.htmlでのcssのverも更新することが必要 */
  .cover-mainVisual {
    background-image: url('../image/cover-801_1030px.jpg');
  }
}
@media screen and (min-width: 535px) and (max-width: 800px) {
  .cover-mainVisual {
    height: 460px;
  }
}
@media screen and (max-width: 534px) {
  .cover-mainVisual {
    height: 285px;
  }
}
