@charset "UTF-8";
/* ===================================================================
CSS information
 file name  :  default.css
 style info :  リセット及びbody初期設定 サイト全体共通css (このスタイルシートは基本的に変更しない)
=================================================================== */
/*--- reset */
/**/
html {
  overflow-y: scroll;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
}

q:before, q:after {
  content: "";
}

object,
embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form {
  font-size: 100%;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: middle;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

figure {
  margin: 0;
}

/*
*/
/* 10px = 77% 11px = 85% 12px = 93% 13px = 100%
14px = 108% 15px = 116% 16px = 123.1% 17px = 131%
18px = 138.5% 19px = 146.5% 20px = 153.9% 21px = 161.6%
22px = 167% 23px = 174% 24px = 182% 25px = 189% 26px = 197% */
/*
YUI 3.4.1 (build 4118)
Copyright 2011 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  font: 108%;
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */
select,
input,
button,
textarea {
  font-size: 18px;
}

/**
 * To help tables remember to inherit
 */
table {
  font-size: inherit;
  font: 108%;
  width: 100%;
  border-collapse: collapse;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

.container {
  margin-right: auto;
  margin-left: auto;
}
.container.--S {
  max-width: 760px;
}
@media only screen and (max-width: 649px) {
  .container.--S {
    width: 100%;
  }
}
.container.--M {
  max-width: 980px;
}
@media only screen and (max-width: 649px) {
  .container.--M {
    width: 100%;
  }
}
.container.--L {
  max-width: 1180px;
}
@media only screen and (max-width: 649px) {
  .container.--L {
    width: 100%;
  }
}

@media only screen and (min-width: 650px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 649px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
html {
  height: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 62.5%;
  font-style: normal;
  font-weight: 400;
}

body {
  height: 100%;
  color: #2b2b2b;
  background-color: #fff;
  line-height: 2;
}
@media only screen and (max-width: 649px) {
  body {
    overflow-x: hidden;
  }
}

a {
  color: #2b2b2b;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.65;
  transition: all 0.3s ease;
}

html.remodal-is-locked {
  /* overflow: hidden ではなく、位置を完全に固定して画面をロックします */
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html.remodal-is-locked body {
  height: 100%;
  overflow: hidden;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  width: 100%;
  bottom: 0;
  height: auto;
  background-color: #f7f7f7;
  padding: 80px 0 60px;
  display: none;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.icn-hamburger {
  z-index: 1003;
  box-sizing: border-box;
  position: fixed;
  top: 10px;
  right: 10px;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e14661;
  cursor: pointer;
}
@media only screen and (max-width: 649px) {
  .icn-hamburger {
    display: flex;
    justify-content: center;
  }
}
.icn-hamburger div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.icn-hamburger span {
  position: absolute;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  transition: all 0.3s;
  transform: rotate(0deg);
}
.icn-hamburger .bar-top {
  transform: translateY(-3px);
}
.icn-hamburger .bar-bottom {
  transform: translateY(3px);
}

.icn-hamburger.is-open {
  background-color: #f7f7f7;
}
.icn-hamburger.is-open span {
  background-color: #e14661;
}
.icn-hamburger.is-open .bar-top {
  transform: rotate(-45deg) translateY(0px);
  width: 21px;
  margin-left: 0;
}
.icn-hamburger.is-open .bar-bottom {
  transform: rotate(45deg) translateY(0px);
  width: 21px;
  margin-left: 0;
}

.hamburger__logo {
  width: 250px;
  margin: 0 auto 50px;
}

.breadcrumb {
  margin-bottom: 30px;
}
.breadcrumb a,
.breadcrumb span {
  font-size: 1.4rem;
}
@media only screen and (max-width: 649px) {
  .breadcrumb a,
  .breadcrumb span {
    font-size: 1.2rem;
  }
}
.breadcrumb a:hover {
  color: #e14661;
  opacity: 1;
}
.breadcrumb span {
  margin: 0 10px;
}

.notFound {
  margin-top: 60px;
  font-size: 1.6rem;
  text-align: center;
}

.icnLinks {
  display: flex;
}
.icnLinks a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.btnLinks {
  display: flex;
  gap: 0 20px;
}
.btnLinks a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding-top: 2px;
  padding-left: 15px;
  width: 172px;
  height: 34px;
  font-size: 1.4rem;
  line-height: 1;
}
@media only screen and (max-width: 649px) {
  .btnLinks a {
    font-size: 1.2rem;
  }
}
.btnLinks a:nth-child(1) span {
  margin-right: 10px;
}
.btnLinks a:nth-child(2) span {
  margin-right: 6px;
}
.btnLinksIcn {
  display: inline-block;
  width: 15px;
}
.btnLinksIcn svg {
  width: 100%;
  height: auto;
}

.btn a {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 60px;
  border-radius: 30px;
  color: #fff;
  background-color: rgb(43, 43, 43);
  font-size: 1.6rem;
  line-height: 1;
}
.btn a:hover {
  opacity: 1;
  background-color: rgba(43, 43, 43, 0.5);
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 80px;
}
@media only screen and (max-width: 649px) {
  .news-pagination {
    gap: 20px;
    margin-top: 60px;
  }
}
.news-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  border: 1px solid #cfcfcf;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #2b2b2b;
  text-decoration: none;
  transition: opacity 0.3s;
  box-sizing: border-box;
}
@media only screen and (max-width: 649px) {
  .news-pagination .page-numbers {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
.news-pagination .page-numbers.current {
  background: #e14661;
  border-color: #e14661;
  color: #fff;
}
.news-pagination .prev,
.news-pagination .next {
  font-size: 0;
}
.news-pagination .prev img,
.news-pagination .next img {
  width: 18px;
  height: auto;
  display: block;
}
@media only screen and (max-width: 649px) {
  .news-pagination .prev img,
  .news-pagination .next img {
    width: 16px;
  }
}
.news-pagination a.page-numbers:hover {
  opacity: 0.7;
}

.single-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
.single-pagination__prev, .single-pagination__next, .single-pagination__archive {
  flex: 1;
  display: flex;
  align-items: center;
  z-index: 2;
}
.single-pagination__prev {
  justify-content: flex-start;
  text-decoration: none;
  order: 1;
}
.single-pagination__prev .single-pagination__arrow {
  margin-right: 16px;
}
.single-pagination__next {
  justify-content: flex-end;
  text-decoration: none;
  order: 3;
}
.single-pagination__next .single-pagination__label {
  order: 1;
}
.single-pagination__next .single-pagination__arrow {
  order: 2;
  margin-left: 16px;
}
.single-pagination__label {
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.single-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  transition: background-color 0.3s, border-color 0.3s;
}
@media only screen and (max-width: 649px) {
  .single-pagination__arrow {
    width: 50px;
    height: 50px;
  }
}
.single-pagination__prev:hover .single-pagination__arrow, .single-pagination__next:hover .single-pagination__arrow {
  background-color: #f5f5f5;
}
.single-pagination__arrow img {
  width: 24px;
  height: auto;
}
@media only screen and (max-width: 649px) {
  .single-pagination__arrow img {
    width: 20px;
  }
}
.single-pagination__archive {
  justify-content: center;
  flex: 0 0 160px;
  width: 160px;
  height: 57px;
  background-color: #2b2b2b;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 30px;
  transition: opacity 0.3s;
  order: 2;
}
@media only screen and (max-width: 649px) {
  .single-pagination__archive {
    flex: 0 0 150px;
    width: 150px;
    height: 50px;
    font-size: 1.4rem;
  }
}
.single-pagination__archive:hover {
  opacity: 0.8;
}
.single-pagination::before, .single-pagination::after {
  content: "";
  flex: 1;
  display: none;
}
.single-pagination::before {
  order: 1;
}
.single-pagination::after {
  order: 3;
}
.single-pagination:not(:has(.single-pagination__prev))::before {
  display: block;
}
.single-pagination:not(:has(.single-pagination__next))::after {
  display: block;
}

.news__listItem {
  padding: 30px 0;
  border-bottom: solid 1px #dbdbdb;
}
.news__listItem a {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 649px) {
  .news__listItem a {
    display: block;
  }
}
.news__listItem time {
  margin-right: 10px;
  font-size: 1.6rem;
}
.news__listCategory span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 76px;
  padding: 4px 0 3px;
  margin-right: 30px;
  color: #fff;
  background-color: #e14661;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.news__listTtl {
  font-size: 1.6rem;
}
@media only screen and (max-width: 649px) {
  .news__listTtl {
    display: block;
  }
}
.news__noTtl {
  margin-top: 40px;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
.news__noTxt {
  margin-top: 30px;
  margin-bottom: 60px;
  font-size: 1.6rem;
  text-align: center;
}

.pageHead {
  z-index: -1;
  position: relative;
  width: 100%;
  height: 235px;
  margin-top: 80px;
}
@media only screen and (max-width: 649px) {
  .pageHead {
    height: 258px;
    margin-top: 0;
  }
}
.pageHead::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(calc(-100% - 317px));
  width: 760px;
  height: 235px;
  background: url(../img/common/deco-head.png) no-repeat center/contain;
}
@media only screen and (max-width: 649px) {
  .pageHead::before {
    width: 340px;
    height: 105px;
    top: 0;
    left: 50%;
    transform: translateX(calc(-100% + 25px));
    background: url(../img/common/deco-head.png) no-repeat center/contain;
  }
}
.pageHead .page__ttl {
  z-index: 99;
  font-size: 3.6rem;
  font-weight: 300;
  text-align: center;
}
.pageHead .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
}
@media only screen and (max-width: 649px) {
  .pageHead .container {
    background: linear-gradient(to bottom, transparent 0%, transparent 23%, #fff 23%, #fff 100%);
  }
}

#headerTeaser {
  z-index: 99;
  box-sizing: border-box;
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  background-color: #fff;
}
@media only screen and (max-width: 649px) {
  #headerTeaser {
    padding: 0;
    background-color: transparent;
  }
}
#headerTeaser .headerTeaser__logo {
  position: absolute;
  inset: 21px auto auto 0;
  width: 230px;
}
#headerTeaser .headerTeaser__logo img {
  width: 100%;
  height: auto;
}
#headerTeaser .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
#headerTeaser .globalNavi ul {
  display: flex;
  gap: 0 40px;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #headerTeaser .globalNavi ul {
    gap: 0 20px;
  }
}
@media only screen and (max-width: 649px) {
  #headerTeaser .globalNavi ul {
    position: relative;
    display: block;
  }
  #headerTeaser .globalNavi ul::after {
    position: absolute;
    inset: auto 0 0 0;
    width: 80px;
    height: 1px;
    margin: auto;
    background-color: #e14661;
    content: "";
  }
}
#headerTeaser .globalNavi ul li {
  position: relative;
  font-size: 1.3rem;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #headerTeaser .globalNavi ul li {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 649px) {
  #headerTeaser .globalNavi ul li {
    padding: 30px 0;
    font-size: 1.8rem;
    text-align: center;
  }
}
#headerTeaser .globalNavi ul li::before {
  position: absolute;
  inset: 6px auto auto -20px;
  width: 1px;
  height: 13px;
  background-color: #dbdbdb;
  content: "";
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #headerTeaser .globalNavi ul li::before {
    inset: 5px auto auto -10px;
  }
}
@media only screen and (max-width: 649px) {
  #headerTeaser .globalNavi ul li::before {
    inset: 0 0 auto 0;
    width: 80px;
    height: 1px;
    margin: auto;
    background-color: #e14661;
    content: "";
  }
}
@media only screen and (max-width: 649px) {
  #headerTeaser .globalNavi ul li a {
    color: #e14661;
  }
}
#headerTeaser .globalNavi ul li:first-child::before {
  content: none;
}
@media only screen and (max-width: 649px) {
  #headerTeaser .globalNavi ul li:first-child::before {
    content: "";
  }
}
#headerTeaser .icnLinks {
  margin-top: 60px;
  justify-content: center;
}
#headerTeaser .icnLinks svg {
  fill: #e14661;
}
#headerTeaser .btnLinks {
  display: block;
  margin-top: 20px;
}
#headerTeaser .btnLinks a {
  border: solid 1px #e14661;
  color: #e14661;
  margin-left: auto;
  margin-right: auto;
}
#headerTeaser .btnLinks a + a {
  margin-top: 18px;
}
#headerTeaser .btnLinks__icn svg {
  stroke: #e14661;
}

