@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
/*--------color code -------*/
html,
body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
}

.w_base {
  margin: 0 auto;
  max-width: 1000px;
  width: 90vw;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

p {
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  position: relative;
}

.hd {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 auto;
  max-width: 1200px;
  height: 80px;
  min-height: 80px;
}

h1.hd_logo {
  font-family: "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
h1.hd_logo a {
  display: flex;
  align-items: center;
}
h1.hd_logo a img {
  width: 50px;
  height: auto;
}
h1.hd_logo a.site_title {
  width: 250px;
  text-decoration: none;
  color: #000;
  font-size: 1.4rem;
  padding-left: 5px;
  line-height: 1.3;
}

h1.hd_logo-en {
  font-family: "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
h1.hd_logo-en a {
  display: flex;
  align-items: center;
}
h1.hd_logo-en a img {
  width: 50px;
  height: auto;
}
h1.hd_logo-en a.site_title-en {
  display: block;
  width: 250px;
  text-decoration: none;
  color: #000;
  font-size: 1.1rem;
  padding-left: 5px;
  line-height: 1.1;
  letter-spacing: -0.8px;
}
h1.hd_logo-en a.site_title-en span {
  font-size: 0.5vw;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  width: calc(100% - 300px);
}

.nav {
  width: 100%;
  height: 100%;
}

.nav_list {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  font-family: "Noto Sans JP";
}
.nav_list > li {
  display: inline-block;
  width: 100%;
  height: inherit;
}
.nav_list > li > a {
  color: #000;
  padding: 20px 0;
  display: inline-grid;
  width: 100%;
  height: inherit;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  transition: color 0.3s, transform 0.2s;
}
.nav_list > li a:hover {
  color: #f489a6;
  font-weight: 600;
  transform: scale(1.03);
}
.nav_list > li:last-child {
  display: inline-block;
  width: 70%;
  height: inherit;
  font-weight: 600;
}
.nav_list > li a.contact_nav {
  background-color: #f489a6;
  color: #fff;
}
.nav_list > li a.lang_button {
  background-color: #0d7cc2;
  color: #fff;
}

ul.nav_list li:hover ul.sub-menu {
  display: flex;
  animation: Appear 0.3s forwards;
}

.nav_list-en {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  font-family: "Noto Sans JP";
  font-size: 0.9rem;
}
.nav_list-en > li {
  display: inline-block;
  width: 100%;
  height: inherit;
  padding: 0 10px;
}
.nav_list-en > li > a {
  color: #000;
  padding: 20px 0;
  display: inline-grid;
  width: 100%;
  height: inherit;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  transition: color 0.3s, transform 0.2s;
}
.nav_list-en > li a:hover {
  color: #f489a6;
  font-weight: 600;
  transform: scale(1.03);
}
.nav_list-en > li:last-child {
  display: inline-block;
  width: 70%;
  height: inherit;
  font-weight: 600;
}
.nav_list-en > li a.contact_nav {
  background-color: #f489a6;
  color: #fff;
}
.nav_list-en > li a.lang_button {
  background-color: #0d7cc2;
  color: #fff;
}

ul.nav_list li:hover ul.sub-menu {
  display: flex;
  animation: Appear 0.3s forwards;
}

.sub-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  width: 100vw;
  left: 0;
  background-color: #f26e5f;
  padding-left: 33vw;
  flex-wrap: wrap;
  flex-direction: column;
}
.sub-menu span {
  position: absolute;
  left: 10vw;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.sub-menu > li {
  width: 33vw;
}
.sub-menu > li > a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  width: 100%;
  transition: 0.3s;
  padding-left: 1rem;
  transition: color 0.3s, transform 0.2s;
}
.sub-menu > li > a:hover {
  color: #fff;
  background-color: #fdaca3;
}

.sub-menu li:hover .nav_glist {
  display: block;
  animation: Appear 0.3s forwards;
}

@keyframes Appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_glist {
  display: none;
  position: absolute;
  transition: 0.3s;
  width: 34vw;
  right: 0;
  top: 0;
  height: 100%;
  overflow: scroll;
  background-color: #fdaca3;
  overflow-Y: scroll;
  overflow-x: hidden;
}
.nav_glist li {
  width: 34vw;
}
.nav_glist li a {
  color: #fff !important;
  text-decoration: none;
  padding: 1rem 0 1rem 1rem;
  display: block;
  width: 100%;
}
.nav_glist li a:hover {
  background-color: #ac5e5e;
  transform: scale(1.03);
}

/**
.nav_glist::-webkit-scrollbar{

}
**/
.li_has_child > a, .active > a {
  position: relative;
}

.active > a {
  color: #f489a6 !important;
}

.li_has_child > a:hover:before, .active > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #757575;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}

.main {
  order: 1;
  width: 700px;
}

.side {
  order: 2;
  width: 230px;
}
.side h3 {
  background-color: #EEE;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  text-align: center;
}

.side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #CCC;
  color: #111;
  display: block;
  padding: 12px 10px;
  text-decoration: none;
}
.side_nav_list li a:hover, .side_nav_list li a.current {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_wrapper {
  margin-top: auto;
}
.ft_wrapper .ft_innr_con {
  background-color: #ffcfdc;
}
.ft_wrapper .ft_innr_con p.ft_subtitle {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 10px;
}
.ft_wrapper .ft_innr_con p.ft_address {
  font-size: 0.9em;
}
.ft_wrapper .ft_innr_box {
  position: relative;
  padding-top: 50px 0;
  display: flex;
  justify-content: start;
  align-items: center;
}
.ft_wrapper .ft_innr_box figure {
  width: auto;
}
.ft_wrapper .ft_innr_box figure img {
  width: 4vw;
}
.ft_wrapper .ft_innr_box p.ft_title {
  font-size: 1.3em;
  font-weight: bold;
  margin-left: 0.3em;
  line-height: 1.1;
}
.ft_wrapper .ft_innr_box p.ft_title span {
  font-size: 0.8vw;
}
.ft_wrapper .sns_links {
  position: absolute;
  right: 0;
}
.ft_wrapper .sns_links a {
  text-decoration: none;
}
.ft_wrapper .sns_links a img {
  margin-right: 20px;
}
.ft_wrapper .ft_bg_cp {
  background: #6b6b6b;
  color: #fff;
}
.ft_wrapper .ft {
  padding: 10px 0;
}
.ft_wrapper .ft_copy {
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
}
.pt_btn::before, .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt_btn::after {
  height: 7px;
  right: 0;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_main {
  width: 100%;
}

.index_content {
  padding: 50px 0;
}

.index_middle_img {
  text-align: center;
  background-color: #ffbaba;
}

.index_middle_img img {
  display: block;
  margin: 0 auto;
  width: 60%;
  height: auto;
  padding: 10px;
}

.index_slider_bg {
  position: relative;
}
.index_slider_bg .index_title {
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.index_slider_bg .index_title h1 {
  font-size: max(40px, 4vw);
  text-align: left;
  width: 100%;
  font-family: serif;
  color: #ececec;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
  background-color: rgba(116, 116, 116, 0.5);
  padding: 0 30px;
}
.index_slider_bg .index_title h1 span {
  color: #f489a6;
}
.index_slider_bg .index_title-en {
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.index_slider_bg .index_title-en h1 {
  font-size: max(30px, 3vw);
  text-align: left;
  width: 100%;
  font-family: serif;
  color: #ececec;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
  background-color: rgba(116, 116, 116, 0.5);
  padding: 0 30px;
}
.index_slider_bg .index_title-en h1 span {
  color: #f489a6;
}

/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
.index_slider img {
  width: 100%;
  height: 70vh !important;
  max-height: 650px !important;
  -o-object-fit: cover !important;
  object-fit: cover;
  font-family: "object-fit: cover!important;";
  opacity: 0.9;
}

.index_project_h1 {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  font-size: 4em;
  color: #66b4e5;
  margin-bottom: 50px;
}

.index_news_h1 {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  font-size: 4em;
  color: #96e566;
  margin-bottom: 30px;
}

.row_rev {
  flex-direction: row-reverse;
}

.row_rev > .index_text a {
  text-align: right;
}

.a_i_center {
  align-items: center;
}

.index_btn {
  display: block;
  margin: auto;
  position: relative;
  color: #f489a6;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 20px 0;
  width: 300px;
  border: solid 1px #f489a6;
  cursor: pointer;
}
.index_btn:before {
  content: "→";
  font-size: 2em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.index_btn:hover:before {
  right: 10px;
}

.index_con1_bgimg {
  background-image: url(../images/bg-img-pink.jpg);
  background-size: cover;
}

.index_con1 {
  color: #fff;
  text-align: center;
}
.index_con1 > h3 {
  font-weight: 500;
  font-size: 1.7em;
  font-family: "Noto Sans JP";
  text-shadow: 1px 1px 5px #d96167;
}
.index_con1 > h2 {
  font-weight: bold;
  font-size: 2em;
  margin: 20px auto;
  font-size: min(40px, 2.5vw);
  text-shadow: 2px 2px 3px #d96167;
}

.index_con2 {
  position: relative;
}
.index_con2 span {
  position: absolute;
  right: 0;
  font-weight: bold;
  font-size: max(7vw, 80px);
  color: #ffcfdc;
  top: 80px;
  z-index: -1;
}

.index_text h1 {
  position: relative;
  color: #f489a6;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
}
.index_text h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #f489a6;
  bottom: -10px;
}
.index_text h2 {
  font-weight: bold;
  font-size: 2em;
  color: #222;
}
.index_text a {
  display: block;
  color: #f489a6;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 40px;
  transition: 0.3s;
  cursor: pointer;
}
.index_text a:hover {
  transform: translateX(10px);
}

.index_con3_bg {
  background-color: #ffcfdc;
}

.index_con3 {
  position: relative;
  padding: 15em 0 7em;
}
.index_con3 span {
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: max(7vw, 80px);
  color: #fff;
  top: 40px;
  z-index: 0;
}
.index_con3 .con3_fig {
  position: relative;
  z-index: 1;
  padding: 50px 30px 30px;
}

h2[class^=h2_num] {
  position: relative;
}
h2[class^=h2_num] > span {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 3em;
  color: #ffcfdc;
  position: absolute;
  top: -100px;
  z-index: 0;
  left: 0;
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_list .news_list_item {
  width: 30%;
  margin-bottom: 2rem;
}
.news_list .news_list_item > a {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.news_list .news_list_item > a img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
  border: 1px solid #b3b3b3;
}
.news_list .news_list_item > a img:hover {
  transform: scale(1.2);
}
.news_list .news_list_item > span {
  font-size: 0.9rem;
  color: #f489a6;
  font-weight: bold;
  display: block;
  margin: 0.9em 0;
}
.news_list .news_list_item > p {
  font-size: 1rem;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_main {
  height: 200px;
  background: url(../images/bg-img-pink.jpg);
  display: flex;
  align-items: center;
}
.page_main h1 {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: max(4vw, 50px);
  color: rgba(255, 255, 255, 0.35);
}

.page {
  margin: 100px auto;
}
.page h1 {
  display: inline-block;
  position: relative;
  color: #f489a6;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
}
.page h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #f489a6;
  bottom: -10px;
}
.page h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1em;
}
.page h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.page h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h6 {
  font-weight: bold;
  margin-bottom: 1em;
}
.page p {
  line-height: 2.2rem;
  margin: 1em 0;
  text-align: justify;
}
.page figure img {
  width: 100%;
}
.page {
  /*---------- About Us 学長あいさつ ----------*/
}
.page .greeting {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row-reverse;
  margin-top: 40px;
}
.page .greeting_text {
  flex: 1 1 60%;
}
.page .greeting_text .atogaki_name {
  margin-top: 40px;
  line-height: 1.6;
}
.page .greeting figure {
  flex: 0 0 400px;
  padding-right: 20px;
  margin-top: 25px;
}
.page .greeting figure img.pc_only {
  width: 100%;
  height: auto;
  display: block;
}
.page .greeting figure img.sp_only {
  display: none;
}
.page {
  /*---------- features 教育コース紹介 ----------*/
}
.page .intro_course img {
  max-width: 100%;
  height: auto;
}
.page .intro_course .course_con h3 {
  color: #e56688;
  background: url(../images/common/headlineIcon.gif) no-repeat 5px 10px;
  border-bottom: 1px solid #e56688;
  margin: 25px 0 10px;
  padding: 0 0 5px 22px;
}
.page .intro_course .course_con h4 {
  border: 1px solid #ffd0b3;
  background-color: #ffd0b3;
  color: #222;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 10px;
  margin-bottom: 0;
  font-size: 1rem;
}
.page .intro_course .course_con p {
  margin: 0.5em 0 2em 0;
  line-height: 1.7;
}
.page .fea-course-table {
  width: 50%;
  display: block;
  margin: 0 auto;
}
.page .fea-course-table a img:hover {
  filter: brightness(0.8);
  transition: 0.3s;
}
.page {
  /*---------- project 教育コース紹介 ----------*/
}
.page .project .txt-img-2column {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-evenly;
}
.page .project .txt-img-2column .column_txt {
  max-width: 50%;
  margin-top: 10px;
  line-height: 1.8;
}
.page .project .txt-img-2column .column_image {
  max-width: 50%;
  padding: 15px 10px 0;
  background-color: #fff;
  text-align: center;
}
.page .project .txt-img-2column .column_image img {
  display: block;
  margin: 0 auto;
}
.page .project .txt-img-2column .column_image figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 100;
  color: #555;
  line-height: 1.4;
}
.page .project .project-con-ttl {
  position: relative;
  padding-left: 3em;
}
.page .project .project-con-ttl::before {
  content: attr(data-number);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #ffabc1;
  font-size: 50px;
}
.page .project .project-con-ttl::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #ff8cab;
}
.page .project h2.project-con-subttl {
  padding: 0.1em 0.5em;
  border-left: 5px solid #ffabc1;
  margin-top: 50px;
  margin-bottom: 0;
}
.page .project h3 {
  color: #e56688;
  background: url(../images/common/entryTitleIcon.gif) no-repeat 2px 8px;
  border-bottom: 1px solid #e56688;
  margin: 15px 0 10px;
  padding: 0 0 5px 30px;
}
.page .project h4 {
  color: #e56688;
  background: url(../images/common/headlineIcon.gif) no-repeat 5px 7px;
  border-bottom: 1px solid #e56688;
  margin: 25px 0 20px;
  padding: 0 0 5px 22px;
}
.page .project h5 {
  color: #df587c;
}
.page .project h6 {
  border: 1px solid #ffd0b3;
  background-color: #ffd0b3;
  color: #222;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 10px;
  margin: 25px 0 0 0;
  font-family: system-ui;
  font-size: 1.1rem;
}
.page .project p {
  line-height: 1.8;
}
.page .project ul li,
.page .project ol li,
.page .project ul li a,
.page .project ol li a {
  font-family: "Noto Sans JP";
  font-weight: normal !important;
  font-size: 1.2rem;
}
.page .project ol {
  padding-left: 20px;
}
.page .project ol li {
  text-indent: 1rem;
}
.page .project ul {
  padding-left: 20px;
}
.page .project ul li {
  list-style-type: disc;
}
.page .project .project-con-1 ul {
  margin: 40px 0 30px;
}
.page .project .project-con-1 ul li a {
  font-size: 16px;
}
.page .project .project-con-1 .policy-area {
  padding: 0 10px;
}
.page .project .project-con-2 {
  margin-top: 80px;
}
.page .project .project-con-3 {
  margin-top: 80px;
}
.page .project .project-con-3 .project-con-3-img {
  width: 70%;
  display: block;
  margin: 0 auto;
}
.page .project .project-con-3 .txt-img-2column {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: flex-start;
}
.page .project .project-con-3 .txt-img-2column .column_txt64 {
  flex: 0 0 64%;
  margin-top: 10px;
  line-height: 1.8;
}
.page .project .project-con-3 .txt-img-2column .column_image35 {
  flex: 0 0 35%;
  padding: 10px;
  background-color: #fff;
  overflow: hidden;
}
.page .project .project-con-3 .txt-img-2column .column_image35 img {
  display: block;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** news_arhive
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.archive_main {
  height: 200px;
  background: url(../images/bg-img-pink.jpg);
  display: flex;
  align-items: center;
}
.archive_main h1 {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: max(4vw, 50px);
  color: rgba(255, 255, 255, 0.35);
}

#news {
  margin: 100px auto;
}
#news h1 {
  display: inline-block;
  position: relative;
  color: #f489a6;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
}
#news h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #f489a6;
  bottom: -10px;
}
#news .news_list {
  max-height: none;
  overflow-y: unset;
  border: none;
}
#news .news_list .news_list_item {
  width: 100%;
  display: flex;
  gap: 2em;
  padding: 0 1em;
  border-bottom: 1px dashed #ededed;
  align-items: center;
  margin-bottom: 1rem;
}
#news .news_list .news_list_item .news_text span {
  font-size: 0.9rem;
  color: #f489a6;
}
#news .news_list .news_list_item .news_text a.news_title {
  font-size: 1.1rem;
  max-width: calc(100% - 62px - 1em);
  aspect-ratio: auto;
}

/*---------- news_con お知らせ記事 ----------*/
.news_con {
  margin-bottom: 30px;
}
.news_con .tbl_noborder {
  font-size: 1.2rem;
}
.news_con .tbl_noborder td {
  font-family: "Noto Sans JP";
  font-weight: normal;
  padding: 5px 0;
}
.news_con .tbl_noborder td:first-child {
  padding-right: 10px;
}
.news_con figure {
  text-align: center;
  margin-top: 40px;
}
.news_con figure img {
  width: 70%; /* ← 中くらい */
  max-width: 600px; /* PCで大きくなりすぎ防止 */
  height: auto;
  display: inline-block;
}
.news_con figure:hover {
  filter: brightness(0.8);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}/*# sourceMappingURL=style.css.map */