@charset "UTF-8";
@font-face {
  font-family: "YuMincho";
  font-weight: normal;
  src: url("../font/A-OTF-A1MinchoStd-Bold.otf");
}
/*====================================================================
Reset
====================================================================*/
*, html, body, div, figure, section, header, footer, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-family: noto-sans-cjk-jp, sans-serif;
  line-height: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

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

fieldset,
img {
  border: 0;
}

/*
TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
}

legend {
  color: #101010;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*-----------------------------------------------
@keyframes
------------------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
            transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
            transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
@-webkit-keyframes HamBtnOpenTop {
  50% {
    top: 50%;
  }
  100% {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes HamBtnOpenTop {
  50% {
    top: 50%;
  }
  100% {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
@-webkit-keyframes HamBtnOpenBottom {
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
            transform: translate(-50%, 50%) rotate(-45deg);
  }
}
@keyframes HamBtnOpenBottom {
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
            transform: translate(-50%, 50%) rotate(-45deg);
  }
}
@-webkit-keyframes HamBtnCloseTop {
  50% {
    top: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    top: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes HamBtnCloseTop {
  50% {
    top: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    top: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes HamBtnCloseBottom {
  50% {
    bottom: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    bottom: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes HamBtnCloseBottom {
  50% {
    bottom: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    bottom: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.u-visualEditArea {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .u-visualEditArea {
    font-size: 1.3rem;
  }
}
.u-visualEditArea * + * {
  margin-top: 1.75em;
}
.u-visualEditArea a {
  color: #0077FF;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .u-visualEditArea a {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .u-visualEditArea a:hover {
    opacity: 0.6;
  }
}
.u-visualEditArea h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}
.u-visualEditArea h2 {
  margin-top: 2em;
  font-size: 3rem;
  line-height: 1.6;
}
.u-visualEditArea h3 {
  color: #0077FF;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}
.u-visualEditArea h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}
.u-visualEditArea h4::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #0077FF;
}
.u-visualEditArea h5, .u-visualEditArea h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.u-visualEditArea h1 + h2,
.u-visualEditArea h2 + h3,
.u-visualEditArea h3 + h4,
.u-visualEditArea h4 + h5,
.u-visualEditArea h5 + h6 {
  margin-top: 0.5em;
}
.u-visualEditArea p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .u-visualEditArea p {
    font-size: 1.3rem;
  }
}
.u-visualEditArea strong, .u-visualEditArea strong * {
  font-weight: bold;
}
.u-visualEditArea em, .u-visualEditArea em * {
  font-style: italic;
}
.u-visualEditArea ul {
  list-style-type: disc;
}
.u-visualEditArea ol {
  list-style-type: decimal;
}
.u-visualEditArea ul, .u-visualEditArea ol {
  margin-top: 1em;
  padding-left: 1.4em;
}
.u-visualEditArea ul li, .u-visualEditArea ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}
.u-visualEditArea sup, .u-visualEditArea sub {
  font-size: 1rem;
  line-height: 1 !important;
}
.u-visualEditArea hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #fff;
}
.u-visualEditArea blockquote {
  padding: 30px;
  background: #292929;
}
.u-visualEditArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #292929;
}
.u-visualEditArea table thead th, .u-visualEditArea table thead td {
  font-weight: bold;
  text-align: center;
}
.u-visualEditArea table tr th, .u-visualEditArea table tr td {
  padding: 15px 20px;
  border: #666 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.u-visualEditArea table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}
.u-visualEditArea img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}
.u-visualEditArea img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.u-visualEditArea img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
.u-visualEditArea .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.u-visualEditArea .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}
.u-visualEditArea .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}
.u-visualEditArea .gallery-columns-3 .gallery-item {
  width: calc((100% - 80px) / 3);
}

/*====================================================================
siteHeader
====================================================================*/
.siteHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
  padding-left: 40px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(16, 16, 16, 0.6);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .siteHeader {
    height: 50px;
    padding-left: 15px;
  }
}
.is_login_user .siteHeader {
  top: 32px;
}
@media screen and (max-width: 768px) {
  .is_login_user .siteHeader {
    top: 46px;
  }
}
.siteHeader__logo {
  width: 190px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .siteHeader__logo {
    width: 95px;
  }
}
.siteHeader__logoLink {
  display: block;
}
@media screen and (min-width: 769px) {
  .siteHeader__logoLink:hover [class$=__logoImg] {
    fill: #0077FF;
  }
}
.siteHeader__logoImg {
  width: 100%;
  fill: #fff;
}
@media screen and (min-width: 769px) {
  .siteHeader__logoImg {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
.siteHeader__gNav {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .siteHeader__gNav {
    display: none;
  }
}
.siteHeader__gNavPageList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.siteHeader__gNavItem {
  position: relative;
}
.siteHeader__gNavItem::before {
  content: "";
  width: 1px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
}
.siteHeader__gNavItem:nth-child(1)::before {
  display: none;
}
.siteHeader__gNavLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.36em;
}
@media screen and (min-width: 769px) {
  .siteHeader__gNavLink {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .siteHeader__gNavLink:hover {
    color: #0077FF;
    font-weight: bold;
  }
}
.siteHeader__gNavLink::after {
  content: "";
  width: calc(100% - 60px);
  height: 5px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #002BFF;
}
.siteHeader__bnr {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff url("../images/common/icon-contact.png") no-repeat center/29px auto;
}
@media screen and (min-width: 769px) {
  .siteHeader__bnr {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .siteHeader__bnr:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .siteHeader__bnr {
    width: 50px;
    height: 50px;
    right: 50px;
  }
}

.header {
  position: fixed;
  width: 100%;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  background: #fff;
  z-index: 100;
}
.header__pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 60px;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1439px) {
  .header__pc {
    padding-left: 4.167vw;
  }
}
@media screen and (max-width: 991px) {
  .header__pc {
    padding-left: 15px;
  }
}
.headerLogo {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .headerLogo:hover {
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headerLink__pagelist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headerLink__link {
  color: #000;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1199px) {
  .headerLink__link {
    font-size: 16px;
  }
}
.headerLink__item {
  margin: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
@media screen and (max-width: 1439px) {
  .headerLink__item {
    margin: 0 0.833vw;
  }
}
@media screen and (max-width: 991px) {
  .headerLink__item {
    margin: 0;
    border-bottom: 0;
  }
  .headerLink__item:nth-child(n+2) {
    margin-top: 20px;
  }
}
.headerLink__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0 12px;
  height: 100%;
}
@media screen and (max-width: 1439px) {
  .headerLink__item a {
    padding: 0 1.042vw;
  }
}
@media screen and (max-width: 1199px) {
  .headerLink__item a {
    padding: 0 1.042vw;
  }
}
@media screen and (max-width: 991px) {
  .headerLink__item a {
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .headerLink__item.pink-txt:hover {
    border-bottom-color: #ef6298;
  }
  .headerLink__item.pink-txt:hover a {
    color: #ef6298;
  }
}
.headerLink__item.pink-txt.active {
  border-bottom-color: #ef6298;
}
.headerLink__item.pink-txt.active a {
  color: #ef6298;
}
@media screen and (min-width: 769px) {
  .headerLink__item.orange-txt:hover {
    border-bottom-color: #ffa74a;
  }
  .headerLink__item.orange-txt:hover a {
    color: #ffa74a;
  }
}
.headerLink__item.orange-txt.active {
  border-bottom-color: #ffa74a;
}
.headerLink__item.orange-txt.active a {
  color: #ffa74a;
}
@media screen and (min-width: 769px) {
  .headerLink__item.green-txt:hover {
    border-bottom-color: #2aac92;
  }
  .headerLink__item.green-txt:hover a {
    color: #2aac92;
  }
}
.headerLink__item.green-txt.active {
  border-bottom-color: #2aac92;
}
.headerLink__item.green-txt.active a {
  color: #2aac92;
}
@media screen and (min-width: 769px) {
  .headerLink__item.blue-txt:hover {
    border-bottom-color: #6fbde6;
  }
  .headerLink__item.blue-txt:hover a {
    color: #6fbde6;
  }
}
.headerLink__item.blue-txt.active {
  border-bottom-color: #6fbde6;
}
.headerLink__item.blue-txt.active a {
  color: #6fbde6;
}
@media screen and (min-width: 769px) {
  .headerLink__item.violet-txt:hover {
    border-bottom-color: #b462bc;
  }
  .headerLink__item.violet-txt:hover a {
    color: #b462bc;
  }
}
.headerLink__item.violet-txt.active {
  border-bottom-color: #b462bc;
}
.headerLink__item.violet-txt.active a {
  color: #b462bc;
}
.headerLink__pagelist {
  height: 100%;
  margin-right: 46px;
  margin-top: 2px;
}
.headerMenu {
  background: #f7f7f7;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1080px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (max-width: 991px) {
  .headerMenu {
    top: 61px;
    max-width: 50%;
    height: calc(100vh - 60px);
  }
}
@media screen and (max-width: 768px) {
  .headerMenu {
    top: 61px;
    max-width: 330px;
    height: calc(100vh - 60px);
  }
}
@media screen and (max-width: 991px) {
  .headerMenu::before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
  }
}
.headerMenu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 991px) {
  .headerMenu.is-open {
    top: 61px;
    max-width: 50%;
  }
  .headerMenu.is-open::before {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .headerMenu.is-open {
    top: 61px;
    max-width: 330px;
  }
  .headerMenu.is-open::before {
    opacity: 1;
  }
}
.headerMenu__wrap {
  padding: 30px 60px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .headerMenu__wrap {
    padding: 15px;
    background: url("../images/common/bg.jpg") no-repeat top/cover;
  }
}
.headerMenu__ttl {
  font-size: 30px;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding-left: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .headerMenu__ttl {
    font-size: 16px;
    padding-left: 12px;
  }
}
.headerMenu__ttl::before {
  content: "";
  width: 19px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 3px;
}
@media screen and (max-width: 768px) {
  .headerMenu__ttl::before {
    width: 7px;
    height: 13px;
  }
}
.headerMenu__ttl-smll {
  font-size: 18px;
  padding: 8px 0 0 25px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .headerMenu__ttl-smll {
    font-size: 16px;
    padding: 0 0 0 12px;
  }
}
.headerMenu__ttl-smll::before {
  top: 0;
}
.headerMenu__ttl-smll span {
  font-size: 12px;
  font-weight: 400;
}
.headerMenu__ttl-yellow::before {
  background: url("../images/common/icon03.svg") no-repeat center/contain;
}
.headerMenu__ttl-pink::before {
  background: url("../images/common/icon04.svg") no-repeat center/contain;
}
.headerMenu__ttl-blue::before {
  background: url("../images/common/icon05.svg") no-repeat center/contain;
}
.headerMenu__btn {
  height: 100px;
  width: 100px;
  background: #000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .headerMenu__btn {
    height: 60px;
    width: 60px;
  }
}
.headerMenu__btn-right {
  margin-left: auto;
}
.headerMenu__btn img {
  max-width: 40px;
}
@media screen and (max-width: 768px) {
  .headerMenu__btn img {
    max-width: 30px;
  }
}
.headerMenu__btn span {
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .headerMenu__btn span {
    padding-bottom: 14px;
  }
}
.headerMenu__btn span::after {
  content: "Menu";
  font-size: 16px;
  font-weight: 500;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .headerMenu__btn span::after {
    font-size: 13px;
    left: -2px;
  }
}
.headerMenu__btn .menu-brush02 {
  display: none;
}
.headerMenu__btn.is-open .menu-brush01 {
  display: none;
}
.headerMenu__btn.is-open .menu-brush02 {
  display: block;
}
.headerMenu__btn.is-open span::after {
  content: "Close";
}
.headerMenu__tagWrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .headerMenu__tagWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.headerMenu__tagSearch.tagSearch {
  margin: 0 0 0 20px;
  width: 100%;
  max-width: 510px;
}
@media screen and (max-width: 768px) {
  .headerMenu__tagSearch.tagSearch {
    margin: 17px 0 0 0;
  }
}
.headerMenu__tagSearch.tagSearch input {
  padding: 7px 21px;
}
@media screen and (max-width: 768px) {
  .headerMenu__tag .tagList li {
    margin: 2px;
  }
}
@media screen and (max-width: 768px) {
  .headerMenu__tag .tagList li a {
    padding: 8px 12px;
  }
}
.headerMenu__cat {
  border-bottom: 1px solid rgba(144, 144, 144, 0.2);
  padding-bottom: 30px;
  margin: 65px 0 30px;
}
@media screen and (max-width: 991px) {
  .headerMenu__cat {
    margin: 33px 0 30px;
  }
}
.headerMenu__cat .headerMenu__ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .headerMenu__cat .headerMenu__ttl {
    margin-bottom: 14px;
  }
}
.headerMenu__cat .headerLink__item {
  padding: 0 0 7px;
}
@media screen and (max-width: 991px) {
  .headerMenu__cat .headerLink__item {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .headerMenu__cat .headerLink__pagelist {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.headerMenu__links > div:nth-child(n+2) {
  margin-top: 25px;
}
.headerMenu__linksList {
  margin: -30px -15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991px) {
  .headerMenu__linksList {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.headerMenu__linksRecruit .headerMenu__linksList {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.headerMenu__linksList li {
  padding: 30px 15px 0;
}
@media screen and (max-width: 991px) {
  .headerMenu__linksList li {
    padding: 0;
  }
  .headerMenu__linksList li:nth-child(n+2) {
    margin-top: 20px;
  }
}
.headerMenu__linksList li a {
  font-size: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.025em;
  line-height: 1.22;
}
@media screen and (max-width: 991px) {
  .headerMenu__linksList li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  .headerMenu__linksList li a:hover {
    color: #003894;
  }
}
.headerMenu__smi {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .headerMenu__smi {
    margin-top: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.headerMenu__smiTtl {
  font-size: 14px;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .headerMenu__smiTtl {
    margin-right: 12px;
  }
}
.headerMenu__smiList {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .headerMenu__smiList {
    margin-top: 8px;
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 0;
  }
}
.headerMenu__smiLink {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .headerMenu__smiLink:hover {
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 768px) {
  .headerMenu__smiItem:nth-child(n+2) {
    margin-left: 0;
  }
}
.headerMenu__smiItem .tw {
  display: block;
  width: 26px;
}
@media screen and (max-width: 768px) {
  .headerMenu__smiItem .tw {
    width: 25px;
  }
}
.headerMenu__smiItem .yt {
  display: block;
  width: 35px;
}
@media screen and (max-width: 768px) {
  .headerMenu__smiItem .yt {
    width: 40px;
  }
}
.headerMenu__smiTxt {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.35;
  color: #000000;
  width: 100%;
}

/*====================================================================
siteFooter
====================================================================*/
.is_home .siteFooter {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .is_home .siteFooter {
    margin-top: 0;
  }
}

.siteFooter {
  position: relative;
  margin-top: 100px;
  padding: 50px 0 20px;
  background: #eaeaea;
}
@media screen and (max-width: 768px) {
  .siteFooter {
    margin-top: 0;
  }
}
.siteFooter .container {
  padding: 0 60px;
  max-width: none;
}
@media screen and (max-width: 1439px) {
  .siteFooter .container {
    padding: 0 4.167vw;
  }
}
@media screen and (max-width: 991px) {
  .siteFooter .container {
    padding: 0 15px;
  }
}
.siteFooter__logo {
  max-width: 313px;
}
@media screen and (max-width: 768px) {
  .siteFooter__logo {
    max-width: 255px;
  }
}
.siteFooter__wrap {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 991px) {
  .siteFooter__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .siteFooter__wrap {
    margin: 15px 15px 0;
  }
}
.siteFooter__wrapLeft {
  width: 43.96%;
}
@media screen and (max-width: 991px) {
  .siteFooter__wrapLeft {
    width: 100%;
    margin-top: 10px;
  }
}
.siteFooter__wrapRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 56.04%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .siteFooter__wrapRight {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.siteFooter__info {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .siteFooter__info {
    margin-top: 26px;
    font-size: 14px;
  }
}
.siteFooter__links {
  width: 29.74%;
}
@media screen and (max-width: 991px) {
  .siteFooter__links {
    width: 100%;
  }
  .siteFooter__links:nth-child(n+2) {
    margin-top: 40px;
  }
}
.siteFooter__links:not(:last-child) {
  margin-right: 5.58%;
}
@media screen and (max-width: 991px) {
  .siteFooter__links:not(:last-child) {
    margin-right: 0;
  }
}
.siteFooter__links .footerTtl {
  border-bottom: 1px solid #9a9a9a;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.19;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 23px;
}
.siteFooter__links .footerTtl small {
  position: relative;
  margin-top: 3px;
  margin-left: 15px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.siteFooter__links .footerTtl small::before, .siteFooter__links .footerTtl small::after {
  position: relative;
  display: inline-block;
  content: "ー";
}
.siteFooter__links .footerTtl small::before {
  margin-right: 5px;
}
.siteFooter__links .footerTtl small::after {
  margin-left: 5px;
}
.siteFooter__links .footerLinks li:nth-child(n+2) {
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .siteFooter__links .footerLinks li:nth-child(n+2) {
    margin-top: 15px;
  }
}
.siteFooter__links .footerLinks li.active a {
  color: #003894;
}
.siteFooter__links .footerLinks li a {
  font-size: 16px;
  letter-spacing: 0.025em;
  line-height: 1.19;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .siteFooter__links .footerLinks li a:hover {
    color: #003894;
  }
}
.siteFooter__links.footerCategory li a {
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .siteFooter__links.footerCategory li.red-txt a:hover {
    color: #EC483C;
  }
}
.siteFooter__links.footerCategory li.red-txt.active a {
  color: #EC483C;
}
@media screen and (min-width: 769px) {
  .siteFooter__links.footerCategory li.orange-txt a:hover {
    color: #ffa74a;
  }
}
.siteFooter__links.footerCategory li.orange-txt.active a {
  color: #ffa74a;
}
@media screen and (min-width: 769px) {
  .siteFooter__links.footerCategory li.green-txt a:hover {
    color: #2aac92;
  }
}
.siteFooter__links.footerCategory li.green-txt.active a {
  color: #2aac92;
}
@media screen and (min-width: 769px) {
  .siteFooter__links.footerCategory li.blue-txt a:hover {
    color: #6fbde6;
  }
}
.siteFooter__links.footerCategory li.blue-txt.active a {
  color: #6fbde6;
}
@media screen and (min-width: 769px) {
  .siteFooter__links.footerCategory li.violet-txt a:hover {
    color: #b462bc;
  }
}
.siteFooter__links.footerCategory li.violet-txt.active a {
  color: #b462bc;
}
.siteFooter__links.footerRecruit li:nth-child(n+2) {
  margin-top: 20px;
  border-bottom: 1px solid #9a9a9a;
  padding-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .siteFooter__links.footerRecruit li:nth-child(n+2) {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .siteFooter__links.footerRecruit li:nth-child(n+2) {
    margin-top: 30px;
  }
}
.siteFooter__links.footerRecruit li:last-child {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .siteFooter__links.footerRecruit li:last-child {
    margin-top: 20px;
  }
}
.siteFooter__smi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .siteFooter__smi {
    margin-top: 30px;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}
.siteFooter__smiLink {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .siteFooter__smiLink:hover {
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.siteFooter__smi .tw {
  width: 2.8rem;
  display: block;
}
.siteFooter__smi .yt {
  width: 3.6rem;
  display: block;
}
.siteFooter__smi .it {
  width: 3.8rem;
  display: block;
}
.siteFooter__smi p {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #000000;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .siteFooter__smi p {
    font-size: 1.4rem;
  }
}
.siteFooter__smiItem {
  margin: 0;
}
.siteFooter .page__top {
  position: fixed;
  bottom: 25px;
  right: 60px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .siteFooter .page__top {
    bottom: 87px;
    right: 30px;
  }
}
@media screen and (min-width: 769px) {
  .siteFooter .page__top:hover {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0.5;
  }
}
.siteFooter .page__top span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #3CA6DE;
}
.siteFooter .page__top span img {
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.siteFooter .tomas_mascot {
  position: absolute;
  top: -100px;
  right: 60px;
}
@media screen and (max-width: 768px) {
  .siteFooter .tomas_mascot {
    top: -85px;
    right: 15px;
  }
}
.siteFooter .tomas_mascot img {
  width: 116px;
  height: 116px;
}
@media screen and (max-width: 768px) {
  .siteFooter .tomas_mascot img {
    width: 100px;
    height: 100px;
  }
}
.siteFooter__copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .siteFooter__copyright {
    font-size: 10px;
  }
}

/*====================================================================
hamMenuBtn
====================================================================*/
.hamMenuBtn {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamMenuBtn {
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .hamMenuBtn__border {
    width: 80%;
    height: 2px;
    background: #fff;
    display: block;
    position: absolute;
    left: 50%;
  }
  .hamMenuBtn__border:nth-child(1) {
    top: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-animation: HamBtnCloseTop 0.3s ease-in-out 0s forwards;
            animation: HamBtnCloseTop 0.3s ease-in-out 0s forwards;
  }
  .hamMenuBtn__border:nth-child(2) {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .hamMenuBtn__border:nth-child(3) {
    bottom: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-animation: HamBtnCloseBottom 0.3s ease-in-out 0s forwards;
            animation: HamBtnCloseBottom 0.3s ease-in-out 0s forwards;
  }
  .hamMenuBtn.is-active [class$=__border]:nth-child(1) {
    -webkit-animation: HamBtnOpenTop 0.3s ease-in-out 0s forwards;
            animation: HamBtnOpenTop 0.3s ease-in-out 0s forwards;
  }
  .hamMenuBtn.is-active [class$=__border]:nth-child(2) {
    opacity: 0;
  }
  .hamMenuBtn.is-active [class$=__border]:nth-child(3) {
    -webkit-animation: HamBtnOpenBottom 0.3s ease-in-out 0s forwards;
            animation: HamBtnOpenBottom 0.3s ease-in-out 0s forwards;
  }
}
/*====================================================================
hamMenuContent
====================================================================*/
.hamMenuContent {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamMenuContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    padding-top: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #666;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .hamMenuContent__pageList {
    -webkit-transition: all 0.2s ease-in-out 0.2s;
    transition: all 0.2s ease-in-out 0.2s;
    padding: 40px;
    background: #212121;
    overflow: hidden;
  }
  .hamMenuContent__pageItem {
    overflow: hidden;
  }
  .hamMenuContent__pageLink {
    -webkit-transition: all 0.2s ease-in-out 0.3s;
    transition: all 0.2s ease-in-out 0.3s;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.05em;
    padding: 10px;
    display: block;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .hamMenuContent__pageLink {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .hamMenuContent.is-active {
    -webkit-transform: none;
            transform: none;
  }
}
/*====================================================================
contentCenter
====================================================================*/
.contentCenter {
  width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1180px) {
  .contentCenter {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contentCenter {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*====================================================================
visualEditArea
====================================================================*/
.visualEditArea {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .visualEditArea {
    font-size: 1.3rem;
  }
}
.visualEditArea * + * {
  margin-top: 1.75em;
}
.visualEditArea a {
  color: #0077FF;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .visualEditArea a {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .visualEditArea a:hover {
    opacity: 0.6;
  }
}
.visualEditArea h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}
.visualEditArea h2 {
  margin-top: 2em;
  font-size: 3rem;
  line-height: 1.6;
}
.visualEditArea h3 {
  color: #0077FF;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}
.visualEditArea h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}
.visualEditArea h4::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #0077FF;
}
.visualEditArea h5, .visualEditArea h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.visualEditArea h1 + h2,
.visualEditArea h2 + h3,
.visualEditArea h3 + h4,
.visualEditArea h4 + h5,
.visualEditArea h5 + h6 {
  margin-top: 0.5em;
}
.visualEditArea p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .visualEditArea p {
    font-size: 1.3rem;
  }
}
.visualEditArea strong, .visualEditArea strong * {
  font-weight: bold;
}
.visualEditArea em, .visualEditArea em * {
  font-style: italic;
}
.visualEditArea ul {
  list-style-type: disc;
}
.visualEditArea ol {
  list-style-type: decimal;
}
.visualEditArea ul, .visualEditArea ol {
  margin-top: 1em;
  padding-left: 1.4em;
}
.visualEditArea ul li, .visualEditArea ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}
.visualEditArea sup, .visualEditArea sub {
  font-size: 1rem;
  line-height: 1 !important;
}
.visualEditArea hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #fff;
}
.visualEditArea blockquote {
  padding: 30px;
  background: #292929;
}
.visualEditArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #292929;
}
.visualEditArea table thead th, .visualEditArea table thead td {
  font-weight: bold;
  text-align: center;
}
.visualEditArea table tr th, .visualEditArea table tr td {
  padding: 15px 20px;
  border: #666 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.visualEditArea table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}
.visualEditArea img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}
.visualEditArea img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.visualEditArea img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
.visualEditArea .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.visualEditArea .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}
.visualEditArea .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}
.visualEditArea .gallery-columns-3 .gallery-item {
  width: calc((100% - 80px) / 3);
}

/*====================================================================
space
====================================================================*/
.space-s,
.space-m,
.space-l {
  border: none;
}

.space-s {
  padding-top: 30px;
}

.space-m {
  padding-top: 50px;
}

.space-l {
  padding-top: 80px;
}

/*====================================================================
bnrA
====================================================================*/
.bnrA {
  color: #0077FF;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 10px 90px 10px 0;
  position: relative;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .bnrA {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (max-width: 768px) {
  .bnrA {
    font-size: 1.3rem;
  }
}
.bnrA::before, .bnrA::after {
  content: "";
  position: absolute;
  bottom: 0;
}
.bnrA::before {
  width: 100%;
  height: 2px;
  left: 0;
  background: #0077FF;
}
.bnrA::after {
  width: 15px;
  height: 15px;
  display: block;
  right: 0;
  border-right: 3px solid #0077FF;
  -webkit-transform: translateX(-50%) skewX(60deg);
          transform: translateX(-50%) skewX(60deg);
}

/*====================================================================
bnrB
====================================================================*/
.bnrB {
  display: inline-block;
  position: relative;
}
.bnrB::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #002BFF;
}
@media screen and (min-width: 769px) {
  .bnrB::before {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .bnrB:hover::before {
    width: 100%;
  }
}
.bnrB__layer {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 15px 100px 15px 15px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bnrB__layer {
    font-size: 1.3rem;
  }
}
.bnrB__layer::before {
  content: "";
  width: 60px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
}
.bnrB__layer::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  border-right: 3px solid #fff;
  -webkit-transform: translate(-50%, -100%) skewX(60deg);
          transform: translate(-50%, -100%) skewX(60deg);
}

/*====================================================================
bnrC
====================================================================*/
.bnrC {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 20px 80px;
  border: 2px solid #0077FF;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .bnrC {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .bnrC {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .bnrC:hover {
    background: #0077FF;
  }
}

/*====================================================================
gridArea
====================================================================*/
.gridArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 -1% -40px;
}
.gridArea__col {
  padding: 0 1%;
  margin-bottom: 40px;
}
.gridArea__col.u-col-1 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 8.3333333333%;
      flex-basis: 8.3333333333%;
}
.gridArea__col.u-col-2 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 16.6666666667%;
      flex-basis: 16.6666666667%;
}
.gridArea__col.u-col-3 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
.gridArea__col.u-col-4 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 33.3333333333%;
      flex-basis: 33.3333333333%;
}
.gridArea__col.u-col-5 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 41.6666666667%;
      flex-basis: 41.6666666667%;
}
.gridArea__col.u-col-6 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.gridArea__col.u-col-7 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 58.3333333333%;
      flex-basis: 58.3333333333%;
}
.gridArea__col.u-col-8 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 66.6666666667%;
      flex-basis: 66.6666666667%;
}
.gridArea__col.u-col-9 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}
.gridArea__col.u-col-10 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 83.3333333333%;
      flex-basis: 83.3333333333%;
}
.gridArea__col.u-col-11 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 91.6666666667%;
      flex-basis: 91.6666666667%;
}
.gridArea__col.u-col-12 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  .gridArea__col.u-col-sp-1 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
  }
  .gridArea__col.u-col-sp-2 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
  }
  .gridArea__col.u-col-sp-3 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .gridArea__col.u-col-sp-4 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
  }
  .gridArea__col.u-col-sp-5 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
  }
  .gridArea__col.u-col-sp-6 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .gridArea__col.u-col-sp-7 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
  }
  .gridArea__col.u-col-sp-8 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
  .gridArea__col.u-col-sp-9 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .gridArea__col.u-col-sp-10 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
  }
  .gridArea__col.u-col-sp-11 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
  }
  .gridArea__col.u-col-sp-12 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.gridArea__col img {
  width: 100%;
}

/*====================================================================
card
====================================================================*/
.card {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .card:hover [class$=__thumb] {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .card {
    border-radius: 7px;
  }
}
@media screen and (min-width: 769px) {
  .card__thumb {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
.card__textArea {
  width: 100%;
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(16, 16, 16, 0.8);
}
@media screen and (max-width: 768px) {
  .card__textArea {
    padding: 5px 7px;
  }
}
.card__time {
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .card__time {
    font-size: 1.3rem;
  }
}
.card__postTitle {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .card__postTitle {
    font-size: 1.3rem;
  }
}

/*====================================================================
tabArea
====================================================================*/
.tabArea__btnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.tabArea__btnItem {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin: 0 2px;
}
.tabArea__btnItem:nth-child(1) {
  margin-left: 0;
}
.tabArea__btnItem:nth-last-child(1) {
  margin-right: 0;
}
.tabArea__btnLink {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 20px 15px;
  display: block;
  background: #101010;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tabArea__btnLink {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink:hover {
    background: #fff;
    color: #101010;
  }
}
@media screen and (max-width: 768px) {
  .tabArea__btnLink {
    padding: 5px 10px;
  }
}
.tabArea__btnLink.is-open {
  background: #666;
  cursor: default;
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink.is-open:hover {
    background: #666;
    color: #fff;
  }
}
.tabArea__contentItem {
  padding: 40px 50px;
  background: #666;
  display: none;
}
@media screen and (max-width: 768px) {
  .tabArea__contentItem {
    padding: 20px 15px;
  }
}
.tabArea__contentItem.is-open {
  display: block;
}

/*====================================================================
accordionBtn
====================================================================*/
.accordionBtn {
  padding: 20px;
  border: 1px solid #fff;
  display: block;
  position: relative;
}
@media screen and (min-width: 769px) {
  .accordionBtn {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (max-width: 768px) {
  .accordionBtn {
    padding: 10px 15px;
  }
}
.accordionBtn.is-open [class$=__icon]::after {
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .accordionBtn:hover {
    background: #fff;
  }
  .accordionBtn:hover [class$=__text] {
    color: #101010;
  }
  .accordionBtn:hover [class$=__icon]::before, .accordionBtn:hover [class$=__icon]::after {
    background: #101010;
  }
}
.accordionBtn__text {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .accordionBtn__text {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
.accordionBtn__icon {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  width: 50px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .accordionBtn__icon {
    width: 35px;
  }
}
.accordionBtn__icon::before, .accordionBtn__icon::after {
  content: "";
  width: 30px;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .accordionBtn__icon::before, .accordionBtn__icon::after {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (max-width: 768px) {
  .accordionBtn__icon::before, .accordionBtn__icon::after {
    width: 15px;
  }
}
.accordionBtn__icon::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.accordionBtn__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/*====================================================================
accordionContent
====================================================================*/
.accordionContent {
  padding: 30px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: none;
}
@media screen and (max-width: 768px) {
  .accordionContent {
    padding: 20px 15px;
  }
}

/*====================================================================
modalWrap
====================================================================*/
.modalWrap {
  display: block;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .modalWrap img {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .modalWrap:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.modalWrap__button {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #0077FF;
}
@media screen and (max-width: 768px) {
  .modalWrap__button {
    width: 25px;
    height: 25px;
  }
}
.modalWrap__button::before, .modalWrap__button::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .modalWrap__button::before, .modalWrap__button::after {
    width: 15px;
    height: 1px;
  }
}
.modalWrap__button::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modalWrap__button::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/*====================================================================
postListA
====================================================================*/
.postListA__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .postListA__item {
    padding: 7px 0;
  }
}
.postListA__time {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 5px 20px 5px 0;
}
@media screen and (max-width: 768px) {
  .postListA__time {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .postListA__time {
    padding: 3px 10px 3px 0;
  }
}
.postListA__catLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  min-width: 140px;
  padding: 5px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .postListA__catLabel {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .postListA__catLabel {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .postListA__catLabel:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .postListA__catLabel {
    min-width: 90px;
    padding: 3px;
  }
}
.postListA__postLink {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .postListA__postLink {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .postListA__postLink {
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .postListA__postLink:hover {
    color: #0077FF;
  }
}
@media screen and (max-width: 768px) {
  .postListA__postLink {
    padding-left: 10px;
  }
}

/*====================================================================
lowerPageFv
====================================================================*/
.lowerPageFv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 250px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .lowerPageFv {
    height: 125px;
  }
}
.lowerPageFv::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(16, 16, 16, 0.5);
}
.lowerPageFv__pageTitle {
  position: relative;
  font-size: 4rem;
  text-align: center;
  z-index: 1;
}

.lp {
  position: relative;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .lp {
    padding: 15px 0;
  }
}
.lp__main {
  margin-top: 70px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .lp__main {
    margin-top: 60px;
    padding-bottom: 0;
  }
}
.lp__main .col3__img {
  margin-bottom: 20px;
}
.lp__main .col3__info .date {
  margin-bottom: 5px;
}
.lp__main .col3__info .ttl {
  margin-bottom: 7px;
}
.lp .lp_accent .accent__img {
  position: absolute;
}
.lp .lp_accent .accent__img01 {
  top: 100px;
  right: -58px;
  width: 240px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
.lp .lp_accent .accent__img02 {
  top: 32%;
  left: -110px;
  width: 280px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.lp .lp_accent .accent__img03 {
  top: 50%;
  left: -115px;
  width: 450px;
  -webkit-transform: rotate(-11deg);
          transform: rotate(-11deg);
}
.lp .lp_accent .accent__img04 {
  bottom: 29%;
  right: -30px;
  width: 86px;
  -webkit-transform: rotate(32deg);
          transform: rotate(32deg);
}
.lp .lp_accent .accent__img05 {
  bottom: 82px;
  right: -54px;
  width: 167px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

/*-----------------------------------------------
breadArea
------------------------------------------------*/
.bread-bottom .breadArea {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .bread-bottom .breadArea {
    margin-bottom: 10px;
  }
}

.breadArea__pageList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadArea__pageLink {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.breadArea__pageLink:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.breadArea__pageItem {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
}
.breadArea__pageItem:not(:last-child) {
  margin-right: 15px;
  padding-right: 23px;
}
@media screen and (max-width: 768px) {
  .breadArea__pageItem:not(:last-child) {
    margin-right: 10px;
  }
}
.breadArea__pageItem:not(:last-child)::before {
  content: "";
  background: url("../images/common/icon-arrowright.png") no-repeat center/contain;
  width: 8px;
  height: 12px;
  position: absolute;
  top: 1px;
  right: 0;
}

/*-----------------------------------------------
wp-pagenavi
------------------------------------------------*/
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: none;
}
.wp-pagenavi .extend {
  font-size: 16px;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    margin: -12px 10px 0;
  }
}
.wp-pagenavi .pagination__control-link,
.wp-pagenavi .pagination__current-page,
.wp-pagenavi .current {
  font-size: 16px;
  font-weight: bold;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #EDEDED;
  margin: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .pagination__control-link,
  .wp-pagenavi .pagination__current-page,
  .wp-pagenavi .current {
    width: 45px;
    height: 45px;
  }
}
.wp-pagenavi .current,
.wp-pagenavi .pagination__control-link:hover,
.wp-pagenavi .pagination__current-page:hover {
  color: #fff;
  background: #000;
  border-color: transparent;
}
.wp-pagenavi .pagination__control-link {
  font-size: 0;
}
.wp-pagenavi .pagination__control-link::before {
  content: "";
  background: url("../images/common/icon-arrowfeather.svg") no-repeat center/contain;
  width: 11.5px;
  height: 11.5px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wp-pagenavi .pagination__control-link:hover::before {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.wp-pagenavi .pagination__control-link--previous::before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/*====================================================================
COMMON LAYOUT
====================================================================*/
* {
  color: #000;
}

html {
  font-size: 62.5%;
  margin-top: 0 !important;
}

body {
  background: url("../images/common/bg.jpg") no-repeat top/cover;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  overflow-x: hidden;
}
body.no-scroll {
  overflow-y: hidden;
}

/*-----------------------------------------------
PC/SP 出し分け
------------------------------------------------*/
.u-pcDb {
  display: block;
}

.u-pcDib {
  display: inline-block;
}

.u-pcDin {
  display: inline;
}

.u-pcDf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-pcDt {
  display: table;
}

.u-pcDtc {
  display: table-cell;
}

.u-spDb,
.u-spDib,
.u-spDin,
.u-spDf,
.u-spDt,
.u-spDtc {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-pcDb,
  .u-pcDib,
  .u-pcDin,
  .u-pcDf,
  .u-pcDt,
  .u-pcDtc {
    display: none;
  }
  .u-spDb {
    display: block;
  }
  .u-spDib {
    display: inline-block;
  }
  .u-spDin {
    display: inline;
  }
  .u-spDf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-spDt {
    display: table;
  }
  .u-spDtc {
    display: table-cell;
  }
}
.hidden-pc {
  display: none;
}

@media screen and (max-width: 1181px) {
  .hidden-pc {
    display: block;
  }
  .hidden-sp {
    display: none;
  }
}
/*-----------------------------------------------
サイトコンテンツ
------------------------------------------------*/
.siteContent {
  min-height: calc(100vh - 320px);
}
@media screen and (max-width: 768px) {
  .siteContent {
    min-height: calc(100vh - 50px);
  }
}

/*-----------------------------------------------
WPツールバー
------------------------------------------------*/
@media screen and (max-width: 600px) {
  .is_login_user #wpadminbar {
    position: fixed;
  }
}
/*-----------------------------------------------
mainWrap
------------------------------------------------*/
.mainWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 100px;
}
@media screen and (max-width: 1181px) {
  .mainWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 60px;
  }
}
.mainWrap__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*-----------------------------------------------
container
------------------------------------------------*/
.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1439px) {
  .container {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}

/*-----------------------------------------------
tag
------------------------------------------------*/
.tag {
  margin-top: 140px;
}
@media screen and (max-width: 991px) {
  .tag {
    margin-top: 80px;
  }
}
.tag__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 36.5px 70px;
  background: rgba(255, 200, 46, 0.08);
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .tag__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
  }
}
.tag__wrap .accent__img01 {
  width: 165px;
  top: -11%;
  right: -1%;
}
.tag__wrap .accent__img02 {
  width: 167px;
  bottom: -20%;
  left: 0%;
}
.tag__left {
  width: 150px;
}
@media screen and (max-width: 1199px) {
  .tag__left {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
.tag__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 80px;
}
@media screen and (max-width: 1199px) {
  .tag__right {
    padding-left: 0;
  }
}
.tag__ttl {
  font-size: 60px;
  font-weight: 500;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .tag__ttl {
    font-size: 36px;
  }
}
.tag__desc {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 7px;
}
.tagSearch {
  position: relative;
}
.tagSearch input {
  border: 1px solid rgba(144, 144, 144, 0.2);
  color: #909090;
  width: 100%;
  border-radius: 50px;
  background: #fff;
  padding: 17px 21px;
  font-size: 16px;
}
.tagSearch input::-webkit-input-placeholder {
  line-height: 0;
}
.tagSearch input::-moz-placeholder {
  line-height: 0;
}
.tagSearch input:-ms-input-placeholder {
  line-height: 0;
}
.tagSearch input::-ms-input-placeholder {
  line-height: 0;
}
.tagSearch input::placeholder {
  line-height: 0;
}
.tagSearch button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 21px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tagList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tagList li {
  margin: 5px;
}
@media screen and (max-width: 768px) {
  .tagList li {
    margin: 4px;
  }
}
.tagList li a {
  font-size: 12px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(144, 144, 144, 0.2);
  text-transform: uppercase;
  display: block;
  padding: 14px 21px 15px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .tagList li a:hover {
    background: rgba(144, 144, 144, 0.2);
  }
}
@media screen and (max-width: 768px) {
  .tagList li a {
    padding: 5px 15px;
  }
}

/*-----------------------------------------------
sec__ttl, sec__desc
------------------------------------------------*/
section[class*=topSec]:nth-child(n+2) {
  margin-top: 140px;
}
@media screen and (max-width: 991px) {
  section[class*=topSec]:nth-child(n+2) {
    margin-top: 78px;
    overflow-x: hidden;
  }
}

.sec__desc {
  margin-bottom: 45px;
}
@media screen and (max-width: 991px) {
  .sec__desc {
    margin-bottom: 35px;
  }
}
.sec__desc p {
  font-size: 16px;
  line-height: 1.75;
}

.sec__ttl01 {
  margin-bottom: 43px;
}
@media screen and (max-width: 991px) {
  .sec__ttl01 {
    margin-bottom: 30px;
  }
}
.sec__ttl01 span {
  font-size: 60px;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.16;
  position: relative;
  padding-left: 55px;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .sec__ttl01 span {
    font-size: 36px;
    padding-left: 47px;
  }
}
.sec__ttl01 span::before {
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  left: 0;
  top: 17px;
}
@media screen and (max-width: 991px) {
  .sec__ttl01 span::before {
    top: 3px;
  }
}
.sec__ttl01-pink span::before {
  background: url("../images/common/icon-ttl01.svg") no-repeat center/contain;
}
.sec__ttl01-orange span::before {
  background: url("../images/common/icon-ttl02.svg") no-repeat center/contain;
}
.sec__ttl01-green span::before {
  background: url("../images/common/icon-ttl03.svg") no-repeat center/contain;
}
.sec__ttl01-blue span::before {
  background: url("../images/common/icon-ttl04.svg") no-repeat center/contain;
}
.sec__ttl01-violet span::before {
  background: url("../images/common/icon-ttl05.svg") no-repeat center/contain;
}
.sec__ttl01-multiColor span::before {
  background: url("../images/common/icon-ttl06.svg") no-repeat center/contain;
}

.sec__ttl02 {
  text-align: center;
  margin-bottom: 40px;
}
.sec__ttl02-ttl {
  font-size: 40px;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  font-weight: bold;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec__ttl02-ttl {
    font-size: 28px;
    padding-bottom: 25px;
    margin-bottom: 30px;
  }
}
.sec__ttl02-ttl::after {
  content: "";
  background: #000;
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.sec__ttl02-txt {
  font-size: 16px;
}

/*-----------------------------------------------
accent
------------------------------------------------*/
.accent {
  position: relative;
}
.accent__img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  pointer-events: none;
}

/*-----------------------------------------------
col2
------------------------------------------------*/
.col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -17px -15px;
}
@media screen and (max-width: 575px) {
  .col2 {
    margin: -17px 0;
  }
}
.col2__item {
  padding: 17px 15px;
  width: 50%;
}
@media screen and (max-width: 575px) {
  .col2__item {
    padding: 17px 0;
    width: 100%;
  }
}
.col2__img {
  overflow: hidden;
  position: relative;
  border-radius: 38px;
}
.col2__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.col2__img--orange::before {
  background: rgba(157, 96, 31, 0.4);
}
.col2__img--green::before {
  background: rgba(35, 104, 105, 0.4);
}
.col2__img--blue::before {
  background: rgba(45, 121, 162, 0.4);
}
.col2__img--violet::before {
  background: rgba(95, 42, 100, 0.4);
}
@media screen and (min-width: 769px) {
  .col2__link:hover .view-link::after {
    right: -5px;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
  }
}
.col2__info {
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.col2__info .ttl {
  font-size: 40px;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.175;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .col2__info .ttl {
    font-size: 30px;
  }
}
.col2__info span {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  padding-right: 27px;
}
@media screen and (max-width: 575px) {
  .col2__info span {
    font-size: 11px;
    padding-right: 16px;
  }
}
.col2__info span::after {
  content: "";
  height: 12px;
  width: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/common/icon-arrowfeather.svg") no-repeat center/contain;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.col2__link {
  display: block;
}

/*-----------------------------------------------
col3
------------------------------------------------*/
.col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -30px -7px;
}
@media screen and (max-width: 575px) {
  .col3 {
    margin: -30px 0;
  }
}
.col3__item {
  width: 33.33%;
  padding: 30px 7px;
}
@media screen and (max-width: 991px) {
  .col3__item {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .col3__item {
    width: 100%;
    padding: 25px 0;
  }
}
.col3__link {
  display: block;
}
@media screen and (min-width: 769px) {
  .col3__link:hover .col3__img img {
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
.col3__img {
  overflow: hidden;
  border-radius: 38px;
  position: relative;
  margin-bottom: 15px;
}
.col3__img img {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.col3__info .date {
  margin-bottom: 11px;
}
.col3__info .date * {
  font-size: 12px;
  color: #909090;
  font-weight: bold;
}
.col3__info .ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.62;
}
.col3__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
  max-width: 210px;
}
.col3__tag li {
  font-size: 12px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(144, 144, 144, 0.2);
  text-transform: uppercase;
  display: block;
  margin: 5px 5px 0 0;
  padding: 5px 10px 6px;
  font-weight: 500;
}
.col3--js.slick-initialized {
  margin: -30px -15px;
}
.col3--js.slick-initialized .slick-list {
  padding: 0 40px 0 5px;
}
.col3--js.slick-initialized .col3__item {
  padding: 30px 10px;
}

/*-----------------------------------------------
btn
------------------------------------------------*/
.btn01 {
  margin: 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.btn01__link {
  display: block;
  font-size: 18px;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.22;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn01__link span {
  background: #EC483C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  width: 56px;
  border-radius: 100%;
  margin-left: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn01__link span img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 19px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .btn01__link:hover {
    color: #EC483C;
  }
  .btn01__link:hover span img {
    margin-left: 18px;
  }
}
.btn01__link-pink span {
  background: #EF6298;
}
@media screen and (min-width: 769px) {
  .btn01__link-pink:hover {
    color: #EF6298;
  }
  .btn01__link-pink:hover span {
    background: #EF6298;
  }
}
.btn01__link-orange span {
  background: #FE8C14;
}
@media screen and (min-width: 769px) {
  .btn01__link-orange:hover {
    color: #FE8C14;
  }
  .btn01__link-orange:hover span {
    background: #FE8C14;
  }
}
.btn01__link-green span {
  background: #2AAC92;
}
@media screen and (min-width: 769px) {
  .btn01__link-green:hover {
    color: #2AAC92;
  }
  .btn01__link-green:hover span {
    background: #2AAC92;
  }
}
.btn01__link-blue span {
  background: #3CA6DE;
}
@media screen and (min-width: 769px) {
  .btn01__link-blue:hover {
    color: #3CA6DE;
  }
  .btn01__link-blue:hover span {
    background: #3CA6DE;
  }
}
.btn01__link-violet span {
  background: #B462BC;
}
@media screen and (min-width: 769px) {
  .btn01__link-violet:hover {
    color: #B462BC;
  }
  .btn01__link-violet:hover span {
    background: #B462BC;
  }
}

/*====================================================================
topPageFvSec
====================================================================*/
/*-----------------------------------------------
topBanner
------------------------------------------------*/
.topBanner {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 40px auto 140px;
}
@media screen and (max-width: 768px) {
  .topBanner {
    overflow-x: hidden;
    margin-bottom: 80px;
  }
}
.topBanner .slick-list {
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .topBanner .slick-list {
    overflow: hidden;
  }
}
.topBanner__slick {
  padding-top: 25px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.topBanner__slick-bg {
  position: relative;
}
.topBanner__slick-bg .accent__img01 {
  width: 136px;
  top: 0;
  left: 13.46%;
}
@media screen and (max-width: 768px) {
  .topBanner__slick-bg .accent__img01 {
    width: 64px;
    top: 5%;
  }
}
.topBanner__slick-bg .accent__img02 {
  width: 214px;
  top: 5.2%;
  left: 2%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .topBanner__slick-bg .accent__img02 {
    left: 6%;
    top: 10%;
    width: 79px;
  }
}
.topBanner__slick-bg .accent__img02 img {
  -webkit-transform: rotate(23deg);
          transform: rotate(23deg);
}
.topBanner__slick-bg .accent__img03 {
  width: 140px;
  top: 25.4%;
  left: 0.5%;
}
@media screen and (max-width: 768px) {
  .topBanner__slick-bg .accent__img03 {
    left: 3%;
    width: 49px;
    top: 20%;
  }
}
.topBanner__slick-bg .accent__img03 img {
  -webkit-transform: rotate(19deg);
          transform: rotate(19deg);
}
.topBanner__slick-bg .accent__img04 {
  width: 205px;
  top: 1%;
  right: 2%;
}
@media screen and (max-width: 768px) {
  .topBanner__slick-bg .accent__img04 {
    right: 0%;
    width: 87px;
  }
}
.topBanner__slick-bg .accent__img05 {
  width: 303px;
  bottom: -2%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .topBanner__slick-bg .accent__img05 {
    width: 133px;
  }
}
@media screen and (max-width: 768px) {
  .topBanner__slick-item canvas {
    height: initial;
  }
}
.topBanner__slick-item img {
  -webkit-mask-image: url("../images/topPage/banner-mask.png");
  mask-image: url("../images/topPage/banner-mask.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  height: 630px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .topBanner__slick-item img {
    height: initial;
    aspect-ratio: 375/250;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 769px) {
  .topBanner__news-slick-item {
    top: -20px;
  }
}
.topBanner__news-slick-item .date {
  margin-bottom: 11px;
}
.topBanner__news-slick-item .date * {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .topBanner__news-slick-item .date * {
    font-size: 12px;
  }
}
.topBanner__news-slick-item .ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.58;
  margin-bottom: 0;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: clamp(18px, 2vw, 22px);
}
@media screen and (max-width: 768px) {
  .topBanner__news-slick-item .ttl {
    font-size: 18px;
  }
}
.topBanner__arrow {
  height: 56px;
  width: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #3ca6de;
  border-radius: 100%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .topBanner__arrow {
    height: 40px;
    width: 40px;
  }
}
.topBanner__arrow img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.topBanner__arrow--prev img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.topBanner__slides .pause-btn img {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .topBanner__slides .pause-btn img {
    width: 28px;
  }
}
.topBanner__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  padding: 0 60px;
}
@media screen and (min-width: 769px) {
  .topBanner__wrap {
    height: 163px;
  }
}
@media screen and (max-width: 768px) {
  .topBanner__wrap {
    position: relative;
    padding: 0 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: -60px;
  }
}
.topBanner__wrap-left {
  max-width: 480px;
  width: 50%;
  padding-bottom: 0;
}
@media screen and (min-width: 769px) {
  .topBanner__wrap-left {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .topBanner__wrap-left {
    max-width: 100%;
    width: 100%;
    margin-top: 40px;
    padding-bottom: 0;
  }
}
.topBanner__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.topBanner__slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .topBanner__slides {
    padding: 0 10px;
  }
}
.topBanner__slides p {
  font-size: 16px;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
}
@media screen and (max-width: 768px) {
  .topBanner__slides p {
    font-size: 14px;
  }
}
.topBanner__slides p .slide-current {
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .topBanner__slides p .slide-current {
    margin-right: 8px;
  }
}
.topBanner__slides p .slide-total {
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .topBanner__slides p .slide-total {
    margin-left: 8px;
  }
}
.topBanner__slides .pause-btn {
  margin-left: 12px;
  cursor: pointer;
}
.topBanner .col3__tag {
  margin: 0;
  display: none;
}
.topBanner .col3__tag li {
  display: none;
}
@media screen and (max-width: 768px) {
  .topBanner .col3__tag li {
    display: none;
  }
}

/*-----------------------------------------------
topAll
------------------------------------------------*/
.topAll {
  margin-top: 160px;
}
.topAll .col3 {
  margin: -15px;
}
.topAll .col3__item {
  padding: 15px;
}
.topAll .col3__img {
  position: relative;
  margin-bottom: 0;
  padding-top: 133.3333333333%;
}
@media screen and (max-width: 768px) {
  .topAll .col3__img {
    padding-top: 75.0724637681%;
  }
}
.topAll .col3__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topAll .col3__link {
  position: relative;
}
.topAll .col3__info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 40px 15px 25px;
  border-radius: 38px;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(8%, rgba(0, 0, 0, 0.0788909314)), color-stop(40%, rgba(0, 0, 0, 0.501860119)), to(rgb(0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.0788909314) 8%, rgba(0, 0, 0, 0.501860119) 40%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.topAll .col3__info .ttl,
.topAll .col3__info .date time {
  color: #fff;
  margin-bottom: 4px;
}
.topAll .col3__info .date time {
  font-weight: 500;
}
.topAll .col3__tag {
  max-width: unset;
}
.topAll .col3__tag li {
  color: #fff;
  border-radius: 38px;
  border: 1px solid #fff;
  margin: 5px 5px 0 0;
  padding: 5px 10px 6px;
  background: initial;
}
.topAll .accent__img01 {
  width: 332px;
  top: 3%;
  left: -11%;
}
.topAll .accent__img02 {
  width: 150px;
  bottom: 5%;
  right: -6%;
}

/*-----------------------------------------------
topCommunity
------------------------------------------------*/
@media screen and (min-width: 769px) {
  .topCommunity .col3__link:hover .col3__img::before {
    background: rgba(190, 105, 16, 0.4);
  }
}
.topCommunity .imgWrap {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 66.35%;
  overflow: hidden;
  border-radius: 38px;
}
.topCommunity .imgWrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.topCommunity .accent__img01 {
  width: 414px;
  bottom: 4%;
  left: -6.15%;
}
.topCommunity .accent__img02 {
  width: 82px;
  top: 27%;
  right: -2.71%;
}

/*-----------------------------------------------
topSustain
------------------------------------------------*/
@media screen and (min-width: 769px) {
  .topSustain .col3__link:hover .col3__img::before {
    background: rgba(35, 104, 105, 0.4);
  }
}
.topSustain .imgWrap {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 66.35%;
  overflow: hidden;
  border-radius: 38px;
}
.topSustain .imgWrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.topSustain .accent__img01 {
  width: 335px;
  top: -1%;
  right: -2%;
}
.topSustain .accent__img02 {
  width: 91px;
  bottom: 38%;
  left: -4.69%;
}

/*-----------------------------------------------
topBusiness
------------------------------------------------*/
@media screen and (min-width: 769px) {
  .topBusiness .col3__link:hover .col3__img::before {
    background: rgba(45, 121, 162, 0.4);
  }
}
.topBusiness .imgWrap {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 66.35%;
  overflow: hidden;
  border-radius: 38px;
}
.topBusiness .imgWrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.topBusiness .accent__img01 {
  width: 251px;
  top: 0%;
  right: 0;
}
.topBusiness .accent__img02 {
  width: 316px;
  bottom: 8%;
  left: -13.33%;
}

/*-----------------------------------------------
topSpecial
------------------------------------------------*/
.topSpecial {
  margin-top: 40px;
}
.topSpecial__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1181px) {
  .topSpecial__wrap {
    max-width: 768px;
    margin: 0 auto;
  }
}
.topSpecial__left {
  width: 41.67%;
  margin-right: 50px;
}
@media screen and (max-width: 1181px) {
  .topSpecial__left {
    width: 100%;
    margin-right: 0;
  }
}
.topSpecial__left .sec__ttl01 {
  margin-bottom: 37px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .topSpecial__left .sec__ttl01 {
    margin-bottom: 28px;
  }
}
.topSpecial__left .sec__desc {
  margin-bottom: 13px;
}
.topSpecial__left .sec__desc h3 {
  font-size: 16px;
  line-height: 1.75;
}
.topSpecial__left .topSpecial__img {
  display: none;
  margin-bottom: 30px;
}
@media screen and (max-width: 1181px) {
  .topSpecial__left .topSpecial__img {
    display: block;
  }
}
.topSpecial__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 769px) {
  .topSpecial__right a:hover img {
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
@media screen and (min-width: 769px) {
  .topSpecial__right img.hover {
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
.topSpecial__img {
  position: relative;
  padding: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .topSpecial__img {
    width: calc(100% - 25px);
  }
}
.topSpecial__img::after {
  content: "";
  height: calc(100% - 35px);
  width: calc(100% - 5px);
  position: absolute;
  bottom: 10px;
  right: -35px;
  background: #c87dd0;
  border-radius: 38px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .topSpecial__img::after {
    right: -25px;
    bottom: 20px;
  }
}
.topSpecial__imgWrap {
  border-radius: 38px;
  z-index: 1;
  overflow: hidden;
}
.topSpecial__imgWrap img {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.topSpecial__tagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
  max-width: 170px;
}
.topSpecial__tagList li {
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.topSpecial .accent__img01 {
  width: 310px;
  top: 25%;
  left: 4.16%;
}

/*-----------------------------------------------
tag
------------------------------------------------*/
.is_home .mainWrap__left .tagList {
  margin: 23px -10px 0;
}

/*====================================================================
siteSidebar
====================================================================*/
.siteSidebar {
  padding: 60px 40px;
  width: 360px;
}
@media screen and (max-width: 991px) {
  .siteSidebar {
    width: 100%;
    padding: 30px 15px 80px;
  }
}
.siteSidebar__ttl {
  margin-top: 5px;
  font-size: 18px;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .siteSidebar__ttl {
    font-size: 24px;
  }
}
.siteSidebar__ttl span {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 14px;
  display: block;
  font-weight: 400;
  margin-top: 7px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .siteSidebar__ttl span {
    margin-top: 20px;
  }
}
.siteSidebar__tagSearch {
  margin-top: 25px;
}
.siteSidebar__tagList {
  margin-top: 13px;
}
.siteSidebar__tagList li a {
  padding: 14px 21px 15px;
}
.siteSidebar__paintIcon {
  max-width: 139px;
  margin: 0 auto;
  margin-left: 90px;
}
@media screen and (max-width: 768px) {
  .siteSidebar__paintIcon {
    margin-left: 118px;
  }
}
.siteSidebar__articles {
  border-top: 1px solid rgba(144, 144, 144, 0.2);
  margin: 56px 0 0;
  padding-top: 59px;
}
@media screen and (max-width: 991px) {
  .siteSidebar__articles {
    max-width: 360px;
    margin: 0 auto;
    padding-top: 10px;
  }
}
.siteSidebar__articlesList {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .siteSidebar__articlesList {
    padding: 0 15px;
  }
}
.siteSidebar__articlesLink {
  display: block;
}
@media screen and (min-width: 769px) {
  .siteSidebar__articlesLink:hover .imgWrap img {
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
.siteSidebar__articlesItem .imgWrap {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 73.5714285714%;
  overflow: hidden;
  border-radius: 38px;
}
@media screen and (max-width: 768px) {
  .siteSidebar__articlesItem .imgWrap {
    padding-top: 66.3492063492%;
  }
}
.siteSidebar__articlesItem .imgWrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.siteSidebar__articlesItem:not(:first-child) {
  margin-top: 40px;
}
.siteSidebar__articlesLink {
  display: block;
}
.siteSidebar__articlesLink .date {
  color: #909090;
  font-size: 12px;
  font-weight: bold;
  margin: 11px 0 13px;
}
.siteSidebar__articlesLink .ttl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}
.siteSidebar__articlesLink .tag {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 5px;
}

/*====================================================================
single page
====================================================================*/
.singleSec .body .module-speechBubble__img .imgWrap, .singleSec .body .module-video .imgWrap, .singleSec .body .module-profile .imgWrap, .singleSec .body .module-textTwoImageGroup_field .txtImg__col-img .imgWrap, .singleSec .body .module-imageGroup.imageCenter .imgCaption .imgWrap, .singleSec .body .module-imageGroup .imgCaption .imgWrap, .singleSec .body .module-imageGroup .imgGroup .imgWrap {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 50%;
  overflow: hidden;
  border-radius: 38px;
}
.singleSec .body .module-speechBubble__img .imgWrap img, .singleSec .body .module-video .imgWrap img, .singleSec .body .module-profile .imgWrap img, .singleSec .body .module-textTwoImageGroup_field .txtImg__col-img .imgWrap img, .singleSec .body .module-imageGroup.imageCenter .imgCaption .imgWrap img, .singleSec .body .module-imageGroup .imgCaption .imgWrap img, .singleSec .body .module-imageGroup .imgGroup .imgWrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.singleSec .body .module-textTwoImageGroup_field .txtImg__col *, .singleSec .body .module-contentEditor * {
  color: inherit;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h1, .singleSec .body .module-contentEditor h1,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h2,
.singleSec .body .module-contentEditor h2,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h3,
.singleSec .body .module-contentEditor h3,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h4,
.singleSec .body .module-contentEditor h4,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h5,
.singleSec .body .module-contentEditor h5,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h6,
.singleSec .body .module-contentEditor h6,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .faux-heading,
.singleSec .body .module-contentEditor .faux-heading {
  -webkit-font-feature-settings: "lnum";
          font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-weight: 500;
  letter-spacing: -0.0415625em;
  line-height: 1.25;
  margin: 3.5rem 0 2rem;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h1, .singleSec .body .module-contentEditor h1,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .heading-size-1,
.singleSec .body .module-contentEditor .heading-size-1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.138888889;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h2, .singleSec .body .module-contentEditor h2,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .heading-size-2,
.singleSec .body .module-contentEditor .heading-size-2 {
  font-size: 32px;
  font-weight: 600;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h3, .singleSec .body .module-contentEditor h3,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .heading-size-3,
.singleSec .body .module-contentEditor .heading-size-3 {
  font-size: 28px;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h4, .singleSec .body .module-contentEditor h4,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .heading-size-4,
.singleSec .body .module-contentEditor .heading-size-4 {
  font-size: 24px;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h5, .singleSec .body .module-contentEditor h5,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .heading-size-5,
.singleSec .body .module-contentEditor .heading-size-5 {
  font-size: 21px;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col h6, .singleSec .body .module-contentEditor h6,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .heading-size-6,
.singleSec .body .module-contentEditor .heading-size-6 {
  font-size: 16px;
  letter-spacing: 0.03125em;
  text-transform: uppercase;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col p, .singleSec .body .module-contentEditor p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-textTwoImageGroup_field .txtImg__col p, .singleSec .body .module-contentEditor p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col strong, .singleSec .body .module-contentEditor strong {
  font-weight: 600;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col ol, .singleSec .body .module-contentEditor ol,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col ul,
.singleSec .body .module-contentEditor ul {
  padding-left: 1.4rem;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col ol li, .singleSec .body .module-contentEditor ol li,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col ul li,
.singleSec .body .module-contentEditor ul li {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-textTwoImageGroup_field .txtImg__col ol li, .singleSec .body .module-contentEditor ol li,
  .singleSec .body .module-textTwoImageGroup_field .txtImg__col ul li,
  .singleSec .body .module-contentEditor ul li {
    font-size: 15px;
    line-height: 1.6;
  }
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col ol li + li, .singleSec .body .module-contentEditor ol li + li,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col ul li + li,
.singleSec .body .module-contentEditor ul li + li {
  margin-top: 0.5em;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col ul, .singleSec .body .module-contentEditor ul {
  list-style: disc;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col ol, .singleSec .body .module-contentEditor ol {
  list-style: decimal;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col a, .singleSec .body .module-contentEditor a {
  font-size: 16px;
  line-height: 1.6;
  color: #0077FF;
  text-decoration: underline;
  word-wrap: break-word;
}
@media screen and (min-width: 769px) {
  .singleSec .body .module-textTwoImageGroup_field .txtImg__col a, .singleSec .body .module-contentEditor a {
    line-height: 2;
  }
  .singleSec .body .module-textTwoImageGroup_field .txtImg__col a:hover, .singleSec .body .module-contentEditor a:hover {
    text-decoration: none;
  }
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col img, .singleSec .body .module-contentEditor img {
  max-width: 100%;
  width: auto;
  margin-bottom: 10px;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .aligncenter, .singleSec .body .module-contentEditor .aligncenter {
  display: block;
  margin: 0 auto;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .alignright, .singleSec .body .module-contentEditor .alignright {
  float: right;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .alignleft, .singleSec .body .module-contentEditor .alignleft {
  float: left;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col table, .singleSec .body .module-contentEditor table {
  border: 1px solid #dcd7ca;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: 16px;
  margin: 40px 0;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .alignleft > table, .singleSec .body .module-contentEditor .alignleft > table {
  margin: 0;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col .alignright > table, .singleSec .body .module-contentEditor .alignright > table {
  margin: 0;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col th, .singleSec .body .module-contentEditor th,
.singleSec .body .module-textTwoImageGroup_field .txtImg__col td,
.singleSec .body .module-contentEditor td {
  border: 1px solid #dcd7ca;
  line-height: 1.4;
  margin: 0;
  overflow: visible;
  padding: 0.5em;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col caption, .singleSec .body .module-contentEditor caption {
  background: #dcd7ca;
  font-weight: 600;
  padding: 0.5em;
  text-align: center;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col thead, .singleSec .body .module-contentEditor thead {
  vertical-align: bottom;
  white-space: nowrap;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col th, .singleSec .body .module-contentEditor th {
  font-weight: 700;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  position: absolute;
  top: 35px;
  right: -40px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 40px;
  color: #fff;
}

.single .inner {
  max-width: 1080px;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .single .inner {
    padding: 0 15px;
  }
}

.singleSec {
  max-width: 1080px;
  padding: 45px 60px 30px;
}
@media screen and (max-width: 768px) {
  .singleSec {
    padding: 50px 15px 30px;
  }
}
.singleSec [class*=module-] + [class*=module-] {
  margin-top: 30px;
}
.singleSec [class*=module-] a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .singleSec [class*=module-] a:hover {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0.5;
  }
}
.singleSec p:not([class]) + .singleSec p:not([class]) {
  margin-top: 1.5em;
}
.singleSec .head .date {
  font-size: 16px;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .singleSec .head .date {
    font-size: 14px;
  }
}
.singleSec .head .title {
  margin-bottom: 35px;
  font-size: 28px;
  line-height: 1.57;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .singleSec .head .title {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.6;
  }
}
.singleSec .body .module-leadText p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-leadText p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.singleSec .body .layout-contenWithImage {
  margin: 30px 0 30px;
}
.singleSec .body .layout-contenWithImage .module-comment {
  margin: 0;
}
.singleSec .body .layout-contenWithImage__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .layout-contenWithImage__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.singleSec .body .layout-contenWithImage__row > * {
  width: calc(100% - 10px);
}
@media screen and (max-width: 768px) {
  .singleSec .body .layout-contenWithImage__row > * {
    width: 100%;
  }
}
.singleSec .body .layout-contenWithImage__ImageWrap img {
  overflow: hidden;
  border-radius: 38px;
}
.singleSec .body .layout-contenWithImage__ImageCaption {
  margin-top: 10px;
  font-size: 12px;
  color: #6C6C6C;
}
.singleSec .body .module-comment {
  margin-top: 42px;
}
.singleSec .body .module-comment__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-comment__item {
    gap: 12px;
  }
}
.singleSec .body .module-comment__item + .singleSec .body .module-comment__item {
  margin-top: 34px;
}
.singleSec .body .module-comment__profile {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-comment__profile {
    width: 40px;
    height: 40px;
  }
}
.singleSec .body .module-comment__profile img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.singleSec .body .module-comment__text {
  margin-top: 0;
  font-size: 16px;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-comment__text {
    font-size: 15px;
    line-height: 1.6;
  }
}
.singleSec .body .module-commentBlk {
  margin: 4rem 0 0;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.singleSec .body .module-commentBlk p {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.singleSec .body .module-contentTitle {
  position: relative;
  margin-top: 140px;
  padding-left: 36px;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-contentTitle {
    margin-top: 60px;
    padding-left: 28px;
    font-size: 18px;
    letter-spacing: 0.05em;
  }
}
.singleSec .body .module-contentTitle + [class*=module-contentTitle], .singleSec .body .module-contentTitle + .module-solidText, .singleSec .body .module-contentTitle + .module-btnSec, .singleSec .body .module-contentTitle + .module-textTwoImageGroup_field, .singleSec .body .module-contentTitle + .module-profile, .singleSec .body .module-contentTitle + .module-video, .singleSec .body .module-contentTitle + .module-speechBubble {
  margin-top: 30px;
}
.singleSec .body .module-contentTitle::before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url(../images/single/title_icon.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-contentTitle::before {
    top: -1px;
    width: 20px;
    height: 20px;
  }
}
.singleSec .body .module-contentTitle02 {
  position: relative;
  margin-top: 140px;
  padding-left: 20px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-contentTitle02 {
    margin-top: 60px;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
.singleSec .body .module-contentTitle02 + [class*=module-contentTitle], .singleSec .body .module-contentTitle02 + .module-solidText, .singleSec .body .module-contentTitle02 + .module-btnSec, .singleSec .body .module-contentTitle02 + .module-textTwoImageGroup_field, .singleSec .body .module-contentTitle02 + .module-profile, .singleSec .body .module-contentTitle02 + .module-video, .singleSec .body .module-contentTitle02 + .module-speechBubble {
  margin-top: 30px;
}
.singleSec .body .module-contentTitle02::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 12px;
  height: 10px;
  background-image: url(../images/common/title_icon-02.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.singleSec .body .module-imageGroup {
  margin-top: 40px;
}
.singleSec .body .module-imageGroup .imgGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-imageGroup .imgGroup {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.singleSec .body .module-imageGroup .imgGroup p {
  margin-top: 10px;
  font-size: 12px;
  color: #6C6C6C;
}
.singleSec .body .module-imageGroup .imgCaption .imgWrap {
  padding-top: 66.6666666667%;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-imageGroup .imgCaption .imgWrap {
    padding-top: 57.6811594203%;
  }
}
.singleSec .body .module-imageGroup.imageCenter .imgCaption .imgWrap {
  max-width: 960px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-imageGroup.imageCenter .imgCaption .imgWrap {
    margin-bottom: 16px;
    padding-top: 61.7391304348%;
  }
}
.singleSec .body .module-imageGroup.imageCenter .imgCaption p {
  font-size: 12px;
  color: #6C6C6C;
}
.singleSec .body .module-imageGroup.twoImages .imgGroup {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.singleSec .body .module-imageGroup.twoImages .imgGroup__col {
  width: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-imageGroup.twoImages .imgGroup__col {
    width: 100%;
  }
  .singleSec .body .module-imageGroup.twoImages .imgGroup__col:not(:first-child) {
    margin-top: 30px;
  }
}
.singleSec .body .module-imageGroup.twoImages .imgGroup__col .imgWrap {
  padding-top: 66.6666666667%;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-imageGroup.twoImages .imgGroup__col .imgWrap {
    padding-top: 57.6811594203%;
  }
}
.singleSec .body .module-imageGroup.threeImages .imgGroup {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -15px;
  width: calc(100% + 30px);
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-imageGroup.threeImages .imgGroup {
    width: 100%;
    margin: 0;
  }
}
.singleSec .body .module-imageGroup.threeImages .imgGroup__col {
  width: calc(33.33% - 15px);
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-imageGroup.threeImages .imgGroup__col {
    width: 100%;
    margin: 0;
  }
  .singleSec .body .module-imageGroup.threeImages .imgGroup__col:not(:first-child) {
    margin-top: 30px;
  }
}
.singleSec .body .module-imageGroup.threeImages .imgGroup__col .imgWrap {
  padding-top: 66.6666666667%;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-imageGroup.threeImages .imgGroup__col .imgWrap {
    padding-top: 57.6811594203%;
  }
}
.singleSec .body .module-solidText {
  margin-top: 140px;
  padding: 40px 60px;
  border: 1px solid #D3D3D3;
  border-radius: 38px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-solidText {
    margin-top: 60px;
    padding: 40px 15px;
  }
}
.singleSec .body .module-solidText + .module-solidText {
  margin-top: 30px;
}
.singleSec .body .module-solidText__title {
  position: relative;
  padding-left: 18.7px;
  border-left: 17.54px solid #3CA6DE;
  border-bottom: 1px solid #3CA6DE;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  line-height: 2.45;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-solidText__title {
    font-size: 18px;
  }
}
.singleSec .body .module-solidText__title::before {
  position: absolute;
  content: "";
  width: 3.51px;
  height: 100%;
  top: 0;
  left: 7.54px;
  background-color: #3CA6DE;
}
.singleSec .body .module-solidText__textArea p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-solidText__textArea p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.singleSec .body .module-solidText__textArea a {
  margin-top: 30px;
  display: inline-block;
  color: #3CA6DE;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-solidText__textArea a {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .singleSec .body .module-solidText__textArea a:hover {
    text-decoration: none;
  }
}
.singleSec .body .module-btnSec {
  margin-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-btnSec {
    margin-top: 60px;
  }
}
.singleSec .body .module-btnSec + .module-btnSec {
  margin-top: 30px;
}
.singleSec .body .module-btnSec__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  max-width: 600px;
  border-radius: 38px;
  background: #EF6298;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-btnSec__btn {
    height: 50px;
  }
}
.singleSec .body .module-btnSec__btn span {
  display: inline-block;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-btnSec__btn span {
    letter-spacing: 0.05em;
  }
}
.singleSec .body .module-btnSec__btn span:nth-child(1) {
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
}
.singleSec .body .module-btnSec__btn span:nth-child(2) {
  width: 20px;
  margin-left: 12px;
}
.singleSec .body .module-btnSec__btn span svg {
  fill: #fff;
}
.singleSec .body .module-textTwoImageGroup_field {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-textTwoImageGroup_field {
    margin-top: 60px;
  }
}
.singleSec .body .module-textTwoImageGroup_field + .module-textTwoImageGroup_field {
  margin-top: 30px;
}
.singleSec .body .module-textTwoImageGroup_field .txtImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-textTwoImageGroup_field .txtImg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.singleSec .body .module-textTwoImageGroup_field .txtImg--reversed {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-textTwoImageGroup_field .txtImg--reversed {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .singleSec .body .module-textTwoImageGroup_field .txtImg--reversed .txtImg__col {
    margin-top: 30px;
  }
  .singleSec .body .module-textTwoImageGroup_field .txtImg--reversed .txtImg__col-img {
    margin-top: 0;
  }
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col {
  width: calc(100% - 495px);
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-textTwoImageGroup_field .txtImg__col {
    width: 100%;
  }
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col-img {
  width: 465px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-textTwoImageGroup_field .txtImg__col-img {
    width: 100%;
  }
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col-img .imgWrap {
  padding-top: 66.6666666667%;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-textTwoImageGroup_field .txtImg__col-img .imgWrap {
    margin-top: 30px;
    padding-top: 57.6811594203%;
  }
}
.singleSec .body .module-textTwoImageGroup_field .txtImg__col-img .imageCaption {
  margin-top: 10px;
  font-size: 12px;
  color: #6C6C6C;
}
.singleSec .body .module-profile {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile {
    margin-top: 60px;
  }
}
.singleSec .body .module-profile + .module-profile {
  margin-top: 30px;
}
.singleSec .body .module-profile.horizontal-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile.horizontal-layout.item-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .singleSec .body .module-profile.horizontal-layout.item-2 .module-profile__item {
    width: 100% !important;
    padding: 40px 15px 37px !important;
    gap: 30px !important;
  }
  .singleSec .body .module-profile.horizontal-layout.item-2 .module-profile__img {
    width: 100% !important;
  }
}
.singleSec .body .module-profile.horizontal-layout.item-2 .module-profile__item {
  width: calc(50% - 15px);
  padding: 40px 50px 34px;
  gap: 19px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.singleSec .body .module-profile.horizontal-layout.item-2 .module-profile__img {
  width: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.singleSec .body .module-profile.horizontal-layout.item-2 .module-profile__details {
  width: auto;
}
.singleSec .body .module-profile.horizontal-layout.item-3 {
  gap: 19px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile.horizontal-layout.item-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .singleSec .body .module-profile.horizontal-layout.item-3 .module-profile__item {
    width: 100% !important;
    padding: 40px 15px 37px !important;
    gap: 30px !important;
  }
  .singleSec .body .module-profile.horizontal-layout.item-3 .module-profile__img {
    width: 100% !important;
  }
}
.singleSec .body .module-profile.horizontal-layout.item-3 .module-profile__item {
  width: calc(50% - 15px);
  padding: 40px 50px 34px;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.singleSec .body .module-profile.horizontal-layout.item-3 .module-profile__img {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.singleSec .body .module-profile.horizontal-layout.item-3 .module-profile__details {
  width: auto;
  margin: 0;
}
.singleSec .body .module-profile.horizontal-layout .module-profile__item {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile.vertical-layout .module-profile__details {
    margin-top: 30px;
  }
}
.singleSec .body .module-profile .flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile .flexbox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.singleSec .body .module-profile .imgWrap {
  padding-top: 100%;
  margin-right: 38px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile .imgWrap {
    padding-top: 63.8095238095%;
    margin: 0;
  }
}
.singleSec .body .module-profile__item {
  padding: 40px 60px;
  border-radius: 38px;
  background-color: rgba(40, 154, 155, 0.08);
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile__item {
    padding: 40px 15px;
  }
}
.singleSec .body .module-profile__title {
  position: relative;
  margin-bottom: 14px;
  padding-left: 33.5px;
  font-size: 24px;
  font-weight: bold;
  font-family: new-atten-round, noto-sans-cjk-jp, sans-serif;
  letter-spacing: 0.1em;
  color: #289A9B;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile__title {
    font-size: 18px;
  }
}
.singleSec .body .module-profile__title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 20px;
  height: 2px;
  border-top: 2px solid #2AAC92;
}
.singleSec .body .module-profile__img {
  width: 201px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile__img {
    width: 100%;
  }
}
.singleSec .body .module-profile__details {
  width: calc(100% - 239px);
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile__details {
    width: 100%;
    margin-top: 0;
  }
}
.singleSec .body .module-profile__details p {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-profile__details p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.singleSec .body .module-profile__name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}
.singleSec .body .module-profile__name .textUppercase {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.9;
}
.singleSec .body .module-video {
  max-width: 760px;
  margin: 140px auto 0;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-video {
    margin: 60px auto 0;
  }
}
.singleSec .body .module-video + .module-video {
  margin-top: 30px;
}
.singleSec .body .module-video .imgWrap {
  padding-top: 56.3157894737%;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-video .imgWrap {
    padding-top: 65.889212828%;
  }
}
.singleSec .body .module-video .imgWrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.singleSec .body .module-video .imgWrap::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background-image: url(../images/single/play_icon.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-video .imgWrap::after {
    width: 60px;
    height: 60px;
  }
}
.singleSec .body .module-speechBubble {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-speechBubble {
    margin-top: 60px;
  }
}
.singleSec .body .module-speechBubble + .module-speechBubble {
  margin-top: 30px;
}
.singleSec .body .module-speechBubble__txt {
  position: relative;
  width: 725px;
  margin-top: 0;
  padding: 30px 55px 25px 65px;
  text-align: left;
  border: 1px solid #D3D3D3;
  border-radius: 38px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-speechBubble__txt {
    width: calc(100% - 118px);
    padding: 24px 15px;
  }
}
.singleSec .body .module-speechBubble__txt p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-speechBubble__txt p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.singleSec .body .module-speechBubble__txt::before, .singleSec .body .module-speechBubble__txt::after {
  position: absolute;
  content: "";
}
.singleSec .body .module-speechBubble__txt::before {
  top: 40px;
  left: -30px;
  width: 30px;
  height: 14px;
  background-image: url(../images/single/speechBubble_icon.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 0;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-speechBubble__txt::before {
    left: -8.86px;
    width: 8.86px;
    height: 18.67px;
    background-image: url(../images/single/speechBubble_icon_sp.svg);
  }
}
.singleSec .body .module-speechBubble__txt::after {
  top: 41px;
  left: -1px;
  width: 1px;
  height: 13px;
  border-left: 1px solid #F6F6F8;
}
.singleSec .body .module-speechBubble .position_reverse:not(.bubbleNone) .module-speechBubble__txt {
  padding: 30px 65px 25px 55px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-speechBubble .position_reverse:not(.bubbleNone) .module-speechBubble__txt {
    padding: 24px 15px;
  }
}
.singleSec .body .module-speechBubble .position_reverse:not(.bubbleNone) .module-speechBubble__txt::before, .singleSec .body .module-speechBubble .position_reverse:not(.bubbleNone) .module-speechBubble__txt::after {
  left: auto;
}
.singleSec .body .module-speechBubble .position_reverse:not(.bubbleNone) .module-speechBubble__txt::before {
  right: -30px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-speechBubble .position_reverse:not(.bubbleNone) .module-speechBubble__txt::before {
    right: -8.86px;
  }
}
.singleSec .body .module-speechBubble .position_reverse:not(.bubbleNone) .module-speechBubble__txt::after {
  top: 41px;
  right: -2px;
}
.singleSec .body .module-speechBubble .bubbleNone .module-speechBubble__txt {
  padding: 30px 55px 25px;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-speechBubble .bubbleNone .module-speechBubble__txt {
    padding: 24px 15px;
  }
}
.singleSec .body .module-speechBubble .bubbleNone .module-speechBubble__txt::before, .singleSec .body .module-speechBubble .bubbleNone .module-speechBubble__txt::after {
  display: none;
}
.singleSec .body .module-speechBubble__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.singleSec .body .module-speechBubble__item:not(:first-of-type) {
  margin-top: 45px;
}
.singleSec .body .module-speechBubble__item.position_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.singleSec .body .module-speechBubble__img {
  position: relative;
}
.singleSec .body .module-speechBubble__img .imgWrap {
  padding-top: 100%;
  width: 180px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-speechBubble__img .imgWrap {
    width: 103px;
  }
}
.singleSec .body .module-speechBubble__img .name {
  position: absolute;
  top: 152px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px 0;
  width: 100%;
  border-radius: 24px;
  background-color: #FFC82E;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-speechBubble__img .name {
    top: 82px;
  }
}
.singleSec .body .module-speechBubble__img .name span {
  display: inline-block;
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-speechBubble__img .name span {
    font-size: 12px;
  }
}
.singleSec .body .module-spacer__hr-01 {
  margin-top: 0;
}
.singleSec .body .module-spacer__hr-01 hr {
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-spacer__hr-01 hr {
    padding: 30px 0;
  }
}
.singleSec .body .module-spacer__hr-02 {
  margin-top: 0;
}
.singleSec .body .module-spacer__hr-02 hr {
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-spacer__hr-02 hr {
    padding: 15px 0;
  }
}
.singleSec .body .module-spacer__hr-03 {
  margin-top: 0;
}
.singleSec .body .module-spacer__hr-03 hr {
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .singleSec .body .module-spacer__hr-03 hr {
    padding: 5px 0;
  }
}
.singleSec .foot .tagList {
  margin-top: 140px;
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .singleSec .foot .tagList {
    margin-top: 60px;
  }
}
.singleSec .foot .tagList ul.col3__tag {
  max-width: none;
  margin: -10px -5px;
}
.singleSec .foot .tagList ul.col3__tag li {
  padding: 0;
  margin: 10px 5px 0 0;
}
.singleSec .foot .tagList ul.col3__tag li a {
  letter-spacing: 0.05em;
}
.singleSec .foot .tagList ul.col3__tag li a::before {
  position: relative;
  content: "#";
  display: inline-block;
}
.singleSec_pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 110px 60px;
  padding: 30px 60px;
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 768px) {
  .singleSec_pager {
    margin: 0 15px;
    padding: 24px 0;
    border-top: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.singleSec_pager li {
  width: 33.33%;
}
.singleSec_pager .prev .icon,
.singleSec_pager .next .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000;
}
@media screen and (max-width: 768px) {
  .singleSec_pager .prev .icon,
  .singleSec_pager .next .icon {
    width: 40px;
    height: 40px;
  }
}
.singleSec_pager .prev .icon img,
.singleSec_pager .next .icon img {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .singleSec_pager .prev .icon img,
  .singleSec_pager .next .icon img {
    width: 12px;
    height: 12px;
  }
}
.singleSec_pager .prev a,
.singleSec_pager .next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.22em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .singleSec_pager .prev a,
  .singleSec_pager .next a {
    font-size: 16px;
  }
}
.singleSec_pager .prev.hidden a,
.singleSec_pager .next.hidden a {
  visibility: hidden;
}
.singleSec_pager .prev {
  border-right: 1px solid #D3D3D3;
}
@media screen and (max-width: 768px) {
  .singleSec_pager .prev {
    margin-top: 24px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
  }
}
.singleSec_pager .prev .icon img {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.singleSec_pager .prev .text {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .singleSec_pager .prev .text {
    margin-left: 12px;
  }
}
@media screen and (min-width: 769px) {
  .singleSec_pager .prev a:hover img {
    margin-right: 18px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.singleSec_pager .next {
  border-left: 1px solid #D3D3D3;
}
@media screen and (max-width: 768px) {
  .singleSec_pager .next {
    margin-top: 24px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 50%;
  }
}
.singleSec_pager .next .text {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .singleSec_pager .next .text {
    margin-right: 12px;
  }
}
.singleSec_pager .next a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 769px) {
  .singleSec_pager .next a:hover img {
    margin-left: 18px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.singleSec_pager .back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .singleSec_pager .back {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    padding: 32px 0;
    border-bottom: 1px solid #D3D3D3;
  }
}
.singleSec_pager .back a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .singleSec_pager .back a:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 768px) {
  .is_page__single .siteSidebar__articles {
    border-top: none;
  }
}

/*====================================================================
lp-sitePolicy
====================================================================*/
.lp-sitePolicy__desc p {
  font-size: 16px;
  text-align: center;
  line-height: 2;
}
.lp-sitePolicy__list {
  margin-top: 80px;
}
@media screen and (max-width: 991px) {
  .lp-sitePolicy__list {
    margin-top: 40px;
  }
}
.lp-sitePolicy__list-item .ttl {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}
.lp-sitePolicy__list-item .ttl::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 12px;
  height: 10px;
  background-image: url(../images/common/title_icon-02.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.lp-sitePolicy__list-item p {
  font-size: 16px;
  line-height: 2;
}
.lp-sitePolicy__list-item:nth-child(n+2) {
  margin-top: 40px;
}

/*====================================================================
tagPage
====================================================================*/
.tagPage.lp {
  overflow-x: hidden;
}
.tagPage .lp__main {
  margin-top: 60px;
}
.tagPage .lp__main .accent__img01 {
  width: 275px;
  top: 0;
  right: -6.25%;
}
.tagPage .lp__main .accent__img02 {
  width: 438px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -6.25%;
}
.tagPage .lp__main .accent__img03 {
  width: 160px;
  bottom: 256px;
  right: -6.25%;
}
.tagPage .sec__ttl01 {
  margin-bottom: 35px;
}
.tagPage .sec__ttl02 {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .tagPage .sec__ttl02 {
    margin-bottom: 60px;
  }
}
.tagPage .tag {
  margin: 135px 0 80px;
}
.tagPage .col3__img {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 66.4516129032%;
  overflow: hidden;
  border-radius: 38px;
}
@media screen and (max-width: 768px) {
  .tagPage .col3__img {
    padding-top: 61.7391304348%;
  }
}
.tagPage .col3__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tagPage-cat .accent__img01 {
  width: 440px;
  top: 49px;
  left: -10.5%;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
.tagPage-cat .accent__img02 {
  width: 310px;
  bottom: -40px;
  right: -6.25%;
}
.tagPage .tagPage-cat {
  margin-top: 35px;
}
.tagPage .lp_accent .accent__img01 {
  top: 200px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .tagPage .lp_accent .accent__img01 {
    top: 80px;
    right: -20px;
    width: 220px;
  }
}
.tagPage .lp_accent .accent__img02 {
  top: 33.5%;
  left: -55px;
}
@media screen and (max-width: 768px) {
  .tagPage .lp_accent .accent__img02 {
    top: 27.5%;
  }
}
.tagPage .lp_accent .accent__img03 {
  top: 49.5%;
  left: -65px;
}
@media screen and (max-width: 768px) {
  .tagPage .lp_accent .accent__img03 {
    top: 73.3%;
    width: 210px;
  }
}
.tagPage .lp_accent .accent__img04 {
  bottom: 32.7%;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .tagPage .lp_accent .accent__img04 {
    bottom: 47.2%;
    right: 0px;
    width: 140px;
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
.tagPage .lp_accent .accent__img05 {
  bottom: 215px;
  right: 5px;
}
@media screen and (max-width: 768px) {
  .tagPage .lp_accent .accent__img05 {
    bottom: 279px;
    right: -15px;
    width: 141px;
  }
}
.tagPage .wp-pagenavi {
  margin-top: 100px;
}

/*====================================================================
searchPage
====================================================================*/
.lp-searchPage .sec__ttl02 {
  margin-bottom: 80px;
}
.lp-searchPage .lp_accent .accent__img01 {
  top: 200px;
  right: 0;
}
.lp-searchPage .lp_accent .accent__img02 {
  top: 33.5%;
  left: -55px;
}
.lp-searchPage .lp_accent .accent__img03 {
  top: 49.5%;
  left: -65px;
}
.lp-searchPage .lp_accent .accent__img04 {
  bottom: 32.7%;
  right: 30px;
}
.lp-searchPage .lp_accent .accent__img05 {
  bottom: 215px;
  right: 5px;
}

/*====================================================================
Error page
====================================================================*/
.errorPageSec__text {
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
.errorPageSec__bnrArea {
  margin-top: 30px;
}
.errorPageSec__bnrText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  font-size: 16px;
  text-align: center;
}
.errorPageSec__bnr {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .errorPageSec__bnr:hover {
    text-decoration: none;
  }
}