.home #headerTeaser {
  position: absolute !important;
  background-color: transparent !important;
}
.home #headerTeaser .headerTeaser__logo {
  display: none;
}
.home #headerTeaser.scroll {
  position: fixed !important;
  background-color: #fff !important;
}
@media only screen and (max-width: 649px) {
  .home #headerTeaser.scroll {
    background-color: transparent !important;
  }
}
.home #headerTeaser.scroll .headerTeaser__logo {
  display: block;
}

#footerTeaser {
  padding-top: 60px;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 649px) {
  #footerTeaser {
    padding-top: 40px;
  }
}
#footerTeaser .footerTeaser__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 42px;
}
@media only screen and (max-width: 649px) {
  #footerTeaser .footerTeaser__content {
    display: block;
    padding: 0 20px;
  }
}
#footerTeaser .footerTeaser__logo {
  width: 326px;
}
@media only screen and (max-width: 649px) {
  #footerTeaser .footerTeaser__logo {
    margin: 0 auto;
  }
}
#footerTeaser .footerTeaser__logo img {
  width: 100%;
  height: auto;
}
#footerTeaser .footerTeaser__bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 20px 0;
  margin-top: 20px;
}
@media only screen and (max-width: 649px) {
  #footerTeaser .footerTeaser__bottom {
    justify-content: flex-start;
    padding: 20px 40px;
  }
}
#footerTeaser .footerTeaser__bottom li {
  font-size: 1.4rem;
}
@media only screen and (max-width: 649px) {
  #footerTeaser .footerTeaser__bottom li {
    font-size: 1.2rem;
  }
}
#footerTeaser .footerTeaser__copyRight {
  padding: 20px 0 18px;
  color: #fff;
  background-color: #2b2b2b;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width: 649px) {
  #footerTeaser .footerTeaser__copyRight {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 649px) {
  #footerTeaser .icnLinks {
    justify-content: center;
    margin-top: 5px;
  }
}
#footerTeaser .icnLinks svg {
  fill: #2b2b2b;
}
@media only screen and (max-width: 649px) {
  #footerTeaser .btnLinks {
    justify-content: center;
    gap: 0 14px;
    margin-top: 20px;
  }
}
#footerTeaser .btnLinks a {
  border: solid 1px #000;
}
#footerTeaser .btnLinks__icn svg {
  stroke: #2b2b2b;
}

