/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}
/* Property */
:root { 
  --color-text-main: #595a5b;
  --color-text-para: #252525;
  --margin-vrtical-main: 90px;
}
/*  -----------------------------------------------------------------------------------------------

Common

*/
/* Base */
html {
  font: 62.5%/2 "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--color-text-main); background-color: #ccc; font-feature-settings: "palt"; letter-spacing: .12em;
}
body { font-size: 1.8rem; line-height: 2; -webkit-text-size-adjust: 100%; background-color: #fff; max-width: 1920px; min-width: 1280px; margin: 0 auto; position: relative; }
a, a:hover, a:visited, a:focus, a:active { color: inherit; text-decoration: none; }
small { font-size: 80%; }
i { font-style: normal; }
img { vertical-align: top; height: auto; }

p, ul, ol, dl { margin: 1em 0; }
.block { list-style: none; margin: 0; padding: 0; }
/*
 * link ---------------- */
/* button */
.btn {
  display: flex;
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  padding: 1em;
  border: 1px solid rgba(0,0,0,.2);
  transition: .3s;
}
.btn:hover { color: #fff; background-color: rgba(0,0,0,.5); border-color: rgba(0,0,0,.2); }

/* text */
/*
a.txt-link, .txt-link { }
*/
/*  -----------------------------------------------------------------------------------------------

Block Common

*/
/* Inview -----------------------*/
.inview { transition: .5s; opacity: 0; transform: translateY(50px); }
.inview-trigger {
  display: block;
  width: 1px;
  height: 0px;
  position: absolute;
  bottom: 20%;
  left: 0;
}
.inview.on { opacity: 1; transform: translateY(0px); }

/* bg-animation -----------------------*/
.bg-wrap {
  width: 100%;
  max-width: 1920px;
  min-width: 1280px;
  position: fixed;
  top: 530px;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1279px) {
  .bg-wrap { left: 0; transform: translate(0, -50%); }
}
/*.page-child .bg-wrap { top: 30px; }*/
#bg-animation {
  max-width: 100%;
  min-width: 1280px;
  /*filter: hue-rotate(-22deg) opacity(0.3) saturate(3);*/
  filter: opacity(0.7);
  background-color: #fff;
}
/* category -----------------------*/
.category-wrap {
  max-width: 1920px;
  min-width: 1280px;
  height: fit-content;
  margin: 0 auto;
  position: fixed;
  inset: 0;
  z-index: 100;
}
.category {
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  min-width: 188px;
  padding: 0 1.5em;
  border-radius: 1em;
  position: absolute;
  top: 132px;
  right: 68px;
}

/* container-list -----------------------*/
.container-list { font-weight: bold; width: 760px; margin-top: 42px; position: relative; }
.container-list .inner { padding: 30px 54px; width: 100%; }
.container-list::before,
.container-list::after,
.container-list .inner::before,
.container-list .inner::after { content: ""; width: 90px; height: 90px; position: absolute; border-color: var(--color-text-para); }
.container-list::before{ border-top: 1px solid; border-left: 1px solid; top: 0; left: 0; }
.container-list::after{ border-bottom: 1px solid; border-right: 1px solid; right: 0; bottom: 0; }
.container-list .inner::before{ border-top: 1px solid; border-right: 1px solid; top: 0; right: 0; }
.container-list .inner::after{ border-bottom: 1px solid; border-left: 1px solid; left: 0; bottom: 0; }
.container-list p { font-size: 2rem; margin: 0; }

/* header (nav) -----------------------*/
.site-header { display: flex; padding: 48px 54px 48px 72px; position: relative; z-index: 1000; }
.site-header-logo { width: 72px; height: 82px; }
.site-header-logo a { display: block; }
.site-header-logo img { width: 100%; height: 100%; }
.site-header-nav {
  flex: 1 0 auto;
  justify-content: flex-end;
  display: flex;
  align-items: stretch;
  font-size: 1.4rem;
  list-style: none;
  padding-bottom: 9px;
  margin: 0;
  position: relative;
}
.site-header-nav .primary { margin: 0; height: 100%; }
.site-header-nav .primary a,
.site-header-nav .primary span {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0 18px;
  position: relative;
  cursor: pointer;
}
.site-header-nav .primary a::after,
.site-header-nav .primary span::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #434343;
  position: absolute;
  bottom: 1em;
  left: 0;
  opacity: 0;
  transition: all .3s ease .1s;
}
.site-header-nav > li { position: relative; }
.site-header-nav .list-second {
  list-style: none;
  padding: 12px 18px;
  background: rgba(0,0,0,.8);
  border-radius: 6px;
  position: absolute;
  top: 54px;
  left: 17px;
  transform: translateY(10px);
  transition: all .3s ease .1s; 
  opacity: 0;
  visibility: hidden;
}
.site-header-nav > li:nth-child(2) .list-second { width: 18em; }
.site-header-nav > li:nth-child(3) .list-second { width: 18em; }
.site-header-nav > li:nth-child(4) .list-second { width: 17em; }
.site-header-nav > li:nth-child(5) .list-second { width: 22em; }
.site-header-nav .list-second::before {
  content: "";
  width: 0px;
  height: 0px;
  margin: auto;
  border: transparent 8px solid;
  border-bottom-color: rgba(0,0,0,.8);
  position: absolute;
  top: -16px;
  left: 22px;
}
.site-header-nav .list-second li a {
  display: block;
  color: #fff;
  line-height: 1.4;
  letter-spacing: normal;
  padding: .5em 0 .5em 1em;
  position: relative;
  opacity: .7;
  transition: .2s ease-in;
}
.site-header-nav .list-second li a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: .2s ease-in;
}
.site-header-nav > li:hover .primary a::after,
.site-header-nav > li:hover .primary span::after { opacity: 1; transition: all .3s ease .1s; }
.site-header-nav > li:hover .list-second {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: all .3s ease .1s;
}
.site-header-nav .list-second li a:hover { opacity: 1; transition: .2s ease-out; }
.site-header-nav .list-second li a:hover::before { left: 2px; }
/* footer -----------------------*/
.site-footer {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: normal;
  text-align: center;
  background-color: #434343;
  width: 100%;
  padding: 1em 0;
  position: relative;
  z-index: 1;
}
/* scroll-top */
#scrollTop {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 36px;
  height: 36px;
  padding-top: 6px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: .3s;
  cursor: pointer;
}
#scrollTop::after {
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid;
  border-color: #434343 #434343 transparent transparent;
  transform: rotate(-45deg);
  opacity: .5;
  transition: .3s;
}
#scrollTop:hover::after { opacity: 1; }
/* Contents -----------------------*/
main { width:100%; max-width: 1920px; min-width: 1280px; position: relative; }
main > article { padding-bottom: var(--margin-vrtical-main); position: relative; z-index: 1; }
:not(.top) .article-header { padding-top: 120px; }
:not(.top) .article-header h1 {
  font-size: 4.2rem;
  text-align: center;
  line-height: 2;
  padding-top: 84px; 
  border-top: 1px solid var(--color-text-main);
  position: relative;
}
.page-child .article-header h1 { border-bottom: 1px solid var(--color-text-main); }
.article-header .parent-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.4rem;
  line-height: 1.2;
  background: #fff;
  width: 240px;
  height: 240px;
  border-radius: 120px;
  border: 1px solid var(--color-text-main);
  position: absolute;
  top: -120px;
  left: 132px;
}
.article-container { margin-top: var(--margin-vrtical-main); }
.article-container .inner,
.article-footer { width: 900px; margin: 0 auto;  }
.article-footer { margin-top: var(--margin-vrtical-main); }
/*  -----------------------------------------------------------------------------------------------

Top

*/
.top .site-header-logo { visibility: hidden; }
.top .bg-wrap { top: 48%; }
.top main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 234px);
  min-height: 680px;
  padding-bottom: 72px;
}
.top-header h1 img { margin: 0 auto; }
.top .article-container .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 1280px;
  padding: 0;
  margin-top: 30px;
}
.top .article-container section {
  display: flex;
  align-items: center;
  height: 246px;
  margin: 0 30px;
  position: relative;
}
.top .article-container h2 { font-size: 2.4rem; }
.top .article-container ol {
  line-height: 1.4;
  list-style-position: inside;
  padding: 0;
  margin: 0 0 0 1.35em;
  text-indent: -1.35em;
}
.top .article-container li { margin: .4em 0; }
.top .article-container h2 a,
.top .article-container li { transition: .3s; }
.top .article-container h2 a:hover,
.top .article-container li:hover { color: #000; }
.top .article-container section::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.block-top-01 section::before { border-radius: 50%; }
.block-top-01 section:nth-child(1) { padding-left: 144px; }
.block-top-01 section:nth-child(1)::before { background-color: #212121; width: 120px; height: 120px; }
.block-top-01 section:nth-child(2) { padding-left: 234px; }
.block-top-01 section:nth-child(2)::before { background-color: #5c525a; width: 210px; height: 210px; }

.block-top-02 section { padding-left: 54px; }
.block-top-02 section::before { width: 30px; height: 246px; border-radius: 50%; }
.block-top-02 section:nth-child(1)::before { background-color: #e63556; }
.block-top-02 section:nth-child(2)::before { background-color: #ffd900; }
.block-top-02 section:nth-child(3)::before { background-color: #5db6e7; }

/*  -----------------------------------------------------------------------------------------------

Philosophy

*/
.philosophy .site-header-nav > li:nth-child(1) .primary a::after { opacity: 1; }
.philosophy .category { background-color: #000; }
.list-philosophy { line-height: 1.6; }
.list-philosophy li { margin: .5em 0 .5em 1.32em; text-indent: -1.32em; }
.list-philosophy li span { margin-right: .2em; }
.philosophy .image { text-align: right; }
.philosophy .image img { display: inline; width: 580px; }
.philosophy .image figcaption { margin: .5em 2em 0 0; font-weight: 500; }
/*.philosophy .link { display: flex; align-items: flex-end;  justify-content: space-between; }*/
.philosophy h2 { font-size: 1.8rem; margin: 1em 0 -1.25em; }
.philosophy h2::before { content: "■"; font-size: 1.5em; }
#owner .parent-ttl { font-size: 3.6rem; }
/*  ----------------------------------------------------------------------------------- -----------

Company

*/
.company .site-header-nav > li:nth-child(2) .primary span::after { opacity: 1; }
.company .category { background-color: #262626; }
.company .lead { display: flex; justify-content: center; margin-bottom: var(--margin-vrtical-main); }
.company .article-footer ul { display: flex; justify-content: center; width: 960px; }
.company .article-footer li { flex: 0 0 calc(100%/3); padding: 0 1em; }
.company .article-footer a {
  display: flex;
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  padding: 1em;
  border: 1px solid rgba(0,0,0,.2);
  transition: .3s;
}
.company .article-footer .current a { pointer-events: none; }
.company .article-footer .current a,
.company .article-footer a:hover { color: #fff; background-color: rgba(0,0,0,.5); border-color: rgba(0,0,0,.2); }
/* overview */
.table-overview { border-collapse: separate; table-layout: fixed; max-width: 1024px; margin: 0 auto; }
.table-overview th,
.table-overview td { line-height: 1.6; padding: 1em 0; vertical-align: top; }
.table-overview th { text-align: left; width: 24%; border-top: 2px solid var(--color-text-main); }
.table-overview td:not(.space) { border-top: 2px solid #ccc; }
.table-overview tr:last-child th { border-bottom: 2px solid var(--color-text-main); }
.table-overview tr:last-child td:not(.space) { border-bottom: 2px solid #ccc; }
.table-overview .space { width: 12px; }
.table-overview ul.block li:not(:first-child) { margin-top: .25em; }
.list-officer { display: flex; flex-wrap: wrap; margin: 0; }
.list-officer dt { flex-basis: 25%; margin-top: .25em; }
.list-officer dd { flex-basis: 75%; margin-top: .25em; }
.list-officer .last { margin-top: 1.5em; }
.list-bis { display: flex; margin-top: 0; }
.list-bis dt { width: 6em; }
.list-bis ul { padding: 0; margin: 0; list-style: inside; }
.table-overview .list-partner li:last-child { text-align: right; }
/* restaurant */
.restaurant .article-container .inner { width: 100%; }
.list-restaurant li { display: flex; justify-content: flex-end; align-items: center; margin: var(--margin-vrtical-main) 0; }
.list-restaurant li:nth-child(odd) { flex-direction: row-reverse; }
.list-restaurant li .desc { margin: 0 1em; }
.list-restaurant h2 { display: flex; align-items: center; }
.list-restaurant .logo { flex: 0 1 auto; }
.list-restaurant .name { flex: 1 0 auto; font-size: 2.4rem; line-height: 1.6; margin-left: 1.5em; }
.list-restaurant .name small { display: block; font-size: 1.8rem; font-weight: normal; }
.list-restaurant p { margin-bottom: 0; }
.list-restaurant .image img { width: 630px; height: 386px; }
/* welfare */
.list-welfare li { width: 100%; margin: 54px 0; }
.list-welfare li:nth-child(even) { text-align: right; }
.list-welfare li img { display: inline; }
.list-welfare li:nth-child(1) img { width: 628px; }
.list-welfare li:nth-child(2) img { width: 822px; }
.list-welfare li:nth-child(3) img { width: 709px; }
.list-welfare li:nth-child(4) img { width: 800px; }
/* realestate */
.realestate .article-container .inner { width: 100%; }
.list-realestate li { position: relative; }
.list-realestate li:nth-child(2) { margin-top: 20px; }
.list-realestate li:nth-child(3) { margin-top: -276px; }
.list-realestate li:nth-child(5) { margin-top: var(--margin-vrtical-main); }
.list-realestate li:nth-child(even) div { text-align: right; }
.list-realestate li img { display: inline; }
.list-realestate li:nth-child(1) img { width: 860px; }
.list-realestate li:nth-child(2) img { width: 470px; }
.list-realestate li:nth-child(3) img { width: 547px; }
.list-realestate li:nth-child(4) img { width: 1055px; }
.list-realestate li:nth-child(5) img { width: 1082px; }
.list-realestate p { font-size: 2.6rem; font-weight: bold; line-height: 1.6; position: absolute; }
.list-realestate li:nth-child(1) p { top: 256px; left: 538px; }
.list-realestate li:nth-child(2) p { top: 72px; right: 490px; }
.list-realestate li:nth-child(3) p { top: 40px; left: 570px; }
.list-realestate li:nth-child(4) p { top: 168px; right: 560px; }
.list-realestate li:nth-child(5) p { top: 90px; left: 800px; }

/*  -----------------------------------------------------------------------------------------------

創業期

*/
.sougyouki .site-header-nav > li:nth-child(3) .primary span::after { opacity: 1; }
.sougyouki .category { background-color: #e7380d; }
.sougyouki .article-container figure { margin-top: 2em; }
.sougyouki article:nth-of-type(2) .article-header .parent-ttl { font-size: 2.9rem; }
.sougyouki .article-container .flex { display: flex; justify-content: space-between; }

#companyname .image { text-align: right; }
#companyname .image img { display: inline; width: 580px; }
#financial .article-header .parent-ttl { font-size: 3.4rem; }
#financial .article-container strong { color: #f00; }
#diversification .article-header .parent-ttl { font-size: 3.4rem; }

/*  -----------------------------------------------------------------------------------------------

成長期

*/
.seichouki .site-header-nav > li:nth-child(4) .primary span::after { opacity: 1; }
.seichouki .category { background-color: #f6c000; }
.seichouki h2 { font-size: 1.8rem; margin: 1em 0 -1.25em; }
.seichouki h2::before { content: "■"; font-size: 1.5em; }
.seichouki .article-container figure { margin-top: 2em; }
.seichouki .article-container strong { color: #f00; }
/* resource */
#resource h2:not(:first-child) { margin-top: 3em; }
#resource .article-header .parent-ttl { font-size: 4.5rem; }
#resource .image { margin: 2em 0; }
#resource .image img { display: inline; }
#resource .image.right { text-align: right; }
#resource .image.flex img { width: 382px; height: 255px; }
#resource .image.flex img:last-child { margin-left: -20px; }
/* tanpopo */
#tanpopo .article-header .parent-ttl { font-size: 3.5rem; }
#tanpopo .lead { justify-content: flex-start; }
#tanpopo .container-list ul { padding: 0; margin: 0; list-style: inside; }
.list-tanpopo li { margin: 60px 0; }
.list-tanpopo li:nth-child(1) { text-align: right; }
.list-tanpopo li:nth-child(1) img { display: inline; width: 651px; }
.list-tanpopo li:nth-child(2) { display: flex; }
.list-tanpopo li:nth-child(2) p { margin: 60px 40px; }
.list-tanpopo li:nth-child(2) img { width: 588px; }
.list-tanpopo li:nth-child(3) { margin-top: -394px; display: flex; justify-content: flex-end; }
.list-tanpopo li:nth-child(3) div { width: 650px; }
.list-tanpopo li:nth-child(3) img { width: 496px; }
/* fukushima */
#fukushima .lead { display: flex; justify-content: center; /*font-size: 24px;*/ margin-bottom: var(--margin-vrtical-main); }
#fukushima .article-container .inner { width: 830px; }
#fukushima .lead { justify-content: flex-start; }
#fukushima h2 { font-size: 1.8rem; margin: 1em 0 -1.25em; }
#fukushima h2::before { content: "■"; font-size: 1.5em; }
#fukushima .alt-title { font-size: 2.4rem; font-weight: bold; margin-top: 100px; border-bottom: 2px solid #ccc8c7; }
#fukushima .image img { display: inline; }
#fukushima .image.right { text-align: right; }
#fukushima .image.flex img { width: 301px; height: 201px; }
#fukushima .image.flex.first { margin-top: -40px; }
#fukushima .image.flex.first img { width: 410px; height: 275px; }
#fukushima .image.flex img:nth-of-type(2) { margin-left: -20px; }
#fukushima .image.flex.right { text-align: right; margin: 20px 0 30px; }
#fukushima .image.flex.last { margin-bottom: 50px; }
#fukushima .image.flex.last a { text-align: center; position: absolute; right: 36px; bottom: 0; }

/*  -----------------------------------------------------------------------------------------------

未来生成

*/
.miraiseisei .site-header-nav > li:nth-child(5) .primary span::after { opacity: 1; }
.miraiseisei .category { background-color: #00b8ee; }
.miraiseisei article .article-header .parent-ttl { font-size: 2.9rem; }
.miraiseisei h2 { font-size: 1.8rem; margin: 1em 0 -1.25em; }
.miraiseisei h2::before { content: "■"; font-size: 1.5em; }
.miraiseisei .image { margin-top: 40px; }
#future02 .para { margin-top: 60px; }
#iso .article-header .parent-ttl { font-size: 3.5rem; }
#iso .image_iso_01 { width: 476px; }
#iso .para { margin-top: 2em; }
#iso dl { margin: 2em 0 2em 1em; }
#iso dt { font-weight: bold; }
#iso dt::before { content: "・"; display: inline-block; width: 1em; text-align: center; }
#iso dd { margin-left: 1em; }
