@charset "UTF-8";
@font-face {
  font-family: "NotoSansJP-Black";
  src: url(/fonts/NotoSansJP/NotoSansJP-Black.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url(/fonts/NotoSansJP/NotoSansJP-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url(/fonts/NotoSansJP/NotoSansJP-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "ZenMaruGothic-Black";
  src: url(/fonts/ZenMaruGothic/ZenMaruGothic-Black.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "ZenMaruGothic-Bold";
  src: url(/fonts/ZenMaruGothic/ZenMaruGothic-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "ZenMaruGothic-Regular";
  src: url(/fonts/ZenMaruGothic/ZenMaruGothic-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoColorEmoji-Regular";
  src: url(/fonts/NotoColorEmoji/NotoColorEmoji-Regular.woff) format("woff");
  font-display: swap;
}
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .sp-link {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 共通アニメーション
------------------------------ */
.animate {
  opacity: 0;
}

.left-in {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}

.left-in.animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  opacity: 1;
}

.right-in {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}

.right-in.animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  opacity: 1;
}

.fade-in {
  -webkit-animation: fade-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
          animation: fade-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
          animation: fade-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
          animation: fade-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-left {
  0% {
    transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}
@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

section .contents {
  max-width: 1364px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 767px) {
  section .contents {
    padding: 0 24px;
  }
}

section .contents02 {
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 767px) {
  section .contents02 {
    padding: 0 24px;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  font-size: 16px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  font-family: "NotoSansJP-Regular", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* タイトル
-----------------------------------*/
.title-area {
  display: flex;
  align-items: center;
  height: 320px;
  padding-top: 90px;
  background: url(/images/common/heading_bg01.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .title-area {
    height: 175px;
    padding-top: 64px;
    background: url(/images/common/heading_bg01_sp.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.title-area .contents {
  width: 100%;
}
.title-area .heading-title {
  margin-bottom: 0;
  font-family: "ZenMaruGothic-Black", sans-serif;
  font-size: 40px;
  color: #FFF;
  line-height: 1;
  -webkit-text-stroke: 1px #000;
  text-align: center;
}
@media (max-width: 767px) {
  .title-area .heading-title {
    font-size: 28px;
  }
}

.heading01 {
  margin: 96px 0 40px;
  font-size: 32px;
  font-family: "ZenMaruGothic-Black", sans-serif;
  color: #DB4B83;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.1em;
  text-align: center;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 72px 0 40px;
    font-size: 24px;
  }
}

.heading02 {
  margin: 48px 0 32px;
  font-size: 24px;
  text-align: center;
  font-family: "ZenMaruGothic-Black", sans-serif;
  letter-spacing: -0.1em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 32px 0 24px;
    font-size: 20px;
  }
}

.heading03 {
  margin: 48px 0 32px;
  font-size: 24px;
  font-family: "ZenMaruGothic-Black", sans-serif;
  letter-spacing: -0.1em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 32px 0 24px;
    font-size: 20px;
  }
}

.heading04 {
  margin: 32px 0 16px;
  font-size: 20px;
  font-family: "ZenMaruGothic-Black", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading04 {
    margin: 24px 0 16px;
    font-size: 18px;
  }
}

/* 背景
-----------------------------------*/
.bg01 {
  background: #E7F2EF url(/images/common/com_bg01.png);
  background-repeat: repeat;
  background-position: top center;
  background-size: 100% auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .bg01 {
    background-size: 200% auto;
  }
}

.bg02 {
  background: #F7EBF0 url(/images/common/com_bg01.png);
  background-repeat: repeat;
  background-position: top center;
  background-size: 100% auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .bg02 {
    background-size: 200% auto;
  }
}

.bg03 {
  background-image: repeating-linear-gradient(90deg, #EEE, #EEE 1px, transparent 1px, transparent 32px), repeating-linear-gradient(0deg, #EEE, #EEE 1px, #fff 1px, #fff 32px);
  overflow: hidden;
}

/* 飾り付き画像
-----------------------------------*/
.com-img01 {
  position: relative;
  margin-bottom: 24px;
}
.com-img01 img {
  position: relative;
  border-radius: 16px;
  z-index: 1;
  overflow: hidden;
}
.com-img01::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 8px;
  left: 8px;
  border-radius: 16px;
  background: rgb(241, 241, 161);
  background: linear-gradient(90deg, rgb(241, 241, 161) 0%, rgb(241, 203, 224) 50%, rgb(173, 223, 226) 100%);
  mix-blend-mode: multiply;
}

.com-img02 {
  position: relative;
  margin-bottom: 24px;
}
.com-img02 img {
  position: relative;
  border-radius: 16px;
  z-index: 1;
  overflow: hidden;
}
.com-img02::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 8px;
  left: 8px;
  border-radius: 16px;
  background: rgb(208, 204, 230);
  background: linear-gradient(90deg, rgb(208, 204, 230) 0%, rgb(155, 214, 200) 50%, rgb(194, 225, 186) 100%);
  mix-blend-mode: multiply;
}

.com-img03 {
  position: relative;
  margin-bottom: 24px;
}
.com-img03 img {
  position: relative;
  border-radius: 16px;
  z-index: 1;
  overflow: hidden;
}
.com-img03::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 8px;
  left: 8px;
  border-radius: 16px;
  background-color: #F7FF8F;
  mix-blend-mode: multiply;
}

/* 画像・テキスト横並び
-----------------------------------*/
.com-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1920px;
  margin: 64px auto;
}
@media (max-width: 767px) {
  .com-wrap {
    display: block;
    margin: 40px auto 64px;
  }
}
.com-wrap figure {
  width: 52%;
}
@media (max-width: 767px) {
  .com-wrap figure {
    width: calc(100% - 32px);
  }
}
.com-wrap figure.com-img01 img, .com-wrap figure.com-img02 img {
  border-radius: 32px;
}
@media (max-width: 767px) {
  .com-wrap figure.com-img01 img, .com-wrap figure.com-img02 img {
    border-radius: 16px;
  }
}
.com-wrap figure.com-img01::before, .com-wrap figure.com-img02::before {
  width: calc(100% + 32px);
  top: 32px;
  border-radius: 32px;
}
@media (max-width: 767px) {
  .com-wrap figure.com-img01::before, .com-wrap figure.com-img02::before {
    width: calc(100% + 16px);
    top: 16px;
    border-radius: 16px;
  }
}
.com-wrap .txt {
  width: 48%;
}
@media (max-width: 767px) {
  .com-wrap .txt {
    width: 100%;
  }
}
.com-wrap .txt .inner {
  max-width: 660px;
  padding: 0 80px;
}
@media (max-width: 767px) {
  .com-wrap .txt .inner {
    padding: 0 24px;
  }
}
.com-wrap.text-right figure.com-img01 img, .com-wrap.text-right figure.com-img02 img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.com-wrap.text-right figure.com-img01::before, .com-wrap.text-right figure.com-img02::before {
  left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.com-wrap.text-left {
  flex-direction: row-reverse;
}
.com-wrap.text-left figure.com-img01 img, .com-wrap.text-left figure.com-img02 img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.com-wrap.text-left figure.com-img01::before, .com-wrap.text-left figure.com-img02::before {
  left: -32px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 767px) {
  .com-wrap.text-left figure.com-img01::before, .com-wrap.text-left figure.com-img02::before {
    left: -16px;
  }
}
@media (max-width: 767px) {
  .com-wrap.text-left figure.com-img01, .com-wrap.text-left figure.com-img02 {
    margin: 0 0 24px auto;
  }
}
.com-wrap.text-left .txt .inner {
  margin: 0 0 0 auto;
}

/* 枠付き
-----------------------------------*/
.com-box01 {
  margin: 48px 0;
  padding: 4px;
  border-radius: 16px;
  background: rgb(208, 204, 230);
  background: linear-gradient(90deg, rgb(208, 204, 230) 0%, rgb(155, 214, 200) 50%, rgb(194, 225, 186) 100%);
}
@media (max-width: 767px) {
  .com-box01 {
    margin: 24px 0;
    padding: 2px;
    border-radius: 8px;
  }
}
.com-box01 .inner {
  padding: 48px;
  border-radius: 16px;
  background-color: #FFF;
  overflow: hidden;
}
@media (max-width: 767px) {
  .com-box01 .inner {
    padding: 24px 16px;
    border-radius: 8px;
  }
}

.com-box02 {
  margin: 48px 0;
  border-radius: 16px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
}
@media (max-width: 767px) {
  .com-box02 {
    margin: 24px 0;
    border-radius: 8px;
  }
}
.com-box02 .inner {
  padding: 48px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .com-box02 .inner {
    padding: 24px 16px;
    border-radius: 8px;
  }
}

.com-dl-box01 {
  border-radius: 16px;
  border: 3px solid #76CECE;
  border-bottom-width: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .com-dl-box01 {
    border-radius: 8px;
    border-width: 2px;
    border-bottom-width: 3px;
  }
}
.com-dl-box01 > dt {
  padding: 8px;
  background-color: #76CECE;
  font-family: "ZenMaruGothic-Bold", sans-serif;
  font-size: 24px;
  text-align: center;
  color: #FFF;
  letter-spacing: -0.1em;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .com-dl-box01 > dt {
    font-size: 20px;
  }
}
.com-dl-box01 > dd {
  padding: 16px;
  background-color: #FFF;
}

.com-dl-box02 {
  border-radius: 16px;
  border: 3px solid #F280A6;
  border-bottom-width: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .com-dl-box02 {
    border-radius: 8px;
    border-width: 2px;
    border-bottom-width: 3px;
  }
}
.com-dl-box02 > dt {
  padding: 8px;
  background-color: #F280A6;
  font-family: "ZenMaruGothic-Bold", sans-serif;
  font-size: 24px;
  text-align: center;
  color: #FFF;
  letter-spacing: -0.1em;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .com-dl-box02 > dt {
    font-size: 20px;
  }
}
.com-dl-box02 > dd {
  padding: 16px;
  background-color: #FFF;
}

/* リスト
-----------------------------------*/
.list-col02 {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .list-col02 {
    display: block;
  }
}
.list-col02 > li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .list-col02 > li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.list-col02 > li:nth-child(2n) {
  margin-right: 0;
}

.list-col03 {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .list-col03 {
    display: block;
  }
}
.list-col03 > li {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .list-col03 > li {
    width: 80%;
    margin: 0 auto 24px;
  }
}
.list-col03 > li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .list-col03 > li:nth-child(3n) {
    margin-right: auto;
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
}

/* ページナビ
-----------------------------------*/
.list-nv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.list-nv li {
  min-width: 200px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .list-nv li {
    width: 48%;
    min-width: 120px;
  }
}
.list-nv li a {
  position: relative;
  display: block;
  text-decoration: none;
}
.list-nv li a span {
  position: relative;
  display: block;
  padding: 24px 15%;
  border-radius: 16px;
  background: url(/images/common/pagenv_bg01.png) repeat;
  color: #333;
  font-family: "ZenMaruGothic-Bold", sans-serif;
  text-align: center;
  font-size: 14px;
  z-index: 1;
}
@media (max-width: 767px) {
  .list-nv li a span {
    padding: 12px 24px 12px 4px;
    border-radius: 8px;
    font-size: 13px;
  }
}
.list-nv li a span::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  right: 5%;
  top: 50%;
  margin-top: -15px;
  background: url(/images/common/pagenv_ic01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .list-nv li a span::after {
    width: 16px;
    height: 16px;
    right: 3%;
    margin-top: -8px;
  }
}
.list-nv li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 8px;
  left: 8px;
  border-radius: 16px;
  background-color: rgba(53, 32, 45, 0.3);
  z-index: 0;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .list-nv li a::after {
    top: 4px;
    left: 4px;
    border-radius: 8px;
  }
}
.list-nv li a:hover::after {
  top: 1px;
  left: 1px;
}

/* リンクボタン
-----------------------------------*/
.list-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .list-btn {
    display: block;
  }
}
.list-btn li {
  margin: 0 8px;
}
@media (max-width: 767px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}

.com-bt {
  position: relative;
  display: inline-block;
  min-width: 280px;
  margin: 0 8px 32px;
  border: none;
  border-radius: 32px;
  font-family: "ZenMaruGothic-Bold", sans-serif;
  color: #333;
  text-decoration: none;
  letter-spacing: -0.1em;
  text-align: center;
  vertical-align: top;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.2);
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .com-bt {
    min-width: 200px;
    margin: 0 4px 16px;
  }
}
.com-bt > span {
  display: block;
  position: relative;
  width: 100%;
  padding: 0 40px;
  background: rgb(255, 242, 154);
  background: linear-gradient(90deg, rgba(255, 242, 154, 0.9) 0%, rgba(255, 186, 196, 0.9) 50%, rgba(182, 224, 229, 0.9) 100%);
  border-radius: 32px;
  line-height: 64px;
  transform: translate(8px, 8px);
}
@media (max-width: 767px) {
  .com-bt > span {
    padding: 0 32px;
    line-height: 48px;
    transform: translate(4px, 4px);
  }
}
.com-bt::before {
  content: "";
  display: flex;
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid #333;
  background-color: #FFF;
  top: 0;
  left: 0;
  border-radius: 32px;
  z-index: 0;
  transition: 0.3s all;
}
.com-bt:hover {
  box-shadow: none;
}
.com-bt:hover::before {
  top: 9px;
  left: 9px;
}
@media (max-width: 767px) {
  .com-bt:hover::before {
    top: 5px;
    left: 5px;
  }
}
.com-bt.next {
  position: relative;
}
.com-bt.next span::after {
  content: "";
  position: absolute;
  display: block;
  right: 32px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .com-bt.next span::after {
    right: 16px;
  }
}
.com-bt.prev {
  position: relative;
}
.com-bt.prev span::before {
  content: "";
  position: absolute;
  display: block;
  left: 32px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(135deg);
}
@media (max-width: 767px) {
  .com-bt.prev span::before {
    left: 16px;
  }
}

.com-bt input[type=submit],
.com-bt input[type=button] {
  display: block;
  position: relative;
  width: 100%;
  background-color: transparent;
  font-family: "ZenMaruGothic-Bold", sans-serif;
  line-height: 64px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .com-bt input[type=submit],
.com-bt input[type=button] {
    font-size: 14px;
    line-height: 48px;
  }
}

button.com-bt {
  display: inline-block;
  padding: 0;
  background-color: transparent;
  font-family: "ZenMaruGothic-Bold", sans-serif;
  cursor: pointer;
  vertical-align: top;
}
@media (max-width: 767px) {
  button.com-bt {
    font-size: 14px;
  }
}

.dl-btn {
  margin-top: 56px;
  text-align: center;
}
@media (max-width: 767px) {
  .dl-btn {
    margin-top: 24px;
  }
}
.dl-btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 512px;
  padding: 20px 32px;
  margin: 0 auto;
  border: 2px solid #76CECE;
  border-radius: 8px;
  background-color: #FFF;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.2);
  font-family: "ZenMaruGothic-Bold", sans-serif;
  color: #76CECE;
  font-size: 24px;
  text-decoration: none;
  line-height: 1;
}
@media (max-width: 767px) {
  .dl-btn .btn {
    padding: 16px 8px;
    font-size: 18px;
  }
}
.dl-btn .btn:hover {
  box-shadow: none;
}
.dl-btn .btn::after {
  content: "";
  display: block;
  width: 52px;
  height: 44px;
  margin-left: 8px;
  background: url(/images/common/dl_ic01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .dl-btn .btn::after {
    width: 24px;
    height: 20px;
  }
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  position: relative;
  padding-left: 1em;
}

.list-dot li:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0.8em;
  left: 0;
  margin-top: -4px;
  border-radius: 50%;
  background-color: #DB4B83;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 16px;
  border-bottom: solid 1px #8C8C8C;
  font-family: "ZenMaruGothic-Bold", sans-serif;
  color: #636466;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 4px;
  }
}
.table td {
  padding: 16px;
  border-bottom: solid 1px #8C8C8C;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 4px;
  }
}

.table02 {
  width: 100%;
  margin-bottom: 1em;
  border: 2px solid #F280A6;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .table02 {
    border-radius: 8px;
  }
}
.table02 th {
  padding: 8px 16px;
  background-color: #F9EDF2;
  border-bottom: 2px solid #F280A6;
  font-family: "ZenMaruGothic-Bold", sans-serif;
}
.table02 td {
  padding: 8px 32px;
  background-color: #FFF;
  border-left: 2px solid #F280A6;
  border-bottom: 2px solid #F280A6;
}

.table03 {
  width: 100%;
  margin-bottom: 1em;
  border: 2px solid #76CECE;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .table03 {
    border-radius: 8px;
  }
}
.table03 th {
  padding: 8px 16px;
  background-color: #EBF7F7;
  border-bottom: 2px solid #76CECE;
  font-family: "ZenMaruGothic-Bold", sans-serif;
}
.table03 td {
  padding: 8px 32px;
  background-color: #FFF;
  border-left: 2px solid #76CECE;
  border-bottom: 2px solid #76CECE;
}

