@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: left;
  color: #000000;
  word-break: break-word;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p,
dt,
dd,
li,
th,
td,
input,
button,
textarea,
select {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  p,
dt,
dd,
li,
th,
td,
input,
button,
textarea,
select {
    font-size: 1.4rem;
  }
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

@media screen and (min-width: 768px) {
  .tel-link {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 100rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-wrap {
    width: calc(100% - 3rem);
  }
}

.l-container {
  overflow: hidden;
}
.l-container.-thanks {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.l-container.-thanks main {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-container.-thanks main .p-thanks .ttl {
  font-size: 3rem;
  color: #C3080C;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-container.-thanks main .p-thanks .ttl {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}
.l-container.-thanks main .p-thanks .txt {
  margin-top: 3rem;
  text-align: center;
}
.l-container.-thanks main .p-thanks .c-btn {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-container.-thanks main .p-thanks .c-btn {
    margin-top: 3rem;
  }
}
.l-container.-thanks .l-footer {
  width: 100%;
  padding: 2rem 0;
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
.u-bold {
  font-weight: 700;
}

.u-underline {
  text-decoration: underline;
}

.u-red {
  color: #C3080C;
}

.u-yellow {
  color: #E7E600;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* ボタン
--------------------------------*/
.c-btn_link {
  border: 3px solid #C3080C;
  background-color: #fff;
  width: 40rem;
  height: 8.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #C3080C;
  font-weight: 600;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  box-shadow: 0 0.4rem 0.6rem 0.2rem rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 767px) {
  .c-btn_link {
    width: 100%;
    height: 7rem;
    font-size: 2.4rem;
  }
}
.c-btn_link span {
  font-size: 1.8rem;
  letter-spacing: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn_link span {
    font-size: 1.5rem;
  }
}
.c-btn_link span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2rem;
  width: 1.3rem;
  height: 1.6rem;
  background: url(../img/common/icon_btn_left.svg) no-repeat center center/contain;
}
.c-btn_link span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2rem;
  width: 1.3rem;
  height: 1.6rem;
  background: url(../img/common/icon_btn_right.svg) no-repeat center center/contain;
}
.c-btn_link.-center {
  margin: 0 auto;
}
.c-btn_link.-red {
  background-color: #C3080C;
  color: #fff;
}
.c-btn_link.-red span::before {
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/icon_btn_left.svg);
  background: #fff;
}
.c-btn_link.-red span::after {
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/icon_btn_right.svg);
  background: #fff;
}
.c-btn_link.-s {
  width: 30rem;
  height: 7rem;
  font-size: 2.6rem;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .c-btn_link.-s {
    width: 15rem;
    height: 5rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.c-btn_link.-s span {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-btn_link.-s span {
    font-size: 0.9rem;
  }
  .c-btn_link.-s span::before {
    left: -1.1rem;
    width: 0.8rem;
    height: 1rem;
  }
  .c-btn_link.-s span::after {
    right: -1rem;
    width: 0.8rem;
    height: 1rem;
  }
}

/* タイトル
--------------------------------*/
.c-secttl {
  text-align: center;
}
.c-secttl-en {
  display: block;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-secttl-en {
    font-size: 1.5rem;
  }
}
.c-secttl-en.-white {
  color: #fff;
}
.c-secttl-jp {
  margin-top: 0.5rem;
  display: block;
  font-weight: 700;
  line-height: 1.5;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-secttl-jp {
    margin-top: 1rem;
    font-size: 2rem;
  }
}
.c-secttl-jp .-l {
  font-size: 4.4rem;
}
@media screen and (max-width: 767px) {
  .c-secttl-jp .-l {
    font-size: 2.6rem;
  }
}
.c-secttl-jp .-ll {
  font-size: 5.6rem;
}
@media screen and (max-width: 767px) {
  .c-secttl-jp .-ll {
    font-size: 3rem;
  }
}
.c-secttl.-white {
  color: #fff;
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10rem;
}
@media screen and (max-width: 767px) {
  .l-header_inner {
    padding-left: 1rem;
  }
}
.l-header_left .logo {
  width: 29.5rem;
}
@media screen and (max-width: 767px) {
  .l-header_left .logo {
    width: 20rem;
  }
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  padding: 5rem 0;
}
.l-footer .flex {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex {
    display: block;
  }
}
.l-footer .flex .logo {
  width: 17rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .logo {
    margin: 0 auto;
  }
}
.l-footer .flex .txt {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .txt {
    margin-top: 2rem;
  }
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
.page-top {
  position: fixed;
  right: 10rem;
  bottom: 13rem;
  width: 5.5rem;
  height: 5.5rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 3.5rem;
    height: 3.5rem;
    right: 1rem;
    bottom: 2rem;
  }
}

a,
.form .btn {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  a,
.form .btn {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  a:hover,
.form .btn:hover {
    opacity: 0.7;
  }
}
a button,
.form .btn button {
  cursor: pointer;
}/*# sourceMappingURL=common.css.map */