/* CSS Document */
/*
Theme Name: 岸和田就職フェアのテーマ
Theme URI: https://test-site.kishiwada-job-support.jp/
Description: 岸和田就職フェアのテーマです。
Version: 6.5
Author: C-PLUS株式会社
Author URI: https://www.c-plus-1.co.jp/
Screenshot: screenshot.png
*/

@charset "UTF-8";

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin-top: 40px;
}

p {
  font-family: "A P-OTF 秀英丸ゴシック Std";
  font-weight: bold;
  font-size: 20px;
}

.fv {
  /* height: 768px;
  background-image: url(../images/FV.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center; */
  text-align: center;
  margin-top: 5vh;
}

/* .fv img {
  width: 100%;
} */

header nav ul {
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  filter: drop-shadow(1px 1px 1px black);
}

header nav ul li {
  border-right: 1px solid #000;
  padding: 0 1em;
  font-size: 1.3vw;
  /* 文字色は透明にして背景が見えるようにする */
  color: transparent;

  /* オレンジと黒が50%の位置で切り替わるグラデーション */
  background: linear-gradient(to right, #00604b 50%, #000 50%) 100%;
  /* 背景をテキストで切り抜く */
  background-clip: text;

  /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
  background-size: 200% 100%;

  transition: background-position 0.3s;
}

header nav ul li:hover{
  /* グラデーションの位置を移動して、オレンジ部分を見せる */
  background-position: 0 100%;
}

header nav ul li:last-child {
  border-right: none;
}

/************************** 開催日時 ****************************/

.time-sc h2 {
  font-size: 1.8em;
  text-align: center;
}

.time-sc {
  position: relative;
}

.bg-lt {
  width: 200px;
  position: absolute;
  left: 30px;
  top: 20px;
  z-index: -1;
}

.bg-rt {
  width: 200px;
  position: absolute;
  right: 30px;
  top: 10px;
  z-index: -1;
}

.bg-lb {
  width: 200px;
  position: absolute;
  left: 30px;
  bottom: 20px;
  z-index: -1;
}

.bg-rb {
  width: 200px;
  position: absolute;
  right: 30px;
  bottom: 70px;
  z-index: -1;
}


.fea-big {
  font-size: 1.6em;
}

.schedule {
  text-align: center;
  width: fit-content;
  margin: 10px auto 0;
  padding: 15px;
  background-color: #e8f2d0;
  border-radius: 15px;

  position: relative;
}

.day-left {
  position: absolute;
  bottom: 0;
  left: -35%;
}

.day-right {
  position: absolute;
  bottom: 0;
  right: -35%;
}

.schedule p {
  font-size: 1.5em;
  line-height: 1;
  font-family: "A P-OTF 秀英丸ゴシック Std";
  font-weight: bold;
}

.schedule .sc-img {
  width: 60%;
  padding-bottom: 5px;
}

.schedule div {
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #00604b;
}

.schedule div:last-child {
  border-bottom: none;
}

.schedule .day-text {
  font-size: 3.2em;
}

.green {
  color: #00604b;
}

.green span {
  background-color: #00604b;
  color: #fff;
  font-size: 0.7em;
  padding: 0.3em 0.8em;
  border-radius: 50px;
  margin-right: 0.3em;
}

.schedule .black {
  font-size: 1.2em;
  line-height: 1.3;
}

.join {
  margin-top: 40px;
  text-align: center;
}

.join-title {
  width: fit-content;
  margin: 0 auto 15px;
  padding: 0.35em 1.3em;
  border: #00604b 1px solid;
  border-radius: 50px;
  font-size: 1.3em;
}

.join-flex {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.join-flex_item {
  border: #00604b 1px solid;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.join-flex_item p {
  line-height: 1.1;
}

.join_small {
  font-size: 0.7em;
  line-height: 1;
}

.item-flex {
  margin: 50px auto 0;
  padding: 1.3em 2.15em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
  background-color: #e8f2d0;
  width: fit-content;
  border-radius: 10px;
  position: relative;
}

.item-flex img {
  width: 80%;
}

.item-flex ul li {
  font-size: 1.45em;
  text-align: left;
  list-style-type: circle;
  font-family: "A P-OTF 秀英丸ゴシック Std";
  font-weight: bold;
}

.item-flex_small {
  font-size: 0.6em;
  font-weight: normal;
}

.item-title {
  position: absolute;
  left: 20px;
  top: -25px;
}

.item-title img {
  width: 80%;
}

.join-btn a {
  width: fit-content;
  display: contents;
  transition: .5s;
}

.join-btn a p:hover {
  transform: scale(1.05);
  transition: .5s;
}

.join-btn p {
  color: #fff;
  background-color: #00604b;
  width: fit-content;
  margin: 40px auto;
  padding: 0.4em 2em;
  border-radius: 50px;
}

/******************************* イベント情報 *********************************/


.ivent h2 {
  padding-top: 100px;
  margin-bottom: 60px;
  text-align: center;
}

.bg-green {
  background-color: #e8f2d0;
  padding-bottom: 50px;
}

/*tabの形状*/
.tab{
	display: flex;
	flex-wrap: wrap;
  position: inherit;
  z-index: 2;
}
.tab li a{
	display: block;
	background:#b0e0de;
	margin:0 2px;
	padding:10px 20px;
  color: #00604b;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background:#00604b;
  color: #FFF;
}


/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 20px;
}

.area.is-active img {
  margin: 0 auto;
  display: flex;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.ivent-manual {
  text-align: center;
  margin-top: 40px;
}

.iv-mn-title {
  width: fit-content;
  padding: 0.2em 1.4em;
  margin: 0 auto;
  border-radius: 5px;
  color: #FFF;
  background-color: #df8c91;
}

.iv-mn-content {
  margin-top: 15px;
}

.pink {
  color: #df8c91;
}

.ivent-small {
  font-size: 0.9em;
}

.ivent-menu {
  position: relative;
}

.ivent-h {
  position: absolute;
  right: 0;
  top: -160px;
  z-index: 0;
}

.ivent-manual {
  position: relative;
}

.ivent-bt {
  position: absolute;
  left: 0;
  bottom: -150px;
  width: 150px;
}

/******************************* 企業一覧 *********************************/

.company {
  text-align: center;
  padding-bottom: 100px;
}

.soon {
  margin-top: 40px;
}

.soon01 {
  font-size: 2.4em;
  line-height: 1.1;
}

/******************************* 参加特典 *********************************/

.present {
  text-align: center;
  padding-bottom: 100px;
}

.present-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.present-flex img {
  width: 80%;
}

.pre-text01,
.pre-text02 {
  font-size: 2em;
}

.pre-text02 span {
  font-size: 1.5em;
}

.pre-text03 {
  font-size: 0.9em;
  text-align: left;
}

/******************************* アクセス *********************************/

.access {
  margin-bottom: 100px;
}

.access h2 {
  text-align: center;
}

.access-flex {
  margin-top: 60px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.access-flex p {
  font-size: 0.95em;
}

.attention {
  margin-top: 60px;
}

.attention-title {
  font-size: 1.6em;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.attention-title::after {
  content: "";
  flex-grow: 1;
  height: 0.7px;
  background-color: #333;
  margin-left: 1rem;
}

.attention-text {
  margin-bottom: 20px;
  font-size: 0.95em;
}

/******************************* フッター *********************************/

footer {
  background-color: #00604b;
  color: #FFF;
  text-align: center;
}

footer table {
  margin: 0 auto;
}

footer table tr {
  margin-bottom: 15px;
}

.f-flex {
  display: flex;
  line-height: 1.1;
  align-items: start;
  margin-bottom: 15px;
}

.f-midashi {
  width: fit-content;
  height: fit-content;
  background-color: #fff;
  color: #00604b;
  padding: 0.3em 0.7em;
  border-radius: 8px;
  margin-right: 1em;
}

.f-f_box {
  width: fit-content;
  margin: 0 auto;
  padding-top: 50px;
}

.f-text {
  margin-top: 0.3em;
  text-align: left;
}

.f-flex span {
  font-size: 0.8em;
}

.f-btn {
  background-color: #fff100;
  color: #00604b;
  width: fit-content;
  margin: 0 auto ;
  padding: 0 5em;
  border-radius: 10px;
}

.tel {
  padding-bottom: 50px;
  line-height: 1.2;
  margin-top: 30px;
}

.tel-text {
  font-size: 1.8em;
}

.tel-tel {
  font-size: 3em;
}

.tel-tel img {
  width: 30px;
  margin-right: 10px;
}

/* スマホ */

@media (max-width:767px) {
  .day-right {
    right: 0;
    width: 70px;
  }

  .day-left {
    left: 0;
    width: 70px;
  }

  .time-sc h2 {
    font-size: 1.4em;
  }

  header nav ul li {
    font-size: 2.3vw;
  }

  .join-flex {
    
    align-items: center;
    gap: 10px;
  }

  .item-flex {
    margin: 50px auto 0;
    padding: 3em 2.15em;
    display: flex;
    align-items: flex-end;
    gap: 0;
    background-color: #e8f2d0;
    width: fit-content;
    border-radius: 10px;
    position: relative;
    flex-direction: column;
  }

  .item-flex ul li {
    font-size: 1.15em;
  }

  .item-flex .bag {
    display: none;
  }

  .bg-lt {
    width: 130px;
    left: 5px;
    top: 10px;
  }

  .bg-rt {
    width: 120px;
    right: 10px;
    top: 0px;
  }

  .bg-lb {
    width: 150px;
    bottom: 0;
  }

  .bg-rb {
    width: 150px;
    bottom: 190px;
    right: 10px;
  }

  .tab {
    font-size: 0.5em;
    flex-wrap: nowrap;
  }

  .tab li a {
    margin: 0 0.5px;
    padding: 10px 3px;
  }

  .ivent-h {
    position: absolute;
    right: 0;
    top: -60px;
    z-index: 0;
    width: 150px;
  }

  .area {
    padding: 30px 10px;
  }

  .ivent-menu {
    margin: 0 10px;
  }

  .iv-mn-content p {
    font-size: 14px;
  }

  .iv-mn-title {
    font-size: 16px;
  }

  .ivent-bt {
    width: 110px;
    left: 5px;
  }

  .present {
    padding-bottom: 30px;
  }

  .present-flex {
    display: block;
    gap: 0;
    margin-top: 20px;
    position: relative;
  }

  .present-flex img {
    width: 18%;
  }

  .pre-text01, .pre-text02 {
    font-size: 1em;
  }

  .pre-text03 {
    font-size: 0.7em;
    width: fit-content;
    margin: 0 auto;
  }

  .pf-01 {
    position: absolute;
    top: 0;
    left: 10%;
  }

  .pf-03 {
    position: absolute;
    top: 0;
    right: 7%;
  }

  .pf-02 {
    text-align: center;
  }

  .access-flex {
    flex-direction: column;
    width: 97%;
    margin: 0 auto;
  }

  .attention {
    width: 97%;
    margin: 0 auto;
  }

  .attention-title {
    font-size: 1.2em;
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .access {
    margin-bottom: 40px;
  }

  .f-flex p {
    font-size: 16px;
  }

  .f-btn {
    font-size: 16px;
  }

  .tel-tel img {
    width: 15px;
  }

  .tel-tel {
    font-size: 1.5em;
  }

  .tel-text {
    font-size: 1.3em;
  }

  .join-flex_item {
    width: 120px;
    height: 120px;
    gap: 5px;
  }

  .join-flex_item img {
    width: 50%;
  }

  .join-flex_item p {
    font-size: 0.7em;
  }

  .join-flex_item .join_small {
    font-size: 8px;
  }

  .ivent h2 {
    padding-top: 20px;
  }

  iframe {
    width: 100%;
    margin: 0 auto;
  }

  .company {
    padding-bottom: 40px;
  }

  .access h2 {
    margin-bottom: 20px;
  }

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

@media (768px <= width < 1200px) {
  .container {
    width: 97%;
    margin: 0 auto;
  }
}