@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Smooch&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/*
Theme Name: Hi-CRAFT Original Theme
Description: Hi-CRAFT様全体用テーマファイル
Version: 1.0.0
Author: Campus .,Inc
*/

:root {
  --white: #fff;
  --lightblue: #32a7e1;
  --black: #000000;
  --gray: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
}
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  height: auto;

  /* テキストスタイル */
  color: var(--black) 000;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-feature-settings: "palt";
  font-style: normal;
  font-weight: 500;
}

main {
  width: -webkit-fill-available;
  max-width: 1540px;
  height: auto;
  margin: 0 auto;
}

section {
  width: 100%;
  max-width: 1040px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
section.width-full {
  max-width: unset;
}

.section-inner {
  width: 100%;
  height: auto;
  margin: auto;
  padding: 60px 250px;
  display: inline-block;
}

.section-inner.center {
  display: inline-block;
  margin: 90px auto;
  text-align: center;
}

h1 {
  line-height: 1;
}

h2 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px; /* 166.667% */
  letter-spacing: 3.2px;
  margin:  2em 0 1em;
  text-align: center;
}

h3 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 40px; /* 166.667% */
  letter-spacing: 1.2px;
  margin-bottom: 1em;
}

h4 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px; /* 166.667% */
  letter-spacing: 1.2px;
  margin-bottom: 1em;
}

h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px; /* 166.667% */
  letter-spacing: 1.2px;
  margin-bottom: 1em;
}

p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 2px;
}

span.small {
  font-size: 0.7em;
}

span.emphasize {
  color: var(--lightblue);
}

a {
  text-decoration: none;
}

li a {
  color: var(--black);
}

/* パンくずリスト */
#breadcrumb {
  padding: 10px 250px;
}

#breadcrumb ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  color: var(--black);
  font-family: Roboto, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo,
    sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.3;
}

#breadcrumb ul li {
  text-decoration: none;
}

#breadcrumb li:not(:last-of-type)::after {
  content: ">";
}

#breadcrumb li:last-of-type {
  text-decoration: underline;
}

#breadcrumb li:first-of-type a {
  color: #0073aa;
  font-weight: 700;
  text-decoration: none;
}

#breadcrumb a:hover {
  text-decoration: underline;
}

#breadcrumb span {
  margin: 0 5px;
}

/* ボタンのスタイル・白 */
button.btn_square {
  position: relative;
  width: 280px;
  padding: 15px 0;
  background-color: transparent;
  font-size: 14px;
  border: var(--white) solid 1px;
  text-align: center;
  transition: color 0.5s ease;
  z-index: 1;
  color: var(--white);
  margin-top: 30px;
}

button.btn_square:hover {
  color: var(--black);
}

button.btn_square:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

button.btn_square::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
}

/* アイコンのスタイル */
button.btn_square::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: rotate(45deg);
  box-sizing: border-box;
  transition: all 0.3s;
}

button.btn_square:hover::after {
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  right: 17px;
  transition: all 0.3s;
}

/* ボタンのスタイル・黒 */
button.btn_square.black {
  position: relative;
  width: 280px;
  padding: 15px 0;
  background-color: transparent;
  font-size: 14px;
  border: var(--black) solid 1px;
  text-align: center;
  color: var(--black);
}

button.btn_square.black:hover {
  border: var(--lightblue) solid 1px;
  color: var(--white);
}

button.btn_square.black:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

button.btn_square.black::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lightblue);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
}

button.btn_square.black {
  color: var(--black);
  text-decoration: none;
}

/* アイコンのスタイル・黒 */
button.btn_square.black::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
  box-sizing: border-box;
  transition: all 0.3s;
}

button.btn_square.black:hover::after {
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  right: 17px;
  transition: all 0.3s;
}

.center {
  display: flex;
  margin: auto;
  justify-content: center;
}

.column_2 {
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.column_2 div {
  flex: 1 1 0;
}

.column_2 div img {
  width: 100%;
}

.img_box {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.img_box img {
  transition: all 0.3s ease-out;
}

.img_box:hover img {
  opacity: 0.8;
  transform: scale(1.1);
}

.event_child span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

span.status {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  font-weight: 700;
}

span.status#accepting {
  color: var(--white);
  background: var(--lightblue);
}

span.status#hold {
  color: #5c5c5c;
  background: #ecee76;
}

span.status#closed {
  color: #5c5c5c;
  background: #d9d9d9;
}

.time::before,
.place::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 5px;
}

.event_child span.time::before {
  content: "\f017";
  font: var(--fa-font-solid);
  color: var(--white);
}

.event_child span.place::before {
  content: "\f3c5";
  font: var(--fa-font-solid);
  color: var(--white);
}

/* ヘッダー */

header {
  position: sticky;
  top: 0;
  left: 0;
  width: -webkit-fill-available;
  height: auto;
  background: var(--white);
  padding: 10px 70px;
  z-index: 99;
}

header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  color: var(--black) 000;
}

header .header-inner .pc {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul {
  display: flex;
  text-transform: uppercase;
  list-style: none;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  letter-spacing: 1px;
}

.header-inner .btn_header {
  position: relative;
  width: auto;
  padding: 15px 30px;
  background-color: transparent;
  font-size: 14px;
  border: var(--black) solid 1px;
  text-align: center;
  color: var(--black);
}

.header-inner .btn_header:hover {
  border: var(--lightblue) solid 1px;
  color: var(--white);
}

.header-inner .btn_header:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.header-inner .btn_header::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lightblue);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
}

img.toplogo {
  width: 160px;
  height: auto;
}

img.footerlogo {
  width: 240px;
  height: auto;
}

/* フッター */

footer {
  width: -webkit-fill-available;
  height: auto;
  margin: 0;
  padding: 0;
  padding-top: 30px;
  background: #eee;
}

footer a {
  color: var(--black) 000;
}

footer div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  padding: 22px 70px;
}

footer div.footer_info {
  margin: 0;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

footer div.left {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

footer div.left p {
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1.5;
}

footer div.left p.company_name {
  font-size: 16px;
  font-weight: 700;
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  list-style: none;
  gap: 30px;
}

.copyright {
  background: var(--black) 000;
  padding: 10px;
}

.copyright p {
  color: var(--white);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  margin: 0 auto;
}

/* ハンバーガーメニュー */

.header-area {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0px;
  align-items: center;
  position: relative;
}
.hamburger {
  width: 40px;
  height: 25px;
  position: absolute;
  top: 15px;
  right: 10px;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--black);
}
.hamburger span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 0;
}
.hamburger span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  top: 50%;
}
.hamburger span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 100%;
}
.slide-menu {
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 30px;
  width: 100%;
  height: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  transition: all 0.3s;
  transform: translateX(-100%);
  z-index: -1;
}
.slide-menu li {
  color: var(--black);
  line-height: 400%;
  text-align: center;
}

.slide-menu a {
  text-align: center;
}

.hamburger.active span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 50%;
  transform: rotate(45deg);
}
.hamburger.active span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  opacity: 0; /* 透明にする */
}
.hamburger.active span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 50%;
  transform: rotate(-45deg);
}
.slide-menu.active {
  transform: translateX(0);
}

.slide-menu .btn_header {
  margin-top: 20px;
}

/* レスポンシブ */

@media screen and (min-width:1025px) and (max-width:1366px) {

  .section-inner{
    padding: 60px 100px;
  }
  
}

@media only screen and (min-width: 1025px) {
  .header-area,
  .hamburger,
  .slide-menu {
    display: none;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .before_after div {
    flex: 1 1 auto;
  }
  .arrow_ba {
    width: 5px;
  }
  #breadcrumb {
    padding: 10px 60px;
  }
  .page_title {
    padding: 20px 60px;
  }
}

@media only screen and (min-width: 769px) {
  .sp {
    display: none;
  }

  .tab {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  #breadcrumb {
    padding: 10px 30px;
  }

  .event_child {
    margin-bottom: 20px;
  }

  .contact .column_2 img {
    flex: 1 0 auto;
    height: 300px;
  }

  .page_title {
    padding: 20px 30px;
  }
}

@media only screen and (min-width: 426px) and (max-width: 1024px) {
  .section-inner,
  .topmessage .section-inner,
  .event .section-inner {
    padding: 60px;
  }

  .pc {
    display: none;
  }
}

@media only screen and (min-width: 426px) and (max-width: 768px) {
  .tab {
    display: block;
  }

  section.service {
    margin: 0;
    text-align: left;

    background-image: url(../image/service01.png), url(../image/service02.png),
      url(../image/service03.png);
    /*2枚の画像の横幅を、いずれもcontainer幅の半分に指定*/
    background-size: calc(100% / 3) 100%, calc(100% / 3) 100%,
      calc(100% / 3) 100%;
    /*1枚目の画像を左上、2枚目の画像を右下に配置*/
    background-position: 0%, 50%, 100%;
    /*2枚の画像をいずれも繰り返さないよう指定*/
  }
}

/* スマホ用 */
@media screen and (max-width:1024px) {
  header ul {
    height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
  }
}

@media only screen and (max-width: 425px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  h2 {
    font-size: 24px;
    line-height: 36px;
  }

  .page_title p,
  .footer_contact p {
    font-size: 18px;
  }

  #breadcrumb li {
    font-size: 12px;
  }

  main {
    width: -webkit-fill-available;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
  }

  /* ヘッダー */

  header {
    padding: 10px;
  }

  .section-inner {
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  a.btn_link {
    text-align: center;
  }
  header .header-inner {
    justify-content: center;
  }

  img.toplogo {
    width: 120px;
    height: auto;
  }
  .column_2 img {
    width: 100%;
    height: auto;
  }

  /* フッター */
  footer ul {
    gap: 10px;
  }

  footer div {
    padding: 22px 30px;
    margin: 0;
  }

  footer div.footer_contact {
    padding: 20px 40px;
  }

  footer div:last-child {
    margin: 0 auto;
  }

  footer div.footer_info {
    margin: 0;
    padding: 0 0 30px;
  }

  img.footerlogo {
    width: 200px;
    height: auto;
  }

  .page_title h1 {
    -webkit-margin-before: 0.2em;
    margin-block-start: 0.2em;
    -webkit-margin-after: 0.1em;
    margin-block-end: 0.1em;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
    -webkit-margin-end: 0px;
    margin-inline-end: 0px;
  }

  .service_top .section-inner {
    margin: 30px 0 0;
  }

  .menu_box {
    gap: 20px;
  }

  .menu_box a {
    flex: 1;
    display: flex;
    align-self: stretch;
    justify-content: center;
    gap: 10px;
  }
}
