@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');
/* mixin setting */
:root {
  --primary-color: #00A6E7;
  --secondary-color: #7ecef4;
  --bg-color: #d8eaf4;
  --light-gray: #f0f0f0;
  --main-font-color: #21445b;
  --entry-color: #21445b;
  --font-defalt: 'Noto Sans JP', sans-serif;
  --font-zen: 'Zen Maru Gothic', serif;
  --font-lato: 'Lato', sans-serif;
}

/* mixin setting end */
::-moz-selection {
  color: #fff;
  background: var(--primary-color);
}
::selection {
  color: #fff;
  background: var(--primary-color);
}

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--main-font-color);
  font-size: 1rem;
  font-family: var(--font-defalt);
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

body {
  height: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  font-feature-settings: 'palt';
  letter-spacing: 0.1em;
  counter-reset: number 0;
}

a {
  transition: opacity 1s;
}

img {
  height: auto;
  vertical-align: bottom;
}

.bold {
  font-weight: bold;
}

.align-c {
  text-align: center;
}

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

.note {
  font-family: var(--font-noto-sans);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.sp-only {
  display: none;
}

.pc-only{
  display: none;
}

.fadeoff {
  opacity: 0;
  transition: all 2s;
  transform: translateY(1rem);
}

.fadeon {
  opacity: 1;
  transform: translateY(0);
}

.splash {
  opacity: 1;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.splash__logo {
  z-index: 99;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.splash__logo img {
  width: 200px;
}

.pc_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto auto;
  background-color: #dbf3ff;
}
.pc_bg__left {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(50% - 340px);
}
.pc_bg__left .pw-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pc_bg__left .pw-logo img {
  width: 16.172vw;
}
.pc_bg__left .qr {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  text-align: left;
  margin-right: 2rem;
}
.pc_bg__left .qr p {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.pc_bg__right {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50% - 350px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.125vw;
}

.pc_bg__right .deco {
  margin-top: 2.5vw;
}
.pc_bg__right .deco img {
  width: max(350px, 22vw);
}

.content {
  height: auto;
  transition: 0.5s;
  max-width: 769px;
  width: 100%;
  position: relative;
  margin: 5rem auto 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  overflow-x: hidden;
  background: #fff;
  border-radius: 1rem 1rem 0 0;
}

header .bousai {
  background: var(--bg-color);
  color: var(--primary-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
}
header .lead {
  padding: 0 2rem 4rem;
  font-size: 1rem;
  line-height: 2;
}

main {
  position: relative;
  z-index: 1;
}

.c-btn {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.c-btn a {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  min-height: 64px;
  border: 1px solid #000;
  border-radius: 0.5rem;
  background: #000;
  color: #fff;
  padding: 0.5rem;
  transition: 1s;
  position: relative;
}
.c-btn a span {
  position: relative;
  z-index: 1;
}
.c-btn a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 1rem;
  top: calc(50% - 3.5px);
  z-index: 1;
  transition: 0.5s;
}
.c-btn a:hover {
  color: #000;
  background: #fff;
}
.c-btn a:hover::before {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  right: 0.8rem;
}

.c-btn_blank {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.c-btn_blank a {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  min-height: 64px;
  border: 1px solid #000;
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.5rem;
  transition: 1s;
  position: relative;
}
.c-btn_blank a span {
  position: relative;
  z-index: 1;
}
.c-btn_blank a::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 0.928955H13.5V13.9804H0.5V0.928955Z" stroke="black"/><path d="M16 2.43631V16.4878H2" stroke="black"/></svg>');
  background-size: 100%;
  position: absolute;
  right: 1rem;
  top: calc(50% - 7px);
  z-index: 1;
  transition: 0.5s;
}
.c-btn_blank a:hover {
  background: var(--light-gray);
}

.c-title {
  font-size: 1.625rem;
  font-weight: bold;
  font-family: var(--font-lato);
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}
.c-title::after {
  content: attr(data-text) '';
  display: block;
  font-family: var(--font-defalt);
  font-size: 0.75rem;
  font-weight: 400;
}

.c-primary_title {
  margin: 0 auto 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: var(--font-zen);
  background: var(--secondary-color);
  padding: 1rem 2rem;
  position: relative;
  border: 1px solid #000;
  filter: drop-shadow(3px 3px 0px rgb(0, 0, 0));
  rotate: -3deg;
  z-index: 1;
}

.primary_content {
  margin: -1rem 1.5rem 0;
  filter: drop-shadow(4px 4px 0px rgb(0, 0, 0));
  padding: 1.5rem 1rem;
}

.c-deco_title {
  padding: 0.2rem 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border: 1px solid #000;
  border-radius: 2rem;
  filter: drop-shadow(2px 2px 0px rgb(0, 0, 0));
}

.link_copy {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 1rem;
}
.link_copy::before,
.link_copy::after {
  content: '';
  width: 1px;
  height: 49px;
  background: var(--main-font-color);
  display: inline-block;
}
.link_copy::before {
  rotate: -20deg;
}
.link_copy::after {
  rotate: 20deg;
}

.title_deco_wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.title_deco_wrap .title_deco {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}




@media screen and (max-width: 896px) {
  .pc_bg__left {
    display: none;
  }
  .pc_bg__right {
    width: calc(100% - 414px);
  }
  .content {
    margin: 0 auto auto 0;
  }
}
@media screen and (max-width: 599px) {
  .sp-only {
    display: block;
  }
  .pc_bg {
    display: none;
  }
  main {
    margin: 0;
  }
  .content {
    width: 100%;
    max-width: 100%;
    position: relative;
    top: auto;
    left: unset;
    transform: unset;
  }
  .content::after {
    width: 100%;
  }
}

.manga_img img {
  width: 100%;
}
.sns {
  text-align: right;
  margin: 0 1rem 1rem 0;
}

.for-friend img {
  width: 100%;
  margin-bottom: 1rem;
}

.bnr-area img {
  width: 100%;
}
.attention p {
  font-size: 13px;
  color: #787878;
  margin: 1rem;
}
.comment p {
  font-weight: bold;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
}

.for-friend {
  background-color: #dbf3ff;
  padding: 1rem;
}
.for-friend h4 {
  font-weight: bold;
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.note a {
  border-bottom: #222222 solid 1px;
}
.bnr-area {
  padding: 1rem;
  margin: 1rem 0 1rem;
}
.bnr-area h4 {
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  margin: 1rem 0 0.5rem;
}
.bnr-area img {
  margin-bottom: 2rem;
}
.bnr-area img:hover {
  opacity: 0.7;
}
.apply-area {
  background-color: var(--light-gray);
  padding: 1rem;
}
.apply-area h4 {
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  margin: 1rem 0 0.5rem;
}
.apply-area p {
  text-align: center;
  margin: 0.5rem 0 1rem;
  padding: 0.5rem 0;
}
.btn-entry {
  position: relative;
  display: block;
  margin: 0 auto 30px;
  border-radius: 10px;
  font-weight: bold;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  width: 90%;
  height: 70px;
  font-size: 1.2rem;
  line-height: 65px;
  opacity: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s;
  background-color: #f0a637;
}
.btn-entry:hover {
  opacity: 0.7;
}
.btn-fukidasi {
  text-align: center;
  font-weight: bold;
  color: #f0a637;
  margin: 0;
}
.bnr-mypage img {
  width: 75%;
  margin: 0 auto 2rem;
  display: flow-root;
}
.apply-area {
  text-align: center;
}
.campaign_title img {
  border-radius: 15px;
}
.bold {
  font-weight: bold;
  color: #e6345c;
}

.bg_stripe h3 img {
  width: 100%;
  border-radius: 16px;
}
.orange {
  background-color: #f0a637;
  color: #fff;
  font-weight: bold;
}

.text {
  margin-bottom: 1rem;
}
.syokai_title {
  font-weight: bold;
  text-align: center;
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
}
.share_area {
  border: #b6b6b6 1px solid;
  width: 89%;
  margin: 0 auto 1rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background-color: #fff;
}
.copy-btn input {
  width: calc(100% - 106px);
  border: 1px solid #d9d9d9;
  background: #e5e1e1;
  border-right: none;
  font-size: 100%;
  color: #505050;
  padding: 6px 15px;
}
.copy-btn button {
  margin-left: 10px;
  border: 1px solid #216c94;
  color: #216c94;
  background: none;
  font-size: 100%;
  padding: 6px 5px;
  border-radius: 8px;
}
.syokai_btn {
  display: flex;
  justify-content: center;
}
.syokai_btn li {
  margin: 0 1rem 1.5rem;
}

.note {
  font-size: 12.5px;
  color: #787878;
}
.organizer {
  margin-bottom: 1rem;
}
.copy-btn-end {
  padding: 0;
}
.copy-btn-end input {
  width: calc(100% - 106px);
  border: 1px solid #d9d9d9;
  background: #e5e1e1;
  border-right: none;
  font-size: 100%;
  color: #505050;
  padding: 6px 15px;
}
.copy-btn-end button {
  margin-left: 10px;
  border: 1px solid #216c94;
  color: #216c94;
  background: none;
  font-size: 100%;
  padding: 6px 5px;
  border-radius: 8px;
}
/*# sourceMappingURL=style.css.map */



@media screen and (max-width: 360px) {
  .syokai_btn {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

@media screen and (max-width: 430px) {
  .attention p {
    font-size: 11px;
  }
  .syokai_btn li {
    margin: 0 auto 1.5rem;
  }
}

@media screen and (max-width: 835px) {
  .content {
    max-width: 100%;
  }

  .pc_bg__left {
    font-display: none;
  }
  .pc_bg__right {
    display: none;
  }
  .pw-logo {
    display: none;
  }
}
.manga_ttl{
    font-weight: bold;
    text-align: center;
    margin: 1.5em 0 .5em;
    font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
.manga_ttl{
    font-size: 1rem;
    padding: 1em;
    }
}

.c-btn-thumb{
    display: grid;
    grid-template-columns: 30% 1fr;
    padding: 1rem;
    margin-top: 3rem;
}

@media screen and (max-width: 768px) {
.c-btn-thumb{
    grid-template-columns: 23% 1fr;
}

}


.c-btn-thumb__img{
    overflow: hidden;
}

.c-btn-thumb__contents{
    position: relative;
    color: #fff;
    font-weight: bold;
    background: var(--primary-color);
    padding: 1.5rem 2.8rem 1.5rem 1rem;
    transition: all .6s;
    display: flex;
    align-items: center;
}
.c-btn-thumb .c-btn-arrow{
      position: absolute;
    top: calc(50% - 14px);
    right: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c-btn-thumb__text{
  display: grid;
  gap: .5rem;
}


.btn-square {
  display: block;
  padding: 1.5em 1em;
  text-decoration: none;
  background: #21445b;
  color: #FFF;
  margin: 4em auto;
  text-align: center;
  width: 60%;
}
.btn-square:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
.btn-square{
   width: 90%;
   padding: .5em 1em;
}
}

.btn-square-top {
  display: block;
  padding: 1.5em 1em;
  text-decoration: none;
  background: var(--primary-color);
  color: #FFF;
  margin: 4em auto;
  text-align: center;
  width: 60%;
}
.btn-square-top:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
.btn-square-top{
   width: 90%;
   padding: .5em 1em;
}
}

