@charset "utf-8";

/* =======================================

	CommonElements

======================================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");

/* ------------------------------------
	html,body
------------------------------------ */
html * {
  font-family: "BIZ UDPGothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
  font-size: 10px;
  display: flex;
  -webkit-print-color-adjust: exact;
}
body {
  line-height: 2;
  color: #393a3e;
  text-align: left;
  background: #fff;
  font-size: 1.6rem;
  padding: 110px 0 0;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}
.is-fixed {
  height: 100%;
  overflow: hidden;
}
a:link,
a:visited,
a:active,
a:hover {
  text-decoration: none;
  color: #393A3E;
}
.sp {
  display: none !important;
}

/* 768px */
@media only screen and (max-width: 768px) {
  body {
    padding: 80px 0 0;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
/* ------------------------------------
	html,body end
------------------------------------ */

/* ------------------------------------
	global_header
------------------------------------ */
#global_nav {
    width: 100%;
    position: fixed;
    top: 110px;
    background: #fff;
    z-index: 1000;
}
#global_header {
  width: 100%;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 1000;
}
#global_header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
  font-size: 1.4rem;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
#global_header .info .name {
  margin: 0 70px 0 0;
}
#global_header .info .name img {
  max-height: 55px;
  width: 260px;
  vertical-align: middle;
}
#global_header .info .code {
  display: inline-block;
}
#global_header .sub_menu {
  display: flex;
}
#global_header .sub_menu > ul {
  display: flex;
}
#global_header .sub_menu > ul li {
  margin: 0 0 0 15px;
}
#global_header .sub_menu > ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #ba0042 10px center no-repeat;
  background-size: 25px;
  color: #fff;
  width: 170px;
  height: 60px;
  padding: 10px 10px 10px 44px;
  font-weight: bold;
  position: relative;
}
#global_header .sub_menu > ul li a:hover {
    background: #D6668E 10px center no-repeat;
    background-size: 25px;
}
#global_header .sub_menu > ul li a.sus {
  background-image: url(../img/ico_sus.png);
  background-position: 20px center;
  padding: 10px 10px 10px 50px;
}
#global_header .sub_menu > ul li a.ir {
  background-image: url(../img/ico_ir.png);
  background-position: 50px center;
  padding: 10px 10px 10px 50px;
}

#global_header .sub_menu > ul li a > span {
  display: block;
  text-align: center;
  width: 100%;
}

/*　hamburger　*/
#global_header .hamburger {
  display: block;
  position: relative;
  z-index: 3;
  width: 60px;
  height: 60px;
  margin: 0 0 0 3px;
  cursor: pointer;
  text-align: center;
  background-color: #ba0042;
}
#global_header .hamburger span {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  left: 19px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#global_header .hamburger span:nth-child(1) {
  top: 20px;
}
#global_header .hamburger span:nth-child(2) {
  top: 30px;
}
#global_header .hamburger span:nth-child(3) {
  top: 40px;
}

/* hamburger_open */
#global_header .hamburger.active span:nth-child(1) {
  top: 50%;
  left: 18px;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(-46deg);
  -moz-transform: translateY(-50%) rotate(-46deg);
  transform: translateY(-50%) rotate(-46deg);
}
#global_header .hamburger.active span:nth-child(2),
#global_header .hamburger.active span:nth-child(3) {
  top: 50%;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(46deg);
  -moz-transform: translateY(-50%) rotate(46deg);
  transform: translateY(-50%) rotate(46deg);
}
.global_menu_sp {
  position: fixed;
  z-index: 2;
  top: 80px;
  left: 100vw;
  color: #222;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.global_menu_sp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 74%;
  overflow-y: scroll;
}
.global_menu_sp ul li {
  list-style-type: none;
  margin: 0 auto;
  width: 90%;
  color: #333;
  border-bottom: solid 1px #8c9ba5;
  transition: 0.4s all;
  font-size: 1.6rem;
}
.global_menu_sp ul li:first-child {
  padding: 30px 0;
  font-size: 2rem;
  color: #ba0042;
  font-weight: bold;
}
.global_menu_sp ul li a {
  display: block;
  color: #222;
  padding: 22px 0;
  text-align: left;
  text-decoration: none;
  font-weight: bold;
}

/* このクラスを、jQueryで付与・削除する */
.global_menu_sp.active {
  opacity: 100;
}

