@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/*--------------------------------------
レイアウト
--------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

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

a:link {
  color: #9b0020;
  text-decoration: underline;
}

a:visited {
  color: #9b0020;
  text-decoration: underline;
}

a:hover {
  color: #9b0020;
  text-decoration: none;
}

a:active {
  color: #9b0020;
  text-decoration: none;
}

.mt1em {
  margin-top: 1em;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100vh;
  background: white url(../img/cmn-fixed-bg.jpg) top center no-repeat;
  background-size: cover;
  opacity: 0.08;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 9.7px;
  height: 15.3px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #9b0020;
  transform-origin: calc(100% - 1px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

.newopen {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}
.newopen svg {
  fill: #9b0020;
}

.disabled {
  pointer-events: none;
  opacity: 0.3;
  filter: grayscale(1);
}
.disabled .newopen svg {
  fill: #000;
  opacity: 0.8;
}

/*--------------------------------------

  footer

--------------------------------------*/
.footer {
  padding-bottom: 20px;
}
.footer__sns--list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-left: 0;
  height: 70px;
  background-color: #9b0020;
  list-style: none;
}
.footer__sns--icon {
  height: 30px;
  color: white;
}
.footer__sns--icon a {
  color: white;
  font-size: 30px;
  text-decoration: none;
  line-height: 30px;
}
.footer__sns--icon img {
  width: auto;
  height: 100%;
}
.footer__site--info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px auto 0;
  width: 650px;
}
.footer__site--link {
  display: flex;
  justify-content: right;
  gap: 30px;
  padding-left: 0;
  width: 400px;
  font-size: 14px;
  list-style: none;
}
.footer__site--txt a {
  position: relative;
  padding-left: 1em;
}
.footer__site--txt a:before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  border-top: 3px solid #9b0020;
  border-right: 3px solid #9b0020;
  width: 7px;
  height: 7px;
  transform: translateY(-25%) rotate(45deg);
}
.footer__vissel--logo {
  width: 150px;
}

.copyright {
  margin: 20px auto 0;
  width: 650px;
  font-size: 12px;
}

@media (max-width: 768px) {
  /*--------------------------------------
  レイアウト
  --------------------------------------*/
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /*--------------------------------------

  footer

  --------------------------------------*/
  .footer {
    padding-bottom: 20px;
  }
  .footer__sns--list {
    gap: 6.6666666667vw;
    height: 16vw;
  }
  .footer__sns--icon {
    height: 8vw;
  }
  .footer__sns--icon a {
    color: white;
    font-size: 8vw;
    text-decoration: none;
    line-height: 8vw;
  }
  .footer__site--info {
    display: block;
    margin: 5.3333333333vw 5.3333333333vw 0;
    width: auto;
  }
  .footer__site--link {
    justify-content: center;
    margin-top: 5.3333333333vw;
    width: auto;
    font-size: 3.2vw;
  }
  .footer__site--txt a {
    letter-spacing: 0.08em;
  }
  .footer__site--txt a:before {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
  .footer__vissel--logo {
    margin: 0 auto;
    width: 36vw;
  }
  .copyright {
    margin: 5.3333333333vw 5.3333333333vw 0;
    width: auto;
    font-size: 2.6666666667vw;
    text-align: center;
  }
}
/*
@font-face {
    font-family: "RakutenSans_Bd";
    src: url("/fonts/RakutenSans_Bd.woff2") format("woff2"), url("/fonts/RakutenSans_Bd.woff") format("woff");
}
*/