@charset "UTF-8";

/* base settings */
:root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
}

/* @media screen and (max-width: 1440px) {
  :root {
    font-size: 0.6944444444vw;
  }
} */

html {
  /* font-size: 62.5%; */
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  font-family: "Noto Sans", "游ゴシック体", "YuGothic", "YuGothic M", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Open Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

#TW,
#TW input::placeholder,
#TW .input_box select,
#TW textarea::placeholder {
  font-family: "Noto Sans TC";
}
#CN,
#CN input::placeholder,
#CN .input_box select,
#CN textarea::placeholder {
  font-family: "Noto Sans SC";
}

.sp {
  display: block;
}
.pc {
  display: none;
}

.header_bg {
  width: 100%;
  /* height: 290px; */
  background-color: #fff;
  padding-top: 8.6rem;
}
.header_bg h1 {
  margin-bottom: 7.2rem;
}
.header_bg h1 img {
  display: block;
  width: 38rem;
  height: auto;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
/* lang-select */
.lang_select {
  position: fixed;
  display: block;
  top: 25px;
  right: 20px;
  font-size: 14px;
  font-family: "Noto Sans", "Noto Sans SC", "Noto Sans TC", "Noto Sans KR", sans-serif;
  text-align: center;
  cursor: pointer;
  z-index: 100;
  font-weight: normal;
}
.lang_on {
  position: relative;
  width: 126px;
  height: 40px;
  padding-left: 9px;
  line-height: 37px;
  color: #000000;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(0, 0, 0);
  border-radius: 48px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-sizing: border-box;
}
.lang_on::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  left: 1rem;
  background: url(../img/logo/icon_world.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.lang_on::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 1.2rem;
  background: url(../img/logo/lang_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.lang_list {
  display: none;
  width: 86%;
  height: auto;
  margin: 0 auto;
  background: rgba(36, 36, 36, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 16px;
}
.lang_list li a {
  display: inline-block;
  padding: 10px 0;
  transition: all 0.3s;
  font-weight: 500;
  color: #fff;
}
.lang_list li a:hover {
  color: #fff;
}
.lang_list li {
  transition: all 0.3s;
}
.lang_list li:hover {
  background: rgba(19, 19, 19, 0.284);
}

/* /lang-select */
.sub-content {
  position: relative;
  width: 100%;
  height: auto;
}
.sub-content.contact {
  /* background-color: #018cb3; */
  background-color: #ff2551;
  padding-bottom: 4rem;
}
.inner {
  padding: 0 2rem 2rem;
}
.sec-title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.6rem;
}
.sec-read {
  text-align: center;
  margin-bottom: 2rem;
}

.content-box {
  width: 100%;
  height: auto;
  background-color: #fff;
  border: #000 solid 2px;
  border-radius: 3rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.input-box {
  width: 100%;
  padding: 1.2rem 1rem;
  box-sizing: border-box;
  border: #adadad solid 1px;
  border-radius: 2rem;
}
.sec-text {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
.bld {
  font-weight: bold;
}
.red {
  color: #ff0000;
}

/*-- wave --*/
.wave {
  position: absolute;
  width: 100%;
  top: -48px;
  padding-top: 52px;
  /* background-size: 2040px 96px; */
  margin-bottom: -2px;
  background: url(../img/wave_top-red.svg) bottom left repeat-x;
  background-size: 1400px 52px;
  /* filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 1)); */
  animation: wave-pc 20s linear infinite;
}

.bottom {
  top: auto;
  bottom: -48px;
  margin-bottom: -2px;
  transform: scaleY(-1);
}
@keyframes wave-pc {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1400px;
  }
}

/* terms-list */
.terms-list > * {
  margin-bottom: 2.6rem;
}
.terms-title {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
}
.terms-list .li-title {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* footer link btn */
.link-btn-list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
}
.link-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  color: #000;
  background-color: #ffd83f;
  padding: 1rem 2rem;
  border: 2px solid #000;
  border-radius: 999px;
}
.link-btn span {
  margin-right: 1rem;
}
.link-btn p {
  font-weight: 700;
  line-height: 1.2;
}
.link-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2rem;
  width: 30px;
  height: 30px;
  background: url(../img/icon_arrow.svg) no-repeat center center;
  background-size: contain;
  transform: translateY(-50%);
}

.note-text {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.6rem;
}

.in-list {
  margin: 1.6rem 0;
}

.in-list li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.6rem;
  word-break: break-all;
}

/* table */
.table-item {
  margin: 2rem 0 4rem;
}
.table-item-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.table-item-title .item-title {
  width: 60%;
  padding-left: 0.75rem;
  font-weight: 700;
}
.item-btn {
  text-align: center;
  color: #fff;
  background-color: #282828;
  padding: 0.4rem 1.4rem;
  border-radius: 10px;
}

.table-box {
  border: 1px solid #d8d8d8;
  margin: 1rem 0;
}
.table-box dt,
.table-box dd {
  min-height: 4rem;
  border-bottom: 1px solid #d8d8d8;
  padding: 0.75rem 1rem;
}
.table-box dt {
  background-color: #bdbdbd;
}
.table-box dd:last-of-type {
  border-bottom: none;
}

.media-list li {
  font-size: 1.4rem;
  margin-left: 1em;
}

.established-info {
  margin: 0;
  padding: 0;
  text-align: right;
}
.established-info li {
  margin: 0;
  padding: 0.25rem 0;
}

.btn-top button {
  display: flex;
  width: 16rem;
  color: #fff;
  background-color: #000;
  padding: 1.4rem;
  margin: 0 auto;
  justify-content: center;
  border-radius: 12px;
  text-transform: uppercase;
  filter: drop-shadow(0px 4px 8px rgba(88, 74, 4, 0.4));
  transition: all 0.2s;
  border: none;
}

/* footer */
footer {
  padding: 8rem 0 4rem;
}
footer .footer-logo {
  width: 128px;
  height: auto;
  margin: 0 auto 3.6rem;
}

/* sns */
.sns-content {
  width: 100%;
  margin: 0 auto 3rem;
}
.sns-list {
  display: flex;
  width: 78%;
  max-width: 31.2rem;
  justify-content: space-between;
  margin: 0 auto;
  gap: 1.8rem;
}
.sns-list li {
  width: auto;
  height: auto;
  transition: all 0.3s ease-out;
}
.sns-list li:hover {
  transform: scale(1.2);
}

.footer-copy {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 400;
}

@media screen and (min-width: 751px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .inner {
    width: 100%;
    margin: 0 auto;
    max-width: 680px;
  }
  .content-box {
    padding: 2rem 4rem;
  }
  /* table */
  .table-box {
    display: grid;
    grid-template-columns: 16.8rem 1fr;
  }
  .table-box dt {
    display: flex;
    align-items: center;
  }

  .link-btn-list {
    width: 100%;
    margin: 0 auto;
    max-width: 680px;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 2rem;
    margin-bottom: 2rem;
  }
  a.link-btn {
    transition: all 0.3s;
  }
  a.link-btn:hover {
    opacity: 0.6;
  }

  .btn-top button:hover {
    filter: none;
    transform: translateY(4px);
  }
}