#teaserKvSec {
  display: flex;
}
@media only screen and (max-width: 649px) {
  #teaserKvSec {
    display: block;
  }
}
#teaserKvSec .teaserKv__img {
  position: relative;
  width: 50%;
}
@media only screen and (max-width: 649px) {
  #teaserKvSec .teaserKv__img {
    width: 100%;
  }
}
#teaserKvSec .teaserKv__img::after {
  z-index: -1;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 149px;
  height: 206px;
  background: url(../img/teaser/deco02.png) no-repeat center/contain;
}
#teaserKvSec .teaserKv__imgWrap {
  box-sizing: border-box;
  display: inline-block;
  background-color: #e14661;
  padding: 35px;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserKvSec .teaserKv__imgWrap {
    padding: 80px 35px;
  }
}
@media only screen and (max-width: 649px) {
  #teaserKvSec .teaserKv__imgWrap {
    padding: 40px 25px 206px;
  }
}
#teaserKvSec .teaserKv__imgWrap img {
  width: 100%;
  height: auto;
}
#teaserKvSec .teaserKv__info {
  position: relative;
  box-sizing: border-box;
  width: 50%;
  padding: 150px 20px 0 80px;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserKvSec .teaserKv__info {
    padding: 80px 30px 0 30px;
  }
}
@media only screen and (max-width: 649px) {
  #teaserKvSec .teaserKv__info {
    width: calc(100% - 40px);
    padding: 30px 20px 40px;
    margin: -166px auto 0;
    background-color: #fff;
  }
}
#teaserKvSec .teaserKv__info::after {
  z-index: -1;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 71px;
  height: 206px;
  background: url(../img/teaser/deco01.png) no-repeat center/contain;
}
@media only screen and (max-width: 649px) {
  #teaserKvSec .teaserKv__info::after {
    right: -20px;
    bottom: -52px;
    width: 340px;
    height: 105px;
    background: url(../img/teaser/deco03.png) no-repeat center/contain;
  }
}
#teaserKvSec .teaserKv__infoWrap {
  max-width: 400px;
}
#teaserKvSec .teaserKv__infoTtl img {
  width: 100%;
}
#teaserKvSec .teaserKv__infoYear {
  width: 100%;
  color: #fff;
  background-color: #e14661;
  padding: 5px 0;
  margin: 40px 0 46px;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserKvSec .teaserKv__infoYear {
    margin: 30px 0;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 649px) {
  #teaserKvSec .teaserKv__infoYear {
    margin: 30px 0;
    font-size: 2.6rem;
  }
}
#teaserKvSec .teaserKv__infoTerm {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserKvSec .teaserKv__infoTerm {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 649px) {
  #teaserKvSec .teaserKv__infoTerm {
    font-size: 1.5rem;
  }
}
#teaserKvSec .teaserKv__infoTerm + p {
  margin-top: 25px;
}
#teaserKvSec .teaserKv__infoTermTtl {
  display: inline-block;
  border: solid 1px #e14661;
  padding: 7px 16px 5px;
  color: #e14661;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
