@charset "UTF-8";

/***********************
        header
***********************/
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 98px;
  border-bottom: 1px solid #CDD6DD;
  background-color: #fff;
  z-index: 9999;
}
.header-inner {
  /* width: 960px;
  max-width: 94.118vw;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between; */
  max-width: 1000px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 3.3rem;
}
.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-member {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
  padding-top: 20px;
}
.user-login .header-member {
  display: none;
}
.header-member-login {
  display: none;
}
.takarazuka-id {
  background-color: #000;
  margin-right: 20px;
  color: #fff;
  padding: 0 5px;
}
.user-login .header-member-login {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.user-login .btn-header-login {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.user-login .btn-header-login.sp {
  display: none;
}
.btn-header-login  > span {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.btn-mypage > span {
  left: -20px;
}
.btn-logout {
  justify-content: center;
  width: 160px;
  height: 50px;
  border-radius: 0 0 5px 5px;
  background-color: #E2E2E2;
}
.btn-logout::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  top: 50%;
  left: 10px;
  transform: rotate(45deg) translateY(-50%);
}
.btn-logout > span {
  right: 14px;
}
.btn-header {
  width: 160px;
  margin-left: 20px;
  border-radius: 20px;
  font-size: 1.4rem;
  line-height: 1;
  padding: 7px 10px;
}
.btn-header::before {
  left: 1.4rem;
}
.btn-header > span {
  display: flex;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
.btn-login::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 12px;
  top: 50%;
  right: 14px;
  background: url(/assets/images/common/icon_login.svg) center / cover;
  transform: translateY(-50%);
}
.btn-login:hover::after {
  background: url(/assets/images/common/icon_login_w.svg) center / cover;
}
.btn-login:hover {
  opacity: 1;
  background-color: #888888;
  color: #fff;
}
.btn-login.btn-white:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.header-menu-pc {
  display: flex;
  justify-content: flex-end;
}
.header-menu-item {
  position: relative;
  margin-left: 28px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  overflow: hidden;
}
.header-menu-link {
  display: inline-block;
  padding-bottom: 19px;
}
/* .header-menu-link:hover {
  text-decoration: underline;
  opacity: .7;
} */
.header-menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 5px;
  background-color: #333;
  transition: .3s;
}
.header-menu-link:hover::after {
  bottom: 0px;
}
.btn_switch--menu {
  display: none;
}
.header-menu-sp {
  display: none;
}
@media screen and (max-width:960px){
  .header-logo {
    width: 140px;
  }
  .header-menu-item {
    margin-left: 14px;
  }
  .header-member {
    margin-bottom: 16px;
  }
}
@media screen and (max-width:600px){
  .global-header {
    height: auto;
    padding: 0;
    border-bottom: 0;
  }
  .header-logo {
    display: inline-block;
    width: 70px;
    margin-left: 6%;
  }
  .btn-header-login.sp {
    display: none;
  }
  .user-login .header-member-login {
    display: none;
  }
  .user-login .btn-header-login {
    position: relative;
    display: flex !important;
    align-items: center;
    padding-top: 8px;
    margin-left: 20px;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1;
  }
  .btn_switch--menu {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #000;
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 16%);
  }
  .menu-bar {
    display: block;
    position: absolute;
    left: 50%;
    top: calc(50% + 1px);
    width: 50%;
    height: 2px;
    background-color: #fff;
    transform: translate(-50%,-50%);
  }
  .menu-bar::before,.menu-bar::after {
    display: block;
    position: absolute;
    height: 100%;
    background-color: #fff;
  }
  .menu-bar::before {
    content: "";
    top: -9px;
    left: 0;
    width: 100%;
    transition: .3s;
  }
  .menu-bar::after {
    content: "";
    bottom: -9px;
    left: 0;
    width: 50%;
    transition: .3s;
  }
  .open .menu-bar {
    background-color: transparent;
  }
  .open .menu-bar::before{
   top: 0;
   left: 0;
   transform: rotate(135deg);
 }
 .open .menu-bar::after {
   bottom: 0;
   left: 0;
   width: 100%;
   transform: rotate(-135deg);
 }
  .header-inner {
    width: 100%;
    max-width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }
  .header-nav {
    width: 100%;
    order: 3;
  }
  .user-login .header-nav {
    border-top: 1px solid #CDD6DD;
  }
  .header-member {
    justify-content: space-between;
    margin: 0;
    background-color: #F2F2F2;
    padding: 12px 4%;
    border-top: 1px solid #CDD6DD;
    border-bottom: 1px solid #CDD6DD;
  }
  .header-menu-pc {
    display: none;
  }
  .btn-header {
    width: 48%;
    margin: 0;
    padding: 7px 0;
  }
  .header-menu-sp {
    display: block;
    position: fixed;
    width: 100%;
    top: 106px;
    left: -100%;
    background-color: #fff;
    font-weight: bold;
    transition: .3s;
  }
  .user-login .header-menu-sp {
    top: 46px;
  }
  .open .header-menu-sp {
    left: 0;
  }
  .user-login .btn-header-login {
    display: block;
    /* position: absolute;
    top: 16px;
    right: 50px; */
    padding-top: 0;
    font-size: 1.2rem;
    margin-top: 3px;
  }
  .takarazuka-id {
    display: inline-block;
    margin-left: auto;
    font-size: 1rem;
    margin-right: 0;
  }
  .btn-mypage > span {
    padding-top: 0;
  }
  .header-menu-item-sp {
    border-bottom: 1px solid #CDD6DD;
  }
  .header-menu-item-sp.with-login {
    padding: 15px;
  }
  .btn-logout-sp {
    display: block;
    position: relative;
    width: 100%;
    max-width: 255px;
    margin: 0 auto;
    padding: 7px 10px;
    border: 1px solid #CDD6DD;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    font-size: 1.6rem;
    text-align: center;
  }
  .btn-logout-sp::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #888888;
    border-right: 2px solid #888888;
    top: calc(50% - 1px);
    left: 14px;
    transform: rotate(45deg) translateY(-50%);
  }
  .btn-logout-sp > span {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    opacity: .6;
  }
  .header-menu-item-inner-sp {
    display: block;
    padding: 18px 9%;
  }
  .header-submenu-sp {
    width: 86%;
    margin: 0 auto;
  }
  .header-submenu-item-sp {
    max-width: 50%;
    display: flex;
  }
  .header-submenu-item-sp::before {
    content: "・";
  }
  .login-status-sp {
    display: none !important;
    position: absolute;
    right: 60px;
    top: calc(50% - 3px);
    text-align: right;
    transform: translateY(-50%);
  }
  .user-login .login-status-sp {
    display: block !important;
  }
}
@media screen and (min-width:601px){
  .header-menu-sp {
    display: none !important;
  }
}
/***********************
        footer
***********************/
.global-footer {
  border-top: 1px solid #D2DAE1;
}
.footer-top {
  padding: 50px 0 26px;
  border-bottom: 1px solid #D2DAE1;
}
.hh-footer-text-big {
  display: block;
  max-width: 30rem;
  margin: 0 auto 1.2rem;
}
.hh-footer-text-small {
  font-size: 1.3rem;
}
.footer-logo {
  display: inline-block;
  padding-top: 10px;
  width: 104px;
  margin-right: 18px;
}
.global-footer-nav {
  width: 520px;
}
.footer-nav-item {
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.footer-nav-item-full {
  width: 100%;
}
.footer-nav-item-half {
  width: 260px;
}
.footer-nav-title {
  position: relative;
  font-weight: 500;
  padding-left: 14px;
}
.footer-nav-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg) translateY(-50%);
}
.footer-nav-item-inner {
  margin-right: 28px;
}
.footer-nav-item-inner::before {
  content: "・";
}
.footer-bottom {
  padding: 25px 0 30px;
}
.footer-nav-bottom li:not(:last-child) .footer-nav-item-bottom {
  margin-right: 16px;
}
.footer-nav-bottom {
  margin-bottom: 32px;
  font-size: 1.4rem;
}
.copyright-box {
  padding: 0 40px;
}
.copyright {
  font-size: 1rem;
}
.page-top {
  position: fixed;
  right: 1em;
  bottom: 1em;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.7);
  z-index: 10;
  opacity: 0;
}
.page-top.show {
  opacity: 1;
}
.page-top:after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width:600px){
  .footer-top {
    padding: 30px 0;
  }
  .hh-footer-text-small {
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.6;
  }
  .footer-logo {
    width: 134px;
    margin: 0;
  }
  .footer-bottom {
    padding: 25px 0 20px;
  }
  .footer-nav-bottom li {
    width: 100%;
  }
  .footer-nav-title {
    font-size: 1rem;
  }
  .copyright {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/***********************
      login layout
***********************/
.with-login {
  display: none;
}
.user-login .with-login {
  display: block;
}
.user-login .without-login {
  display: none;
}

/***********************
        container
***********************/
.wrapper {
  padding-top: 98px;
}
.page-wrapper {
  padding: 56px 0 64px;
}
.container {
  width: 960px;
  max-width: 94.118vw;
  margin: 0 auto;
}
.container-small {
  width: 880px;
  max-width: 86.275vw;
  margin: 0 auto;
}
.contents-wrapper {
  margin-bottom: 60px;
}
.container-inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width:600px){
  .wrapper {
    padding-top: 106px;
  }
  .user-login .wrapper {
    padding-top: 45px;
  }
  .container {
    width: 92%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .container-small {
    width: 88%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .contents-wrapper {
    margin-bottom: 30px;
  }
  .container-inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .container-sp-w100 {
    width: 100%;
  }
  .page-wrapper {
    padding: 30px 0;
  }
  .top-news .container-small,.news .container-small {
    width: 92%;
  }
}
/***********************
        title
***********************/
.title-uline {
  position: relative;
  padding-bottom: 18px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.title-uline span {
  font-size: 1.6rem;
}
.title-uline::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 50px;
  height: 6px;
  background-color: #888888;
}
.title-uline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 6px;
  background-color: #000;
}
.title-section {
  margin-bottom: 50px;
}
.title-left-cube {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}
.title-left-cube::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-color: #333;
}
.title-left-border {
  position: relative;
  padding-left: 20px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
.title-left-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 50%;
  width: 8px;
  height: 12px;
  background-color: #000;
}
.title-left-border::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 50%;
  width: 8px;
  height: 12px;
  background-color: #C8C8C8;
}
@media screen and (max-width:960px){
}
@media screen and (max-width:600px){
  .title-uline {
    padding-bottom: 10px;
    font-size: 1.8rem;
  }
  .title-uline span {
    font-size: 1.2rem;
  }
  .title-section {
    margin-bottom: 20px;
  }
  .title-uline::before {
    width: 40px;
    height: 3px;
  }
  .title-uline::after {
    width: 40px;
    height: 3px;
  }
  .title-left-border {
    font-size: 1.8rem;
    padding-left: 16px;
  }
  .title-left-border::before {
    width: 6px;
    height: 10px;
  }
  .title-left-border::after {
    top: 10px;
    right: 50%;
    width: 6px;
    height: 10px;
  }
}
/***********************
        button
***********************/
.btn {
  display: inline-block;
  position: relative;
  text-align: center;
}
.btn:hover {
  opacity: .7;
}
.btn-black {
  border: 1px solid #333333;
  background-color: #333333;
  color: #fff;
}
.btn-black::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: calc(50% - 1px);
  transform: rotate(45deg) translateY(-50%);
}
.btn-white {
  border: 1px solid #CDD6DD;
  background-color: #fff;
  color: #000;
}
.btn-white::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #888888;
  border-right: 2px solid #888888;
  top: calc(50% - 1px);
  transform: rotate(45deg) translateY(-50%);
}
.btn-circle {
  width: 270px;
  padding: 15px 0;
  border-radius: 30px;
  font-weight: bold;
  line-height: 16px;
}
.btn-circle::before {
  left: 20px;
}
.btn-cube {
  width: 350px;
  padding: 20px 0;
  border-radius: 6px;
  font-weight: bold;
  line-height: 18px;
}
.btn-cube::before {
  left: 20px;
}
.btn-icon-img {
  display: flex;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.btn-icon-img img {
  height: 16px;
  width: auto;
}
@media screen and (max-width:960px){
  .btn-cube {
    width: 260px;
    padding: 15px 0;
  }
}
@media screen and (max-width:600px){
  .btn-circle {
    width: 200px;
    padding: 11px 0;
  }
}
/***********************
        color
***********************/
.color-white{color: #fff;}
.color-black{color: #000;}

.bg-white{background-color: #fff;}
.bg-black{background-color: #000;}
.bg-gray{background-color: #F2F2F2;}

/***********************
        margin
***********************/
.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.mb15{margin-bottom: 15px;}
.mb20{margin-bottom: 20px;}
.mb25{margin-bottom: 25px;}
.mb30{margin-bottom: 30px;}
.mb35{margin-bottom: 35px;}
.mb40{margin-bottom: 40px;}
.mb45{margin-bottom: 45px;}
.mb50{margin-bottom: 50px;}
.mb55{margin-bottom: 55px;}
.mb60{margin-bottom: 60px;}
.mb65{margin-bottom: 65px;}
.mb70{margin-bottom: 70px;}
.mb75{margin-bottom: 75px;}
.mb80{margin-bottom: 80px;}
.mb85{margin-bottom: 85px;}
.mb90{margin-bottom: 90px;}
.mb95{margin-bottom: 95px;}
.mb100{margin-bottom: 100px;}
.mb110{margin-bottom: 110px;}
.mb120{margin-bottom: 120px;}
.mb130{margin-bottom: 130px;}
.mb140{margin-bottom: 140px;}
.mb150{margin-bottom: 150px;}
.mt5{margin-top: 5px;}
.mt10{margin-top: 10px;}
.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mt25{margin-top: 25px;}
.mt30{margin-top: 30px;}
.mt35{margin-top: 35px;}
.mt40{margin-top: 40px;}
.mt45{margin-top: 45px;}
.mt50{margin-top: 50px;}
.mt55{margin-top: 55px;}
.mt60{margin-top: 60px;}
.mt65{margin-top: 65px;}
.mt70{margin-top: 70px;}
.mt75{margin-top: 75px;}
.mt80{margin-top: 80px;}
.mt85{margin-top: 85px;}
.mt90{margin-top: 90px;}
.mt95{margin-top: 95px;}
.mt100{margin-top: 100px;}
.mt110{margin-top: 110px;}
.mt120{margin-top: 120px;}
.mt130{margin-top: 130px;}
.mt140{margin-top: 140px;}
.mt150{margin-top: 150px;}
.mr5{margin-right: 5px;}
.mr10{margin-right: 10px;}
.mr15{margin-right: 15px;}
.mr20{margin-right: 20px;}
.mr25{margin-right: 25px;}
.mr30{margin-right: 30px;}
.mr35{margin-right: 35px;}
.mr40{margin-right: 40px;}
.mr45{margin-right: 45px;}
.mr50{margin-right: 50px;}
.mr55{margin-right: 55px;}
.mr60{margin-right: 60px;}
.mr65{margin-right: 65px;}
.mr70{margin-right: 70px;}
.mr75{margin-right: 75px;}
.mr80{margin-right: 80px;}
.mr85{margin-right: 85px;}
.mr90{margin-right: 90px;}
.mr95{margin-right: 95px;}
.mr100{margin-right: 100px;}
.ml5{margin-left: 5px;}
.ml10{margin-left: 10px;}
.ml15{margin-left: 15px;}
.ml20{margin-left: 20px;}
.ml25{margin-left: 25px;}
.ml30{margin-left: 30px;}
.ml35{margin-left: 35px;}
.ml40{margin-left: 40px;}
.ml45{margin-left: 45px;}
.ml50{margin-left: 50px;}
.ml55{margin-left: 55px;}
.ml60{margin-left: 60px;}
.ml65{margin-left: 65px;}
.ml70{margin-left: 70px;}
.ml75{margin-left: 75px;}
.ml80{margin-left: 80px;}
.ml85{margin-left: 85px;}
.ml90{margin-left: 90px;}
.ml95{margin-left: 95px;}
.ml100{margin-left: 100px;}
@media screen and (max-width:960px){
  .mb50-tab{margin-bottom: 50px;}
  .mb40-tab{margin-bottom: 40px;}
  .mb30-tab{margin-bottom: 30px;}
  .mb25-tab{margin-bottom: 25px;}
  .mb20-tab{margin-bottom: 20px;}
  .mb15-tab{margin-bottom: 15px;}
  .mb10-tab{margin-bottom: 10px;}
  .mb5-tab{margin-bottom: 5px;}
  .mb0-tab{margin-bottom: 0;}
  .mt0-tab{margin-top: 0;}
  .mr0-tab{margin-right: 0;}
  .ml0-tab{margin-left: 0;}
}
@media screen and (max-width:600px){
  .mb50-sp{margin-bottom: 50px;}
  .mb40-sp{margin-bottom: 40px;}
  .mb30-sp{margin-bottom: 30px;}
  .mb25-sp{margin-bottom: 25px;}
  .mb20-sp{margin-bottom: 20px;}
  .mb15-sp{margin-bottom: 15px;}
  .mb10-sp{margin-bottom: 10px;}
  .mb5-sp{margin-bottom: 5px;}
  .mb0-sp{margin-bottom: 0;}
  .mt0-sp{margin-top: 0;}
  .mr0-sp{margin-right: 0;}
  .ml0-sp{margin-left: 0;}
}

/***********************
        padding
***********************/
.pb5{padding-bottom: 5px;}
.pb10{padding-bottom: 10px;}
.pb15{padding-bottom: 15px;}
.pb20{padding-bottom: 20px;}
.pb25{padding-bottom: 25px;}
.pb30{padding-bottom: 30px;}
.pb35{padding-bottom: 35px;}
.pb40{padding-bottom: 40px;}
.pb45{padding-bottom: 45px;}
.pb50{padding-bottom: 50px;}
.pb55{padding-bottom: 55px;}
.pb60{padding-bottom: 60px;}
.pb65{padding-bottom: 65px;}
.pb70{padding-bottom: 70px;}
.pb75{padding-bottom: 75px;}
.pb80{padding-bottom: 80px;}
.pb85{padding-bottom: 85px;}
.pb90{padding-bottom: 90px;}
.pb95{padding-bottom: 95px;}
.pb100{padding-bottom: 100px;}
.pb110{padding-bottom: 110px;}
.pb120{padding-bottom: 120px;}
.pb130{padding-bottom: 130px;}
.pb140{padding-bottom: 140px;}
.pb150{padding-bottom: 150px;}
.pt5{padding-top: 5px;}
.pt10{padding-top: 10px;}
.pt15{padding-top: 15px;}
.pt20{padding-top: 20px;}
.pt25{padding-top: 25px;}
.pt30{padding-top: 30px;}
.pt35{padding-top: 35px;}
.pt40{padding-top: 40px;}
.pt45{padding-top: 45px;}
.pt50{padding-top: 50px;}
.pt55{padding-top: 55px;}
.pt60{padding-top: 60px;}
.pt65{padding-top: 65px;}
.pt70{padding-top: 70px;}
.pt75{padding-top: 75px;}
.pt80{padding-top: 80px;}
.pt85{padding-top: 85px;}
.pt90{padding-top: 90px;}
.pt95{padding-top: 95px;}
.pt100{padding-top: 100px;}
.pt110{padding-top: 110px;}
.pt120{padding-top: 120px;}
.pt130{padding-top: 130px;}
.pt140{padding-top: 140px;}
.pt150{padding-top: 150px;}
.pl5{padding-left: 5px;}
.pl10{padding-left: 10px;}
.pl15{padding-left: 15px;}
.pl20{padding-left: 20px;}
.pl25{padding-left: 25px;}
.pl30{padding-left: 30px;}
.pl35{padding-left: 35px;}
.pl40{padding-left: 40px;}
.pl45{padding-left: 45px;}
.pl50{padding-left: 50px;}
.pl55{padding-left: 55px;}
.pl60{padding-left: 60px;}
.pl65{padding-left: 65px;}
.pl70{padding-left: 70px;}
.pl75{padding-left: 75px;}
.pl80{padding-left: 80px;}
.pl85{padding-left: 85px;}
.pl90{padding-left: 90px;}
.pl95{padding-left: 95px;}
.pl100{padding-left: 100px;}
.pr5{padding-right: 5px;}
.pr10{padding-right: 10px;}
.pr15{padding-right: 15px;}
.pr20{padding-right: 20px;}
.pr25{padding-right: 25px;}
.pr30{padding-right: 30px;}
.pr35{padding-right: 35px;}
.pr40{padding-right: 40px;}
.pr45{padding-right: 45px;}
.pr50{padding-right: 50px;}
.pr55{padding-right: 55px;}
.pr60{padding-right: 60px;}
.pr65{padding-right: 65px;}
.pr70{padding-right: 70px;}
.pr75{padding-right: 75px;}
.pr80{padding-right: 80px;}
.pr85{padding-right: 85px;}
.pr90{padding-right: 90px;}
.pr95{padding-right: 95px;}
.pr100{padding-right: 100px;}
@media screen and (max-width:600px){
  .pb0-sp{padding-bottom: 0;}
  .pt0-sp{padding-top: 0;}
  .pr0-sp{padding-right: 0;}
  .pl0-sp{padding-left: 0;}
  .pt50-sp{padding-top: 50px;}
  .pt40-sp{padding-top: 40px;}
  .pt30-sp{padding-top: 30px;}
  .pt20-sp{padding-top: 20px;}
  .pt10-sp{padding-top: 10px;}
  .pb50-sp{padding-bottom: 50px;}
  .pb40-sp{padding-bottom: 40px;}
  .pb30-sp{padding-bottom: 30px;}
  .pb20-sp{padding-bottom: 20px;}
  .pb10-sp{padding-bottom: 10px;}
}

/***********************
        font
***********************/
.font-hirakaku {
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",Meiryo,sans-serif;
}
.font36{font-size: 3.6rem}
.font30{font-size: 3rem}
.font24{font-size: 2.4rem}
.font18{font-size: 1.8rem}
.font14{font-size: 1.4rem}
.line10{line-height: 1;}
.line11{line-height: 1.1;}
.line12{line-height: 1.2;}
.line13{line-height: 1.3;}
.line14{line-height: 1.4;}
.line15{line-height: 1.5;}
.line16{line-height: 1.6;}
.line17{line-height: 1.7;}
.line18{line-height: 1.8;}
.line19{line-height: 1.9;}
.line20{line-height: 2;}
.line25{line-height: 2.5;}
.line30{line-height: 3;}

.text-center{text-align: center;}
.text-left{text-align: left;}
.text-right{text-align: right;}

.nomal{font-weight: normal;}
.medium{font-weight: 500;}
.bold{font-weight: bold;}
@media screen and (max-width:600px){
  .text_center--sp{text-align: center;}
  .text_left--sp{text-align: left;}
  .text_right--sp{text-align: right;}
  .font18-sp{font-size: 1.8rem}
  .font16-sp{font-size: 1.6rem}
  .font14-sp{font-size: 1.4rem}
  .font12-sp{font-size: 1.2rem}
}
/***********************
        hover
***********************/
.hover-underline:hover .underline-text {text-decoration: underline;}
.underline-text:hover {text-decoration: underline;}
.hover-opacity {display: inline-block;transition: .3s;}
.hover-opacity:hover {opacity: 0.7;}
.hover-image {overflow: hidden;}
.hover-image img {transition: .3s;}
.hover-image-big:hover .hover-image img {transform: scale(1.1);}
/******************
      flex
*******************/
.flex{display: flex;}
.flex.start{justify-content: flex-start;}
.flex.end{justify-content:flex-end;}
.flex.between{justify-content: space-between;}
.flex.center{justify-content: center;}
.flex.around{justify-content:space-around;}
.flex.middle {align-items: center;}
.flex.top {align-items: flex-start;}
.flex.bottom {align-items: flex-end;}
.flex.wrap{flex-wrap: wrap;}
.flex.nowrap{flex-wrap: nowrap;}
.culm-3::after{content:"";display: block;width:30%;}
@media screen and (max-width:960px){
  .flex.start-tab{justify-content: flex-start;}
  .flex.end-tab{justify-content:flex-end;}
  .flex.center-tab{justify-content: center;}
  .flex.around-tab{justify-content:space-around;}
  .flex.middle-tab {align-items: center;}
  .flex.bottom-tab {align-items: flex-end;}
  .flex.wrap-tab{flex-wrap: wrap;}
}
@media screen and (max-width:600px){
  .flex.start-sp{justify-content: flex-start;}
  .flex.end-sp{justify-content:flex-end;}
  .flex.center-sp{justify-content: center;}
  .flex.around-sp{justify-content:space-around;}
  .flex.middle-sp {align-items: center;}
  .flex.bottom-sp {align-items: flex-end;}
  .flex.wrap-sp{flex-wrap: wrap;}
}
/******************
      width
*******************/
.w5{width: 5%}
.w10{width: 10%}
.w15{width: 15%}
.w17{width: 17%}
.w18{width: 18%}
.w20{width: 20%}
.w22{width: 22%}
.w23{width: 23%}
.w24{width: 24%}
.w25{width: 25%}
.w30{width: 30%}
.w31{width: 31%}
.w32{width: 32%}
.w33{width: 33%}
.w34{width: 34%}
.w35{width: 35%}
.w37{width: 37%}
.w38{width: 38%}
.w40{width: 40%}
.w41{width: 41%}
.w42{width: 42%}
.w43{width: 43%}
.w45{width: 45%}
.w46{width: 46%}
.w47{width: 47%}
.w48{width: 48%}
.w49{width: 49%}
.w50{width: 50%}
.w55{width: 55%}
.w60{width: 60%}
.w62{width: 62%}
.w65{width: 65%}
.w70{width: 70%}
.w75{width: 75%}
.w80{width: 80%}
.w85{width: 85%}
.w90{width: 90%}
.w95{width: 95%}
.w100{width: 100%}
@media screen and (max-width:600px){
  .w48-sp{width: 48%;}
  .w49-sp{width: 49%;}
  .w50-sp{width: 50%;}
  .w60-sp{width: 60%;}
  .w70-sp{width: 70%;}
  .w80-sp{width: 80%;}
  .w90-sp{width: 90%;}
  .w100-sp{width: 100%;}
}
/***********************
        list
***********************/
.list > li {
  position: relative;
}
.list-number {
  counter-reset: item;
}
.list-number > li::before {
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
}
.list-number__01 > li {
  padding-left: 30px;
}
.list-number__01 > li::before {
  content: counter(item)'.';
}
.list-number__02 > li {
  padding-left: 40px;
}
.list-number__02 > li::before {
  content: '（'counter(item)'）';
}
.list-kana > li {
  padding-left: 50px;
}
.list-kana .kana {
  position: absolute;
  top: 0;
  left: 0;
}
.list-circle > li {
  padding-left: 30px;
}
.list-circle > li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #575757;
}
.list-dot > li {
  padding-left: 1em;
}
.list-dot > li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width:600px){
  .list-number__01 > li {
    padding-left: 20px;
  }
  .list-number__02 > li {
    padding-left: 30px;
  }
  .list-kana > li {
    padding-left: 40px;
  }
  .list-circle > li {
    padding-left: 20px;
  }
  .list-circle > li:before {
    top: 3px;
    left: 0;
    width: 12px;
    height: 12px;
  }
}
/***********************
        box
***********************/
.scroll-box {
  width: 100%;
  height: 65rem;
  /* border: 1px solid #B0B0B0; */
  border-radius: 10px;
  overflow: hidden;
  color: #575757;
}
.scroll-box iframe {
  width: 100%;
  height: 100%;
  min-height: 55rem;
}
@media screen and (max-width:600px){
  .scroll-box {
    height: 50rem;
  }
}
/***********************
    pager
***********************/
.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-align: center;
  line-height: 34px;
}
.page1 {
  width: 54px;
  height: 36px;
  margin: 2px;
  background-color: #E8E8E8;
  color: #979797;
  border: 1px solid #D2DAE1;
  border-radius: 3px;
  text-align: center;
  line-height: 34px;
  cursor: pointer;
}
.pager a {
  width: 36px;
  height: 36px;
  margin: 2px;
  border: 1px solid #D2DAE1;
  border-radius: 3px;
  cursor: pointer;
}
/* .pager a:first-child {
  display: none;
}
.pager a:last-child {
  width: 54px;
  background-color: #E8E8E8;
  color: #979797;
} */
.pager span {
  display: none;
}
.pager a.jp-current {
  border: 1px solid #333333;
  background-color: #333333;
  color: #fff;
  cursor: default;
}
.jp-hidden,.jp-disabled {
  display: none !important;
}
.pager .jp-first,.pager .jp-last {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  background-color: #E8E8E8;
  color: #979797;
}
.pager .jp-first::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 3px;
  border-bottom: 2px solid #979797;
  border-left: 2px solid #979797;
  transform: rotate(45deg);
}
.pager .jp-last::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 3px;
  border-top: 2px solid #979797;
  border-right: 2px solid #979797;
  transform: rotate(45deg);
}
.none-first a:nth-child(2),.none-last a:nth-last-child(2) {
  display: none;
}
.none-firstlast-btn .jp-first,.none-firstlast-btn .jp-last {
  display: none;
}
.none-pager {
  display: none;
}
/***********************
        filter
***********************/
.filter-wrap {
  max-width: 680px;
  margin: 0 auto 50px;
}
.filter-title {
  width: 80px;
  text-align: right;
}
@media screen and (max-width:600px){
  .filter-wrap {
    margin: 0 auto 30px;
  }
  .filter-title {
    width: 50px;
    text-align: center;
  }
}
/***********************
        input
***********************/
.select-wrap {
  position: relative;
  width: 250px;
  border-radius: 5px;
  border: 1px solid #D5DCE3;
}
.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  border-top: 10px solid #333333;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  transform: translateY(-50%);
}
.select-wrap select {
  width: 100%;
  padding: 10px;
  line-height: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width:960px){
  .select-wrap {
    width: 214px;
  }
}
/***********************
        breadcrumb
***********************/
.breadcrumb {
  padding: 5px 0;
  background-color: #F2F2F2;
  font-size: 1.4rem;
}
.breadcrumb a:hover {
  opacity: 0.7;
}
.breadcrumb li {
  position: relative;
}
.breadcrumb li:not(:last-child) {
  margin-right: 24px;
}
.breadcrumb li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width:600px){
  .breadcrumb {
    font-size: 1rem;
  }
  .breadcrumb li:not(:last-child) {
    margin-right: 18px;
  }
  .breadcrumb li:not(:last-child)::after {
    right: -8px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
  }
}
/***********************
        other
***********************/
.pc{display: block;}
.tab{display: none;}
.sp{display: none;}
.flex.pc{display: flex;}
.flex.sp{display: none;}
.border_bottom{border-bottom: 1px solid;}
.border_top{border-top: 1px solid;}
.underline{text-decoration: underline;}
.clearfix::after{content: "";clear: both;display: block;}
.op1{opacity: 1; }
.auto{margin: 0 auto;}
.inline{display: inline-block;}
.block{display: block;}
@media screen and (max-width:960px){
  .tab{display: blocks;}
}
@media screen and (max-width:600px){
  .pc{display: none;}
  .sp{display: block;}
  .flex.pc{display: none;}
  .flex.sp{display: flex;}
  .flex.between-sp{justify-content: space-between;}
  .flex.center-sp{justify-content: center;}
  .block-sp{display: block;}
}
