@charset "UTF-8";
.fade {
  animation-name: fadein;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  will-change: transform;
  opacity: 0;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(50px);
    visibility: hidden;
  }
  50% {
    transform: translateY(0);
    visibility: visible;
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

.pc_br {
  display: none;
}

@media screen and (min-width: 960px) {
  .pc_br {
    display: block;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.top_wrapper {
  background: linear-gradient(#FF9A13 60%, #ffc478 75% 80%, white 100%);
  color: #707070;
  font-weight: bold;
  padding: 0 0 80px 0;
}

.top_wrapper h1 {
  line-height: 1.2;
  margin: 10px 0;
}

.top_wrapper .top-panel {
  background-color: rgba(255, 255, 255, 0.7);
  margin: 11px 15px 30px 15px;
  padding: 20px;
  border: solid 4px white;
  position: relative;
}

.top_wrapper .top-panel::after {
  display: block;
  content: '';
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border: solid 4px white;
  box-sizing: border-box;
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: 0;
}

.top_wrapper .smole_text {
  display: block;
}

.top_wrapper .img {
  background: url(../../img/swimsuit/top.png) no-repeat 60% 0/contain;
  max-width: 500px;
  margin: 0 auto;
}

.top_wrapper .img::before {
  content: '';
  display: block;
  padding: 0 0 85% 0;
}

@media screen and (min-width: 960px) {
  .top_wrapper {
    padding: 0 30px;
    overflow: hidden;
  }
  .top_wrapper .pc_wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 1200px;
    height: 800px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .top_wrapper h1 {
    font-size: 90px;
    margin: 10px 0 30px 0;
  }
  .top_wrapper .top-panel {
    display: inline-block;
    margin: 0px 15px 30px 15px;
    padding: 20px 30px;
  }
  .top_wrapper .img {
    width: 753px;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .top_wrapper .img::before {
    padding: 0 0 106% 0;
  }
  .top_wrapper .btn {
    max-width: 830px;
  }
}

.intro_wrapper .flex_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #707070;
  padding: 0 20px 35px 20px;
  text-align: justify;
}

.intro_wrapper .sign {
  margin: 30px -10px 0 0;
  font-size: 14px;
}

.intro_wrapper .name {
  font-size: 18px;
  letter-spacing: 20px;
  margin: 0 0 0 15px;
}

@media screen and (min-width: 960px) {
  .intro_wrapper {
    font-size: 25px;
  }
  .intro_wrapper .flex_wrap {
    padding: 35px 20px 35px 20px;
  }
  .intro_wrapper .pc_wrap {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
  }
  .intro_wrapper .sign {
    font-size: 16px;
    margin: 20px -20px 0 0;
  }
  .intro_wrapper .name {
    font-size: 25px;
  }
  .intro_wrapper p:not(.sign) {
    line-height: 2.2;
  }
}

.quality_wrapper {
  padding: 50px 20px 40px 20px;
  background-color: #FFCC88;
  color: #707070;
}

.quality_wrapper h2 {
  font-size: 20px;
  margin: 0 0 5px 0;
}

.quality_wrapper .flex_wrap {
  display: flex;
  flex-direction: column;
}

.quality_wrapper .left, .quality_wrapper .right {
  margin: 0 0 35px 0;
  background-color: white;
  padding: 20px;
  box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.quality_wrapper li {
  text-indent: -1em;
  margin: 0 0 0 1em;
}

.quality_wrapper li:before {
  content: '・';
}

@media screen and (min-width: 960px) {
  .quality_wrapper {
    padding: 60px 20px 60px 20px;
  }
  .quality_wrapper h2 {
    text-align: center;
    font-size: 25px;
    margin: 0 0 10px 0;
  }
  .quality_wrapper .pc_wrap {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .quality_wrapper .flex_wrap {
    flex-direction: row;
    justify-content: space-between;
  }
  .quality_wrapper .left, .quality_wrapper .right {
    width: 540px;
    max-width: 48%;
  }
  .quality_wrapper ul {
    margin: 0 0 0 12px;
  }
  .quality_wrapper p, .quality_wrapper li {
    line-height: 2;
  }
}

.message_wrapper {
  padding: 40px 0;
  color: #707070;
}

.message_wrapper h2 {
  font-size: 20px;
  text-align: center;
  margin: 0 0 15px 0;
}

.message_wrapper .flex_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 0 2px;
}

.message_wrapper .message {
  font-size: 12px;
  width: 49%;
  border: solid 2px #FFCC88;
  padding: 5px;
  margin: -2px 0 0 -2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.message_wrapper .message p:not(.user) {
  padding: 0 0 12px 0;
}

.message_wrapper .user {
  text-align: right;
  font-size: 11px;
}

@media screen and (min-width: 960px) {
  .message_wrapper {
    padding: 50px 20px 60px 20px;
  }
  .message_wrapper h2 {
    font-size: 30px;
    margin: 0 0 30px 0;
  }
  .message_wrapper .pc_wrap {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .message_wrapper .flex_wrap {
    justify-content: space-between;
  }
  .message_wrapper .message {
    width: 30%;
    height: 160px;
    font-size: 16px;
    padding: 10px 15px;
    justify-content: center;
    border-radius: 10px;
    border-width: 3px;
    box-shadow: 0 2px 5px -1px #838383;
  }
  .message_wrapper .message:nth-child(n + 4) {
    margin: 3% 0 0 0;
  }
  .message_wrapper .user {
    font-size: 14px;
  }
}

.spec_wrapper {
  padding: 40px 20px 70px 20px;
  background-color: #FFCC88;
  color: #707070;
}

.spec_wrapper h2 {
  font-size: 20px;
}

.spec_wrapper .spec_wrap {
  margin: 0 0 25px 0;
}

.spec_wrapper .cash_wrap {
  margin: 0 0 25px 0;
}

.spec_wrapper .table_flex_wrap {
  display: flex;
  flex-direction: column;
}

.spec_wrapper .table_flex_wrap .left, .spec_wrapper .table_flex_wrap .right {
  background-color: white;
  margin: 0 0 20px 0;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.2);
}

.spec_wrapper .table_flex_wrap .right .empty ~ th {
  width: 39%;
}

.spec_wrapper .table_flex_wrap table {
  width: 100%;
  text-align: center;
}

.spec_wrapper .table_flex_wrap th, .spec_wrapper .table_flex_wrap td {
  border-color: #707070;
}

.spec_wrapper .table_flex_wrap th {
  background-color: #dddddd;
  color: #3e3e3e;
}

.spec_wrapper .table_flex_wrap .empty {
  width: 22%;
  min-width: 80px;
}

.spec_wrapper .attention {
  font-size: 14px;
  margin: 0 0 40px 0;
}

.spec_wrapper .attention li {
  text-indent: -1em;
  margin: 0 0 0 1em;
}

.spec_wrapper .attention li::before {
  content: "・";
}

.spec_wrapper dl {
  margin: 0;
}

.spec_wrapper dt {
  float: left;
}

.spec_wrapper dt::after {
  display: inline;
  content: ":";
}

@media screen and (min-width: 960px) {
  .spec_wrapper h2 {
    font-size: 30px;
  }
  .spec_wrapper .pc_wrap {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .spec_wrapper .spec_wrap {
    font-size: 20px;
    margin: 0 0 35px 0;
  }
  .spec_wrapper .spec_wrap dl, .spec_wrapper .spec_wrap p {
    margin: 0 0 0 40px;
  }
  .spec_wrapper .cash_wrap {
    font-size: 20px;
    margin: 0 0 35px 0;
  }
  .spec_wrapper .cash_wrap p {
    margin: 0 0 0 40px;
  }
  .spec_wrapper .table_flex_wrap {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 0 0 40px;
    max-width: 1080px;
  }
  .spec_wrapper .table_flex_wrap .left, .spec_wrapper .table_flex_wrap .right {
    width: 500px;
    max-width: 48%;
    margin: 10px 0 30px 0;
  }
  .spec_wrapper .attention {
    margin: 0 0 30px 40px;
    font-size: 16px;
  }
  .spec_wrapper .attention p, .spec_wrapper .attention li {
    line-height: 2;
  }
}

.btn {
  display: block;
  transition: 0.2s;
  background: linear-gradient(#00DEB8 90%, white 100%);
  border: solid 3px #00A892;
  border-radius: 10px;
  color: white;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 100;
  padding: 15px;
  box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.4);
}

.btn::after {
  content: '';
  display: block;
  width: 50px;
  height: 66px;
  background: url(../../img/swimsuit/base_white.png) no-repeat left/50px 66px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.btn:hover {
  opacity: 1;
  transform: translateY(3px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 960px) {
  .btn {
    max-width: 960px;
    margin: 0 auto;
    font-size: 30px;
    padding: 10px 15px;
  }
  .btn::after {
    width: 100px;
    height: 40px;
    background: url(../../img/swimsuit/base_white_pc.png) no-repeat left/100px 40px;
    transform: translateY(-55%);
  }
}