#teaserKvSec .teaserKv__infoSponsor {
  border-top: solid 1px #dbdbdb;
  margin-top: 25px;
  padding-top: 25px;
}
#teaserKvSec .teaserKv__infoSponsor p {
  font-size: 1.3rem;
  line-height: 1.5;
}
#teaserKvSec .teaserKv__infoSponsor p span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}
#teaserKvSec .teaserKv__infoSponsor p + p {
  margin-top: 20px;
}

#teaserAboutSec {
  padding: 120px 20px 40px;
  text-align: center;
}
@media only screen and (max-width: 649px) {
  #teaserAboutSec {
    padding: 110px 20px 76px;
    text-align: left;
  }
}
#teaserAboutSec .teaserAbout__ttl {
  color: #e14661;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 649px) {
  #teaserAboutSec .teaserAbout__ttl {
    font-size: 1.9rem;
  }
}
#teaserAboutSec .teaserAbout__ttl + p {
  margin-top: 50px;
}
@media only screen and (max-width: 649px) {
  #teaserAboutSec .teaserAbout__ttl + p {
    margin-top: 30px;
  }
}
#teaserAboutSec .teaserAbout__txt {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 649px) {
  #teaserAboutSec .teaserAbout__txt {
    font-size: 1.4rem;
  }
}
#teaserAboutSec .teaserAbout__txt + p {
  margin-top: 40px;
}
@media only screen and (max-width: 649px) {
  #teaserAboutSec .teaserAbout__txt + p {
    margin-top: 30px;
  }
}
#teaserAboutSec .teaserAbout__txt:last-child {
  margin-bottom: 70px;
}
@media only screen and (max-width: 649px) {
  #teaserAboutSec .teaserAbout__txt:last-child {
    margin-bottom: 45px;
  }
}
#teaserAboutSec .btn {
  text-align: center;
}

