@charset "UTF-8";
/* ------------------------------
   Setting
------------------------------ */
@import url("https://fonts.googleapis.com/css?family=Lato:400,700,900&display=swap");
/* ===================================================================
共通
===================================================================*/
body {
  color: #424242;
  overflow-x: hidden;
  font-family: "Lato", fot-tsukuardgothic-std, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .2rem;
  height: 100%;
  background: #FFF;
  padding-top: 78px;
}

/* スマホ画面で非表示 */
.sp_none {
  display: none !important;
}

a.color {
  color: #C08FB3;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  body {
    padding-top: 126px;
  }
  .sp_none {
    display: block !important;
  }
  .pc_none {
    display: none !important;
  }
  a, a img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

/* -------------------- 
loading
-------------------- */
#loading_bg {
  display: block;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C08FB3;
}

#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #FFF;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#loading i {
  display: block;
  font-size: 6rem;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

#loading p {
  margin-top: 1.2rem;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

/* -------------------- 
fixed_btn
-------------------- */
.fixed_btn {
  display: none;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .fixed_btn {
    width: 67px;
    height: 208px;
    display: block;
    position: fixed;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
  }
  .fixed_btn a {
    display: block;
    margin: 0 auto;
  }
  .fixed_btn .fixed_documebt {
    background: #FE4A49;
    color: #FFF;
    width: 100%;
  }
  .fixed_btn .fixed_documebt a {
    padding-top: 20px;
    height: 124px;
  }
  .fixed_btn .fixed_documebt a::before {
    height: 43px;
    display: block;
    content: "\e908";
    font-family: "icomoon";
    font-size: 30px;
    font-weight: normal;
  }
  .fixed_btn .fixed_blog {
    background: #FCFC62;
    color: #424242;
    width: 100%;
    letter-spacing: 0;
    font-size: 12px;
  }
  .fixed_btn .fixed_blog a {
    height: 84px;
    padding: 0 .2rem;
  }
  .fixed_btn .fixed_blog a::before {
    height: 38px;
    display: block;
    content: "\e907";
    font-family: "icomoon";
    font-size: 30px;
    font-weight: normal;
  }
}

/* -------------------- 
margin
-------------------- */
.mb0 {
  margin-bottom: 0 !important;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.mb1o {
  margin-bottom: 1rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.mb2o {
  margin-bottom: 2rem !important;
}

.mb4p {
  margin-bottom: 4% !important;
}

.mb4o {
  margin-bottom: 4rem !important;
}

.mb4 {
  margin-bottom: 4rem !important;
}

.mb6 {
  margin-bottom: 6rem !important;
}

.mb8 {
  margin-bottom: 8rem !important;
}

.mb10 {
  margin-bottom: 10rem !important;
}

.mt4 {
  margin-top: 4rem !important;
}

.mr2 {
  margin-right: 2rem !important;
}

.ml2 {
  margin-left: 2rem !important;
}

/* -------------------- 
padding
-------------------- */
.pdt2 {
  padding-top: 2rem !important;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .mb1 {
    margin-bottom: calc(1rem + 60px) !important;
  }
  .mb2 {
    margin-bottom: calc(2rem + 60px) !important;
  }
  .mb4p {
    margin-bottom: calc(4% + 60px) !important;
  }
  .mb4 {
    margin-bottom: calc(4rem + 60px) !important;
  }
  .mb6 {
    margin-bottom: calc(6rem + 60px) !important;
  }
  .mb8 {
    margin-bottom: calc(8rem + 60px) !important;
  }
  .mb10 {
    margin-bottom: calc(10rem + 60px) !important;
  }
  .mt4 {
    margin-top: calc(4rem + 60px) !important;
  }
}

/* -------------------- 
texr align
-------------------- */
.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

/* -------------------- 
font
-------------------- */
.fwb {
  font-weight: bold !important;
}

.fz16 {
  font-size: 16px !important;
}

.fz9 {
  font-size: 9px !important;
}

.fc-red {
  color: #FE4A49 !important;
}

/* -------------------- 
Flex
-------------------- */
/* SPではColmn */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* SPでもPCでもrow */
.flex-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

/* flexアイテムの縦並びが中央 */
.flex-alignc {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* flexアイテムの横並びが中央 */
.flex-aligncx {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

/* -------------------- 
Header
-------------------- */
.page_Header {
  width: 100%;
  height: 78px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  background: #FFF;
}

.header_logo {
  position: relative;
  width: 100%;
  max-width: 250px;
  left: 10px;
  top: 16px;
  z-index: -1;
}

.header_logo img {
  width: 100%;
}

.header_logo a {
  display: block;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .page_Header {
    width: 100%;
    height: 126px;
  }
  .header_inner {
    width: 100%;
    max-width: 1200px;
    height: 126px;
    margin: 0 auto;
    position: relative;
  }
  .header_logo {
    position: static;
    width: 277px;
    padding-top: 10px;
  }
}

/* -------------------- 
SP_header_menu
-------------------- */
.SP_header_menu_wrap #ham-menu {
  height: calc(100vh - 150px);
  padding: 10px 10px 20px 10px;
  right: 0;
  top: 68px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  width: 100%;
  display: none;
  z-index: 10;
  position: relative;
  overflow: scroll;
  color: #FFF;
}

.SP_header_menu_wrap #ham-menu li a {
  display: block;
  padding: 2rem 3rem;
  border-bottom: #FFF solid 1px;
  font-weight: 800;
  font-size: 1.4rem;
}

.SP_header_menu_wrap #menu-background {
  background: #C08FB3;
  display: block;
  height: 100%;
  opacity: 0;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  width: 100%;
  z-index: -1;
}

.SP_header_menu_wrap .menu-icon {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  height: 28px;
  position: fixed;
  right: 16px;
  top: 26px;
  width: 30px;
  height: 20px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  z-index: 10;
}

.SP_header_menu_wrap .menu-icon span {
  display: inline-block;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.SP_header_menu_wrap .menu-icon span {
  position: absolute;
  right: 0;
  height: 2px;
  background: #C08FB3;
}

.SP_header_menu_wrap .menu-icon span:nth-of-type(1) {
  width: 100%;
  top: 0;
}

.SP_header_menu_wrap .menu-icon span:nth-of-type(2) {
  width: 60%;
  top: 10px;
}

.SP_header_menu_wrap .menu-icon span:nth-of-type(3) {
  width: 30%;
  top: 20px;
}

.SP_header_menu_wrap #menu-cb:checked ~ .menu-icon {
  right: 0;
}

.SP_header_menu_wrap #menu-cb:checked ~ .menu-icon span {
  background: #FFF;
}

