@charset "UTF-8";

/*CSSDocument*/


/* html body base
===============================================================*/


/*
html ----------------------------------------------------------*/

*{ margin:0px; padding:0px;}

body{
  color:#fff;
  margin:0;
  padding:0;
  background:#000;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  text-align:center;
  font-size:100%;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position:relative;
}

a:link,
a:visited,
a:hover,
a:active { color:#000;text-decoration:none;}

ul{ list-style:none;}

img {
  padding:0px;
  margin:0px;
  vertical-align:bottom;
  max-width: 100%;
  height: auto;
}
a {
  transition: all 0.5s ease-out;
}
a:hover {
  opacity:0.7;
}

/*
html ----------------------------------------------------------*/

.l-wrap {
  padding-top: 130px;
  box-sizing: border-box;
}
.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 30px;
}
@media screen and (max-width: 768px){
  .l-wrap {
    padding-top: 70px;
  }
  .l-inner {
    padding: 0 20px;
  }
}

/* ヘッダー */
.p-header {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
}
.p-headerInner {
  display: flex;
  justify-content: space-between;
  height: 130px;
}
.p-header__logo {
  align-self: center;
  padding-left: 60px;
  box-sizing: border-box;
  text-align: left;
}
.p-header__logo img {
  height: 75px;
}
.p-header__menu {
  padding: 15px 20px 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.p-headerMenuCtaBlock {
  display: flex;
  /* justify-content: flex-end; */
  justify-content: center;
  /* margin-bottom: 13px; */
}
.p-headerMenuCtaBlock > li + li {
  margin-left: 18px;
}
a.p-headerMenuBtn,
span.p-headerMenuBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  border-radius: 30px;
  position: relative;
}
a.p-headerMenuBtn.p-headerMenuBtn--apply {
  background: linear-gradient(to right,  #dd4d6e 0%,#338cc2 100%);
  color: #fff;
  width: 343px;
}
.p-headerMenuBtn.p-headerMenuBtn--closed {
  background: #aaa;
  color: #fff;
  width: 343px;
}
a.p-headerMenuBtn.p-headerMenuBtn--contact {
  background-color: #fff;
  color: #000;
  width: 261px;
}
a.p-headerMenuBtn::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
a.p-headerMenuBtn.p-headerMenuBtn--apply::before {
  border-color: #fff;
}
a.p-headerMenuBtn.p-headerMenuBtn--contact::before {
  border-color: #000;
}
.p-headerMenuLinkBlock {
  display: flex;
  justify-content: flex-end;
}
.p-headerMenuLinkBlock > li + li {
  margin-left: 40px;
}
.p-headerMenuLinkBlock a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .04em;
}
.p-header__menuBtn {
  display: none;
}
@media screen and (max-width: 1620px){
  .p-header__logo {
    padding-left: 30px;
  }
  .p-header__menu {
    /* padding: 20px 20px 20px 50px; */
    padding: 20px 20px 20px 40px;
  }
  /* .p-headerMenuCtaBlock {
    margin-bottom: 13px;
  } */
  .p-headerMenuCtaBlock > li + li {
    margin-left: 18px;
  }
  a.p-headerMenuBtn,
  span.p-headerMenuBtn {
    height: 46px;
    font-size: 16px;
    border-radius: 23px;
    position: relative;
  }
  a.p-headerMenuBtn.p-headerMenuBtn--apply,
  span.p-headerMenuBtn.p-headerMenuBtn--closed {
    width: 230px;
  }
  a.p-headerMenuBtn.p-headerMenuBtn--contact {
    width: 180px;
  }
  a.p-headerMenuBtn::before {
    right: 15px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    width: 8px;
    height: 8px;
  }
  .p-headerMenuLinkBlock > li + li {
    margin-left: 30px;
  }
  .p-headerMenuLinkBlock a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1410px){
  .p-header__logo img {
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 1130px){
  .p-headerMenuLinkBlock a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px){
  .p-header__logo img {
    width: calc(100% - 100px);
    max-height: 75px;
  }
  .p-header__menu {
    background-color: #1e1e1e;
    width: 100%;
    max-width: 400px;
    height: calc(100vh - 130px);
    padding: 40px 20px;
    box-sizing: border-box;
    position: fixed;
    right: -400px;
    top: 130px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    overflow-y: scroll;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
  }
  .p-header__menu.is-opened {
    right: 0;
  }
  .p-headerMenuCtaBlock {
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
    width: 100%;
  }
  .p-headerMenuCtaBlock > li + li {
    margin-left: 0;
    margin-top: 25px;
  }
  a.p-headerMenuBtn,
  span.p-headerMenuBtn {
    height: 54px;
    font-size: 18px;
    border-radius: 27px;
    position: relative;
    margin: 0 auto;
  }
  a.p-headerMenuBtn.p-headerMenuBtn--apply,
  span.p-headerMenuBtn.p-headerMenuBtn--closed {
    width: 90%;
  }
  a.p-headerMenuBtn.p-headerMenuBtn--contact {
    width: 90%;
  }
  .p-headerMenuLinkBlock {
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 50px;
  }
  .p-headerMenuLinkBlock > li + li {
    margin-left: 0;
    margin-top: 20px;
  }
  .p-headerMenuLinkBlock a {
    font-size: 18px;
  }
  .p-header__menuBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    height: 70px;
    width: 70px;
  }
  .p-headerMenuBtnInner {
    position: relative;
    width: 40px;
    height: 24px;
  }
  .p-headerMenuBtnInner,
  .p-headerMenuBtnInner span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .p-headerMenuBtnInner span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .p-headerMenuBtnInner span:nth-of-type(1) {
    top: 0;
  }
  .p-headerMenuBtnInner span:nth-of-type(2) {
    top: 11px;
  }
  .p-headerMenuBtnInner span:nth-of-type(3) {
    bottom: 0;
  }
  .p-header__menuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  .p-header__menuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(2) {
    opacity: 0;
  }
  .p-header__menuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }
}
@media screen and (max-width: 768px){
  .p-headerInner {
    height: 60px;
  }
  .p-header__logo {
    padding-left: 12px;
    /* width: 300px; */
  }
  .p-header__logo img {
    height: 50px;
    width: auto;
  }
  .p-header__menu {
    top: 60px;
    padding: 40px 20px;
    height: calc(100vh - 60px);
  }
  .p-headerMenuCtaBlock > li + li {
    margin-top: 20px;
  }
  a.p-headerMenuBtn,
  span.p-headerMenuBtn {
    height: 46px;
    font-size: 16px;
    border-radius: 27px;
  }
  a.p-headerMenuBtn.p-headerMenuBtn--apply,
  span.p-headerMenuBtn.p-headerMenuBtn--closed {
    width: 80%;
  }
  a.p-headerMenuBtn.p-headerMenuBtn--contact {
    width: 80%;
  }
  .p-headerMenuLinkBlock {
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 50px;
  }
  .p-headerMenuLinkBlock > li + li {
    margin-left: 0;
    margin-top: 25px;
  }
  .p-headerMenuLinkBlock a {
    font-size: 16px;
  }
  .p-headerMenuBtnInner {
    width: 30px;
    height: 18px;
  }
  .p-headerMenuBtnInner span:nth-of-type(1) {
    top: 0;
  }
  .p-headerMenuBtnInner span:nth-of-type(2) {
    top: 8px;
  }
  .p-headerMenuBtnInner span:nth-of-type(3) {
    bottom: 0;
  }
  .p-header__menuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .p-header__menuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(2) {
    opacity: 0;
  }
  .p-header__menuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

/* 追従ボタン */
.c-floatBottomMenuBlock {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9000;
  /* background-color: #000000dd; */
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  /* opacity: 0; */
  -webkit-transition: opacity .4s ease-out;
  transition: opacity .4s ease-out;
}
/* .c-floatBottomMenuBlock.is-visible {
  opacity: 1;
} */
.c-floatBottomMenu {
  display: none;
  /* display: flex; */
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.c-floatBottomMenu > li {
  width: 100%;
}
a.c-floatBottomBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 50px; */
  /* height: 80px; */
  height: 130px;
  width: 100%;
  /* font-size: 16px; */
  /* font-size: 20px; */
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
  margin: 0 auto;
  position: relative;
}
a.c-floatBottomBtn.c-floatBottomBtn--apply {
  background: linear-gradient(to right,  #dd4d6e 0%,#338cc2 100%);
  color: #fff;
  text-align: left;
}
a.c-floatBottomBtn.c-floatBottomBtn--contact {
  background-color: #fff;
  color: #000;
}
a.c-floatBottomBtn::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
a.c-floatBottomBtn.c-floatBottomBtn--apply::after {
  border-color: #fff;
}
a.c-floatBottomBtn.c-floatBottomBtn--apply span {
  position: relative;
  padding-left: 174px;
}
a.c-floatBottomBtn.c-floatBottomBtn--apply span::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  background-image: url('../images/book.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 138px;
  height: 200px;
  border: 1px solid #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 768px){
  a.c-floatBottomBtn {
    /* height: 44px; */
    height: 60px;
    font-size: 14px;
  }
  a.c-floatBottomBtn::after {
    right: 18px;
    width: 6px;
    height: 6px;
  }
  a.c-floatBottomBtn.c-floatBottomBtn--apply span {
    padding-left: 90px;
  }
  a.c-floatBottomBtn.c-floatBottomBtn--apply span::before {
    left: 0;
    bottom: 0;
    width: 69px;
    height: 100px;
  }
}

/* footer */
.p-footer {
  /* padding-bottom: 215px; */
}
.p-footerCopyright {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .14em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px){
  .p-footer {
    /* padding-bottom: 100px; */
  }
  .p-footerCopyright {
    font-size: 12px;
    margin-bottom: 40px;
  }
}

/* body base
===============================================================*/
