@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700&display=swap');

html { font-size: 62.5%;}
@media (min-width: 576px){
  html { font-size: 65.625%;}
}
@media (min-width: 768px){
  html { font-size: 68.75%;}
}
@media (min-width: 992px){
  html { font-size: 71.875%;}
}
@media (min-width: 1200px){
  html { font-size: 75%;}
}
@media (min-width: 1400px){
  html { font-size: 78.125%;}
}
@media (min-width:1680px){
  html { font-size: 81.125%;}
}

:root {
  --sans-serif: 'Noto Serif JP', '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;

  --space-unit: 1.6rem;
  --space-xxs:  calc(0.25 * var(--space-unit));
  --space-xs:   calc(0.5 * var(--space-unit));
  --space-sm:   calc(0.75 * var(--space-unit));
  --space-md:   calc(1.25 * var(--space-unit));
  --space-lg:   calc(2 * var(--space-unit));
  --space-xl:   calc(3.25 * var(--space-unit));
  --space-xxl:  calc(5.25 * var(--space-unit));
}

body {
  position: relative;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  background: #1a1a1a;
  color: #FFFFFF;
  text-align: left;
  font-feature-settings: "palt";
}

* {
  letter-spacing: 0.05em;
}

/* common */
.inner {
  max-width: 1024px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (min-width:521px){
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}

@media (max-width:520px){
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}

.sans_serif {
  font-family: var(--sans-serif) !important;
}

span.br {
  display: inline-block;
}

a.textlink:link {
  color: #00B5DA;
  /* text-decoration: underline; */
}
a.textlink:visited {
  color: #00B5DA;
  /* text-decoration: underline; */
}
a.textlink:active {
  color: #00B5DA;
  /* text-decoration: underline; */
}

/* button */
.button {
  position: relative;
  appearance: none;
  cursor: pointer;
  font-size: 3.2rem;
  font-weight: 700;
  width: 52vw;
  max-width: 520px;
  height: 7vw;
  max-height: 70px;
  background: center center  / contain no-repeat url(../img/btn.png);
  filter: grayscale(1);
}

@media (max-width:920px){
  .button {
    width: 52vw;
    height: 7vw;
    font-size: 2.4rem;
  }
}

@media (max-width:767px){
  .button {
    width: 52vw;
    height: 7vw;
    font-size: 2.0rem;
  }
}

@media (max-width:575px){
  .button {
    width: 80vw;
    height: 11vw;
    font-size: 2.0rem;
  }
}

.active {
  filter: none;
}



/* header */
header {
  background: #000;
  text-align: center;
}

header .logo {
  padding: 5px;
}

header .logo a img {
  height: 50px;
  width: auto;
}

@media (max-width:520px){
  header .logo a img {
    height: 40px;
    width: auto;
  }
}

/* main */
/* hero */
.hero {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.hero-title {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  z-index: 3;
}

.hero-title img {
  width: 100%;
  max-width: 1440px;
  padding: 0;
}

@media (max-width:1200px){
  .hero-title img {
    width: 125%;
  }
}

@media (max-width:520px){
  .hero-title img {
    width: 100%;
  }
}


.closing {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 29vw;
  padding-right: 0vw;
  z-index: 3;
  font-size: 2.4vw;
  font-weight: bold;
  text-align: center;
}

@media (max-width:520px){
  .closing {
    top: 48vw;
    font-size: 4.2vw;
  }
}

.closing span.small {
  font-size: 75%;
}

/* headline */
.headline {
  padding: 30px 25px;
  text-align: center;
}

@media (max-width:520px){
  .headline {
    padding: 25px;
  }
}

.headline button {
  margin-bottom: 50px;
}

.headline p {
  margin-bottom: 30px;
  font-size: var(--space-md);
}

@media (max-width:520px){
  .headline p {
    font-size: 13px;
  }
}

@media (max-width:520px){
  .headline button,
  .headline p {
    margin-bottom: 25px;
  }
}

.headline h2 {
  font-size: var(--space-lg);
}

@media (max-width:520px){
  .headline h2 {
    font-size: 17px;
  }
}

.headline .logo a img {
  width: 25vw;
  height: auto;
} 

@media (max-width:520px){
  .headline .logo a img {
    width: 40vw;
    height: auto;
  } 
}

/* contents-item */
.contents-item {
  display: flex;
  background: #313131;
  border-radius: 8px;
  padding: 25px;
  overflow: hidden;
}

@media (max-width:1024px){
  .contents-item {
    border-radius: 0;
  }
}

@media (max-width:767px){
  .contents-item {
    display: block;
    text-align: center;
  }
}

.contents-item + .contents-item {
  margin-top: 25px;
}

.contents-item h3 {
  font-size: 3.0rem;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 0.5em;
}

@media (max-width:520px){
  .contents-item h3 {
    font-size: 20px;
    margin-bottom: 1em;
  }
}

.contents-profile {
  margin-right: 25px;
  flex: 1;
}

@media (max-width:767px){
  .contents-profile {
    margin-right: 0;
    margin-bottom: 25px;
  }
}

.contents-profile a {
  opacity: 1;
  transition: all 0.1s;
}

.contents-profile a:hover {
  opacity: 0.7;
  transition: all 0.2s;
}

.contents-profile img {
  width: 100%;
}

@media (max-width:767px){
  .contents-profile img {
    width: 85%;
  }
}

.contents-goods {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex: 1;
}

.contents-goods img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* limit */
.limit {
  padding: 60px 15px;
  text-align: center;
}

.limit dl {
  margin-bottom: 2.929vw;
}

@media (max-width:520px){
  .limit dl {
    margin-bottom: 30px;
  }
}

.limit dl dt {
  font-size: var(--space-md);
}

.limit dl dd {
  font-size: var(--space-lg);
  font-weight: bold;
}

@media (max-width:520px){
  .limit dl dt {
    font-size: 16px;
  }
  
  .limit dl dd {
    font-size: 20px;
  }
}

/* info */
.info + .info {
  margin-top: 50px;
}

@media (max-width:520px){
  .info + .info {
    margin-top: 25px;
  }
}

.info .inner {
  background: #313131;
  border-radius: 8px;
  padding: 30px 50px;
}

@media (max-width:1024px){
  .info .inner {
    border-radius: 0;
  }
}

@media (max-width:520px){
  .info .inner {
    padding: 30px 25px;
  }
}

.info h3 {
  text-align: center;
  font-size: var(--space-md);
  margin-bottom: 1em;
}

.order li {
  font-size: var(--space-md);
}

@media (max-width:520px){
  .info h3 {
    font-size: 20px;
    margin-bottom: 0.5em;
  }
  
  .order li {
    font-size: 13px;
  }
}

.order li a {
  color: #00b3d6;
  text-decoration: underline;
}

.order li + li,
.notes li + li {
  margin-top: 0.5em;
}

.notes {

}

.notes li {
  position: relative;
  padding-left: 1.5em;
  font-size: var(--space-sm);
}

@media (max-width:520px){
  .notes li {
    padding-left: 1.5em;
    font-size: 12px;
  }
}

.notes li::before {
  content: '※';
  position: absolute;
  left: 0;
  top: 0;
}

/* footer */
footer {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
}

footer p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  padding: 15px 0;
}

footer address {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}


/* modal */
.modal {
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;

  display: none;
}

.modal-content {
  background-color: #f4f4f4;
  border-radius: 8px;
  margin: 0 auto;
  padding: 50px 40px;
  width: 90%;
  max-width: 640px;
  filter: drop-shadow(0 -3px 6px rgba(0, 0, 0, 0.16));
  animation-name: modalopen;
  animation-duration: 1s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes modalopen {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@media (max-width:575px){
  .modal-content {
    padding: 30px 15px;
  }
}

.modal-header {
  padding: 3px 15px;
  display: none;
  justify-content: space-between;
}

.modalClose {
  font-size: 2rem;
}

.modalClose:hover {
  cursor: pointer;
}

.modal-body {
  padding: 0 15px;
  color: #222;
}

.modal-body h3 {
  display: inline-block;
  padding: 0 20px 5px;
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 6px solid #19B3D6;
}

@media (max-width:767px){
  .modal-body h3 {
    padding: 0 10px 5px;
    font-size: 1.8rem;
  }
}

@media (max-width:575px){
  .modal-body h3 {
    font-size: 1.6rem;
  }
}

.modal-body p {
  font-size: 1.8rem;
  /* line-height: 2.4; */
  font-weight: bold;
  margin-left: -15px;
  margin-right: -15px;
}

.modal-body .url {
  font-size: 1.5rem;
  font-weight: bold;
}

@media (max-width:767px){
  .modal-body p {
    font-size: 1.5rem;
  }
  .modal-body .url {
    font-size: 1.2rem;
  }
}

@media (max-width:575px){
  .modal-body p {
    font-size: 1.3rem;
  }
  .modal-body .url {
    font-size: 1.0rem;
  }
}

.modal-body ul {
  text-align: left;
  list-style-type: disc;
  margin-bottom: 30px;
}

.modal-body ul li {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

#outbound-modal-cancel,
#outbound-modal-submit {
  margin: 0;
  width: 40%;
  height: 44px;
  border-radius: 44px;
  line-height: 42px;
  font-size: 1.4rem;
  font-weight: 500;
  transition: 0.3s;
}

#outbound-modal-cancel {
  display: inline-block;
  border: 1px solid #707070;
  margin-right: 5%;
}

#outbound-modal-cancel:hover {
  background: #cecece;
}

#outbound-modal-submit {
  display: inline-block;
  background: #fd0061;
  color: #fff;
}

#outbound-modal-submit:hover {
  opacity: 0.6;
}

@media (max-width:767px){
  #outbound-modal-cancel,
  #outbound-modal-submit {
    display: block;
    margin: 0 auto;
    width: 80%;
    font-size: 1.3rem;
  }

  #outbound-modal-cancel {
    margin-bottom: 5%;
  }
}