/* ニュース一覧
-----------------------------------*/
.list-news {
  margin-bottom: 32px !important;
}
.list-news li {
  border-bottom: 1px solid #8C8C8C;
}
.list-news li a {
  display: block;
  padding: 16px 0;
  color: #333;
  text-decoration: none;
}
.list-news li a .date {
  margin-bottom: 8px;
  line-height: 1;
}
.list-news li a .title {
  word-wrap: break-word;
  line-height: 1.3;
}
.list-news li a:hover {
  color: #DB4B83;
  text-decoration: none;
}
/* WPページャー
-----------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  padding: 48px 0 0;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    padding: 32px 0 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  display: inline-block;
  width: 50px;
  margin: 0 2px;
  border-radius: 50%;
  border: 1px solid transparent;
  color: #333;
  text-decoration: none;
  transition: 0.5s all;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  text-decoration: none;
  border-color: #8C8C8C;
}
.wp-pagenavi .previouspostslink {
  font-size: 0;
}
.wp-pagenavi .previouspostslink::before {
  content: "";
  display: inline-block;
  border-color: #8C8C8C;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 10px;
  vertical-align: middle;
  width: 10px;
  transform: rotate(135deg);
}
.wp-pagenavi .nextpostslink {
  font-size: 0;
}
.wp-pagenavi .nextpostslink::before {
  content: "";
  display: inline-block;
  border-color: #8C8C8C;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 10px;
  vertical-align: middle;
  width: 10px;
  transform: rotate(-45deg);
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .entry-header .entry-title {
  margin: 0 0 32px;
  font-size: 32px;
  line-height: 1.3;
  font-family: "ZenMaruGothic-Bold", sans-serif;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-title {
    margin: 28px 0;
    font-size: 24px;
  }
}
.entry-detail .entry-header .entry-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 2px solid #F280A6;
}
.entry-detail .entry-header .entry-meta .date {
  font-family: "ZenMaruGothic-Bold", sans-serif;
  font-size: 18px;
  line-height: 1;
}
.entry-detail .entry-content {
  overflow: hidden;
  word-break: break-all;
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content {
  /* 投稿画像 */
}
.entry-detail .entry-content p {
  margin: 1em 0;
}
.entry-detail .entry-content h1 {
  margin: 24px 0 16px;
  font-size: 28px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h1 {
    margin: 16px 0 12px;
    font-size: 24px;
  }
}
.entry-detail .entry-content h2 {
  margin: 24px 0 16px;
  font-size: 26px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h2 {
    margin: 16px 0 12px;
    font-size: 22px;
  }
}
.entry-detail .entry-content h3 {
  margin: 16px 0;
  font-size: 24px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h3 {
    margin: 12px 0;
    font-size: 20px;
  }
}
.entry-detail .entry-content h4 {
  margin: 16px 0;
  font-size: 22px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h4 {
    margin: 12px 0;
    font-size: 18px;
  }
}
.entry-detail .entry-content h5 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h5 {
    margin: 12px 0;
    font-size: 16px;
  }
}
.entry-detail .entry-content h6 {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h6 {
    margin: 12px 0;
    font-size: 14px;
  }
}
.entry-detail .entry-content ul {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content ul li {
  list-style: disc;
}
.entry-detail .entry-content ol {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content blockquote {
  font-style: italic;
  padding: 0 32px;
}
.entry-detail .entry-content blockquote cite,
.entry-detail .entry-content blockquote em,
.entry-detail .entry-content blockquote i {
  font-style: normal;
}
.entry-detail .entry-content table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.entry-detail .entry-content table th {
  padding: 16px;
  border: solid 1px #333;
  font-family: "NotoSansJP-Bold", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table th {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content table td {
  padding: 16px;
  border: solid 1px #333;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table td {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content .alignleft,
.entry-detail .entry-content img.alignleft {
  display: inline;
  float: left;
  margin-right: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .alignright,
.entry-detail .entry-content img.alignright {
  display: inline;
  float: right;
  margin-left: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .aligncenter,
.entry-detail .entry-content img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-detail .entry-content img.alignleft,
.entry-detail .entry-content img.alignright,
.entry-detail .entry-content img.aligncenter {
  margin-bottom: 16px;
}
.entry-detail .entry-content .wp-caption {
  text-align: center;
}
/*# sourceMappingURL=common.css.map */