/*----------------------------------------------------------
style
----------------------------------------------------------*/
body {
  position: relative;
  font-family: fot-cezanne-pron, sans-serif;
  font-weight: 500;
  font-style: normal;
}

main {
  position: relative;
  max-width: none;
  margin: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/*----------------- font -----------------*/
.hsp_normal {
  font-family: hypatia-sans-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hsp_semi {
  font-family: hypatia-sans-pro, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.hsp_bold {
  font-family: hypatia-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*----------------- common -----------------*/
.pcbody {
  position: relative;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 751px) {
  .pcbody {
    height: 100vh;
  }
}

.pcwrap {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .15;
}

.pcwrap .pcbg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

.pcwrap .pcbg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.pcwrap .pcbg.is_active {
  opacity: 1;
}

.spwrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  z-index: 2;
}

@media screen and (min-width: 751px) {
  .spwrap {
    width: 375px;
    height: auto;
    margin: 0 auto;
  }
}

.inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.for_pc {
  display: none;
}

@media screen and (min-width: 751px) {
  .for_pc {
    display: block;
  }
}

.for_sp {
  display: block;
}

@media screen and (min-width: 751px) {
  .for_sp {
    display: none;
  }
}

.btn {
  display: block;
  width: 210px;
  margin: 0 auto;
}

.btn a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 21px;
  letter-spacing: .12em;
  color: #172852;
  background-color: #fff;
  padding: 15px 0;
  border-radius: 10px;
}

@media screen and (min-width: 751px) {
  .btn a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .btn a:hover {
    opacity: .7;
  }
}

.btn span {
  letter-spacing: .36em;
}

/*----------------------------------------------------------
header
----------------------------------------------------------*/
.header {
  position: fixed;
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 40px 40px 0 40px;
  z-index: -1;
}

@media screen and (min-width: 881px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
  }
}

@media screen and (min-width: 1201px) {
  .header {
    padding: 56px 73px 0 74px;
  }
}

.header_logo {
  display: block;
  width: 150px;
}

@media screen and (min-width: 751px) {
  .header_logo {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .header_logo:hover {
    opacity: .7;
  }
}

@media screen and (min-width: 1201px) {
  .header_logo {
    width: 215px;
  }
}

.header_nav {
  text-align: right;
  list-style: none;
}

.header_nav li {
  margin: 0 0 15px 0;
}

@media screen and (min-width: 1201px) {
  .header_nav li {
    margin: 0 0 26px 0;
  }
}

.header_nav a {
  display: block;
  font-size: 20px;
  letter-spacing: .2em;
  color: #172852;
}

@media screen and (min-width: 751px) {
  .header_nav a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .header_nav a:hover {
    opacity: .7;
  }
}

@media screen and (min-width: 1201px) {
  .header_nav a {
    font-size: 32px;
  }
}

/*----------------------------------------------------------
footer
----------------------------------------------------------*/
.footer {
  position: relative;
  background-color: #fff;
  padding: 4% 0 0 0;
}

@media screen and (min-width: 751px) {
  .footer {
    padding: 15px 0 0 0;
  }
}

.footer_wrap {
  padding: 0 40px 55px 40px;
}

.footer_logo {
  width: 191px;
  margin: 0 auto;
}

.footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 55px 0 0 0;
}

.footer_sns .instagram,
.footer_sns .twitter {
  width: 60px;
}

.footer_sns .twitter {
  margin: 0 0 0 42px;
}

.footer_sns a {
  display: block;
}

@media screen and (min-width: 751px) {
  .footer_sns a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .footer_sns a:hover {
    opacity: .8;
  }
}

.footer_nav {
  list-style: none;
  margin: 50px 0 0 0;
}

.footer_nav li {
  margin: 0 0 17.5px 0;
}

.footer_nav li:last-child {
  margin: 0;
}

.footer_nav li a {
  display: block;
  text-align: center;
  font-size: 28px;
  letter-spacing: .1em;
  color: #172852;
}

@media screen and (min-width: 751px) {
  .footer_nav li a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .footer_nav li a:hover {
    opacity: .6;
  }
}

.footer_sub_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 32px 0 0 0;
}

.footer_sub_nav li:nth-child(2) {
  margin: 0 17px 0 19px;
}

.footer_sub_nav li a {
  display: block;
  font-size: 14px;
  letter-spacing: .05em;
  color: #172852;
}

@media screen and (min-width: 751px) {
  .footer_sub_nav li a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .footer_sub_nav li a:hover {
    opacity: .6;
  }
}

.footer_copyright {
  display: block;
  text-align: center;
  font-size: 14px;
  letter-spacing: .05em;
  color: #fff;
  background-color: #172852;
  padding: 24px 0;
}

body.home .footer::before {
  content: '';
  position: absolute;
  display: block;
  top: -7%;
  left: 0;
  right: 0;
  width: 100%;
  height: 12vw;
  min-height: 45px;
  background-image: url(../images/frame_white_top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  body.home .footer::before {
    top: -35px;
    height: 45px;
  }
}

/*----------------------------------------------------------
lower common
----------------------------------------------------------*/
.lower .sec {
  color: #626262;
  padding: 80px 0;
}

.lower .sec_wrap {
  padding: 0 20px;
}

.lower .sec_title {
  text-align: center;
  font-size: 24px;
  color: #172852;
}

.lower .sec_text {
  font-size: 13px;
  letter-spacing: .02em;
  line-height: 23px;
  padding: 0 20px 20px 20px;
  border-bottom: 1px solid #dcdcdc;
  margin: 40px 0 20px 0;
}

.lower .sec ul {
  list-style: none;
}

.lower .sec_list {
  padding: 0 20px;
}

.lower .sec_list>li {
  margin: 0 0 20px 0;
}

.lower .sec_list li .lead {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .02em;
  line-height: 23px;
}

.lower .sec_list li .text {
  font-size: 13px;
  letter-spacing: .02em;
  line-height: 23px;
}

.lower .sec_list li ul {
  font-size: 13px;
  letter-spacing: .02em;
  line-height: 23px;
}

.lower .sec_list li .contact {
  font-size: 13px;
  letter-spacing: .02em;
  line-height: 23px;
  margin: 20px 0 0 0;
}

.lower .sec .btn {
  margin: 80px auto 0 auto;
}

.lower .sec .btn a {
  color: #fff;
  background-color: #172852;
}