@charset "UTF-8";
/* parameters */
/* box-sizing: border-box */
@import url(https://fonts.googleapis.com/css2?family=Caudex&family=Noto+Sans+JP&display=swap);
* {
  box-sizing: border-box;
}

/* hide sp (smart phone) class */
.sp {
  display: none !important;
}

/* web font */
/* -- BASE STYLES -- */
body {
  background-color: #fafaf9;
  color: #333333;
  font-size: 16px;
  letter-spacing: 0.05rem;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

/* heading & label */
h1,
h2,
h3,
h4,
h5,
h6,
label {
  color: #333333;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 1rem 0;
}

li {
  display: flex;
}
li::before {
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* -- LAYOUT STYLES -- */
.is-center {
  text-align: center;
}

.left-figure {
  display: inline;
  float: left;
  height: auto;
  margin: 30px 0;
  width: 250px;
}

.right-text {
  display: inline;
  float: left;
  height: auto;
  line-height: 180%;
  margin: 30px 0;
  text-align: left;
  width: 60%;
}

/* -- HOME MENU STYLES -- */
.home-menu {
  background-color: #fafaf9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-family: "Caudex", serif;
  font-size: 18px;
  text-align: center;
}
.home-menu a {
  color: #333333;
}
.home-menu li a:hover,
.home-menu li a:focus {
  background: none;
  border: none;
  color: #ec5500;
}

.pure-menu.pure-menu-fixed {
  /* Fixed menus normally have a border at the bottom. */
  border-bottom: none;
  /* I need a higher z-index here because of the scroll-over effect. */
  z-index: 4;
}

/* -- SPLASH STYLES -- */
.splash-container {
  background: #ffffff;
  background-image: url(../img/bg.png), url(../img/top-img2.gif);
  background-position: center center;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 88%;
  left: 0;
  margin: 0 auto;
  max-height: 630px;
  overflow: hidden;
  position: fixed !important;
  top: 0;
  /* The following styles are required for the "scroll-over" effect */
  width: 100%;
  z-index: 1;
}

.splash {
  bottom: 0;
  height: 50%;
  left: 0;
  margin: 90px auto;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  top: 100px;
  /* absolute center .splash within .splash-container */
  width: 80%;
}

/* This is the main heading that appears on the blue section */
.splash-head {
  padding: 0 0 1.6em 0;
  z-index: 100;
}
.splash-head img {
  height: auto;
  width: 400px;
}

/* -- CONTENT STYLES --*/
.content-wrapper {
  background-color: #fafaf9;
  min-height: 12%;
  /* These styles are required for the "scroll-over" effect */
  position: absolute;
  /* top 68%　はPCに対応したサイズ　タブレットは変更が必要　*/
  top: 68%;
  width: 100%;
  z-index: 2;
}

/* This is the class used for the content sub-headers (<h3>) */
.content-subhead {
  font-family: "Caudex", serif;
  font-size: 2rem;
  margin: 3rem;
}

.content-message {
  font-weight: bold;
  font-size: 2.5rem;
}

.content {
  padding: 3.5rem max(1rem, (100% - 1000px) / 2);
}
.content:nth-child(even) {
  background-color: #f2f2f2;
}

ul.philosophy li {
  margin: 2rem 0;
}
ul.philosophy li::before {
  content: url(../img/square_icon.svg);
}

.project {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 2rem 0;
}
.project:not(:last-of-type) {
  border-bottom: dotted black 1px;
}
.project img {
  display: block;
  width: 300px;
  height: 300px;
  margin: 2rem 0;
}
.project div.project-description {
  margin: 0 1rem;
  width: 550px;
}
.project div.project-description h3 {
  margin-bottom: 1rem;
}
.project div.project-description h4::before {
  content: url(../img/square_icon.svg);
  vertical-align: middle;
  margin-right: 0.5rem;
}
.project div.project-description p {
  margin-left: 1rem;
}
.project div.project-description div.topic {
  padding: 1rem 0;
}

ul.example li {
  font-size: 0.9rem;
}
ul.example li::before {
  content: url(../img/check_24.svg);
}

table {
  overflow-x: auto;
  margin-left: auto;
  margin-right: auto;
}
table td, table th {
  padding: 8px;
}
table th {
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  min-width: 70px;
}
table tr:nth-child(even) {
  background-color: #f2f2f2;
}
table tr:hover {
  background-color: #dddddd;
}

/* This is the class used for the footer */
.footer {
  background-color: #666666;
  bottom: 0;
  color: white;
  font-size: 12px;
  padding: 20px 0 18px 0;
  width: 100%;
}

/* -- DESKTOP (AND UP) MEDIA QUERIES -- */
/*custom*/
.pattern {
  animation: AnimationName 40s ease infinite;
  background: linear-gradient(-135deg, rgba(214, 99, 34, 0.6), rgba(163, 215, 218, 0.6), rgba(98, 116, 156, 0.6));
  background-size: 800% 800%;
  height: 630px;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
@keyframes AnimationName {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.link {
  color: #ec5500;
  text-decoration: none;
}

.center {
  text-align: center;
  display: block;
}/*# sourceMappingURL=base.css.map */