@charset "UTF-8";
/*--------------------------------------------

地方創生SDGs官民連携プラットフォームinみやぎ
https://www.khb-tv.co.jp/khb/kanmin_miyagi_2025/

---------------------------------------------*/
/*--------------------------------------------
   [00] 基本設定
---------------------------------------------*/
* {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 62.5%;
  /*1rem=10px*/
}

body {
  font-size: 1.8rem;
  /*本文サイズ 1.8rem=18px*/
  line-height: 2;
  color: #1e1c1a;
}

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

a {
  transition: 0.4s;
  color: #109a9a;
  text-decoration-line: underline;
}
a:hover {
  transition: 0.4s;
  opacity: 0.7;
}

::-moz-selection {
  background: #109a9a;
  color: #ffffff;
}

::selection {
  background: #109a9a;
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
th {
  font-weight: 700;
}

li {
  list-style-type: none;
}

main {
  width: 100%;
  overflow: hidden;
}

.wrap {
  overflow: hidden;
}

/*セクション設定-------------------------*/
.bg-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg.jpg");
  background-color: #f5f5f1;
  z-index: -1;
}

section {
  padding: 50px 0 0;
}
section > .w_limit_1280, section > .w_limit_1440 {
  padding: 50px 15px;
}

.w_limit_sp {
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

.w_limit_1440 {
  max-width: 1440px;
  margin: 0 auto;
}

.w_limit_1280 {
  max-width: 1280px;
  margin: 0 auto;
}

.w_limit_1100 {
  max-width: 1100px;
  margin: 0 auto;
}

.w_limit_1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.w_90per {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.w_95per_pconly {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.w_limit_900 {
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  line-height: 1.2;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 45px;
  display: block;
  font-size: 3.8rem;
  vertical-align: middle;
  z-index: 1;
  text-align: center;
}
h2::after {
  content: "";
  height: 15px;
  width: 100px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  background-image: url(../images/icon_h2.svg);
  background-repeat: no-repeat;
}

h2.under_dash_100 {
  font-size: 4.8rem;
  border-bottom: dashed 2px #109a9a;
}
h2.under_dash_100::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
h2.under_dash_100::after {
  display: none;
}

h2.ff_racingsans {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 4.8rem;
}

.dropshadow {
  filter: drop-shadow(5px 5px 5px rgba(104, 69, 18, 0.3));
}

.comingsoon {
  text-align: center;
  color: #109a9a;
  font-size: 4.8rem;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 50px;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .w_95per_pconly {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  h2 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    padding-bottom: 30px;
  }
  section {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  section {
    padding: 25px 0;
  }
  section > .w_limit_1280,
  section > .w_limit_1000 {
    padding: 50px 0px;
  }
  body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 2.8rem;
  }
}
/*--------------------------------------------
[01] ヘッダー
---------------------------------------------*/
header {
  background-color: #f5f5f1;
  padding: 15px;
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 99;
  /*  border-bottom: dashed 1px $theme-color;*/
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/line-sdgs.png");
  background-size: 100% auto;
  height: 3px;
  width: 100%;
}

.header_inner {
  width: 100%;
  height: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_inner h1 {
  position: fixed;
  width: 18%;
  margin-right: 2%;
  max-width: 180px;
  min-width: 110px;
  align-self: flex-start;
  top: 5px;
  left: 1%;
}
.header_inner h1 img {
  /*      filter: drop-shadow(0 0 30px rgba(123, 174, 189, 0.4));*/
}
.header_inner nav {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 80%;
  margin-left: 20%;
  justify-content: flex-end;
}
.header_inner nav ul.header_nav {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
.header_inner nav ul.header_nav li {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-right: 40px;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 600;
  transition: 0.2s;
}
.header_inner nav ul.header_nav li:hover {
  transition: 0.2s;
  color: #109a9a;
}
.header_inner nav ul.header_nav li span {
  display: block;
  z-index: 5;
}
.header_inner nav ul.header_nav li a {
  text-decoration: none;
  color: #1e1c1a;
}
.header_inner nav ul.header_nav li a:hover {
  color: #109a9a;
}
.header_inner nav ul.header_nav li a::after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0px;
  margin: auto;
  width: 16px;
  height: 16px;
  transition: 0.6s;
  background-image: url(../images/icon_arrow.svg);
  transform: rotate(90deg);
  background-repeat: no-repeat;
}

ul.header_nav li::after {
  display: none;
}

ul.header_nav li::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

li.nav_about::before {
  background-image: url("../img/icon_about.svg");
}

li.nav_movie::before {
  background-image: url("../img/icon_movie.svg");
}

li.nav_archive::before {
  background-image: url("../img/icon_archive.svg");
}

.cta_btn {
  color: #ffffff;
  background: #109a9a;
  padding: 20px 25px;
  border-radius: 60px;
  margin-left: 25px;
  font-weight: 500;
  position: relative;
  line-height: 1.2;
  border: solid 3px #109a9a;
  transition: 0.3s;
}
.cta_btn:hover {
  background-color: #ffffff;
  border-color: #109a9a;
  color: #109a9a;
  transition: 0.3s;
}
.cta_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta_btn_area {
  background-color: #fff7d6;
  padding: 50px 15px;
  border-radius: 25px;
}

.cta_btn_area_02 {
  background-color: #fff7d6;
  padding: 25px 15px;
  border-radius: 25px;
}

.toggle {
  display: none;
  /* 初めは非表示 */
}

@media screen and (max-width: 1280px) {
  .header_inner nav ul.header_nav li {
    font-size: 1.4rem;
    padding-left: 20px;
    margin-right: 18px;
  }
}
@media screen and (max-width: 900px) {
  header {
    height: 80px;
    background-color: transparent;
    border: none;
  }
  .header_inner {
    width: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*トグルナビ*/
  }
  .header_inner nav {
    display: block;
    position: fixed;
    top: 0;
    z-index: 999;
    height: 100vh;
    background-color: #ffffff;
    width: 90%;
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    margin: 0;
    padding: 15px;
    border: solid 8px #109a9a;
    border-top-color: #61d1db;
    border-bottom-color: #109a9a;
    border-left-color: #61d1db;
    border-right-color: #109a9a;
  }
  .header_inner nav ul.header_nav {
    flex-direction: column;
    display: block;
  }
  .header_inner nav ul.header_nav li {
    font-size: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-right: 0px;
    width: 100%;
    border-bottom: solid 1px #109a9a;
    align-items: center;
  }
  .header_inner nav ul.header_nav li.sp_only {
    display: block;
  }
  .header_inner nav ul.header_nav li:last-of-type {
    border-right: none;
  }
  .header_inner .toggle_wrap {
    background-color: #ed614b;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 70px;
    height: 70px;
    z-index: 50;
    border-bottom-left-radius: 25px;
  }
  .header_inner .toggle {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    display: block;
    /* メニューアイコンを表示 */
  }
  .header_inner .toggle::before, .header_inner .toggle::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    /* バーガーアイコンの色 */
    transition: transform 0.3s, opacity 0.3s;
  }
  .header_inner .toggle::before {
    top: 7px;
  }
  .header_inner .toggle::after {
    bottom: 7px;
  }
  .header_inner .toggle.active {
    transform: rotate(180deg);
  }
  .header_inner .toggle.active::before {
    transform: rotate(45deg);
    top: 50%;
  }
  .header_inner .toggle.active::after {
    transform: rotate(-45deg);
    bottom: 50%;
  }
  header nav {
    left: -100%;
    transition: 0.3s;
  }
  header nav.show {
    left: 0;
    transition: 0.3s;
  }
  header .cta_btn {
    color: #ffffff;
    background: #109a9a;
    border-radius: 60px;
    margin-left: 25px;
    font-weight: 500;
    position: relative;
    line-height: 1.2;
    text-align: center;
    margin: auto;
    margin-top: 25px;
  }
  header .cta_btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  ul.header_nav li {
    position: relative;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding: 10px;
  }
  .subpage_header .header_inner {
    margin-top: -10px;
  }
  .subpage_header .header_inner h1 {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    width: auto;
    height: 80px;
  }
}
/*--------------------------------------------
  カードレイアウト
---------------------------------------------*/
.article-container {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.article-container > li,
.article-container > dl {
  margin-bottom: 50px;
  padding-bottom: 15px;
  position: relative;
  transition: 0.2s;
  text-align: center;
}
.article-container > li a,
.article-container > dl a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.article-container > li a:hover,
.article-container > dl a:hover {
  transition: 0.2s;
  opacity: 1;
}
.article-container h3 {
  color: #109a9a;
  font-size: 2.1rem;
  line-height: 1.5;
  margin-bottom: 15px;
  margin-top: 10px;
  text-align: center;
  border: none;
  padding: 0;
  text-align: left;
  white-space: pre-wrap;
}

figure.article_thumbnail {
  position: relative;
  width: 100%;
  height: 280px;
  /* 画像エリアの高さを固定 */
  overflow: hidden;
  border-radius: 15px;
}
figure.article_thumbnail .article_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  /* ぼかし効果 */
  transform: scale(1.2);
  /* ぼかしが端で途切れないように拡大 */
}
figure.article_thumbnail img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  /* 画像を縮小して中央配置 */
  z-index: 2;
}

p.article_date {
  color: #109a9a;
  font-weight: 600;
  margin-top: 10px;
  text-align: left;
}
p.article_date time {
  font-size: 1.6rem;
  font-family: "Dosis", sans-serif;
}

.article_description {
  text-align: left;
  font-size: 1.5rem;
  white-space: pre-wrap;
}

p.caption {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 10px;
}

.article-text {
  padding: 0 15px;
}

.article-container.cal2 > li,
.article-container.cal2 > dl {
  width: 48%;
  margin-right: 4%;
}
.article-container.cal2 > li:nth-of-type(2n),
.article-container.cal2 > dl:nth-of-type(2n) {
  margin-right: 0;
}
.article-container.cal2::after {
  content: "";
  width: 48%;
}

.article-container.cal3 li {
  width: 32%;
  margin-right: 2%;
}
.article-container.cal3 li:nth-of-type(3n) {
  margin-right: 0;
}
.article-container.cal3::after {
  content: "";
  width: 32%;
}

.event_embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 高さ＝幅の56.25% → 16:9比率 */
  overflow: hidden;
}
.event_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .article-container li {
    width: 100%;
  }
  .article-container li a.Btn {
    height: 36px;
    line-height: 32px !important;
    border-radius: 0;
    margin: 0;
    padding: 0;
    padding-left: 10px;
    font-size: 13px;
  }
  .article-container li a.Btn::after {
    content: "";
    width: 8px;
    height: 8px;
    right: 10px;
  }
  .article-text {
    padding-top: 10px;
  }
  .article-container.cal3 li {
    width: 48%;
    margin-right: 4%;
  }
  .article-container.cal3 li:nth-of-type(2n) {
    margin-right: 0;
  }
  .article-container.cal3::after {
    content: "";
    width: 48%;
  }
}
@media (max-width: 768px) {
  .article-container.cal2 li,
  .article-container.cal3 li {
    width: 100%;
    margin-right: 0;
    margin: 0 auto 40px;
  }
  .article-container.cal2 li:nth-of-type(2n),
  .article-container.cal3 li:nth-of-type(2n) {
    margin-right: 0;
  }
}
/*--------------------------------------------
[00] ローディング画面
---------------------------------------------*/
#loading-screen {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: #1b95c2;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading-screen .logo-wrapper {
  display: flex;
  gap: 2rem;
}
#loading-screen .logo-wrapper .logo-shape {
  opacity: 0;
  width: 48px;
  height: auto;
  animation: fadeIn 0.6s ease forwards;
}
#loading-screen .logo-wrapper .shape-1 {
  animation-delay: 0s;
}
#loading-screen .logo-wrapper .shape-2 {
  animation-delay: 0.6s;
}
#loading-screen .logo-wrapper .shape-3 {
  animation-delay: 1s;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------
