@charset "UTF-8";
/* CSS Document */

/* ---------------------------------------------------------
font
----------------------------------------------------------*/
@font-face {
	font-family: 'sansJP';
	src: url('../fonts/SourceHanSansJP-Regular.woff') format('woff'),
		url('../fonts/SourceHanSansJP-Regular.otf') format('opentype');
	font-weight: normal;
}
@font-face {
	font-family: 'sansJP';
	src: url('../fonts/SourceHanSansJP-Medium.woff') format('woff'),
		url('../fonts/SourceHanSansJP-Medium.otf') format('opentype');
	font-weight: 500;
}

/* ---------------------------------------------------------
common
----------------------------------------------------------*/
html,
body {
  font-size: 62.5%;
}
body {
	width: 100%;
	font-family: 'sansJP',"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック体","Yu Gothic Medium",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 1.3rem;
	line-height: 1.5;
	color: #000;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
  padding-top: 110px;
}

img { vertical-align: bottom;}
img { -ms-interpolation-mode: bicubic; }

a {
  color: #000; 
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: underline;
}
.show-sp {
  display: none;
}

.btn-pink a {
  position: relative;
  color: #E85382;    
  border: 1px solid #E85382;
  transition: all .3s;
}
.btn-pink a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(12 / 1396 * 100vw);
  display: block;
  width: calc(8 / 1396 * 100vw);
  height: calc(6 / 1396 * 100vw);
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: .5vw auto;
  margin-top: calc(-3 / 1396 * 100vw);
  transition: background-image .3s;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  overflow:hidden
}
@media screen and (min-width:769px) {
  .btn-pink a:hover {
    color: #fff;
    background: #E85382;
  }
  .btn-pink a:hover::after {
    background-image: url("../img/icon_arrow_white.svg");
    background-size: .5vw auto;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
    overflow:hidden
  }
}
.icon-blank::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 9px;
  vertical-align: middle;
  background: url("../img/icon_blank.png") no-repeat;
  background-size: contain;
  margin-left: calc(13 / 1396 * 100vw);
}
.icon-blank.blank-pink::after {
  width: 14px;
  height: 11px;
  background: url("../img/icon_blank_btn.png") no-repeat;
  background-size: contain;
  margin-left: calc(14 / 1396 * 100vw);
}

@media screen and (min-width:769px) and ( max-width:870px) {
  .icon-blank::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 6px;
    vertical-align: middle;
    background: url("../img/icon_blank.png") no-repeat;
    background-size: contain;
    margin-left: calc(13 / 1396 * 100vw);
  }
  
  .icon-blank.blank-pink::after {
    width: 11px;
    height: 8px;
    background: url("../img/icon_blank_btn.png") no-repeat;
    background-size: contain;
    margin-left: calc(14 / 1396 * 100vw);
  }
}


/* ---------------------------------------------------------
header
----------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 80px;
  background: #fff;
  padding: 35px 76px 0 74px;
  padding-right: 144px;
  box-sizing: border-box;
  z-index: 12;
}
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: transparent linear-gradient(90deg, #DE3B70 0%, #EC733F 11%, #DE3B70 61%, #E9829F 100%) 0% 0% no-repeat padding-box;
}
header .logo {
  width: 188px;
  margin-right: auto;
}
header .logo img {
  width: 100%;
  height: auto;
}
header nav > ul {
  display: flex;
}
header nav > ul > li {
  margin-right: 40px;
}
header nav > ul > li:nth-child(2) {
  margin-right: 46px;
}
header nav > ul > li:nth-child(3) {
  margin-right: 41px;
}
header nav > ul > li:nth-child(5) {
  margin-right: 46px;
}
header nav > ul > li:nth-child(6),
header nav > ul > li:last-child {
  margin-right: 0;
}
header nav {
  font-size: 15px;
}
header .nav-parents > a {
  background: url("../img/icon_tri_down.svg") no-repeat right 20px;
  padding-right: 32px;
  transition: background .3s;
}
header nav > ul > li:nth-child(5).nav-parents > a {
  padding-right: 26px;
}
header nav > ul > li > a {
  position: relative;
  display: block;
  height: 55px;
  line-height: 1;
  transition: color .3s;
  padding-top: 16px;
  box-sizing: border-box;
}
header nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 15px;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: background .3s;
}
header .btn-attendant a {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  background: transparent linear-gradient(-45deg, #DE3B70 0%, #EC733F 11%, #DE3B70 61%, #E9829F 100%) 0% 0% no-repeat padding-box;
  box-sizing: border-box;
  padding: 0;
}
header .btn-attendant a::after {
  display: none;
}

/* .nav-sub */
header .nav-sub {
  position: absolute;
  top: 90px;
  left: 74px;
  width: calc(100% - 150px);
  background: rgba(232,83,130,0.85);
  padding: 39px 70px 45px;
  box-sizing: border-box;
  
  visibility: hidden;
  opacity: 0;
}