#teaserNewsSec {
  position: relative;
  padding-top: 86px;
}
@media only screen and (max-width: 649px) {
  #teaserNewsSec {
    padding-top: 60px;
  }
}
#teaserNewsSec::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 323px;
  height: 235px;
  background: url(../img/teaser/deco04.png) no-repeat center/contain;
}
@media only screen and (max-width: 649px) {
  #teaserNewsSec::before {
    width: 220px;
    height: 60px;
    background: url(../img/teaser/deco05.png) no-repeat center/contain;
  }
}
#teaserNewsSec .teaserNews__content {
  box-sizing: border-box;
  position: relative;
  max-width: 1056px;
  padding: 25px 0 80px 295px;
  margin-left: -70px;
  background-color: #fff;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserNewsSec .teaserNews__content {
    padding: 40px 20px 80px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 649px) {
  #teaserNewsSec .teaserNews__content {
    padding: 42px 20px 50px;
    margin-left: 0;
  }
}
#teaserNewsSec .teaserNews__ttl {
  position: absolute;
  inset: 50px auto auto 70px;
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserNewsSec .teaserNews__ttl {
    position: static;
  }
}
@media only screen and (max-width: 649px) {
  #teaserNewsSec .teaserNews__ttl {
    position: static;
    font-size: 3rem;
  }
}
#teaserNewsSec .teaserNews__ttl span {
  display: block;
  margin-top: 10px;
  color: #e14661;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (max-width: 649px) {
  #teaserNewsSec .teaserNews__ttl span {
    font-size: 1.5rem;
  }
}
#teaserNewsSec .btn {
  text-align: center;
}

#teaserStaffSec {
  padding: 120px 20px 130px;
  overflow-x: hidden;
}
@media only screen and (max-width: 649px) {
  #teaserStaffSec {
    padding: 68px 20px 136px;
  }
}
#teaserStaffSec .teaserStaff__content {
  display: flex;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 649px) {
  #teaserStaffSec .teaserStaff__content {
    display: block;
  }
}
#teaserStaffSec .teaserStaff__info {
  position: relative;
  box-sizing: border-box;
  width: calc(54% + 70px);
  padding: 0 80px 0 70px;
  margin-left: -70px;
  background-color: #fff;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserStaffSec .teaserStaff__info {
    width: calc(50% + 70px);
    padding: 0 20px 0 70px;
  }
}
@media only screen and (max-width: 649px) {
  #teaserStaffSec .teaserStaff__info {
    width: 100%;
    padding: 26px 0 0;
    margin-left: 0;
  }
}
#teaserStaffSec .teaserStaff__info::before {
  z-index: -1;
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 650px;
  height: 225px;
  background: url(../img/teaser/deco07.png) no-repeat center/contain;
}
@media only screen and (max-width: 649px) {
  #teaserStaffSec .teaserStaff__info::before {
    z-index: 1;
    bottom: -138px;
    right: auto;
    left: -20px;
    width: calc(100% + 40px);
    height: 69px;
    background: url(../img/teaser/deco08.png) no-repeat center/cover;
  }
}
#teaserStaffSec .teaserStaff__img {
  position: relative;
  width: 46%;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserStaffSec .teaserStaff__img {
    width: 50%;
  }
}
@media only screen and (max-width: 649px) {
  #teaserStaffSec .teaserStaff__img {
    width: 100%;
  }
}
#teaserStaffSec .teaserStaff__img img {
  width: 50vw;
}
@media only screen and (max-width: 649px) {
  #teaserStaffSec .teaserStaff__img img {
    width: 100%;
  }
}
#teaserStaffSec .teaserStaff__img::before {
  z-index: -1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 225px;
  background: url(../img/teaser/deco06.png) no-repeat center/contain;
}
@media only screen and (max-width: 649px) {
  #teaserStaffSec .teaserStaff__img::before {
    background: none;
  }
}
#teaserStaffSec .teaserStaff__ttl {
  color: #e14661;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