/* 768px */
@media only screen and (max-width: 768px) {
  #global_header .wrap {
    width: 94%;
    align-items: unset;
    font-size: 1.2rem;
    height: 80px;
  }
  #global_header .sub_menu{
    align-items: center;
  }
  #global_header .info .name {
    display: block;
    margin: 10px 0;
  }
  #global_header .info .code {
    display: block;
    line-height: 1em;
  }
  #global_header .info {
    width: 45%;
  }
  #global_header .info .name img {
    max-height: 30px;
    width: 130px;
    margin: 5px 0;
  }
  #global_header .sub_menu > ul li {
    margin: 0 0 0 4px;
  }
  #global_header .sub_menu > ul li a {
    width: 60px;
    flex-direction: column;
    padding: 40px 0 0 !important;
    font-size: 1rem;
    background-position: center 10px !important;
  }
  #global_header .sub_menu > ul li a.sus {
    background-position: center 6px !important;
  }
  #global_header .sub_menu > ul li a > span {
    position: absolute;
    bottom: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    line-height: 1.2em;
    padding: 0 0 3px 0;
  }
  #global_header .global_menu_sp.active {
    left: 0;
  }
  .hamburger.sp {
    display: none !important;
  }
}
/* ------------------------------------
	global_header end
------------------------------------ */

/* ------------------------------------
	global_nav
------------------------------------ */
body.gnav {
  padding-top: 160px;
}
#global_nav {
  background: #fff;
  height: 50px;
  border-top: 1px solid #707070;
  text-align: left;
}
body.gnav #global_nav {
  border-top: none;
}
#global_nav ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  letter-spacing: -1em;
  white-space: nowrap;
  width: 90%;
  max-width: 1280px;
  height: 14px;
  line-height: 14px;
  margin: 0 auto;
}
#global_nav ul::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    #fff 82%,
    #fff 100%
  );
  pointer-events: none;
}
#global_nav ul li {
  letter-spacing: 0;
  font-size: 1.4rem;

  border-right: 1px solid #BA0042;
  padding: 0px 13px;
}
#global_nav ul li a::after {
  content: "";
  position: absolute;
  border: solid #fff 3px;
}
#global_nav ul li a:hover::after {
  border: solid #ba0042 3px;
  transition: border-color 0.5s ease-in-out;
  border-radius: 10px;
  left: 45%;
  bottom: -20px;
}
#global_nav ul li:first-child {
  border-left: 1px solid #BA0042;
  padding: 0px 13px;
}
#global_nav a {
  color: #ba0042;
  font-weight: bold;
  position: relative;
}
#global_nav a.active {
  color: #ba0042;
}
#global_nav a.active:after {
  content: "";
  position: absolute;
  left: 45%;
  bottom: -20px;
  border: solid #ba0042 3px;
  border-radius: 10px;
  transition: background-color 0.2s ease-out;
}

/* 768px */
@media only screen and (max-width: 768px) {
  body.gnav {
    padding-top: 80px;
  }
  .gnav .hamburger.sp {
    display: block !important;
  }
  #global_nav {
    display: none;
  }
}
/* ------------------------------------
	global_nav end
------------------------------------ */

/* ------------------------------------
	main
------------------------------------ */
main {
  flex: 1 0 auto;
  min-height: 1px;
  width: 100%;
}
main section {
  width: 100%;
  margin: 0 auto 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.7;
  margin: 0 0 38px;
  font-size: 1.6rem;
}
h1 {
  font-size: 2.6rem;
}
h2 {
  font-size: 2.4rem;
  padding-bottom: 20px;
  margin: 0 0 20px;
  position: relative; /* 擬似要素の配置に必要 */
  border-bottom: 3px solid #EAAFC5;
}
h2::before {
  content: "";
  position: absolute;
  bottom: -3px; /* borderの幅分だけずらす */
  left: 0;
  width: 43px;
  height: 3px; 
  background-color: #BA0042; /* 2色目のborderの色 */
}
h3 {
  padding: 15px 0 0;
  margin: 0 0 24px;
}

main p {
  margin: 0 0 10px;
}
main p:last-child {
  margin: 0;
}
main img {
  width: 100%;
  max-width: 100%;
}
main figure {
  margin: 0 auto 30px;
}

/*　contents　*/
.contents_wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
/* ※list */
.ul_attn {
  margin: 0 0 30px;
}
.ul_attn li {
  position: relative;
  padding-left: 1.5em;
}
.ul_attn li span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