.SP_header_menu_wrap #menu-cb:checked ~ .menu-icon span:nth-of-type(1) {
  -webkit-transform: translateX(-50%) translateY(6px) rotate(-45deg);
  transform: translateX(-50%) translateY(6px) rotate(-45deg);
}

.SP_header_menu_wrap #menu-cb:checked ~ .menu-icon span:nth-of-type(2) {
  width: 100%;
  -webkit-transform: translateX(-50%) translateY(-4px) rotate(45deg);
  transform: translateX(-50%) translateY(-4px) rotate(45deg);
}

.SP_header_menu_wrap #menu-cb:checked ~ .menu-icon span:nth-of-type(3) {
  display: none;
}

.SP_header_menu_wrap #menu-cb {
  display: none;
}

.SP_header_menu_wrap #menu-cb:checked ~ #ham-menu {
  opacity: 1;
  display: block;
  position: fixed;
}

.SP_header_menu_wrap #menu-cb:checked ~ #menu-background {
  opacity: 1;
  position: fixed;
  height: 100%;
}

.SP_header_menu_wrap #ham-menu .toggle_menu {
  display: none;
}

.SP_header_menu_wrap #ham-menu .toggle_area .inner {
  display: block;
  position: relative;
}

.SP_header_menu_wrap #ham-menu .toggle_area .inner::before {
  position: absolute;
  content: "";
  right: 14px;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 15px;
  border: 1px solid #FFF;
}

.SP_header_menu_wrap #ham-menu .toggle_area .inner::after {
  position: absolute;
  content: "";
  right: 8px;
  margin: auto;
  top: 0;
  bottom: 1px;
  width: 15px;
  height: 1px;
  border: 1px solid #FFF;
}

.SP_header_menu_wrap #ham-menu .toggle_area.active .inner::before {
  display: none;
}

.SP_header_menu_wrap #ham-menu .toggle_menu ul {
  padding-top: 1rem;
}

.SP_header_menu_wrap #ham-menu .toggle_menu li {
  position: relative;
}

.SP_header_menu_wrap #ham-menu .toggle_menu li:before {
  position: absolute;
  content: "";
  left: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 0;
}

.SP_header_menu_wrap #ham-menu .toggle_menu li a {
  border: none;
}

.SP_header_menu_wrap #ham-menu .toggle_menu li:last-child {
  border-bottom: 1px solid #FFF;
}

.SP_header_menu_wrap #ham-menu .toggle_menu li:last-child a {
  padding-bottom: 3rem;
}

.PC_header_menu_wrap {
  display: none;
}

.PC_header_menu_sub {
  display: none;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .SP_header_menu_wrap {
    display: none;
  }
  .PC_header_menu_sub {
    width: 514px;
    display: block;
    position: fixed;
    right: 0;
    top: 0;
  }
  .PC_header_menu_sub ul {
    width: 100%;
  }
  .PC_header_menu_sub ul li {
    width: 50%;
    text-align: center;
  }
  .PC_header_menu_sub ul li:first-child {
    border-right: 2px solid #FFF;
  }
  .PC_header_menu_sub ul li:nth-child(2) {
    border-right: 2px solid #FFF;
  }
  .PC_header_menu_sub ul li a {
    display: block;
    padding: 1.6rem 0;
    font-weight: bold;
    background: #C08FB3;
    color: #FFF;
  }
  .PC_header_menu_sub ul li :hover {
    background: #E695D1;
  }
  .PC_header_menu_sub ul .access a, .PC_header_menu_sub ul .message a, .PC_header_menu_sub ul .donate a {
    position: relative;
    padding-left: 30px;
  }
  .PC_header_menu_sub ul .access a::before, .PC_header_menu_sub ul .message a::before {
    position: absolute;
    font-family: "icomoon";
    color: #FFF;
    font-size: 22px;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .PC_header_menu_sub ul .donate a::before {
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .PC_header_menu_sub ul .access a::before {
    content: "\e90e";
  }
  .PC_header_menu_sub ul .message a::before {
    content: "\e910";
    left: 20px;
  }
  .PC_header_menu_sub ul .donate a::before {
    content: "";
    width: 22px;
    height: auto;
    aspect-ratio: 43 / 38;
    background-image: url("../../img/common/love.png");
    left: 18px;
    background-size: cover;
  }
  .PC_header_menu_wrap {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
  }
  .PC_header_menu_wrap .dy_point {
    width: 16.66666%;
    width: calc(100% / 6);
    text-align: center;
    padding-bottom: .5rem;
  }
  .PC_header_menu_wrap .dy_point > span a {
    display: block;
    margin: 0.8rem 0;
    border-left: 1px solid #E6E6E6;
    font-size: 16px;
    font-weight: bold;
  }
  .PC_header_menu_wrap .dy_point > span.active,
  .PC_header_menu_wrap .dy_point > span a:hover {
    color: #C08FB3;
  }
  .PC_header_menu_wrap .dy_point:last-child > span a {
    border-right: 1px solid #E6E6E6;
  }
  .PC_header_menu_wrap .dy_area {
    padding: 3rem 2rem 4rem;
    position: fixed;
    background-color: #E6E6E6;
    width: 100%;
    left: 0;
    top: 126px;
    display: none;
    background-repeat: no-repeat;
    background-size: 50%;
  }
  .PC_header_menu_wrap .dy_area::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
  }
  .PC_header_menu_wrap .dy_area ul {
    width: 60%;
    min-height: 180px;
    margin: 0 auto;
    display: table;
    font-size: 14px;
    font-weight: bolder;
  }
  .PC_header_menu_wrap .dy_area li {
    width: 51%;
    height: 100%;
    padding-left: 10%;
    text-align: left;
    padding-bottom: 1rem;
    color: #424242;
  }
  .PC_header_menu_wrap .dy_area li a {
    display: block;
  }
  .PC_header_menu_wrap .dy_area li a:hover {
    color: #C08FB3;
  }
  .PC_header_menu_wrap .dy_area li:first-child {
    color: #FFF;
    width: 49%;
    padding: 0 10%;
    border: 0;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 20px;
  }
  .PC_header_menu_wrap .dy_area li:first-child a {
    position: relative;
    z-index: 2;
  }
  .PC_header_menu_wrap .dy_area li:first-child a:hover {
    color: #FFF;
  }
  .PC_header_menu_wrap .dy_area li:first-child a span {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
    display: block;
    font-weight: normal;
    margin-top: 1.4rem;
    padding: .3rem 1rem;
    border-radius: 4px;
    background: #FFF;
    color: #424242;
    position: relative;
  }
  .PC_header_menu_wrap .dy_area li:first-child a span::after {
    content: "\e905";
    font-family: "icomoon";
    position: absolute;
    right: 10%;
    font-size: 22px;
    font-weight: normal;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .PC_header_menu_wrap .dy_area li:first-child a:hover span {
    background: #C08FB3;
    color: #FFF;
  }
  .PC_header_menu_wrap .dy_area.cate_movie {
    background-image: url(../../img/movie/main.jpg);
    background-position: left top;
  }
  .PC_header_menu_wrap .dy_area.cate_about {
    background-image: url(../../img/about/main.jpg);
    background-position: left center;
  }
  .PC_header_menu_wrap .dy_area.cate_educ {
    background-image: url(../../img/educ/main_2022.jpg);
    background-position: left center;
  }
  .PC_header_menu_wrap .dy_area.cate_life {
    background-image: url(../../img/life/main.jpg);
    background-position: left center;
  }
  .PC_header_menu_wrap .dy_area.cate_exam {
    background-image: url(../../img/exam/main.jpg);
    background-position: left top;
  }
  .PC_header_menu_wrap .dy_area.cate_route {
    background-image: url(../../img/route/main.jpg);
    background-position: left center;
  }
  .PC_header_menu_wrap .dy_area.cate_mind {
    background-image: url(../../img/mind/h_main.jpg);
    background-position: left top;
  }
}

/* -------------------- 
Footer
-------------------- */
.page_Footer {
  width: 100%;
  background: #F1F1F1;
}

.footer_sec1 {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.foot_logo {
  width: 100%;
  max-width: 295px;
  margin: 0 auto;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 2rem;
}

.foot_logo a {
  display: block;
}

.foot_logo img {
  width: 100%;
  padding: 0 1rem;
}

.foot_telad {
  margin: 0 auto;
  padding: 2rem 2rem;
  word-break: normal;
}

.foot_telad .tel {
  font-size: 24px;
  position: relative;
  padding-left: 15%;
}

.foot_telad .tel::before {
  position: absolute;
  content: "\e917";
  font-family: "icomoon";
  font-size: 24px;
  left: 0;
  color: #000;
}

.foot_telad .fax {
  font-size: 24px;
  position: relative;
  padding-left: 15%;
}

.foot_telad .fax::before {
  position: absolute;
  content: "Fax";
  font-size: 18px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  letter-spacing: 0;
  color: #000;
}

.foot_telad .ad {
  font-weight: normal;
}

.foot_telad a {
  display: block;
}

.foot_pamp {
  width: 100%;
  max-width: 295px;
  margin: 0 auto;
  color: #FE4A49;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  /*
    span.foot_banner{
      padding:14px 0 10px 68px;
      display: inline-block !important;
      &::before{
        font-size: 32px;
        left:0;
        top:50%;
        transform: translate(0, -50%);
      }
    }
 */
}

.foot_pamp span.foot_banner {
  position: relative;
  padding: 2% 0 4%;
  padding-left: 24%;
  display: inline-block;
}

.foot_pamp span.foot_banner::before {
  display: block;
  position: absolute;
  content: "\e913";
  font-family: "icomoon";
  font-size: 32px;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.foot_pamp a {
  display: block;
  padding: 1rem 2rem;
  background: #FFF;
  border: 4px solid #FE4A49;
}

.footer_sec2 {
  background: #424242;
  color: #FFF;
}

.footer_sec2_inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.footer_sec2_inner .footer_menu {
  font-size: 13px;
  line-height: 2;
  padding: 1rem 0 3rem 0;
}

.footer_sec2_inner p {
  font-size: 12px;
  opacity: 0.5;
}

.go_top {
  display: none;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .footer_sec1 {
    padding: 4rem 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .foot_logo {
    margin: 0;
    border-bottom: none;
    border-right: 1px solid #E6E6E6;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 4rem;
  }
  .foot_logo img {
    max-width: 300px;
    padding: 0;
  }
  .foot_telad {
    margin: 0;
    padding: 0 0 0 4rem;
  }
  .foot_telad .tel {
    font-size: 22px;
    padding-left: 0;
  }
  .foot_telad .tel::before {
    display: none;
  }
  .foot_telad .tel span {
    display: inline-block !important;
  }
  .foot_telad .fax {
    font-size: 22px;
    margin-bottom: .7rem;
    padding-left: 0;
    position: static;
  }
  .foot_telad .fax::before {
    display: none;
  }
  .foot_telad .fax span {
    display: inline-block !important;
  }
  .foot_pamp {
    max-width: 100%;
    font-size: 16px;
    padding: 0;
  }
  .foot_pamp span.foot_banner {
    padding: 14px 0 10px 68px;
    display: inline-block !important;
  }
  .foot_pamp span.foot_banner::before {
    font-size: 32px;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .foot_pamp a {
    padding: .15rem 2.4rem;
  }
  .foot_pamp a:hover {
    background: #FCFCC6;
  }
  .foot_logo,
  .foot_telad,
  .foot_pamp {
    width: 33.33333%;
    width: calc(100% / 3);
  }
  .footer_sec2 {
    padding-bottom: 6rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer_sec2_inner {
    padding: 4rem 0;
  }
  .footer_sec2_inner .footer_menu {
    width: 60%;
    font-size: 14px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0;
    text-align: right;
  }
  .footer_sec2_inner p {
    width: 40%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    text-align: left;
  }
}

/* -------------------- 
page_top
-------------------- */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: #FFF;
  border-radius: 50%;
  z-index: 11;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "icomoon";
  font-weight: 900;
  content: '\e906';
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/* -------------------- 
btn
-------------------- */
.btn_more {
  background: #F7F7F7;
  text-align: center;
  font-weight: bold;
}

.btn_more a {
  display: block;
  padding: 4rem 2rem;
}

.btn_more a::before {
  margin-bottom: .8rem;
  display: block;
  content: "\e911";
  font-family: "icomoon";
}

.btn_more a:hover {
  background: #C08FB3;
  color: #FFF;
}

.btn_more_txt {
  color: #C08FB3;
  font-weight: bold;
}

.btn_more_txt a {
  display: inine-block;
  position: relative;
  padding: 0 2rem 0 1.6rem;
}

.btn_more_txt a::before, .btn_more_txt a::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn_more_txt a::before {
  content: "";
  width: 5px;
  height: 2px;
  background: #C08FB3;
  left: 0;
}

.btn_more_txt a::after {
  content: "\e902";
  color: #C08FB3;
  font-family: "icomoon";
  font-size: 11px;
  right: 0;
}

.btn_more_txt.file a::after {
  content: "\e903";
  color: #C08FB3;
  font-family: "icomoon";
  font-size: 11px;
  right: 0;
}

.btn_pdf_dl_hogosha {
  color: #C08FB3;
  font-weight: bold;
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.btn_pdf_dl_hogosha a {
  display: block;
  padding: 1.6rem 2rem;
  border: 4px solid #C08FB3;
  margin-top: 40px;
}

.btn_pdf_dl_hogosha a::after {
  display: inline-block;
  vertical-align: middle;
  content: "PDF";
  color: #FFF;
  background: #C08FB3;
  padding: .1rem .6rem;
  margin-left: .4rem;
  font-size: 11px;
}

.btn_pdf_dl {
  color: #C08FB3;
  font-weight: bold;
  font-size: 16px;
  max-width: 500px;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
}

.btn_pdf_dl a {
  display: block;
  padding: 1.6rem 2rem;
  border: 4px solid #C08FB3;
  margin-top: 40px;
}

.btn_pdf_dl a::after {
  display: inline-block;
  vertical-align: middle;
  content: "PDF";
  color: #FFF;
  background: #C08FB3;
  padding: .1rem .6rem;
  margin-left: .4rem;
  font-size: 11px;
}

.btn_pdf_dl_2 {
  color: #C08FB3;
  font-weight: bold;
  font-size: 16px;
  max-width: 500px;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
}

.btn_pdf_dl_2 a {
  display: block;
  padding: 1.6rem 2rem;
  border: 4px solid #C08FB3;
  margin: 40px 0 60px 0;
}

.btn_pdf_dl_2 a::after {
  display: inline-block;
  vertical-align: middle;
  content: "PDF";
  color: #FFF;
  background: #C08FB3;
  padding: .1rem .6rem;
  margin-left: .4rem;
  font-size: 11px;
}

.area_btn_form {
  margin-bottom: 40px;
  margin-top: 40px;
}

.area_btn_form_app {
  margin-top: 40px;
}

.btn_form {
  color: #eb5e10;
  font-weight: bold;
  font-size: 16px;
  max-width: 500px;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
}

.btn_form a {
  display: block;
  padding: 1.6rem 2rem;
  border: 4px solid #eb5e10;
}

/* -------------------- 
Main
-------------------- */
.Main {
  width: 100%;
  height: 100%;
  height: calc(var(--vh, 1vh) * 100 - 78px);
  position: relative;
  overflow-y: hidden;
  overflow-x: hidden;
}

.Main.content {
  min-height: 600px;
}

.Main.min {
  max-height: 270px;
}

.Main.nano {
  max-height: 130px;
}

.Main .main_inner_nano {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-height: 90px;
  position: relative;
}

.Main .main_inner_nano h1 {
  font-size: 30px;
  letter-spacing: .3rem;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.Main .main_image {
  position: relative;
  width: 100%;
  height: 100%;
}

.Main .main_image_inner {
  position: absolute;
  width: 90%;
  height: 50%;
  margin-left: 10%;
  overflow: hidden;
  right: 0;
  bottom: 60px;
  text-align: right;
}

.Main .main_image_inner img {
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.Main .main_inner_cont {
  height: 40%;
  position: absolute;
  left: 2rem;
  top: 2rem;
  color: #FFF;
  z-index: 1;
}

.Main .main_inner_cont p {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: .3rem;
  margin-bottom: 1rem;
}

.Main .main_inner_cont p::before {
  display: inline-block;
  content: "";
  width: 22px;
  height: 4px;
  background: #FFF;
  vertical-align: middle;
  margin-right: 1rem;
}

.Main .main_inner_cont p.contents {
  padding-bottom: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

.Main .main_inner_cont p.contents::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}

.Main .main_inner_cont h1 {
  font-size: 32px;
  letter-spacing: .3rem;
  line-height: 1.4;
}

.Main .main_inner_cont .cap {
  max-width: 300px;
  width: 100%;
  font-size: 14px;
  margin-top: .6rem;
  line-height: 1.8;
  font-weight: bold;
}

.pankz_wrap {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #FFF;
  word-break: break-all;
}

.pankz_wrap ul {
  background: #FFF;
  padding: 1rem;
  font-size: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pankz_wrap ul li {
  color: #ACA9A9;
  padding: 0 .4rem;
  float: left;
}

.pankz_wrap ul li a {
  color: #424242;
}

.pankz_wrap ul li.arrow {
  width: 14px;
  padding: 0 .4rem;
  color: #424242;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .Main {
    height: calc(100vh - 126px);
  }
  .Main.nano {
    max-height: 221px;
  }
  .Main .main_inner_nano {
    max-height: 146px;
  }
  .Main .main_inner_nano h1 {
    font-size: 36px;
    left: 0;
  }
  .Main .main_image {
    position: absolute;
    width: 100%;
    max-width: 1138px;
    max-height: 670px;
    padding-left: 300px;
    padding-top: 100px;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .Main .main_image_inner {
    position: unset;
    width: 100%;
    height: 100%;
    margin-left: 0%;
  }
  .Main .main_image_inner img {
    height: 100%;
    width: auto;
  }
  .Main .main_inner_cont {
    max-width: 1080px;
    height: auto;
    margin: 0 auto;
    position: relative;
    top: 40%;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
  }
  .Main .main_inner_cont p {
    font-size: 28px;
    margin-bottom: 4rem;
  }
  .Main .main_inner_cont p::before {
    width: 32px;
    margin-right: 2rem;
  }
  .Main .main_inner_cont p.contents {
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }
  .Main .main_inner_cont h1 {
    font-size: 40px;
    letter-spacing: 1rem;
    line-height: 1.6;
  }
  .Main .main_inner_cont .cap {
    font-size: 18px;
    margin-top: 1rem;
    line-height: 2;
  }
  .pankz_wrap {
    height: 75px;
  }
  .pankz_wrap ul {
    padding: 2rem 0 0 0;
    max-width: 1080px;
    font-size: 12px;
    margin: 0 auto;
  }
  .pankz_wrap ul li {
    padding: 0 1rem;
    position: relative;
    z-index: 1;
  }
}

/* -------------------- 
head_caption
-------------------- */
.head_caption {
  padding: 4rem 2rem;
  text-align: center;
}

.head_caption h2 {
  font-size: 28px;
  display: inline;
}

.head_caption h2.bg_none {
  background: none !important;
  font-size: 24px;
  line-height: 1.6;
}

.head_caption p {
  padding-top: 2rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
  font-weight: bold;
}

.head_caption .con_cap {
  color: #C08FB3;
  font-weight: bold;
  margin-bottom: 1.6rem;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .head_caption {
    padding-top: 10rem;
    padding-bottom: 10rem;
    line-height: 2;
  }
  .head_caption h2 {
    font-size: 36px;
    letter-spacing: .5rem;
  }
  .head_caption h2.bg_none {
    font-size: 30px;
  }
  .head_caption p {
    font-size: 18px;
    max-width: 100%;
    text-align: center;
  }
  .head_caption .con_cap {
    font-size: 16px;
  }
}

/* -------------------- 
tag color (お知らせのタグ)
-------------------- */
.news_main_wrap,
.information {
  /* お知らせ */
  /* 保護者連絡 */
  /* 重要なお知らせ */
  /* 入試情報 */
  /* トピックス */
  /* イベント */
  /* 部活動 */
  /* 学習センターだより */
  /* 保護者文庫 */
  /* 学習センターからお知らせ */
}

.news_main_wrap span[class^="cat-"],
.information span[class^="cat-"] {
  /* 前方一致 */
  display: inline-block;
  background: #ACA9A9;
  color: #FFF;
  border-radius: 2rem;
  padding: .2rem 1.2rem;
  margin-right: .6rem;
  margin-bottom: .6rem;
  letter-spacing: 0;
  text-align: center;
}

.news_main_wrap span.cat-notice,
.information span.cat-notice {
  background: #17BE84;
}

.news_main_wrap span.cat-parents,
.information span.cat-parents {
  background: #EDAE49;
}

.news_main_wrap span.cat-important,
.information span.cat-important {
  background: #E4572E;
}

.news_main_wrap span.cat-exam,
.information span.cat-exam {
  background: #EF767A;
}

.news_main_wrap span.cat-topics,
.information span.cat-topics {
  background: #C08FB3;
}

.news_main_wrap span.cat-eve,
.information span.cat-eve {
  background: #769BEF;
}

.news_main_wrap span.cat-club,
.information span.cat-club {
  background: #76CAEF;
}

.news_main_wrap span.cat-letter,
.information span.cat-letter {
  background: #3673B1;
}

.news_main_wrap span.cat-parentsb,
.information span.cat-parentsb {
  background: #028917;
}

.news_main_wrap span.cat-learning,
.information span.cat-learning {
  background: #867CAF;
}

/* -------------------- 
con_all_wrap
con_all_wrap_bg
con_all_bgg100
con_max108

list_all_3col
p.mark_area
-------------------- */
.con_all_wrap .con_all_inner {
  padding: 0 2rem;
  margin-bottom: 4rem;
}

.con_all_wrap .con_all_image {
  margin-bottom: 1.6rem;
}

.con_all_wrap .con_all_image img {
  width: 100%;
}

.con_all_wrap .con_all_title h3 {
  font-size: 20px;
  position: relative;
  color: #C08FB3;
  padding-bottom: 1.6rem;
  margin-bottom: 2rem;
}

.con_all_wrap .con_all_title h3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background: #C08FB3;
  left: 0;
  bottom: 0;
}

.con_all_wrap .con_all_txt {
  padding: 0 1rem;
}

.con_all_wrap .con_all_txt h3 {
  font-size: 20px;
  position: relative;
  color: #C08FB3;
  padding-bottom: 1.6rem;
  margin-bottom: 2rem;
}

.con_all_wrap .con_all_txt h3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background: #C08FB3;
  left: 0;
  bottom: 0;
}

.con_all_wrap .con_all_txt_ph {
  padding: 0 1rem;
  margin-top: 40px;
}

.con_all_wrap .con_all_txt2 {
  padding: 0 1rem;
  margin-top: 40px;
}

.con_all_wrap.ict h3 {
  font-size: 24px;
  position: relative;
  color: #C08FB3;
  padding-top: 1.6rem;
  margin-top: 2rem;
}

.con_all_wrap .note_wrap {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.con_all_wrap .note_wrap h3 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 4px solid #C08FB3;
  color: #C08FB3;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.con_all_wrap .note_wrap p {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 1rem;
}

.con_all_wrap .note_wrap .gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.con_all_wrap .note_wrap .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.con_all_wrap .note_mark {
  margin-bottom: 2rem;
}

.con_all_wrap .note_mark li {
  text-indent: -3rem;
  margin-left: 3rem;
  margin-bottom: 1rem;
}

.con_all_wrap .note_mark span {
  display: inline-block;
  width: 3rem;
  text-indent: 0;
}

.con_all_bgg100 {
  background-color: #F7F7F7;
  padding: 4rem 0;
}

.con_max108 {
  width: 100%;
  padding: 0 4rem;
}

ul.list_all_2col,
ul.list_all_3col,
ul.list_all_4col {
  max-width: 400px;
  margin: 0 auto;
}

ul.list_all_2col li,
ul.list_all_3col li,
ul.list_all_4col li {
  margin-bottom: 3rem;
}

ul.list_all_2col img,
ul.list_all_3col img,
ul.list_all_4col img {
  width: 100%;
}

ul.list_all_2col dd,
ul.list_all_3col dd,
ul.list_all_4col dd {
  padding: 0 1rem;
}

ul.list_all_2col .tit,
ul.list_all_3col .tit,
ul.list_all_4col .tit {
  font-size: 18px;
  font-weight: bold;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

ul.list_all_2col p,
ul.list_all_3col p,
ul.list_all_4col p {
  margin-top: 1rem;
}

ul.list_all_2col h3,
ul.list_all_3col h3,
ul.list_all_4col h3 {
  font-size: 20px;
  color: #C08FB3;
  border-bottom: 4px solid #C08FB3;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

ul.list_all_2col dl.dd_mark dd,
ul.list_all_3col dl.dd_mark dd,
ul.list_all_4col dl.dd_mark dd {
  position: relative;
  padding-left: 22px;
  margin-bottom: .4rem;
}

ul.list_all_2col dl.dd_mark dd::before,
ul.list_all_3col dl.dd_mark dd::before,
ul.list_all_4col dl.dd_mark dd::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background: #C08FB3;
  left: 0;
  top: .4rem;
}

ul.list_all_2col dl.dd_mark dd:last-child::before,
ul.list_all_3col dl.dd_mark dd:last-child::before,
ul.list_all_4col dl.dd_mark dd:last-child::before {
  display: none;
}

p.mark_area {
  font-size: 14px;
  margin-top: 1rem;
  text-indent: -2rem;
  margin-left: 2rem;
}

p.mark_area span {
  display: inline-block;
  width: 2rem;
  text-indent: 0;
}

p.mark_area_tx {
  font-size: 14px;
  margin-top: 1rem;
  text-indent: -4.2rem;
  margin-left: 4.2rem;
}

p.mark_area_tx span {
  display: inline-block;
  width: 4.2rem;
  text-indent: 0;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .con_all_wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .con_all_wrap .con_all_inner {
    width: 100%;
    padding: 0;
    margin-bottom: 6rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .con_all_wrap .con_all_inner.start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .con_all_wrap .con_all_image {
    max-width: 575px;
    width: 55%;
  }
  .con_all_wrap .con_all_title {
    width: 50%;
    padding-right: 5%;
  }
  .con_all_wrap .con_all_title h3 {
    font-size: 24px;
  }
  .con_all_wrap .con_all_title h3::before {
    content: "";
    width: 100%;
    right: 0;
    left: auto;
  }
  .con_all_wrap .con_all_txt {
    width: 45%;
    padding: 0 0 0 5rem;
  }
  .con_all_wrap .con_all_txt h3 {
    font-size: 24px;
    padding-bottom: 1.6rem;
    margin-bottom: 4rem;
  }
  .con_all_wrap .con_all_txt h3::before {
    content: "";
    width: 125%;
    right: 0;
    left: unset;
  }
  .con_all_wrap .con_all_txt p {
    font-size: 15px;
  }
  .con_all_wrap .con_all_txt_ph {
    width: 45%;
    padding: 0 0 0 5rem;
  }
  .con_all_wrap .con_all_txt_ph p {
    font-size: 15px;
  }
  .con_all_wrap .con_all_txt2 {
    width: 50%;
  }
  .con_all_wrap.one_col .con_all_txt {
    width: 100%;
    max-width: 629px;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .con_all_wrap.one_col .con_all_txt h3 {
    text-align: center;
  }
  .con_all_wrap.one_col .con_all_txt h3::before {
    width: 100%;
  }
  .con_all_wrap.one_col .con_all_txt_ph {
    width: 100%;
    max-width: 629px;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .con_all_wrap .con_all_inner.reverse .con_all_image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .con_all_wrap .con_all_inner.reverse .con_all_txt {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    padding: 0 5rem 0 0;
  }
  .con_all_wrap .con_all_inner.reverse .con_all_txt h3::before {
    content: "";
    width: 125%;
    right: unset;
    left: 0;
  }
  .con_all_wrap .con_all_inner.reverse .con_all_txt_ph {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    padding: 0 5rem 0 0;
  }
  .con_all_wrap .con_all_inner_100 .con_all_txt {
    width: 100%;
    padding: 0 2rem;
  }
  .con_all_wrap .con_all_inner_100 .con_all_txt h3 {
    text-align: center;
  }
  .con_all_wrap .con_all_inner_100 .con_all_txt h3::before {
    content: "";
    width: 100%;
  }
  .con_all_wrap .note_wrap {
    margin-bottom: 3.6rem;
    line-height: 1.8;
  }
  .con_all_wrap .note_wrap h3 {
    font-size: 30px;
  }
  .con_all_wrap .note_wrap p {
    font-size: 22px;
    margin-bottom: 1.6rem;
  }
  .con_all_wrap .note_mark {
    margin-bottom: 3.6rem;
  }
  .con_all_wrap .note_mark li {
    text-indent: -3.4rem;
    margin-left: 3.4rem;
    margin-bottom: 2rem;
  }
  .con_all_wrap .note_mark span {
    display: inline-block;
    width: 3.4rem;
    text-indent: 0;
  }
  .con_all_bgg100 {
    padding: 6rem 0;
  }
  .con_max108 {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
  }
  ul.list_all_2col,
  ul.list_all_3col,
  ul.list_all_4col {
    max-width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -2rem;
  }
  ul.list_all_2col li,
  ul.list_all_3col li,
  ul.list_all_4col li {
    width: 32%;
    width: calc(100% / 3 - 2rem);
    margin-right: 2rem;
  }
  ul.list_all_2col img,
  ul.list_all_3col img,
  ul.list_all_4col img {
    width: 100%;
  }
  ul.list_all_2col dd,
  ul.list_all_3col dd,
  ul.list_all_4col dd {
    padding: 0 1rem;
  }
  ul.list_all_2col .tit,
  ul.list_all_3col .tit,
  ul.list_all_4col .tit {
    font-size: 18px;
    font-weight: bold;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  ul.list_all_2col p,
  ul.list_all_3col p,
  ul.list_all_4col p {
    margin-top: 1rem;
  }
  ul.list_all_2col h3,
  ul.list_all_3col h3,
  ul.list_all_4col h3 {
    font-size: 24px;
  }
  ul.list_all_3col li:nth-of-type(3n) {
    margin-right: 0;
  }
  ul.list_all_2col li {
    width: calc(50% - 2rem);
    margin-left: 2rem;
  }
  ul.list_all_2col li:nth-child(odd) {
    margin-left: 0;
  }
  ul.list_all_2col li:nth-child(even) {
    margin-right: 0;
  }
  ul.list_all_4col li {
    width: calc(25% - 3rem);
    margin-left: 1rem;
  }
  ul.list_all_4col li:first-child {
    margin-left: 0;
  }
  ul.list_all_4col li:last-child {
    margin-right: 0;
  }
}

/* -------------------- 
con_submenu_wrap
-------------------- */
.con_submenu_wrap {
  padding: 0 2rem 4rem;
  margin-top: 12rem;
  background: -webkit-repeating-linear-gradient(-60deg, #FFF 0, #FFF 2px, #F7F7F7 2px, #F7F7F7 10px);
  background: repeating-linear-gradient(-60deg, #FFF 0, #FFF 2px, #F7F7F7 2px, #F7F7F7 10px);
}

.con_submenu_wrap.bg_none {
  background: none;
}

.con_submenu_wrap p {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  top: -20px;
}

.con_submenu_wrap p::before {
  position: absolute;
  content: "";
  background: #424242;
  width: 30px;
  height: 4px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.con_submenu_wrap ul {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.con_submenu_wrap li {
  width: 50%;
  margin-bottom: 1rem;
}

.con_submenu_wrap li img {
  width: 100%;
}

.con_submenu_wrap dd {
  padding-left: 1rem;
  font-weight: bold;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .con_submenu_wrap {
    padding: 0 2rem 4rem;
    margin-top: 12rem;
  }
  .con_submenu_wrap .con_submenu_inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  .con_submenu_wrap p {
    font-size: 30px;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    top: -25px;
  }
  .con_submenu_wrap p::before {
    content: "";
    width: 50px;
  }
  .con_submenu_wrap .col3 li {
    width: 33.33333%;
    width: calc(100% / 3);
    margin: 0 auto;
  }
  .con_submenu_wrap .col4 li {
    width: 25%;
  }
  .con_submenu_wrap dd {
    padding: 1rem;
    font-size: 16px;
  }
  .con_submenu_wrap dt img {
    display: block;
  }
  .con_submenu_wrap a {
    display: block;
  }
  .con_submenu_wrap a:hover {
    color: #C08FB3;
  }
  .con_submenu_wrap a dt {
    position: relative;
  }
  .con_submenu_wrap a dt:before {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 5px solid transparent;
    opacity: 0;
  }
  .con_submenu_wrap a dt:hover::before {
    content: "";
    border-color: #C08FB3;
    opacity: 1;
  }
}

.border-title {
  color: #C08FB3;
  display: table;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 auto 30px;
  position: relative;
  width: 100%;
}

.border-title:after {
  content: "";
  border-top: 4px solid #C08FB3;
  display: block;
  margin: 15px 0 0;
  width: 30px;
}

.number-list {
  margin: 0 auto;
  max-width: 965px;
  width: 100%;
  counter-reset: listnum;
}

.number-list li:before {
  counter-increment: listnum;
  content: counter(listnum);
  background: #C08FB3;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: -45px;
  top: 0;
}

.number-list li {
  border-bottom: 1px solid #C08FB3;
  padding-bottom: 15px;
  width: calc(100% - 45px);
  margin-left: auto;
  position: relative;
}

.number-list li:not(:last-child) {
  margin-bottom: 25px;
}

.number-list li p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.71;
}

.dott-p-txt {
  font-weight: 500;
  letter-spacing: 0.086em;
  line-height: 1.86;
  margin-bottom: 3.6rem;
}

.dott-p-txt span {
  color: #75487F;
}

.g-map-link {
  color: #C08FB3;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-top: 20px;
  letter-spacing: 0.1em;
}

.g-map-link:after {
  content: "";
  background: url(../../img/access/window.png) no-repeat;
  background-size: cover;
  height: 11px;
  width: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.sp-sc {
  width: 100%;
  overflow: scroll;
}

/*_______ [PC表示] _______*/
@media screen and (min-width: 768px) {
  .border-title {
    font-size: 24px;
    margin: 0 auto 50px;
    width: auto;
  }
  .border-title:after {
    margin: 30px auto 0;
    width: 30px;
  }
  .number-list li:before {
    font-size: 18px;
    height: 40px;
    width: 40px;
    left: -55px;
  }
  .number-list li {
    padding-bottom: 20px;
    width: calc(100% - 55px);
  }
  .number-list li:not(:last-child) {
    margin-bottom: 30px;
  }
  .number-list li p {
    font-size: 18px;
    line-height: 2.31;
  }
  .dott-p-txt {
    margin-bottom: 3.6rem;
    font-size: 15px;
  }
  .sp-sc {
    width: auto;
    overflow: unset;
  }
}

/*# sourceMappingURL=style.css.map */