#teaserStaffSec .teaserStaff__ttlSub {
  margin-top: 10px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserStaffSec .teaserStaff__ttlSub {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 649px) {
  #teaserStaffSec .teaserStaff__ttlSub {
    font-size: 1.4rem;
  }
}
#teaserStaffSec .teaserStaff__ttlSub + p {
  margin-top: 20px;
}
#teaserStaffSec .teaserStaff__txt {
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserStaffSec .teaserStaff__txt {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 649px) {
  #teaserStaffSec .teaserStaff__txt {
    font-size: 1.4rem;
  }
}
#teaserStaffSec .teaserStaff__txt + p {
  margin-top: 20px;
}
#teaserStaffSec .btn {
  margin-top: 60px;
  text-align: center;
}
@media only screen and (min-width: 650px) and (max-width: 1029px) {
  #teaserStaffSec .btn {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 649px) {
  #teaserStaffSec .btn {
    margin-top: 40px;
  }
}

#teaserBottomSec {
  padding: 0 20px;
}
#teaserBottomSec .teaserBottom__map {
  border-top: solid 1px #dbdbdb;
  border-bottom: solid 1px #dbdbdb;
  padding: 60px 0;
}
@media only screen and (max-width: 649px) {
  #teaserBottomSec .teaserBottom__map {
    padding: 45px 0;
  }
}
#teaserBottomSec .teaserBottom__banner {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  cursor: pointer;
}
#teaserBottomSec .teaserBottom__banner img {
  width: 100%;
  height: auto;
}
#teaserBottomSec .teaserBottom__agency {
  display: flex;
  align-items: center;
  padding: 40px 20px;
}
@media only screen and (max-width: 649px) {
  #teaserBottomSec .teaserBottom__agency {
    display: block;
    padding: 30px 0 45px;
  }
}
#teaserBottomSec .teaserBottom__agencyLogo {
  width: 200px;
}
@media only screen and (max-width: 649px) {
  #teaserBottomSec .teaserBottom__agencyLogo {
    margin: 0 auto 20px;
  }
}
#teaserBottomSec .teaserBottom__agencyLogo img {
  width: 100%;
  height: auto;
}
#teaserBottomSec .teaserBottom__agencyTxt {
  box-sizing: border-box;
  width: calc(100% - 200px);
  padding-left: 23px;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 649px) {
  #teaserBottomSec .teaserBottom__agencyTxt {
    width: 100%;
    padding-left: 0;
  }
}

