@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600;700&display=swap");
/* Common Style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header,
menu, nav, section, audio, video, canvas {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article, aside, figure, figcaption, footer,
header, menu, nav, section, main {
  display: block;
}

body {
  color: #333;
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a img {
  border: none;
  vertical-align: middle;
}

* {
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::-moz-selection {
  background: rgba(51, 153, 153, .6);
}

*::selection {
  background: rgba(51, 153, 153, .6);
}

*::-moz-selection {
  background: rgba(51, 153, 153, .6);
}

a, input[type=submit] {
  transition: all 0.2s ease;
}

/* Main global 'theme' and typographic styles */
body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

body,
input,
textarea {
  color: #666;
  line-height: 1.8;
}

a:link,
a:visited {
  color: #666;
  cursor: hand;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  text-decoration: none;
  outline-width: 0;
}

hr {
  background-color: #ccc;
  border: 0;
  clear: both;
  width: 100%;
  height: 1px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

p {
  margin-bottom: 1.5em;
}

ul {
  list-style: disc;
  margin: 0 0 1.5em 2em;
}

ol {
  list-style: decimal;
  margin: 0 0 1.5em 2em;
}

ol ol {
  list-style: upper-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: lower-alpha;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

dl {
  margin: 0 0 1.8em 0;
}

dt {
  font-weight: bold;
}

dt:last-child {
  margin-bottom: 0;
}

dd {
  margin-bottom: 1.5em;
}

dd:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: bold;
}

cite,
em,
i {
  font-style: italic;
}

big {
  font-size: 131.25%;
}

ins {
  background: #ffc;
  text-decoration: none;
}

blockquote {
  font-style: italic;
  padding: 0 2em;
}

blockquote cite,
blockquote em,
blockquote i {
  font-style: normal;
}

pre {
  background: #f7f7f7;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.5em;
  overflow: auto;
  padding: 1.5em;
}

blockquote {
  quotes: "" "";
}

blockquote:before, blockquote:after {
  content: "";
}

q {
  quotes: "“" "”" "‘" "’";
}

:focus {
  outline: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

sup,
sub {
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: .8em;
}

table {
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
  margin-bottom: 1.5em;
}

th, td {
  padding: .5em .8em;
  vertical-align: top;
  border-bottom: none;
  text-align: left;
  background: transparent;
}

th {
  font-weight: normal;
}

/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* エフェクトで使う keyframes */
@-webkit-keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}
@keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}

/* フェードイン */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* フェードアウト */
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* スプリング(拡大してバウンド) */
@-webkit-keyframes spring {
  0% {
    transform: scale(0.2);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes spring {
  0% {
    transform: scale(0.2);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* 上に移動しながらフェードイン */
@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(3em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(3em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 下に移動しながらフェードイン */
@-webkit-keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-3em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-3em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左に移動しながらフェードイン */
@-webkit-keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(3em);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(3em);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右に移動しながらフェードイン */
@-webkit-keyframes fade-right {
  from {
    opacity: 0;
    transform: translateX(-3em);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-right {
  from {
    opacity: 0;
    transform: translateX(-3em);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* X方向スケールアップ */
@-webkit-keyframes scale-up-x {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes scale-up-x {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Y方向スケールアップ */
@-webkit-keyframes scale-up-y {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes scale-up-y {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

/* Y方向スケールダウン */
@-webkit-keyframes scale-down-y {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
@keyframes scale-down-y {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}

/* Y方向に拡大しながらフェードイン */
@-webkit-keyframes scale-y-fade-in {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes scale-y-fade-in {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードイン */
@-webkit-keyframes scale-fade-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-fade-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードアウト */
@-webkit-keyframes scale-fade-out {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes scale-fade-out {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.2);
    opacity: 0;
  }
}

body {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100vh;
  width: 100%;
}

pre {
  font-family: "Courier 10 Pitch", Courier, monospace;
}

code {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

@-webkit-keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.openLoader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fcfbf8;
  z-index: 10000;
  transition: all linear .5s;
  opacity: 1;
}

.openLoader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.openLoader .loader {
  color: #fff;
  font-size: 1em;
  z-index: 10000;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5em;
  height: 5em;
  margin: -2.5em 0 0 -2.5em;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.6em solid rgba(153, 153, 153, .3);
  border-right: 0.6em solid rgba(153, 153, 153, .3);
  border-bottom: 0.6em solid rgba(153, 153, 153, .3);
  border-left: .6em solid #999;
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
          animation: load8 1.1s infinite linear;
  transition: all ease-in-out 1s;
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
}

.loader.is-active {
  z-index: 100;
  opacity: 1;
}

.header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: rgba(255, 255, 255, .8);
}

.header__logo {
  max-width: 190px;
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.relation {
  width: calc(100vw / 3);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.relation__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}

.relation__logo {
  /* position: absolute; */
}

.relation__description {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 24px;
  gap: 12px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.relation__area {
  line-height: 1.5;
  padding: 5px 10px;
  border: 1px solid #fff;
  border-radius: 4px;
}

.relation__concept {
  line-height: 1.8;
  margin-bottom: 0;
}

.relation svg {
  width: 100%;
  height: 100%;
}

.relation--folq {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), url("../images/index_folq3.jpg"), lightgray center / cover no-repeat;
  background-position: center;
  background-size: cover;
}

.relation--folq .relation__logo  {
  max-width: 15vw;
  width: 100%;
}

.relation--noie {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), url("../images/index_noie3.jpg"), lightgray center / cover no-repeat;
  background-position: center;
  background-size: cover;
}

.relation--noie .relation__logo {
  max-width: 8.3333vw;
  max-height: 16.1818vh;
}

.relation--flow {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), url("../images/index_flow3.jpg"), lightgray center / cover no-repeat;
  background-position: center;
  background-size: cover;
}

.relation--flow .relation__logo {
  max-width: 13.25vw;
  max-height: 9.4545vh;
}

.relation--soranoie {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), url("../images/index_soranoie.jpg"), lightgray center / cover no-repeat;
  background-position: center;
  background-size: cover;
}

.relation--soranoie .relation__logo {
  max-width: 10.333vw;
  max-height: 13.6363vw;
}

.relation--flores {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), url("../images/index_flores.jpg"), lightgray center / cover no-repeat;
  background-position: center;
  background-size: cover;
}

.relation--flores .relation__logo {
  max-width: 13.3333vw;
  max-height: 11.5454vh;
}

@media screen and (max-width: 767px) {

  body {
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
  }

  .header {
    height: calc(50 / 375 * 100vw);
    padding: 0 calc(30 / 375 * 100vw);
    justify-content: flex-start;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .header__logo {
    width: calc(125 / 375 * 100vw);;
  }

  .relation {
    width: 100%;
    height: calc(400 / 375 * 100vw);;
  }
  
  .relation__link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .relation__logo {
    /* position: absolute; */
  }
  
  .relation__description {
    letter-spacing: 0.56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    padding: calc(16 / 375 * 100vw);;
    gap: calc(8 / 375 * 100vw);;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .relation__area {
    padding: calc(5 / 375 * 100vw) calc(10 / 375 * 100vw);
    border-radius: calc(4 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);;
  }
  
  .relation__concept {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: 0;
  }
    
  .relation--folq {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/index_folq3.jpg"), lightgray 50% / cover no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .relation--folq .relation__logo  {
    max-width: calc(160 / 375 * 100vw);
    width: 100%;
  }
  
  .relation--noie {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/index_noie3.jpg"), lightgray 50% / cover no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .relation--noie .relation__logo {
    max-width: calc(86 / 375 * 100vw);;
    max-height: calc(153 / 375 * 100vw);;
  }
  
  .relation--flow {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/index_flow3.jpg"), lightgray 50% / cover no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .relation--flow .relation__logo {
    max-width: calc(139 / 375 * 100vw);
    max-height: calc(90 / 375 * 100vw);
  }
  
  .relation--soranoie {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/index_soranoie.jpg"), lightgray 50% / cover no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .relation--soranoie .relation__logo {
    max-width: calc(112 / 375 * 100vw);;
    max-height: calc(135 / 375 * 100vw);;
  }
  
  .relation--flores {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/index_flores.jpg"), lightgray 50% / cover no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .relation--flores .relation__logo {
    max-width: calc(140 / 375 * 100vw);;
    max-height: calc(111 / 375 * 100vw);;
  }
}