a[href*=".pdf"]::after {
  content: "";
  display: inline;
  width: 1.125em;
  height: 1.125em;
  background: transparent url("../img/ico_pdf.png") center center no-repeat;
  background-size: 100%;
  margin-left: 0.2em;
  margin-bottom: -2px;
}
/* 768px */
@media only screen and (max-width: 768px) {
  main section {
    margin: 0 auto 50px;
  }
  h2 {
    font-size: 1.8rem;
    margin: 0 10px 20px 10px;
    padding: 0 0 10px 0;
  }
  h3 {
    padding: 10px 0 0;
  }
}
/* ------------------------------------
	main end
------------------------------------ */

/* ------------------------------------
	cont_header
------------------------------------ */
.cont_header {
  background: #e2e2e2;
  margin: 0 0 50px;
}
.cont_header .wrap {
  width:90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 0;
}
.cont_header h1 {
   margin: 0;
  text-align: center;
}

/* cont_header visual */
.cont_header.visual {
  height: 290px;
  display: flex;
  align-items: center;
  margin: 0 0 90px;
  position: relative;
  background: transparent;
}
.cont_header.visual .wrap {
  max-width: 1140px;
}
.cont_header.visual h1 {
  text-align: left;
  font-size: 5rem;
  text-shadow:
  0 0 2px #fff,
  0 0 1em #fff,
  0 0 0.2em #fff;
}
.cont_header.visual p {
  width: 100%;
  font-size: 2.0rem;
  line-height: 3.2rem;
  text-shadow:
  0 0 2px #fff,
  0 0 1em #fff,
  0 0 0.2em #fff;
}

/* cont_header visual background-image*/
.cont_header.visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e2e2e2 url(../img/mv_pc.jpg) center center no-repeat;
  background-size: cover;
  z-index: -1;
}

/* 768px */
@media only screen and (max-width: 768px) {
  .sp_view .cont_header .wrap {
    margin: 0;
    width:57%;
  }
  .cont_header.visual::after {
    background: #e2e2e2 url(../img/mv_sp.jpg) center center no-repeat;
    background-size: cover;
  }

  .cont_header,
  .cont_header.visual {
    margin: 0 0 30px;
  }
  .cont_header.visual h1 {
    font-size: 3.8rem;
  }
  .cont_header.visual p {
    width: 100%;
    font-size: 1.6rem;
    margin: 0.2em 0 0;
  }
}
/* ------------------------------------
	cont_header end
------------------------------------ */

/* ------------------------------------
	footer
------------------------------------ */
#global_footer {
  margin-top: auto;
  text-align: center;
  line-height: 1.1;
}

/* nav */
#cont_menu {
  width: 94%;
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: left;
}
#cont_menu .issue {
  font-weight: bold;
  line-height: 1.6rem;
  padding-bottom: 18px;
  margin: 0 0 18px;
  position: relative;
  border-bottom: 3px solid #cfcfd0;
}
#cont_menu .issue::before {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 33px;
  height: 3px;
  background: #393a3e; /*左：ピンク*/
}
#cont_menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#cont_menu ul li {
  width: 16%;
  margin: 0;
}
#cont_menu ul li:last-child {
    text-align: right;
}
#cont_menu ul li a {
  display: inline-block;
  padding: 0;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: #707070;
  text-underline-offset: 6px;

}
#cont_menu ul li a:hover {
  text-decoration-color: transparent;
  transition: text-decoration-color 0.4s;
}
#cont_menu ul .active2 {
    display: none;
}
#global_footer nav.three_column ul li {
  width: 31%;
  margin: 0 3% 0 0;
}
#global_footer nav.three_column ul li:nth-child(3n) {
  margin: 0;
}

/* home_area */
#global_footer .home_area {
  padding: 0 0 30px;
}
#global_footer .home_are a {
  display: inline-block;
}
#global_footer .home_area img {
  max-height: 50px;
  width: auto;
  max-width: 100%;
}

/* ft_menu */
#global_footer .ft_menu {
  padding: 30px 0px;
  width: 100%;
  height: 120px;
  background: #ba0042;
}
#global_footer .ft_menu ul {
  margin-bottom: 38px;
}
#global_footer .ft_menu ul + p {
  font-size: 12px;
  color: #fff;
}
#global_footer .ft_menu li {
  font-weight: bold;
  display: inline-block;
  margin-right: 80px;
}
#global_footer .ft_menu li:last-child {
  margin-right: 0;
}
#global_footer .ft_menu li a {
  display: inline-block;
  color: #fff;
  padding: 0;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 6px;
}
#global_footer .ft_menu li a:hover {
  text-decoration-color: transparent;
  transition: text-decoration-color 0.4s;
}

