@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@300;400;500;700&display=swap");
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

body {
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  color: #e0eeff;
}

h1 {
  font-size: 14px;
  font-weight: normal;
}

input:focus {
  background-color: #e9f8c5;
  transition: 0.6s;
}

body.no_scroll {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  color: aliceblue;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  transition: background-color 0.3s;
}

.bg-on {
  background-color: #2291bd;
  box-shadow: 1px 1px 5px #333;
  transition: background-color 0.3s;
}

.logo {
  color: azure;
  font-size: 2rem;
  font-weight: 500;
  padding: 0 0 0 10px;
}
.logo a {
  color: #fff;
}

.humBtn {
  position: relative;
  margin: 0 2% 0 0;
  top: 0;
  left: 0;
  width: 24px;
  height: 16px;
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  z-index: 15;
}
@media screen and (min-width: 765px) {
  .humBtn {
    display: none;
  }
}
.humBtn__bar01 {
  position: absolute;
  background-color: #ffffff;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
}
.humBtn__bar02 {
  position: absolute;
  background-color: #ffffff;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  content: "";
  transform: translateY(-50%);
}
.humBtn__bar03 {
  position: absolute;
  background-color: #ffffff;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  content: "";
}

.humBtn__bar01 {
  animation: bar01 0.6s forwards;
}

@keyframes bar01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.humBtn__bar02 {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

.humBtn__bar03 {
  animation: bar03 0.6s forwards;
}

@keyframes bar03 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.humBtn.active .humBtn__bar01 {
  -webkit-animation: active-bar01 0.75s forwards;
  animation: active-bar01 0.75s forwards;
}

@keyframes active-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}
.humBtn.active .humBtn__bar02 {
  opacity: 0;
}

.humBtn.active .humBtn__bar03 {
  -webkit-animation: active-bar03 0.75s forwards;
  animation: active-bar03 0.75s forwards;
}

@keyframes active-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.navi {
  display: none;
}
@media screen and (min-width: 765px) {
  .navi {
    display: initial;
    font-size: 16px;
    margin: 5px 10px 0 0;
  }
}
.navi__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navi__item {
  padding: 0 20px 0 0;
}
.navi__item:nth-last-child(1) {
  padding: 0;
}
.navi__item a {
  color: #fff;
}
.navi__item a:hover {
  color: #7ddcff;
}

.anchor {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  padding: 80px 7% 0;
  background-color: #003348;
  font-size: 1.2rem;
  z-index: 9;
  opacity: 0;
  transform: translateX(100%);
  transition: 0.3s;
  text-align: center;
}
.anchor__item {
  color: #fff;
  padding: 20px 0;
}
.anchor__item:not(:first-of-type) {
  border-top: 1px solid white;
}
.anchor__item a {
  color: #fff;
}
.anchor.show {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (min-width: 765px) {
  .anchor.show {
    opacity: 0;
    transform: translateX(100%);
  }
}
.anchor__contact {
  margin: 100px 0 0 0;
}
.anchor__contact a {
  display: block;
  width: 100%;
  padding: 5px 0;
  border-radius: 5px;
  background-color: #fff;
  color: #498f49;
  transition: 0.3s;
}
.anchor__contact a:hover {
  background-color: #498f49;
  color: #fff;
}

.mask {
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff7e;
  opacity: 0;
  visibility: hidden;
  transition: 0.8s;
}
.mask.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 765px) {
  .mask.show {
    opacity: 0;
    visibility: hidden;
  }
}

.bgi {
  position: relative;
  width: 100vw;
  height: 190vh;
}
@media screen and (min-width: 480px) {
  .bgi {
    height: 200vh;
  }
}
.bgi__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: inset(0);
}
.bgi__img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100vh;
  background-size: cover;
}