header .is-active .nav-sub {
  display: block;
}
header .nav-sub p {
  padding-bottom: 31px;
  border-bottom: 1px solid #fff;
  margin-bottom: 25px;
}
header .cate-top a {
  position: absolute;
  top: 40px;
  right: 70px;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  letter-spacing: .06em;
  background: url("../img/icon_arrow_white.svg") no-repeat right 1px top 5px;
  padding-right: 24px;
}
header .nav-sub ul {
  display: flex;
  flex-wrap: wrap;
}
header .nav-sub li {
  width: 33.3%;
  margin-bottom: 9px;
}
header .nav-sub li a {
  font-size: 15px;
  color: #fff;
  letter-spacing: .06em;
  background: url("../img/icon_tri_white.svg") no-repeat left center;
  padding-left: 16px;
}


@media screen and (min-width:769px) {
  header .logo,
  header nav {
    transition: margin .3s;
  }
  header.is-scroll {
    box-shadow: 5px 0 14px 0px rgba(0,0,0,.06);
  }
  header.is-scroll .logo,
  header.is-scroll nav {
    margin-top: -15px;
  }
  header.is-scroll .nav-sub {
    top: 90px;
  }
  
  header.is-scroll .btn-attendant a {
    transition: height .3s;
  }
  header.is-scroll .btn-attendant a {
    height: 80px;
  }
  
  header nav > ul > li.cr > a {
    color: #E85382;
    text-decoration: none;
  }
  header nav > ul > li.cr > a::after {
    background: #E85382;
  }
  header .nav-parents.cr > a {
    background-image: url("../img/icon_tri_down_pink.svg");
  }
  header .nav-sub {
    transition: visibility .3s,opacity .3s;
  }
  
  header .nav-parents:hover > a {
    background-image: url("../img/icon_tri_down_pink.svg");
  }
  header .nav-parents:hover > a,
  header nav > ul > li > a:hover {
    color: #E85382;
    text-decoration: none;
  }
  
  header .btn-attendant a {
    transition: opacity .3s;
  }
  header .btn-attendant a:hover {
    color: #fff;
    opacity: .7;
  }
  header .nav-parents:hover > a::after,
  header nav > ul > li > a:hover::after {
    background: #E85382;
  }
  header .nav-parents:hover .nav-sub {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width:769px) and (max-width:1220px) {
  header {
    padding-top: calc(35 / 1220 * 100vw);
    padding-right: calc(144 / 1220 * 100%);
    padding-left: calc(74 / 1220 * 100%);
    height: calc(110 / 1220 * 100vw);
  }
  header.is-scroll {
    height: calc(80 / 1220 * 100vw);
  }
  header::before {
    height: calc(5 / 1220 * 100vw);
  }
  header .logo {
    width: calc(188 / 1030 * 100%);
  }
  
  header nav {
    width: calc(100% - 18.3%);
    font-size: calc(15 / 1220 * 100vw);
  }
  header nav > ul {
    justify-content: flex-end;
  }
  header nav > ul > li {
    white-space: nowrap;
    margin-right: calc(40 / 1030 * 100%);
  }
  header nav > ul > li:nth-child(2) {
    margin-right: calc(46 / 1030 * 100%);
  }
  header nav > ul > li:nth-child(3) {
    margin-right: calc(41 / 1030 * 100%);
  }
  header nav > ul > li:nth-child(5) {
    margin-right: calc(46 / 1030 * 100%);
  }
  
  header .btn-attendant a {
    width: calc(110 / 1220 * 100vw);
    height: calc(110 / 1220 * 100vw);
  }
  header.is-scroll .btn-attendant a {
    height: calc(80 / 1220 * 100vw);
  }
  
  
  header .nav-parents > a {
    background-position: right 1.7vw;
    padding-right: calc(32 / 1220 * 100vw);
  }
  header nav > ul > li:nth-child(5).nav-parents > a {
    padding-right: calc(26 / 1220 * 100vw);
  }
  header nav > ul > li > a {
    height: calc(55 / 1180 * 100vw);
    padding-top: calc(16 / 1220 * 100vw);
  }
  header nav > ul > li > a::after {
    bottom: calc(15 / 1220 * 100vw);
  }

  header .nav-sub {
    top: calc(90 / 1220 * 100vw);
    left: 5.3%;
    width: 89.3%;
    padding-top: calc(39 / 1220 * 100vw);
    padding-bottom: calc(45 / 1220 * 100vw);
    padding-left: calc(70 / 1220 * 100vw);    
    padding-right: calc(70 / 1220 * 100vw);
  }
  header .nav-sub p {
    padding-bottom: calc(31 / 1220 * 100vw);
    margin-bottom: calc(25 / 1220 * 100vw);
  }
  header .cate-top a {
    top: calc(40 / 1220 * 100vw);
    right: calc(70 / 1220 * 100vw);
    font-size: calc(18 / 1220 * 100vw);
    background-position: right 0 top 1px;
    padding-right: calc(24 / 1220 * 100vw);
  }
  header .nav-sub li a {
    font-size: calc(15 / 1220 * 100vw);
    padding-left: calc(16 / 1220 * 100vw);
  }

}

/* ---------------------------------------------------------
.ttl-col2
----------------------------------------------------------*/
.ttl-col2 {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: calc(94 / 1396 * 100vw);
}
.ttl-col2 .pic {
  width: calc(946 / 1396 * 100vw);
  margin-left: auto;
}
.ttl-col2 .pic img {
  width: 100%;
  height: auto;
}
.ttl-col2 .txt {
  position: absolute;
  top: calc(200 / 1396 * 100vw);
  left: 0;
  width: calc(608 / 1396 * 100%);
  height: calc(268 / 1396 * 100vw);
  background: #fff;
  border-radius: 0 10px 0 0;
  box-shadow: 5px -18px 28px 0px rgba(0,0,0,.04);
  padding-top: calc(68 / 1396 * 100vw);
  box-sizing: border-box;
}
.ttl-col2 h1 span {
  color: #E85382;
  font-size: calc(36 / 1396 * 100vw);
  font-weight: normal;
  letter-spacing: 0.06em;
  display: flex;
  align-items: flex-end;
}
.ttl-col2 h1 span::before {
  content: "";
  display: block;
  width: calc(60 / 1396 * 100vw);
  height: calc(3 / 1396 * 100vw);
  background: transparent linear-gradient(90deg, #DE3B70 0%, #EC733F 11%, #DE3B70 61%, #E9829F 100%) 0% 0% no-repeat padding-box;
  border-radius: 0 2px 2px 0;
  margin-right: calc(17 / 1396 * 100vw);
  margin-bottom: calc(12 / 1396 * 100vw);
}
.ttl-col2 .txt-sub {    
  font-size: calc(15 / 1396 * 100vw);
  line-height: 2;
  letter-spacing: .06em;
  padding-left: calc(76 / 608 * 100%);
}
.ttl-col2 .txt-gray {
  position: absolute;
  top: calc(499 / 1396 * 100vw);
  right: 5.4%;
  right: 56px;
  height: calc(70 / 1396 * 100vw);
}
.ttl-col2 .txt-gray img {
  right: 0;
  width: auto;
  height: 100%;
}

/* ---------------------------------------------------------
.breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: calc(655 / 1396 * 100%);
  margin-left: auto;
  padding-right: calc(75 / 1396 * 100%);
  margin-top: calc(30 / 1396 * 100vw);
}
.breadcrumb li {
  display: flex;
  align-items: center;
  list-style: none;
  white-space: nowrap;
  font-size: calc(12 / 1396 * 100vw);
  line-height: 1;
}
.breadcrumb li:last-child {
  white-space: inherit;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .breadcrumb li:last-child {
    max-width: 50%;
  }
}

.breadcrumb li a {
  color: #E85382;
}
.breadcrumb li::after {
  content: "";
  
  flex-grow: 0;
  flex-shrink: 0;
  
  display: block;
  width: 5px;
  height: 8px;
  background: url("../img/icon_tri_right.svg")no-repeat;
  background-size: contain;
  margin: 0 20px;
}
.breadcrumb li:last-child::after {
  content: none;
}
.breadcrumb a:hover {
  text-decoration: none;
}

/* ---------------------------------------------------------
.article-common
----------------------------------------------------------*/
.article-common {
  position: relative;
  padding-top: calc(85 / 1396 * 100%);
}
.article-common::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(323 / 1396 * 100vw);
  content: '';
  background-color: #EBEBEB;
  z-index: -1;
}
.article-common .inner {
  position: relative;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: 0 auto;
  padding: calc(100 / 1396 * 100vw) calc(60 / 1396 * 100vw) calc(100 / 1396 * 100vw);
  width: calc(1248 / 1396 * 100vw);
  box-sizing: border-box;
}
.h2-common {
  font-size: calc(26 / 1396 * 100vw);
  font-weight: normal;
  letter-spacing: .06em;
  margin-bottom: calc(40 / 1396 * 100vw);
}
.h2-common-pink {
  font-size: calc(24 / 1396 * 100vw);
  font-weight: normal;
  letter-spacing: .06em;
  color: #E85382;
  padding-bottom: calc(25 / 1396 * 100vw);
  margin-top: calc(96 / 1396 * 100vw);
  margin-bottom: calc(40 / 1396 * 100vw);
  border-bottom: 1px solid #D1D1D1;
}
.h2-common-pink:first-child {
  margin-top: 0;
}
.txt-common {  
  font-size: calc(14 / 1396 * 100vw);
  letter-spacing: .06em;
  line-height: 1.71;
  margin-top: calc(20 / 1396 * 100vw);
}
.txt-common a {
  color: #E85382;
}
.txt-common a[href$=".pdf"]:after {
  content: '';
  display: inline-block;
  width: calc(24 / 1396 * 100vw);
  height: calc(20 / 1396 * 100vw);
  vertical-align: middle;
  background: url(../img/icon_pdf.svg) no-repeat;
  background-size: 1.7vw auto;
  margin-left: calc(7 / 1396 * 100vw);
}
.txt-right {
  text-align: right;
}

/* ---------------------------------------------------------
#tagline
----------------------------------------------------------*/
#tagline {
  text-align: center;
  padding: calc(122 / 1396 * 100vw) 0 calc(109 / 1396 * 100vw);
}
#tagline img {
  width: calc(295 / 1396 * 100vw);
  height: auto;
}

