@charset "UTF-8";

html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  font-family: "BIZ UDPGothic", 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, 'MS PGothic', Osaka, arial, serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
  font-style: normal;
}
.font-mincho {
  font-family: "BIZ UDMincho";
}
img {
  max-width: 100%;
  height: auto;
}
#container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (768px <= width) {
  .sp {
    display: none !important;
  }
}
@media (width <= 767px) {
  .pc {
    display: none !important;
  }
}

/**********************************************************
 * header
 **********************************************************/
header {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  height: 120px;
  background-color: #fff;
  border-bottom: solid 6px #BC1983;
  box-sizing: border-box;
  z-index: 10;
}
header h1 {
  flex: 1;
}
header h1 a {
  display: block;
  width: 18vw;
  max-width: 360px;
  margin-left: 45px;
}
header .nav_header {
  display: flex;
  align-items: center;
  gap: 3vw;
  margin-right: 25px;
}
header .nav_global ul {
  display: flex;
  gap: 2vw;
}
header .nav_global ul li {
  font-size: 1.8rem;
}
@media (1041px <= width <= 1200px) {
  header .nav_global ul li {
    font-size: 1.6rem;
  }
}
@media (901px <= width <= 1040px) {
  header .nav_global ul li {
    font-size: 1.4rem;
  }
}
@media (821px <= width <= 900px) {
  header .nav_global ul li {
    font-size: 1.3rem;
  }
}
@media (768px <= width <= 820px) {
  header .nav_global ul li {
    font-size: 1.2rem;
  }
}
header .nav_global ul li a {
  color: #333333;
  text-decoration: none;
  transition: all .3s;
}
header .nav_global ul li a:hover {
  color: #BC1983;
}
header .nav_sns ul {
  display: flex;
  gap: 4px;
}
header .nav_sns ul li {
  width: 36px;
}
@media (1041px <= width <= 1200px) {
  header .nav_sns ul li {
    width: 33px;
  }
}
@media (901px <= width <= 1040px) {
  header .nav_sns ul li {
    width: 30px;
  }
}
@media (821px <= width <= 900px) {
  header .nav_sns ul li {
    width: 27px;
  }
}
@media (768px <= width <= 900px) {
  header .nav_sns ul li {
    width: 24px;
  }
}
header .nav_sns ul li a {
  transition: all .3s;
}
header .nav_sns ul li a:hover {
  opacity: .7;
}

/**********************************************************
 * title_page
 **********************************************************/
#title_page {
  padding: 36px 50px;
  background: #F8EAF3;
}
#title_page h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .05em;
}

/**********************************************************
 * main
 **********************************************************/
main {
  margin-top: 120px;
}

.link_detail a,
.link_detail span {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  padding-right: 1.8em;
  transition: all .3s;
}
.link_detail a:hover {
  opacity: .7;
}
.link_detail.white a,
.link_detail.white span {
  color: #fff;
}
.link_detail.pink a,
.link_detail.pink span {
  color: #BC1983;
}
.link_detail a::after,
.link_detail span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.4em;
  height: 1.4em;
  background-size: 100%;
}
.link_detail.white a::after,
.link_detail.white span::after {
  background-image: url("../img/common/arrow_right_white.png");
}
.link_detail.pink a::after,
.link_detail.pink span::after {
  background-image: url("../img/common/arrow_right_pink.png");
}

#banner {
  background-color: #F4F4F4;
  padding: 20px 0;
}
#banner .list_banner {
  display: flex;
  gap: 8px;
}
#banner .list_banner img {
  width: auto;
  height: 60px;
  object-fit: contain;
}

/**********************************************************
 * footer
 **********************************************************/
footer {
  text-align: center;
  font-size: 1.4rem;
  color: #707070;
  margin-top: auto;
  padding: 40px 0;
}
footer .copyright {
  display: block;
  margin-top: 1.5em;
}
footer #ssl {
  width:100%;
  text-align: center;
}
footer #ssl table{
  margin:20px auto 5px;
}

/**********************************************************
 * page
 **********************************************************/
#page .inner {
  margin: 30px auto;
  line-height: 200%;
}
#page .inner h3 {
  color: #fff;
  margin: 20px auto 10px;
  padding: 5px 20px;
  background-color: #a42764;
  font-weight: bold;
}
#page .inner .txt2 {
  font-size: 1.4rem;
  margin: 5px 0;
  color: #a42764;
}