@charset "UTF-8";

@font-face {
  font-family: Zen Kaku Gothic New;
  src: url(../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Light.ttf) format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: Zen Kaku Gothic New;
  src: url(../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.ttf) format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: Zen Kaku Gothic New;
  src: url(../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Medium.ttf) format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: Zen Kaku Gothic New;
  src: url(../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.ttf) format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: Zen Kaku Gothic New;
  src: url(../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Black.ttf) format("truetype");
  font-weight: 900;
}

/* base */
*, *::before, *::after {
  background-repeat: no-repeat;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  height: 100%;
  font-size: 16px;
  background-color: #0093bd;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: Zen Kaku Gothic New, YuGothic, -apple-system, BlinkMacSystemFont, メイリオ, Meiryo, Helvetica, sans-serif;
  font-weight: 400;
  color: #323232;
  text-align: justify;
  word-break: break-all;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  background-color: white;
  overflow-x: hidden;
}
main{
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, dl {
  list-style: none;
}
button {
  border: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  background: none;
}
img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}
iframe {
  display: block;
  width: 100%;
  background-color: #F2F2F2;
  border: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}

html {
  /* 1920vw用 */
  font-size: calc(100vw / 192);
  /* 1rem　が　10px (1920) */
}

/* projects */
/* header */

.p-header {
  background: #0093bd;
  height: 23rem;
  padding: 1.5rem 2rem 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.p-header__inner {
  display: flex;
  width: 170rem;
  margin: auto;
}

.p-header__logo{
  width: 20rem;
}

.p-header__nav {
  margin: 0;
  margin-left: auto;
}

.p-header-nav__list {
  display: flex;
}

.p-header-nav__list > li {
  border-right: 1px solid #fff;
  padding: 0 2rem;
}

.p-header-nav__list > li.--last {
  border: none;
}

.p-header-nav__link {
  color: #fff;
  font-size: 16px;
}

@media screen and (max-width: 960px) {
  .p-header {
    height: 30rem;
  }

  .p-header__inner {
    display: flex;
    margin: 0;
    width: 100%;
  }

  .p-header__nav {
    font-size: 14px;
  }
}

@media screen and (max-width: 720px) {
  .p-header {
    height: 40rem;
  }
  
  .p-header__logo{
    width: 80px;
  }

  .p-header__nav {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .p-header {
    height: 60rem;
  }

  .p-header__logo{
    width: 72px;
  }
}

/* footer */

.p-footer {
  background-color: #fdfade;
}

.p-footer__inner {
  align-items: center;
  display: flex;
  gap: 0 13.8rem;
  justify-content: center;
  padding: 6rem 0;
}

.p-footer-logo__img {
  height: 12rem;
  object-fit: contain;
}

.p-footer-nav__list {
  color: #0093bd;
  display: flex;
  font-size: 2rem;
  gap: 2.6rem;
  margin-bottom: 1.7rem; 
}

.p-footer-nav__list.--top li {
  position: relative;
}

.p-footer-nav__list.--top li::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(1.3rem, 0.5rem);
  display: block;
  width: 0.2rem;
  height: 14px;
  background: #0093bd;
}

.p-footer-nav__list.--top li:last-of-type:after{
  display: none;
}

.p-footer-nav__list.--bottom li{
  border: 2px solid #0093bd;
  padding: 0.3rem 0.8rem;
}

.p-footer-nav__link {
  color: #0093bd;
  font-size: 16px;
}

@media screen and (max-width: 720px) {
  .p-footer__inner {
    display: block;
    gap: 0;
    padding: 30px 0;
  }

  .p-footer-logo__img {
    height: 60px;
    object-fit: contain;
  }

  .p-footer-nav__list {
    color: #0093bd;
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 15px auto;
  }

}

@media screen and (max-width: 480px) {
  .p-footer-nav__list {
    flex-wrap: wrap;
  }

  .p-footer-nav__list > li{
    text-align: center;
    width: 70%;
  }

  .p-footer-nav__list.--top li::after {
    display: none;
  }
}

/* 改行 */

.is-visible--1300 {
  display: none;
}
.is-visible--1100 {
  display: none;
}
.is-visible--720 {
  display: none;
}
.is-visible--540 {
  display: none;
}

@media screen and (max-width: 1300px) {
  .is-visible--1300 {
    display: inline-block;
  }
}
@media screen and (max-width: 1200px) {
  .is-visible--1200-over {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .is-visible--1100 {
    display: inline-block;
  }
}
@media screen and (max-width: 720px) {
  .is-visible--720 {
    display: inline-block;
  }
  .is-visible--720-over {
    display: none;
  }
}

@media screen and (max-width: 540px) {
  .is-visible--540 {
    display: inline-block;
  }
  .is-visible--540-over {
    display: none;
  }
}