.top {
  width: 100vw;
}
.top__bgi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-image: url(../img/Aqua_Slim_bedroom.jpg);
  background-position: right;
}
.top__inner {
  padding: 80px 10px 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 765px) {
  .top__inner {
    padding: 120px 10px 300px;
  }
}
.top__ex {
  color: #333;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.815);
  padding: 10px;
  border-radius: 4px;
  max-width: 640px;
  width: 100%;
}
.top__exname {
  font-size: 1rem;
  border-bottom: dotted 2px #ff75dc;
  padding: 0 1px;
}
.top__ttlArea {
  position: relative;
  margin: 12% 0 0 0;
  padding: 10px 20px;
  background-color: rgba(80, 80, 80, 0.68);
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
}
.top__sttl {
  font-size: 1.2rem;
  padding: 0 0 0 5px;
}
.top__ttl {
  font-size: 3.2rem;
  padding: 0 0 0 1px;
  line-height: 1.05;
}
.top__txt {
  font-size: 1.4em;
  padding: 5px 0 0 5px;
}
.top__copyTxt {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 500;
  color: palevioletred;
  position: absolute;
  top: -45px;
  right: 10px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 2px #ffbbe9;
  line-height: 1.3;
}

.arrow {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 5% 0 40%;
}
@media screen and (min-width: 765px) {
  .arrow {
    padding: 5% 0;
  }
}
.arrow__chevron {
  position: absolute;
  width: 30px;
  height: 9px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}
.arrow__chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}
.arrow__chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}
.arrow__chevron:before {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  border-radius: 2px 0 0 2px;
  background: #e6e6e6;
  left: 0;
  transform: skew(0deg, 30deg);
}
.arrow__chevron::after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  border-radius: 0 2px 2px 0;
  background: white;
  right: 0;
  transform: skew(0deg, -30deg);
}
.arrow__text {
  display: block;
  position: absolute;
  top: 120px;
  left: -35px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.55;
  animation: pulse 2s linear alternate infinite;
}
@media screen and (min-width: 765px) {
  .arrow__text {
    top: 135%;
  }
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes pulse {
  to {
    opacity: 1;
  }
}
.collabo {
  margin: 0 auto;
  background-color: rgba(38, 204, 255, 0.835);
  text-align: center;
  border-radius: 4px;
  max-width: 640px;
  width: 100%;
  padding: 10px;
  animation: yura 2s ease 2s 3;
}
.collabo__ttl {
  padding: 8px 5px;
  font-size: 4.558vw;
}
@media screen and (min-width: 480px) {
  .collabo__ttl {
    font-size: 1.2rem;
  }
}
.collabo__icon {
  font-size: 1.55rem;
  background-color: palevioletred;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 5px;
  margin: 2px 0 10px;
}
.collabo__oriEvent {
  padding: 10px 0 0 0;
  font-size: 1.1rem;
}
.collabo__exname {
  color: #fffd80;
  border-bottom: dotted 2px #ff75dc;
  font-size: 5.058vw;
}
@media screen and (min-width: 480px) {
  .collabo__exname {
    font-size: 1.2rem;
  }
}

@keyframes yura {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2%);
  }
}
.about {
  color: #333;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 80px 10px;
}
.about__inner {
  padding: 0 10px;
}
.about__bgi {
  background-image: url(../img/Aqua_Slim_dining.jpg);
  background-position: left;
  backdrop-filter: black;
}
.about__container {
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
}
.about__header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.about__ttl {
  position: relative;
  font-size: 1.4rem;
  padding: 0 0 0 14px;
}
.about__ttl::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #333;
  width: 80px;
  height: 2px;
  bottom: -5px;
  left: 14px;
}
.about__sttl {
  font-family: "M PLUS Rounded 1c";
  padding: 4px 0 0 44px;
  font-size: 1.1rem;
  color: #333;
}
.about__txt {
  font-family: "M PLUS Rounded 1c";
  font-size: 1rem;
  text-indent: 1rem;
}
.about__txt--co {
  font-size: 0.9rem;
  color: #fff;
  text-indent: 0;
}
@media screen and (min-width: 480px) {
  .about__txt {
    font-size: 1.2rem;
  }
}
.about__contents {
  margin: 40% auto 0;
  max-width: 780px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.84);
  padding: 26px;
}
@media screen and (min-width: 480px) {
  .about__contents {
    margin: 30% auto 0;
  }
}
@media screen and (min-width: 765px) {
  .about__contents {
    padding: 38px;
  }
}
.about__coution {
  max-width: 780px;
  border-radius: 4px;
  background-color: rgba(216, 112, 147, 0.9);
  margin: 5% auto;
  padding: 26px;
}
@media screen and (min-width: 765px) {
  .about__coution {
    padding: 38px;
  }
}
.about__imgArea {
  max-width: 780px;
  width: 100%;
  margin: 28px auto;
}
.about__img {
  width: 100%;
  padding: 0 0 10%;
}

.text {
  background-color: #d4fffa;
  padding: 20pxpx 10px;
}

.plan {
  color: #333;
  display: flex;
  justify-content: center;
  padding: 80px 10px;
}
.plan__inner {
  max-width: 780px;
  min-width: 100%;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}
.plan__bgi {
  background-image: url(../img/Aqua_Slim_kitchen.jpg);
  background-position: left;
  background-size: cover;
}
.plan__header {
  display: flex;
  align-items: center;
}
.plan__img {
  width: 100%;
}
.plan__ttl {
  position: relative;
  font-size: 1.4rem;
  padding: 0 0 0 14px;
}
.plan__ttl::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #333;
  width: 52px;
  height: 2px;
  bottom: -5px;
  left: 14px;
}
.plan__sttl {
  font-family: "M PLUS Rounded 1c";
  padding: 4px 0 0 44px;
  font-size: 1.1rem;
}
.plan__contents {
  max-width: 780px;
  font-family: "M PLUS Rounded 1c";
  padding: 25px 14px 0;
  font-size: 0.9rem;
}
.plan__imgArea {
  background-color: #fff;
  padding: 10px 10px 10px 10px;
  margin: 3.5% auto;
  max-width: 795px;
}
.plan__img {
  width: 100%;
}

.fukuri {
  width: 100vw;
  height: 120hv;
  position: relative;
  color: #333;
}
@media screen and (min-width: 480px) {
  .fukuri {
    height: 180vh;
  }
}
.fukuri__bgi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100vh;
}
.fukuri__inner {
  max-width: 780px;
  min-width: 100%;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}
.fukuri__header {
  display: flex;
  align-items: center;
}
.fukuri__ttl {
  position: relative;
  font-size: 1.4rem;
  padding: 0 0 0 14px;
}
.fukuri__ttl::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #333;
  width: 80px;
  height: 2px;
  bottom: -5px;
  left: 14px;
}
.fukuri__sttl {
  font-family: "M PLUS Rounded 1c";
  padding: 4px 0 0 44px;
  font-size: 1.1rem;
}
.fukuri__contents {
  padding: 50px 14px;
}
.fukuri__container {
  max-width: 795px;
  padding: 10px;
  margin: 25% auto;
  font-size: 0.9rem;
}
@media screen and (min-width: 765px) {
  .fukuri__container {
    margin: 12% auto;
  }
}
.fukuri__txt {
  font-family: "M PLUS Rounded 1c";
  padding: 26px;
  text-indent: 1rem;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.84);
  margin-top: 20px;
  font-size: 1rem;
  margin-bottom: 20%;
}
@media screen and (min-width: 765px) {
  .fukuri__txt {
    padding: 38px;
  }
}
@media screen and (min-width: 480px) {
  .fukuri__txt {
    font-size: 1.2rem;
  }
}
.fukuri__imgArea {
  max-width: 760px;
  margin: 30px 0 0 0;
}
.fukuri__img {
  width: 100%;
}

.coution {
  color: red;
  border-bottom: 1px solid red;
}

#form__contents {
  padding: 0 0 10px;
  position: relative;
}