/* ---------------------------------------------------------
#bn-list
----------------------------------------------------------*/
#bn-list {
  position: relative;
  padding: 0 0 120px;
}
#bn-list ul {
  width: 92.8%;
  margin: 0 auto;
}
#bn-list li {
  width: 22.1%;
  margin: 0 1.9%;
  margin: 0 24px;
}
#bn-list a:hover {
  text-decoration: none;
}
#bn-list li img {
  width: 100%;
  height: auto;
}
#bn-list .pic {
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  margin-bottom: 27px;
  box-sizing: border-box;
}
#bn-list p {
  font-size: 15px;
  letter-spacing: .06em;
  line-height: 1;
  background: url("../img/icon_footer_tri_pink.svg") no-repeat left center;
  background-size: 6px 10px;
  padding-left: 15px;
}
.slick-prev,
.slick-next,
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  width: calc(30 / 1396 * 100%);
  height: 0;
  padding-top: calc(30 / 1396 * 100%);
  background: url("../img/icon_next.svg") no-repeat;
  background-size: contain;
}
.slick-prev,
.slick-next {
  top: 0;
  margin-top: calc(56 / 1396 * 100%);
  left: calc(-35 / 1396 * 100%);
  transform: none;
}
.slick-prev,
.slick-prev:hover,
.slick-prev:focus {
  transform: scaleX(-1);
}
.slick-next {
  left: auto;
  right: calc(-35 / 1396 * 100%);
}
.slick-prev:before, .slick-next:before {
  display: none;
}
.slick-arrow.slick-disabled {
  display: none !important;
}

