@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.2.0/dist/css/yakuhanjp.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600&family=Roboto:wght@400;500;700&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

:root {
  --default-black: #333;
  --default-blue: #07C4E6;
  --default-white: #fff;
  --default-gray: #D0D0D0;
  --preset-color-dark-gray: #707070;
  --preset-color-pale-gray: #D9D9D9;
  --preset-color-pale-blue: #D2E5E8;
  --preset-color-light-blue: #E8FAFF;
  --preset-color-vivid-blue: #1DA6C9;
  --preset-color-vivid02-blue: #5FE3FF;
  --preset-color-vivid-green: #89FF55;
  --preset-color-vivid02-green: #22E6B9;
  --preset-color-default-red: #FF3B00;
  --preset-color-default-orange: #FFF5EA;
  --base-gray-default: #FAFAFA;
  --base-gray-footer: #6C6C6C;
  --base-gray-light: #D9E2E6;
  --base-gray-pale: #EAEAEA;
  --base-blue-default: #C0D9E0;
  --base-blue-vivid: #22C4E6;
}

:root {
  --font_base:16px/1.7 "YakuHanJP","Roboto","Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",Meiryo, sans-serif;
}

:root {
  --font_en: "Barlow Condensed","Roboto";
}

.l-header {
  padding: 35px 40px 0;
  border-bottom: solid 1px #BCBCBC;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 20px 10px 0;
  }
}

.l-header .logo {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  width: 570px;
  height: 100px;
  background: url(../common/logo.svg) no-repeat left top;
  background-size: contain;
}
@media all and (min-width: 768px) {
  .l-header .logo {
    margin: -12px 0 7px;
  }
}
.l-header .logo a {
  display: block;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .l-header .logo a {
    height: 75px;
  }
}
@media screen and (max-width: 767px) {
  .l-header .logo {
    width: 310px;
    height: 60px;
  }
}

#Top .l-header .logo a {
  pointer-events: none;
}

@media all and (min-width: 768px) {
  .l-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media all and (min-width: 768px) {
  .l-header-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 52px 0 0 0;
  }
}

@media all and (min-width: 768px) {
  .l-header-menu li a {
    display: block;
    position: relative;
    min-width: 56px;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-decoration: none;
    color: var(--default-black);
    margin: 0 0 0 15px;
    text-align: center;
  }
  .l-header-menu li a::before {
    position: absolute;
    content: "";
    top: -60px;
    left: calc(50% - 28px);
    width: 56px;
    height: 56px;
  }
  .l-header-menu li a:after {
    position: absolute;
    content: "";
    display: inline-block;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    height: 5px;
    background: rgba(162, 194, 203, 0.7);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header-menu li a:hover:after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@media all and (min-width: 768px) {
  .l-header-menu li:nth-child(1) {
    margin-right: 15px;
  }
  .l-header-menu li:nth-child(1) a::before {
    background: url(../common/ico_nav_home.svg);
    background-size: contain;
  }
  .l-header-menu li:nth-child(2) a::before {
    background: url(../common/ico_message.svg);
    background-size: contain;
  }
  .l-header-menu li:nth-child(3) a::before {
    background: url(../common/ico_about.svg);
    background-size: contain;
  }
  .l-header-menu li:nth-child(4) a::before {
    background: url(../common/ico_network.svg);
    background-size: contain;
  }
  .l-header-menu li:nth-child(5) a::before {
    background: url(../common/ico_seminar.svg);
    background-size: contain;
  }
  .l-header-menu li:nth-child(1) a {
    margin-left: 0;
  }
}

@media all and (min-width: 768px) {
  #nav-toggle {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #nav-toggle {
    z-index: 1101;
    position: fixed;
    top: 8px;
    right: 0;
  }
  #nav-toggle .button {
    position: relative;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #707070;
    background: rgba(255, 255, 255, 0.7);
  }
  #nav-toggle .button span {
    position: absolute;
    left: 13px;
    display: inline-block;
    height: 1px;
    width: 25px;
    background: var(--default-black);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  #nav-toggle .button span:nth-of-type(1) {
    top: 17px;
  }
  #nav-toggle .button span:nth-of-type(2) {
    top: 22px;
  }
  #nav-toggle .button span:nth-of-type(2)::after {
    content: "MENU";
    position: absolute;
    top: 3px;
    left: 1px;
    font-family: var(--font_en);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #575757;
  }
}

@media screen and (max-width: 767px) {
  body.open #nav-toggle {
    right: 7px;
  }
  body.open #nav-toggle .button {
    border: none;
    background: rgba(255, 255, 255, 0.1);
  }
  body.open #nav-toggle .button span {
    left: 10px;
  }
  body.open #nav-toggle .button span:nth-child(1) {
    top: 21px;
    width: 30px;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  body.open #nav-toggle .button span:nth-child(2) {
    top: 21px;
    width: 30px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  body.open #nav-toggle .button span:nth-child(2)::after {
    content: "CLOSE";
    -webkit-transform: translateY(0) rotate(-30deg);
            transform: translateY(0) rotate(-30deg);
    position: absolute;
    top: 5px;
    left: 11px;
  }
}

@media screen and (max-width: 767px) {
  body.modaal-noscroll #nav-toggle {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  body.open .l-header-menu {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  body.open .l-header-menu li {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity 0.9s ease;
    transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
  }
}

/* SP メニュー内 */
@media screen and (max-width: 767px) {
  .l-header-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease, visibility 0.8s ease;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow-y: auto;
    height: 100%;
    width: 100%;
    background: url(../common/bg_grad01.png) no-repeat top -20px left -50px, url(../common/bg_grad02.png) no-repeat bottom -80px right -80px, #FAFAFA;
  }
}

@media screen and (max-width: 767px) {
  .l-header-menu {
    padding: 60px 20px 10px;
  }
  .l-header-menu h2 {
    font-size: 1.0625rem;
    text-align: center;
    margin-bottom: 20px;
  }
  .l-header-menu ul {
    text-align: center;
    padding-left: 0;
  }
  .l-header-menu ul li a {
    display: block;
    padding: 20px;
    color: var(--default-black);
    font-size: 1.125rem;
    letter-spacing: 0.05em;
  }
  .l-header-menu ul li a:hover {
    color: var(--default-blue);
  }
}

.l-footer {
  /* position: relative;*/
  color: var(--default-white);
  background: var(--base-gray-footer);
  border-top: solid 4px #07C4E6;
  -o-border-image: linear-gradient(to right, #07C4E6 0%, #5BF4B3 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#07C4E6), to(#5BF4B3));
     border-image: linear-gradient(to right, #07C4E6 0%, #5BF4B3 100%);
  border-image-slice: 1;
}
@media all and (min-width: 768px) {
  .l-footer {
    padding: 35px 0px 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 25px 10px 24px;
  }
}
.l-footer small {
  color: var(--default-gray);
  font-size: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .l-footer small {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
}

@media all and (min-width: 768px) {
  .l-footer_Container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    max-width: 1200px;
    width: calc(100% - 80px);
    margin: auto;
  }
}

.l-footer_Container {
  letter-spacing: 0.04em;
}
.l-footer_Container .about {
  font-weight: 400;
  line-height: 1.4;
}
@media all and (min-width: 768px) {
  .l-footer_Container .about {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_Container .about {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.l-footer_Container dl {
  margin-top: 14px;
  font-size: 0.875rem;
  font-weight: 300;
}
.l-footer_Container dl dd {
  font-size: 0.75rem;
}
.l-footer_Container dl dd::before {
  position: relative;
  display: inline-block;
  content: "";
  top: 3px;
  width: 17px;
  height: 13px;
  padding-left: 20px;
  background: url(../common/ico_mal.svg) no-repeat;
  background-size: contain;
}
.l-footer_Container dl dd a {
  color: var(--default-white);
}
.l-footer_Container dl dd a:hover {
  color: var(--default-blue);
}

/* etc階層用 */
.l-footer_subCont {
  position: relative;
  margin-bottom: 22px;
  font-size: 0.875rem;
  border-bottom: 1px solid #919191;
  padding-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .l-footer_subCont {
    margin-top: 15px;
    padding: 0 0 0 0;
  }
}
@media all and (min-width: 768px) {
  .l-footer_subCont ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_subCont ul {
    margin: -40px auto 8px;
  }
}
.l-footer_subCont ul li {
  line-height: 1;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .l-footer_subCont ul li {
    padding: 0 0 0 10px;
  }
}
.l-footer_subCont ul li a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer_subCont ul li a {
    position: relative;
    display: block;
    padding: 18px 10px 18px 20px;
  }
  .l-footer_subCont ul li a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 4px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media all and (min-width: 768px) {
  .l-footer_subCont ul li a::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    border-right: solid 1px var(--preset-color-pale-gray);
    top: 50%;
    margin-top: -4px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .l-footer_subCont ul li a::after {
    padding-right: 8px;
  }
}
@media all and (min-width: 768px) {
  .l-footer_subCont ul li a:last-child {
    padding-right: 0;
  }
  .l-footer_subCont ul li a:last-child a::after {
    border-right: none;
  }
}
.l-footer_subCont ul li a:hover {
  color: var(--default-blue);
}

/* ページトップ */
#pagetop a {
  position: absolute;
  display: block;
  right: 20px;
  bottom: 110px;
  width: 30px;
  height: 30px;
  background: url(../common/pagetop.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  #pagetop a {
    bottom: 60px;
    right: 14px;
  }
}

body > #Footer {
  position: sticky;
  top: 100vh;
}

body {
  font: var(--font_base);
  color: var(--default-black);
  background: url(../common/bg_grid.png) var(--base-gray-default);
}

#Top #Wrap {
  background: url(../images/bg_top_image.png) no-repeat right -280px top -330px;
}
@media screen and (max-width: 767px) {
  #Top #Wrap {
    background: url(../images/bg_top_image.png) no-repeat right -90px top -150px;
    background-size: 620px auto;
  }
}

#Top h1 {
  display: none;
}