.count {
  transform: translateX(100%);
  background-color: rgba(0, 0, 0, 0.662);
  box-shadow: 1px 1px 3px #333;
  padding: 5px 10px;
  color: white;
  font-size: 16px;
  text-align: center;
  position: fixed;
  right: 0;
  top: 80px;
  z-index: 5;
  transition: transform 0.7s;
  border-radius: 5px 0 0 5px;
}
@media screen and (min-width: 765px) {
  .count {
    display: none;
    right: 18%;
    transform: translateX(50%);
    border-radius: 5px 5px 5px 5px;
  }
}
.count.countHide {
  transition: opacity 0.5s;
  opacity: 0;
}
.count.js-cntShow {
  display: block;
  transform: translateX(0);
}

.contact {
  width: 100vw;
  position: relative;
}
.contact__bgiInner {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  clip-path: inset(0);
  background-color: #0000005a;
}
.contact__bgi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-image: url(../img/Aqua_Slim_bedroom.jpg);
  background-position: right;
}
.contact__inner {
  margin: 0 auto;
  max-width: 780px;
  width: 100%;
  padding: 10px 10px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__header {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 10px;
}
.contact__headerArea {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact__ttl {
  font-family: "M PLUS Rounded 1c";
  position: relative;
  font-size: 1.5rem;
  padding: 0 0 0 14px;
  color: #333;
}
.contact__ttl::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #333;
  width: 101px;
  height: 2px;
  bottom: -3px;
  left: 14px;
}
.contact__sttl {
  font-family: "M PLUS Rounded 1c";
  font-size: 1.1rem;
  padding: 8px 0 0 44px;
  color: #333;
  z-index: 1;
}
.contact__detail {
  background-color: #ffcfcfae;
  color: #333;
  max-width: 500px;
  border-radius: 5px;
  margin: 50px 0 0 0;
  padding: 20px;
}
@media screen and (min-width: 765px) {
  .contact__detail {
    max-width: 780px;
  }
}
.contact__deTtl {
  font-family: "M PLUS Rounded 1c";
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 0;
}
@media screen and (min-width: 765px) {
  .contact__deTtl {
    font-size: 1.1rem;
  }
}
.contact__deTxt {
  font-family: "M PLUS Rounded 1c";
  font-size: 0.85rem;
  padding: 10px 0;
}
@media screen and (min-width: 765px) {
  .contact__deTxt {
    font-size: 1.1rem;
  }
}
.contact__deTxt span {
  color: #ac4444;
}
.contact__container {
  width: 100%;
  max-width: 500px;
  color: #212121;
  margin: 30px 0 20px;
  padding: 20px 20px;
  border-radius: 5px;
  background-color: rgba(200, 250, 249, 0.703);
}
@media screen and (min-width: 765px) {
  .contact__container {
    max-width: 780px;
  }
}

.form__con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 5px 0 20px;
}
.form__con:last-child {
  margin-bottom: 0;
}
.form__label {
  padding: 0 0 0 18px;
  position: relative;
}
.form__label::before {
  content: "●";
  color: #ac4444;
  position: absolute;
  top: 0;
  left: 0;
}
.form__ymark {
  text-align: left;
  font-size: 20px;
  width: 14%;
  display: inline-block;
  padding: 0 0 0 16px;
  position: relative;
}
.form__ymark::before {
  content: "●";
  font-size: 14px;
  color: #ac4444;
  position: absolute;
  top: 5px;
  left: 0;
}
.form__yubin {
  font-size: 1.2rem;
  background-color: #fff;
  width: 86%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 5px;
  padding: 5px 10px;
}
.form__yubin::placeholder {
  color: #a4a4a4;
  font-size: 1.1rem;
  line-height: 1.05;
}
.form__ytxt {
  display: block;
  width: 100%;
  padding-top: 5px;
}
.form__add {
  background-color: #fff;
  font-size: 1.2rem;
  width: 100%;
  margin: 10px 0 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 3px;
  padding: 5px 10px;
}
.form__add::placeholder {
  color: #a4a4a4;
  font-size: 1.2rem;
}
.form__aglbl {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
  margin: 0 0 8px;
}
.form__aglbl::before {
  background: #fff;
  content: "";
  display: block;
  border-radius: 3px;
  height: 24px;
  left: 0;
  margin-top: -8px;
  position: absolute;
  top: 36%;
  width: 24px;
}
.form__aglbl::after {
  border-right: 2px solid #ed7a9c;
  border-bottom: 2px solid #ed7a9c;
  content: "";
  display: block;
  height: 14px;
  left: 9px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 7px;
}
.form__agree {
  display: none;
}
.form__agree:checked + .form__aglbl::after {
  opacity: 1;
}
.form__btn {
  background-color: #ffffff;
  color: #333;
  border-radius: 5px;
  font-size: 1.3rem;
  padding: 5px 10px;
  text-align: center;
  box-shadow: 2px 3px 5px 0 #333;
  width: 100%;
}
.form__btn:hover {
  background-color: #7dd6a2;
  box-shadow: none;
  transition: background-color 0.4s;
}
.form__btn:disabled {
  background-color: #a4a4a4;
  color: #333;
  border-radius: 5px;
  font-size: 1.3rem;
  padding: 5px 10px;
  text-align: center;
  box-shadow: none;
  width: 100%;
}
.form__btn:disabled:hover {
  pointer-events: none;
}

.fas {
  position: absolute;
  top: 43px;
  right: 10px;
  visibility: hidden;
}

.adn {
  position: absolute;
  top: 16px;
  right: 10px;
  visibility: hidden;
}
.adn--t {
  top: 107px;
}

small {
  position: absolute;
  top: 39px;
  right: 33px;
  visibility: hidden;
}

#emsg {
  position: absolute;
  top: 49px;
  right: 0;
  color: #fff;
  background-color: #ac4444;
  border-radius: 4px;
  padding: 7px 9px;
}

.success input {
  border: solid 2px #2ecc71;
}
.success i.fa-check-circle {
  color: #2ecc71;
  visibility: visible;
}
.success small {
  visibility: visible;
  color: #2ecc71;
  padding: 0 0 0 10px;
}

.error input {
  border: solid 2px #ffd2df;
}
.error i.fa-exclamation-circle {
  color: #e5406f;
  visibility: visible;
}
.error small {
  visibility: visible;
  color: #ff9bb7;
  font-size: 0.9rem;
}
.error #emsg {
  background-color: #ff9bb7;
  animation-name: check;
  /*アニメーションの定義名*/
  animation-duration: 2.8s;
  /*アニメーション変化時間 ※デフォルト*/
  animation-fill-mode: backwards;
  animation-iteration-count: infinite;
}

@keyframes check {
  0%, 100% {
    opacity: 0.9;
    transform: translateY(0px);
  }
  50% {
    opacity: 1;
    transform: translateY(3px);
  }
}
.privacy {
  background-color: #ffffff;
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 10px;
}
.privacy__ttl {
  margin-top: 20px;
  background-color: #cbb6c2;
  padding: 2px 10px;
  border-radius: 3px 3px 0 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 400;
}
.privacy__ttl:hover {
  background-color: #dec7d4;
}
.privacy__contents {
  display: none;
  padding: 15px;
  height: 0;
  opacity: 0;
}
.privacy__sttl {
  font-size: 1.1rem;
  border-bottom: solid 1px #aaa;
  padding: 0 0 10px;
}
.privacy__dai {
  font-size: 1rem;
  padding: 10px 0 5px;
}
.privacy__txt {
  font-size: 0.85rem;
}

.open {
  display: block;
  transition: opacity 0.2s;
  opacity: 1;
  height: auto;
}

.footer {
  display: none;
}
@media screen and (min-width: 765px) {
  .footer {
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    transition: opacity 0.3s;
    background-color: #003348;
  }
}

.footer-on {
  opacity: 1;
  transition: opacity 0.3s;
}

.copyright {
  font-size: 0.7rem;
  color: #fff;
}

.m__button {
  width: 100px;
  padding: 10px;
  margin: 10px auto;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

.m__open {
  background-color: #303030;
}

.m__close {
  background-color: #303030;
}

.modal {
  position: relative;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 10;
}

.modal_bg {
  height: 100%;
  background-color: rgba(51, 51, 51, 0.85);
}

.modal_window {
  max-width: 500px;
  width: 90%;
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}