@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');


.ja-tight {
  /* どちらか／両方 */
  font-variant-east-asian: proportional-width;
  /* "pwid" 相当 */
  font-feature-settings: "palt" 1;
  /* 句読点の詰め */
}

/* CSS Document */
#mark971 {
  display: none
}

@media (min-width:970px) {
  #mark971 {
    display: block;
    width: 100%
  }
}

#mark970 {
  display: none
}

@media (max-width:970px) {
  #mark970 {
    display: block;
    width: 100%
  }
}

#mark767 {
  display: none
}

@media (max-width:767px) {
  #mark767 {
    display: block;
    width: 100%
  }
}

#mark640 {
  display: none
}

@media (max-width:640px) {
  #mark640 {
    display: block;
    width: 100%
  }
}

#mark480 {
  display: none
}

@media (max-width:480px) {
  #mark640 {
    display: block;
    width: 100%
  }
}

.sp1024 {
  display: none !important
}

@media(max-width:1024px) {
  .pc1024 {
    display: none !important
  }

  .sp1024 {
    display: block !important
  }
}

.sp97 {
  display: none !important
}

@media(max-width:970px) {
  .pc97 {
    display: none !important
  }

  .sp97 {
    display: block !important
  }
}

.sp76 {
  display: none !important
}

@media(max-width:767px) {
  .pc76 {
    display: none !important
  }

  .sp76 {
    display: block !important
  }
}

.sp {
  display: none !important
}

@media(max-width:640px) {
  .pc {
    display: none !important
  }

  .sp {
    display: block !important
  }
}

.sp48 {
  display: none !important
}

@media(max-width:480px) {
  .pc48 {
    display: none !important
  }

  .sp48 {
    display: block !important
  }
}

img {
  width: 100%;
  height: auto;
}

img.webadmin2img {
  max-width: 230px;
  display: inline;
}

p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.iifuropage h1,
.iifuropage h2,
.iifuropage h3,
.iifuropage h4,
.iifuropage p {
  font-family: 'Noto Sans JP', sans-serif;
}

body.pagewide #wrap .breadcrumbs,
body.pagewide .side-box,
body.pagewide .navbar {
  display: none;
}

body {
  /*  background-color: #fdfbf0;*/
  background-color: #fff;
  background-position: top center;
  background-repeat: repeat;
  color: #d4d4d4;
  font-family: 'Noto Sans JP', sans-serif;
}

/* リセットスタイル */
/* リセットスタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.iifuro-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}

.iifuro-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 10px;
}

/* サイトロゴの左側にスペースを追加 */
.iifuro-logo {
  margin-left: 20px;
}

.iifuro-logo img {
  width: 17.63vw;
  height: auto;
}

/* 会社ロゴの右側にスペースを追加 */
.iifuro-company-logo {
  margin-right: 20px;
}

.iifuro-company-logo img {
  width: 2.63vw;
  height: auto;
}

.iifuro-nav {
  margin-left: 20px;
}

.iifuro-nav-list {
  list-style: none;
  display: flex;
}

.iifuro-nav-list li {
  margin: 0 10px;
}

@media screen and (max-width:970px) {
  .iifuro-nav-list li {
    margin: 0 0;
  }
}

.iifuro-nav-list a {
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  position: relative;
  padding: 5px 15px;
  overflow: hidden;
  font-size: 1.2vw;
  /* vwでフォントサイズを指定 */
}

/* ホバー時の背景と半円形 */
.iifuro-nav-list a::before {
  content: '';
  position: absolute;
  left: -10px;
  right: -10px;
  top: 0;
  bottom: 0;
  background-color: #94e3e8;
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
  z-index: -1;
}

.iifuro-nav-list a:hover::before {
  transform: scaleX(1);
}

.iifuro-hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 20px;
}

.iifuro-hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 4px;
}

/* 既存のスタイルは省略 */
/* 共通部分でCSS変数を定義 */
:root {
  --header-height: 60px;
  /* 初期値を設定 */
}

/* メディアクエリ：767px以下の場合 */
@media screen and (max-width: 767px) {
  .iifuro-header-content {
    justify-content: flex-start;
    padding: 10px;
  }

  .iifuro-hamburger-menu {
    display: flex;
    margin-left: 15px;
  }

  .iifuro-hamburger-menu span {
    width: 4.62vw;
    width: 6vw;
    height: 3px;
    background-color: #19b7c9;
    margin: 4px 0;
  }

  /* サイトロゴをハンバーガーメニューに寄せる */
  .iifuro-logo {
    margin-left: 10px;
  }

  .iifuro-logo img {
    width: 40.74vw;
    height: auto;
  }

  .iifuro-company-logo {
    margin-left: auto;
    margin-right: 15px;
  }

  .iifuro-company-logo img {
    width: 6.01vw;
    height: auto;
  }

  /* .iifuro-navのmargin-leftを0pxに修正 */
  .iifuro-nav {
    position: fixed;
    top: var(--header-height);
    /* CSS変数を使用 */
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    margin-left: 0px;
    /* 修正 */
  }

  .iifuro-nav.active {
    max-height: calc(100% - var(--header-height));
    opacity: 1;
    visibility: visible;
  }

  .iifuro-nav-list {
    flex-direction: column;
    padding: 20px;
  }

  .iifuro-nav-list li {
    margin: 15px 0;
  }

  /* .iifuro-nav-list aのfont-sizeを3.5vwに設定 */
  .iifuro-nav-list a {
    font-size: 3.5vw;
    /* 修正 */
  }
}

.blocks {
  background-color: #fffef7;
  overflow: hidden;
}

.box {
  margin: 0 auto;
  text-align: center;
}

/* box first*/
.box.first {
  margin-top: 45px;
  overflow-x: hidden;
}

.box.first img.title {
  width: 36.32vw;
  height: auto;
}

.box.first p {
  font-size: 1.5vw;
  line-height: 2.0;
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-weight: 400;
  color: #231815;
  margin-top: 45px;
}

.image-box {
  margin: 25px auto auto;
  text-align: center;
}

.image-box img {
  width: 55.85vw;
  height: auto;
}

@media screen and (max-width: 767px) {
  .box.first {
    margin-top: 60px;
  }

  .box.first img.title {
    width: 83.33vw;
    height: auto;
  }

  .box.first p {
    font-size: 3.5vw;
  }

  .image-box img {
    width: 100vw;
    height: auto;
  }
}

/* sectiontitle共通 */
.iifuro-title-section {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.iifuro-title-left,
.iifuro-title-right {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.iifuro-title-left {
  justify-content: flex-end;
}

.iifuro-title-right {
  justify-content: flex-start;
}

.iifuro-title-repeat {
  flex-grow: 1;
  background-image: url('/iifuro2025/image/tile_repeat.png');
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  height: 3.87vw;
}

.iifuro-title-repeatR {
  flex-grow: 1;
  background-image: url('/iifuro2025/image/tile_repeat.png');
  background-repeat: repeat-x;
  background-position: left center;
  background-size: auto 100%;
  /* 高さにフィット */
  height: 3.87vw;
  /* 高さを指定 */
}

.iifuro-title-repeatL {
  flex-grow: 1;
  background-image: url('/iifuro2025/image/tile_repeat.png');
  background-repeat: repeat-x;
  background-position: right center;
  background-size: auto 100%;
  /* 高さにフィット */
  height: 3.87vw;
  /* 高さを指定 */
}

.iifuro-title-end {
  width: auto;
  /* 幅を自動に設定 */
  height: 3.87vw;
  /* 高さを指定 */
}

.iifuro-title-image picture,
.iifuro-title-image img {
  width: 28.12vw;
  height: auto;
}

@media screen and (max-width: 767px) {
  .iifuro-title-end {
    height: 6.18vw;
    /* 高さを指定 */
  }

  .iifuro-title-repeatL,
  .iifuro-title-repeatR,
  .iifuro-title-repeat {
    height: 6.18vw;
    /* 高さを一致させる */
  }

  .iifuro-title-image picture,
  .iifuro-title-image img {
    width: 68.05vw;
    height: auto;
  }
}

/* 

.box.second

*/
.box.second {
  margin-top: 10vw;
}

.box.second:last-of-type {
  padding-bottom: 5vw;
}

.box.second .inner {
  max-width: 55.85vw;
  margin: 0 auto;
  text-align: center;
  padding-top: 5vw;
}

.iifuro-content-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1em;
  /* 行間の調整 */
}

.iifuro-content-title {
  width: 11.21vw;
  color: #fff;
  background-color: #19b7c9;
  text-align: center;
  border-radius: 50px;
  /* 両サイドを半円に */
  padding: 0.125em 0.15em 0.15em;
  font-size: 1.2vw;
  /* vwでフォントサイズを指定 */
  box-sizing: border-box;
}

.iifuro-content-text {
  width: 44.64vw;
  color: #231815;
  text-align: left;
  margin-left: 1em;
  /* 左側にスペースを追加 */
  font-size: 1.2vw;
  /* vwでフォントサイズを指定 */
  box-sizing: border-box;
  padding-top: 0.15em;
}

.iifuro-day-note {
  font-size: 85%;
  letter-spacing: -0.05em;
  display: block;
  line-height: 1.5;
  margin-top: 0.1vw;
}




@media screen and (max-width: 767px) {
  .box.second {
    margin-top: 15vw;
  }

  .box.second.live {
    margin-top: 25vw;
  }

  .box.second.iifuroevent {
    margin-top: 12.5vw;
  }


  .box.second:last-of-type {
    padding-bottom: 10vw;
  }

  .box.second .inner {
    max-width: 87.96vw;
    padding-top: 5vw;
  }

  .iifuro-content-title {
    width: 30vw;
    font-size: 3.5vw;
    /* フォントサイズを調整 */
    padding: 0.1em;
  }

  .iifuro-content-text {
    width: 57.96vw;
    font-size: 3.4vw;
    /* フォントサイズを調整 */
    margin-left: 1em;
    padding-top: 0;
  }

  .iifuro-day-note {
    margin-top: 1vw;
  }

}

/* 

.スクエアのレイアウト

*/
/* スクエアのコンテナを中央揃え */
.square-container {
  display: flex;
  justify-content: center;
  margin-top: 2em;
  /* 必要に応じて調整 */
}

.square-container+.square-container {
  margin-top: 5em;
}

.live .square-container:last-of-type {
  margin-bottom: 8em;
}

/* スクエアのスタイル */
.square {
  position: relative;
  width: 55.85vw;
  background-color: #daeff0;
  border-radius: 20px;
  padding: 3vw 3.5vw 3.5vw;
  box-sizing: border-box;
}

.square.half {
  width: 26.95vw;
  padding: 2vw 1.5vw;
}

/* オーバーレイする画像のスタイル */
.icon-right-top,
.icon-right-top-2,
.icon-right-top-3,
.icon-left-top,
.icon-left-bottom,
.icon-left-bottom-2-1,
.icon-right-bottom-2-1,
.icon-left-bottom-2,
.icon-right-bottom-2 {
  position: absolute;
}

.icon-right-top-3,
.icon-right-top-2,
.icon-right-top {
  top: -4vw;
  /* 上に半分飛び出す */
  right: 1.5vw;
  /* 右側角丸部分にかぶらないように調整 */
  width: 7.96vw;
  z-index: 5;
}

.icon-left-top {
  top: -2vw;
  /* 上に少し飛び出す */
  left: 3vw;
  /* 左側角丸部分にかぶらないように調整 */
  width: 4.17vw;
}

.icon-left-bottom {
  bottom: -3vw;
  left: calc(50% - 4vw);
  width: 7.96vw;
}

.icon-left-bottom-2-1 {
  bottom: -3.5vw;
  left: calc(50% - 16vw);
  width: 6.96vw;
}

.icon-right-bottom-2-1 {
  bottom: -4.5vw;
  left: calc(50% - -11vw);
  width: 6.96vw;
}

.icon-left-bottom-2 {
  bottom: -1.5vw;
  left: calc(50% - 16vw);
  width: 6.96vw;
}

.icon-right-bottom-2 {
  bottom: -3.5vw;
  left: calc(50% - -15vw);
  width: 6.96vw;
}

/* スクエア内のコンテンツ */
.square-content {
  position: relative;
  z-index: 1;
  /* オーバーレイする画像の下に潜らないように */
}

/* タイトルスタイル */
.square-title {
  background-color: #19b7c9;
  color: #fff;
  text-align: center;
  padding: 0.1em;
  border-radius: 50px;
  font-size: 1.35vw;
  margin: 0 auto 0.5em;
  width: 32vw;
  padding: 0.1vw 0 0.15vw;
}

/* タイトルスタイル2 
.square-title.wplus{
    width: 65vw;
    
}
*/
/* サブタイトルスタイル */
.square-subtitle {
  color: #19a8c1;
  text-align: center;
  font-size: 1.35vw;
  margin-bottom: 1em;
}

/* テキストスタイル */
.square-text p {
  color: #000;
  text-align: left;
  font-size: 1.2vw;
  line-height: 1.65;
  margin-bottom: 2em;
}

/* 画像とキャプションのスタイル */
.square-images {
  --gap: 2vw;
  /* 真ん中のすき間（お好みで調整可） */
  display: flex;
  justify-content: center;
  /* 両端に張らず中央寄せ */
  gap: var(--gap);
  /* 真ん中のすき間を常に確保 */
  flex-wrap: nowrap;
  /* ← 縦並び（折返し）を禁止 */
}

.square-image-item {
  flex: 0 0 calc((100% - var(--gap)) / 2);
  /* 2等分からギャップ分を差し引いて幅計算 */
  box-sizing: border-box;
  text-align: center;
}

.square-image-item a {
  text-decoration: none;
}

.square-image-item img {
  width: 100%;
  height: auto;
}


.image-caption {
  margin-top: 0.5em;
  font-size: 1vw;
  color: #231815;
}

.image-caption .caption-title {
  color: #19a8c1;
  font-weight: bold;
  font-size: 1.2vw;
}

.image-caption .caption-title span {
  font-size: 1.0vw;
}









/* メディアクエリ（767px以下の場合） */
@media screen and (max-width: 767px) {
  .square {
    width: 87.96vw;
    padding: 1vw 5vw 1.5vw;
  }

  .icon-right-top {
    width: 16.61vw;
    top: -2vw;
    right: 5vw;
  }

  .icon-right-top-2 {
    width: 16.61vw;
    top: -5vw;
    right: 5vw;
  }

  .icon-right-top-3 {
    width: 16.61vw;
    top: -8vw;
    right: -8vw;
  }

  .icon-left-top {
    width: 7.55vw;
    top: -3vw;
  }

  .icon-left-bottom {
    width: 18.94vw;
    bottom: -6vw;
  }

  .icon-left-bottom-2-1 {
    bottom: -6.5vw;
    left: calc(50% - 20vw);
    width: 12.96vw;
  }

  .icon-right-bottom-2-1 {
    bottom: -8.5vw;
    left: calc(50% - -15vw);
    width: 12.96vw;
  }

  .icon-left-bottom-2 {
    bottom: -3.5vw;
    left: calc(50% - 27vw);
    width: 15.02vw;
  }

  .icon-right-bottom-2 {
    bottom: -10vw;
    left: calc(50% - -20vw);
    width: 15vw;
  }

  .square-title {
    font-size: 4vw;
    width: 50vw;
    line-height: 1.2;
    padding: 0.5em 0.1em;
    margin: 0.65em auto 0.5em;
  }

  /* タイトルスタイル2 */
  .square-title.wplus {
    width: calc(50vw + 15vw);
  }

  .square-subtitle {
    font-size: 3.5vw;
  }

  .workshop .square-subtitle {
    width: 65vw;
    margin: 0 auto 3vw;

  }

  .live .square-subtitle {
    width: 65vw;
    margin: 0 auto 3vw;

  }

  .square-text p {
    font-size: 3.5vw;
    text-align: justify;
  }



  .badge-icon-100 {
    width: 16.61vw;
  }

  /* 追加：スマホ時の横並びレイアウト */
  .square-text.detail {
    display: flex;
    align-items: flex-start;
    gap: 1.5vw;
  }

  .square-text.detail .badge-icon-100 {
    flex: 0 0 auto;
    /* 画像の“いまの幅”を尊重して固定 */
    height: auto;
    display: block;
    /* 行のズレ防止 */
  }

  .square-text.detail p {
    flex: 1 1 auto;
    /* テキストを右側に広げる */
    margin: 0 0 2em;
    /* 不要な余白をリセット（必要なら調整） */
    text-align: left;
    /* 左揃え維持 */
  }


  .square-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .square-image-item {
    width: 37.5vw;
    width: 38.5vw;
    margin-bottom: 1em;
  }

  /*    
.square-image-item img {

    max-width: 275px;
}
*/
  /* 画像の並びを変更
  .square-image-item:nth-child(3) {
    width: 80vw;
  }
     */
  .image-caption {
    font-size: 3vw;
  }

  .image-caption .caption-title {
    font-size: 3.2vw;
  }

  .image-caption .caption-title span {
    font-size: 3.0vw;
  }


}




/* ================================

   ================================ */


.iifuropage .workshop .square-subtitle-box,
.iifuropage .live .square-subtitle-box {
  width: 30vw;
  text-align: center;
  margin: 0 auto;
}

.iifuropage .workshop .square-subtitle,
.iifuropage .live .square-subtitle {
  text-align: left;
}

.iifuropage .workshop .square-subtitle span,
.iifuropage .live .square-subtitle span {
  padding-left: 1.35vw;
}

.iifuropage .workshop .badge-line {
  margin: 0.5em 0 1em;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}

/* SP（～767px） */
@media screen and (max-width: 767px) {

  .iifuropage .workshop .square-subtitle-box,
  .iifuropage .live .square-subtitle-box {
    width: 80vw;
  }

  .iifuropage .workshop .square-subtitle span,
  .iifuropage .live .square-subtitle span {
    padding-left: 3.35vw;
  }
}


















/* 

event iifuroevent


     */
.iifuro-eventbox {
  margin-top: 1vw;
  width: 55.85vw;
  position: relative;
}

.iifuro-event-title {
  background-color: #19b7c9;
  color: #fff;
  text-align: center;
  padding: 0.1vw 0.1vw 0.15vw;
  border-radius: 50px;
  font-size: 1.35vw;
  margin: 0 auto 0.5em;
  width: 35vw;
}

.iifuro-event-subtitle {
  color: #19a8c1;
  text-align: center;
  font-size: 1.35vw;
  margin-bottom: 1em;
}

/* eventタイトルスタイル */
.event-title {
  color: #19a8c1;
  text-align: center;
  font-size: 1.5vw;
  margin-bottom: 0.25em;
}

/* eventサブタイトルスタイル */
.event-sub-title {
  background-color: #19b7c9;
  color: #fff;
  text-align: center;
  padding: 0.05vw 0.1vw 0.15vw;
  border-radius: 50px;
  margin: 0 auto 0.5em;
  width: 10vw;
  font-size: 1vw;
}

.iifuroevent .square-container {
  justify-content: space-between;
}

/* 画像とキャプションのスタイル */
.event-images {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  flex-direction: column;
}

.event-image-item {
  text-align: center;

}

.event-image-item a {
  text-decoration: none;
}

.event-image-item img {
  width: 100%;
  height: auto;
}

/* テキストスタイル */
.event-text p {
  color: #000;
  text-align: left;
  font-size: 1.2vw;
  line-height: 1.65;
  margin-bottom: 2em;
}

.event-image-caption {
  padding: 1vw 0.95vw;
  font-size: 1vw;
  color: #000;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .iifuro-eventbox {
    margin: 5vw auto 0;
    text-align: center;
    /*    
    margin-top: 3vw;
    width: 55.85vw;
    position: relative;
    
    */
    width: 67vw;
  }

  .iifuro-event-title {
    padding: 1.5vw;
    margin: 0 auto 0.5em;
    font-size: 3.79vw;
    width: 67vw;
  }

  .iifuro-event-subtitle {
    color: #19a8c1;
    text-align: center;
    font-size: 3.42vw;
    margin-bottom: 1em;
  }

  .iifuroevent .square-container {
    justify-content: space-between;
    flex-direction: column;
  }

  .iifuroevent .square-container+.square-container {
    margin-top: 3vw;
  }

  .event-title {
    font-size: 4.1vw;
  }

  /* eventサブタイトルスタイル */
  .event-sub-title {
    font-size: 4vw;
    display: inline-block;
    width: auto;
    padding: 0.1em 3vw;
    margin-bottom: 3vw;
  }

  .square.half {
    width: 100%;
    padding: 2vw 3.5vw;
    margin-bottom: 4vw;
  }

  .square.half+.square.half {
    margin-top: 3vw;
  }

  /* 画像とキャプションのスタイル */
  .event-images {
    display: block;
  }

  .event-image-caption {
    padding: 1.5vw 2.5vw 2.5vw;
    font-size: 3vw;
  }
}

/* 

.box.third

*/
.sitebottom {
  background-color: #FFF;
  width: 100vw;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  padding-top: 5vw;
  padding-bottom: 2.5vw;
}

.sitebottomlogobox img {
  width: 14.17vw;
  height: auto;
}

.sitebottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.sponsor,
.cooperation {
  font-size: 1vw;
  /* フォントサイズをvwで設定 */
  margin-top: 1vw;
  color: #000;
}

.cooperation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw;
  /* 協力企業間のスペース */
}

.cooperation span {
  white-space: nowrap;
  /* テキストの折り返しを防止 */
}

@media screen and (max-width: 767px) {
  .sitebottomlogobox img {
    width: 49.72vw;
    height: auto;
  }

  .sponsor,
  .cooperation {
    font-size: 3vw;
    /* フォントサイズを調整 */
    margin-top: 2vw;
  }

  .cooperation {
    flex-direction: column;
    gap: 1.5vw;
    /* 縦並び時のスペース */
  }
}