@media screen and (min-width:769px) {
  #bn-list a {
    display: block;
    transition: opacity .3s;
  }
  #bn-list a:hover {
    opacity: .7;
  }
}

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
footer {
  position: relative;
  background: #222;
  padding: 56px 0 0;
  margin-top: 120px;
}
#pagetop a {
  position: fixed;
  bottom: 74px;
  right: 74px;
  display: block;
  width: 60px;
  transition: opacity .3s;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s,visibility .3s;
  z-index: 9;
}
#pagetop.is-active a {
  opacity: 1;
  visibility: visible;
}
#pagetop.is-abs a {
  position: absolute;
  bottom: auto;
  top: -30px;
}
#pagetop a img {
  transition: opacity .3s;
}
#pagetop a:hover img {
  opacity: .7;
}
footer nav {
  padding: 0 77px 44px;
}
footer nav ul {
  position: relative;
  width: 100%;
}
footer nav ul::after {
  content: "";
  display: table;
  clear: both;
}

footer nav li {
  line-height: 1;
}
footer nav > ul > li {
  width: 33.3%;
  margin-bottom: 20px;
}
footer nav > ul > li:first-child {
  margin-bottom: 0;
}
footer nav > ul > li:first-child,
footer nav > ul > li:nth-child(2),
footer nav > ul > li:nth-child(3),
footer nav > ul > li:nth-child(4) {
  float: left;
}
footer nav > ul > li:nth-child(3) {
  width: 60%;  
}
footer nav > ul > li:last-child {
  position: absolute;
  top: 0;
  right: 0;
}
footer nav > ul > li > a {
  font-size: 14px;
  letter-spacing: .08em;
  background: url("../img/icon_footer_tri_gray.svg") no-repeat left center;
  background-size: 5px 9px;
  padding-left: 14px;
}

footer nav ul ul {
  padding: 10px 0 0 16px;
}
footer nav ul ul a {
  font-size: 12px;
  line-height: 27px;
  background: url("../img/icon_footer_tri_gray.svg") no-repeat left center;
  background-size: 4px 7px;
  padding-left: 14px;
}
footer a {
  color: #EBEBEB;
}

.footer-nav {
  background: #000;
  padding: 36px 0 43px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
}
.footer-nav li {
  line-height: 1;
}
.footer-nav ul a {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1;
  background: url("../img/icon_footer_tri_pink.svg") no-repeat left center;
  padding-left: 12px;
}
.footer-nav ul li:first-child {
  margin-right: 43px;
}
.footer-nav .logo-txt {
  text-align: center;
  margin-top: 28px;
}
footer .copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  height: 82px;
  padding: 0 74px;
}

/* ---------------------------------------------------------
media queries
----------------------------------------------------------*/
@media screen and (max-width:768px) {
  /* ---------------------------------------------------------
  common
  ----------------------------------------------------------*/
  .show-pc {
    display: none;
  }
  .show-sp {
    display: block;
  }
  img {
    width: 100%;
    height: auto;
  }  

  .btn-pink a::after {
    right: 11px;
    width: 9px;
    height: 6px;
    background-size: 8px auto;
    margin-top: -3px;
    
    right: calc(11 / 375 * 100vw);
    width: calc(9 / 375 * 100vw);
    height: calc(6 / 375 * 100vw);
    background-size: 2.4vw auto;
    margin-top: calc(-3 / 375 * 100vw);
  }
  
  .icon-blank::after {
    width: calc(12 / 375 * 100vw);
    height: calc(9 / 375 * 100vw);
    background-size: 3.2vw auto;
    margin-left: calc(5 / 375 * 100vw);
  }
  .icon-blank.blank-pink::after {
    width: calc(12 / 375 * 100vw);
    height: calc(9 / 375 * 100vw);
    background-size: 3.2vw auto;
    margin-left: calc(5 / 375 * 100vw);
  }
  
/* ---------------------------------------------------------
body
----------------------------------------------------------*/
  body {  
    padding-top: 48px;
    padding-top: calc(48 / 375 * 100vw);
  }

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
  header {
    height: 48px;
    height: calc(48 / 375 * 100vw);
    padding-top: 14px;
    padding-left: 12px;
    padding-right: 0;

    padding-top: calc(14 / 375 * 100vw);
    padding-left: calc(12 / 375 * 100vw);
    box-sizing: border-box;
    transition: height .3s;
  }
  header a:hover {
    text-decoration: none;
  }
  header::before {
    height: 3px;
    height: .8vw;
  }
  header .logo {
    width: 110px;
    width: calc(110 / 375 * 100vw);
  }
  header .btn-menu {
    position: absolute;
    top: 17px;
    right: 13px;
    width: 20px;
    height: 20px;
    
    top: calc(17 / 375 * 100vw);
    right: calc(13 / 375 * 100vw);
    width: calc(20 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
  }
  header .btn-menu span {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 2px;
    height: calc(2 / 375 * 100vw);
    background: #E85382;
    transition: transform .3s, top .3s;
  }
  header .btn-menu span:nth-child(2) {
    top: 8px;
    top: calc(8 / 375 * 100vw);
    transition: opacity .3s;
  }
  header .btn-menu span:nth-child(3) {
    top: 16px;
    top: calc(16 / 375 * 100vw);
  }  
  header.is-open .btn-menu span:nth-child(2) {
    opacity: 0;
  }
  header.is-open .btn-menu span:nth-child(1) {
    top: 7px;
    top: calc(7 / 375 * 100vw);
    transform: rotate(45deg);
  }
  header.is-open .btn-menu span:nth-child(3) {
    top: 7px;
    top: calc(7 / 375 * 100vw);
    transform: rotate(-45deg);
  }
  
  
  header nav {
    position: absolute;
    top: 48px;
    top: calc(48 / 375 * 100vw);
    left: 0;
    width: 100%;
    height: 0;
    background: #E85382;
    
    padding-right: 12px;
    padding-left: 12px;
    
    padding-right: calc(12 / 375 * 100vw);
    padding-left: calc(12 / 375 * 100vw);
    
    overflow-y: scroll;
    transition: height .3s;
    box-sizing: border-box;
  }
  header.is-open {
    height: 100%;
  }
  header.is-open nav {
    height: calc(100% - 48px);
    height: calc(100% - 12.8vw);
  }
  header nav > ul {
    display: block;
  }
  
  header li {
    border-bottom: 1px solid #fff;
  }
  header nav > ul > li {
    margin-right: 0;
  }
  header nav > ul > li:nth-child(2),
  header nav > ul > li:nth-child(3),
  header nav > ul > li:nth-child(5),
  header nav > ul > li:last-child {
    margin-right: 0;
  }
  header nav {
    font-size: 14px;
    font-size: calc(14 / 375 * 100vw);
  }
  header .nav-parents > a {
    background: url("../img/icon_tri_down_white.svg") no-repeat right 11px center;
    background-size: 10px auto;
    background-size: 2.6vw auto;
    padding-right: 0;
  }
  header nav > ul > li:nth-child(5).nav-parents > a {
    padding-right: 0;
  }
  header nav > ul > li > a {
    height: 43px;
    padding-top: 15px;

    color: #fff;
    height: calc(43 / 375 * 100vw);
    padding-top: calc(15 / 375 * 100vw);
  }
  header nav > ul > li > a::after {
    display: none;
  }
  
  header .btn-attendant {
    margin-top: 17px;
  }
  header .btn-attendant a {
    position: relative;
    top: auto;
    right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
    width: 100%;
    height: 60px;
    height: calc(60 / 375 * 100vw);
    color: #E85382;
    line-height: 1;
    background: #fff;
  }
  header .btn-attendant a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 98.2%;
    height: 90%;
    box-sizing: border-box;
    border: 1px solid #E85382;
    margin: .95% 0 0 .8%;
  }
  header .btn-attendant a::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 3.4%;
    height: 0;
    background: url("../img/icon_arrow.svg") no-repeat;
    background-size: contain;
    padding-top: 2.6%;
    margin: 6.8% 0 0 92.4%;
  }