/* コンテンツ領域 */
#Wrap {
  position: relative;
  background: url(../common/bg_common_grad01.png) no-repeat top 0px left -250px, url(../common/bg_common_grad02.png) no-repeat bottom 10px right -10vw;
}
@media screen and (max-width: 767px) {
  #Wrap {
    background: url(../common/bg_common_grad01.png) no-repeat top 0px left -20vw, url(../common/bg_common_grad02.png) no-repeat bottom 0px right -20vw;
    background-size: 70% auto;
  }
}

#Active-contents {
  min-height: 500px;
}
@media screen and (max-width: 767px) {
  #Active-contents {
    min-height: 250px;
  }
}

.main-container {
  margin: auto;
}
@media all and (min-width: 768px) {
  .main-container {
    width: 1020px;
  }
}
@media screen and (max-width: 767px) {
  .main-container {
    padding: 0 10px;
  }
}
.main-container.news {
  margin: 36px auto 80px;
}
@media screen and (max-width: 767px) {
  .main-container.news {
    margin: 22px auto 40px;
  }
}
.main-container.default {
  margin: 40px auto 80px;
}
@media screen and (max-width: 767px) {
  .main-container.default {
    margin: 28px auto 40px;
  }
}

.l-page {
  padding: 45px;
  border: 1px solid #D9D9D9;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-page {
    padding: 20px;
  }
}
.l-page--narrow {
  padding: 25px;
}
@media screen and (max-width: 767px) {
  .l-page--narrow {
    padding: 20px;
  }
}

@media all and (min-width: 768px) {
  .l-container {
    max-width: 1200px;
    width: calc(100% - 80px);
    margin: auto;
  }
}

/* 並列レイアウト(配置) */
.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (min-width: 768px) {
  .l-flex-start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media all and (min-width: 768px) {
  .l-cont-left {
    width: 740px;
  }
}

/* 横メニュー */
@media all and (min-width: 768px) {
  .l-cont-menu {
    margin-left: 40px;
    width: 240px;
    background-color: var(--base-blue-default);
    border: 1px solid var(--preset-color-pale-gray);
  }
}
@media screen and (max-width: 767px) {
  .l-cont-menu {
    display: none;
  }
}

/* 並列レイアウト(個別) */
.l-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (min-width: 768px) {
  .l-col_Pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
/* パンくずリスト */
.topic-path {
  padding: 10px 0;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  background: var(--base-blue-default);
}
.topic-path ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .topic-path ul {
    padding: 0 10px;
  }
}
.topic-path ul li {
  margin-right: 12px;
}
.topic-path ul li a {
  position: relative;
  display: inline-block;
  padding-right: 14px;
  color: var(--default-black);
}
.topic-path ul li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #939393;
  border-right: 1px solid #939393;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.topic-path ul li a:hover {
  text-decoration: underline;
}

.c-btn_primary a {
  position: relative;
  display: block;
  background: var(--default-white);
  color: var(--default-black);
  border: 1px solid var(--preset-color-dark-gray);
  padding: 18px 15px 20px;
  letter-spacing: 0.04em;
}
.c-btn_primary a::before {
  position: absolute;
  top: 0;
  left: 30px;
  top: 50%;
  margin-top: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--preset-color-pale-blue);
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn_primary a::after {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -4px;
  width: 13px;
  left: 35px;
  height: 9px;
  background: url(../common/arrow_left_blue.svg) no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn_primary a:hover {
  background: var(--preset-color-light-blue);
  border: 1px solid var(--preset-color-vivid-blue);
}
.c-btn_primary a:hover::before {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: var(--preset-color-vivid-blue);
}
.c-btn_primary a:hover::after {
  background: none;
}

.c-btn_primary-center {
  text-align: center;
}

.c-textLink {
  position: relative;
  text-align: right;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-textLink {
    text-align: center;
  }
}

.c-textLink a {
  position: relative;
  padding: 6px 43px 6px 0;
  padding-right: 40px;
  color: var(--default-black);
}
.c-textLink a::before {
  position: absolute;
  content: "";
  width: 33px;
  height: 33px;
  top: 0;
  right: 0;
  margin-top: 0px;
  border-radius: 50%;
  background: #fff;
}
.c-textLink a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 8px;
  width: 13px;
  height: 9px;
  margin-top: -6px;
  background: url(../common/arrow_right_black.svg) no-repeat;
  background-size: contain;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .c-textLink a::after {
    margin-top: -5px;
  }
}
.c-textLink a:hover {
  color: var(--preset-color-vivid-blue);
}
.c-textLink a:hover::before {
  background: var(--preset-color-light-blue);
}
.c-textLink a:hover::after {
  right: 3px;
}

@media all and (min-width: 768px) {
  .c-textLink.foS,
  .c-btn_primary.foS {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-textLink.foS,
  .c-btn_primary.foS {
    font-size: 0.875rem;
  }
}

a.link_btn {
  position: relative;
  display: inline-block;
  margin: 10px 0;
  padding: 20px 50px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px var(--preset-color-vivid-blue);
  -webkit-box-shadow: 1px 1px 0 var(--preset-color-vivid-blue);
          box-shadow: 1px 1px 0 var(--preset-color-vivid-blue);
  text-decoration: none !important;
  color: var(--default-black) !important;
  text-align: left;
  line-height: 1.5;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background: var(--preset-color-light-blue);
}
@media all and (min-width: 768px) {
  a.link_btn {
    min-width: 240px;
  }
}
a.link_btn::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: solid 1px #A8E8F7;
  background: var(--default-white);
}
a.link_btn::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -4px;
  width: 11px;
  height: 7px;
  background: url("../common/arrow_right_blue.svg") no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
a.link_btn:hover {
  background: #A8E8F7;
}
a.link_btn:hover::after {
  right: 18px;
}
a.link_btn:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 1px 0px 0 var(--preset-color-vivid-blue);
          box-shadow: 1px 0px 0 var(--preset-color-vivid-blue);
}

a.link_btn.link_btn-large {
  display: block;
  font-size: 1.25rem;
  padding: 22px 52px 22px 20px;
}
@media all and (min-width: 768px) {
  a.link_btn.link_btn-large {
    padding: 24px 60px 24px 25px;
    font-size: 1.4375rem;
  }
}
a.link_btn.link_btn-large::before {
  width: 29px;
  height: 29px;
}
@media all and (min-width: 768px) {
  a.link_btn.link_btn-large::before {
    right: 20px;
  }
}
a.link_btn.link_btn-large::after {
  right: 23px;
  margin-top: -3px;
  width: 12px;
  height: 9px;
}
@media all and (min-width: 768px) {
  a.link_btn.link_btn-large::after {
    right: 28px;
  }
}
a.link_btn.link_btn-large:hover::after {
  right: 18px;
}
@media all and (min-width: 768px) {
  a.link_btn.link_btn-large:hover::after {
    right: 23px;
  }
}

a.link_btn.link_btn-small {
  padding: 16px 45px 16px 18px;
  font-size: 0.9375rem;
}
@media all and (min-width: 768px) {
  a.link_btn.link_btn-small {
    min-width: 180px;
  }
}
a.link_btn.link_btn-small::before {
  margin-top: -11px;
  width: 23px;
  height: 23px;
}
a.link_btn.link_btn-small::after {
  margin-top: -3px;
  right: 21px;
}
a.link_btn.link_btn-small:hover::after {
  right: 17px;
}

a.link_btn.link_btn-secondary {
  border: solid 1px #FF8955;
  -webkit-box-shadow: 1px 1px 0px #FF8955;
          box-shadow: 1px 1px 0px #FF8955;
  background: var(--preset-color-default-orange);
}
a.link_btn.link_btn-secondary::before {
  border: solid 1px #FFB769;
}
a.link_btn.link_btn-secondary::after {
  background: url("../common/arrow_right_orange.svg") no-repeat center center;
  background-size: contain;
}
a.link_btn.link_btn-secondary:hover {
  background: #FFB769;
}
a.link_btn.link_btn-secondary:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 1px 0px 0px #FF8955;
          box-shadow: 1px 0px 0px #FF8955;
}

a.link_btn.link_btn-dark {
  border: solid 1px var(--preset-color-pale-gray);
  -webkit-box-shadow: 1px 1px 0 var(--preset-color-pale-gray);
          box-shadow: 1px 1px 0 var(--preset-color-pale-gray);
  background: var(--base-gray-pale);
}
a.link_btn.link_btn-dark::before {
  border: solid 1px var(--preset-color-pale-gray);
}
a.link_btn.link_btn-dark::after {
  background: url("../common/arrow_right_gray.svg") no-repeat center center;
  background-size: contain;
}
a.link_btn.link_btn-dark:hover {
  background: var(--preset-color-pale-gray);
}
a.link_btn.link_btn-dark:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 1px 0px 0px var(--preset-color-pale-gray);
          box-shadow: 1px 0px 0px var(--preset-color-pale-gray);
}

a[href^=https],
a[href^="mailto:"] {
  word-break: break-all;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--default-blue);
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media all and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

.clearfix {
  zoom: 1;
}
.clearfix::after {
  content: " ";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}

.float_R {
  float: right;
}

.float_L {
  float: left;
}

@media all and (min-width: 768px) {
  .float_R_Pc {
    float: right;
  }
}

@media all and (min-width: 768px) {
  .float_L_Pc {
    float: left;
  }
}

.margin_center {
  margin: auto;
}

@media screen and (max-width: 767px) {
  .margin_center_Sp {
    margin: auto;
  }
}
@media all and (min-width: 768px) {
  .margin_center_Pc {
    margin: auto;
  }
}
.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .mt10_Sp {
    margin-top: 10px;
  }
  .mt15_Sp {
    margin-top: 15px;
  }
  .mt20_Sp {
    margin-top: 20px;
  }
  .mt30_Sp {
    margin-top: 30px;
  }
  .mt40_Sp {
    margin-top: 40px;
  }
  .mt50_Sp {
    margin-top: 50px;
  }
}
@media all and (min-width: 768px) {
  .mt10_Pc {
    margin-top: 10px;
  }
  .mt15_Pc {
    margin-top: 15px;
  }
  .mt20_Pc {
    margin-top: 20px;
  }
  .mt30_Pc {
    margin-top: 30px;
  }
  .mt40_Pc {
    margin-top: 40px;
  }
  .mt50_Pc {
    margin-top: 50px;
  }
}
.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .mb10_Sp {
    margin-bottom: 10px;
  }
  .mb15_Sp {
    margin-bottom: 15px;
  }
  .mb20_Sp {
    margin-bottom: 20px;
  }
  .mb30_Sp {
    margin-bottom: 30px;
  }
  .mb40_Sp {
    margin-bottom: 40px;
  }
  .mb50_Sp {
    margin-bottom: 50px;
  }
}
@media all and (min-width: 768px) {
  .mb10_Pc {
    margin-bottom: 10px;
  }
  .mb15_Pc {
    margin-bottom: 15px;
  }
  .mb20_Pc {
    margin-bottom: 20px;
  }
  .mb30_Pc {
    margin-bottom: 30px;
  }
  .mb40_Pc {
    margin-bottom: 40px;
  }
  .mb50_Pc {
    margin-bottom: 50px;
  }
}
.w50 {
  width: 50px;
}

.w80 {
  width: 80px;
}

.w100 {
  width: 100px;
}

.w120 {
  width: 120px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w180 {
  width: 180px;
}

.w200 {
  width: 200px;
}

.w220 {
  width: 220px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w30per {
  width: 30%;
}

.w50per {
  width: 50%;
}

.w60per {
  width: 60%;
}

.w70per {
  width: 70%;
}

.w80per {
  width: 80%;
}

.w100per {
  width: 100%;
}

@media all and (min-width: 768px) {
  .w50_Pc {
    width: 50px;
  }
  .w80_Pc {
    width: 80px;
  }
  .w100_Pc {
    width: 100px;
  }
  .w120_Pc {
    width: 120px;
  }
  .w150_Pc {
    width: 150px;
  }
  .w160_Pc {
    width: 160px;
  }
  .w180_Pc {
    width: 180px;
  }
  .w200_Pc {
    width: 200px;
  }
  .w220_Pc {
    width: 220px;
  }
  .w250_Pc {
    width: 250px;
  }
  .w300_Pc {
    width: 300px;
  }
  .w350_Pc {
    width: 350px;
  }
  .w400_Pc {
    width: 400px;
  }
  .w430_Pc {
    width: 430px;
  }
  .w450_Pc {
    width: 450px;
  }
  .w500_Pc {
    width: 500px;
  }
  .w600_Pc {
    width: 600px;
  }
  .w650_Pc {
    width: 650px;
  }
  .w700_Pc {
    width: 700px;
  }
  .w850_Pc {
    width: 850px;
  }
  .w900_Pc {
    width: 900px;
  }
  .w30per_Pc {
    width: 30%;
  }
  .w50per_Pc {
    width: 50%;
  }
  .w60per_Pc {
    width: 60%;
  }
  .w70per_Pc {
    width: 70%;
  }
  .w80per_Pc {
    width: 80%;
  }
  .w100per_Pc {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .w50_Sp {
    width: 50px;
  }
  .w80_Sp {
    width: 80px;
  }
  .w100_Sp {
    width: 100px;
  }
  .w120_Sp {
    width: 120px;
  }
  .w150_Sp {
    width: 150px;
  }
  .w160_Sp {
    width: 160px;
  }
  .w180_Sp {
    width: 180px;
  }
  .w200_Sp {
    width: 200px;
  }
  .w220_Sp {
    width: 220px;
  }
  .w250_Sp {
    width: 250px;
  }
  .w300_Sp {
    width: 300px;
  }
  .w350_Sp {
    width: 350px;
  }
  .w30per_Sp {
    width: 30%;
  }
  .w50per_Sp {
    width: 50%;
  }
  .w60per_Sp {
    width: 60%;
  }
  .w70per_Sp {
    width: 70%;
  }
  .w80per_Sp {
    width: 80%;
  }
  .w100per_Sp {
    width: 100%;
  }
}
.h2_title01 {
  position: relative;
  margin-bottom: 18px;
  padding: 0 0 2px 45px;
  font-size: 1.625rem;
  line-height: 1.6;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .h2_title01 {
    margin-bottom: 15px;
    padding: 0 0 2px 30px;
    font-size: 1.4375rem;
  }
}
.h2_title01::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  display: block;
  width: 27px;
  height: 9px;
  background: var(--default-blue);
}
@media screen and (max-width: 767px) {
  .h2_title01::before {
    width: 21px;
    height: 7px;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

.h3_title01 {
  position: relative;
  margin-bottom: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
  padding: 10px 10px 10px 18px;
  background: var(--base-gray-pale);
}
@media screen and (max-width: 767px) {
  .h3_title01 {
    font-size: 1.125rem;
  }
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .text_center_Sp {
    text-align: center;
  }
  .text_right_Sp {
    text-align: right;
  }
  .text_left_Sp {
    text-align: left;
  }
}
@media all and (min-width: 768px) {
  .text_center_Pc {
    text-align: center;
  }
  .text_right_Pc {
    text-align: right;
  }
  .text_left_Pc {
    text-align: left;
  }
}
.text_mark {
  margin-left: 1em;
  text-indent: -1em;
}

sub {
  font-size: 0.75rem;
  vertical-align: bottom;
}

sup {
  font-size: 0.75rem;
  vertical-align: top;
}

.color_red_default {
  color: var(--preset-color-default-red);
}

.color_blue_default {
  color: var(--default-blue);
}

.fo10 {
  font-size: 0.625rem;
}

@media screen and (max-width: 767px) {
  .fo10_Sp {
    font-size: 0.625rem;
  }
}
@media all and (min-width: 768px) {
  .fo10_Pc {
    font-size: 0.625rem;
  }
}
.fo11 {
  font-size: 0.6875rem;
}

@media screen and (max-width: 767px) {
  .fo11_Sp {
    font-size: 0.6875rem;
  }
}
@media all and (min-width: 768px) {
  .fo11_Pc {
    font-size: 0.6875rem;
  }
}
.fo12 {
  font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
  .fo12_Sp {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 768px) {
  .fo12_Pc {
    font-size: 0.75rem;
  }
}
.fo13 {
  font-size: 0.8125rem;
}

@media screen and (max-width: 767px) {
  .fo13_Sp {
    font-size: 0.8125rem;
  }
}
@media all and (min-width: 768px) {
  .fo13_Pc {
    font-size: 0.8125rem;
  }
}
.fo14 {
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .fo14_Sp {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 768px) {
  .fo14_Pc {
    font-size: 0.875rem;
  }
}
.fo15 {
  font-size: 0.9375rem;
}

@media screen and (max-width: 767px) {
  .fo15_Sp {
    font-size: 0.9375rem;
  }
}
@media all and (min-width: 768px) {
  .fo15_Pc {
    font-size: 0.9375rem;
  }
}
.fo16 {
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .fo16_Sp {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) {
  .fo16_Pc {
    font-size: 1rem;
  }
}
.fo17 {
  font-size: 1.0625rem;
}

@media screen and (max-width: 767px) {
  .fo17_Sp {
    font-size: 1.0625rem;
  }
}
@media all and (min-width: 768px) {
  .fo17_Pc {
    font-size: 1.0625rem;
  }
}
.fo18 {
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .fo18_Sp {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 768px) {
  .fo18_Pc {
    font-size: 1.125rem;
  }
}
.fo19 {
  font-size: 1.1875rem;
}

@media screen and (max-width: 767px) {
  .fo19_Sp {
    font-size: 1.1875rem;
  }
}
@media all and (min-width: 768px) {
  .fo19_Pc {
    font-size: 1.1875rem;
  }
}
.fo20 {
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .fo20_Sp {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 768px) {
  .fo20_Pc {
    font-size: 1.25rem;
  }
}
.fo21 {
  font-size: 1.3125rem;
}

@media screen and (max-width: 767px) {
  .fo21_Sp {
    font-size: 1.3125rem;
  }
}
@media all and (min-width: 768px) {
  .fo21_Pc {
    font-size: 1.3125rem;
  }
}
.fo22 {
  font-size: 1.375rem;
}

@media screen and (max-width: 767px) {
  .fo22_Sp {
    font-size: 1.375rem;
  }
}
@media all and (min-width: 768px) {
  .fo22_Pc {
    font-size: 1.375rem;
  }
}
.fo23 {
  font-size: 1.4375rem;
}

@media screen and (max-width: 767px) {
  .fo23_Sp {
    font-size: 1.4375rem;
  }
}
@media all and (min-width: 768px) {
  .fo23_Pc {
    font-size: 1.4375rem;
  }
}
.fo24 {
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .fo24_Sp {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) {
  .fo24_Pc {
    font-size: 1.5rem;
  }
}
.fo25 {
  font-size: 1.5625rem;
}

@media screen and (max-width: 767px) {
  .fo25_Sp {
    font-size: 1.5625rem;
  }
}
@media all and (min-width: 768px) {
  .fo25_Pc {
    font-size: 1.5625rem;
  }
}
.fo26 {
  font-size: 1.625rem;
}

@media screen and (max-width: 767px) {
  .fo26_Sp {
    font-size: 1.625rem;
  }
}
@media all and (min-width: 768px) {
  .fo26_Pc {
    font-size: 1.625rem;
  }
}
.fo27 {
  font-size: 1.6875rem;
}

@media screen and (max-width: 767px) {
  .fo27_Sp {
    font-size: 1.6875rem;
  }
}
@media all and (min-width: 768px) {
  .fo27_Pc {
    font-size: 1.6875rem;
  }
}
.fo28 {
  font-size: 1.75rem;
}

@media screen and (max-width: 767px) {
  .fo28_Sp {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 768px) {
  .fo28_Pc {
    font-size: 1.75rem;
  }
}
.fo29 {
  font-size: 1.8125rem;
}

@media screen and (max-width: 767px) {
  .fo29_Sp {
    font-size: 1.8125rem;
  }
}
@media all and (min-width: 768px) {
  .fo29_Pc {
    font-size: 1.8125rem;
  }
}
.fo30 {
  font-size: 1.875rem;
}

@media screen and (max-width: 767px) {
  .fo30_Sp {
    font-size: 1.875rem;
  }
}
@media all and (min-width: 768px) {
  .fo30_Pc {
    font-size: 1.875rem;
  }
}
.fo31 {
  font-size: 1.9375rem;
}

@media screen and (max-width: 767px) {
  .fo31_Sp {
    font-size: 1.9375rem;
  }
}
@media all and (min-width: 768px) {
  .fo31_Pc {
    font-size: 1.9375rem;
  }
}
.fo32 {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .fo32_Sp {
    font-size: 2rem;
  }
}
@media all and (min-width: 768px) {
  .fo32_Pc {
    font-size: 2rem;
  }
}
.fo33 {
  font-size: 2.0625rem;
}

@media screen and (max-width: 767px) {
  .fo33_Sp {
    font-size: 2.0625rem;
  }
}
@media all and (min-width: 768px) {
  .fo33_Pc {
    font-size: 2.0625rem;
  }
}
.fo34 {
  font-size: 2.125rem;
}

@media screen and (max-width: 767px) {
  .fo34_Sp {
    font-size: 2.125rem;
  }
}
@media all and (min-width: 768px) {
  .fo34_Pc {
    font-size: 2.125rem;
  }
}
.fo35 {
  font-size: 2.1875rem;
}

@media screen and (max-width: 767px) {
  .fo35_Sp {
    font-size: 2.1875rem;
  }
}
@media all and (min-width: 768px) {
  .fo35_Pc {
    font-size: 2.1875rem;
  }
}
.fo36 {
  font-size: 2.25rem;
}

@media screen and (max-width: 767px) {
  .fo36_Sp {
    font-size: 2.25rem;
  }
}
@media all and (min-width: 768px) {
  .fo36_Pc {
    font-size: 2.25rem;
  }
}
.fo37 {
  font-size: 2.3125rem;
}

@media screen and (max-width: 767px) {
  .fo37_Sp {
    font-size: 2.3125rem;
  }
}
@media all and (min-width: 768px) {
  .fo37_Pc {
    font-size: 2.3125rem;
  }
}
.fo38 {
  font-size: 2.375rem;
}

@media screen and (max-width: 767px) {
  .fo38_Sp {
    font-size: 2.375rem;
  }
}
@media all and (min-width: 768px) {
  .fo38_Pc {
    font-size: 2.375rem;
  }
}
.fo39 {
  font-size: 2.4375rem;
}

@media screen and (max-width: 767px) {
  .fo39_Sp {
    font-size: 2.4375rem;
  }
}
@media all and (min-width: 768px) {
  .fo39_Pc {
    font-size: 2.4375rem;
  }
}
.fo40 {
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  .fo40_Sp {
    font-size: 2.5rem;
  }
}
@media all and (min-width: 768px) {
  .fo40_Pc {
    font-size: 2.5rem;
  }
}
.lh15 {
  line-height: 1.5 !important;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh10 {
  line-height: 1 !important;
}

.lh08 {
  line-height: 0.8 !important;
}

.foMedium {
  font-weight: 500;
}

.foNormal {
  font-weight: normal;
}

/*!
component > title
------------------------------
*/
.c-title-h1 {
  position: relative;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
@media all and (min-width: 768px) {
  .c-title-h1 {
    font-size: 2rem;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-title-h1 {
    font-size: 1.5625rem;
    padding-bottom: 15px;
  }
}
.c-title-h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-image: -webkit-gradient(linear, left top, right top, from(#07C4E6), to(#5BF4B3));
  background-image: linear-gradient(to right, #07C4E6 0%, #5BF4B3 100%);
}

/* ニュース領域  */
.l-TopNews {
  position: relative;
}
@media all and (min-width: 768px) {
  .l-TopNews {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-TopNews {
    margin-top: 30px;
  }
}
.l-TopNews .l-TopNews_bg {
  background: var(--base-blue-default);
  padding: 0px 0 30px;
  height: 450px;
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.l-TopNews-area {
  position: relative;
}
.l-TopNews-area::before {
  position: absolute;
  content: "NEWS";
  color: #D4E5EA;
  font-family: var(--font_en);
  letter-spacing: 0.05em;
}
@media all and (min-width: 768px) {
  .l-TopNews-area {
    width: 1020px;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .l-TopNews-area::before {
    bottom: 100px;
    left: 22px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    font-size: 4.25rem;
    z-index: 40;
  }
}
@media screen and (max-width: 767px) {
  .l-TopNews-area {
    width: 100%;
    margin: auto;
    z-index: 5;
  }
  .l-TopNews-area::before {
    bottom: 6px;
    left: 10px;
    font-size: 3.5625rem;
    z-index: 5;
  }
}

@media all and (min-width: 768px) {
  .l-TopContNews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -25px 30px;
  }
  .l-TopContNews .contents {
    width: 50%;
    padding: 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-TopContNews {
    display: block;
  }
  .l-TopContNews .contents {
    width: 100%;
    padding: 0 10px 30px;
  }
}

.l-TopContNews .contents {
  z-index: 10;
}
.l-TopContNews .contents .box {
  position: relative;
  border: 1px solid var(--preset-color-dark-gray);
}
.l-TopContNews .contents .box::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
}
@media all and (min-width: 768px) {
  .l-TopContNews .contents .box {
    margin-bottom: 35px;
    height: 485px;
    padding: 20px 15px 10px 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-TopContNews .contents .box {
    margin-bottom: 30px;
    height: 465px;
    padding: 20px 15px 10px 20px;
  }
  .l-TopContNews .contents .box::after {
    top: 8px;
    left: 8px;
    width: calc(100% - 15px);
  }
}

/* ラベル */
@media all and (min-width: 768px) {
  .l-TopContNews .contents .box .tab_label {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: -19px;
    right: -1px;
    height: 19px;
    padding: 3px 10px;
    font-family: var(--font_en);
    font-size: 0.8125rem;
    letter-spacing: 0.07em;
    background: var(--preset-color-dark-gray);
  }
  .l-TopContNews .contents .box .tab_label.blue {
    color: var(--preset-color-vivid02-blue);
  }
  .l-TopContNews .contents .box .tab_label.green {
    color: var(--preset-color-vivid-green);
  }
}
@media screen and (max-width: 767px) {
  .box .tab_label {
    display: none;
  }
}
.news-cont {
  height: 450px;
  overflow-y: auto;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .news-cont {
    height: 430px;
  }
}

/* タブメニュー */
.news-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .news-tab {
    padding: 0 10px;
    margin: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media all and (min-width: 768px) {
  .newsTitle {
    width: 50%;
    line-height: 1;
    font-size: 1.625rem;
  }
  .newsTitle:last-child {
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .newsTitle {
    width: 50%;
    border: 1px solid var(--preset-color-dark-gray);
    border-bottom: none;
    text-align: center;
    /*&:last-child{
        border-left: none;
    }*/
  }
}

@media screen and (max-width: 767px) {
  .news-tab .tab01,
  .news-tab .tab02 {
    cursor: pointer;
    background-color: var(--preset-color-dark-gray);
    color: #fff;
    padding: 12px 5px;
    font-size: 0.875rem;
  }
  .news-tab .tab01.select,
  .news-tab .tab02.select {
    position: relative;
    display: block;
    padding: 17px 5px;
    background-color: transparent;
    color: var(--default-black);
  }
  .news-tab .tab01.select::after,
  .news-tab .tab02.select::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 5px;
    left: 50%;
    clip-path: polygon(100% 0, 50% 100%, 0 0);
    background: #07C4E6;
    width: 17px;
    height: 9px;
  }
}

@media screen and (max-width: 767px) {
  .news_link {
    position: relative;
    z-index: 10;
  }
}

/* CONTENTS領域 */
.l-TopContainer ul {
  margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .l-TopContainer ul {
    margin: 12px 0 0;
  }
}
@media all and (min-width: 768px) {
  .l-TopContainer {
    padding: 55px 0 75px;
    background: url(../common/bg_common_grad01.png) no-repeat top -90px left -280px, url(../common/bg_common_grad02.png) no-repeat bottom -170px right -150px;
  }
}
@media screen and (max-width: 767px) {
  .l-TopContainer {
    padding: 25px 10px;
    background: url(../common/bg_grad01.png) no-repeat top -90px left -100px, url(../common/bg_grad02.png) no-repeat bottom -170px right -150px;
  }
}
.l-TopContainer h2 {
  font-family: var(--font_en);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}
@media all and (min-width: 768px) {
  .l-TopContainer h2 {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .l-TopContainer h2 {
    font-size: 1.5625rem;
  }
}

.l-TopCalender {
  border: 1px solid #D9D9D9;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-TopCalender {
    margin-top: 20px;
    padding: 13px 10px;
  }
}
@media all and (min-width: 768px) {
  .l-TopCalender {
    width: 1020px;
    margin: 50px auto 0;
    padding: 25px 45px 35px;
  }
}
@media all and (min-width: 768px) {
  .l-TopCalender .top-calender-frame {
    max-width: 900px;
    margin: auto;
  }
}
.l-TopCalender .top-calender-frame iframe {
  width: 100%;
  border: solid 1px #FFF !important;
}
.l-TopCalender h3 {
  margin-bottom: 8px;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}
@media all and (min-width: 768px) {
  .l-TopCalender h3 {
    margin-bottom: 13px;
    font-size: 1.5rem;
  }
}

.l-TopMov {
  border: 1px solid #D9D9D9;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-TopMov {
    margin-top: 20px;
    padding: 13px 10px;
  }
}
@media all and (min-width: 768px) {
  .l-TopMov {
    width: 1020px;
    margin: 50px auto 0;
    padding: 35px 45px;
  }
}
@media all and (min-width: 768px) {
  .l-TopMov .top-youtube-frame {
    max-width: 900px;
    margin: auto;
  }
}
.l-TopMov .youtube-frame {
  width: 100%;
  aspect-ratio: 16/9;
}
.l-TopMov .youtube-frame iframe {
  width: 100%;
  height: 100%;
}

/* リンクバナー */
@media all and (min-width: 768px) {
  .l-TopContents {
    width: 1020px;
    margin: auto;
  }
}

.l-TopContents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-TopContents ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.l-TopContents ul li {
  position: relative;
}
.l-TopContents ul li::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 65px;
  height: 6px;
  background: var(--base-blue-vivid);
  z-index: 20;
}
.l-TopContents ul li a {
  position: relative;
  display: block;
  padding: 16px;
  border: 1px solid #bababa;
  background: #fff;
  color: var(--default-black);
  letter-spacing: 0.04em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.l-TopContents ul li a::before {
  position: absolute;
  display: block;
  content: "";
  top: 15px;
  left: 15px;
  width: calc(100% - 29px);
  height: 145px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-TopContents ul li a::before {
    height: 110px;
    top: 12px;
    left: 12px;
    width: calc(100% - 25px);
  }
}
@media all and (min-width: 768px) {
  .l-TopContents ul li {
    width: 25%;
  }
  .l-TopContents ul li a {
    height: 235px;
    padding-top: 160px;
    margin-right: 20px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .l-TopContents ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    margin-bottom: 12px;
  }
  .l-TopContents ul li a {
    height: 175px;
    width: 100%;
    padding-top: 122px;
    margin-right: 12px;
    font-size: 0.8125rem;
  }
  .l-TopContents ul li:nth-child(even) a {
    margin-right: 0;
  }
}

/* リンクテキスト装飾 */
@media all and (min-width: 768px) {
  .l-TopContents ul li a p {
    position: relative;
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-TopContents ul li a p {
    position: relative;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-TopContents ul li a p::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: 0;
  margin-top: -13px;
  border-radius: 50%;
  background: var(--preset-color-pale-blue);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-TopContents ul li a p::before {
    width: 22px;
    height: 22px;
    margin-top: -11px;
  }
}
.l-TopContents ul li a p::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 5px;
  margin-top: -5px;
  width: 13px;
  height: 9px;
  background: url(../common/arrow_right_blue.svg) no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-TopContents ul li a p::after {
    margin-top: -3px;
    width: 9px;
    height: 6px;
  }
}
.l-TopContents ul li a:hover {
  color: var(--preset-color-vivid-blue);
}
.l-TopContents ul li a:hover p::after {
  background: none;
}
.l-TopContents ul li a:hover p::before {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: var(--preset-color-vivid-blue);
}

@media all and (min-width: 768px) {
  .l-TopContents ul li:last-child a {
    margin-right: 0;
  }
}

.l-TopContents ul li:nth-child(1) a::before {
  background: url(../images/btn_pic_message.png) no-repeat center center;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-TopContents ul li:nth-child(2) a::before {
  background: url(../images/btn_pic_about.png) no-repeat center center;
  background-size: cover;
}
.l-TopContents ul li:nth-child(3) a::before {
  background: url(../images/btn_pic_network.png) no-repeat center center;
  background-size: cover;
}
.l-TopContents ul li:nth-child(4) a::before {
  background: url(../images/btn_pic_seminar.png) no-repeat center center;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .l-TopContents ul li:nth-child(even)::before {
    background: var(--preset-color-vivid02-green);
  }
}
@media screen and (max-width: 767px) {
  .l-TopContents ul li:nth-child(2)::before, .l-TopContents ul li:nth-child(3)::before {
    background: var(--preset-color-vivid02-green);
  }
}

/* バナーリンク領域  */
.l-TopBanner {
  background: var(--base-gray-light);
}
.l-TopBanner ul {
  margin: 0;
}
@media all and (min-width: 768px) {
  .l-TopBanner {
    padding: 30px 0 20px;
  }
  .l-TopBanner ul.l-TopBanner_main {
    width: 1020px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .l-TopBanner ul.l-TopBanner_main li {
    padding-right: 20px;
    margin-bottom: 10px;
  }
  .l-TopBanner ul.l-TopBanner_main li:nth-child(4n) {
    padding-right: 0;
  }
  .l-TopBanner ul.l-TopBanner_main li img {
    width: 240px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-TopBanner {
    padding: 23px 10px 13px;
  }
  .l-TopBanner ul.l-TopBanner_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .l-TopBanner ul.l-TopBanner_main li {
    width: calc(50% - 6px);
    margin-bottom: 10px;
  }
  .l-TopBanner ul.l-TopBanner_main li img {
    max-width: 100%;
    height: auto;
  }
}

@media all and (min-width: 768px) {
  .splide {
    width: 1020px;
    margin: auto;
  }
}

.splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*  CODEPEN表示調整用  */
@media all and (min-width: 768px) {
  .splide__track {
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .splide__track {
    height: auto;
  }
}

ul.l-TopBanner_sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  font-size: 0.875rem;
}
@media all and (min-width: 768px) {
  ul.l-TopBanner_sub {
    width: 1020px;
    margin: auto;
  }
}
ul.l-TopBanner_sub a {
  position: relative;
  display: inline-block;
  padding: 5px 20px 5px 14px;
  color: var(--default-black);
  text-decoration: underline;
}
ul.l-TopBanner_sub a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-radius: 50%;
  background-color: #fff;
}
ul.l-TopBanner_sub a:hover {
  color: var(--default-blue);
}

.page_link_list {
  margin-bottom: 35px;
}
.page_link_list ul {
  border-top: solid 1px #C1C1C1;
  border-left: solid 1px #C1C1C1;
}
@media all and (min-width: 768px) {
  .page_link_list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.page_link_list ul li {
  list-style: none !important;
  margin-left: 0px !important;
  border-bottom: solid 1px #C1C1C1;
  border-right: solid 1px #C1C1C1;
}
@media all and (min-width: 768px) {
  .page_link_list ul li {
    width: 25%;
  }
}
.page_link_list ul li a {
  position: relative;
  text-decoration: none;
  color: var(--default-black) !important;
  background: var(--default-white);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .page_link_list ul li a {
    display: block;
    padding: 15px 10px 15px 50px;
  }
}
@media all and (min-width: 768px) {
  .page_link_list ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 55px;
    padding: 10px 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.125rem;
  }
}
.page_link_list ul li a:before {
  content: "";
  position: absolute;
  display: block;
  left: 15px;
  top: 50%;
  width: 23px;
  height: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background: var(--preset-color-pale-blue);
}
.page_link_list ul li a:after {
  content: "";
  position: absolute;
  display: block;
  left: 18px;
  top: 50%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin: -4px 0 0 -3px;
  width: 22px;
  height: 8px;
  background: url("../common/arrow_left_blue.svg") no-repeat center center;
  background-size: contain;
}
.page_link_list ul li a:hover {
  background: var(--preset-color-pale-blue);
}
.page_link_list ul li a:hover:before {
  background: var(--default-white);
}
.page_link_list ul li.link_another a:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.edit-area .table-cooperation_list,
.cke_editable .table-cooperation_list {
  border: solid 3px #CCC;
  line-height: 1.6;
  table-layout: auto;
}
.edit-area .table-cooperation_list tr:nth-child(odd),
.cke_editable .table-cooperation_list tr:nth-child(odd) {
  background: #F7F7F7;
}
.edit-area .table-cooperation_list th,
.cke_editable .table-cooperation_list th {
  font-size: 0.875rem;
  border: none;
  border-bottom: solid 3px #CCC;
  border-left: dotted 1px #999;
}
@media screen and (max-width: 767px) {
  .edit-area .table-cooperation_list th,
  .cke_editable .table-cooperation_list th {
    font-size: 0.75rem;
  }
}
.edit-area .table-cooperation_list td,
.cke_editable .table-cooperation_list td {
  border: none;
  border-bottom: solid 1px var(--preset-color-dark-gray);
  border-left: dotted 1px #999;
}
@media screen and (max-width: 767px) {
  .edit-area .table-cooperation_list td,
  .cke_editable .table-cooperation_list td {
    font-size: 0.75rem;
    padding: 6px;
  }
}
@media all and (min-width: 768px) {
  .edit-area .table-cooperation_list td,
  .cke_editable .table-cooperation_list td {
    font-size: 0.9375rem;
    padding: 16px 15px;
  }
}
.edit-area .table-cooperation_list td:nth-child(1),
.cke_editable .table-cooperation_list td:nth-child(1) {
  width: 21%;
}
.edit-area .table-cooperation_list td:nth-child(3),
.cke_editable .table-cooperation_list td:nth-child(3) {
  width: 15%;
}
.edit-area .table-cooperation_list td:nth-child(2),
.cke_editable .table-cooperation_list td:nth-child(2) {
  width: 30%;
}

.modaal-box {
  display: none;
}

.modaal-container {
  max-width: 740px !important;
}

.modaal-content-container {
  padding: 50px 70px !important;
}
@media screen and (max-width: 767px) {
  .modaal-content-container {
    padding: 30px 20px !important;
  }
}
.modaal-content-container h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .modaal-content-container h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}
.modaal-content-container section {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .modaal-content-container section {
    margin-bottom: 15px;
  }
}
.modaal-content-container h4 {
  font-size: 1rem;
  color: var(--preset-color-vivid-blue);
  margin-bottom: 10px;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
  background: var(--default-blue) !important;
}

.cke_editable .modaal-box {
  display: block;
  border: 1px dotted #CCC;
  background: #eee;
  padding: 5px;
  margin-top: 15px;
}
.cke_editable .modaal-box h3 {
  text-align: left;
  font-size: 1.25rem;
  margin-bottom: 10px;
  padding: 5px;
  border: 1px dotted #CCC;
  background: #fff;
}
.cke_editable .modaal-box section {
  margin-bottom: 10px;
  padding: 5px;
  border: 1px dotted #CCC;
  background: #fff;
}
.cke_editable .modaal-box h4 {
  font-size: 1rem;
  color: var(--preset-color-vivid-blue);
  margin-bottom: 5px;
}
.cke_editable .modaal-box .a.link_btn {
  margin: 0;
}

.edit-area a.a_ico_link_plus {
  position: relative;
  text-decoration: none;
  display: inline-block;
  text-decoration: underline;
  color: var(--default-black);
}
.edit-area a.a_ico_link_plus .material-icons {
  color: var(--base-blue-vivid);
  vertical-align: middle;
  font-size: 1.5rem;
  -webkit-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}
@media screen and (max-width: 767px) {
  .edit-area a.a_ico_link_plus .material-icons {
    font-size: 1.25rem;
    -webkit-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
}

.cke_editable a.a_ico_link_plus {
  text-decoration: underline;
  color: var(--default-black);
}
.cke_editable a.a_ico_link_plus .material-icons {
  display: none;
}

@media screen and (max-width: 767px) {
  .password-area {
    padding-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .password-area {
    min-height: 300px;
    padding-top: 50px;
  }
}
.password-area h2 {
  margin-bottom: 15px;
  position: relative;
  text-indent: -1.8em;
  padding-left: 1.8em;
  font-weight: 500;
  font-size: 1.375rem;
}
@media all and (min-width: 768px) {
  .password-area h2 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.password-area h2:before {
  content: "";
  position: relative;
  top: 0.25em;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  height: 32px;
  width: 32px;
  margin-right: 8px;
  background: url("../common/ico_attention.svg") no-repeat 0 0;
  background-size: contain;
}
.password-area .password_input {
  margin: 30px auto 0;
  padding-bottom: 2px;
}
@media all and (min-width: 768px) {
  .password-area .password_input {
    width: 540px;
    zoom: 1;
  }
  .password-area .password_input::after {
    content: " ";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
  }
}
@media all and (min-width: 768px) {
  .password-area .password_input .input_page_login {
    float: left;
    width: 360px;
  }
}
.password-area .password_input .input_page_login input[type=password] {
  width: 100%;
  min-height: 50px;
  padding: 8px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.125rem;
  border: solid 1px var(--preset-color-pale-gray);
  background: --base-gray-default;
}
.password-area .password_input .input_page_login input::-webkit-input-placeholder {
  color: #999;
  font-size: 1rem;
}
.password-area .password_input .input_page_login input::-moz-placeholder {
  color: #999;
  font-size: 1rem;
}
.password-area .password_input .input_page_login input:-ms-input-placeholder {
  color: #999;
  font-size: 1rem;
}
.password-area .password_input .input_page_login input::-ms-input-placeholder {
  color: #999;
  font-size: 1rem;
}
.password-area .password_input .input_page_login input::placeholder {
  color: #999;
  font-size: 1rem;
}
.password-area .password_input .btn_password {
  width: 165px;
}
@media screen and (max-width: 767px) {
  .password-area .password_input .btn_password {
    margin: 20px auto 0;
  }
}
@media all and (min-width: 768px) {
  .password-area .password_input .btn_password {
    float: right;
  }
}
.password-area .password_input .btn_password a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 48px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px var(--preset-color-vivid-blue);
  -webkit-box-shadow: 1px 1px 0 var(--preset-color-vivid-blue);
          box-shadow: 1px 1px 0 var(--preset-color-vivid-blue);
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--default-black);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background: var(--preset-color-light-blue);
  cursor: pointer;
}
.password-area .password_input .btn_password a:hover {
  background: #A8E8F7;
}

/* ------------ ニュース一覧領域内 ------------ */
.news-cont .news,
.news-list_block .news {
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: solid 1px #D8D8D8;
}
.news-cont .news::after,
.news-list_block .news::after {
  content: " ";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}
.news-cont .news figure img,
.news-list_block .news figure img {
  float: left;
  max-width: 80px;
  height: auto;
  margin: 5px 15px 10px 0;
  vertical-align: bottom;
}
.news-cont .news:last-child,
.news-list_block .news:last-child {
  border: none;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.news a {
  color: var(--default-black);
}
.news a:hover {
  color: var(--base-blue-vivid);
}
.news a:hover dd {
  text-decoration: underline;
}
.news dt {
  font-size: 0.8125rem;
  margin-bottom: 5px;
  font-weight: 500;
}
.news dt .category {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 5px;
  border-radius: 20px;
  font-size: 0.625rem !important;
  font-weight: normal;
  color: #fff;
  background: var(--base-blue-vivid);
}
.news dt .new {
  display: inline-block;
  margin-left: 5px;
  color: var(--preset-color-default-red);
}
.news dd {
  letter-spacing: 0.04em;
  font-size: 0.9375rem;
}
.news a.t_link_lift {
  pointer-events: none !important;
}

/* ------------ 詳細画面 ------------ */
/*  タイトル領域 */
.l-news__headarea--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-news__headarea--info .data {
  font-size: 0.9375rem;
  color: var(--preset-color-dark-gray);
}
.l-news__headarea--info .cate {
  margin: 0;
}
.l-news__headarea--info .cate li {
  display: inline-block;
  padding: 4px 12px 5px;
  margin-left: 5px;
  font-size: 0.75rem;
  color: #fff;
  background-color: var(--base-blue-vivid);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .l-news__headarea--info .cate li {
    font-size: 0.6875rem;
  }
}

/* ------------ 一覧画面 ------------ */
.l-cont-menu__heading {
  position: relative;
  padding: 20px 10px 15px 10px;
}
.l-cont-menu__heading h2 {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
  z-index: 1;
}
.l-cont-menu__heading::after {
  position: absolute;
  display: inline-block;
  bottom: 0;
  right: 5px;
  content: "NEWS";
  font-family: var(--font_en);
  color: #D4E5EA;
  font-size: 2.4375rem;
  font-weight: 500;
  line-height: 1;
}

.l-cont-menu__inner {
  background: #fff;
  margin-bottom: 7px;
}
.l-cont-menu__inner ul {
  margin: 0;
}
.l-cont-menu__inner ul li {
  border-bottom: 1px solid #D9D9D9;
  font-size: 0.875rem;
}
.l-cont-menu__inner ul li a {
  position: relative;
  display: block;
  padding: 20px 2em 18px 10px;
  color: var(--default-black);
}
.l-cont-menu__inner ul li a::before {
  position: absolute;
  top: 0;
  right: 10px;
  top: 50%;
  margin-top: -9px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--preset-color-pale-blue);
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-cont-menu__inner ul li a::after {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -2px;
  width: 10px;
  height: 7px;
  right: 15px;
  background: url(../common/arrow_right_blue.svg) no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-cont-menu__inner ul li a:hover {
  color: var(--default-blue);
}
.l-cont-menu__inner ul li a:hover::before {
  width: 10px;
  height: 10px;
  margin-top: -2px;
  right: 15px;
  background: var(--preset-color-vivid-blue);
}
.l-cont-menu__inner ul li a:hover::after {
  background: none;
}
.l-cont-menu__inner .now a::before {
  width: 10px;
  height: 10px;
  margin-top: -2px;
  right: 15px;
  background: var(--preset-color-vivid-blue);
}

/* --- ページネーション --- */
.news_pagination {
  margin-top: 35px;
}
@media all and (min-width: 768px) {
  .news_pagination {
    margin-top: 20px;
  }
}
.news_pagination .num {
  text-align: center;
  font-size: 0.8125rem;
}
.news_pagination .pagination {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--base-gray-default);
  border: 1px solid var(--base-gray-light);
}
.news_pagination .pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(50% - 1px);
}
.news_pagination .pagination ul li {
  color: #FFF;
  font-size: 0;
  text-align: center;
  width: calc(50% - 1px);
  font-size: 0rem;
}
.news_pagination .pagination ul li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  color: var(--default-black);
  font-size: 0.9375rem;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
  padding: 13px 10px;
  background: var(--base-gray-pale);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .news_pagination .pagination ul li a {
    font-size: 0.875rem;
  }
}
.news_pagination .pagination ul li a:hover {
  background: var(--base-gray-light);
}
.news_pagination .pagination ul.next a {
  background: var(--preset-color-pale-blue);
}
.news_pagination .pagination ul.next a:hover {
  background: var(--base-blue-vivid);
}

/*--  カテゴリブルダウン ((スマホのみ) --*/
@media all and (min-width: 768px) {
  .select_category_Sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .select_category_Sp {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .select_category_Sp select {
    background: #fff;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 12px 35px 12px 10px;
    border: 1px solid var(--preset-color-dark-gray);
  }
  .select_category_Sp::after {
    display: block;
    content: "";
    position: absolute;
    top: 20px;
    right: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 6px 0 6px;
    border-color: #22C4E6 transparent transparent transparent;
  }
}

.edit-area,
.cke_editable {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .edit-area,
  .cke_editable {
    overflow: hidden;
  }
}

.detail_news_social {
  zoom: 1;
  margin-top: 20px;
}
.detail_news_social::after {
  content: " ";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}
.detail_news_social ul {
  float: right;
}
.detail_news_social ul li {
  margin-left: 10px !important;
  list-style: none !important;
  float: left;
}
.detail_news_social ul a {
  vertical-align: bottom;
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.detail_news_social ul a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.detail_news_social ul a.fb {
  background: #1a63ac url("../common/logo_fb01.png") no-repeat center;
  background-size: auto 18px;
}
.detail_news_social ul a.tw {
  background: #000 url("../common/logo_tw01.png") no-repeat center;
  background-size: auto 15px;
}
.detail_news_social ul .line {
  background: #00b900 url("../common/logo_line01.png") no-repeat center;
  background-size: auto 20px;
}

.op_small {
  font-size: 0.875rem;
}

.op_mideamu {
  font-size: 1rem;
}

.op_large {
  font-size: 1.5rem;
  line-height: 1.5;
}

.edit-area a,
.cke_editable a {
  color: var(--default-blue);
  text-decoration: underline;
}
.edit-area a:hover,
.cke_editable a:hover {
  color: var(--preset-color-vivid-blue);
}

a.a_ico_link {
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding-left: 1em;
  text-decoration: underline;
  color: var(--default-black);
}
a.a_ico_link:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--preset-color-vivid-blue);
  border-right: 2px solid var(--preset-color-vivid-blue);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.edit-area table,
.cke_editable table {
  table-layout: fixed;
  width: 100%;
  margin: 15px 0;
  border-collapse: collapse;
  border-spacing: 0;
}
.edit-area table td,
.edit-area table th,
.cke_editable table td,
.cke_editable table th {
  border: 1px solid var(--preset-color-dark-gray);
  padding: 10px 12px;
}
@media screen and (max-width: 767px) {
  .edit-area table td,
  .edit-area table th,
  .cke_editable table td,
  .cke_editable table th {
    padding: 5px 8px;
  }
}
.edit-area th,
.cke_editable th {
  font-weight: normal;
  background: var(--base-gray-pale);
}

.edit-area ul li,
.cke_editable ul li {
  margin-left: 23px;
  list-style: disc;
}
.edit-area ol,
.cke_editable ol {
  margin-left: 23px;
}
.edit-area ol li,
.cke_editable ol li {
  list-style-type: decimal;
}

.list_check {
  list-style: none;
  padding: 0;
  position: relative;
  margin-left: 0 !important;
}
.list_check li {
  margin-left: 10px !important;
  list-style: none !important;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 3px;
}
.list_check li:before {
  content: "";
  position: relative;
  top: -1px;
  left: -2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  height: 10px;
  width: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 0;
  margin-right: 8px;
  background: none;
  border-bottom: solid 3px #555;
  border-right: solid 3px #555;
}

.list_color_blue,
.list_color_orange,
.list_color_gray {
  margin-left: 3px !important;
}
.list_color_blue li,
.list_color_orange li,
.list_color_gray li {
  list-style: none !important;
  margin-left: 5px !important;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 3px;
}
.list_color_blue li::before,
.list_color_orange li::before,
.list_color_gray li::before {
  content: "";
  position: relative;
  top: -1px;
  left: -2px;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
  background: var(--default-blue);
}

.list_color_orange li:before {
  background: #FC8955;
}

.list_color_gray li:before {
  background: var(--base-gray-light);
}

.edit-area .list_num01,
.cke_editable .list_num01 {
  margin-left: 0px;
  counter-reset: number;
}
.edit-area .list_num01 li,
.cke_editable .list_num01 li {
  margin-left: 0px;
  margin-bottom: 10px;
  list-style: none;
  padding-left: 30px;
  list-style: none;
  position: relative;
}
.edit-area .list_num01 li:before,
.cke_editable .list_num01 li:before {
  position: absolute;
  left: 0px;
  top: 0.25em;
  counter-increment: number;
  content: counter(number);
  width: 22px;
  height: 22px;
  padding: 1px 2px 2px 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--default-white);
  line-height: 1;
  letter-spacing: 0;
  border-radius: 100%;
  font-weight: 400;
  background: var(--base-blue-vivid);
}
.edit-area .list_num01.bg_gray li:before,
.cke_editable .list_num01.bg_gray li:before {
  color: var(--default-black);
  background: var(--base-gray-pale);
}

.newsImg01,
.newsImg02,
.newsImg03 {
  line-height: 1.6;
  font-size: 0.875rem;
}
.newsImg01 img,
.newsImg02 img,
.newsImg03 img {
  vertical-align: bottom;
  margin-bottom: 2px;
}

.newsImg01 ul,
.newsImg02 ul,
.newsImg03 ul {
  margin-left: 0 !important;
}
.newsImg01 ul li,
.newsImg02 ul li,
.newsImg03 ul li {
  margin-left: 0 !important;
  list-style: none !important;
}

.newsImg01 {
  max-width: 100%;
  margin: 20px auto 0;
}
.newsImg01 li {
  max-width: 100%;
}

.newsImg02,
.newsImg03 {
  margin: 20px auto 0;
}
@media all and (min-width: 768px) {
  .newsImg02 ul,
  .newsImg03 ul {
    zoom: 1;
  }
  .newsImg02 ul::after,
  .newsImg03 ul::after {
    content: " ";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
  }
}
@media screen and (max-width: 767px) {
  .newsImg02 ul li,
  .newsImg03 ul li {
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .newsImg02 ul li,
  .newsImg03 ul li {
    float: left;
  }
}

@media all and (min-width: 768px) {
  .newsImg02 ul li {
    width: calc(50% - 20px);
  }
  .newsImg02 ul li:nth-child(2n) {
    margin-right: 0px;
    float: right;
  }
}

@media all and (min-width: 768px) {
  .newsImg03 ul li {
    margin-right: 22px;
    width: calc(33.3333333333% - 15px);
  }
  .newsImg03 ul li:nth-child(3n) {
    margin-right: 0px;
    float: right;
  }
}

@media screen and (max-width: 767px) {
  .newsImg02.sp_img_range ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .newsImg02.sp_img_range ul li {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 767px) {
  .newsImg03.sp_img_range ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .newsImg03.sp_img_range ul li {
    width: calc(33.3333333333% - 7px);
  }
}

.ico_20 {
  width: 24px;
  height: 24px;
  padding: 0 4px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.lay-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .lay-grid {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media all and (min-width: 768px) {
  .lay-grid {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.lay-grid > .col-1,
.lay-grid > .col-2,
.lay-grid > .col-3,
.lay-grid > .col-4,
.lay-grid > .col-5,
.lay-grid > .col-6,
.lay-grid > .col-7,
.lay-grid > .col-8,
.lay-grid > .col-9,
.lay-grid > .col-10,
.lay-grid > .col-11,
.lay-grid > .col-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .lay-grid > .col-1,
  .lay-grid > .col-2,
  .lay-grid > .col-3,
  .lay-grid > .col-4,
  .lay-grid > .col-5,
  .lay-grid > .col-6,
  .lay-grid > .col-7,
  .lay-grid > .col-8,
  .lay-grid > .col-9,
  .lay-grid > .col-10,
  .lay-grid > .col-11,
  .lay-grid > .col-12 {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media all and (min-width: 768px) {
  .lay-grid > .col-1,
  .lay-grid > .col-2,
  .lay-grid > .col-3,
  .lay-grid > .col-4,
  .lay-grid > .col-5,
  .lay-grid > .col-6,
  .lay-grid > .col-7,
  .lay-grid > .col-8,
  .lay-grid > .col-9,
  .lay-grid > .col-10,
  .lay-grid > .col-11,
  .lay-grid > .col-12 {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.lay-grid > .col-1 {
  width: calc(8.3333333333% - 20px);
}

.lay-grid > .col-2 {
  width: calc(16.6666666667% - 20px);
}

.lay-grid > .col-3 {
  width: calc(25% - 20px);
}

.lay-grid > .col-4 {
  width: calc(33.3333333333% - 20px);
}

.lay-grid > .col-5 {
  width: calc(41.6666666667% - 20px);
}

.lay-grid > .col-6 {
  width: calc(50% - 20px);
}

.lay-grid > .col-7 {
  width: calc(58.3333333333% - 20px);
}

.lay-grid > .col-8 {
  width: calc(66.6666666667% - 20px);
}

.lay-grid > .col-9 {
  width: calc(75% - 20px);
}

.lay-grid > .col-10 {
  width: calc(83.3333333333% - 20px);
}

.lay-grid > .col-11 {
  width: calc(91.6666666667% - 20px);
}

.lay-grid > .col-12 {
  width: calc(100% - 20px);
}

@media all and (min-width: 768px) {
  .lay-grid > .col-1 {
    width: calc(8.3333333333% - 30px);
  }
  .lay-grid > .col-2 {
    width: calc(16.6666666667% - 30px);
  }
  .lay-grid > .col-3 {
    width: calc(25% - 30px);
  }
  .lay-grid > .col-4 {
    width: calc(33.3333333333% - 30px);
  }
  .lay-grid > .col-5 {
    width: calc(41.6666666667% - 30px);
  }
  .lay-grid > .col-6 {
    width: calc(50% - 30px);
  }
  .lay-grid > .col-7 {
    width: calc(58.3333333333% - 30px);
  }
  .lay-grid > .col-8 {
    width: calc(66.6666666667% - 30px);
  }
  .lay-grid > .col-9 {
    width: calc(75% - 30px);
  }
  .lay-grid > .col-10 {
    width: calc(83.3333333333% - 30px);
  }
  .lay-grid > .col-11 {
    width: calc(91.6666666667% - 30px);
  }
  .lay-grid > .col-12 {
    width: calc(100% - 30px);
  }
}
.lay-grid > .col-lg-1,
.lay-grid > .col-lg-2,
.lay-grid > .col-lg-3,
.lay-grid > .col-lg-4,
.lay-grid > .col-lg-5,
.lay-grid > .col-lg-6,
.lay-grid > .col-lg-7,
.lay-grid > .col-lg-8,
.lay-grid > .col-lg-9,
.lay-grid > .col-lg-10,
.lay-grid > .col-lg-11,
.lay-grid > .col-lg-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
}

@media all and (min-width: 768px) {
  .lay-grid > .col-lg-1 {
    width: calc(8.3333333333% - 30px);
  }
  .lay-grid > .col-lg-2 {
    width: calc(16.6666666667% - 30px);
  }
  .lay-grid > .col-lg-3 {
    width: calc(25% - 30px);
  }
  .lay-grid > .col-lg-4 {
    width: calc(33.3333333333% - 30px);
  }
  .lay-grid > .col-lg-5 {
    width: calc(41.6666666667% - 30px);
  }
  .lay-grid > .col-lg-6 {
    width: calc(50% - 30px);
  }
  .lay-grid > .col-lg-7 {
    width: calc(58.3333333333% - 30px);
  }
  .lay-grid > .col-lg-8 {
    width: calc(66.6666666667% - 30px);
  }
  .lay-grid > .col-lg-9 {
    width: calc(75% - 30px);
  }
  .lay-grid > .col-lg-10 {
    width: calc(83.3333333333% - 30px);
  }
  .lay-grid > .col-lg-11 {
    width: calc(91.6666666667% - 30px);
  }
  .lay-grid > .col-lg-12 {
    width: calc(100% - 30px);
  }
  .card-box__item--lg-last {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .lay-grid > .col-lg-1,
  .lay-grid > .col-lg-2,
  .lay-grid > .col-lg-3,
  .lay-grid > .col-lg-4,
  .lay-grid > .col-lg-5,
  .lay-grid > .col-lg-6,
  .lay-grid > .col-lg-7,
  .lay-grid > .col-lg-8,
  .lay-grid > .col-lg-9,
  .lay-grid > .col-lg-10,
  .lay-grid > .col-lg-11,
  .lay-grid > .col-lg-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.card-box {
  margin-top: 20px;
}
.card-box img {
  vertical-align: bottom;
  margin-bottom: 2px;
}
.card-box figcaption {
  font-size: 0.875rem;
}

.card-box__item--fast {
  margin-top: 20px;
}

.div_info01,
.div_info02 {
  margin: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 18px;
}
@media all and (min-width: 768px) {
  .div_info01,
  .div_info02 {
    padding: 30px 35px;
  }
}

.div_info01 {
  background: var(--preset-color-default-orange);
}
.div_info01.bg_blue {
  background: var(--preset-color-light-blue);
}

.div_info02 {
  background: #fff;
  border: solid 3px var(--base-gray-pale);
}

hr.div_hr01 {
  display: block;
  margin: 20px 0;
  border: none;
  border-bottom: dashed 1px var(--preset-color-pale-gray);
}

@media all and (min-width: 768px) {
  .youtube-css {
    max-width: 800px;
    margin: 15px auto;
  }
}

.youtube-css iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.g-map {
  width: 100% !important;
}

.pagesummary {
  margin-bottom: 35px;
  padding-bottom: 8px;
  border-bottom: solid 2px var(--base-blue-default);
}
@media screen and (max-width: 767px) {
  .pagesummary {
    margin-bottom: 25px;
  }
}
.pagesummary .tit {
  display: none;
}
.pagesummary ul {
  margin-left: 0 !important;
}
.pagesummary ul li {
  margin-left: 0 !important;
  list-style-type: none !important;
}
@media all and (min-width: 768px) {
  .pagesummary ul li {
    display: inline-block;
    margin-right: 20px;
  }
  .pagesummary ul li:last-child {
    margin-right: 0px;
  }
}
.pagesummary ul a {
  position: relative;
  padding-left: 20px;
  display: block;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--default-black);
}
.pagesummary ul a:hover {
  color: var(--default-blue) !important;
}
.pagesummary ul a::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--default-blue);
  border-right: solid 2px var(--default-blue);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .pagesummary ul a {
    margin-bottom: 10px;
  }
  .pagesummary ul a::before {
    position: absolute;
    top: 0.6em;
    left: 2px;
  }
}
@media all and (min-width: 768px) {
  .pagesummary ul.foL li {
    margin-right: 35px;
  }
  .pagesummary ul.foL li a {
    padding-left: 24px;
    font-size: 1.0625rem;
  }
  .pagesummary ul.foL li a::before {
    top: 11px;
  }
}
@media screen and (max-width: 767px) {
  .pagesummary ul.foL li a {
    font-size: 0.9375rem;
  }
}

body.cke_editable {
  overflow: auto;
  padding: 10px;
  background: var(--default-white);
}
body.cke_editable img {
  max-width: 100%;
  height: auto;
}
body.cke_editable .lay-grid .col-1,
body.cke_editable .lay-grid .col-2,
body.cke_editable .lay-grid .col-3,
body.cke_editable .lay-grid .col-4,
body.cke_editable .lay-grid .col-5,
body.cke_editable .lay-grid .col-6,
body.cke_editable .lay-grid .col-7,
body.cke_editable .lay-grid .col-8,
body.cke_editable .lay-grid .col-9,
body.cke_editable .lay-grid .col-10,
body.cke_editable .lay-grid .col-11,
body.cke_editable .lay-grid .col-12 {
  padding: 10px;
  border: dashed 1px var(--default-gray);
  border-radius: 4px;
}
body.cke_editable .ckeditor_divline {
  background: url(../common/ckeditor_divline.gif) no-repeat;
}
/*# sourceMappingURL=style.css.map */