#p-singleNews .breadcrumb {
  margin-top: -20px;
}
@media only screen and (max-width: 649px) {
  #p-singleNews .breadcrumb {
    margin-top: -60px;
  }
}
#p-singleNews .singleNews__head {
  border-bottom: solid 1px #e14661;
  padding-bottom: 8px;
}
#p-singleNews .singleNews__main {
  padding: 0 20px 120px;
}
#p-singleNews .singleNews__main h1 {
  margin-top: 32px;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 649px) {
  #p-singleNews .singleNews__main h1 {
    font-size: 2rem;
  }
}
#p-singleNews .singleNews__content {
  padding: 30px 0 80px;
}
#p-singleNews .singleNews__content h2 {
  position: relative;
  padding-left: 14px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 649px) {
  #p-singleNews .singleNews__content h2 {
    font-size: 1.8rem;
  }
}
#p-singleNews .singleNews__content h2::before {
  position: absolute;
  inset: 6px auto auto 0;
  width: 4px;
  height: 24px;
  background-color: #e14661;
  content: "";
}
@media only screen and (max-width: 649px) {
  #p-singleNews .singleNews__content h2::before {
    inset: 4px auto auto 0;
    height: 18px;
  }
}
#p-singleNews .singleNews__content h2 + p {
  margin-top: 10px;
}
#p-singleNews .singleNews__content h2 + h2,
#p-singleNews .singleNews__content h2 + h3,
#p-singleNews .singleNews__content h2 + h4,
#p-singleNews .singleNews__content h2 + h5,
#p-singleNews .singleNews__content h2 + ul,
#p-singleNews .singleNews__content h2 + figure {
  margin-top: 30px;
}
#p-singleNews .singleNews__content h3 {
  padding: 5px 16px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #fff;
  background-color: #e14661;
}
@media only screen and (max-width: 649px) {
  #p-singleNews .singleNews__content h3 {
    font-size: 1.8rem;
  }
}
#p-singleNews .singleNews__content h3 + p {
  margin-top: 10px;
}
#p-singleNews .singleNews__content h3 + h2,
#p-singleNews .singleNews__content h3 + h3,
#p-singleNews .singleNews__content h3 + h4,
#p-singleNews .singleNews__content h3 + h5,
#p-singleNews .singleNews__content h3 + ul,
#p-singleNews .singleNews__content h3 + figure {
  margin-top: 30px;
}
#p-singleNews .singleNews__content h4 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #e14661;
}
@media only screen and (max-width: 649px) {
  #p-singleNews .singleNews__content h4 {
    font-size: 1.8rem;
  }
}
#p-singleNews .singleNews__content h4 + p {
  margin-top: 10px;
}
#p-singleNews .singleNews__content h4 + h2,
#p-singleNews .singleNews__content h4 + h3,
#p-singleNews .singleNews__content h4 + h4,
#p-singleNews .singleNews__content h4 + h5,
#p-singleNews .singleNews__content h4 + ul,
#p-singleNews .singleNews__content h4 + figure {
  margin-top: 30px;
}
#p-singleNews .singleNews__content h5 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 649px) {
  #p-singleNews .singleNews__content h5 {
    font-size: 1.8rem;
  }
}
#p-singleNews .singleNews__content h5 + p {
  margin-top: 10px;
}
#p-singleNews .singleNews__content h5 + h2,
#p-singleNews .singleNews__content h5 + h3,
#p-singleNews .singleNews__content h5 + h4,
#p-singleNews .singleNews__content h5 + h5,
#p-singleNews .singleNews__content h5 + ul,
#p-singleNews .singleNews__content h5 + figure {
  margin-top: 30px;
}
#p-singleNews .singleNews__content p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 649px) {
  #p-singleNews .singleNews__content p {
    font-size: 1.4rem;
  }
}
#p-singleNews .singleNews__content p a {
  color: #5197d0;
  text-decoration: underline;
}
#p-singleNews .singleNews__content p + p,
#p-singleNews .singleNews__content p + h2,
#p-singleNews .singleNews__content p + h3,
#p-singleNews .singleNews__content p + h4,
#p-singleNews .singleNews__content p + ul,
#p-singleNews .singleNews__content p + figure {
  margin-top: 30px;
}
#p-singleNews .singleNews__content ul li {
  position: relative;
  padding-left: 20px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
}
@media only screen and (max-width: 649px) {
  #p-singleNews .singleNews__content ul li {
    font-size: 1.4rem;
  }
}
#p-singleNews .singleNews__content ul li::before {
  position: absolute;
  inset: 0 auto auto 0;
  content: "・";
}
#p-singleNews .singleNews__content ul + p,
#p-singleNews .singleNews__content ul + h2,
#p-singleNews .singleNews__content ul + h3,
#p-singleNews .singleNews__content ul + h4,
#p-singleNews .singleNews__content ul + ul,
#p-singleNews .singleNews__content ul + figure {
  margin-top: 30px;
}
#p-singleNews .singleNews__content figure + p,
#p-singleNews .singleNews__content figure + h2,
#p-singleNews .singleNews__content figure + h3,
#p-singleNews .singleNews__content figure + h4,
#p-singleNews .singleNews__content figure + ul,
#p-singleNews .singleNews__content figure + figure {
  margin-top: 30px;
}
#p-singleNews .singleNews__content .wp-block-columns {
  gap: 24px;
  margin-top: 40px;
}
#p-singleNews .singleNews__content .wp-block-image img {
  width: 100%;
  max-width: 552px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#p-singleNews .singleNews__content figure.wp-block-table {
  border: none !important;
  margin: 2em 0;
  padding: 0;
}
#p-singleNews .singleNews__content figure.wp-block-table table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 8px !important;
  border: none !important;
}
#p-singleNews .singleNews__content figure.wp-block-table table tr {
  border: none !important;
}
#p-singleNews .singleNews__content figure.wp-block-table table td:first-child,
#p-singleNews .singleNews__content figure.wp-block-table table th:first-child {
  border: none !important;
  position: relative;
  width: 196px;
  max-width: 196px;
  background: transparent !important;
  color: #333 !important;
  text-align: center;
  vertical-align: middle;
  padding: 10px 16px 10px 0 !important;
  font-size: 1.6rem !important;
  z-index: 1;
}
@media only screen and (max-width: 649px) {
  #p-singleNews .singleNews__content figure.wp-block-table table td:first-child,
  #p-singleNews .singleNews__content figure.wp-block-table table th:first-child {
    width: 120px;
    max-width: 120px;
    font-size: 1.2rem !important;
  }
}
#p-singleNews .singleNews__content figure.wp-block-table table td:first-child::before,
#p-singleNews .singleNews__content figure.wp-block-table table th:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 16px;
  background-color: #dcdcdc;
  z-index: -1;
}
#p-singleNews .singleNews__content figure.wp-block-table table td:nth-child(2) {
  border: none !important;
  background: transparent !important;
  border-bottom: 1px solid #e0e0e0 !important;
  padding: 10px 20px !important;
  color: #333 !important;
  font-size: 1.6rem !important;
  line-height: 1.6;
  vertical-align: middle;
  text-align: left;
}
@media only screen and (max-width: 649px) {
  #p-singleNews .singleNews__content figure.wp-block-table table td:nth-child(2) {
    font-size: 1.2rem !important;
  }
}
#p-singleNews .singleNews__meta {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}
#p-singleNews .singleNews__category {
  margin-left: 16px;
  display: inline-flex;
  justify-content: center;
  width: 138px;
  padding: 8px 0 6px;
  color: #fff;
  background-color: #e14661;
}