/* .nav-sub */
  header .nav-parents .nav-sub {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 100%;
    max-height: 0;
    padding: 0;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    transition: max-height .3s;
  }

  header .nav-parents.is-open .nav-sub {
    max-height: 450px;
    max-height: 120vw;
  }
  header .nav-sub p {
    display: none;
  }
  header .cate-top a {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    height: 43px;   
    font-size: 14px;
    padding-top: 15px;
    
    height: calc(43 / 375 * 100vw);
    padding-top: calc(15 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: normal;
    background: none;
    padding-right: 0;
    
    border-top: 1px solid #fff;    
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
  }
  header .nav-sub ul {
    display: block;
  }
  header .nav-sub li {
    width: 100%;
    margin-bottom: 0;
  }
  header .nav-sub li a {
    display: block;
    
    height: 43px;    
    font-size: 14px;
    padding-top: 15px;

    color: #fff;
    height: calc(43 / 375 * 100vw);
    padding-top: calc(15 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    
    letter-spacing: normal;
    background: none;
    padding-left: 0;
    box-sizing: border-box;
  }
  header .cate-top a,
  header .nav-sub li a {
    display: flex;
    align-items: center;
    padding-top: 0vw;
    padding-left: 7px;
    
    padding-left: calc(7 / 375 * 100vw);
  }
  header .cate-top a::before,
  header .nav-sub li a::before {
    content: '';
    display: block;
    width: 7px;
    height: 1px;
    background: #fff;
    margin-right: 7px;
    
    width: calc(7 / 375 * 100vw);
    margin-right: calc(7 / 375 * 100vw);
  }
  header .nav-sub li:last-child {
    border: none;
  }
  header .btn-close {
    padding-top: 30px;
    padding-bottom: 33px;
  }
  header .btn-close a {
    position: relative;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 218px;
    height: 40px;
    font-size: 12px;
    letter-spacing: .19em;
    color: #fff;    
    border: 1px solid #fff;
    border-radius: 6px;
    margin: 0 auto;
    box-sizing: border-box;
    
    width: calc(218 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
  }
  
  header .btn-close a::after {
    content: '';
    position: absolute;
    top: 13px;
    right: 15px;
    display: block;
    width: 12px;
    height: 12px;
    background: url("../img/icon_close.svg") no-repeat;
    background-size: contain;
    
    top: calc(13 / 375 * 100vw);
    right: calc(15 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
    height: calc(12 / 375 * 100vw);
  }

/* ---------------------------------------------------------
.ttl-col2
----------------------------------------------------------*/
  .ttl-col2 {
    margin-bottom: 79px;
    margin-bottom: calc(79 / 375 * 100vw);
  }
  .ttl-col2 .pic {
    width: 100%;
    margin-left: 0;
  }
  .ttl-col2 .txt {
    top: 158px;
    width: 302px;
    height: 80px;
    padding-top: 31px;
    top: calc(158 / 375 * 100vw);
    width: calc(302 / 375 * 100%);
    height: calc(80 / 375 * 100vw);
    padding-top: 20px;
    padding-top: calc(20 / 375 * 100vw);
    box-shadow: 5px -18px 28px 0px rgba(0,0,0,.04);
  }
  .ttl-col2 h1 span {
    color: #E85382;
    font-size: 21px;
    font-size: calc(21 / 375 * 100vw);
  }
  .ttl-col2 h1 span::before {
    width: 19px;
    height: 2px;
    margin-right: 8px;
    margin-top: 10px;
    width: calc(19 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    margin-right: calc(8 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
  .ttl-col2 .txt-sub {
    font-size: 12px;
    line-height: 1.75;
    padding-right: 30px;
    padding-left: 12px;
    font-size: calc(12 / 375 * 100vw);
    padding-right: calc(30 / 375 * 100vw);
    padding-left: calc(12 / 375 * 100vw);
  }
  .ttl-col2 .txt-gray {
    top: 254px;
    right: 14px;
    top: calc(254 / 375 * 100vw);
    right: calc(14 / 375 * 100vw);
  }
  .ttl-col2 .txt-gray img {
    height: 28px;
    height: calc(28 / 375 * 100vw);
  }

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

/* ---------------------------------------------------------
.article-common
----------------------------------------------------------*/
  .article-common {
    padding-top: 25px;
    padding-top: calc(25 / 375 * 100vw);
  }
  .article-common::before {
    height: 106px;
    height: calc(106 / 375 * 100vw);
  }
  .article-common .inner {
    padding: 27px 10px 28px;
    padding: calc(27 / 375 * 100vw) calc(10 / 375 * 100vw) calc(28 / 375 * 100vw);
    width: 350px;
    width: calc(350 / 375 * 100vw);
  }
  .h2-common {
    font-size: 15px;
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(25 / 15);
    letter-spacing: .06em;
  }
  .txt-common {
    margin-top: calc(26 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    line-height: calc(18 / 12);
  }
  .txt-common a[href$=".pdf"]:after {
    width: 21px;
    height: 18px;
    margin-left: 5px;
    width: calc(21 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
    background-size: 5.6vw auto;
    margin-left: calc(5 / 375 * 100vw);
  }

/* ---------------------------------------------------------
#tagline
----------------------------------------------------------*/
  #tagline {
    padding: calc(56 / 375 * 100vw) 0 calc(52 / 375 * 100vw);
  }
  #tagline img {
    width: calc(191 / 375 * 100vw);
    height: auto;
  }

/* ---------------------------------------------------------
#bn-list
----------------------------------------------------------*/
  #bn-list {
    padding-bottom: 43px;
    padding-bottom: calc(43 / 375 * 100vw);
  }
  #bn-list ul {
    width: 300px;
    width: calc(300 / 375 * 100vw);
  }
  #bn-list li {
    width: 47%;
    margin: 0 5px;
    margin-right: calc(5 / 375 * 100vw);
    margin-left: calc(5 / 375 * 100vw);
  }
  #bn-list .pic {
    border-radius: 8px;
    border-radius: calc(8 / 375 * 100vw);
    margin-bottom: 10px;
    margin-bottom: calc(10 / 375 * 100vw);
  }
  #bn-list p {
    font-size: 12px;
    font-size: calc(12 / 375 * 100vw);
    background-size: 5px auto;
    background-size: 1.3vw auto;
    padding-left: 10px;
    padding-left: 2.6vw;
  }
  .slick-prev,
  .slick-next,
  .slick-prev:hover,
  .slick-next:hover,
  .slick-prev:focus,
  .slick-next:focus {
    width: 30px;
    padding-top: 30px;

    width: calc(30 / 375 * 100%);
    padding-top: calc(30 / 375 * 100%);
  }
  .slick-prev,
  .slick-next {
    margin-top: 30px;
    left: -26px;

    margin-top: calc(30 / 375 * 100%);
    left: calc(-36 / 375 * 100%);
  }
  .slick-next {
    right: -26px;
  
    left: auto;
    right: calc(-36 / 375 * 100%);
  }


/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
  footer {
    padding: 0;
    margin-top: calc(43 / 375 * 100vw);
  }
  #pagetop a {
    bottom: 40px;
    right: 13px;
    width: 44px;
    bottom: calc(40 / 375 * 100vw);
    right: calc(13 / 375 * 100vw);
    width: calc(44 / 375 * 100vw);
    height: calc(44 / 375 * 100vw);
  }
  #pagetop.is-abs a {
    position: absolute;
    bottom: auto;
    top: -22px;
    right: 13px;
    top: calc(-22 / 375 * 100vw);
    right: calc(13 / 375 * 100vw);
  }
  
  footer nav {
    display: none;
  }

  .footer-nav {
    padding: 32px 0 30px;
    padding-top: calc(32 / 375 * 100vw);
    padding-bottom: calc(30 / 375 * 100vw);
  }
  .footer-nav ul a {
    font-size: 10px;
    font-size: calc(10 / 375 * 100vw);
    background: url("../img/icon_footer_tri_pink.svg") no-repeat left center;
    background-size: 4px auto;
    background-repeat: 1vw auto;
    padding-left: 11px;
    padding-left: calc(11 / 375 * 100vw);
  }
  .footer-nav ul li:first-child {
    margin-right: 19px;
    margin-right: calc(19 / 375 * 100vw);
  }
  .footer-nav .logo-txt {
    width: 296px;
    margin: 14px auto 0;

    width: calc(296 / 375 * 100vw);
    margin-top: calc(14 / 375 * 100vw);
  }
  footer .copy {
    height: 45px;
    font-size: 11px;
    padding: 0 12px;
    
    height: calc(45 / 375 * 100vw);
    font-size: calc(11 / 375 * 100vw);
    padding-left: calc(12 / 375 * 100vw);
    padding-right: calc(12 / 375 * 100vw);
  }
  footer .logo-jr {
    width: 35px;
    width: calc(35 / 375 * 100vw);
  }

}