/* 768px */
@media only screen and (max-width: 768px) {
  #global_footer nav.three_column ul li {
    width: 100%;
  }
  #cont_menu {
    width: 100%;
    margin: 0 0 25px 0;
    padding: 25px 0 0 20px;
    background: #393A3E26;
  }
  #cont_menu .issue {
    margin: 0 20px 20px 0;
    text-align: left;
    border-bottom: 3px solid #393A3E26;
  }
  #cont_menu .issue::before {
    left:0;
  }
  #cont_menu ul {
    display: block;
    position: relative;
  }
  #cont_menu ul li {
    width: 100%;
  }
  #cont_menu ul li:last-child {
    border-bottom: none;
    text-align: unset;
  }
  #cont_menu ul li a {
    width: 100%;
    padding: 1.3em 0 1.3em 1.5em;
  }
  #cont_menu ul li a:first-child {
    padding: 0 0 30px 0;
  }
  #cont_menu ul li a:last-child {
    padding: 0 0 25px 0;
  }
  #cont_menu ul li a::after {
    display: none;
  }
  #global_footer .ft_menu {
    padding: 21px 3%;
  }
  #global_footer .ft_menu li {
    margin-right: 20px;
  }
}
/* ------------------------------------
	global_footer end
------------------------------------ */

/* ------------------------------------
	PAGE TOP
------------------------------------ */
#page_top {
  position: fixed;
  bottom: 0;
  right: 40px;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #fff;
  background:#BA0042;
  color: #fff;
  padding: 0px 0 5px 0;
  z-index: 999;
}
#page_top:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 0 solid #fff;
  border-top-width: 2px;
  border-left-width: 2px;
  top: 25%;
  transform: rotate(45deg);
}
#page_top:link,
#page_top:hover,
#page_top:active,
#page_top:visited {
  text-decoration: none;
}

/* 768px */
@media only screen and (max-width: 768px) {
  #page_top {
    right: 0;
  }
}
/* ------------------------------------
	PAGE TOP end
------------------------------------ */

/* all */
.cf:after {
  content: "";
  clear: both;
  display: block;
}

/* ------------------------------------
	print
------------------------------------ */
@page {
  size: A4 portrait;
  margin: 12.7mm 9.7mm;
}
@media print {
  html,
  body {
    display: block;
  }
  body,
  main {
    width: 1100px;
    margin-bottom:30px;
  }
  body,
  body.gnav {
    padding-top: 0;
  }
  #global_header {
    position: static;
  }
  #global_nav {
    position: static;
  }
  .cont_header,
  .cont_header.visual {
    margin: 0 0 30px;
    text-align: center;
  }
  .cont_header.visual,
  .cont_header.visual.large::after {
    background: none;
  }
  .cont_header.visual h1 {
    font-size: 2.8rem;
    text-align: center;
  }
  #pg_index .cont_header.visual h1 {
    font-size: 4rem;
    text-align: center;
  }
  .cont_header.visual h1 small {
    font-size: 1.6rem;
  }
  .cont_header.visual p {
    width: 100%;
    font-size: 1.6rem;
    margin: 0.2em 0 0;
  }
  .text_box01, .text_box02 {
    margin: 0 0 50px 0;
  }
  .cont_header.visual.large {
    height: 450px;
    background: rgba(133, 197, 238, 0.1);
  }
  .cont_header.visual.grande {
    height: 500px;
    background: rgba(133, 197, 238, 0.1);
  }
  .cont_header.visual.large .wrap,
  .cont_header.visual.grande .wrap {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px 0 25px;
  }
  .cont_header.visual.large .wrap::after,
  .cont_header.visual.grande .wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e2e2e2 url(../img/message/mv_pc.jpg) right top 10% / cover
      no-repeat;
    z-index: -1;
    margin-left: 0;
  }
  .cont_header.visual.large h1,
  .cont_header.visual.grande h1 {
    text-align: left;
    margin: 0 0 35px;
  }
  .cont_header.visual.large p,
  .cont_header.visual.grande p {
    padding: 20px 0 0;
    text-align: left;
  }
  #page_top {
    display: none;
    opacity: 0;
  }
}
/* ------------------------------------
	print end
------------------------------------ */