[01] メインビジュアル
---------------------------------------------*/
h1.title_h1 {
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.3;
  margin-top: 15px;
  text-shadow: 4px 4px 2px #ffffff, -4px 4px 2px #ffffff, 4px -4px 2px #ffffff, -4px -4px 2px #ffffff, 4px 0px 2px #ffffff, 0px 4px 2px #ffffff, -4px 0px 2px #ffffff, 0px -4px 2px #ffffff;
}

#Mainvisual {
  padding-top: 15px;
  margin-bottom: 35px;
  margin-top: 100px;
  padding-top: 35px;
  position: relative;
  text-align: center;
  filter: drop-shadow(0 0 30px rgba(123, 174, 189, 0.4));
}

.mv_hero_img img {
  border-radius: 25px;
}

#Mainvisual {
  position: relative;
}

#Mainvisual .slide {
  text-align: center;
}

.mv_hero_img img {
  width: 100%;
  height: auto;
  display: block;
}

.mv_wrap {
  position: relative;
}

/*無限ループスライド*/
.main_slide {
  margin: 0px auto 25px;
}

.slick-prev, .slick-next {
  display: block !important; /* 確実に表示されるように */
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .main_slide li {
    width: 150px;
  }
}
@media screen and (max-width: 1080px) {
  #Mainvisual {
    height: auto;
  }
  #Mainvisual img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  #Mainvisual {
    padding-top: 0px;
    margin-bottom: 35px;
    margin-top: 100px;
    position: relative;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  h1.title_h1 {
    font-size: 3.2rem;
  }
}
/*--------------------------------------------
[0X] お知らせ
---------------------------------------------*/
section#Topics {
  padding: 25px 0;
  background-color: #1b95c2;
  background-image: repeating-linear-gradient(16deg, transparent 15px, rgba(90, 189, 225, 0.43) 16px, rgba(90, 189, 225, 0.43) 16px, transparent 17px, transparent 31px, rgba(90, 189, 225, 0.43) 32px, rgba(90, 189, 225, 0.43) 32px, transparent 33px, transparent 47px, rgba(90, 189, 225, 0.43) 48px, rgba(90, 189, 225, 0.43) 48px, transparent 49px, transparent 63px, rgba(90, 189, 225, 0.43) 64px, rgba(90, 189, 225, 0.43) 64px, transparent 65px, transparent 79px, rgba(90, 189, 225, 0.43) 80px, rgba(90, 189, 225, 0.43) 80px), repeating-linear-gradient(106deg, transparent 15px, rgba(90, 189, 225, 0.43) 16px, rgba(90, 189, 225, 0.43) 16px, transparent 17px, transparent 31px, rgba(90, 189, 225, 0.43) 32px, rgba(90, 189, 225, 0.43) 32px, transparent 33px, transparent 47px, rgba(90, 189, 225, 0.43) 48px, rgba(90, 189, 225, 0.43) 48px, transparent 49px, transparent 63px, rgba(90, 189, 225, 0.43) 64px, rgba(90, 189, 225, 0.43) 64px, transparent 65px, transparent 79px, rgba(90, 189, 225, 0.43) 80px, rgba(90, 189, 225, 0.43) 80px);
}
section#Topics h2 {
  margin-bottom: 0;
}
section#Topics h2::after {
  display: none;
}

.news-container li {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 20px 3%;
  background-color: #ffffff;
  border-radius: 100px;
  line-height: 1.5;
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  /*
      &:first-of-type{      
  border-bottom: dashed 1px #785759;
      }
      */
}
.news-container li a.Btn {
  margin: 15px 0;
}
.news-container li a {
  position: relative;
  padding-left: 1.2em;
  margin-top: 5px;
  display: block;
}
.news-container li a::before {
  content: "";
  background-image: url(../images/icon_arrow.svg);
  background-repeat: no-repeat;
  width: 15px;
  height: 20px;
  left: 0;
  top: 6px;
  margin: auto;
  position: absolute;
  left: 0px;
  transform: rotate(315deg);
}

.news-date {
  width: 14%;
  margin-right: 5%;
  font-weight: 600;
  color: #109a9a;
}

.news-title {
  width: 81%;
  font-weight: 500;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0px 0 50px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

h3.h3_normal_fc_w {
  color: #ffffff;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .news-container li {
    flex-direction: column;
    padding: 15px 10%;
    border-radius: 25px;
  }
  .news-date {
    width: 100%;
    margin-right: 3%;
    margin-bottom: 5px;
  }
  .news-date p {
    width: 100%;
  }
  .news-title {
    width: 100%;
    font-weight: 500;
  }
  #News .w_limit_1280 {
    padding-top: 35px;
    padding-bottom: 25px;
  }
  h3.h3_normal_fc_w {
    font-size: 2.1rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
  }
}
.flex_cal2 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex_cal2 > div {
  width: 55%;
}
.flex_cal2 > figure {
  width: 40%;
}
.flex_cal2.order-reverse {
  flex-direction: row-reverse;
}

.flex_cal2_even {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flex_cal2_even > div {
  width: 48%;
}
.flex_cal2_even.order-reverse {
  flex-direction: row-reverse;
}

.flex_cal3 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex_cal3 > div, .flex_cal3 > li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 50px;
  margin-top: 20px;
}
.flex_cal3 > div:nth-of-type(3n), .flex_cal3 > li:nth-of-type(3n) {
  margin-right: 0;
}

h3.about_catch {
  color: #109a9a;
  font-size: 3.2rem;
  font-weight: 900;
  padding: 0;
  margin-bottom: 15px;
  border: none;
}

@media screen and (max-width: 1280px) {
  .flex_cal2 {
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .flex_cal2 {
    flex-direction: column !important;
    align-items: center;
  }
  .flex_cal2 > div {
    width: 100%;
    margin-top: 25px;
  }
  .flex_cal2 > figure {
    width: 100%;
  }
  .flex_cal2.order-reverse {
    flex-direction: row;
  }
  .flex_cal2_even {
    flex-direction: column !important;
    align-items: center;
  }
  .flex_cal2_even > div {
    width: 100%;
  }
  .flex_cal2_even.order-reverse {
    flex-direction: row;
  }
  .flex_cal3 {
    flex-direction: column;
  }
  .flex_cal3 > div, .flex_cal3 > li {
    width: 100%;
    margin-right: 0;
  }
  .flex_cal2_even {
    align-items: flex-start;
  }
}
@media screen and (max-width: 600px) {
  h3.about_catch {
    font-size: 2.6rem;
  }
}
h3 {
  font-size: 2.8rem;
  line-height: 1.5;
  border-left: solid 8px #109a9a;
  padding: 25px 15px;
  border-bottom: solid 1px #cccccc;
  margin-bottom: 15px;
}

h4 {
  font-size: 1.8rem;
  line-height: 1.2;
  background-color: #eeeeee;
  padding: 5px 10px;
  margin-top: 25px;
  margin-bottom: 10px;
}

table.default-table {
  margin: auto;
  margin-top: 15px;
  font-size: 2.1rem;
  width: 100%;
  line-height: 1.2;
  /*  border: solid 5px $theme-color;*/
}
table.default-table tr:first-of-type {
  border-top: solid 1px #109a9a;
}
table.default-table tr:last-of-type th {
  border-bottom: solid 1px #109a9a;
}
table.default-table tr th {
  background-color: rgba(16, 154, 154, 0.2);
  color: #1e1c1a;
  padding: 25px 15px;
  width: 20%;
  max-width: 100px;
  text-align: center;
  border-bottom: solid 1px #ffffff;
  border-bottom: solid 1px #109a9a;
  vertical-align: middle;
  font-weight: 600;
}
table.default-table tr td {
  padding: 25px 15px;
  width: 70%;
  border-bottom: solid 1px #109a9a;
  vertical-align: middle;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 2.1rem;
    padding: 15px;
  }
  table.default-table tr {
    display: block;
    width: 100%;
  }
  table.default-table tr th {
    max-width: 100%;
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.8rem;
    text-align: center;
  }
  table.default-table tr td {
    display: block;
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
  }
}
/*--------------------------------------------
[04] はじめに
---------------------------------------------*/
section#Intro {
  background-image: url(../images/bg.jpg);
  background-position: top center;
  padding: 100px 0;
  position: relative;
}
section#Intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/line-sdgs.png");
  background-size: 100% auto;
  height: 3px;
  width: 100%;
}

.container {
  padding: 4%;
  border-radius: 25px;
}

.container_translucent {
  background-color: rgba(255, 255, 255, 0.92);
}

.border_dashed_box {
  border: dashed 2px #109a9a;
  padding: 25px;
}

@media screen and (max-width: 767px) {
  .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  section#Intro {
    background-size: 300% auto;
  }
  .comment_professor .flex_cal2.order-reverse {
    flex-direction: column-reverse !important;
  }
}
/*--------------------------------------------
[0X] 事業概要
---------------------------------------------*/
section#About {
  padding: 100px 0;
  position: relative;
}
section#About::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../images/line-sdgs.png");
  background-size: 100% auto;
  height: 3px;
  width: 100%;
}

h3.point_h3 {
  font-weight: 900;
  font-size: 4.8rem;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  padding: 0;
  border-left: none;
  border-bottom-color: #109a9a;
  color: #109a9a;
  border-bottom: none;
  margin-bottom: 20px;
  line-height: 1.5;
}
h3.point_h3 > span {
  position: relative;
  padding-left: 1.6em;
}
h3.point_h3 > span > span {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #1e1c1a;
  font-weight: 600;
  margin-left: 1em;
}
h3.point_h3 > span::before {
  content: "";
  background-image: url(../images/icon_points.svg);
  background-repeat: no-repeat;
  width: 1.3em;
  height: 1.3em;
  left: 0;
  top: 0.2em;
  position: absolute;
}

.points_list_wrap {
  border-top: 5px solid #ed614b;
  border-bottom: 5px solid #61d1db;
  border-left: 5px solid #61d1db;
  border-right: 5px solid #ed614b;
  margin-bottom: 50px;
  padding: 50px 15px;
  border-radius: 25px;
}

.points_list {
  text-align: left;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
}
.points_list li {
  background-color: #e1f5f5;
  padding: 15px 25px;
  border-radius: 50px;
  padding-left: 1.3em;
  margin-bottom: 20px;
}
.points_list li:last-of-type {
  margin-bottom: 0;
}
.points_list li p {
  position: relative;
  padding-left: 1.3em;
  line-height: 1.5;
}
.points_list li p::before {
  content: "";
  background-image: url(../images/icon_arrow.svg);
  background-repeat: no-repeat;
  width: 1.3em;
  height: 1.3em;
  left: 0;
  top: 0.2em;
  position: absolute;
}

@media screen and (max-width: 900px) {
  h3.point_h3 {
    font-weight: 900;
    font-size: 4.8rem;
    text-align: left;
    font-family: "Josefin Sans", sans-serif;
    padding: 0;
    border-left: none;
    border-bottom-color: #109a9a;
    color: #109a9a;
    border-bottom: none;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  h3.point_h3 > span {
    display: block;
    position: relative;
    padding-left: 1.5em;
    display: inline-block;
    text-align: left;
  }
  h3.point_h3 > span > span {
    text-align: left;
    display: block;
    font-size: 1.6rem;
  }
  h3.point_h3 > span::before {
    left: 0;
    bottom: auto;
    position: absolute;
  }
  .points_list_wrap {
    padding: 5% 15px;
  }
  .points_list {
    text-align: left;
    font-size: 2.1rem;
  }
  .points_list li {
    background-color: #e1f5f5;
    padding: 15px 25px;
    border-radius: 50px;
    padding-left: 1.3em;
    margin-bottom: 20px;
  }
  .points_list li:last-of-type {
    margin-bottom: 0;
  }
  .points_list li p {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5;
  }
  .points_list li p::before {
    content: "";
    background-image: url(../images/icon_arrow.svg);
    background-repeat: no-repeat;
    width: 1.3em;
    height: 1.3em;
    left: 0;
    position: absolute;
  }
}
@media screen and (max-width: 480px) {
  h3.point_h3 {
    margin-bottom: 0;
  }
  .points_list {
    font-size: 1.8rem;
  }
  .points_list li {
    margin-bottom: 10px;
    border-radius: 10px;
  }
  .points_list li p {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5;
  }
  .points_list li p::before {
    content: "";
    background-image: url(../images/icon_arrow.svg);
    background-repeat: no-repeat;
    width: 1.3em;
    height: 1.3em;
    left: 0;
    position: absolute;
  }
}
/*--------------------------------------------
[0X] 事業概要
---------------------------------------------*/
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.overview_list {
  margin: auto;
  text-align: center;
}
.overview_list li {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s;
}
.overview_list li.is-show {
  opacity: 1;
  transform: translateY(0);
}
.overview_list li:nth-child(1).is-show {
  transition-delay: 0.2s;
}
.overview_list li:nth-child(2).is-show {
  transition-delay: 0.6s;
}
.overview_list li:nth-child(3).is-show {
  transition-delay: 1s;
}
@media screen and (max-width: 767px) {
  .overview_list li.is-show {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------
[0X] 地方創生SDGs官民連携プラットフォームが選ばれる理由
---------------------------------------------*/
.audience-tabs {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  margin: 30px auto 0px;
  position: relative;
  /*  justify-content: center;*/
}
@media (max-width: 640px) {
  .audience-tabs {
    gap: 8px;
    margin-top: 20px;
  }
}

.audience-tab {
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 20px 20px 20px;
  padding-left: 50px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 15px 15px 0 0;
  font-size: 2.4rem;
  z-index: 1;
  box-shadow: rgba(100, 100, 111, 0.1) 0px -10px 20px 0px;
}
.audience-tab::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 0;
  left: 10px;
  display: block;
  width: 35px;
  height: 35px;
}
.audience-tab.tab--red {
  background-color: #ed614b;
  border: solid 5px #ed614b;
  border-bottom: none;
}
.audience-tab.tab--red::before {
  background-image: url(../images/icon_company_w.svg);
}
.audience-tab.tab--blue {
  background-color: #58d5e0;
  border: solid 5px #58d5e0;
  border-bottom: none;
}
.audience-tab.tab--blue::before {
  background-image: url(../images/icon_gov_w.svg);
}
.audience-tab.is-active {
  padding-bottom: 35px;
}
.audience-tab.is-active::after {
  content: "";
  width: 100%;
  height: 15px;
  bottom: -5px;
  left: 0;
  z-index: 5;
  position: absolute;
  background-color: #fff;
}
.audience-tab.is-active.tab--red {
  background: #ffffff;
  border: solid 5px #ed614b;
  border-bottom: none;
}
.audience-tab.is-active.tab--red::before {
  background-image: url(../images/icon_company.svg);
}
.audience-tab.is-active.tab--blue {
  background: #ffffff;
  border: solid 5px #58d5e0;
  border-bottom: none;
}
.audience-tab.is-active.tab--blue::before {
  background-image: url(../images/icon_gov.svg);
}
@media (max-width: 640px) {
  .audience-tab {
    padding: 10px 12px 8px;
  }
}

.audience-panel {
  margin: 0 auto;
}
.audience-panel[hidden] {
  display: none;
}
.audience-panel.is-active {
  display: block;
}

.info_container {
  margin-top: 0 !important;
  padding: 15px;
  background-color: #fff;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: 0;
  position: relative;
  border-radius: 15px;
  border-top-left-radius: 0;
}

#ForGov.info_container {
  border: solid 5px #58d5e0;
}

#ForCompany.info_container {
  border: solid 5px #ed614b;
}

@media screen and (max-width: 767px) {
  .info_container {
    border-top-right-radius: 0;
  }
  .audience-tab {
    font-size: 2.1rem;
  }
  .audience-tab.is-active {
    padding-bottom: 10px;
  }
  .audience-tabs {
    justify-content: space-between;
  }
  .audience-tab {
    padding-top: 60px;
    width: 50%;
    text-align: center;
  }
  .audience-tab::before {
    content: "";
    position: absolute;
    top: 15px;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    height: 35px;
  }
  .audience-tab.tab--red {
    background-color: #ed614b;
    border: solid 5px #ed614b;
    border-bottom: none;
  }
  .audience-tab.tab--red::before {
    background-image: url(../images/icon_company_w.svg);
  }
  .audience-tab.tab--blue {
    background-color: #58d5e0;
    border: solid 5px #58d5e0;
    border-bottom: none;
  }
  .audience-tab.tab--blue::before {
    background-image: url(../images/icon_gov_w.svg);
  }
  .audience-tab.is-active {
    margin-bottom: -5px;
  }
  .audience-tab.is-active::after {
    content: "";
    width: 100%;
    height: 15px;
    bottom: -5px;
    left: 0;
    z-index: 5;
    position: absolute;
    background-color: #fff;
  }
  .audience-tab.is-active.tab--red::before {
    background-image: url(../images/icon_company.svg);
  }
  .audience-tab.is-active.tab--blue {
    padding-bottom: 50px;
  }
  .audience-tab.is-active.tab--blue::before {
    background-image: url(../images/icon_gov.svg);
  }
}
/*--------------------------------------------
[0X] 関連動画
---------------------------------------------*/
ul.article-container.video_container .video_box {
  padding: 15px 0px 25px;
}
ul.article-container.video_container .video_box .event_embed > a {
  transition: 0.3s;
}
ul.article-container.video_container .video_box .event_embed > a::after {
  content: "";
  background: url(../images/icon_play.svg) no-repeat center;
  width: 28%;
  height: 28%;
  max-width: 150px;
  max-height: 150px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  z-index: 2;
  transition: 0.3s;
}
ul.article-container.video_container .video_box .event_embed > a::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  z-index: 2;
  transition: 0.3s;
}
ul.article-container.video_container .video_box .event_embed > a:hover {
  transition: 0.3s;
}
ul.article-container.video_container .video_box .event_embed > a:hover::before {
  background: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
ul.article-container.video_container .video_box .event_embed > a:hover::after {
  background: url(../images/icon_play_hover.svg) no-repeat center;
}
ul.article-container.video_container .article_text {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: auto;
  margin-top: 15px;
}
ul.article-container.video_container .article_text .article_category {
  text-align: center;
  color: #109a9a;
  font-weight: 600;
  font-size: 1.5rem;
  background-color: #109a9a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 10px;
}
ul.article-container.video_container .article_text h3.article_title {
  margin-bottom: 0;
  margin-top: 0;
  border: none;
  padding-top: 40px;
  color: #1e1c1a;
}

.video_container .event_embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  padding-top: 0;
  text-align: center;
  margin: auto;
  background-color: transparent;
}
.video_container .event_embed a {
  display: block;
  width: 100%;
  height: 100%;
}
.video_container .event_embed a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}
.video_container .event_embed a::after {
  content: "";
  background: url(../images/icon_play.svg) no-repeat center;
  width: 20%;
  height: 20%;
  max-width: 150px;
  max-height: 150px;
  position: absolute;
  right: -2%;
  bottom: 2.5%;
  pointer-events: none;
  z-index: 2;
}

/* モーダルウィンドウ設定 */
.custom-modal-container {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-modal-content {
  position: relative;
  width: 100vw;
  max-width: 1200px;
  aspect-ratio: 16/9;
  transition: transform 0.3s ease;
}
.custom-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

button.custom-modal-close {
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  font-size: 36px;
  right: 8vw;
  top: 5%;
  transform: translate(0%, 0%);
  transition: 0.2s;
  color: #ffffff;
  background-color: #109a9a;
}
button.custom-modal-close span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}
button.custom-modal-close:hover, button.custom-modal-close:active {
  background-color: #109a9a;
  transition: 0.2s;
}

/* 背景のフェードのみ */
.modal-fade-enter-active,
.modal-fade-leave-active {
  transition: opacity 0.3s ease;
}

.modal-fade-enter-from,
.modal-fade-leave-to {
  opacity: 0;
}

.modal-fade-enter-to,
.modal-fade-leave-from {
  opacity: 1;
}

/* 中身のスケール＋フェード */
.modal-content-fade-enter-active,
.modal-content-fade-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-content-fade-enter-from,
.modal-content-fade-leave-to {
  opacity: 0;
  transform: scale(0.9);
}

.modal-content-fade-enter-to,
.modal-content-fade-leave-from {
  opacity: 1;
  transform: scale(1);
}

/*--------------------------------------------
[98] フッター
---------------------------------------------*/
footer {
  padding: 50px 0 100px;
  position: relative;
  background: url(../images/bg.jpg);
}

.contact-box {
  /*  border: solid 1px #372163;*/
  padding: 45px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px auto 100px;
  border: solid 5px #109a9a;
  background-color: #ffffff;
  color: #109a9a;
}
.contact-box a {
  text-decoration: none;
}

.contact-title {
  display: block;
  width: 24%;
  font-size: 2.4rem;
  padding-bottom: 0;
  margin-bottom: 0;
  border-right: solid 1px #109a9a;
  text-align: center;
  font-weight: 600;
  padding-right: 25px;
}

h2.contact-title::after {
  display: none;
}

.contact-txt {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  width: 70%;
}

.contact-add {
  text-align: left;
  margin-left: 25px;
}
.contact-add p.contact-email span {
  color: #0083da;
  font-size: 2.1rem;
}
.contact-add .tel-link {
  font-size: 2.4rem;
}
.contact-add .tel-link a {
  font-size: 2.4rem;
}

#Sponsor {
  margin-bottom: 50px;
  max-width: 90%;
  background-color: #ffffff;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
#Sponsor .w_limit_1440 {
  position: relative;
}
#Sponsor dl {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 25px;
  position: relative;
  border-bottom: solid 1px #109a9a;
}
#Sponsor dl:last-of-type {
  border-bottom: none;
}
#Sponsor dl dt {
  width: 20%;
  margin-right: 5%;
  padding-left: 15px;
  background-color: #109a9a;
  color: #ffffff;
  position: relative;
  height: 50px;
  line-height: 50px;
}
#Sponsor dl dt::after {
  content: "";
  border-top: solid 50px #ffffff;
  border-left: solid 25px transparent;
  bottom: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
#Sponsor dl dd {
  width: 75%;
  align-self: center;
}

.kyosan-flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  vertical-align: middle;
}

.kyosan-flex .khb img {
  width: 220px;
  margin-left: 25px;
}

.kyosan-flex p:nth-of-type(3n) {
  margin-right: 0;
}

.footer_inner {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}
.footer_inner h1 {
  width: 30%;
}
.footer_inner nav {
  width: 70%;
}
.footer_inner nav ul.footer_nav {
  justify-content: flex-end;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.footer_inner nav ul.footer_nav li {
  color: #ffffff;
  display: block;
  position: relative;
  padding-left: 20px;
  margin-right: 40px;
}
.footer_inner nav ul.footer_nav li a {
  color: #ffffff;
  text-decoration-line: none;
}
.footer_inner nav ul.footer_nav li span {
  display: block;
  z-index: 5;
}
.footer_inner nav ul.footer_nav li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  margin: auto;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 3px 3px 0 0;
  border-right-color: #ff5ed1;
  border-top-color: #34d4f9;
  transform: rotate(135deg);
  transition: 0.6s;
}

footer .cta_btn {
  color: #1e1c1a;
  display: block;
  background: #ffffff;
  max-width: 400px;
  text-align: center;
}

.footer_cta {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo_zaidan {
  text-align: center;
  margin-bottom: 75px;
}

@media screen and (max-width: 1080px) {
  .footer_inner {
    width: 100%;
    flex-direction: column;
  }
  .footer_inner h1 {
    width: 100%;
    text-align: center;
  }
  .footer_inner h1 img {
    width: 200px;
    height: 200px;
  }
  .footer_inner nav {
    width: 100%;
  }
  .footer_inner nav ul.footer_nav {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .footer_inner nav ul.footer_nav li {
    color: #ffffff;
    display: block;
    position: relative;
    padding: 20px;
    margin-right: 0px;
    font-size: 16px;
    padding: 20px 10px 15px;
    width: 100%;
    border-bottom: solid 1px #ffffff;
    text-align: center;
    align-items: center;
  }
  .footer_inner nav ul.footer_nav li::after {
    display: none;
  }
  .footer_inner nav ul.footer_nav li span {
    display: block;
    z-index: 5;
  }
  .footer_cta {
    justify-content: center;
  }
}
small {
  display: block;
  text-align: center;
}

.copyright {
  font-size: 1.4rem;
  color: #ffffff;
}

#PageTop {
  display: block;
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 60px;
  height: 60px;
  z-index: 5;
  scroll-behavior: auto;
}
#PageTop a {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.5s;
  background-color: #f5f5f1;
  border: solid 2px #109a9a;
  border-radius: 50px;
}
#PageTop a:hover {
  transition: 0.5s;
  background: #109a9a;
  opacity: 1;
}
#PageTop a::before {
  content: "";
  border-style: solid;
  border-color: #ffffff;
  background-image: url(../images/icon_arrow.svg);
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  position: absolute;
  margin: auto;
  top: 12px;
  left: 0px;
  right: 0px;
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 1000px) {
  .contact-txt {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-add {
    margin-left: 0px !important;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  #Sponsor dl {
    flex-direction: column;
  }
  #Sponsor dl dt {
    width: 100%;
    margin-right: 5%;
    padding-left: 15px;
    background-color: #109a9a;
    color: #ffffff;
    position: relative;
    height: 35px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  #Sponsor dl dd {
    width: 100%;
    align-self: center;
  }
  .contact-box {
    flex-direction: column;
    padding: 25px;
  }
  .contact-title {
    display: block;
    width: 100%;
    font-size: 2.8rem;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 10px;
    border-right: none;
    border-bottom: solid 1px #ffffff;
  }
  .contact-txt {
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 0;
    align-items: center;
    margin-top: 15px;
  }
  .contact-txt .contact-add {
    align-items: center;
    text-align: center;
  }
  footer {
    padding-bottom: 150px;
  }
  #PageTop {
    display: block;
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 10;
  }
}
/*--------------------------------------------
// [12] 関連リンク
---------------------------------------------*/
.kyosan-box {
  border-radius: 25px;
}

.kyosan-flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  vertical-align: middle;
  /*	&::after{
  	content: '';
     width: calc(96%/3);
  	position: relative;
  	right: 0;
  }*/
}
.kyosan-flex li {
  width: 24%;
  margin-left: 1.3333333333%;
  margin-bottom: 25px;
}
.kyosan-flex li img {
  width: 300px;
  height: auto;
  border: solid 1px #cccccc;
}
.kyosan-flex li:nth-of-type(4n+1) {
  margin-left: 0;
}

.kyosan-flex.solo {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .kyosan-flex li {
    width: 100%;
    margin-left: calc(infinity * 1%);
    margin-bottom: 25px;
  }
  li:nth-of-type(2n+1) {
    margin-left: 0;
  }
}
/*--------------------------------------------
[03]サブページタイトル・パンくず
---------------------------------------------*/
.subpage-header {
  padding-bottom: 0px;
  position: relative;
  background-image: url(../images/bg.jpg);
  padding-top: 60px;
}

.subpage_title {
  margin-top: 100px;
  width: 92%;
  max-width: 720px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top 25%;
  height: 60px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  letter-spacing: 0.7rem;
  position: relative;
  background-repeat: no-repeat;
  background: #1e1c1a;
  transform: skewX(-15deg);
}
.subpage_title h1 {
  z-index: 1;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.2;
  display: block;
  margin: auto;
  color: #ffffff;
  transform: skewX(15deg);
  padding-top: 10px;
  padding-bottom: 10px;
}
.subpage_title h1 span {
  display: block;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 5px;
}

.crumb_wrap {
  background-color: #61d1db;
  padding: 0;
}

.Crumbs {
  margin-top: 25px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 1.4rem;
  line-height: 1.2;
  padding-top: 3px;
  padding-bottom: 3px;
  width: 100%;
  margin-top: 40px;
}
.Crumbs li {
  position: relative;
  margin-right: 30px;
  font-weight: 600;
  padding: 0;
}
.Crumbs li i.fa-solid.fa-house {
  margin-right: 3px;
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: -0.1em;
  background-size: contain;
  font-style: normal;
  background: url("../images/house-solid.svg") no-repeat center center;
}
.Crumbs li a {
  color: #1e1c1a;
}
.Crumbs li::after {
  content: "";
  border-width: 1px 0px 0px 1px;
  border-color: #1e1c1a;
  width: 7px;
  height: 7px;
  transform: rotate(135deg);
  position: absolute;
  top: 3px;
  bottom: 0;
  left: -22px;
  margin: auto;
}
.Crumbs li:first-of-type::after {
  display: none;
}

@media screen and (max-width: 1080px) {
  .subpage_title {
    margin-top: 80px;
    height: 100px;
  }
  .subpage_title h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 1030px) {
  .subpage-header::before {
    content: "";
    margin: auto;
    width: 45%;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
  .subpage_title {
    height: auto;
    margin-bottom: 25px;
  }
  .subpage_title h1 {
    font-size: 2.4rem;
    text-align: center;
  }
}
/*--------------------------------------------
 [99] 標準機能
---------------------------------------------*/
/*
  微調整用
---------------------------------------------*/
.fz-12 {
  font-size: 1.2rem;
}

.fz-14 {
  font-size: 1.4rem;
}

.fz-15 {
  font-size: 1.5rem !important;
}

.fz-16 {
  font-size: 1.6rem;
}

.fz-18 {
  font-size: 1.8rem !important;
}

.fz-21 {
  font-size: 2.1rem;
}

.fz-24 {
  font-size: 2.4rem;
}

.fz-26 {
  font-size: 2.6rem;
}

.fz-28 {
  font-size: 2.8rem;
}

.fz-32 {
  font-size: 3.2rem !important;
}

.fz-36 {
  font-size: 3.6rem !important;
}

.fz-40 {
  font-size: 4rem !important;
}

@media screen and (max-width: 600px) {
  /**/
  .fz-18 {
    font-size: 1.62rem;
  }
  .fz-21 {
    font-size: 1.89rem;
  }
  .fz-28 {
    font-size: 2.24rem;
  }
  .fz-32 {
    font-size: 2.56rem;
  }
  .fz-40 {
    font-size: 3.2rem;
  }
  .fz-16_sp {
    font-size: 1.6rem !important;
  }
  .fz-18_sp {
    font-size: 1.8rem !important;
  }
  .fz-21_sp {
    font-size: 2.1rem !important;
  }
  .fz-28_sp {
    font-size: 2.8rem !important;
  }
  .fz-32_sp {
    font-size: 3.2rem !important;
  }
}
.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.ff_racingsans {
  font-family: "Josefin Sans", sans-serif;
}

.lh-12 {
  line-height: 1.2 !important;
}

.lh-15 {
  line-height: 1.5 !important;
}

.lh-20 {
  line-height: 2 !important;
}

.fc-normal {
  color: #1e1c1a;
}

.fc-black {
  color: #1e1c1a !important;
}

.fc-themecolor_01 {
  color: #109a9a;
}

.fc-white {
  color: #ffffff;
}

.fc-white a {
  color: #ffffff;
}

.fc-red {
  color: #f63a3a;
}

.fc-yellow {
  color: #FCCF00;
}

.mgl-0 {
  margin-left: 0px !important;
}

.mgl-15 {
  margin-left: 15px;
}

.mgl-1em {
  margin-left: 1em;
}

.mgr-0 {
  margin-right: 0px !important;
}

.mgr-15 {
  margin-right: 15px;
}

.mgr-1em {
  margin-right: 1em;
}

.mgt-0 {
  margin-top: 0 !important;
}

.mgt-15 {
  margin-top: 15px;
}

.mgt-20 {
  margin-top: 20px;
}

.mgt-30 {
  margin-top: 30px;
}

.mgt-40 {
  margin-top: 40px;
}

.mgt-50 {
  margin-top: 50px;
}

.mgt-75 {
  margin-top: 75px;
}

.mgt-100 {
  margin-top: 100px;
}

.mgb-0 {
  margin-bottom: 0 !important;
}

.mgb-10 {
  margin-bottom: 10px;
}

.mgb-15 {
  margin-bottom: 15px;
}

.mgb-20 {
  margin-bottom: 20px;
}

.mgb-25 {
  margin-bottom: 25px;
}

.mgb-30 {
  margin-bottom: 30px;
}

.mgb-40 {
  margin-bottom: 40px;
}

.mgb-50 {
  margin-bottom: 50px;
}

.mgb-75 {
  margin-bottom: 75px;
}

.mgb-100 {
  margin-bottom: 100px;
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left !important;
}

/*padding*/
.pdt-5 {
  padding-top: 5px;
}

.pdb-5 {
  padding-bottom: 5px;
}

.indent-kome {
  padding-left: 1em;
  text-indent: -1em;
}

.bdrs-15 {
  border-radius: 15px;
}

.bdrs-25 {
  border-radius: 25px;
}

@media screen and (max-width: 600px) {
  .ta-center-600 {
    text-align: center !important;
  }
  .ta-center_sp {
    text-align: center;
  }
  .ta-right_sp {
    text-align: right;
  }
  .ta-left_sp {
    text-align: left;
  }
  .mgt-50_sp {
    margin-top: 50px;
  }
}
/*レスポンシブ改行
-------------------------------*/
.br_480,
.br_600,
.br_768,
.br_767,
.br_1280 {
  display: none;
}

@media screen and (max-width: 1280px) {
  .br_1280 {
    display: inline;
  }
  .br_pconly {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .br_768 {
    display: inline;
  }
  .block-768 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .br_767 {
    display: inline;
  }
  .block-767 {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .block-600 {
    display: block;
  }
  .br_600 {
    display: inline;
  }
}
@media screen and (max-width: 480px) {
  .br_480 {
    display: inline;
  }
}
/*
  背景パターン
---------------------------------------------*/
.bg-white {
  background: #ffffff;
}

.bg-gray {
  background: #eaeaea;
}

.bg-pink {
  background: #fff7f5;
}

.bg-yellow-grad {
  background: linear-gradient(0deg, rgb(245, 186, 58) 0%, rgb(246, 231, 110) 100%);
}

.bg-red-grad {
  background: linear-gradient(0deg, rgb(156, 21, 27) 0%, rgb(223, 67, 24) 52.4%, rgb(237, 185, 93) 100%);
}

.bg-color {
  background: #fbd7c5;
  background: linear-gradient(45deg, rgb(251, 215, 197) 0%, rgb(255, 255, 255) 52.4%, rgb(251, 228, 206) 100%);
}

.bg-shasen {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 5px, rgb(245, 245, 245) 5px, rgb(245, 245, 245) 10px);
}

.bg-shasen_02 {
  background-size: auto auto;
  background-image: repeating-linear-gradient(-50deg, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 9px, rgba(30, 28, 26, 0.1) 5px, rgba(30, 28, 26, 0.1) 10px);
}

.bg-shasen-bold {
  background-size: auto auto;
  background-color: rgb(0, 86, 169);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 15px, rgb(0, 75, 160) 15px, rgb(0, 75, 160) 30px);
}

.bg-hougan {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 14px, rgba(16, 154, 154, 0.1) 16px), linear-gradient(90deg, rgba(255, 255, 255, 0) 14px, rgba(16, 154, 154, 0.1) 16px);
  background-size: 16px 16px;
}

/*rgba(218, 250, 227, 0.6)*/
.bg-dot-naname {
  background-color: #ffffff;
  background-image: radial-gradient(rgba(186, 226, 248, 0.2) 22%, rgba(255, 255, 255, 0) 22%), radial-gradient(rgba(186, 226, 248, 0.2) 22%, rgba(255, 255, 255, 0) 22%);
  background-position: 0 0, 15px 15px;
  background-size: 30px 30px;
}

.bg-dot-hougan {
  background-color: #ffffff;
  background-image: radial-gradient(rgb(230, 230, 230) 1px, rgba(255, 255, 255, 0) 1px);
  background-size: 12px 12px;
}

.bg-gradation {
  background: rgb(108, 168, 97);
  background: linear-gradient(45deg, rgb(108, 168, 97) 0%, rgb(55, 158, 142) 100%);
}

.bg-stripe {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 15px, rgb(235, 202, 14) 15px, rgb(235, 202, 14) 30px);
}

/*
  ボタン
---------------------------------------------*/
a.Btn {
  font-size: 21px;
  font-weight: 600;
  text-decoration-line: none;
  max-width: 480px;
  height: 90px;
  color: #ffffff;
  vertical-align: middle;
  position: relative;
  display: block;
  background: #109a9a;
  border: solid 2px #109a9a;
  margin: auto;
  text-align: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  line-height: 1.3;
  padding-left: 10px;
  padding-right: 35px;
}
a.Btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 11px;
  height: 11px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #ffffff;
  transform: rotate(45deg);
  transition: 0.6s;
}
a.Btn:hover {
  background-color: #ffffff;
  color: #109a9a;
  border: solid 2px #109a9a;
  opacity: 1;
}
a.Btn:hover::after, a.Btn:hover::before {
  border-color: #109a9a;
  transition: 0.6s;
}

a.Btn.btn_red {
  background: #ed614b;
  border: solid 2px #ed614b;
}
a.Btn.btn_red::after {
  border-width: 2px 2px 0 0;
  border-color: #ffffff;
}
a.Btn.btn_red:hover {
  background-color: #ffffff;
  color: #ed614b;
  border: solid 2px #ed614b;
}
a.Btn.btn_red:hover::after, a.Btn.btn_red:hover::before {
  border-color: #ed614b;
}

a.Btn.btn_small {
  font-size: 18px;
  font-weight: 600;
  text-decoration-line: none;
  max-width: 380px;
  height: 60px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  a.Btn {
    font-size: 1.8rem;
    text-align: left;
  }
}
/*
  スクロールアニメーション
    (スクロールしたら表示してほしいところにjs-animationをつける)
---------------------------------------------*/
.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.js-animation.js-ani-nomove {
  transform: translateY(0px);
  transition: all 1.2s;
}
.js-animation.js-ani-nomove.is-show {
  transform: translateY(0px);
}

/*20240321_新スクロールアニメーション*/
.slidein_right.is-show {
  animation: slideInRight 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.slidein_left.is-show {
  animation: slideInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInRight {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */