@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=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: none;
}

img,
picture {
  max-width: 100%;
  display: inline-block;
}

input,
button,
textarea,
select {
  font: inherit;
  cursor: pointer;
}

strong {
  font-weight: bolder;
}

textarea {
  resize: vertical;
}

:root {
  --font_base: 16px/1.7 "Zen Kaku Gothic New", sans-serif;
}

:root {
  --default-black: #333;
  --default-white: #fff;
  --default-blue: #009CEF;
  --base-gray-default: #F4F6F8;
  --base-gray-dark:#6C6C6C;
  --color-primary: #1CA16D;
  --color-pink:#FF76AA;
}

.is-trim-tight {
  position: relative;
  display: inline-block;
}
.is-trim-tight::before, .is-trim-tight::after {
  content: "";
  display: block;
  height: 0;
}
.is-trim-tight::before {
  margin-top: -0.15em;
}
.is-trim-tight::after {
  margin-bottom: -0.15em;
}
@supports (text-box-trim: trim-both) {
  .is-trim-tight {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
  .is-trim-tight::before, .is-trim-tight::after {
    margin: 0;
  }
}

.is-trim-snug {
  position: relative;
  display: inline-block;
}
.is-trim-snug::before, .is-trim-snug::after {
  content: "";
  display: block;
  height: 0;
}
.is-trim-snug::before {
  margin-top: -0.1em;
}
.is-trim-snug::after {
  margin-bottom: -0.1em;
}
@supports (text-box-trim: trim-both) {
  .is-trim-snug {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
  .is-trim-snug::before, .is-trim-snug::after {
    margin: 0;
  }
}

.is-trim-soft {
  position: relative;
  display: inline-block;
}
.is-trim-soft::before, .is-trim-soft::after {
  content: "";
  display: block;
  height: 0;
}
.is-trim-soft::before {
  margin-top: -0.05em;
}
.is-trim-soft::after {
  margin-bottom: -0.05em;
}
@supports (text-box-trim: trim-both) {
  .is-trim-soft {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
  .is-trim-soft::before, .is-trim-soft::after {
    margin: 0;
  }
}

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

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

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

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

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

@media all and (min-width: 768px) {
  header {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 84px;
  }
}

@media all and (min-width: 768px) {
  .l-header__nav-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 15px;
  }
  .l-header__nav-list li {
    position: relative;
    padding-right: 15px;
  }
  .l-header__nav-list li::before {
    content: "";
    background: url("../common/ico_birch.svg") no-repeat center center;
    background-size: contain;
    width: 7px;
    height: 1em;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
  }
  .l-header__nav-list li:last-child::before {
    display: none;
  }
  .l-header__nav-list li a {
    text-decoration: none;
    color: #000;
    position: relative;
    display: inline-block;
    transition: 0.3s;
    font-size: 0.875rem;
  }
  .l-header__nav-list li a::after {
    position: absolute;
    bottom: 0.3em;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    opacity: 0;
    transition: 0.3s;
  }
  .l-header__nav-list li a:hover {
    color: #000;
  }
  .l-header__nav-list li a:hover::after {
    bottom: 0;
    opacity: 1;
  }
  .l-header__nav .l-header__contact--sp {
    display: none;
  }
  .l-header__nav .l-header__contact--pc {
    position: absolute;
    top: 0px;
    right: 0;
  }
  .l-header__nav .l-header__contact--pc a {
    background: var(--color-pink);
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 2px 16px 4px;
    border-radius: 0 0 14px 14px;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
  }
  .l-header__nav .l-header__contact--pc a:hover {
    background: #FC176E;
  }
  .l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 100%;
    position: relative;
    max-width: 1080px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-top: 16px;
  }
  .l-header__contact--pc {
    display: none;
  }
  .l-header__contact--sp {
    margin: 60px 20px 0;
    box-sizing: border-box;
    text-align: center;
  }
  .l-header__contact--sp a {
    background: var(--color-pink);
    display: inline-block;
    color: #fff;
    border-radius: 100vh;
    text-align: center;
    padding: 10px 20px;
  }
  .l-header__nav .l-header__nav-panel .l-header__nav-list {
    padding-top: 70px;
    margin: 20px;
  }
  .l-header__nav .l-header__nav-panel .l-header__nav-list li {
    box-sizing: border-box;
  }
  .l-header__nav .l-header__nav-panel .l-header__nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    display: block;
    padding-left: 35px;
  }
  .l-header__nav .l-header__nav-panel .l-header__nav-list li a::before {
    content: "";
    background: url("../common/ico_birch.svg") no-repeat center center;
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: contain;
    margin-right: 10px;
    position: absolute;
    left: 10px;
    top: 1.4em;
  }
}
@media screen and (max-width: 1020px) {
  .l-header__inner .l-header__brand {
    flex-direction: column;
    height: 80px;
  }
}
@media screen and (min-width: 767px) and (max-width: 850px) {
  .l-header__inner {
    margin: 0 5px;
  }
  .l-header__inner .l-header__brand {
    transform: scale(0.89);
  }
  .l-header__inner .l-header__nav .l-header__nav-list li:first-child::before {
    display: none;
  }
}
.l-header__brand {
  line-height: 1.4;
  text-decoration: none;
  color: inherit;
  position: relative;
  display: flex;
}
@media all and (min-width: 768px) {
  .l-header__brand {
    white-space: nowrap;
  }
}
@media screen and (max-width: 320px) {
  .l-header__brand {
    padding-left: 50px;
    margin-left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__brand {
    height: auto !important;
    display: inline-block;
    margin-left: 10px;
  }
}
.l-header__brand .l-header__brand-affiliation {
  font-size: 1.5625rem;
}
@media screen and (max-width: 320px) {
  .l-header__brand .l-header__brand-affiliation {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 767px) {
  .l-header__brand .l-header__brand-affiliation {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__brand .l-header__brand-title {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 320px) {
  .l-header__brand .l-header__brand-title {
    font-size: 12px !important;
  }
}
.l-header__brand .l-header__brand-caption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  text-indent: 1000%;
  overflow: hidden;
  white-space: nowrap;
  background: url("../common/img_logo_txt.svg") no-repeat center bottom;
  transform: translateY(-4px);
}
@media screen and (max-width: 1020px) {
  .l-header__brand .l-header__brand-caption {
    background: url("../common/img_logo_txt.svg") no-repeat center left;
    transform: translateY(0px);
  }
}
@media screen and (max-width: 767px) {
  .l-header__brand .l-header__brand-caption {
    display: inline-block;
    margin-bottom: 0;
    background: url("../common/img_logo_txt.svg") no-repeat center left;
    transform: translateY(0px);
  }
}
@media screen and (max-width: 320px) {
  .l-header__brand .l-header__brand-caption {
    width: 70%;
    background-size: contain;
  }
}

@media screen and (max-width: 320px) {
  #display.is-up-move {
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-100px);
    }
  }
  /*　下に下がる動き　*/
  #display.is-down-move {
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
.nav01d li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

.nav01d li.current a,
.nav01d li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.nav01d li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  top: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*===========================================================*/
/*機能編  　5-1-20 クリックしたら円形背景が拡大（右上から）
/*===========================================================*/
/*========= ナビゲーションのためのCSS ===============*/
@media screen and (max-width: 767px) {
  /*アクティブになったエリア*/
  .l-header__nav.is-panel-active {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    right: inherit;
    width: 100%;
  }
  /*丸の拡大*/
  .l-header__menu-overlay {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #046941;
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    right: -15px;
    top: -15px;
    transition-duration: 0.7s;
    transition-timing-function: ease-in-out;
    /*0.6秒かけてアニメーション*/
  }
  .l-header__menu-overlay.is-circle-active {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
  }
  /*ナビゲーションの縦スクロール*/
  .l-header__nav-panel {
    display: none;
    /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .l-header__nav.is-panel-active .l-header__nav-panel {
    display: block;
  }
  /*ナビゲーション*/
  .l-header__nav ul {
    opacity: 0;
    z-index: 999;
  }
  /*背景が出現後にナビゲーションを表示*/
  .l-header__nav.is-panel-active ul {
    opacity: 1;
    flex-wrap: wrap;
  }
  /*リストのレイアウト設定*/
  .l-header__nav.is-panel-active li {
    width: 100%;
  }
  .l-header__nav.is-panel-active li a {
    padding: 15px 0;
    display: block;
  }
}
/*==================================================
機能編 　5-2-6 3本線が回転して×に
===================================*/
.l-header__menu-toggle {
  display: none;
}

@media screen and (max-width: 767px) {
  /*ボタン外側*/
  .l-header__menu-toggle {
    position: fixed;
    display: block;
    top: 20px;
    right: 10px;
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    border-radius: 10px;
  }
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×になる*/
}
@media screen and (max-width: 767px) and (max-width: 320px) {
  .l-header__menu-toggle {
    right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu-toggle span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 12px;
    height: 3px;
    background: #fff;
  }
  .l-header__menu-toggle span:nth-of-type(1) {
    top: 10px;
    width: 50%;
  }
  .l-header__menu-toggle span:nth-of-type(2) {
    top: 20px;
    width: 50%;
  }
  .l-header__menu-toggle span:nth-of-type(3) {
    top: 30px;
    width: 50%;
  }
  .l-header__menu-toggle.active span:nth-of-type(1) {
    top: 14px;
    left: 12px;
    transform: translateY(6px) rotate(-135deg);
    width: 50%;
  }
  .l-header__menu-toggle.active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__menu-toggle.active span:nth-of-type(3) {
    top: 26px;
    left: 12px;
    transform: translateY(-6px) rotate(135deg);
    width: 50%;
  }
}
/*===========================================================*/
/*機能編  7-1-12 無限に波紋が広がる
/*===========================================================*/
.btnripple2 {
  position: fixed;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  background: transparent;
  /*波紋の形状*/
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  /*アニメーションの設定*/
  transition: all 0.3s;
  outline: none;
}

/*hoverした際の背景色の設定*/
.btnripple2:hover {
  background: #d87514;
  border-color: transparent;
}

/*波形を2つ設定*/
.btnripple2::after,
.btnripple2::before {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  left: -25%;
  top: -25%;
  /*波形の形状*/
  border: 1px solid #fff;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*ループするアニメーションの設定*/
  animation: 1s circleanime linear infinite;
}

/*波形の2つ目は0.5秒遅らせてアニメーション*/
.btnripple2::before {
  animation-delay: 0.5s;
}

/*波形のアニメーション*/
@keyframes circleanime {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/*中央矢印*/
.btnripple2 span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 38%;
  left: 45%;
  /*矢印の形状*/
  border: 14px solid transparent;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-color: #fff;
}

/*===========================================================*/
/*機能編  6-3-1 画面全体に背景動画を流す
/*===========================================================*/
/*========= 背景動画設定のCSS ===============*/
/*===========================================================*/
/* 印象編 4 最低限おぼえておきたい動き
/*===========================================================*/
/* 4-1　ふわっ（上から） */
.is-anim-fade-down {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.u-anim-fade-down-trigger {
  opacity: 0;
}

/*===========================================================*/
/*印象編　8-5 テキストが流れるように出現（下から上）
/*===========================================================*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*上下のアニメーション*/
.upAnime,
.downAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeDownUp {
  animation-name: slideTextY100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextY100 {
  from {
    transform: translateY(100%);
    /*要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeUpDown {
  animation-name: slideTextY-100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%);
    /*要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
footer {
  background: url("../images/img_footer_bg.jpg") no-repeat;
  background-size: cover;
}

.footer-list {
  padding-top: 30px;
}
@media all and (min-width: 768px) {
  .footer-list {
    display: flex;
    justify-content: center;
  }
}
.footer-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .footer-list ul {
    flex-direction: column;
    padding: 0 15px;
  }
}
.footer-list ul li a {
  font-size: 0.875rem;
  color: #fff;
  display: inline-grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  align-items: center;
}
.footer-list ul li a:hover {
  opacity: 0.5;
}
.footer-list ul li a::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background: url("../common/ico_arrow_right_white.svg") no-repeat center center;
  background-size: contain;
}
.footer-heading {
  text-align: center;
  margin: 50px 0 60px;
}
@media screen and (max-width: 767px) {
  .footer-heading {
    margin: 30px 0 40px;
  }
}
.footer-heading__txt {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.4;
}
.footer-heading__txt span {
  font-size: 1.125rem;
}
.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: #fff;
  font-weight: lighter;
}

body {
  font: var(--font_base);
  color: var(--default-black);
  background: #fff;
  font-weight: 500;
}

html,
body {
  height: 100%;
}

body > footer {
  position: sticky;
  top: 100vh;
}

.l-container {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .l-container {
    max-width: inherit;
    margin: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-container.-releasesp {
    max-width: 100%;
    margin: 0;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.c-title {
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.625rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-title {
    font-size: 2.1875rem;
    margin-bottom: 20px;
  }
}

.text_center,
.text_center_Pc,
.text_center_Sp {
  text-align: center;
}

.c-btn,
.c-btn a {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--color-primary);
  gap: 0 20px;
  background: #fff;
  border: 2px solid var(--color-primary);
  padding: 8px 16px 8px 16px;
  border-radius: 100vh;
  font-weight: bold;
  position: relative;
}
.c-btn::after,
.c-btn a::after {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background: url("../common/ico_arrow_right_primary.svg") no-repeat center center;
  background-size: contain;
}
.c-btn:hover,
.c-btn a:hover {
  opacity: 0.6;
}
.c-btn__yt,
.c-btn a__yt {
  border-color: #FF0033;
  background-color: #FF0033;
  color: #fff;
}
.c-btn__yt::after,
.c-btn a__yt::after {
  background: url("../common/ico_arrow_right_white.svg") no-repeat center center;
}
.c-btn__home,
.c-btn a__home {
  padding: 8px 20px 8px 32px;
  gap: 5px;
  font-size: 1.125rem;
  min-width: 200px;
  grid-template-columns: auto 1em;
}
.c-btn__home::after,
.c-btn a__home::after {
  background: url("../common/ico_home.svg") no-repeat center center;
  background-size: contain;
  width: 1em;
  height: 1em;
}
.c-btn__primary,
.c-btn a__primary {
  background: var(--color-primary);
  color: #fff;
}
.c-btn__primary::after,
.c-btn a__primary::after {
  background: url("../common/ico_arrow_right_white.svg") no-repeat center center;
  background-size: contain;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 10px;
}

@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;
  }
}
.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;
  }
}
.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

@media screen and (max-width: 767px) {
  .mr10_Sp {
    margin-right: 10px;
  }
  .mr15_Sp {
    margin-right: 15px;
  }
  .mr20_Sp {
    margin-right: 20px;
  }
  .mr30_Sp {
    margin-right: 30px;
  }
  .mr40_Sp {
    margin-right: 40px;
  }
  .mr50_Sp {
    margin-right: 50px;
  }
}
@media all and (min-width: 768px) {
  .mr10_Pc {
    margin-right: 10px;
  }
  .mr15_Pc {
    margin-right: 15px;
  }
  .mr20_Pc {
    margin-right: 20px;
  }
  .mr30_Pc {
    margin-right: 30px;
  }
  .mr40_Pc {
    margin-right: 40px;
  }
  .mr50_Pc {
    margin-right: 50px;
  }
}
.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .ml10_Sp {
    margin-left: 10px;
  }
  .ml15_Sp {
    margin-left: 15px;
  }
  .ml20_Sp {
    margin-left: 20px;
  }
  .ml30_Sp {
    margin-left: 30px;
  }
  .ml40_Sp {
    margin-left: 40px;
  }
  .ml50_Sp {
    margin-left: 50px;
  }
}
@media all and (min-width: 768px) {
  .ml10_Pc {
    margin-left: 10px;
  }
  .ml15_Pc {
    margin-left: 15px;
  }
  .ml20_Pc {
    margin-left: 20px;
  }
  .ml30_Pc {
    margin-left: 30px;
  }
  .ml40_Pc {
    margin-left: 40px;
  }
  .ml50_Pc {
    margin-left: 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 !important;
}

.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;
  }
  .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;
  }
  .w400_Sp {
    width: 400px;
  }
  .w450_Sp {
    width: 450px;
  }
  .w500_Sp {
    width: 500px;
  }
  .w30per_Sp {
    width: 30%;
  }
  .w50per_Sp {
    width: 50%;
  }
  .w60per_Sp {
    width: 60%;
  }
  .w70per_Sp {
    width: 70%;
  }
  .w80per_Sp {
    width: 80%;
  }
  .w100per_Sp {
    width: 100%;
  }
}
.color_red_default {
  color: var(--default-red);
}

.color_brown_default {
  color: var(--default-brown);
}

.foS10 {
  font-size: 0.625rem;
  line-height: 1.4;
}

.foS11 {
  font-size: 0.6875rem;
  line-height: 1.4;
}

.foS12 {
  font-size: 0.75rem;
  line-height: 1.4;
}

.foS13 {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.foS14 {
  font-size: 0.875rem;
  line-height: 1.6;
}

.foS15 {
  font-size: 0.9375rem;
}

.foM16 {
  font-size: 1rem;
}

.foL17 {
  font-size: 1.0625rem;
}

.foL18 {
  font-size: 1.125rem;
}

.foL19 {
  font-size: 1.1875rem;
  line-height: 1.6;
}

.foL20 {
  font-size: 1.25rem;
  line-height: 1.6;
}

.foL21 {
  font-size: 1.3125rem;
  line-height: 1.6;
}

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

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

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

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

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

.foL32 {
  font-size: 2rem;
  line-height: 1.4;
}

.foL34 {
  font-size: 2.125rem;
  line-height: 1.4;
}

.foL36 {
  font-size: 2.25rem;
  line-height: 1.4;
}

.foL38 {
  font-size: 2.375rem;
  line-height: 1.4;
}

.foL40 {
  font-size: 2.5rem;
  line-height: 1.4;
}

.foL44 {
  font-size: 2.75rem;
  line-height: 1.4;
}

.foL48 {
  font-size: 3rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .foS10_Sp {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Sp {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Sp {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Sp {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Sp {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .foS15_Sp {
    font-size: 0.9375rem;
  }
  .foM16_Sp {
    font-size: 1rem;
  }
  .foL17_Sp {
    font-size: 1.0625rem;
  }
  .foL18_Sp {
    font-size: 1.125rem;
  }
  .foL19_Sp {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Sp {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Sp {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Sp {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Sp {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Sp {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Sp {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Sp {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Sp {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Sp {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Sp {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Sp {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Sp {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Sp {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Sp {
    font-size: 3rem;
    line-height: 1.4;
  }
}
@media all and (min-width: 768px) {
  .foS10_Pc {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Pc {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Pc {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Pc {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Pc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .foS15_Pc {
    font-size: 0.9375rem;
  }
  .foM16_Pc {
    font-size: 1rem;
  }
  .foL17_Pc {
    font-size: 1.0625rem;
  }
  .foL18_Pc {
    font-size: 1.125rem;
  }
  .foL19_Pc {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Pc {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Pc {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Pc {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Pc {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Pc {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Pc {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Pc {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Pc {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Pc {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Pc {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Pc {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Pc {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Pc {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Pc {
    font-size: 3rem;
    line-height: 1.4;
  }
}
.asterisk-16 {
  padding-left: 1rem;
}

.asterisk-16::before {
  content: "※";
  margin-left: -1rem;
}

.asterisk-15 {
  padding-left: 0.9375rem;
}

.asterisk-15::before {
  content: "※";
  margin-left: -0.9375rem;
}

.asterisk-14 {
  padding-left: 0.875rem;
}

.asterisk-14::before {
  content: "※";
  margin-left: -0.875rem;
}

@media all and (min-width: 768px) {
  .nav_scroll {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .nav_scroll {
    margin-top: 14px;
    position: relative;
    display: block;
    text-align: center;
    background-color: #ccc;
    font-size: 0.85rem;
  }
}
.table_scroll {
  overflow-x: scroll;
}
.table_scroll table {
  min-width: 700px;
}
@media screen and (max-width: 767px) {
  .table_scroll table {
    max-width: 700px;
  }
}

/* 下層index用 card型 css */
.page-index__card {
  border-radius: 10px;
}
.page-index__card .card {
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s all;
}
.page-index__card .card a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.page-index__card .card:has(a:hover) a {
  color: #fff;
}
.page-index__card .card:has(a:hover) .thum img {
  transform: scale(1.1);
}
.page-index__card .card .heading {
  padding: 10px 15px 20px;
  text-align: center;
  display: block;
  background: rgba(13, 142, 168, 0.8);
  backdrop-filter: blur(9px);
  margin-top: -30px;
  border-radius: 0 5px 5px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px 0px 0px 5px;
  height: 100%;
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
}
.page-index__card .card .thum {
  height: 8em;
  overflow: hidden;
  display: block;
}
.page-index__card .card .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0px auto;
  transition: transform 0.4s ease;
}
.page-index__card--sdg .card a {
  text-decoration: none;
  color: #000;
  display: block;
}
.page-index__card--sdg .card a:hover {
  opacity: 0.7;
}
.page-index__card--sdg .thum {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.page-index__card--sdg .thum::before {
  content: "\e909";
  font-family: "icomoon" !important;
  color: #fff;
  position: absolute;
  right: 3px;
  bottom: 3px;
  height: 1em;
  z-index: 1;
}
.page-index__card--sdg .thum::after {
  content: "";
  background: #c79637;
  padding: 5px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.3em;
  height: 2.3em;
}
.page-index__card--sdg .heading {
  font-size: 1.25rem;
  font-weight: bold;
}
.page-index__card--sdg .heading::before {
  content: "";
  display: block;
  width: 4em;
  height: 1em;
  background: linear-gradient(to right, #E5243B 0%, #E5243B 25%, #DCA639 25%, #DCA639 50%, #3E7E45 50%, #3E7E45 75%, #0A96D9 75%, #0A96D9 100%);
}
.page-index__card--sdg .heading-cate {
  color: #c79637;
  display: inline-block;
  width: 100%;
  font-size: 0.8125rem;
  margin: 5px 0;
}
.page-index__card--simply .card a {
  text-decoration: none;
  color: #000;
  display: block;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
.page-index__card--simply .card a:hover {
  opacity: 0.7;
}
.page-index__card--simply .card .link_btn {
  pointer-events: none;
}
.page-index__card--simply .heading {
  font-size: 1.25rem;
  font-weight: bold;
  display: inline-block;
}
.page-index__card--simply .heading-cate {
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  margin: 5px 0;
}

/* テキスト+画像（大）並び（スマホで縦並び・画像が下） など反転用 */
@media screen and (max-width: 767px) {
  .grid_reverse {
    flex-direction: column-reverse;
    margin: 1em 0;
  }
}

@media screen and (max-width: 767px) {
  .grid_colum {
    flex-direction: column;
    margin: 1em 0;
  }
}

/* テーブル　一覧に戻る */
.c-table {
  width: 100%;
  border: none !important;
}
.c-table tr {
  display: flex;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
  .c-table tr {
    flex-direction: column !important;
    margin-bottom: 1em;
  }
}
.c-table tr th {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #e2e2e2 !important;
  color: var(--color-secondary) !important;
}
@media all and (min-width: 768px) {
  .c-table tr th {
    max-width: 18em;
    text-align: left;
    width: 100%;
  }
}
.c-table tr td {
  flex: 1;
  background: #f7f5f2;
}
.c-table tr th,
.c-table tr td {
  border: none !important;
  padding: 1em !important;
  box-sizing: border-box;
}
.c-table__default {
  border: none !important;
  width: 100%;
}
.c-table__default tr {
  display: flex;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
  .c-table__default tr {
    margin-bottom: 0.3em;
  }
}
.c-table__default td {
  flex: 1;
  margin-left: 1em;
}
.c-table__default th,
.c-table__default td {
  border: none !important;
  padding: 0 !important;
  box-sizing: border-box;
  background: none !important;
}

/* 編集パーツ 一覧に戻る */
.part-btn__toall {
  border-top: 1px solid #dadad0;
  border-bottom: 1px solid #dadad0;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 10px;
}

/* グリッド（CSS Grid使用） */
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

/* 各カラム（.col, .col-1 ~ .col-12） */
.colm {
  grid-column: span 12;
}

.col_1 {
  grid-column: span 1;
}

.col_2 {
  grid-column: span 2;
}

.col_3 {
  grid-column: span 3;
}

.col_4 {
  grid-column: span 4;
}

.col_5 {
  grid-column: span 5;
}

.col_6 {
  grid-column: span 6;
}

.col_7 {
  grid-column: span 7;
}

.col_8 {
  grid-column: span 8;
}

.col_9 {
  grid-column: span 9;
}

.col_10 {
  grid-column: span 10;
}

.col_11 {
  grid-column: span 11;
}

.col_12 {
  grid-column: span 12;
}

/* レスポンシブ対応（例: col-md-6） */
@media screen and (max-width: 767px) {
  .col_md-1 {
    grid-column: span 1;
  }
  .col_md-2 {
    grid-column: span 2;
  }
  .col_md-3 {
    grid-column: span 3;
  }
  .col_md-4 {
    grid-column: span 4;
  }
  .col_md-5 {
    grid-column: span 5;
  }
  .col_md-6 {
    grid-column: span 6;
  }
  .col_md-7 {
    grid-column: span 7;
  }
  .col_md-8 {
    grid-column: span 8;
  }
  .col_md-9 {
    grid-column: span 9;
  }
  .col_md-10 {
    grid-column: span 10;
  }
  .col_md-11 {
    grid-column: span 11;
  }
  .col_md-12 {
    grid-column: span 12;
  }
}
.c-interview {
  display: flex;
  gap: 10px;
}
.c-interview dt {
  text-align: center;
  line-height: 1;
}
.c-interview dt span {
  font-size: 0.8125rem;
  display: inline-block;
}
.c-interview dt img {
  max-width: 50px;
  max-height: 50px;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 1/1;
  border-radius: 100vh;
}

.NewsCountList {
  margin-top: 20px;
}
.NewsCountList ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .NewsCountList ul {
    flex-wrap: wrap;
  }
}
.NewsCountList ul li {
  margin-right: 10px;
}
.NewsCountList ul li:last-child {
  margin-right: 0px;
}
@media screen and (max-width: 767px) {
  .NewsCountList ul li:last-child {
    margin-right: initial;
  }
}
.NewsCountList ul li a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-weight: 400;
  transition: 0.3s all ease-in-out;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .NewsCountList ul li a {
    padding: 16px 10px;
    justify-content: center;
  }
}
.NewsCountList ul li:first-child a, .NewsCountList ul li:last-child a {
  background: var(--color-primary);
  color: #fff;
}
.NewsCountList ul li:first-child a:hover, .NewsCountList ul li:last-child a:hover {
  background: var(--default-blue);
  color: #fff;
}
.NewsCountList ul li:first-child a:hover::after, .NewsCountList ul li:last-child a:hover::after {
  transform: translateX(5px);
  color: #fff;
}
.NewsCountList ul li:nth-of-type(2) a, .NewsCountList ul li:nth-of-type(3) a {
  background: #D6E2EA;
  color: #000;
}
.NewsCountList ul li:nth-of-type(2) a:hover, .NewsCountList ul li:nth-of-type(3) a:hover {
  background: #666;
  color: #fff;
}
.NewsCountList ul li:nth-of-type(2) a:hover::before, .NewsCountList ul li:nth-of-type(3) a:hover::before {
  color: #fff;
}

.l-cke {
  margin: 10px auto 10px auto;
  max-width: 980px;
}
@media screen and (max-width: 767px) {
  .l-cke {
    margin: 20px 0px;
  }
}

.edit-area {
  box-sizing: border-box;
}

.clearfix {
  overflow: hidden;
}

div.hr {
  position: relative;
  padding: 1.5rem 1rem;
}
div.hr::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*topicpath*/
.topicpath {
  margin: 20px 0;
  border-top: 1px solid #E5E5E5;
}
.topicpath ul {
  display: flex;
  padding-top: 20px;
  flex-wrap: wrap;
}
.topicpath ul li {
  font-size: 0.875rem;
  margin-right: 10px;
  color: #9A9A9A;
}
.topicpath ul li a {
  position: relative;
  padding-right: 1em;
  color: var(--default-blue);
  text-decoration: underline;
}
.topicpath ul li a::before {
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  right: 0;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform: translateY(-50%) rotate(135deg);
  display: inline-block;
  top: 50%;
}

/*アコーディオンのオプション表示削除*/
.dis_none {
  display: none !important;
}

.cke_editable .dis_none {
  display: block !important;
}

.cke_editable {
  margin: 0 10px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.cke_editable .cke-accordion_start,
.cke_editable .cke-accordion_end {
  position: relative;
  padding: 10px 10px 10px 10px;
  border: dashed 1px #dedacd;
  border-radius: 4px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/* ------------------------------PDFマーク */
.txtLink01-pdf {
  padding-left: 30px;
  background: url(../common/ico_pdf01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------ダウンロードマーク */
.txtLink01-dl {
  padding-left: 30px;
  background: url(../common/ico_dl01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------WORDマーク */
.txtLink01-word {
  padding-left: 30px;
  background: url(../common/ico_word01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------EXCELマーク */
.txtLink01-excel {
  padding-left: 30px;
  background: url(../common/ico_excel01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------PowerPointマーク */
.txtLink01-power {
  padding-left: 30px;
  background: url(../common/ico_power01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ボタン・リンク END  =============================================================== */
/* ==========================================================================
リスト
========================================================================== */
.edit-area ol,
.edit-area ul,
.cke_editable ol,
.cke_editable ul,
.list_style {
  position: relative;
}

.edit-area ol,
.cke_editable ol {
  counter-reset: item;
  list-style-type: none;
  margin-left: 0;
}

.edit-area ol li,
.cke_editable ol li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
  padding: 4px 0 4px 15px;
}
.edit-area ol li ul li,
.cke_editable ol li ul li {
  line-height: 1.2;
}

.edit-area ol li::marker {
  display: none;
}

.edit-area ol li:before,
.cke_editable ol li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0;
  font-weight: 400;
  /* 14px */
}

.edit-area ul li,
.cke_editable ul li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
  padding: 4px 0 4px 15px;
  counter-reset: item;
}

.edit-area ul li:before,
.cke_editable ul li:before,
.list_style li:before {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  height: 8px;
  width: 8px;
  top: 0.9em !important;
  left: 0px;
  border-radius: 100%;
  background: #000;
  vertical-align: middle;
  line-height: 1;
}

.list_none li::before {
  display: none !important;
}

/* リスト END  =============================================================== */
/* ==========================================================================
テーブル※適宜変更してください。
========================================================================== */
.edit-area table th {
  background: #EDF2F5;
}

.edit-area table {
  border-left: 1px solid #d5d5d5;
  border-top: 1px solid #d5d5d5;
}

.edit-area table td,
.edit-area table th {
  padding: 10px;
  border-right: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
}

table {
  border-collapse: initial !important;
  border-spacing: 0 !important;
}

.table__addr .td_no {
  max-width: 5em;
}
@media screen and (max-width: 767px) {
  .table__scroll {
    overflow: auto;
  }
  .table__scroll table {
    width: 100%;
    white-space: nowrap;
  }
}

/* テーブル END  =============================================================== */
/* 右寄せ 左寄せ  =============================================================== */
.float_R {
  float: right;
}

.float_L {
  float: left;
}

@media all and (min-width: 768px) {
  .float_R_Pc {
    float: right;
  }
  .float_L_Pc {
    float: left;
  }
}
@media screen and (max-width: 767px) {
  .float_R_Sp {
    float: right;
  }
  .float_L_Sp {
    float: left;
  }
}
/* 右寄せ 左寄せ  =============================================================== */
/* ==========================================================================
　画像
========================================================================== */
.cke_editable img {
  max-width: 100%;
  height: auto !important;
  vertical-align: bottom;
}

.newsImg03,
.newsImg02,
.newsImg01 {
  margin: 10px 0;
}

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

@media all and (min-width: 768px) {
  .newsImg03 ul,
  .newsImg02 ul {
    display: flex;
    justify-content: space-between;
  }
  .newsImg03 ul li {
    width: calc(33.3333333333% - 10px) !important;
  }
  .newsImg02 ul li {
    width: calc(50% - 10px);
  }
}
.newsImg03 ul li,
.newsImg02 ul li,
.newsImg01 ul li {
  list-style: none !important;
  text-align: center;
  padding: 0;
}
.newsImg03 ul li img,
.newsImg02 ul li img,
.newsImg01 ul li img {
  width: 100%;
  display: inline-block;
}

.newsImg03 ul li:before,
.newsImg02 ul li:before,
.newsImg01 ul li:before {
  display: none !important;
}

/* ------------------------------------------------------------絵文字 */
.ico_20 {
  width: 30px;
  height: 30px;
  padding: 0 4px;
  vertical-align: middle;
  margin-bottom: 3px;
  display: inline-block;
}

/* 画像 END  =============================================================== */
/* ==========================================================================
　境界線
========================================================================== */
hr.div_hr01 {
  display: block;
  margin: 15px 0;
  border: none;
  border-bottom: dashed 1px #CFCFCF;
}

/*管理画面側*/
.cke_editable .ckeditor_divline {
  background: url(../common/ckeditor_divline.gif) no-repeat;
}

/* 境界線 END  =============================================================== */
/* ==========================================================================
ckエディター
========================================================================== */
.pagesummary {
  padding: 20px;
  position: relative;
  box-sizing: border-box;
  border: 1px solid var(--color-primary);
  border-radius: 2vh;
  margin: 20px 0;
}
.pagesummary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .pagesummary ul {
    flex-direction: column;
  }
}
.pagesummary ul li {
  list-style: none;
  padding: 0;
}
.pagesummary ul li::before {
  display: none;
}
.pagesummary ul li a {
  box-sizing: border-box;
  display: inline-block;
  color: #000;
  font-size: 0.875rem;
  padding: 5px 10px 5px 25px;
  border-radius: 100vh;
  position: relative;
  background: #E6F1FF;
  text-decoration: none;
}
.pagesummary ul li a:hover {
  background: var(--color-primary);
  color: #fff;
}
.pagesummary ul li a:hover::before {
  border-color: #fff;
}
@media screen and (max-width: 767px) {
  .pagesummary ul li a {
    width: 100%;
  }
}
.pagesummary ul li a::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  left: 10px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform: translateY(-50%) rotate(-135deg);
  display: inline-block;
  top: 50%;
  transition: 0.3s all;
}
.pagesummary__external::before {
  background: url("../common/ico_external.svg") no-repeat center center !important;
  transform: translateY(-50%) !important;
  top: 50% !important;
  background-size: contain !important;
  width: 8px !important;
  height: 8px !important;
}

.div_info01 {
  padding: 16px;
  margin: 10px 0;
  background: #E6F1FF;
  border: solid 3px var(--color-primary);
  border-radius: 6px;
}
.div_info02 {
  padding: 16px;
  margin: 15px 0px;
  background: #fff;
  border-radius: 6px;
  border: 2px solid var(--color-secondary);
}
.div_info03 {
  padding: 16px;
  margin: 15px 0px;
  background: #fff;
  border-radius: 6px;
  border: 2px solid var(--color-orange);
}

/*------------------------------------------------------------お知らせ表示(日付)*/
.day-color01 {
  color: #000000;
}

/*黒*/
.day-color02 {
  color: #e03e3e;
}

/*赤*/
.day-color03 {
  color: #005692;
}

/*青*/
.day-color04 {
  color: #099809;
}

/*緑*/
.day-color05 {
  color: #E77BE6;
}

/*ピンク*/
.day-color06 {
  color: #666666;
}

/*グレー*/
.day-bold {
  font-weight: bold;
}

/*-----------------------------------------------------------お知らせ表示(タイトル)*/
.title-size-small {
  font-size: 0.8125rem;
}

/* 13px */
.title-size-middle {
  font-size: 0.9375rem;
}

/* 15px */
.title-size-big {
  font-size: 1.25rem;
}

/* 20px */
.title-color01 {
  color: #000000;
}

/*黒*/
.title-color02 {
  color: #e03e3e;
}

/*赤*/
.title-color03 {
  color: #005692;
}

/*青*/
.title-color04 {
  color: #099809;
}

/*緑*/
.title-color05 {
  color: #E77BE6;
}

/*ピンク*/
.title-color06 {
  color: #666666;
}

/*グレー*/
.title-bold {
  font-weight: bold;
}

/*-----------------------------------------------------------文字サイズ*/
span.op_large {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 1.25rem;
}

span.op_large02 {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 1.4375rem;
}

span.op_mideamu {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 0.9375rem;
}

span.op_small {
  display: inline-block;
  line-height: 1.8;
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 0.75rem;
}

/*-----------------------------------------------------------文字の下付上付*/
sub {
  font-size: 75.5%;
  vertical-align: bottom;
}

sup {
  font-size: 75.5%;
  vertical-align: top;
}

/*-----------------------------------------------------------他装飾*/
.g-map {
  width: 100% !important;
}

.cke_editable .ckeditor_divline {
  background: url(../images/ckeditor_divline.gif) no-repeat;
}

/*ソーシャルボタン領域*/
.Social {
  display: none;
}

.detail_news_social {
  margin: 15px 0;
  display: flex;
  justify-content: flex-end;
}

.detail_news_social ul {
  display: flex;
  justify-content: center;
  margin-left: 0 !important;
}

.detail_news_social ul li {
  margin-left: 10px !important;
  list-style: none !important;
  padding-left: 0 !important;
}
.detail_news_social ul li:first-child {
  margin-left: 0 !important;
}

.detail_news_social ul li::before {
  display: none;
}

.detail_news_social li a {
  vertical-align: bottom;
  display: inline-block;
  width: 34px;
  height: 34px;
  background: #1a63ac url("../common/logo_fb01.png") no-repeat center;
  background-size: auto 18px;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.1s ease;
}

.detail_news_social li a.tw {
  background: #000 url("../common/logo_tw01.png") no-repeat center;
  background-size: auto 15px;
}

.detail_news_social li a.line {
  background: #00b900 url("../common/logo_line02.png") no-repeat center;
  background-size: auto 20px;
}

.detail_news_social li:hover a {
  transform: scale(1.1);
}

/*ソーシャルボタン領域END*/
/* ckエディター END  =============================================================== */
/* ==========================================================================
  Youtube
========================================================================== */
/* テキスト END  =============================================================== */
/* ==========================================================================
  テキスト
========================================================================== */
/* ------------------------------------------------------------ テキストインデント */
.text_mark {
  margin-left: 1em;
  text-indent: -1em;
}

.text_marks {
  margin-left: 0.857em;
  text-indent: -0.857em;
}

/* テキスト END  =============================================================== */
/* ==========================================================================
  編集パーツ用　番号付属リスト・チェックリスト
   ========================================================================== */
.list_none li::before {
  display: none !important;
}

.edit-area .list_num01,
.cke_editable .list_num01 {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin-left: 0 !important;
}

.edit-area .list_num01 li,
.cke_editable .list_num01 li {
  position: relative;
  padding: 4px 0 4px 30px;
  margin-bottom: 10px;
  list-style: none !important;
}

.edit-area .list_num01 li:before,
.cke_editable .list_num01 li:before {
  counter-increment: item !important;
  content: counter(item) !important;
  display: block;
  position: absolute;
  left: 0;
  font-weight: bold;
  text-align: center;
  color: var(--color-primary) !important;
  border-bottom: 1px solid var(--color-primary);
  font-size: 1.125rem;
}

.edit-area .list_check,
.cke_editable .edit-area .list_check {
  list-style: none !important;
  padding: 0 !important;
  position: relative !important;
  margin-left: 0 !important;
}

.edit-area li,
.cke_editable .edit-area li {
  position: relative;
  margin-bottom: 10px;
}

.edit-area .list_check li,
.cke_editable .list_check li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 10px;
  list-style: none !important;
}

.list_check li:before,
.cke_editable .list_check li:before {
  box-sizing: border-box !important;
  position: absolute !important;
  content: "" !important;
  display: block !important;
  top: 0.4em !important;
  left: 0.2em !important;
  height: 10px !important;
  width: 6px !important;
  transform: rotate(45deg) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  background: none !important;
  border-bottom: solid 3px var(--color-primary) !important;
  border-right: solid 3px var(--color-primary) !important;
}

.cke_editable .lay-grid > .col-1,
.cke_editable .lay-grid > .col-2,
.cke_editable .lay-grid > .col-3,
.cke_editable .lay-grid > .col-4,
.cke_editable .lay-grid > .col-5,
.cke_editable .lay-grid > .col-6,
.cke_editable .lay-grid > .col-7,
.cke_editable .lay-grid > .col-8,
.cke_editable .lay-grid > .col-9,
.cke_editable .lay-grid > .col-10,
.cke_editable .lay-grid > .col-11,
.cke_editable .lay-grid > .col-12 {
  padding: 10px;
  border: dashed 1px #dedacd;
  border-radius: 4px;
}

.cke_editable .lay-grid > .col-lg-1,
.cke_editable .lay-grid > .col-lg-2,
.cke_editable .lay-grid > .col-lg-3,
.cke_editable .lay-grid > .col-lg-4,
.cke_editable .lay-grid > .col-lg-5,
.cke_editable .lay-grid > .col-lg-6,
.cke_editable .lay-grid > .col-lg-7,
.cke_editable .lay-grid > .col-lg-8,
.cke_editable .lay-grid > .col-lg-9,
.cke_editable .lay-grid > .col-lg-10,
.cke_editable .lay-grid > .col-lg-11,
.cke_editable .lay-grid > .col-lg-12 {
  padding: 10px;
  border: dashed 1px #dedacd;
  border-radius: 4px;
}

.lay-grid {
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 768px) {
  .lay-grid {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.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 {
  box-sizing: border-box;
}
@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: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

.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);
}

.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 {
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .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 {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media all and (min-width: 768px) {
  .lay-grid > .col-lg-1 {
    width: calc(8.3333333333% - 20px);
  }
  .lay-grid > .col-lg-2 {
    width: calc(16.6666666667% - 20px);
  }
  .lay-grid > .col-lg-3 {
    width: calc(25% - 20px);
  }
  .lay-grid > .col-lg-4 {
    width: calc(33.3333333333% - 20px);
  }
  .lay-grid > .col-lg-5 {
    width: calc(41.6666666667% - 20px);
  }
  .lay-grid > .col-lg-6 {
    width: calc(50% - 20px);
  }
  .lay-grid > .col-lg-7 {
    width: calc(58.3333333333% - 20px);
  }
  .lay-grid > .col-lg-8 {
    width: calc(66.6666666667% - 20px);
  }
  .lay-grid > .col-lg-9 {
    width: calc(75% - 20px);
  }
  .lay-grid > .col-lg-10 {
    width: calc(83.3333333333% - 20px);
  }
  .lay-grid > .col-lg-11 {
    width: calc(91.6666666667% - 20px);
  }
  .lay-grid > .col-lg-12 {
    width: calc(100% - 20px);
  }
  .card-box__item--lg-last {
    order: 1;
  }
}
.card-box {
  margin-top: 20px;
}

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

/* ==========================================================================
  お客様向け
========================================================================== */
.im-client__table table {
  width: 100%;
}
.im-client__table table tr {
  display: grid;
}
.im-client__table table tr td {
  border: none;
  padding: 0;
}
.im-client__table table tr td img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .im-client__table.-cell4 table tr {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .im-client__table.-cell4 table tr {
    grid-template-columns: 1fr 1fr;
    gap: 10px 10px;
  }
}
@media all and (min-width: 768px) {
  .im-client__table.-cell2 table tr {
    grid-template-columns: 1fr 1fr;
    gap: 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .im-client__table.-cell2 table tr {
    grid-template-columns: 1fr;
    gap: 10px 10px;
  }
}
.im-client__table.-border-n table {
  border: none;
}

/* テキスト END  =============================================================== */
/* ==========================================================================
  アコーディオン
========================================================================== */
.js-accordion {
  counter-reset: question 0;
}
.js-accordion__item {
  border-bottom: 2px var(--color-purple-light) solid;
}
.js-accordion__item--trigger {
  font-weight: bold;
  color: var(--color-purple);
  padding: 10px 40px 10px 20px;
  position: relative;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .js-accordion__item--trigger {
    padding: 10px 30px 10px 10px;
  }
}
.js-accordion__item--trigger::after {
  background: url("../common/ico_arrow04.svg") no-repeat center center;
  width: 10px;
  height: 12px;
  background-size: contain;
  display: inline-block;
  content: "";
  transform: rotate(90deg);
  position: absolute;
  right: 10px;
  top: 40%;
  transition: 0.3s all;
}
.js-accordion__item--trigger::before {
  counter-increment: question;
  content: "Q" counter(question);
  display: inline-block;
  margin-right: 10px;
}
.js-accordion__item--trigger::selection {
  color: none !important;
  background: none !important;
}
.js-accordion__item--trigger.active {
  background: var(--color-purple-light);
}
.js-accordion__item--trigger.active::after {
  transform: rotate(-90deg);
  right: 11px;
}
.js-accordion__item--this {
  padding: 10px;
}
.js-accordion__item--this::selection {
  color: none !important;
  background: none !important;
}

/*アコーディオン　im*/
/*アコーディオン */
.parts_accordion_box {
  border: solid 3px var(--color-primary);
}
.parts_accordion_box.-orange {
  border: solid 3px var(--color-orange);
}
.parts_accordion_box.-orange dt::after {
  background: var(--color-orange) url(../common/ico_arrow_menu.svg) no-repeat center center;
}
.parts_accordion_box.-orange dt.active {
  background: #fff5f2;
}
.parts_accordion_box.-orange dt.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.parts_accordion_box.-orange dt.active::after {
  bottom: 0;
}

.parts_accordion_box dt {
  position: relative;
  padding: 15px 20px 15px 50px;
}
.parts_accordion_box dt::after {
  content: "";
  background: var(--color-primary) url(../common/ico_arrow_menu.svg) no-repeat center center;
  background-size: 1em !important;
  width: 1.8em;
  height: 1.8em;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  border-radius: 100vh;
  transition: 0.3s all;
}

.parts_accordion_box dt.active {
  background: #f3f7f8;
}
.parts_accordion_box dt.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.parts_accordion_box dt.active::after {
  bottom: 0;
}

.parts_accordion_box dd {
  padding-top: 20px;
  margin: 0px 20px 20px 20px;
}

/* ===マーカー====*/
.marker1 {
  background: linear-gradient(transparent 60%, rgb(255, 220, 0) 60%);
}

.marker2 {
  background: linear-gradient(transparent 60%, rgba(255, 102, 204, 0.5) 60%);
}

.marker3 {
  background: linear-gradient(transparent 60%, rgb(102, 204, 255) 60%);
}

.marker4 {
  background: linear-gradient(transparent 65%, rgb(9, 251, 211) 65%);
}

.index-slide {
  margin: 0 auto;
  padding: 40px 0;
}
@media all and (min-width: 768px) {
  .index-slide {
    max-width: 900px;
    height: 330px;
  }
}
@media screen and (max-width: 767px) {
  .index-slide {
    padding: 30px 15px;
  }
}
.index-slide .slick-slide {
  border-radius: 20px;
  overflow: hidden;
}

/* dotsを丸くカスタマイズするCSS */
.dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: -15px;
  position: relative;
  z-index: 1;
}

.dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #fff;
  border: 1px solid #ababab;
  border-radius: 50%;
  cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  background: var(--color-pink);
  border: 1px solid var(--color-pink);
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.index-hero {
  position: relative;
}
.index-hero::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: url("../images/img_index_mv.png") no-repeat center center;
  background-size: cover;
  aspect-ratio: 128/65;
  width: 100%;
  z-index: 0;
}
@media all and (min-width: 768px) {
  .index-hero::before {
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .index-hero::before {
    height: 400px;
  }
}

.index-heading {
  background: var(--prime-color-secondary);
  border-radius: 8px;
}
.index-heading h2 {
  font-size: 2.125rem;
  line-height: 1.3;
  color: var(--color-primary);
  display: inline-block;
}
.index-heading .en {
  color: #7AD392;
}
.index-heading.-vertical {
  align-items: center;
}
@media all and (min-width: 768px) {
  .index-heading.-vertical h2 {
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .index-heading.-vertical h2 {
    font-size: 1.75rem;
  }
}
.index-heading.-vertical .en {
  margin-bottom: 8px;
}
@media all and (min-width: 768px) {
  .index-heading {
    display: inline-flex;
    flex-direction: column;
  }
}
.index-heading.primary {
  background: var(--prime-color-primary);
}
@media screen and (max-width: 767px) {
  .index-heading {
    padding: 0.8em 1em 0.5em;
  }
}

@media all and (min-width: 768px) {
  .l-news {
    display: flex;
    gap: 60px;
  }
}
.l-news .index-heading {
  min-width: 200px;
}

body.index .l-news {
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1607843137);
  background: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media all and (min-width: 768px) {
  body.index .l-news {
    margin-top: 120px;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  body.index .l-news {
    padding: 10px 20px 30px;
  }
}
@media all and (min-width: 768px) {
  body.index .l-news__container {
    max-height: 350px;
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  body.index .l-news__container {
    max-height: 350px;
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  body.index .l-news .index-heading {
    text-align: center;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}

.index-about {
  margin: 50px 0 0;
}
.index-about__inner {
  display: flex;
  gap: 60px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .index-about__inner {
    flex-direction: column;
    gap: 20px;
  }
}
@media all and (min-width: 768px) {
  .index-about__inner figure {
    min-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .index-about__inner figure {
    text-align: center;
    margin: 20px 0 0;
  }
}
.index-about__content {
  line-height: 2;
  font-size: 1.125rem;
}
.index-about__secondary {
  background: url("../images/img_index_about_bg.png") no-repeat top center;
  background-size: cover;
  padding: 40px 60px;
  counter-reset: item;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .index-about__secondary {
    margin: 0;
    padding: 20px 15px;
  }
}
.index-about__secondary__inner {
  display: grid;
  margin-bottom: 60px;
}
@media all and (min-width: 768px) {
  .index-about__secondary__inner {
    grid-template-columns: 34px 1fr 1fr;
    gap: 60px;
  }
}
.index-about__secondary__inner:nth-of-type(1) .index-about__secondary__content {
  order: 1;
}
.index-about__secondary__inner:nth-of-type(1) figure {
  order: 2;
}
@media screen and (max-width: 767px) {
  .index-about__secondary__inner:nth-of-type(1) .index-about__secondary__content {
    order: 3;
  }
  .index-about__secondary__inner:nth-of-type(1) figure {
    order: 1;
  }
}
@media all and (min-width: 768px) {
  .index-about__secondary__inner:nth-of-type(2) {
    grid-template-columns: 1fr 1fr 34px;
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .index-about__secondary__inner:nth-of-type(2) .index-about__secondary__content {
    order: 3;
  }
  .index-about__secondary__inner:nth-of-type(2) figure {
    order: 2;
  }
}
@media all and (min-width: 768px) {
  .index-about__secondary__inner:nth-of-type(2) figure {
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .index-about__secondary__inner:nth-of-type(3) {
    margin-top: -30px;
  }
}
.index-about__secondary__inner:nth-of-type(3) .index-about__secondary__content {
  order: 2;
}
.index-about__secondary__inner:nth-of-type(3) figure {
  order: 3;
}
@media all and (min-width: 768px) {
  .index-about__secondary__inner:nth-of-type(3) figure {
    margin-top: 40px;
  }
}
.index-about__secondary__inner figure {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .index-about__secondary__inner figure {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-about__secondary .index-heading {
    display: flex;
  }
}
.index-about__secondary .index-heading .en {
  font-size: 1.5rem;
  color: #7AD392;
  line-height: 1;
}
@media all and (min-width: 768px) {
  .index-about__secondary .index-heading .en {
    padding-bottom: 5px;
  }
  .index-about__secondary .index-heading .en::after {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: #7AD392;
    margin: 5px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .index-about__secondary .index-heading .en {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 10px;
    font-size: 1.5rem;
  }
  .index-about__secondary .index-heading .en::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 1px;
    background: #7AD392;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .index-about__secondary .index-heading h2 {
    margin-left: 10px;
  }
}
@media all and (min-width: 768px) {
  .index-about__secondary__content {
    display: flex;
    gap: 40px;
  }
}
.index-about__secondary__content .txt {
  font-size: 1.125rem;
  line-height: 1.9;
}
@media all and (min-width: 768px) {
  .index-about__secondary__content .txt {
    margin-top: 80px;
  }
}
@media all and (min-width: 768px) {
  .index-about__secondary__link {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .index-about__secondary__link {
    margin: 0 10px;
  }
}
.index-about__secondary__link ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .index-about__secondary__link ul {
    flex-direction: column;
    gap: 15px;
  }
}
.index-about__secondary__link ul li a {
  font-size: 1.125rem;
  width: 100%;
}
.index-about__secondary__link ul li a::after {
  margin-left: auto;
}
.index-ct {
  background: url("../images/img_index_ctbg.jpg") no-repeat;
  background-size: cover;
  padding: 20px;
  border-radius: 20px;
  margin: 50px 0 40px;
}
.index-ct__inner {
  background: #fff;
  border-radius: 20px;
  padding: 20px 0 40px;
}
.index-ct__inner .index-heading {
  margin-bottom: 24px;
}
@media all and (min-width: 768px) {
  .index-ct__inner .index-heading {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .index-ct__inner .index-heading {
    text-align: center;
  }
}
.index-ct__col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 60px;
  justify-items: center;
}
@media screen and (max-width: 767px) {
  .index-ct__col {
    grid-template-columns: repeat(1, 1fr);
  }
}
.index-ct__col a {
  display: block;
  color: #000;
  text-align: center;
}
.index-ct__col a:hover {
  opacity: 0.6;
}
.index-ct__col a span {
  display: block;
}
.index-ct__col a span::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 1.6em;
  height: 1.6em;
  background: url(../common/ico_arrow_right_primary.svg) no-repeat center center;
  background-size: contain;
}
.index-bnr {
  background: #C0E2C9;
  padding: 40px 0;
}
.index-bnr ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .index-bnr ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.index-bnr ul li a {
  background: #fff;
  display: block;
  border: 1px solid var(--color-primary);
  line-height: 1;
}
.index-bnr ul li a:hover {
  opacity: 0.6;
}
.index-bnr ul li a img {
  object-fit: cover;
  width: 100%;
}

input[type=email],
input[type=tel],
input[type=text],
input[type=url],
dd textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--default-gray);
  background: var(--base-gray-default);
}

::placeholder {
  color: var(--default-gray);
}

.form .intro {
  letter-spacing: 0.06em;
}

@media all and (min-width: 768px) {
  .form-Item input[type=text].w250_Pc {
    width: 250px;
  }
}

.form-Item label.block,
.form-Item .label_confirm {
  display: block;
  margin-bottom: 5px;
  color: var(--base-gray-dark);
  font-size: 0.875rem;
}

.form_explanation {
  margin-top: 3px;
  font-size: 0.875rem;
  color: var(--default-gray-brown);
}

.privacyArea {
  margin: 25px auto;
  padding: 10px 20px;
  border: solid 4px var(--base-gray-light);
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .privacyArea {
    margin: 25px auto;
  }
}

.privacyArea dl {
  padding: 8px 6px;
  text-align: center;
  background: var(--base-gray-default);
}
@media all and (min-width: 768px) {
  .privacyArea dl {
    padding: 15px 10px 5px;
  }
}

.privacyArea a {
  text-decoration: underline;
}

.form-Item {
  padding: 25px 0;
}
@media all and (min-width: 768px) {
  .form-Item {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.form-Item + .form-Item {
  border-top: 1px solid var(--default-gray-light);
}

.form-Item dt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form-Item dt {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .form-Item dt {
    margin-top: 15px;
    padding-right: 10px;
  }
}

.form-Item dd {
  letter-spacing: 0.04em;
}

.label_checkbox input[type=checkbox] {
  display: none;
}

.label_checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  cursor: pointer;
}

.label_checkbox label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 1px solid var(--default-gray);
}

.label_checkbox input[type=checkbox]:checked + label::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 3px;
  width: 20px;
  height: 6px;
  border-left: 3px solid #333;
  border-bottom: 3px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.label_checkbox input[type=checkbox]:checked + label::before {
  background: var(--base-pink-default);
  border: solid 1px #FF2E2E;
}

/* 必須&任意マーク */
.form-Item .ico {
  text-align: center;
  font-size: 0.6875rem;
  display: inline-block;
  color: #fff;
  line-height: 1;
  line-height: 1;
  padding: 6px 6px;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
}
.form-Item .ico.required {
  background-color: var(--default-red);
}
.form-Item .ico.optional {
  color: #333;
  background-color: var(--default-gray-light);
}

.form-Item ul.radio_area {
  margin-left: -25px;
  margin-top: 10px;
}

li.radio {
  list-style: none;
}

.radio {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .radio:last-child {
    margin-bottom: 0;
  }
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}

.radio input[type=radio] + .radio-label:before {
  content: "";
  background: var(--base-gray-default);
  border-radius: 100%;
  border: 1px solid var(--default-gray-light);
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0.2em;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--default-blue);
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
}

.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--default-blue);
}

.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
  border-color: var(--default-gray-light);
  background: var(--default-gray-light);
}

.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

/* PCのみ横並びの場合 */
@media all and (min-width: 768px) {
  .radio_area_short {
    display: flex;
  }
}

.select_area {
  position: relative;
  display: inline-block;
  border: 1px solid var(--default-gray);
  vertical-align: middle;
  background: var(--base-gray-default);
}
@media screen and (max-width: 767px) {
  .select_area {
    width: 100%;
  }
}
.select_area::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 20px;
  right: 16px;
  width: 0;
  height: 0;
  border-width: 9px 6px 0 6px;
  border-style: solid;
  border-color: var(--default-gray) transparent transparent transparent;
  pointer-events: none;
}

.select_area select {
  appearance: none;
  padding: 11px 15px;
  padding-right: 2.5em;
  border: none;
  outline: 0;
  background: var(--base-gray-default);
  text-indent: 0.01px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .select_area select {
    width: 100%;
  }
}

.ajax_err p {
  position: relative;
  margin-top: 8px;
  padding: 8px 15px 8px;
  display: inline-block;
  color: var(--default-red-dark);
  line-height: 1.6;
  font-size: fo(14);
  border-radius: 5px;
  border: solid 1px var(--default-red-dark);
  background: var(--base-pink-default);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
@media all and (min-width: 768px) {
  .ajax_err p {
    margin-top: 10px;
    padding: 10px 40px 10px;
    font-size: 0.9375rem;
  }
}

.ajax_err p:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--default-red-dark);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p:after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--base-pink-default);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p.arw_center:before {
  left: 50%;
  transform: translateX(50%);
}

.ajax_err p.arw_center:after {
  left: 50%;
  transform: translateX(50%);
}

.l-form-btnArea {
  margin: 20px auto 50px;
}

.l-form-actbtn {
  padding: 0;
}
@media all and (min-width: 768px) {
  .l-form-actbtn {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}
.l-form-actbtn li {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .l-form-actbtn li + li {
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .l-form-actbtn li + li {
    margin-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .btn_form {
    width: 100%;
  }
}

.btn_form a {
  display: block;
  padding: 20px;
  text-align: center;
  color: #fff;
  border-radius: 40px;
}
@media all and (min-width: 768px) {
  .btn_form a {
    width: 420px;
  }
}
.btn_form a:hover {
  text-decoration: none;
  background: var(--default-blue);
}

.btn_form.send {
  background: var(--default-black);
  border-radius: 40px;
}
.btn_form.back {
  background: var(--default-gray);
  border-radius: 40px;
}

@media all and (min-width: 768px) {
  .form-address {
    display: flex;
  }
}

#Ready-text {
  margin: 15px auto;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
}

.form-Contents.conlayout {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .form-Contents.conlayout .form-Item dt {
    margin-top: 0 !important;
  }
}

.l-news.-list {
  border: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
  gap: 20px;
}
.l-news.-list .news_detail:hover figure img {
  transform: scale(1.1);
}
.l-news.-list .news_detail_wrap figure {
  float: inherit;
  overflow: hidden;
  max-height: 150px;
}
.l-news.-list .news_detail_wrap figure img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  max-height: 150px;
  object-fit: cover;
  object-position: top left;
  margin: 0;
  transition: 0.3s all;
}

/*--  カテゴリブルダウン --*/
.select_category {
  position: relative;
  width: 100%;
  margin: auto;
}
@media all and (min-width: 768px) {
  .select_category {
    width: 950px;
    margin: auto;
  }
}
.select_category select {
  background: #fff;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 12px 35px 12px 10px;
  border: 1px solid var(--prime-color-primary);
}
@media all and (min-width: 768px) {
  .select_category select {
    padding: 12px 35px 12px 30px;
  }
}
.select_category::after {
  display: block;
  content: "";
  position: absolute;
  top: 45%;
  right: 25px;
  clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  height: 100px;
  aspect-ratio: 1;
  background-color: var(--prime-color-primary);
  width: 1em;
  height: 1em;
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .select_category::after {
    right: 15px;
  }
}

/* --- ニュース一覧 記事箇所 (トップ ニュース記事共有) --- */
.news_wrap {
  display: flex;
  flex-direction: column;
}

.news_detail_wrap {
  background-image: linear-gradient(to right, #D0D0D0 5px, transparent 5px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 5px;
}

.news_padding .date {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #999999;
}
.news_padding .cate {
  display: inline-block;
  padding: 2px 5px;
  border: 1px solid var(--base-gray-light);
  font-size: 0.8125rem;
  margin: 0 5px 5px 0;
  color: #999999;
}
.news_padding .new {
  display: inline-block;
  font-weight: bold;
  font-size: 0.8125rem;
  color: #FF0000;
  margin-left: 5px;
}

.news_padding p {
  line-height: 1.5;
  margin-top: 5px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .news_padding p {
    font-size: 0.9375rem;
  }
}

.news_detail {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  color: inherit !important;
}
.news_detail h2 {
  transition: 0.3s all;
  font-size: 1rem;
  font-weight: 400;
}
.news_detail:hover h2 {
  color: var(--prime-color-primary);
}

.news_detail_wrap figure {
  line-height: 1;
}
.news_detail_wrap figure img {
  height: auto;
}
@media screen and (max-width: 767px) {
  .news_detail_wrap figure img {
    min-width: 90px;
  }
}
@media all and (min-width: 768px) {
  .news_detail_wrap figure img {
    min-width: 90px;
  }
}
.news_detail_wrap figure::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  .news_wrap .none_news {
    font-size: 1.0625rem;
    margin-top: 25px;
    text-align: center;
  }
}
@media all and (min-width: 768px) {
  .news_wrap .none_news {
    font-size: 1.125rem;
    margin-top: 10px;
  }
}

/* --- ページネーション --- */
.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: flex;
  justify-content: space-between;
  background: var(--base-gray-light);
}
.news_pagination .pagination ul {
  display: flex;
  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 {
  box-sizing: border-box;
  display: block;
  color: var(--default-white);
  font-size: 0.9375rem;
  transition: all 0.5s 0s ease;
  padding: 13px 10px;
  background: var(--base-gray-default);
  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-dark);
}
.news_pagination .pagination ul.next a {
  background: var(--prime-color-primary);
}
.news_pagination .pagination ul.next a:hover {
  background: var(--prime-color-secondary);
}

.pagesummary {
  margin-bottom: 30px;
  background: var(--base-pink-pale);
}
@media screen and (max-width: 767px) {
  .pagesummary {
    margin-bottom: 25px;
    padding: 10px 15px 0px 20px;
  }
}
.pagesummary .tit {
  display: none;
}
.pagesummary ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0 !important;
}
@media screen and (max-width: 767px) {
  .pagesummary ul {
    flex-direction: column;
  }
}
.pagesummary ul li {
  margin-left: 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  padding: 0 !important;
  text-indent: 0;
}
.pagesummary ul li::before {
  display: none;
}
.pagesummary ul li a {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .pagesummary ul li a {
    width: 100%;
  }
}
@media all and (min-width: 768px) {
  .pagesummary ul li {
    display: inline-block;
    margin-right: 20px;
    padding: 10px 15px 10px 27px;
  }
  .pagesummary ul li:last-child {
    margin-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .pagesummary ul li {
    padding-bottom: 0;
  }
  .pagesummary ul li:last-child {
    padding-bottom: 0;
  }
  .pagesummary ul li:last-child a {
    border-bottom: none;
  }
}
.pagesummary ul a {
  position: relative;
  padding: 10px 20px 10px 34px;
  display: block;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--default-black);
  line-height: 1.4;
}
.pagesummary ul a:hover {
  color: var(--prime-color-primary) !important;
}
.pagesummary ul a::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--prime-color-primary);
  border-right: solid 2px var(--prime-color-primary);
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .pagesummary ul a {
    margin-bottom: 10px;
    padding: 5px 15px 10px 20px;
    border-bottom: 1px solid var(--base-pink-light);
    font-size: 0.8125rem;
    line-height: 1.3;
  }
  .pagesummary ul a::before {
    position: absolute;
    top: 0.8em;
    left: 2px;
  }
}

.news_footer_area {
  display: flex;
}
@media screen and (max-width: 767px) {
  .news_footer_area {
    flex-direction: column;
    margin-top: 30px;
  }
}
@media all and (min-width: 768px) {
  .news_footer_area {
    justify-content: space-between;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .news_footer_area .cate {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
}
.news_footer_area .cate li {
  display: inline-block;
  padding: 2px 5px;
  border: 1px solid var(--base-gray-light);
  font-size: 0.6875rem;
  margin-left: 5px;
  text-indent: 0em;
}
.news_footer_area .cate li:before {
  display: none;
}

.a_news_all {
  font-size: 0.875rem;
}
.a_news_all a {
  position: relative;
  display: inline-block;
  padding-right: 40px;
  padding: 10px 36px 10px 0;
}
@media screen and (max-width: 767px) {
  .a_news_all a {
    text-align: right;
  }
}
.a_news_all a::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--base-pink-pale);
  z-index: -1;
}
.a_news_all a::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 13px;
  margin-top: -6px;
  width: 13px;
  height: 13px;
  background: url(../common/ico-arrow-red-v01-thin.svg) no-repeat center center;
  background-size: contain;
  transition: 0.3s all linear;
}
.a_news_all a:hover {
  color: var(--prime-color-primary);
}
.a_news_all a:hover::after {
  right: 10px;
}

/* 一覧リンク 右寄せ */
.a_news_all.right {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

/*  サイドメニュー領域 */
.l-cont-menu__heading {
  position: relative;
}
.l-cont-menu__heading h2 {
  position: relative;
  border-top: 3px solid var(--prime-color-primary);
  border-bottom: 2px solid var(--base-gray-light);
  padding: 10px 10px 10px 0;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-cont-menu__heading h2 {
    min-height: 60px;
    font-size: 1.0625rem;
    line-height: 1.3;
  }
}
@media all and (min-width: 768px) {
  .l-cont-menu__heading h2 {
    min-height: 70px;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.l-cont-menu__inner {
  background: #fff;
  margin-bottom: 20px;
}
.l-cont-menu__inner ul {
  margin: 0;
}
.l-cont-menu__inner ul li {
  border-bottom: 1px solid var(--base-gray-light);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .l-cont-menu__inner ul li:last-child {
    border-bottom: none;
  }
}
.l-cont-menu__inner ul li a {
  position: relative;
  display: block;
  padding: 20px 5px 18px 20px;
  color: var(--default-black);
}
.l-cont-menu__inner ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  top: 33px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--prime-color-primary);
  transition: all 0.3s;
}
.l-cont-menu__inner ul li a::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--prime-color-primary);
  opacity: 0;
  transition: all 0.7s;
}
.l-cont-menu__inner ul li a:hover {
  color: var(--prime-color-primary);
}
.l-cont-menu__inner ul li a:hover::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--prime-color-primary);
  opacity: 1;
}
.l-cont-menu__inner .now a {
  color: var(--prime-color-primary);
}
.l-cont-menu__inner .now a::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--prime-color-primary);
  opacity: 1;
}

.c_password {
  text-align: center;
}
.c_password h2 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}

.c_password .view_input {
  width: 350px;
  margin: 30px auto;
}
.c_password .view_input dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.c_password .view_input dl dt {
  width: 60px;
  text-align: right;
}
.c_password .view_input dl .input_page_view input {
  width: 220px;
  padding: 10px;
  border: solid 2px var(--base-gray-light);
}

.btn_input_login {
  margin-top: 20px;
}
.btn_input_login a {
  display: block;
  padding: 14px 25px;
  letter-spacing: 0.4em;
  cursor: pointer;
  border-radius: 3px;
  color: #fff !important;
  text-decoration: none !important;
  background: var(--prime-color-primary);
}
@media all and (min-width: 768px) {
  .btn_input_login a {
    width: 280px;
    margin: auto;
  }
}

.l-news-area.food .tit-news-area:after, .l-news-area.career .tit-news-area:after, .l-news-area.items .tit-news-area:after, .l-news-area.join .tit-news-area:after, .l-news-area.room .tit-news-area:after, .l-news-area.textbook .tit-news-area:after, .l-news-area.travel .tit-news-area:after {
  content: "";
  position: absolute;
  background: url("../food/images/ico-coopun-food.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .l-news-area.food .tit-news-area:after, .l-news-area.career .tit-news-area:after, .l-news-area.items .tit-news-area:after, .l-news-area.join .tit-news-area:after, .l-news-area.room .tit-news-area:after, .l-news-area.textbook .tit-news-area:after, .l-news-area.travel .tit-news-area:after {
    top: 0px;
    right: -5px;
    width: 56px;
    height: 52px;
  }
}
@media all and (min-width: 768px) {
  .l-news-area.food .tit-news-area:after, .l-news-area.career .tit-news-area:after, .l-news-area.items .tit-news-area:after, .l-news-area.join .tit-news-area:after, .l-news-area.room .tit-news-area:after, .l-news-area.textbook .tit-news-area:after, .l-news-area.travel .tit-news-area:after {
    top: 115px;
    left: 30px;
    width: 105px;
    height: 100px;
  }
}
.l-news-area.career .tit-news-area::after {
  background: url("../career/images/ico-coopun-career.svg") no-repeat center center;
  background-size: contain;
}
.l-news-area.items .tit-news-area::after {
  background: url("../items/images/ico-coopun-items.svg") no-repeat center center;
  background-size: contain;
}
.l-news-area.join .tit-news-area::after {
  background: url("../join/images/ico-coopun-join.svg") no-repeat center center;
  background-size: contain;
}
.l-news-area.room .tit-news-area::after {
  background: url("../room/images/ico-coopun-room.svg") no-repeat center center;
  background-size: contain;
}
@media all and (min-width: 768px) {
  .l-news-area.room .tit-news-area::after {
    left: 15px;
  }
}
.l-news-area.textbook .tit-news-area::after {
  background: url("../textbook/images/ico-coopun-textbook.svg") no-repeat center center;
  background-size: contain;
}
.l-news-area.travel .tit-news-area::after {
  background: url("../travel/images/ico-coopun-travel.svg") no-repeat center center;
  background-size: contain;
}
@media all and (min-width: 768px) {
  .l-news-area.travel .tit-news-area::after {
    left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .text-link_area_second {
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .text-link_area_second {
    margin-top: 20px;
  }
}
.text-link_area_second .text-banner ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .text-link_area_second .text-banner ul {
    flex-direction: column;
    gap: 10px 0;
  }
}
@media all and (min-width: 768px) {
  .text-link_area_second .text-banner ul {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}
.text-link_area_second .text-banner ul li {
  position: relative;
  display: flex;
  border: 1px solid var(--prime-color-primary);
}
@media all and (min-width: 768px) {
  .text-link_area_second .text-banner ul li {
    width: 385px;
  }
}
.text-link_area_second .text-banner ul li::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
}
@media screen and (max-width: 767px) {
  .text-link_area_second .text-banner ul li::before {
    border-bottom: 2em solid transparent;
    border-left: 2.6em solid var(--prime-color-primary);
  }
}
@media all and (min-width: 768px) {
  .text-link_area_second .text-banner ul li::before {
    border-bottom: 2.6em solid transparent;
    border-left: 3.2em solid var(--prime-color-primary);
  }
}
.text-link_area_second .text-banner ul li a {
  position: relative;
  display: flex;
  padding: 12px 62px 12px 30px;
  width: 100%;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.text-link_area_second .text-banner ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--base-pink-pale);
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .text-link_area_second .text-banner ul li a::before {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media all and (min-width: 768px) {
  .text-link_area_second .text-banner ul li a::before {
    margin-top: -20px;
  }
}
.text-link_area_second .text-banner ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(../common/ico-arrow-red-v01-thin.svg) no-repeat center center;
  background-size: contain;
  transition: 0.3s all linear;
}
@media screen and (max-width: 767px) {
  .text-link_area_second .text-banner ul li a::after {
    right: 18px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 767px) {
  .text-link_area_second .text-banner ul li a {
    min-height: 80px;
  }
}
@media all and (min-width: 768px) {
  .text-link_area_second .text-banner ul li a {
    font-size: 1.0625rem;
    min-height: 100px;
  }
}
.text-link_area_second .text-banner ul li a:hover {
  color: var(--preset-red-bright);
}
.text-link_area_second .text-banner ul li a:hover::after {
  right: 16px;
}
@media screen and (max-width: 767px) {
  .text-link_area_second .text-banner ul li a:hover::after {
    right: 14px;
  }
}/*# sourceMappingURL=style.css.map */