#p-ArchiveNews .ArchiveNews__cate {
  max-width: 980px;
  margin: -44px auto 0;
}
#p-ArchiveNews .ArchiveNews__main {
  padding: 0 20px 120px;
}
@media only screen and (max-width: 649px) {
  #p-ArchiveNews .ArchiveNews__main {
    padding: 0 20px 100px;
  }
}
#p-ArchiveNews .news-filter {
  z-index: 99;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 649px) {
  #p-ArchiveNews .news-filter {
    gap: 14px;
  }
}
#p-ArchiveNews .filter-button {
  appearance: none;
  border: solid 2px #e14661;
  background: transparent;
  color: #e14661;
  width: 130px;
  height: 44px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
@media only screen and (max-width: 649px) {
  #p-ArchiveNews .filter-button {
    width: 90px;
  }
}
#p-ArchiveNews .filter-button:hover, #p-ArchiveNews .filter-button.active {
  background: #e14661;
  color: #fff;
}
#p-ArchiveNews .news__list {
  border-top: solid 1px #dbdbdb;
  margin-top: 80px;
}

#error404 {
  padding: 200px 20px 120px;
  text-align: center;
}
#error404 h1 {
  margin-bottom: 40px;
  color: #e14661;
  font-size: 5rem;
  font-weight: 600;
  line-height: 0.6;
  letter-spacing: 0.05em;
}
#error404 h1 span {
  opacity: 0.6;
  font-size: 1.4rem;
}
#error404 h2 {
  margin-bottom: 30px;
  color: #e14661;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 649px) {
  #error404 h2 {
    font-size: 1.6rem;
  }
}
#error404 h3 {
  color: #e14661;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 10px;
}
#error404 p {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media only screen and (max-width: 649px) {
  #error404 p {
    font-size: 1.4rem;
  }
}
#error404 p span {
  background-color: #fff;
}
#error404 p a {
  text-decoration: underline;
}
#error404 p + p {
  margin-top: 30px;
}
#error404 .btn {
  margin-top: 40px;
}
#error404 .search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 2em auto;
  background-color: #f5f5f5 !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 30px !important;
  padding: 4px 16px !important;
  box-sizing: border-box;
}
#error404 .search-form label {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
}
#error404 .search-form .search-field {
  width: 100%;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 8px 0 !important;
  font-size: 1.6rem;
  color: #333;
}
#error404 .search-form .search-field::placeholder {
  color: #999;
}
#error404 .search-form .search-submit {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
  padding: 8px 0 8px 12px !important;
  font-size: 1.6rem;
  color: #2b2b2b;
  font-weight: bold;
  transition: opacity 0.3s;
}
#error404 .search-form .search-submit:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */