@charset "UTF-8";
body {
  font-family: "Roboto", "Zen Kaku Gothic New", "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
}

h1 {
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #024C9A;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.25rem, 1.205rem + 0.23vw, 1.375rem);
  margin-bottom: 16px;
}

p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

summary {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

span {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

.disable {
  display: none;
}

.sec-gap {
  padding: 100px min(5vw, 32px) 80px;
}

.contents-area--l {
  width: min(100%, 1440px);
  margin-inline: auto;
}
.contents-area--m {
  width: min(100%, 1200px);
  margin-inline: auto;
}
.contents-area--s {
  width: min(100%, 800px);
  margin-inline: auto;
}

.aspect--landscape {
  aspect-ratio: 1.7777777778;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
==============
svg-icon
==============
*/
.arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  bottom: 16px;
  fill: #699DCC;
}

.migration .arrow {
  fill: #5A9900;
}

.icon-link {
  display: inline-block;
  margin-left: 8px;
  width: 16px;
  height: 16px;
  fill: #fff;
}

/*
==============
ヘッダー
==============
*/
.header {
  width: 100%;
  height: 100px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header__inner {
  width: 100%;
  height: inherit;
  margin-inline: auto;
  padding-inline: min(5vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: ". logo hamburger";
  place-content: center;
  place-items: center;
}

.logo {
  width: 240px;
  height: 50px;
  grid-area: logo;
}

.hamburger {
  width: 30px;
  height: 30px;
  grid-area: hamburger;
  justify-self: end;
  display: grid;
  place-content: center;
  row-gap: 8px;
  z-index: 999;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: inherit;
  height: 2px;
  background-color: #699DCC;
  transition: transform 300ms ease;
}
.hamburger.active span {
  background: #fff;
}
.hamburger.active span:first-child {
  transform: rotate(45deg) translate(4px, 10px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:last-child {
  transform: rotate(-45deg) translate(4px, -10px);
}

.g-nav {
  transform: translateX(300px);
  width: 300px;
  height: 100vh;
  background-color: #024C9A;
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 300ms ease;
}
.g-nav__inner {
  margin-top: 100px;
}
.g-nav.active {
  transform: translateX(0);
}

.nav__link {
  width: 100%;
  padding: 1rem 0 1rem 2rem;
  margin-bottom: 20px;
  font-weight: 600;
  transition: all 300ms;
  color: #fff;
  display: block;
}
.nav__link:hover {
  background-color: #fff;
  color: #024C9A;
}
.nav__link:hover .icon-link {
  fill: #024C9A;
}

/*
==============
kv
==============
*/
.kv {
  width: 100%;
  height: 640px;
  position: relative;
  margin-top: 100px;
}
.kv-title {
  width: min(100%, 480px);
  height: inherit;
  background-color: #699DCC;
  display: grid;
  row-gap: 16px;
  place-content: center;
  place-items: center;
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(50%, 0);
  z-index: 10;
}
.kv-title img {
  width: 80%;
}
.kv-title img:first-child {
  grid-row: 2/3;
}
.kv-title img:last-child {
  grid-row: 3/4;
}
@media (width < 648px) {
  .kv-title {
    width: 100%;
  }
}

.swiper {
  display: block;
  width: inherit;
  height: inherit;
}
.swiper img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media (width < 648px) {
  .swiper {
    display: none;
  }
}

/*
==============
はじめに
==============
*/
.prologue {
  width: min(100%, 560px);
  margin-inline: auto;
  margin-bottom: 80px;
}
.prologue h2 {
  text-align: center;
}
.prologue p:last-child {
  margin-bottom: 40px;
}

.sec__ttl {
  color: #024C9A;
}
.sec__ttl::before {
  content: "";
  width: 20px;
  height: 3px;
  display: inline-block;
  margin-right: 16px;
  background-color: #024C9A;
  vertical-align: middle;
}

.form-btn a {
  width: min(100%, 320px);
  display: grid;
  place-self: center;
  font-weight: 700;
  border-radius: 100px;
  padding: 1rem 2rem;
  margin-top: 32px;
  background-color: #FFEC81;
  box-shadow: 0 8px 0 -2px rgb(255, 195, 0);
  color: #000;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  text-align: center;
}
.form-btn a:hover {
  background-color: color-mix(in srgb, #FFEC81, white 40%);
  color: color-mix(in srgb, #000, white 40%);
}
.form-btn a:active {
  box-shadow: none;
  transform: translateY(2px);
}

/*
==============
参加会社一覧
==============
*/
.corp-gallery {
  width: 100%;
  background: rgba(255, 255, 255, 0.5) url(../../images/iefes/bg_pattern.png) space;
}

.gallery__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  width: min(100%, 424px);
  height: 128px;
  background-color: #fff;
  border-radius: 10px;
  justify-self: center;
}
.card__link {
  width: inherit;
  height: inherit;
  display: grid;
  grid-template-columns: 2fr 3fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.card__body {
  width: inherit;
  height: inherit;
  padding-inline: 16px;
  position: relative;
  display: grid;
  align-content: center;
}

.corp__img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 0 0 10px;
}
.corp__area {
  color: #699DCC;
}
.corp__name {
  font-weight: bold;
}

/*
==============
参加者特典
==============
*/
.flex-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (width < 668px) {
  .flex-container {
    display: block;
  }
}

.box {
  width: 100%;
  padding: 32px;
  background-color: #024C9A;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  border-radius: 10px;
}
@media (width < 990px) {
  .box {
    display: block;
  }
  .box img {
    margin-bottom: 24px;
  }
}
@media (width < 668px) {
  .box:first-child {
    margin-bottom: 24px;
  }
}
.box__image {
  width: min(100%, 280px);
  display: grid;
  place-items: center;
}
.box h3 {
  text-align: center;
  padding-bottom: 8px;
  border-bottom: solid 1px #fff;
}
.box p, .box span {
  padding-inline: 8px;
}
.box span {
  display: block;
  color: #FFC300;
}

/*
==================
ステージプログラム
==================
*/
.program {
  width: 100%;
}
.program__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-content: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.program .wrapper:first-child {
  width: min(100%, 480px);
  display: grid;
  place-self: center;
  justify-self: end;
}
.program .wrapper span {
  color: #024C9A;
  padding-left: 0.5rem;
}

@media (width < 880px) {
  .program__inner {
    display: block;
  }
  .program .wrapper:first-child {
    justify-self: center;
  }
  .program .wrapper:last-child {
    display: grid;
    place-content: center;
  }
}
.time-table {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
.time-table tr {
  display: grid;
  grid-template-columns: 7rem auto;
}
.time-table th, .time-table td {
  border-bottom: 2px dotted #9E9E9E;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
}
.time-table span {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  padding-right: 0.5rem;
  color: #024C9A;
}

/*
==============
移住相談会
==============
*/
.migration {
  width: 100%;
  -webkit-clip-path: polygon(0 calc(0% + 5vw), 100% 0, 100% calc(100% - 5vw), 0 100%);
          clip-path: polygon(0 calc(0% + 5vw), 100% 0, 100% calc(100% - 5vw), 0 100%);
  background: url(../../images/iefes/bg.jpg) no-repeat;
  display: grid;
  place-content: center;
}
.migration .wrapper {
  color: #fff;
}
.migration__inner {
  width: min(100%, 1024px);
  padding: 200px min(5vw, 32px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  place-content: center;
  gap: 60px 40px;
}
.migration .form-btn {
  grid-row: 2/3;
  grid-column: 1/3;
  margin-top: 0;
}
@media (width < 668px) {
  .migration__inner {
    display: block;
    place-items: center;
  }
  .migration .wrapper {
    display: grid;
    place-items: center;
    margin-bottom: 32px;
  }
  .migration .gallery__list {
    margin-bottom: 40px;
  }
}

/*
==================
FQA
==================
*/
.faq {
  width: 100%;
}
.faq details {
  background: #D7F1FF;
  margin-bottom: 24px;
  border-radius: 12px;
  transition: all 800ms;
}
.faq details[open] .icon-triangle {
  transform: rotate(180deg);
}
.faq p {
  color: #024C9A;
  padding: 0px 32px 20px;
}

.question {
  padding: 20px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.icon-triangle {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/*
==================
フッター
==================
*/
footer {
  width: 100%;
  height: 80px;
  background-color: #024C9A;
  color: #fff;
  display: grid;
  place-content: center;
}

#page-top {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background: #b32727;
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: grid;
  place-content: center;
}
#page-top span {
  display: block;
  border-top: solid 3px #024C9A;
  border-right: solid 3px #024C9A;
}

/*
==================
記事 - レイアウト
==================
*/
.article {
  width: 100%;
  margin-top: 100px;
  background: rgba(255, 255, 255, 0.5) url(../../images/iefes/bg_pattern.png) space;
}
.article__inner {
  padding: 80px min(5vw, 32px);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 344px;
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "article form" "article gallery" "article ." "info .";
  gap: 32px;
}
.article .area {
  padding: min(5vw, 32px);
  border-radius: 10px;
}

/*
==================
記事エリア
==================
*/
.corp-area {
  width: 100%;
  grid-area: article;
  background: #fff;
}
.corp-area h3 {
  color: #024C9A;
  margin-bottom: 4px;
}
.corp-area h3::before {
  content: "";
  width: 20px;
  height: 16px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 0 50px 50px 0;
  background: #024C9A;
}

.corp-image {
  margin-bottom: 24px;
}

.photo-gallery {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
  overflow-x: hidden;
}
.photo-gallery .swiper-wrapper {
  width: 100%;
}
.photo-gallery .swiper-button-prev::after,
.photo-gallery .swiper-button-next::after {
  font-size: 16px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 100px;
  font-weight: bold;
}
@media (width < 400px) {
  .photo-gallery .swiper-button-prev::after,
.photo-gallery .swiper-button-next::after {
    display: none;
  }
}

/*
==================
情報エリア
==================
*/
.info-area {
  grid-area: info;
  background: #EEE;
}

.info__inner .wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (width < 648px) {
  .info__inner .wrapper {
    display: block;
  }
}
.info__inner .map {
  width: min(100%, 150px);
  display: block;
  aspect-ratio: 1;
}

.info__list {
  display: grid;
  grid-template-columns: auto 1fr;
}
.info__list a {
  -webkit-text-decoration: solid #000;
          text-decoration: solid #000;
}
.info__list th {
  display: inline-block;
  width: 4rem;
  text-align: center;
  color: #fff;
  margin: 0 1rem 1rem 0;
  border-radius: 4px;
  background: #024C9A;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}
.info__list td {
  padding-bottom: 1rem;
  word-break: break-word;
}

/*
==================
フォームエリア
==================
*/
.form-area {
  width: 100%;
  grid-area: form;
  background: #FFEC81;
}
.form-area .form-btn__link {
  background-color: #fff;
}

/*
==================
会社一覧
==================
*/
.single-gallery {
  width: 100%;
  grid-area: gallery;
}
.single-gallery .gallery__list {
  margin-bottom: 40px;
}

.home-btn {
  padding-block: 24px;
  padding-left: min(5vw, 32px);
  vertical-align: middle;
  color: #024C9A;
}
.home-btn a {
  display: flex;
  place-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.home-btn .icon-home {
  display: inline-block;
  width: 18px;
  aspect-ratio: 1;
}

@media (width < 968px) {
  .article__inner {
    display: block;
  }
  .area {
    margin-bottom: 24px;
  }
}
/*# sourceMappingURL=iefes-style.css.map */