@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, 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, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  display: block;
}

th {
  text-align: left;
}

@-webkit-keyframes yuge {
  0% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33% {
    -webkit-transform: translate(2px, 7px);
    transform: translate(2px, 7px);
  }
  66% {
    -webkit-transform: translate(-2px, -7px);
    transform: translate(-2px, -7px);
  }
  100% {
    -webkit-transform: translate(0, -30px);
    transform: translate(0, -30px);
    opacity: 0;
  }
}
@keyframes yuge {
  0% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33% {
    -webkit-transform: translate(2px, 7px);
    transform: translate(2px, 7px);
  }
  66% {
    -webkit-transform: translate(-2px, -7px);
    transform: translate(-2px, -7px);
  }
  100% {
    -webkit-transform: translate(0, -30px);
    transform: translate(0, -30px);
    opacity: 0;
  }
}
/* 点滅 */
.blinking {
  -webkit-animation: blink 0.5s ease-out infinite alternate;
  animation: blink 0.5s ease-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.fadein {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: transform 1s ease 0s , opacity 1s ease 0s , visibility 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s , visibility 1s ease 0s , -webkit-transform 1s ease 0s;
  transition: opacity 1s ease 0s , visibility 1s ease 0s , -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s , opacity 1s ease 0s , visibility 1s ease 0s;
  transition: transform 1s ease 0s , opacity 1s ease 0s , visibility 1s ease 0s , -webkit-transform 1s ease 0s;
}
.fadein.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* base --------------------------*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*
@supports(-webkit-touch-callout: none){
	html{
		height: -webkit-fill-available;
	}
	body{
		min-height: 100vh;
		min-height: -webkit-fill-available;
	}
}
*/
body {
  height: 100vh;
}

@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
  background: #16974B;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 400;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  body {
    font-size: 1.4rem;
  }
}

main {
  background: #fff;
}

a {
  color: inherit;
}

a, button {
  -webkit-transition: color 0.5s ease, opacity 0.5s ease, background 0.5s ease, transform 0.2s ease;
  -webkit-transition: color 0.5s ease, opacity 0.5s ease, background 0.5s ease, -webkit-transform 0.2s ease;
  transition: color 0.5s ease, opacity 0.5s ease, background 0.5s ease, -webkit-transform 0.2s ease;
  transition: color 0.5s ease, opacity 0.5s ease, background 0.5s ease, transform 0.2s ease;
  transition: color 0.5s ease, opacity 0.5s ease, background 0.5s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
a.outline:focus, button.outline:focus {
  outline: 1px solid rgb(0, 79, 255);
}
a:active, button:active {
  border-color: rgba(0, 0, 0, 0);
}

img {
  width: auto;
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}

p {
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  p {
    line-height: 1.6;
  }
}

strong {
  font-weight: 700;
}

figure img {
  width: 100%;
}

rt {
  letter-spacing: -0.01em;
  padding-bottom: 0;
  line-height: 1;
}

[data-ruby] {
  position: relative;
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -0.8em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.4em;
}

.clearfix,
section {
  zoom: 1;
}

.clearfix:before,
.clearfix:after,
.section:before,
.section:after {
  content: "";
  display: table;
}

.clearfix:after,
.section:after {
  clear: both;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .aligncenter {
    width: 100%;
    float: none;
  }
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .alignright {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .alignleft {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
}

.noscroll {
  overflow: hidden;
  height: 100%;
}

.pc {
  display: inline;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .sp {
    display: inline;
  }
}

nav.pc,
p.pc {
  display: block;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  nav.pc,
  p.pc {
    display: none;
  }
}

nav.sp,
p.sp {
  display: none;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  nav.sp,
  p.sp {
    display: block;
  }
}

*:focus {
  outline: none;
}

figure.pc {
  display: block;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  figure.pc {
    display: none;
  }
}

figure.sp {
  display: none;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  figure.sp {
    display: block;
  }
}

.reg {
  font-size: 70%;
}
/*form*/
input[type=text],
input[type=email],
input[type=tel],
input[type=submit],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgb(149, 132, 69);
  min-height: 40px;
  padding: 0 10px;
  font-size: 16px;
  -webkit-transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, filter 0.4s ease;
  -webkit-transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, -webkit-filter 0.4s ease;
  transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, -webkit-filter 0.4s ease;
  transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, filter 0.4s ease;
  transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, filter 0.4s ease, -webkit-filter 0.4s ease;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  background-color: rgba(149, 132, 69, 0.1);
}

input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0;
}

textarea {
  min-height: 200px;
  padding: 10px;
  resize: vertical;
}

select {
  background: #fff url(../imgs/common/select_arrow.svg) no-repeat right center/auto 100%;
  cursor: pointer;
}

button {
  -webkit-transition: opacity 0.5s ease, color 0.5s ease, background 0.5s ease, filter 0.5s ease;
  -webkit-transition: opacity 0.5s ease, color 0.5s ease, background 0.5s ease, -webkit-filter 0.5s ease;
  transition: opacity 0.5s ease, color 0.5s ease, background 0.5s ease, -webkit-filter 0.5s ease;
  transition: opacity 0.5s ease, color 0.5s ease, background 0.5s ease, filter 0.5s ease;
  transition: opacity 0.5s ease, color 0.5s ease, background 0.5s ease, filter 0.5s ease, -webkit-filter 0.5s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
}

/*=============================================
Layout
=============================================*/
/* main --------------------------*/
.main {
  overflow: hidden;
}
/* header --------------------------*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 11;
  overflow-x: hidden;
  background: #fff;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .header {
    height: 70px;
  }
}
.header.fixed {
  position: fixed;
  background: #fff;
}
.header h1 {
  position: absolute;
  top: 10px;
  left: 30px;
  width: 527px;
  height: 70px;
  pointer-events: all;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .header h1 {
    top: 10px;
    left: 8px;
    width: 185.37px;
    height: 50.96px;
  }
}
.header h1 a {
  pointer-events: all;
  display: block;
}
.header h1 a:nth-child(1) {
  width: 250px;
  height: 82.9px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .header h1 a:nth-child(1) {
    width: 185.37px;
    height: 50.96px;
  }
}
.header h1 a:nth-child(1) img {
  width: 100%;
}
.header h1 a:nth-child(2) {
  position: absolute;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #16974b;
  text-decoration: none;
  top: 23px;
  left: 270px;
  font-size: 2.2rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .header h1 a:nth-child(2) {
    font-size: 1.1rem;
    top: 23px;
    left: 97px;
  }
}

#second .header {
  background: #fff;
}

.entry-btn {
  position: fixed;
  top: 0;
  width: 360px;
  z-index: 11;
  height: 80px;
  right: 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-btn {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 70px;
    position: fixed;
  }
}
.entry-btn ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.entry-btn ul li {
  width: 50%;
}
.entry-btn ul li:nth-child(1) a {
  background: #d0d922;
}
.entry-btn ul li:nth-child(2) a {
  background: #16974b;
}
.entry-btn ul li:nth-child(2) span {
  font-size: 90%;
  display: inline-block;
  margin-right: 5px;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  position: relative;
  top: -1px;
}
.entry-btn a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  text-decoration: none;
  color: #fff;
}

.global-nav {
  z-index: 10;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(8, 86, 40, 0.8);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
@media screen and (max-height: 560px) {
  .global-nav {
    overflow: scroll;
    padding: 130px 30px 50px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .global-nav {
    height: 100dvh;
    overflow: scroll;
    padding: 100px 30px;
  }
}
.global-nav.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.global-nav a:hover {
  opacity: 0.5;
}
.global-nav > nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 1024px;
  width: 100%;
  padding: 0 50px 100px;
  margin-top: 40px;
}
@media screen and (max-height: 560px) {
  .global-nav > nav {
    margin: 0 auto;
    padding: 0 0 200px;
    width: 1000px;
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .global-nav > nav {
    padding: 0;
    width: 100%;
    margin: 0;
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.global-nav > nav > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .global-nav > nav > ul {
    display: block;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .global-nav > nav > ul > li {
    width: 100%;
    margin: 0 0 70px;
  }
}
.global-nav > nav > ul > li:nth-child(1) {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 0;
}
.global-nav > nav > ul > li:nth-child(1) h3 {
  border: none;
  font-size: 2.4rem;
  text-align: center;
}
.global-nav > nav > ul > li:nth-child(1) {
  display: none;
}
.global-nav > nav > ul > li:nth-child(4) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.global-nav > nav > ul > li:nth-child(5) {
  grid-column: 3/4;
  grid-row: 1/2;
}
.global-nav > nav > ul > li:nth-child(6) {
  grid-column: 3/4;
  grid-row: 2/3;
}
.global-nav > nav > ul > li h3 {
  font-size: 2.8rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #fff;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .global-nav > nav > ul > li h3 {
    font-size: 2rem;
  }
}
.global-nav > nav > ul > li a {
  text-decoration: none;
  text-transform: uppercase;
}
.global-nav > nav > ul > li li {
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.8rem;
}
.global-nav > nav > ul > li h4 {
  margin-bottom: 15px;
}
.global-nav > nav > ul > li ul ul {
  margin-top: -5px;
}
.global-nav > nav > ul > li ul ul li {
  margin-bottom: 5px;
  text-indent: -0.5em;
  padding-left: 0.5em;
  line-height: 1.2;
  font-size: 1.4rem;
}
.global-nav > nav > ul > li ul ul li::before {
  content: "- ";
}

.burger-menu {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #085628;
  z-index: 11;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .burger-menu {
    width: 70px;
    height: 70px;
    position: fixed;
  }
}
.burger-menu span {
  -webkit-transition: transform 0.2s ease,  width 0.2s ease, top 0.2s ease 0.2s, left 0.2s ease , bottom 0.2s ease 0.2s, margin 0.2s ease 0.2s, opacity 0.2s ease;
  -webkit-transition: width 0.2s ease, top 0.2s ease 0.2s, left 0.2s ease , bottom 0.2s ease 0.2s, margin 0.2s ease 0.2s, opacity 0.2s ease,  -webkit-transform 0.2s ease;
  transition: width 0.2s ease, top 0.2s ease 0.2s, left 0.2s ease , bottom 0.2s ease 0.2s, margin 0.2s ease 0.2s, opacity 0.2s ease,  -webkit-transform 0.2s ease;
  transition: transform 0.2s ease,  width 0.2s ease, top 0.2s ease 0.2s, left 0.2s ease , bottom 0.2s ease 0.2s, margin 0.2s ease 0.2s, opacity 0.2s ease;
  transition: transform 0.2s ease,  width 0.2s ease, top 0.2s ease 0.2s, left 0.2s ease , bottom 0.2s ease 0.2s, margin 0.2s ease 0.2s, opacity 0.2s ease,  -webkit-transform 0.2s ease;
  display: block;
  background: #fff;
  height: 3px;
  position: absolute;
  width: 40px;
  left: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .burger-menu span {
    width: 35px;
    left: 17px;
  }
}
.burger-menu span:first-child {
  top: 25px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .burger-menu span:first-child {
    top: 20px;
  }
}
.burger-menu span:nth-child(2) {
  top: 50%;
  margin-top: -1.5px;
}
.burger-menu span:last-child {
  bottom: 25px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .burger-menu span:last-child {
    bottom: 20px;
  }
}
.burger-menu.active span {
  -webkit-transition: transform 0.2s ease 0.2s, width 0.2s ease, top 0.2s ease, left 0.2s ease , bottom 0.2s ease, margin 0.2s ease, opacity 0.2s ease;
  -webkit-transition: width 0.2s ease, top 0.2s ease, left 0.2s ease , bottom 0.2s ease, margin 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease 0.2s;
  transition: width 0.2s ease, top 0.2s ease, left 0.2s ease , bottom 0.2s ease, margin 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease 0.2s;
  transition: transform 0.2s ease 0.2s, width 0.2s ease, top 0.2s ease, left 0.2s ease , bottom 0.2s ease, margin 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease 0.2s, width 0.2s ease, top 0.2s ease, left 0.2s ease , bottom 0.2s ease, margin 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease 0.2s;
}
.burger-menu.active span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1.5px;
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1.5px;
}
/* footer --------------------------*/
.footer {
  background: #16974b;
  color: #fff;
  padding: 30px 0 30px;
  overflow-x: hidden;
}
.footer a {
  text-decoration: none;
}
.footer .inner {
  margin: 0 auto;
  padding: 0 80px;
  max-width: 1500px;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer .inner {
    padding: 0 15px;
  }
}
.footer-pagetop {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../imgs/_common/btn_pagetop.svg") no-repeat;
  background-size: contain;
  z-index: 9;
  display: none;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-pagetop {
    right: 10px;
    bottom: 80px;
    width: 40px;
    height: 40px;
  }
}
.footer-ttl {
  font-size: 1.9rem;
  font-weight: 500;
  position: absolute;
  top: 5px;
  left: 40px;
  color: #fff;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-ttl {
    position: static;
    text-align: center;
    margin-bottom: 25px;
  }
}
.footer-nav1 {
  margin: 0 0 30px 230px;
  font-weight: 500;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-nav1 {
    margin-left: 0;
  }
}
.footer-nav1 > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-nav1 > ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer-nav1 > ul > li {
  margin-right: 20px;
  text-transform: uppercase;
  /*
  &:nth-child(1){
  	width: 180px;
  	@include mq{
  		width: 48%;
  	}
  }

  &:nth-child(2){
  	width:180px;
  	@include mq{
  		width: 48%;
  	}
  }

  &:nth-child(3){
  	width: 183px;
  	@include mq{
  		width: 48%;
  	}
  }

  &:nth-child(4){
  	margin-right: 0;
  	width: 225px;
  	@include mq{
  		width: 48%;
  	}
  }
  */
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-nav1 > ul > li {
    margin: 0;
    margin-bottom: 30px;
    width: 48%;
  }
}
.footer-nav1 > ul > li h3 {
  font-size: 1.9rem;
  -webkit-flex-wrap: 700;
      -ms-flex-wrap: 700;
          flex-wrap: 700;
  line-height: 1.5;
  padding-bottom: 4px;
  border-bottom: 2px dotted #fff;
  margin-bottom: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-nav1 > ul > li h3 {
    font-size: 4.2666666667vw;
    line-height: 1.3;
    letter-spacing: -0.03em;
  }
}
.footer-nav1 > ul > li h4 {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-nav1 > ul > li h4 {
    margin-bottom: 10px;
  }
}
.footer-nav1 > ul > li li {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-nav1 > ul > li li {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
.footer-nav1 > ul > li ul ul {
  margin-top: -5px;
}
.footer-nav1 > ul > li ul ul li {
  margin-bottom: 5px;
  text-indent: -0.5em;
  padding-left: 0.5em;
  line-height: 1.2;
  font-size: 1.2rem;
}
.footer-nav1 > ul > li ul ul li::before {
  content: "- ";
}
.footer-nav2 {
  margin-bottom: 43px;
}
.footer-nav2 > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-nav2 > ul li a {
  position: relative;
  display: block;
  padding-right: 25px;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-nav2 > ul li a {
    font-size: 1.3rem;
    padding-right: 25px;
  }
}
.footer-nav2 > ul li a::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 15px;
  content: "";
  display: block;
  background: url("../imgs/_common/icon_blank2.svg") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-nav2 > ul li a::after {
    width: 15px;
    height: 15px;
    background-size: contain;
  }
}
.footer-nav2 > ul li:nth-child(1) {
  margin-right: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-nav2 > ul li:nth-child(1) {
    margin-right: 10px;
  }
}
.footer-copyright {
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .footer-copyright {
    font-size: 1.2rem;
  }
}

/*=============================================
Object
=============================================*/
/* Component */
/* Component --------------------------*/
.note {
  font-size: 80%;
}

.btn {
  border-radius: 100px;
  background: #fff;
  display: inline-block;
  padding: 10px 40px 9px;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  color: #16974b;
  text-decoration: none;
  position: relative;
  min-width: 280px;
  min-height: 40px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .btn {
    font-size: 1.4rem;
    min-width: 220px;
    min-height: 32px;
    padding: 8px 30px 8px;
  }
}
.btn:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.btn::after {
  content: "";
  display: block;
  background: url("../imgs/_common/arrow1_green.svg") no-repeat center;
  background-size: contain;
  width: 22px;
  height: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .btn::after {
    width: 16px;
    height: 12px;
    background-size: contain;
    right: 10px;
  }
}
.btn.green1 {
  color: #fff;
  background-color: #16974b;
}
.btn.green1::after {
  background-image: url("../imgs/_common/arrow1.svg");
}
.btn.green2 {
  background: #d0d922;
}

#entry {
  background: #d0d922;
  text-align: center;
  padding: 80px 40px 67px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #entry {
    padding: 75px 15px;
  }
}
#entry h2 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 28px;
  line-height: 1;
  color: #16974b;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #entry h2 {
    font-size: 7.4666666667vw;
    margin-bottom: 20px;
    text-align: center;
  }
}
#entry h2 span {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #entry h2 span {
    padding-right: 40px;
  }
}
#entry h2 span::after {
  position: absolute;
  top: 10px;
  right: -40px;
  width: 30px;
  height: 23px;
  content: "";
  display: block;
  background: url("../imgs/_common/icon_blank1.svg") no-repeat center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #entry h2 span::after {
    top: 2px;
    right: 0;
  }
}
#entry .btn {
  font-size: 2.4rem;
  min-width: 300px;
  min-height: 56px;
  padding-top: 15px;
}
#entry .btn::after {
  width: 30px;
  height: 30px;
  right: 25px;
}

.faq {
  padding-bottom: 142px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .faq {
    padding-bottom: 50px;
  }
}
.faq .ttl {
  background: url("../imgs/style/index/h2_bg2.jpg") no-repeat center;
  background-size: cover;
  height: 250px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .faq .ttl {
    height: 100px;
  }
}
.faq .flow {
  margin-bottom: 10px;
}
.faq .flow li {
  display: inline-block;
  white-space: nowrap;
}
.faq .flow li:first-child::before {
  display: none;
}
.faq .flow li::before {
  content: "→";
}
.faq p:last-child {
  margin-bottom: 0;
}
.faq section {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto 60px;
}
.faq section:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .faq section {
    padding: 0 15px 0;
  }
}
.faq section h3 {
  font-weight: 700;
  font-size: 5rem;
  color: #16974b;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  margin-bottom: 41px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .faq section h3 {
    font-size: 6.4vw;
    margin-bottom: 20px;
  }
}
.faq section dl {
  border-bottom: 1px solid #707070;
}
.faq section dl:nth-child(1) {
  border-top: 1px solid #707070;
}
.faq section dt,
.faq section dd {
  padding: 18px;
  line-height: 1.8;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .faq section dt,
  .faq section dd {
    font-size: 1.6rem;
    padding: 15px;
  }
}
.faq section dt {
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .faq section dt {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.faq section dt::before {
  content: "Q. ";
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .faq section dt::before {
    position: absolute;
    top: 13px;
    left: 15px;
    display: block;
    content: "Q. ";
  }
}
.faq section dt::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../imgs/style/index/faq_open.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 13px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .faq section dt::after {
    width: 25px;
    height: 25px;
  }
}
.faq section dt:hover {
  background: #eee;
}
.faq section dt.active {
  background: #16974b;
  color: #fff;
}
.faq section dt.active::after {
  background-image: url("../imgs/style/index/faq_close.svg");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .faq section dt.active::after {
    width: 20px;
    height: 20px;
  }
}
.faq section dd {
  display: none;
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  visibility: hidden;
}
.modal-close {
  width: 24px;
  height: 24px;
  background: url("../imgs/style/welfare/modal-close.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 2;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.64);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.modal__wrap {
  width: 100vw;
}
.modal__swiper {
  height: 100vh;
  pointer-events: none;
}
.modal__swiper .swiper-wrapper {
  height: 100%;
}
.modal__swiper .swiper-slide {
  width: 900px;
  height: 100%;
  position: relative;
  will-change: transform;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide {
    width: 90%;
  }
}
.modal__swiper .swiper-slide > div {
  pointer-events: all;
  background: #d0d922;
  width: 100%;
  min-height: 464px;
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide > div {
    padding: 15px;
    border-bottom-left-radius: 20px;
  }
}
.modal__swiper .swiper-slide span {
  font-weight: 500;
  font-size: 9rem;
  color: rgba(8, 86, 40, 0.5);
  position: absolute;
  top: 18px;
  left: 27px;
  display: block;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide span {
    position: static;
    font-size: 5rem;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
.modal__swiper .swiper-slide h5 {
  font-weight: 700;
  font-size: 4.5rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #085628;
  text-align: center;
  margin-left: 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide h5 {
    font-size: 3rem;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.modal__swiper .swiper-slide figure.fig1 {
  width: 190.5px;
  margin: 39px auto 40px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide figure.fig1 {
    width: auto;
    text-align: center;
    height: 180px;
    margin: 20px auto;
  }
  .modal__swiper .swiper-slide figure.fig1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.modal__swiper .swiper-slide figure.fig2 {
  width: 180.74px;
  margin: 58px auto 52px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide figure.fig2 {
    width: auto;
    text-align: center;
    height: 180px;
    margin: 20px auto;
  }
  .modal__swiper .swiper-slide figure.fig2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.modal__swiper .swiper-slide figure.fig3 {
  width: 120px;
  margin: 45px auto 23px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide figure.fig3 {
    width: auto;
    text-align: center;
    height: 180px;
    margin: 20px auto;
  }
  .modal__swiper .swiper-slide figure.fig3 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.modal__swiper .swiper-slide figure.fig4 {
  width: 220px;
  margin: 36px auto 49px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide figure.fig4 {
    width: auto;
    text-align: center;
    height: 180px;
    margin: 20px auto;
  }
  .modal__swiper .swiper-slide figure.fig4 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.modal__swiper .swiper-slide p {
  display: inline-block;
  text-align: left;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
  max-width: 620px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide p {
    font-size: 1.5rem;
    max-width: 80%;
  }
}
.modal__swiper .swiper-slide ul {
  display: inline-block;
  list-style: disc;
  max-width: 620px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide ul {
    max-width: 80%;
  }
}
.modal__swiper .swiper-slide ul li {
  text-align: left;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-slide ul li {
    font-size: 1.5rem;
    margin-bottom: 5px;
    line-height: 1.2;
  }
}
.modal__swiper .swiper-button-next {
  z-index: 999;
  width: 24px;
  height: 40px;
  background: url("../imgs/style/welfare/modal-arrow-next.svg") no-repeat center;
  background-size: contain;
  right: 40px;
  margin-top: 10px;
}
.modal__swiper .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-button-next {
    right: 10px;
    width: 20px;
    height: 34px;
  }
}
.modal__swiper .swiper-button-prev {
  z-index: 999;
  width: 24px;
  height: 40px;
  background: url("../imgs/style/welfare/modal-arrow-prev.svg") no-repeat center;
  background-size: contain;
  left: 40px;
  margin-top: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .modal__swiper .swiper-button-prev {
    left: 10px;
    width: 20px;
    height: 34px;
  }
}
.modal__swiper .swiper-button-prev::after {
  display: none;
}

.bosyuu {
  padding-top: 50px;
  padding-bottom: 150px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .bosyuu {
    padding-bottom: 50px;
  }
}
.bosyuu .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .bosyuu .inner {
    padding: 0 15px;
  }
}
.bosyuu table {
  width: 100%;
  max-width: 1175px;
}
.bosyuu table tr {
  border-bottom: 1px solid #16974b;
}
.bosyuu table tr:nth-child(1) {
  border-top: 1px solid #16974b;
}
.bosyuu table tr:nth-child(3) dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.bosyuu table th,
.bosyuu table td {
  padding: 30px 0;
  line-height: 1.5;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .bosyuu table th,
  .bosyuu table td {
    display: block;
    font-size: 1.6rem;
  }
}
.bosyuu table th {
  width: 15.5833333333%;
  font-weight: 700;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .bosyuu table th {
    width: 100%;
    padding: 10px 10px 5px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .bosyuu table td {
    padding: 0 10px 10px 30px;
  }
}
.bosyuu table dl {
  margin-bottom: 10px;
}
.bosyuu table dt {
  font-weight: 700;
  white-space: nowrap;
  margin-right: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .bosyuu table dt {
    margin-right: 10px;
  }
}
.bosyuu table dt::after {
  content: "：";
  display: inline-block;
  margin-left: -5px;
}

/* Project */
/* ========================================
index
========================================*/
#index.index .cover {
  width: 100%;
  position: relative;
}
#index.index .cover.hide {
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .cover {
    height: auto;
  }
}
#index.index .cover-swiper {
  position: relative;
  z-index: 1;
  height: 100%;
  opacity: 0;
}
#index.index .cover-swiper .swiper-wrapper {
  height: 100%;
}
#index.index .cover-swiper .swiper-slide {
  height: 100%;
}
#index.index .cover-text {
  position: absolute;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 5.8565153734vw;
  z-index: 2;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .cover-text {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: auto;
    bottom: 30vh;
  }
}
#index.index .cover-text p {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 3.8799414348vw;
  color: #16974b;
  line-height: 1.5;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .cover-text p {
    font-size: 7.4666666667vw;
    text-align: center;
    line-height: 1.6;
  }
}
#index.index .cover-text p span {
  white-space: nowrap;
  padding: 5px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .cover-text p span {
    color: #fff;
    background: #16974b;
    width: 100%;
  }
}
#index.index .cover .swiper-slide-active .swiper-img,
#index.index .cover .swiper-slide-duplicate-active .swiper-img,
#index.index .cover .swiper-slide-prev .swiper-img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}
#index.index .cover .swiper-slide img {
  height: auto;
  width: 100%;
}
#index.index .intro {
  background: url("../imgs/index/intro_bg.jpg") repeat-x center;
  background-size: 100% 100%;
  padding: 50px;
  color: #fff;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .intro {
    padding: 50px 15px;
  }
}
#index.index .intro p:nth-child(1) {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 5rem;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 400px;
  margin: 0 auto 30px;
  background: url("../imgs/index/intro_copy.png") no-repeat center;
  background-size: contain;
  width: 400px;
  height: 115.57px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .intro p:nth-child(1) {
    width: 300px;
    height: 86.68px;
  }
}
#index.index .intro p:nth-child(2) {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.93;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .intro p:nth-child(2) {
    font-size: 4.8vw;
  }
}
#index.index .intro nav {
  text-align: center;
}
#index.index .company {
  padding: 150px 0 200px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .company {
    padding: 50px 0;
  }
}
#index.index .company section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 75px;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .company section {
    padding: 0 15px;
  }
}
#index.index .company section h3 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #16974b;
  margin-bottom: 30px;
  line-height: 1.3;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .company section h3 {
    font-size: 7.4666666667vw;
    margin-bottom: 22px;
  }
}
#index.index .company section p {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .company section p {
    font-size: 4.8vw;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .company section nav {
    text-align: center;
  }
}
#index.index .company section.company1 {
  margin-bottom: 200px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .company section.company1 {
    margin-bottom: 76px;
  }
}
#index.index .company section.company1 figure {
  max-width: 478.06px;
  right: 38px;
  top: -90px;
  position: absolute;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .company section.company1 figure {
    position: static;
    width: 85.8666666667vw;
    margin-left: 80px;
    margin-bottom: 30px;
  }
}
#index.index .company section.company2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#index.index .company section.company2 div {
  margin-left: 54.84375%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .company section.company2 div {
    margin-left: 0;
    text-align: right;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .company section.company2 div p {
    text-align: right;
  }
}
#index.index .company section.company2 figure {
  max-width: 461.78px;
  left: 55px;
  top: -90px;
  position: absolute;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .company section.company2 figure {
    position: static;
    width: 88.2666666667vw;
    margin-left: -30px;
    margin-bottom: 30px;
  }
}
#index.index .work {
  background: #d0d922;
  padding: 137px 0 144px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .work {
    padding: 50px 0;
  }
}
#index.index .work .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 75px;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .work .inner {
    padding: 0 15px;
  }
}
#index.index .work h2 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 30px;
  color: #16974b;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .work h2 {
    font-size: 7.4666666667vw;
    text-align: center;
    margin-bottom: 20px;
  }
}
#index.index .work p {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .work p {
    font-size: 4.8vw;
    text-align: center;
  }
}
#index.index .work figure {
  width: 793.78px;
  position: absolute;
  top: -175px;
  left: 517px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .work figure {
    position: static;
    width: 206.6666666667vw;
    margin-left: -56vw;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .work nav {
    text-align: center;
  }
}
#index.index .people {
  padding: 100px 0 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people {
    padding: 50px 0;
  }
}
#index.index .people h2 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 30px;
  text-align: center;
  color: #16974b;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people h2 {
    font-size: 7.4666666667vw;
    margin-bottom: 20px;
  }
}
#index.index .people .lead {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 85px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people .lead {
    font-size: 4.8vw;
    margin-bottom: 30px;
  }
}
#index.index .people a {
  text-decoration: none;
}
#index.index .people a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#index.index .people figure {
  overflow: hidden;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  position: relative;
  margin-bottom: 14px;
  overflow: hidden;
  will-change: transform;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people figure {
    width: 62.9333333333vw;
  }
}
#index.index .people figure img {
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
#index.index .people figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  display: inline-block;
  padding: 4px 10px 6px;
  white-space: nowrap;
  background: #16974b;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 0 10px 0 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people figcaption {
    font-size: 1.2rem;
    padding: 2px 5px 3px;
  }
}
#index.index .people h3 {
  font-weight: 700;
  font-size: 2rem;
  color: #16974b;
  margin-bottom: 10px;
  line-height: 1.7;
  display: none;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people h3 {
    font-size: 1.6rem;
  }
}
#index.index .people h3 + p {
  font-weight: 700;
  font-size: 1.8rem;
  color: #16974b;
  margin-bottom: 10px;
  line-height: 1.7;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people h3 + p {
    font-size: 1.6rem;
  }
}
#index.index .people .tags li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 3px;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people .tags li {
    font-size: 1.2remx;
  }
}
#index.index .people .tags li::before {
  content: "#";
}
#index.index .people .swiper {
  padding: 0 140px 80px;
  margin-bottom: 64px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people .swiper {
    padding: 0 15px 80px;
  }
}
#index.index .people .swiper-slide {
  width: 300px;
  will-change: transform;
  /*
  &:nth-child(even){
  	margin-top: 80px;
  	@include mq{
  		margin-top: 50px;
  	}
  }
  */
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people .swiper-slide {
    width: 62.9333333333vw;
  }
}
#index.index .people .swiper-slide[data-swiper-slide-index="0"], #index.index .people .swiper-slide[data-swiper-slide-index="2"], #index.index .people .swiper-slide[data-swiper-slide-index="4"], #index.index .people .swiper-slide[data-swiper-slide-index="6"], #index.index .people .swiper-slide[data-swiper-slide-index="8"], #index.index .people .swiper-slide[data-swiper-slide-index="10"], #index.index .people .swiper-slide[data-swiper-slide-index="12"], #index.index .people .swiper-slide[data-swiper-slide-index="14"] {
  margin-top: 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .people .swiper-slide[data-swiper-slide-index="0"], #index.index .people .swiper-slide[data-swiper-slide-index="2"], #index.index .people .swiper-slide[data-swiper-slide-index="4"], #index.index .people .swiper-slide[data-swiper-slide-index="6"], #index.index .people .swiper-slide[data-swiper-slide-index="8"], #index.index .people .swiper-slide[data-swiper-slide-index="10"], #index.index .people .swiper-slide[data-swiper-slide-index="12"], #index.index .people .swiper-slide[data-swiper-slide-index="14"] {
    margin-top: 50px;
  }
}
#index.index .people .swiper-button-prev {
  position: absolute;
  top: auto;
  right: auto;
  left: 50%;
  margin: 0;
  margin-left: -50px;
  bottom: 0;
  background: url("../imgs/_common/arrow1_green.svg") no-repeat center;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 30px;
  height: 30px;
}
#index.index .people .swiper-button-prev::after {
  display: none;
}
#index.index .people .swiper-button-next {
  position: absolute;
  top: auto;
  left: auto;
  right: 50%;
  margin-right: -50px;
  bottom: 0;
  background: url("../imgs/_common/arrow1_green.svg") no-repeat center;
  width: 30px;
  height: 30px;
}
#index.index .people .swiper-button-next::after {
  display: none;
}
#index.index .people .btn-wap {
  text-align: center;
}
#index.index .project {
  padding: 60px 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project {
    padding: 50px 0;
  }
}
#index.index .project h2 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 30px;
  text-align: center;
  color: #16974b;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project h2 {
    font-size: 7.4666666667vw;
    margin-bottom: 20px;
  }
}
#index.index .project .lead {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project .lead {
    font-size: 4.8vw;
    margin-bottom: 20px;
  }
}
#index.index .project nav {
  max-width: 1200px;
  padding: 0 120px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project nav {
    padding: 0 15px;
  }
}
#index.index .project .banner1 {
  overflow: hidden;
  border: #d0d922 solid 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project .banner1 {
    border-width: 5px;
    margin-bottom: 45px;
  }
}
#index.index .project .banner1:hover::after {
  opacity: 70%;
}
#index.index .project .banner1::after {
  width: 100%;
  height: 100%;
  background: #9dc138;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  opacity: 20%;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 1;
}
#index.index .project .banner1 div {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 30px;
  z-index: 2;
  /*
  p:nth-child(3){
  	font-size: 2.4rem;
  	line-height: 1.2;
  	color: #16974B;
  	@include mq{
  		font-size: px2vw_sp(16);
  	}
  }
  */
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project .banner1 div {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: absolute;
    top: auto;
    bottom: 0;
    padding: 10px;
  }
}
#index.index .project .banner1 div p:nth-child(1) {
  font-size: 2.8rem;
  font-family: "Big Shoulders Stencil Display", sans-serif;
  color: #16974b;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  width: 106.46px;
  height: 24.48px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../imgs/index/project_txt01.svg") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project .banner1 div p:nth-child(1) {
    font-size: 4vw;
    width: 78.07px;
    height: 17.95px;
  }
}
#index.index .project .banner1 div p:nth-child(2) {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project .banner1 div p:nth-child(2) {
    font-size: 5.3333333333vw;
  }
}
#index.index .project .banner2 {
  overflow: hidden;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project .banner2 {
    margin-bottom: 45px;
  }
}
#index.index .project .banner2:hover::after {
  opacity: 80%;
}
#index.index .project .banner2::after {
  width: 100%;
  height: 100%;
  background: #085628;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  opacity: 40%;
  z-index: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#index.index .project .banner2 p {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 30px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  z-index: 2;
  color: #fff;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project .banner2 p {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: 8px;
    font-size: 7.4666666667vw;
  }
}
#index.index .project .banner3 {
  overflow: hidden;
}
#index.index .project .banner3:hover::after {
  opacity: 80%;
}
#index.index .project .banner3::after {
  width: 100%;
  height: 100%;
  background: #085628;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  opacity: 40%;
  z-index: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#index.index .project .banner3 p {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 30px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  z-index: 2;
  color: #fff;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project .banner3 p {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: 8px;
    font-size: 7.4666666667vw;
  }
}
#index.index .project figure {
  max-width: 1274px;
}
#index.index .project a {
  text-decoration: none;
  overflow: hidden;
  display: block;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .project a {
    border-radius: 20px;
  }
}
#index.index .project a:hover .btn {
  opacity: 1;
}
#index.index .project a .btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 50px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#index.index .information {
  padding: 85px 0 128px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .information {
    padding: 50px 0;
  }
}
#index.index .information h2 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 30px;
  color: #16974b;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .information h2 {
    font-size: 7.4666666667vw;
    margin-bottom: 20px;
    text-align: center;
  }
}
#index.index .information .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 75px;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .information .inner {
    padding: 15px;
  }
}
#index.index .information .inner > div {
  margin-left: 70.8333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .information .inner > div {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .information .link {
    padding: 0 30px 0 18px;
    margin-bottom: 30px;
  }
}
#index.index .information li {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .information li {
    margin-bottom: 17px;
    font-size: 4.8vw;
  }
}
#index.index .information li a {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .information li a {
    display: block;
  }
}
#index.index .information li a::after {
  content: "";
  width: 27px;
  height: 27px;
  display: block;
  background: url("../imgs/_common/arrow_btn.svg") no-repeat center;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .information li a::after {
    right: 0;
  }
}
#index.index .information a {
  text-decoration: none;
}
#index.index .information .btn2 {
  background: url("../imgs/index/btn2@2x.png") no-repeat center;
  background-size: 100% auto;
  width: 266.74px;
  height: 41.38px;
  padding: 11px 0 9px 20px;
  font-size: 1.7rem;
  font-weight: 700;
  display: block;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .information .btn2 {
    width: 91.7306666667vw;
    height: 14.2293333333vw;
    font-size: 5.8666666667vw;
    padding: 15px 0 13px 30px;
  }
}
#index.index .information .information-illust {
  position: absolute;
  max-width: 800px;
  left: 0;
  top: -30px;
}
#index.index .information .information-illust .bw {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#index.index .information .information-illust .color {
  opacity: 0;
  -webkit-transition: opacity 1s ease 1s;
  transition: opacity 1s ease 1s;
}
#index.index .information .information-illust.show .color {
  opacity: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #index.index .information .information-illust {
    position: static;
    margin-left: -13.4vw;
    width: 116.1333333333vw;
    max-width: none;
  }
}

/* ========================================
second 
========================================*/
#second {
  padding-top: 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second {
    padding-top: 70px;
  }
}
#second .sec-ttl {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 5rem;
  color: #16974B;
  margin-bottom: 30px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second .sec-ttl {
    font-size: 9.6vw;
    margin-bottom: 22px;
  }
}
#second .sec-lead {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second .sec-lead {
    font-size: 1.8rem;
    margin-bottom: 30px;
    white-space: nowrap;
  }
}

/* ========================================
people
========================================*/
#second.people.index .cover {
  position: relative;
}
#second.people.index .cover figure {
  position: relative;
  z-index: 1;
}
#second.people.index .cover figure::after {
  content: "";
  display: block;
  background: #16974b;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#second.people.index .cover h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #16974b;
  color: #fff;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1;
  padding: 20px 30px;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .cover h1 {
    font-size: 3rem;
    padding: 5px 10px;
  }
}
#second.people.index .inner {
  max-width: 1175px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .inner {
    padding: 0 15px;
  }
}
#second.people.index .people {
  padding: 100px 0 156px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people {
    padding: 50px 0;
  }
}
#second.people.index .people-ttl {
  text-align: center;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  color: #16974b;
  margin-top: 100px;
  margin-bottom: 30px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-ttl {
    margin-top: 50px;
    font-size: 3rem;
  }
}
#second.people.index .people-ttl span {
  display: inline-block;
  position: relative;
}
#second.people.index .people-ttl span::before {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  border-radius: 100px;
  background: #16974b;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: -120px;
}
#second.people.index .people-ttl span::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  border-radius: 100px;
  background: #16974b;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -120px;
}
#second.people.index .people-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-list {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#second.people.index .people-list > li {
  width: calc((100% - 210px) / 3);
  margin: 0 35px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-list > li {
    margin: 0 0 30px;
    width: calc((100% - 10px) / 2);
  }
}
#second.people.index .people-list > li:nth-child(3n-1) {
  margin-top: 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-list > li:nth-child(3n-1) {
    margin-top: 0;
  }
}
#second.people.index .people-list > li:nth-child(3n-2) {
  margin-top: 160px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-list > li:nth-child(3n-2) {
    margin-top: 0;
  }
}
#second.people.index .people-list > li:last-child {
  margin-top: 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-list > li:nth-child(odd) {
    margin-top: 30px;
  }
}
#second.people.index .people-list a {
  text-decoration: none;
}
#second.people.index .people-list a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#second.people.index .people-list figure {
  max-width: 400px;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  position: relative;
  margin-bottom: 17px;
  overflow: hidden;
  will-change: transform;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-list figure {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 10px;
  }
}
#second.people.index .people-list figure img {
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  width: 100%;
}
#second.people.index .people-list figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  display: inline-block;
  padding: 4px 10px 6px;
  white-space: nowrap;
  background: #16974b;
  font-size: 1.8rem;
  font-weight: 600;
  border-top-right-radius: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-list figcaption {
    font-size: 1.2rem;
    padding: 2px 5px 3px;
  }
}
#second.people.index .people-list figcaption.color1 {
  background: #16974b;
  color: #fff;
}
#second.people.index .people-list figcaption.color2 {
  color: #085628;
  background: #9dc138;
}
#second.people.index .people-list figcaption.color3 {
  background: #d0d922;
  color: #085628;
}
#second.people.index .people-list figcaption.color4 {
  background: #085628;
  color: #fff;
}
#second.people.index .people-list h3 {
  font-weight: 700;
  font-size: 2rem;
  color: #085628;
  margin-bottom: 10px;
  line-height: 1.7;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-list h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
#second.people.index .people-list p {
  color: #16974b;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-list p {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
#second.people.index .people-list .tags li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 3px;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .people-list .tags li {
    font-size: 1.2rem;
  }
}
#second.people.index .people-list .tags li::before {
  content: "#";
}
#second.people.index .crosstalk {
  padding: 30px 0 112px;
  background: #f6f6f6;
}
#second.people.index .crosstalk .lead {
  margin-bottom: 75px;
}
#second.people.index .crosstalk nav {
  margin: 0 auto;
}
#second.people.index .crosstalk li:nth-child(1),
#second.people.index .crosstalk li:nth-child(2) {
  margin-bottom: 70px;
}
#second.people.index .crosstalk a {
  text-decoration: none;
  overflow: hidden;
  display: block;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .crosstalk a {
    border-radius: 20px;
  }
}
#second.people.index .crosstalk a:hover .btn {
  opacity: 1;
}
#second.people.index .crosstalk a .btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 50px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#second.people.index .crosstalk .banner1 {
  overflow: hidden;
}
#second.people.index .crosstalk .banner1:hover::after {
  opacity: 80%;
}
#second.people.index .crosstalk .banner1::after {
  width: 100%;
  height: 100%;
  background: #085628;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  opacity: 40%;
  z-index: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#second.people.index .crosstalk .banner1 p {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  z-index: 2;
  width: 27.5%;
  padding: 0 10px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .crosstalk .banner1 p {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: 13px;
    font-size: 7.4666666667vw;
    width: 100%;
    line-height: 1;
  }
}
#second.people.index .crosstalk .banner2 {
  overflow: hidden;
}
#second.people.index .crosstalk .banner2:hover::after {
  opacity: 80%;
}
#second.people.index .crosstalk .banner2::after {
  width: 100%;
  height: 100%;
  background: #d0d922;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  opacity: 40%;
  z-index: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#second.people.index .crosstalk .banner2 p {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  z-index: 2;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  width: 27.5%;
  padding: 0 10px;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .crosstalk .banner2 p {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: 13px;
    font-size: 7.4666666667vw;
    width: 100%;
    line-height: 1;
  }
}
#second.people.index .crosstalk .banner3 {
  overflow: hidden;
}
#second.people.index .crosstalk .banner3:hover::after {
  opacity: 80%;
}
#second.people.index .crosstalk .banner3::after {
  width: 100%;
  height: 100%;
  background: #085628;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  opacity: 40%;
  z-index: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#second.people.index .crosstalk .banner3 p {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  z-index: 2;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  width: 27.5%;
  padding: 0 10px;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.index .crosstalk .banner3 p {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: 13px;
    font-size: 7.4666666667vw;
    width: 100%;
    line-height: 1;
  }
}

#second.people.member .cover {
  position: relative;
}
#second.people.member .cover .inner {
  margin: 0 auto;
  max-width: 1175px;
  padding: 0 80px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .cover .inner {
    padding: 0 15px;
  }
}
#second.people.member .cover .interview {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 100%;
  left: 80px;
  margin-top: -100px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .cover .interview {
    left: 15px;
    margin-top: -30px;
  }
}
#second.people.member .cover .interview p:nth-child(1) {
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .cover .interview p:nth-child(1) {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
#second.people.member .cover .interview p:nth-child(2) {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.8;
  color: #fff;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 1175px) {
  #second.people.member .cover .interview p:nth-child(2) {
    font-size: 3.2942898975vw;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .cover .interview p:nth-child(2) {
    font-size: 2.2rem;
  }
}
#second.people.member .cover .interview p:nth-child(2) > span {
  background: #16974b;
  padding: 5px 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .cover .interview p:nth-child(2) > span {
    padding: 5px 10px;
  }
}
#second.people.member .cover .profile {
  position: absolute;
  left: 80px;
  bottom: 0;
  background: #d0d922;
  padding: 14px;
  width: 310px;
  border-radius: 10px 10px 0px 0px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .cover .profile {
    left: 15px;
    width: calc(100% - 30px);
    padding: 10px;
  }
}
#second.people.member .cover .profile p:nth-child(1) {
  font-size: 2.2rem;
  display: inline-block;
  background: #16974b;
  color: #fff;
  padding: 2px 10px 5px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .cover .profile p:nth-child(1) {
    font-size: 1.2rem;
    margin-bottom: 5px;
    padding: 2px 5px 3px;
  }
}
#second.people.member .cover .profile h1 {
  color: #085628;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .cover .profile h1 {
    font-size: 1.8rem;
  }
}
#second.people.member .cover .profile p:nth-child(3) {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .cover .profile p:nth-child(3) {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}
#second.people.member .cover .profile p:nth-child(n+4) {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6f6c6c;
  line-height: 1.4;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .cover .profile p:nth-child(n+4) {
    font-size: 1.2rem;
  }
}
#second.people.member .member-ttl1 {
  display: inline-block;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  background: #16974b;
  border-radius: 10px;
  line-height: 1;
  padding: 8px 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .member-ttl1 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    padding: 5px 10px;
    border-radius: 5px;
  }
}
#second.people.member .member-ttl2 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  text-align: center;
  color: #16974b;
  margin-bottom: 58px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .member-ttl2 {
    margin-bottom: 30px;
    font-size: 3rem;
  }
}
#second.people.member .member-catch {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.36;
  color: #9dc138;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .member-catch {
    margin-bottom: 15px;
    font-size: 3rem;
  }
}
#second.people.member .member-txt {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .member-txt {
    font-size: 1.5rem;
  }
}
#second.people.member .member-note {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .member-note {
    font-size: 1.2rem;
  }
}
#second.people.member .sec1 {
  padding: 123px 0 74px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec1 {
    padding: 50px 0;
  }
}
#second.people.member .sec1 .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec1 .inner {
    padding: 0 15px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
#second.people.member .sec1-1 {
  margin-bottom: 150px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec1-1 {
    margin-bottom: 50px;
  }
}
#second.people.member .sec1-1 .inner div {
  width: 47.8333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec1-1 .inner div {
    width: 100%;
  }
}
#second.people.member .sec1-1 .inner figure {
  width: 47.8333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec1-1 .inner figure {
    width: 100%;
  }
}
#second.people.member .sec1-2 .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec1-2 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#second.people.member .sec1-2 .inner div {
  width: 47.8333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec1-2 .inner div {
    width: 100%;
  }
}
#second.people.member .sec1-2 .inner figure {
  width: 47.8333333333%;
  border-radius: 0px 30px 30px 0px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec1-2 .inner figure {
    width: 100%;
    border-radius: 20px;
  }
}
#second.people.member .sec2 {
  padding: 50px 0;
  background: #eae8e8;
}
#second.people.member .sec2 .inner {
  max-width: 836px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec2 .inner {
    padding: 0 15px;
  }
}
#second.people.member .sec2 .member-schedule dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px 25px;
  line-height: 1;
  margin-bottom: 20px;
}
#second.people.member .sec2 .member-schedule dl dt {
  width: 60px;
  margin-right: 40px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #9dc138;
  text-align: right;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec2 .member-schedule dl dt {
    margin-right: 20px;
  }
}
#second.people.member .sec2 .member-schedule dl dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec2 .member-schedule dl dd {
    font-size: 1.6rem;
  }
}
#second.people.member .sec3 {
  padding: 123px 0 74px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec3 {
    padding: 50px 0;
  }
}
#second.people.member .sec3 .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec3 .inner {
    padding: 0 15px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
#second.people.member .sec3 .inner div {
  width: 47.8333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec3 .inner div {
    width: 100%;
  }
}
#second.people.member .sec3 .inner figure {
  width: 47.8333333333%;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec3 .inner figure {
    width: 100%;
    border-radius: 20px;
  }
}
#second.people.member .sec4 {
  padding: 58px 0 48px;
  background: #f3f6c7;
  border-top: 3px dashed #16974b;
  border-bottom: 3px dashed #16974b;
}
#second.people.member .sec4 .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec4 .inner {
    padding: 0 15px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
#second.people.member .sec4 .inner div {
  width: 47.8333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec4 .inner div {
    width: 100%;
  }
}
#second.people.member .sec4 .inner figure {
  width: 47.8333333333%;
  border: 10px solid #fff;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec4 .inner figure {
    width: 100%;
    margin-bottom: 10px;
    border-width: 8px;
  }
}
#second.people.member .sec4 .inner p {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .sec4 .inner p {
    font-size: 1.5rem;
  }
}
#second.people.member .others {
  padding: 120px 0 150px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .others {
    padding: 50px 0 100px;
  }
}
#second.people.member .others .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .others .inner {
    padding: 0 15px;
  }
}
#second.people.member .others .ttl {
  font-size: 5rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  text-align: center;
  color: #16974b;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .others .ttl {
    font-size: 4rem;
  }
}
#second.people.member .people-list-others {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: -60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .people-list-others {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#second.people.member .people-list-others .tags li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 3px;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .people-list-others .tags li {
    font-size: 1.2rem;
  }
}
#second.people.member .people-list-others .tags li::before {
  content: "#";
}
#second.people.member .people-list-others--01 .member01 {
  display: none;
}
#second.people.member .people-list-others--01 .member02 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
#second.people.member .people-list-others--01 .member03 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--01 .member04 {
  display: none;
}
#second.people.member .people-list-others--01 .member05 {
  display: none;
}
#second.people.member .people-list-others--01 .member06 {
  display: none;
}
#second.people.member .people-list-others--01 .member07 {
  display: none;
}
#second.people.member .people-list-others--01 .member08 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--01 .member09 {
  display: none;
}
#second.people.member .people-list-others--01 .member10 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--01 .member11 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--01 .member12 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--02 .member01 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
#second.people.member .people-list-others--02 .member02 {
  display: none;
}
#second.people.member .people-list-others--02 .member03 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--02 .member04 {
  display: none;
}
#second.people.member .people-list-others--02 .member05 {
  display: none;
}
#second.people.member .people-list-others--02 .member06 {
  display: none;
}
#second.people.member .people-list-others--02 .member07 {
  display: none;
}
#second.people.member .people-list-others--02 .member08 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--02 .member09 {
  display: none;
}
#second.people.member .people-list-others--02 .member10 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--02 .member11 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--02 .member12 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--03 .member01 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
#second.people.member .people-list-others--03 .member02 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--03 .member03 {
  display: none;
}
#second.people.member .people-list-others--03 .member04 {
  display: none;
}
#second.people.member .people-list-others--03 .member05 {
  display: none;
}
#second.people.member .people-list-others--03 .member06 {
  display: none;
}
#second.people.member .people-list-others--03 .member07 {
  display: none;
}
#second.people.member .people-list-others--03 .member08 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--03 .member09 {
  display: none;
}
#second.people.member .people-list-others--03 .member10 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--03 .member11 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--03 .member12 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--04 .member01 {
  display: none;
}
#second.people.member .people-list-others--04 .member02 {
  display: none;
}
#second.people.member .people-list-others--04 .member03 {
  display: none;
}
#second.people.member .people-list-others--04 .member04 {
  display: none;
}
#second.people.member .people-list-others--04 .member05 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--04 .member06 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--04 .member07 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--04 .member08 {
  display: none;
}
#second.people.member .people-list-others--04 .member09 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--04 .member10 {
  display: none;
}
#second.people.member .people-list-others--04 .member11 {
  display: none;
}
#second.people.member .people-list-others--04 .member12 {
  display: none;
}
#second.people.member .people-list-others--05 .member01 {
  display: none;
}
#second.people.member .people-list-others--05 .member02 {
  display: none;
}
#second.people.member .people-list-others--05 .member03 {
  display: none;
}
#second.people.member .people-list-others--05 .member04 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--05 .member05 {
  display: none;
}
#second.people.member .people-list-others--05 .member06 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--05 .member07 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--05 .member08 {
  display: none;
}
#second.people.member .people-list-others--05 .member09 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--05 .member10 {
  display: none;
}
#second.people.member .people-list-others--05 .member11 {
  display: none;
}
#second.people.member .people-list-others--05 .member12 {
  display: none;
}
#second.people.member .people-list-others--06 .member01 {
  display: none;
}
#second.people.member .people-list-others--06 .member02 {
  display: none;
}
#second.people.member .people-list-others--06 .member03 {
  display: none;
}
#second.people.member .people-list-others--06 .member04 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--06 .member05 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--06 .member06 {
  display: none;
}
#second.people.member .people-list-others--06 .member07 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--06 .member08 {
  display: none;
}
#second.people.member .people-list-others--06 .member09 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--06 .member10 {
  display: none;
}
#second.people.member .people-list-others--06 .member11 {
  display: none;
}
#second.people.member .people-list-others--06 .member12 {
  display: none;
}
#second.people.member .people-list-others--07 .member01 {
  display: none;
}
#second.people.member .people-list-others--07 .member02 {
  display: none;
}
#second.people.member .people-list-others--07 .member03 {
  display: none;
}
#second.people.member .people-list-others--07 .member04 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--07 .member05 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--07 .member06 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--07 .member07 {
  display: none;
}
#second.people.member .people-list-others--07 .member08 {
  display: none;
}
#second.people.member .people-list-others--07 .member09 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--07 .member10 {
  display: none;
}
#second.people.member .people-list-others--07 .member11 {
  display: none;
}
#second.people.member .people-list-others--07 .member12 {
  display: none;
}
#second.people.member .people-list-others--08 .member01 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
#second.people.member .people-list-others--08 .member02 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--08 .member03 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--08 .member04 {
  display: none;
}
#second.people.member .people-list-others--08 .member05 {
  display: none;
}
#second.people.member .people-list-others--08 .member06 {
  display: none;
}
#second.people.member .people-list-others--08 .member07 {
  display: none;
}
#second.people.member .people-list-others--08 .member08 {
  display: none;
}
#second.people.member .people-list-others--08 .member09 {
  display: none;
}
#second.people.member .people-list-others--08 .member10 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--08 .member11 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--08 .member12 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
      -ms-flex-order: 6;
          order: 6;
}
#second.people.member .people-list-others--09 .member01 {
  display: none;
}
#second.people.member .people-list-others--09 .member02 {
  display: none;
}
#second.people.member .people-list-others--09 .member03 {
  display: none;
}
#second.people.member .people-list-others--09 .member04 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
#second.people.member .people-list-others--09 .member05 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--09 .member06 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--09 .member07 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--09 .member08 {
  display: none;
}
#second.people.member .people-list-others--09 .member09 {
  display: none;
}
#second.people.member .people-list-others--09 .member10 {
  display: none;
}
#second.people.member .people-list-others--09 .member11 {
  display: none;
}
#second.people.member .people-list-others--09 .member12 {
  display: none;
}
#second.people.member .people-list-others--10 .member01 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
#second.people.member .people-list-others--10 .member02 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--10 .member03 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--10 .member04 {
  display: none;
}
#second.people.member .people-list-others--10 .member05 {
  display: none;
}
#second.people.member .people-list-others--10 .member06 {
  display: none;
}
#second.people.member .people-list-others--10 .member07 {
  display: none;
}
#second.people.member .people-list-others--10 .member08 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
      -ms-flex-order: 6;
          order: 6;
}
#second.people.member .people-list-others--10 .member09 {
  display: none;
}
#second.people.member .people-list-others--10 .member10 {
  display: none;
}
#second.people.member .people-list-others--10 .member11 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--10 .member12 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--11 .member01 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
#second.people.member .people-list-others--11 .member02 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--11 .member03 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--11 .member04 {
  display: none;
}
#second.people.member .people-list-others--11 .member05 {
  display: none;
}
#second.people.member .people-list-others--11 .member06 {
  display: none;
}
#second.people.member .people-list-others--11 .member07 {
  display: none;
}
#second.people.member .people-list-others--11 .member08 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--11 .member09 {
  display: none;
}
#second.people.member .people-list-others--11 .member10 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
      -ms-flex-order: 6;
          order: 6;
}
#second.people.member .people-list-others--11 .member11 {
  display: none;
}
#second.people.member .people-list-others--11 .member12 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--12 .member01 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
#second.people.member .people-list-others--12 .member02 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
#second.people.member .people-list-others--12 .member03 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
#second.people.member .people-list-others--12 .member04 {
  display: none;
}
#second.people.member .people-list-others--12 .member05 {
  display: none;
}
#second.people.member .people-list-others--12 .member06 {
  display: none;
}
#second.people.member .people-list-others--12 .member07 {
  display: none;
}
#second.people.member .people-list-others--12 .member08 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}
#second.people.member .people-list-others--12 .member09 {
  display: none;
}
#second.people.member .people-list-others--12 .member10 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
      -ms-flex-order: 6;
          order: 6;
}
#second.people.member .people-list-others--12 .member11 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
#second.people.member .people-list-others--12 .member12 {
  display: none;
}
#second.people.member .people-list-others > li {
  width: calc((100% - 210px) / 3);
  margin: 0 35px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .people-list-others > li {
    margin: 0 0 30px;
    width: calc((100% - 10px) / 2);
  }
}
#second.people.member .people-list-others a {
  text-decoration: none;
}
#second.people.member .people-list-others a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#second.people.member .people-list-others figure {
  max-width: 400px;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  will-change: transform;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .people-list-others figure {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 10px;
  }
}
#second.people.member .people-list-others figure img {
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  width: 100%;
}
#second.people.member .people-list-others figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  display: inline-block;
  padding: 4px 10px 6px;
  white-space: nowrap;
  background: #16974b;
  font-size: 1.8rem;
  font-weight: 600;
  border-top-right-radius: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .people-list-others figcaption {
    font-size: 1.2rem;
    padding: 2px 5px 3px;
  }
}
#second.people.member .people-list-others figcaption.color1 {
  background: #16974b;
  color: #fff;
}
#second.people.member .people-list-others figcaption.color2 {
  color: #085628;
  background: #9dc138;
}
#second.people.member .people-list-others figcaption.color3 {
  background: #d0d922;
  color: #085628;
}
#second.people.member .people-list-others figcaption.color4 {
  background: #085628;
  color: #fff;
}
#second.people.member .people-list-others h3 {
  font-weight: 700;
  font-size: 2rem;
  color: #085628;
  line-height: 1.7;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .people-list-others h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
#second.people.member .people-note {
  padding: 20px 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .people-note {
    padding: 10px 0;
  }
}
#second.people.member .people-note .inner {
  max-width: 1175px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .people-note .inner {
    padding: 0 15px;
  }
}
#second.people.member .people-note p {
  text-align: right;
  font-size: 1.4rem;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.member .people-note p {
    font-size: 1.2rem;
  }
}

#second.people.cross-talk .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk .inner {
    padding: 0 15px;
  }
}
#second.people.cross-talk .cover {
  position: relative;
}
#second.people.cross-talk .cover h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #16974b;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk .cover h1 {
    font-size: 5rem;
  }
}
#second.people.cross-talk .cover h1 span:nth-child(1) {
  font-size: 4.5rem;
  display: block;
  margin-bottom: 26px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk .cover h1 span:nth-child(1) {
    margin-bottom: 0;
    font-size: 3rem;
  }
}
#second.people.cross-talk .nav {
  padding: 50px 0 150px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk .nav {
    padding: 50px 0;
  }
}
#second.people.cross-talk .nav .lead {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.07;
  text-align: center;
  margin-bottom: 78px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk .nav .lead {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
  }
}
#second.people.cross-talk .nav li:nth-child(1),
#second.people.cross-talk .nav li:nth-child(2) {
  margin-bottom: 70px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk .nav li:nth-child(1),
  #second.people.cross-talk .nav li:nth-child(2) {
    margin-bottom: 30px;
  }
}
#second.people.cross-talk .nav .banner {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  will-change: opacity;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk .nav .banner {
    border-radius: 20px;
  }
}
#second.people.cross-talk .nav .banner::after {
  content: "";
  display: block;
  background: rgba(8, 86, 40, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#second.people.cross-talk .nav .banner div {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 20px;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk .nav .banner div {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: 10px;
    text-align: center;
    white-space: nowrap;
  }
}
#second.people.cross-talk .nav .banner h3 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk .nav .banner h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    line-height: 1;
  }
}
#second.people.cross-talk .nav .banner p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.59;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk .nav .banner p {
    font-size: 1.5rem;
    line-height: 1;
  }
}
#second.people.cross-talk .nav .banner:hover::after {
  opacity: 1;
}
#second.people.cross-talk .nav .banner--2::after {
  background: rgba(208, 217, 34, 0.4);
}
#second.people.cross-talk .nav .banner--3::after {
  background: rgba(8, 86, 40, 0.4);
}

.cross-talk-cover {
  position: relative;
}
.cross-talk-cover figure {
  max-width: 100% !important;
}
.cross-talk-cover h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #16974b;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-cover h1 {
    font-size: 5rem;
  }
}
.cross-talk-cover h1 > span {
  display: block;
}
.cross-talk-cover h1 > span:nth-child(1) {
  font-size: 4.5rem;
  display: block;
  margin-bottom: 26px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-cover h1 > span:nth-child(1) {
    margin-bottom: 10px;
    font-size: 3rem;
  }
}
.cross-talk-member {
  padding: 50px 0 38px;
  color: #fff;
}
.cross-talk-member .inner {
  padding: 0 90px !important;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member .inner {
    padding: 0 15px !important;
  }
}
.cross-talk-member .lead {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.07;
  text-align: center;
  margin-bottom: 44px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member .lead {
    font-size: 1.8rem;
    margin-bottom: 50px;
    line-height: 1.6;
  }
}
.cross-talk-member h3 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 5rem;
  margin-bottom: 69px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member h3 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.cross-talk-member-profle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member-profle {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.cross-talk-member-profle li {
  width: calc((100% - 40px) / 3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member-profle li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cross-talk-member-profle figure {
  width: 70%;
  margin: 0 auto 23px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member-profle figure {
    width: 50%;
    margin: 0 auto 20px;
  }
}
.cross-talk-member-profle h4 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 21px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member-profle h4 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.cross-talk-member-profle h4 + p {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.67;
  margin-bottom: 34px;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member-profle h4 + p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.cross-talk-member-profle h4 + p + p {
  font-size: 1.4rem;
  line-height: 1.67;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member-profle h4 + p + p {
    font-size: 1.2rem;
  }
}
.cross-talk-member-profle div {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.cross-talk-member-profle div h5 {
  background: #d0d922;
  color: #085628;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 7px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member-profle div h5 {
    font-size: 1.5rem;
  }
}
.cross-talk-member-profle div h5:nth-child(3) {
  background: #085628;
  color: #fff;
}
.cross-talk-member-profle div h5:nth-child(5) {
  background: #9dc138;
  color: #085628;
}
.cross-talk-member-profle div p {
  font-size: 1.6rem;
  color: #222222;
  margin-bottom: 28px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-member-profle div p {
    font-size: 1.6rem;
  }
}
.cross-talk-q__cover {
  margin-bottom: 70px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-q__cover {
    margin-bottom: 50px;
  }
}
.cross-talk-q__question {
  padding: 15px 0;
  border-top: 1px dashed #085628;
  border-bottom: 1px dashed #085628;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 80px;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-q__question {
    font-size: 1.5rem;
  }
}
.cross-talk-q__question p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.cross-talk-q__question p::before {
  display: inline-block;
  width: 50px;
  height: 1px;
  content: "";
  background: #333;
}
.cross-talk-q section:nth-child(2) {
  padding: 80px 0 180px;
  background: rgba(214, 210, 210, 0.35);
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-q section:nth-child(2) {
    padding: 40px 0 70px;
  }
}
.cross-talk-q section:nth-child(2)::after {
  width: 59.48px;
  height: 231.58px;
  content: "";
  display: block;
  background: url("../imgs/people/cross-talk01/footprints.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -110px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-q section:nth-child(2)::after {
    width: 29.74px;
    height: 115.8px;
    bottom: -55px;
  }
}
.cross-talk-q section:nth-child(3) {
  padding: 184px 0 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-q section:nth-child(3) {
    padding: 70px 0 40px;
  }
}
.cross-talk-talk {
  margin-bottom: -80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk {
    margin-bottom: -30px;
  }
}
.cross-talk-talk p {
  padding-left: 155px;
  font-weight: 500;
  margin-bottom: 80px;
  position: relative;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk p {
    padding-left: 80px;
    font-size: 1.5rem;
    margin-bottom: 30px;
    min-height: 70px;
  }
}
.cross-talk-talk p::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk p::before {
    width: 70px;
    height: 70px;
    left: 0;
  }
}
.cross-talk-talk .layout--right {
  zoom: 1;
}
.cross-talk-talk .layout--right:after {
  display: table;
  clear: both;
  content: "";
}
.cross-talk-talk .layout--right:before {
  display: table;
  content: "";
}
.cross-talk-talk .q02__photo1 {
  float: right;
  width: 45.3201970443%;
  margin-left: 40px;
  margin-bottom: 10px;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk .q02__photo1 {
    border-radius: 20px;
    width: 100%;
    margin: 0 0 30px;
  }
}
.cross-talk-talk .q03__photo2 {
  float: right;
  width: 45.3201970443%;
  margin-left: 40px;
  margin-bottom: 10px;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk .q03__photo2 {
    border-radius: 20px;
    width: 100%;
    margin: 0 0 30px;
  }
}
.cross-talk-talk__horiuchi::before {
  border: 5px solid #085628;
  background: #eee no-repeat center;
  background-size: contain;
  background-image: url("../imgs/people/cross-talk01/member_horiuchi@2x.png");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk__horiuchi::before {
    border-width: 3px;
  }
}
.cross-talk-talk__matsushima::before {
  border: 5px solid #d0d922;
  background: #eee no-repeat center;
  background-size: contain;
  background-image: url("../imgs/people/cross-talk01/member_matsushima@2x.png");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk__matsushima::before {
    border-width: 3px;
  }
}
.cross-talk-talk__kinugawa::before {
  border: 5px solid #16974b;
  background: #eee no-repeat center;
  background-size: contain;
  background-image: url("../imgs/people/cross-talk01/member_kinugawa@2x.png");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk__kinugawa::before {
    border-width: 3px;
  }
}
.cross-talk-talk__yamaguchi::before {
  border: 5px solid #d0d922;
  background: #eee no-repeat center;
  background-size: contain;
  background-image: url("../imgs/people/cross-talk02/member_yamaguchi@2x.png");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk__yamaguchi::before {
    border-width: 3px;
  }
}
.cross-talk-talk__arai::before {
  border: 5px solid #16974b;
  background: #eee no-repeat center;
  background-size: contain;
  background-image: url("../imgs/people/cross-talk02/member_arai@2x.png");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk__arai::before {
    border-width: 3px;
  }
}
.cross-talk-talk__kusama::before {
  border: 5px solid #16974b;
  background: #eee no-repeat center;
  background-size: contain;
  background-image: url("../imgs/people/cross-talk03/member_kusama@2x.jpg");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk__kusama::before {
    border-width: 3px;
  }
}
.cross-talk-talk__sakaino::before {
  border: 5px solid #d0d922;
  background: #eee no-repeat center;
  background-size: contain;
  background-image: url("../imgs/people/cross-talk03/member_sakaino@2x.jpg");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-talk__sakaino::before {
    border-width: 3px;
  }
}
.cross-talk-note {
  font-size: 1.4rem !important;
  padding: 0;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .cross-talk-note {
    font-size: 1.2rem !important;
  }
}

#second.people.cross-talk01 .cross-talk-cover h1 > span:nth-child(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 8.8rem;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../imgs/people/cross-talk01/cover_arrow.svg") no-repeat center;
  background-position: center 60%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk01 .cross-talk-cover h1 > span:nth-child(2) {
    font-size: 5rem;
    margin-bottom: 10px;
    background-size: 25% auto;
  }
}
#second.people.cross-talk01 .cross-talk-cover h1 > span:nth-child(2) > span:nth-child(1) {
  margin-right: 186px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk01 .cross-talk-cover h1 > span:nth-child(2) > span:nth-child(1) {
    margin-right: 100px;
  }
}
#second.people.cross-talk01 .cross-talk-cover h1 > span:nth-child(3) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk01 .cross-talk-cover h1 > span:nth-child(3) {
    font-size: 2rem;
  }
}
#second.people.cross-talk01 .cross-talk-member {
  background: #16974b;
}
#second.people.cross-talk01 .cross-talk-q h2 {
  text-align: center;
  padding: 45px 0 47px;
  color: #085628;
  background: #d0d922;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk01 .cross-talk-q h2 {
    padding: 30px 0;
  }
}
#second.people.cross-talk01 .cross-talk-q h2 span {
  display: block;
}
#second.people.cross-talk01 .cross-talk-q h2 span:nth-child(1) {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk01 .cross-talk-q h2 span:nth-child(1) {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
#second.people.cross-talk01 .cross-talk-q h2 span:nth-child(2) {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 5rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk01 .cross-talk-q h2 span:nth-child(2) {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk02 .cross-talk-cover h1 {
    font-size: 4rem;
  }
}
#second.people.cross-talk02 .cross-talk-member {
  background: #9dc138;
}
#second.people.cross-talk02 .cross-talk-member-profle {
  max-width: 700px;
}
#second.people.cross-talk02 .cross-talk-member-profle h4 {
  color: #085628;
}
#second.people.cross-talk02 .cross-talk-member-profle h4 + p {
  color: #222222;
}
#second.people.cross-talk02 .cross-talk-member-profle li {
  width: calc((100% - 55px) / 2);
}
#second.people.cross-talk02 .cross-talk-q {
  padding: 57px 0 80px;
}
#second.people.cross-talk02 .cross-talk-q.q01 .q01__photo1 {
  margin-bottom: 60px;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk02 .cross-talk-q.q01 .q01__photo1 {
    border-radius: 20px;
  }
}
#second.people.cross-talk02 .cross-talk-q.q02 {
  background: rgba(22, 151, 75, 0.15);
}
#second.people.cross-talk02 .cross-talk-q.q03 .q03__photo1 {
  margin-bottom: 80px;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk02 .cross-talk-q.q03 .q03__photo1 {
    border-radius: 20px;
  }
}
#second.people.cross-talk02 .cross-talk-q h2 {
  text-align: center;
  margin-bottom: 27px;
  color: #16974b;
}
#second.people.cross-talk02 .cross-talk-q h2 span {
  display: block;
}
#second.people.cross-talk02 .cross-talk-q h2 span:nth-child(1) {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk02 .cross-talk-q h2 span:nth-child(1) {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
#second.people.cross-talk02 .cross-talk-q h2 span:nth-child(2) {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 5rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk02 .cross-talk-q h2 span:nth-child(2) {
    font-size: 3.6rem;
  }
}
#second.people.cross-talk02 .cross-talk-q h2 + p {
  text-align: center;
  margin-bottom: 49px;
  font-weight: 700;
  font-size: 3rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk02 .cross-talk-q h2 + p {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk03 .cross-talk-cover h1 {
    font-size: 4rem;
  }
}
#second.people.cross-talk03 .cross-talk-member {
  background: #085628;
}
#second.people.cross-talk03 .cross-talk-member-profle {
  max-width: 700px;
}
#second.people.cross-talk03 .cross-talk-member-profle h4 {
  color: #fff;
}
#second.people.cross-talk03 .cross-talk-member-profle h4 + p {
  color: #fff;
}
#second.people.cross-talk03 .cross-talk-member-profle li {
  width: calc((100% - 55px) / 2);
}
#second.people.cross-talk03 .cross-talk-talk {
  margin-bottom: 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk03 .cross-talk-talk {
    margin-bottom: 0;
  }
}
#second.people.cross-talk03 .cross-talk-q {
  padding: 57px 0 80px;
}
#second.people.cross-talk03 .cross-talk-q.q01 .q01__photo1 {
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk03 .cross-talk-q.q01 .q01__photo1 {
    border-radius: 20px;
  }
}
#second.people.cross-talk03 .cross-talk-q.q02 {
  background: #e4e4e4;
}
#second.people.cross-talk03 .cross-talk-q.q02 .q02__photo1 {
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk03 .cross-talk-q.q02 .q02__photo1 {
    border-radius: 20px;
  }
}
#second.people.cross-talk03 .cross-talk-q.q03 .q03__photo1 {
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk03 .cross-talk-q.q03 .q03__photo1 {
    border-radius: 20px;
  }
}
#second.people.cross-talk03 .cross-talk-q.q04 {
  background: #e4e4e4;
}
#second.people.cross-talk03 .cross-talk-q.q04 .q04__photo1 {
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk03 .cross-talk-q.q04 .q04__photo1 {
    border-radius: 20px;
  }
}
#second.people.cross-talk03 .cross-talk-q h2 {
  text-align: center;
  margin-bottom: 27px;
  color: #085628;
}
#second.people.cross-talk03 .cross-talk-q h2 span {
  display: block;
}
#second.people.cross-talk03 .cross-talk-q h2 span:nth-child(1) {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk03 .cross-talk-q h2 span:nth-child(1) {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
#second.people.cross-talk03 .cross-talk-q h2 span:nth-child(2) {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 5rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk03 .cross-talk-q h2 span:nth-child(2) {
    font-size: 3.6rem;
  }
}
#second.people.cross-talk03 .cross-talk-q h2 + p {
  text-align: center;
  margin-bottom: 49px;
  font-weight: 700;
  font-size: 3rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.people.cross-talk03 .cross-talk-q h2 + p {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/* ========================================
about
========================================*/
#second.about .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about .inner {
    padding: 0 15px;
  }
}
#second.about.index h2.ttl {
  font-weight: 700;
  font-size: 5rem;
  color: #085628;
  text-align: center;
  margin-bottom: 72px;
  font-family: fot-tsukuardgothic-std, sans-serif;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index h2.ttl {
    font-size: 8.5333333333vw;
    margin-bottom: 30px;
    line-height: 1.2;
  }
}
#second.about.index #cover {
  position: relative;
}
#second.about.index #cover h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background: rgba(22, 151, 75, 0.9);
  font-weight: 700;
  font-size: 6rem;
  color: #fff;
  font-family: fot-tsukuardgothic-std, sans-serif;
  padding: 5px 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #cover h1 {
    font-size: 8.5333333333vw;
    padding: 4px 10px;
  }
}
#second.about.index #cover h1 span {
  font-family: "fot-rodin-pron", sans-serif;
  font-weight: 700;
}
#second.about.index #intro {
  padding: 70px 0 75px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #intro {
    padding: 75px 0 35px;
  }
}
#second.about.index #intro p:nth-child(1) {
  width: 500px;
  height: 122.77px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../imgs/about/index/copy.svg") no-repeat center;
  background-size: contain;
  margin: 0 auto 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #intro p:nth-child(1) {
    width: 280px;
    height: 68.75px;
    margin-bottom: 50px;
  }
}
#second.about.index #intro p:nth-child(2) {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 70px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #intro p:nth-child(2) {
    font-size: 1.8rem;
    text-align: justify;
    margin-bottom: 50px;
  }
}
#second.about.index #intro nav {
  display: block;
  margin-bottom: -30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #intro nav {
    margin-left: -10px;
    margin-right: -10px;
  }
}
#second.about.index #intro nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #intro nav ul {
    margin: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#second.about.index #intro nav li {
  width: 320px;
  height: 150px;
  border-radius: 30px;
  overflow: hidden;
  background: url("../imgs/about/index/nav_bg.jpg") no-repeat center;
  background-size: cover;
  margin: 0 15px 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #intro nav li {
    width: calc((100% - 2px) / 2);
    margin: 0 0 2px;
    height: 100px;
  }
}
#second.about.index #intro nav li:hover {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}
#second.about.index #intro nav a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#second.about.index #intro nav a::after {
  width: 31px;
  height: 19px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: 10px;
  content: "";
  display: block;
  background: url("../imgs/about/index/nav_arrow.svg") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #intro nav a::after {
    width: 20px;
    height: 12.26px;
    bottom: 5px;
  }
}
#second.about.index #intro nav a span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  font-family: fot-tsukuardgothic-std, sans-serif;
  line-height: 1.33;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #intro nav a span {
    font-size: 4.8vw;
    line-height: 1.2;
  }
}
#second.about.index #philosophy {
  padding: 75px 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #philosophy {
    padding: 75px 0 35px;
  }
}
#second.about.index #philosophy figure:nth-child(2) {
  width: 322.26px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #philosophy figure:nth-child(2) {
    width: 200px;
    height: 85.57px;
  }
}
#second.about.index #philosophy p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 70px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #philosophy p {
    font-size: 1.8rem;
    text-align: justify;
    margin-bottom: 50px;
  }
}
#second.about.index #philosophy figure:nth-child(4) {
  max-width: 813px;
  margin: 0 auto;
}
#second.about.index #business {
  padding: 75px 0 55px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #business {
    padding: 75px 0 35px;
  }
}
#second.about.index #business section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #business section {
    display: block;
  }
}
#second.about.index #business section h3 {
  display: inline-block;
  width: 306px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  background: #085628;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 20px;
  padding: 5px 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #business section h3 {
    width: 100%;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#second.about.index #business section div {
  width: 45.8333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #business section div {
    width: 100%;
  }
}
#second.about.index #business section p {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #business section p {
    font-size: 1.5rem;
    text-align: justify;
    margin-bottom: 20px;
  }
}
#second.about.index #business section figure {
  width: 50.6666666667%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #business section figure {
    width: 100%;
  }
}
#second.about.index #business section.business1 {
  margin-bottom: 60px;
}
#second.about.index #business section .note {
  font-size: 1.4rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #business section .note {
    font-size: 1.2rem;
  }
}
#second.about.index #challenge {
  padding: 55px 0 75px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #challenge {
    padding: 75px 0;
  }
}
#second.about.index #challenge h2.ttl {
  margin-bottom: 53px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #challenge h2.ttl {
    margin-bottom: 30px;
  }
}
#second.about.index #challenge p {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 59px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #challenge p {
    font-size: 1.5rem;
    text-align: justify;
    margin-bottom: 20px;
  }
}
#second.about.index #design {
  padding: 75px 0 150px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design {
    padding: 0 0 35px;
  }
}
#second.about.index #design h2.ttl {
  margin-bottom: 43px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design h2.ttl {
    margin-bottom: 30px;
  }
}
#second.about.index #design .design1 {
  border-radius: 30px;
  background: #d0d922;
  border: 3px solid #16974b;
  padding: 19px 54px 34px 60px;
  max-width: 1015px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design1 {
    border-radius: 20px;
    padding: 20px 15px;
  }
}
#second.about.index #design .design1 h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #16974b;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design1 h3 {
    font-size: 6.9333333333vw;
    margin-bottom: 10px;
  }
}
#second.about.index #design .design1 > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design1 > div {
    display: block;
  }
}
#second.about.index #design .design1 > div div {
  width: 66.6666666667%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design1 > div div {
    width: 100%;
  }
}
#second.about.index #design .design1 > div p {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: justify;
}
#second.about.index #design .design1 > div p span {
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design1 > div p {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
#second.about.index #design .design1 > div figure {
  width: 30%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design1 > div figure {
    width: 100%;
  }
}
#second.about.index #design .design2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#second.about.index #design .design2 figure {
  width: 48.3333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design2 figure {
    width: 100%;
  }
}
#second.about.index #design .design2 div {
  width: 45.8333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design2 div {
    width: 100%;
  }
}
#second.about.index #design .design2 div h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #16974b;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design2 div h3 {
    font-size: 6.9333333333vw;
    margin-bottom: 20px;
    text-align: center;
  }
}
#second.about.index #design .design2 div p {
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #design .design2 div p {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
#second.about.index #factory {
  padding: 48px 0 53px;
  background: #d0d922;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #factory {
    padding: 75px 0 35px;
  }
}
#second.about.index #factory h2.ttl {
  margin-bottom: 53px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #factory h2.ttl {
    margin-bottom: 30px;
  }
}
#second.about.index #factory h2.ttl + p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 39px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #factory h2.ttl + p {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: justify;
  }
}
#second.about.index .factory__swiper {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index .factory__swiper {
    margin-left: -15px;
    margin-right: -15px;
  }
}
#second.about.index .factory__swiper figcaption {
  text-align: center;
  padding: 19px 0 17px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index .factory__swiper figcaption {
    padding: 10px 40px;
  }
}
#second.about.index .factory__swiper figcaption p:nth-child(1) {
  font-weight: 800;
  color: #16974b;
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index .factory__swiper figcaption p:nth-child(1) {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
#second.about.index .factory__swiper figcaption p:nth-child(2) {
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index .factory__swiper figcaption p:nth-child(2) {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
#second.about.index .factory__swiper .swiper-ctrl {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 100%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index .factory__swiper .swiper-ctrl {
    bottom: 50px;
  }
}
#second.about.index .factory__swiper .swiper-button-next {
  width: 21px;
  height: 35px;
  background: url("../imgs/about/index/slide_arrow_next.svg") no-repeat center;
  background-size: contain;
  right: 20px;
}
#second.about.index .factory__swiper .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index .factory__swiper .swiper-button-next {
    right: 5px;
    width: 15px;
    height: 25px;
  }
}
#second.about.index .factory__swiper .swiper-button-prev {
  width: 21px;
  height: 35px;
  background: url("../imgs/about/index/slide_arrow_prev.svg") no-repeat center;
  background-size: contain;
  left: 5px;
}
#second.about.index .factory__swiper .swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index .factory__swiper .swiper-button-prev {
    left: 5px;
    width: 15px;
    height: 25px;
  }
}
#second.about.index .factory__swiper .swiper-pagination {
  position: static;
}
#second.about.index .factory__swiper .swiper-pagination-bullet {
  margin: 0 2px;
  border-radius: 0;
  width: calc((100% - 60px - 48px) / 12);
  opacity: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index .factory__swiper .swiper-pagination-bullet {
    margin: 0 1px;
    width: calc((100% - 20px - 24px) / 12);
  }
}
#second.about.index .factory__swiper .swiper-pagination-bullet-active {
  opacity: 0.5;
  background: #000;
}
#second.about.index #history {
  padding: 66px 0 150px;
  background: rgba(208, 217, 34, 0.15);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #history {
    padding: 75px 0 35px;
  }
}
#second.about.index #history h2.ttl {
  margin-bottom: 53px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #history h2.ttl {
    margin-bottom: 30px;
  }
}
#second.about.index #history p:nth-child(2) {
  font-size: 3.2rem;
  font-weight: 700;
  color: #16974b;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #history p:nth-child(2) {
    font-size: 2rem;
  }
}
#second.about.index #history p:nth-child(3) {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 53px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.index #history p:nth-child(3) {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
#second.about.minutes3 h1.ttl {
  height: 400px;
  background: url("../imgs/_common/cover_bg.jpg?3") no-repeat center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 h1.ttl {
    height: 200px;
  }
}
#second.about.minutes3 h1.ttl span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: #fff;
  text-align: center;
  font-family: fot-tsukuardgothic-std, sans-serif;
  white-space: nowrap;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1.43;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 h1.ttl span {
    line-height: 1.2;
    font-size: 8.5333333333vw;
  }
}
#second.about.minutes3 h2.ttl {
  font-weight: 700;
  font-size: 5rem;
  color: #16974b;
  text-align: center;
  margin-bottom: 58px;
  font-family: fot-tsukuardgothic-std, sans-serif;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 h2.ttl {
    margin-bottom: 30px;
    font-size: 8vw;
  }
}
#second.about.minutes3 .dataset {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -33px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset {
    display: block;
    margin-bottom: -20px;
  }
}
#second.about.minutes3 .dataset h3 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #16974b;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
#second.about.minutes3 .dataset h3 + div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset h3 + div {
    display: block;
    margin-bottom: 20px;
  }
}
#second.about.minutes3 .dataset h3 + div > div {
  margin-top: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset h3 + div > div {
    text-align: center;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset h3 + div > figure {
    width: auto !important;
    height: 120px !important;
    margin: 30px auto 30px !important;
  }
  #second.about.minutes3 .dataset h3 + div > figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
#second.about.minutes3 .dataset .data {
  color: #085628;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset .data {
    width: 100%;
    text-align: center;
  }
}
#second.about.minutes3 .dataset .num {
  font-size: 10rem;
  margin-right: 5px;
  line-height: 0.6;
  letter-spacing: -0.03em;
  text-align: center;
  opacity: 0;
  display: inline-block;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset .num {
    font-size: 8rem;
    margin-right: 5px;
  }
}
#second.about.minutes3 .dataset .txt {
  font-size: 3.5rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset .txt {
    font-size: 3rem;
  }
}
#second.about.minutes3 .dataset .note {
  position: absolute;
  right: 33px;
  bottom: 15px;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset .note {
    font-size: 1.2rem;
    right: 15px;
    bottom: 10px;
  }
}
#second.about.minutes3 .dataset .list {
  text-align: center;
  margin-top: 20px;
}
#second.about.minutes3 .dataset .list ul {
  display: inline-block;
  font-weight: 700;
  font-size: 2rem;
  color: #085628;
  list-style: disc;
  margin-bottom: -20px;
  margin-left: 24px;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset .list ul {
    font-size: 1.5rem;
    margin-bottom: -10px;
    margin-left: 0;
    white-space: normal;
  }
}
#second.about.minutes3 .dataset .list li {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset .list li {
    margin-bottom: 10px;
  }
}
#second.about.minutes3 .dataset > li {
  background: #fff;
  margin-bottom: 33px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 30px 0px 44px;
  position: relative;
  height: 380px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 .dataset > li {
    margin-bottom: 20px;
    height: auto;
    padding: 20px 15px 40px;
  }
}
#second.about.minutes3 #company {
  padding: 98px 0 84px;
  background: rgba(157, 193, 56, 0.15);
}
#second.about.minutes3 #company .dataset > li:nth-child(1) {
  width: 53.3333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(1) {
    width: 100%;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(1) .num {
  width: 268px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(1) .num {
    width: 220px;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(1) h3 {
  margin-bottom: 63px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(1) h3 {
    margin-bottom: 30px;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(1) h3 + div {
  width: 86.540625%;
}
#second.about.minutes3 #company .dataset > li:nth-child(1) h3 + div figure {
  width: 27.2379301629%;
}
#second.about.minutes3 #company .dataset > li:nth-child(1) h3 + div div {
  width: 65.7205792077%;
  margin-right: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(1) h3 + div div {
    width: 100%;
    margin-right: 0;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(1) h3 + div div p:nth-child(2) {
  font-size: 3rem;
  font-weight: 700;
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(1) h3 + div div p:nth-child(2) {
    font-size: 1.6rem;
    text-align: center;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(1) h3 + div div p:nth-child(2) span {
  font-size: 3.6rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(1) h3 + div div p:nth-child(2) span {
    font-size: 1.8rem;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(2) {
  width: 44.5833333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(2) {
    width: 100%;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(2) .num {
  width: 60px;
}
#second.about.minutes3 #company .dataset > li:nth-child(2) h3 {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(2) h3 {
    margin-bottom: 30px;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(2) h3 + div {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 68.0373831776%;
}
#second.about.minutes3 #company .dataset > li:nth-child(2) h3 + div figure {
  width: 43.6813186813%;
}
#second.about.minutes3 #company .dataset > li:nth-child(2) h3 + div div {
  width: 31.5934065934%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(2) h3 + div div {
    width: 100%;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(3) {
  width: 44.5833333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(3) {
    width: 100%;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(3) .num {
  width: 60px;
}
#second.about.minutes3 #company .dataset > li:nth-child(3) h3 {
  margin-bottom: 11px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(3) h3 {
    margin-bottom: 30px;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(3) h3 + div {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 77.0093457944%;
}
#second.about.minutes3 #company .dataset > li:nth-child(3) h3 + div figure {
  width: 42.7184466019%;
}
#second.about.minutes3 #company .dataset > li:nth-child(3) h3 + div div {
  width: 38.8349514563%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(3) h3 + div div {
    width: 100%;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(4) {
  width: 53.3333333333%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(4) {
    width: 100%;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(4) .num {
  font-size: 11rem;
  width: 295px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(4) .num {
    width: 210px;
    font-size: 8rem;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(4) h3 {
  margin-bottom: 67px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(4) h3 {
    margin-bottom: 30px;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(4) h3 + div {
  width: 83.0578125%;
}
#second.about.minutes3 #company .dataset > li:nth-child(4) h3 + div figure {
  width: 28.4327557989%;
}
#second.about.minutes3 #company .dataset > li:nth-child(4) h3 + div div {
  width: 66.5951803149%;
  margin-right: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(4) h3 + div div {
    width: 100%;
    margin-right: 0;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(5) {
  width: 48.75%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(5) {
    width: 100%;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(5) .num {
  font-size: 12rem;
  width: 140px;
}
#second.about.minutes3 #company .dataset > li:nth-child(5) h3 {
  margin-bottom: 46px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(5) h3 {
    margin-bottom: 30px;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(5) h3 + div {
  width: 73.1982905983%;
}
#second.about.minutes3 #company .dataset > li:nth-child(5) h3 + div figure {
  width: 19.1985240886%;
}
#second.about.minutes3 #company .dataset > li:nth-child(5) h3 + div div {
  width: 66.3225987249%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(5) h3 + div div {
    width: 100%;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(6) {
  width: 48.75%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(6) {
    width: 100%;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(6) .num {
  font-size: 14rem;
  line-height: 0.43;
  width: 165px;
}
#second.about.minutes3 #company .dataset > li:nth-child(6) h3 {
  margin-bottom: 10px;
}
#second.about.minutes3 #company .dataset > li:nth-child(6) h3 span {
  font-size: 60%;
  display: inline-block;
  position: relative;
  top: -0.5em;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(6) h3 {
    margin-bottom: 20px;
  }
}
#second.about.minutes3 #company .dataset > li:nth-child(6) h3 + div {
  width: 79.4871794872%;
}
#second.about.minutes3 #company .dataset > li:nth-child(6) h3 + div figure {
  width: 42.4279569892%;
}
#second.about.minutes3 #company .dataset > li:nth-child(6) h3 + div div {
  width: 49.4623655914%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #company .dataset > li:nth-child(6) h3 + div div {
    width: 100%;
  }
}
#second.about.minutes3 #environment {
  padding: 84px 0 148px;
  background: rgba(157, 193, 56, 0.15);
}
#second.about.minutes3 #environment .dataset > li {
  height: 320px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li {
    height: auto;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(1) {
  width: 48.75%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(1) {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(1) .num {
  font-size: 12rem;
  width: 141px;
}
#second.about.minutes3 #environment .dataset > li:nth-child(1) h3 {
  margin-bottom: 43px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(1) h3 {
    margin-bottom: 20px;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(1) h3 + div {
  width: 72.8205128205%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(1) h3 + div {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(1) h3 + div figure {
  width: 32.8638497653%;
}
#second.about.minutes3 #environment .dataset > li:nth-child(1) h3 + div div {
  width: 47.8873239437%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(1) h3 + div div {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(2) {
  width: 48.75%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(2) {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(2) .num {
  font-size: 12rem;
  width: 212px;
}
#second.about.minutes3 #environment .dataset > li:nth-child(2) h3 {
  margin-bottom: 43px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(2) h3 {
    margin-bottom: 20px;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(2) h3 + div {
  width: 80%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(2) h3 + div {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(2) h3 + div figure {
  width: 29.9145299145%;
}
#second.about.minutes3 #environment .dataset > li:nth-child(2) h3 + div div {
  width: 57.0512820513%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(2) h3 + div div {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(3) {
  width: 48.75%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(3) {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(3) .num {
  width: 230px;
}
#second.about.minutes3 #environment .dataset > li:nth-child(3) h3 {
  margin-bottom: 49px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(3) h3 {
    margin-bottom: 20px;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(3) h3 + div {
  width: 83.6598290598%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(3) h3 + div {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(3) h3 + div figure {
  width: 28.6896467175%;
}
#second.about.minutes3 #environment .dataset > li:nth-child(3) h3 + div div {
  width: 67.019472426%;
  margin-right: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(3) h3 + div div {
    width: 100%;
    margin-right: 0;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(4) {
  width: 48.75%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(4) {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(4) .num {
  font-size: 11rem;
  width: 194px;
}
#second.about.minutes3 #environment .dataset > li:nth-child(4) h3 {
  margin-bottom: 43px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(4) h3 {
    margin-bottom: 20px;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(4) h3 + div {
  width: 82.735042735%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(4) h3 + div {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(4) h3 + div figure {
  width: 33.6776859504%;
}
#second.about.minutes3 #environment .dataset > li:nth-child(4) h3 + div div {
  width: 58.6776859504%;
  margin-right: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(4) h3 + div div {
    width: 100%;
    margin-right: 0;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(5) {
  width: 100%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(5) {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(5) .num {
  font-size: 11rem;
  width: 118px;
}
#second.about.minutes3 #environment .dataset > li:nth-child(5) h3 {
  margin-bottom: 42px;
  text-align: left;
  padding-left: 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(5) h3 {
    padding-left: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div {
  width: 91.25%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div figure {
  width: 33.1543378995%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div div {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div div p:nth-child(2) {
  font-weight: 700;
  white-space: nowrap;
  color: #085628;
  font-size: 2.4rem;
}
#second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div div p:nth-child(2) span {
  font-size: 53%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div div p:nth-child(2) {
    text-align: center;
    font-size: 2rem;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div div:nth-child(2) {
  width: 14.9771689498%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div div:nth-child(2) {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div div:nth-child(3) {
  width: 14.9771689498%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div div:nth-child(3) {
    width: 100%;
  }
}
#second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div div:nth-child(4) {
  width: 20.4566210046%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.minutes3 #environment .dataset > li:nth-child(5) h3 + div div:nth-child(4) {
    width: 100%;
  }
}
#second.about.chro .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .inner {
    padding: 0 15px;
  }
}
#second.about.chro .cover {
  position: relative;
}
#second.about.chro .cover .txt {
  max-width: 1175px;
  width: 100%;
  padding: 0 80px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .cover .txt {
    padding: 0 15px;
  }
}
#second.about.chro .cover .txt h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #085628;
  position: absolute;
  left: 80px;
  top: 19.6470588235%;
  line-height: 1.63;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .cover .txt h1 {
    left: 15px;
    font-size: 1.8rem;
    top: 15px;
  }
}
#second.about.chro .cover .txt h1 span {
  display: block;
  font-size: 2rem;
  margin-top: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .cover .txt h1 span {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
#second.about.chro .cover .txt p:nth-child(2) {
  position: absolute;
  left: 80px;
  top: 74%;
  color: #fff;
  background: rgba(22, 151, 75, 0.9);
  font-size: 4.4rem;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  padding: 10px 15px;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .cover .txt p:nth-child(2) {
    left: 15px;
    font-size: 2.1rem;
    top: auto;
    bottom: 50px;
    padding: 5px 10px;
  }
}
#second.about.chro .cover .txt p:nth-child(3) {
  position: absolute;
  left: 80px;
  top: 82.9411764706%;
  color: #085628;
  padding: 5px 10px;
  font-size: 2.2rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .cover .txt p:nth-child(3) {
    left: 15px;
    font-size: 1.6rem;
    top: auto;
    bottom: 20px;
    padding: 3px 10x;
  }
}
#second.about.chro .cover .txt p:nth-child(3) span {
  font-size: 1.8rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .cover .txt p:nth-child(3) span {
    font-size: 1.4rem;
  }
}
#second.about.chro .intro {
  padding: 53px 0 50px;
}
#second.about.chro .intro .ttl {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #16974b;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .intro .ttl {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}
#second.about.chro .intro p {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .intro p {
    font-size: 1.5rem;
  }
}
#second.about.chro .intro .intro1 {
  margin-bottom: 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .intro .intro1 {
    margin-bottom: 50px;
  }
}
#second.about.chro .intro .intro1 .ttl + div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .intro .intro1 .ttl + div {
    display: block;
  }
}
#second.about.chro .intro .intro1 .ttl + div div {
  width: 49.7536945813%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .intro .intro1 .ttl + div div {
    width: 100%;
    margin-bottom: 20px;
  }
}
#second.about.chro .intro .intro1 .ttl + div figure {
  width: 45.3201970443%;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .intro .intro1 .ttl + div figure {
    width: 100%;
    border-radius: 20px;
  }
}
#second.about.chro .intro .intro2 p:nth-child(2) {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .intro .intro2 p:nth-child(2) {
    margin-bottom: 30px;
  }
}
#second.about.chro .intro .intro2 figure {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .intro .intro2 figure {
    border-radius: 20px;
    margin-bottom: 30px;
  }
}
#second.about.chro .message {
  padding: 66px 0 0;
  background: #16974b;
}
#second.about.chro .message .ttl {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #fff;
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .message .ttl {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}
#second.about.chro .message p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.about.chro .message p {
    font-size: 1.5rem;
  }
}

/* ========================================
works
========================================*/
#second.works.index .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .inner {
    padding: 0 15px;
  }
}
#second.works.index h2.ttl {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 5rem;
  color: #16974b;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index h2.ttl {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}
#second.works.index h1.ttl {
  height: 400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../imgs/works/index/h1_bg.jpg") no-repeat center;
  background-size: cover;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #fff;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index h1.ttl {
    font-size: 5rem;
    height: 200px;
    font-size: 10.6666666667vw;
  }
}
#second.works.index .connection {
  padding: 60px 0 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .connection {
    padding: 75px 0 45px;
  }
}
#second.works.index .connection p {
  font-size: 2.4rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  max-width: 905px;
  margin: 0 auto 45px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .connection p {
    font-size: 1.8rem;
    text-align: justify;
  }
}
#second.works.index .connection figure {
  max-width: 1118px;
  margin: 0 auto;
}
#second.works.index .works {
  padding: 60px 0 150px;
  background: rgba(234, 232, 232, 0.46);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .works {
    padding: 75px 0 45px;
  }
}
#second.works.index .works h2.ttl {
  margin-bottom: 100px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .works h2.ttl {
    margin-bottom: 30px;
  }
}
#second.works.index .works .works-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: -50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .works .works-list {
    display: block;
    margin-bottom: -30px;
  }
}
#second.works.index .works .works-list > li {
  width: 48.2033304119%;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .works .works-list > li {
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
}
#second.works.index .works .works-list > li figure {
  position: relative;
}
#second.works.index .works .works-list > li h3 {
  background: #085628;
  border-radius: 5px;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 500;
  padding: 5px;
  width: 290px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -18px;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .works .works-list > li h3 {
    font-size: 2rem;
    border: -16px;
    width: 90%;
  }
}
#second.works.index .works .works-list > li div {
  padding: 28px 40px 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .works .works-list > li div {
    padding: 28px 15px;
  }
}
#second.works.index .works .works-list > li ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
#second.works.index .works .works-list > li li {
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
  width: 120px;
  border-radius: 10px;
  padding: 5px;
  margin: 0 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .works .works-list > li li {
    font-size: 1.6rem;
  }
}
#second.works.index .works .works-list > li li:nth-child(1) {
  border: 1px solid #085628;
  color: #085628;
}
#second.works.index .works .works-list > li li:nth-child(2) {
  border: 1px solid #707070;
  color: #707070;
}
#second.works.index .works .works-list > li p:nth-child(2) {
  font-size: 1.8rem;
  font-weight: 700;
  color: #085628;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .works .works-list > li p:nth-child(2) {
    font-size: 1.6rem;
    text-align: justify;
  }
}
#second.works.index .works .works-list > li p:nth-child(3) {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 55px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .works .works-list > li p:nth-child(3) {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
#second.works.index .works .works-list > li nav {
  margin: auto 40px 36px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.index .works .works-list > li nav {
    margin-left: 20px;
    margin-right: 20px;
  }
}
#second.works.index .works .works-list > li nav a {
  background: #16974b;
  border-radius: 10px;
  display: inline-block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 8px 29px 8px 38px;
  text-decoration: none;
  white-space: nowrap;
}
#second.works.pj01 .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .inner {
    padding: 0 15px;
  }
}
#second.works.pj01 .cover {
  position: relative;
}
#second.works.pj01 .cover .txt {
  max-width: 1175px;
  padding: 0 80px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .cover .txt {
    padding: 0 15px;
  }
}
#second.works.pj01 .cover .ttl {
  position: absolute;
  left: 80px;
  top: 9.4117647059%;
  width: 463.6px;
  height: 67.24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../imgs/works/pj01/t_project01.svg?2") no-repeat center left;
  background-size: contain;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .cover .ttl {
    left: 15px;
    top: 20px;
    width: 194.38px;
    height: 27.72px;
  }
}
#second.works.pj01 .cover p:nth-child(2) {
  background: #fff;
  font-size: 2.8rem;
  font-weight: 500;
  position: absolute;
  left: 80px;
  top: 18.8235294118%;
  padding: 5px 10px;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .cover p:nth-child(2) {
    left: 15px;
    top: 60px;
    font-size: 1.4rem;
    padding: 3px 5px;
  }
}
#second.works.pj01 .cover p:nth-child(2) span:nth-child(1) {
  width: 84.01px;
  height: 25.3px;
  display: inline-block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../imgs/works/pj01/t_project.svg") no-repeat center;
  background-size: contain;
  margin-right: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .cover p:nth-child(2) span:nth-child(1) {
    width: 46.07px;
    height: 13.87px;
  }
}
#second.works.pj01 .cover p:nth-child(2) span:nth-child(2) {
  position: relative;
  top: -1px;
}
#second.works.pj01 .cover p:nth-child(3) {
  position: absolute;
  left: 80px;
  bottom: 6.1176470588%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .cover p:nth-child(3) {
    left: 15px;
    bottom: 15px;
  }
}
#second.works.pj01 .cover p:nth-child(3) span {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 4.4rem;
  color: #fff;
  background: #16974b;
  padding: 5px 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .cover p:nth-child(3) span {
    font-size: 1.8rem;
    line-height: 1.8;
    padding: 3px 5px;
  }
}
#second.works.pj01 .introduction {
  background: #d0d922;
  padding: 55px 0 63px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .introduction {
    padding: 75px 0 45px;
  }
}
#second.works.pj01 .introduction .ttl {
  width: 224.43px;
  height: 40.8px;
  margin: 0 auto 53px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../imgs/works/pj01/t_introduction.svg") no-repeat center;
  background-size: contain;
}
#second.works.pj01 .introduction .ttl + div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 893px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .introduction .ttl + div {
    display: block;
  }
}
#second.works.pj01 .introduction .ttl + div > figure {
  width: 18.7010078387%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .introduction .ttl + div > figure {
    width: 40%;
    margin: 0 auto 30px;
  }
}
#second.works.pj01 .introduction .ttl + div > div {
  width: 76.1478163494%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .introduction .ttl + div > div {
    width: 100%;
  }
}
#second.works.pj01 .introduction .ttl + div p {
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .introduction .ttl + div p {
    font-size: 1.5rem;
  }
}
#second.works.pj01 .member_profiles {
  background: #16974b;
  color: #fff;
  padding: 50px 0 65px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .member_profiles {
    padding: 75px 0 45px;
  }
}
#second.works.pj01 .member_profiles .ttl {
  width: 294.92px;
  height: 40.8px;
  margin: 0 auto 53px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../imgs/works/pj01/t_member_profiles.svg") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .member_profiles .ttl {
    margin-bottom: 30px;
  }
}
#second.works.pj01 .member_profiles ul {
  max-width: 765px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#second.works.pj01 .member_profiles li {
  width: 44.4444444444%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .member_profiles li {
    width: calc((100% - 10px) / 2);
  }
}
#second.works.pj01 .member_profiles figure {
  width: 70%;
  margin: 0 auto 23px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .member_profiles figure {
    margin-bottom: 20px;
  }
}
#second.works.pj01 .member_profiles h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .member_profiles h3 {
    font-size: 2rem;
  }
}
#second.works.pj01 .member_profiles p:nth-child(3) {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .member_profiles p:nth-child(3) {
    font-size: 1.2rem;
  }
}
#second.works.pj01 .member_profiles p:nth-child(4) {
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .member_profiles p:nth-child(4) {
    font-size: 1.5rem;
    padding: 0 10px;
  }
}
#second.works.pj01 .story {
  padding: 60px 0;
}
#second.works.pj01 .story h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #16974b;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story h3 {
    font-size: 2.4rem;
  }
}
#second.works.pj01 .story .story__cover {
  position: relative;
  margin-bottom: 45px;
}
#second.works.pj01 .story .story__cover img {
  border-radius: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story .story__cover img {
    border-radius: 20px;
  }
}
#second.works.pj01 .story .ttl {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -20px;
  width: 170px;
  padding: 5px 10px 3px;
  background: #16974b;
  text-align: center;
}
#second.works.pj01 .story p {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story p {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
#second.works.pj01 .story .lead {
  padding: 15px 0;
  border-top: 1px dashed #16974b;
  border-bottom: 1px dashed #16974b;
  font-style: italic;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story .lead {
    font-size: 1.5rem;
  }
}
#second.works.pj01 .story .talk {
  zoom: 1;
  width: 100%;
}
#second.works.pj01 .story .talk:after {
  display: table;
  clear: both;
  content: "";
}
#second.works.pj01 .story .talk:before {
  display: table;
  content: "";
}
#second.works.pj01 .story .talk__item {
  padding-left: 155px;
  position: relative;
  min-height: 100px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story .talk__item {
    padding-left: 80px;
    min-height: 70px;
  }
}
#second.works.pj01 .story .talk__item::after {
  width: 100px;
  height: 100px;
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 0;
  background: #ccc;
  border-radius: 50%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story .talk__item::after {
    width: 70px;
    height: 70px;
    left: 0;
  }
}
#second.works.pj01 .story .aoki::after {
  border: 5px solid #16974b;
  background: url("../imgs/works/pj01/talk_aoki.png") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story .aoki::after {
    border-width: 3px;
  }
}
#second.works.pj01 .story .obara::after {
  border: 5px solid #9dc138;
  background: url("../imgs/works/pj01/talk_obara.png") no-repeat center;
  background-size: 105% auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story .obara::after {
    border-width: 3px;
  }
}
#second.works.pj01 .story_01 .ttl span {
  width: 111.35px;
  height: 32.64px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../imgs/works/pj01/t_story_01.svg") no-repeat center;
  background-size: contain;
  display: inline-block;
}
#second.works.pj01 .story_01__figure {
  float: right;
  width: 33.6749633968vw;
  max-width: 460px;
  margin-left: 40px;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story_01__figure {
    width: 100%;
    max-width: none;
    border-radius: 20px;
    margin: 0;
    float: none;
  }
}
#second.works.pj01 .story_02 {
  background: rgba(208, 217, 34, 0.15);
}
#second.works.pj01 .story_02 .ttl span {
  width: 119.41px;
  height: 32.64px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../imgs/works/pj01/t_story_02.svg") no-repeat center;
  background-size: contain;
  display: inline-block;
}
#second.works.pj01 .story_02__figure {
  float: left;
  width: 43.9238653001vw;
  max-width: 600px;
  margin-right: 40px;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story_02__figure {
    border-radius: 20px;
    width: 100%;
    float: none;
    margin: 0;
    max-width: none;
  }
}
#second.works.pj01 .story_02__talk1 {
  margin-bottom: 50px;
}
#second.works.pj01 .story_02__talk1 .obara {
  margin-bottom: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story_02__talk1 p:nth-child(3) {
    padding-left: 80px;
  }
}
#second.works.pj01 .story_03 .ttl span {
  width: 119.23px;
  height: 32.64px;
  background: #fff;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../imgs/works/pj01/t_story_03.svg") no-repeat center;
  background-size: contain;
  display: inline-block;
}
#second.works.pj01 .story_03__figure {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.works.pj01 .story_03__figure {
    border-radius: 20px;
  }
}

/* ========================================
style
========================================*/
#second.style.index .ttl {
  font-weight: 700;
  font-size: 5rem;
  color: #16974b;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  margin-bottom: 34px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .ttl {
    font-size: 7.4666666667vw;
  }
}
#second.style.index .ttl-sub {
  font-weight: 700;
  font-size: 5rem;
  color: #16974b;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  margin-bottom: 52px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .ttl-sub {
    font-size: 6.4vw;
  }
}
#second.style.index .cover {
  height: 400px;
  background: url("../imgs/_common/cover_bg.jpg?3") no-repeat center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .cover {
    height: 200px;
  }
}
#second.style.index .cover h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
  font-size: 6rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  line-height: 1.43;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .cover h1 {
    font-size: 9.0666666667vw;
    line-height: 1.2;
  }
}
#second.style.index .motomeru {
  padding: 60px 0 150px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru {
    padding: 50px 0;
  }
}
#second.style.index .motomeru figure {
  height: 50vw;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru figure {
    height: 300px;
  }
}
#second.style.index .motomeru figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#second.style.index .motomeru .inner {
  margin: 0 auto 76px;
  max-width: 1175px;
  padding: 0 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru .inner {
    padding: 0 15px;
  }
}
#second.style.index .motomeru .inner > p {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru .inner > p {
    font-size: 1.8rem;
  }
}
#second.style.index .motomeru ul {
  margin: 0 auto 76px;
  max-width: 1175px;
  padding: 0 80px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru ul {
    padding: 0 15px;
  }
}
#second.style.index .motomeru ul li {
  border-radius: 30px;
  margin-bottom: 40px;
  height: 140px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  color: #085628;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru ul li {
    margin-bottom: 10px;
    white-space: normal;
    height: auto;
    padding: 15px;
    border-radius: 20px;
  }
}
#second.style.index .motomeru ul li p {
  line-height: 1.2;
  text-align: center;
}
#second.style.index .motomeru ul li:nth-child(1), #second.style.index .motomeru ul li:nth-child(7) {
  font-size: 3.8rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru ul li:nth-child(1), #second.style.index .motomeru ul li:nth-child(7) {
    font-size: 6.4vw;
  }
}
#second.style.index .motomeru ul li:nth-child(2), #second.style.index .motomeru ul li:nth-child(3), #second.style.index .motomeru ul li:nth-child(4), #second.style.index .motomeru ul li:nth-child(5), #second.style.index .motomeru ul li:nth-child(6) {
  width: calc((100% - 80px) / 3);
  background: no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru ul li:nth-child(2), #second.style.index .motomeru ul li:nth-child(3), #second.style.index .motomeru ul li:nth-child(4), #second.style.index .motomeru ul li:nth-child(5), #second.style.index .motomeru ul li:nth-child(6) {
    width: 100%;
  }
}
#second.style.index .motomeru ul li:nth-child(2) p, #second.style.index .motomeru ul li:nth-child(3) p, #second.style.index .motomeru ul li:nth-child(4) p, #second.style.index .motomeru ul li:nth-child(5) p, #second.style.index .motomeru ul li:nth-child(6) p {
  font-size: 3.8rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru ul li:nth-child(2) p, #second.style.index .motomeru ul li:nth-child(3) p, #second.style.index .motomeru ul li:nth-child(4) p, #second.style.index .motomeru ul li:nth-child(5) p, #second.style.index .motomeru ul li:nth-child(6) p {
    font-size: 6.4vw;
  }
}
#second.style.index .motomeru ul li:nth-child(2) span, #second.style.index .motomeru ul li:nth-child(3) span, #second.style.index .motomeru ul li:nth-child(4) span, #second.style.index .motomeru ul li:nth-child(5) span, #second.style.index .motomeru ul li:nth-child(6) span {
  display: block;
}
#second.style.index .motomeru ul li:nth-child(2) span:nth-child(1), #second.style.index .motomeru ul li:nth-child(3) span:nth-child(1), #second.style.index .motomeru ul li:nth-child(4) span:nth-child(1), #second.style.index .motomeru ul li:nth-child(5) span:nth-child(1), #second.style.index .motomeru ul li:nth-child(6) span:nth-child(1) {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru ul li:nth-child(2) span:nth-child(1), #second.style.index .motomeru ul li:nth-child(3) span:nth-child(1), #second.style.index .motomeru ul li:nth-child(4) span:nth-child(1), #second.style.index .motomeru ul li:nth-child(5) span:nth-child(1), #second.style.index .motomeru ul li:nth-child(6) span:nth-child(1) {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
#second.style.index .motomeru ul li:nth-child(1) {
  background-image: url("../imgs/style/index/kachi_bg1.jpg");
  color: #fff;
}
#second.style.index .motomeru ul li:nth-child(2) {
  background-image: url("../imgs/style/index/kachi_bg2.jpg");
}
#second.style.index .motomeru ul li:nth-child(3) {
  margin-left: 30px;
  margin-right: 30px;
  background-image: url("../imgs/style/index/kachi_bg3.jpg");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru ul li:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }
}
#second.style.index .motomeru ul li:nth-child(4) {
  background-image: url("../imgs/style/index/kachi_bg4.jpg");
}
#second.style.index .motomeru ul li:nth-child(5) {
  margin-right: 15px;
  background-image: url("../imgs/style/index/kachi_bg5.jpg");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru ul li:nth-child(5) {
    margin-right: 0;
  }
}
#second.style.index .motomeru ul li:nth-child(6) {
  margin-left: 15px;
  background-image: url("../imgs/style/index/kachi_bg6.jpg");
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .motomeru ul li:nth-child(6) {
    margin-left: 0;
  }
}
#second.style.index .motomeru ul li:nth-child(7) {
  background-image: url("../imgs/style/index/kachi_bg7.jpg");
}
#second.style.index .career {
  padding: 0 0 145px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career {
    padding: 0 0 50px;
  }
}
#second.style.index .career .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .inner {
    padding: 0 15px;
  }
}
#second.style.index .career .ttl--sub {
  font-weight: 700;
  font-size: 4rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #16974b;
  text-align: center;
  margin-bottom: 44px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .ttl--sub {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
  }
}
#second.style.index .career h2.ttl {
  font-weight: 700;
  font-size: 5rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  height: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  color: #085628;
  text-align: center;
  background: #eee center no-repeat;
  background-size: cover;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career h2.ttl {
    font-size: 3rem;
    height: 100px;
  }
}
#second.style.index .career .qa {
  border: 2px dashed #16974b;
  max-width: 1200px;
  border-radius: 20px;
  border: 2px dashed #16974b;
  position: relative;
  padding: 72px 50px 42px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa {
    padding: 60px 15px 40px;
    border-radius: 10px;
  }
}
#second.style.index .career .qa__ttl {
  max-width: 1100px;
  width: 95%;
  height: 60px;
  background: #16974b;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  border-radius: 20px;
  padding: 15px 0;
  line-height: 1;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: -30px;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__ttl {
    font-size: 1.6rem;
    padding: 10px 0;
    border-radius: 10px;
    line-height: 1.3;
  }
}
#second.style.index .career .qa__profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__profile {
    margin-bottom: 30px;
  }
}
#second.style.index .career .qa__profile figure {
  max-width: 200px;
  border-radius: 100px;
  border: #16974b solid 6px;
  margin-right: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__profile figure {
    max-width: 120px;
    border-width: 3px;
  }
}
#second.style.index .career .qa__profile p:nth-child(1) {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__profile p:nth-child(1) {
    font-size: 2.2rem;
  }
}
#second.style.index .career .qa__profile p:nth-child(2) {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__profile p:nth-child(2) {
    font-size: 1.5rem;
  }
}
#second.style.index .career .qa__profile p:nth-child(3) {
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__profile p:nth-child(3) {
    font-size: 1.2rem;
  }
}
#second.style.index .career .qa__list {
  margin-bottom: -67px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__list {
    margin-bottom: -50px;
  }
}
#second.style.index .career .qa__list dl {
  margin-bottom: 67px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__list dl {
    margin-bottom: 50px;
  }
}
#second.style.index .career .qa__list dt {
  background: #d0d922;
  font-size: 2rem;
  font-weight: 700;
  padding: 19px 36px;
  border-radius: 100px;
  margin-bottom: 52px;
  position: relative;
  height: 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__list dt {
    font-size: 1.6rem;
    padding: 8px 15px 10px;
    height: auto;
    line-height: 1.3;
    border-radius: 20px;
    margin-bottom: 30px;
  }
}
#second.style.index .career .qa__list dt span {
  position: relative;
  z-index: 2;
  display: inline-block;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__list dt span {
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
#second.style.index .career .qa__list dt::after {
  content: "";
  display: block;
  width: 35.38px;
  height: 45.92px;
  position: absolute;
  background: url("../imgs/style/welfare/qa_balloon.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(-170deg);
  transform: rotate(-170deg);
  position: absolute;
  left: 32.6px;
  bottom: -25.7px;
  z-index: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__list dt::after {
    -webkit-transform: scale(0.6) rotate(-170deg);
    transform: scale(0.6) rotate(-170deg);
  }
}
#second.style.index .career .qa__list dd {
  color: #085628;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  padding-left: 172px;
  position: relative;
  min-height: 100px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__list dd {
    padding-left: 80px;
    line-height: 1.6;
    font-size: 1.5rem;
    min-height: 70px;
  }
}
#second.style.index .career .qa__list dd::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  background: url("../imgs/style/welfare/member_ebisawa@2x.png") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 53px;
  top: -5px;
  border: #16974b solid 5px;
  border-radius: 100px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .qa__list dd::after {
    border-width: 3px;
    width: 70px;
    height: 70px;
    left: 0;
  }
}
#second.style.index .career .career1__policy {
  background: #16974b;
  padding: 20px 30px 23px;
  border-radius: 15px;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career1__policy {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
  }
}
#second.style.index .career .career1__policy h4 {
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.3;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career1__policy h4 {
    font-size: 1.8rem;
  }
}
#second.style.index .career .career1__policy div {
  border-radius: 5px;
  background: #d0d922;
  padding: 15px 30px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career1__policy div {
    padding: 10px;
  }
}
#second.style.index .career .career1__policy ul {
  display: inline-block;
  list-style: disc;
  margin-bottom: -10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career1__policy ul {
    margin-left: 20px;
    margin-bottom: -5px;
  }
}
#second.style.index .career .career1__policy li {
  color: #085628;
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  margin-left: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career1__policy li {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: justify;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
  }
}
#second.style.index .career .career1__relationship {
  max-width: 100%;
  margin-bottom: 80px;
}
#second.style.index .career .career2 {
  margin-bottom: 80px;
}
#second.style.index .career .career2 .ttl--sub {
  margin-bottom: 33px;
}
#second.style.index .career .career2 h4 {
  background: #16974b;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 10px;
  min-height: 45px;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career2 h4 {
    font-size: 2rem;
    line-height: 1.2;
    padding: 10px 0;
  }
}
#second.style.index .career .career2 p {
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career2 p {
    font-size: 1.5rem;
  }
}
#second.style.index .career .career3 .ttl--sub {
  margin-bottom: 30px;
}
#second.style.index .career .career3 > p {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career3 > p {
    font-size: 1.5rem;
  }
}
#second.style.index .career .career3 > p span {
  color: #085628;
}
#second.style.index .career .career3 h4 {
  font-weight: 700;
  font-size: 2.8rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #085628;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career3 h4 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
  }
}
#second.style.index .career .career3 h5 {
  background: #16974b;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 10px;
  min-height: 45px;
  margin-bottom: 33px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career3 h5 {
    font-size: 2rem;
    line-height: 1.2;
    padding: 10px 0;
  }
}
#second.style.index .career .career3__training-system {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: -30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career3__training-system {
    display: block;
    padding-bottom: -10px;
  }
}
#second.style.index .career .career3__training-system li {
  background: #d0d922;
  width: calc((100% - 30px) / 2);
  margin-bottom: 30px;
  padding: 25px 25px 25px 80px;
  font-size: 2rem;
  font-weight: 500;
  color: #161717;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
  min-height: 80px;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.index .career .career3__training-system li {
    margin-bottom: 10px;
    width: 100%;
    line-height: 1.2;
    padding: 15px 15px 15px 80px;
  }
}
#second.style.index .career .career3__training-system li::before {
  font-size: 2.8rem;
  font-weight: 500;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 32px;
  color: #085628;
}
#second.style.index .career .career3__training-system li:nth-child(1)::before {
  content: "1";
}
#second.style.index .career .career3__training-system li:nth-child(2)::before {
  content: "2";
}
#second.style.index .career .career3__training-system li:nth-child(3)::before {
  content: "3";
}
#second.style.index .career .career3__training-system li:nth-child(4)::before {
  content: "4";
}
#second.style.index .career .career3__training-fig {
  max-width: 100%;
  margin-bottom: 90px;
}
#second.style.index .career .career3 dd::after {
  background-image: url("../imgs/style/welfare/member_tanaka@2x.png");
}

#second.style.welfare .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .inner {
    padding: 0 15px;
  }
}
#second.style.welfare h1.ttl {
  height: 400px;
  background: url("../imgs/_common/cover_bg.jpg?3") no-repeat center;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 6rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  line-height: 1.43;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare h1.ttl {
    height: 200px;
    font-size: 8.5333333333vw;
    line-height: 1.2;
  }
}
#second.style.welfare h2.ttl {
  font-weight: 700;
  font-size: 5rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  height: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  color: #085628;
  text-align: center;
  background: #eee center no-repeat;
  background-size: cover;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare h2.ttl {
    font-size: 3rem;
    height: 100px;
  }
}
#second.style.welfare .lead {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 70px;
  text-align: center;
  line-height: 1.83;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .lead {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 50px;
  }
}
#second.style.welfare .ttl--sub {
  font-weight: 700;
  font-size: 4rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #16974b;
  text-align: center;
  margin-bottom: 44px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .ttl--sub {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
  }
}
#second.style.welfare .qa {
  border: 2px dashed #16974b;
  max-width: 1200px;
  border-radius: 20px;
  border: 2px dashed #16974b;
  position: relative;
  padding: 72px 50px 42px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa {
    padding: 60px 15px 40px;
    border-radius: 10px;
  }
}
#second.style.welfare .qa__ttl {
  max-width: 1100px;
  width: 95%;
  height: 60px;
  background: #16974b;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  border-radius: 20px;
  padding: 15px 0;
  line-height: 1;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: -30px;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__ttl {
    font-size: 1.6rem;
    padding: 10px 0;
    border-radius: 10px;
    line-height: 1.3;
  }
}
#second.style.welfare .qa__profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__profile {
    margin-bottom: 30px;
  }
}
#second.style.welfare .qa__profile figure {
  max-width: 200px;
  border-radius: 100px;
  border: #16974b solid 6px;
  margin-right: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__profile figure {
    max-width: 120px;
    border-width: 3px;
  }
}
#second.style.welfare .qa__profile p:nth-child(1) {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__profile p:nth-child(1) {
    font-size: 2.2rem;
  }
}
#second.style.welfare .qa__profile p:nth-child(2) {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__profile p:nth-child(2) {
    font-size: 1.5rem;
  }
}
#second.style.welfare .qa__profile p:nth-child(3) {
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__profile p:nth-child(3) {
    font-size: 1.2rem;
  }
}
#second.style.welfare .qa__list {
  margin-bottom: -67px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__list {
    margin-bottom: -50px;
  }
}
#second.style.welfare .qa__list dl {
  margin-bottom: 67px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__list dl {
    margin-bottom: 50px;
  }
}
#second.style.welfare .qa__list dt {
  background: #d0d922;
  font-size: 2rem;
  font-weight: 700;
  padding: 19px 36px;
  border-radius: 100px;
  margin-bottom: 52px;
  position: relative;
  height: 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__list dt {
    font-size: 1.6rem;
    padding: 8px 15px 10px;
    height: auto;
    line-height: 1.3;
    border-radius: 20px;
    margin-bottom: 30px;
  }
}
#second.style.welfare .qa__list dt span {
  position: relative;
  z-index: 2;
  display: inline-block;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__list dt span {
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
#second.style.welfare .qa__list dt::after {
  content: "";
  display: block;
  width: 35.38px;
  height: 45.92px;
  position: absolute;
  background: url("../imgs/style/welfare/qa_balloon.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(-170deg);
  transform: rotate(-170deg);
  position: absolute;
  left: 32.6px;
  bottom: -25.7px;
  z-index: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__list dt::after {
    -webkit-transform: scale(0.6) rotate(-170deg);
    transform: scale(0.6) rotate(-170deg);
  }
}
#second.style.welfare .qa__list dd {
  color: #085628;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  padding-left: 172px;
  position: relative;
  min-height: 100px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__list dd {
    padding-left: 80px;
    line-height: 1.6;
    font-size: 1.5rem;
    min-height: 70px;
  }
}
#second.style.welfare .qa__list dd::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  background: url("../imgs/style/welfare/member_ebisawa@2x.png") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 53px;
  top: -5px;
  border: #16974b solid 5px;
  border-radius: 100px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare .qa__list dd::after {
    border-width: 3px;
    width: 70px;
    height: 70px;
    left: 0;
  }
}
#second.style.welfare section.welfare__nav {
  padding: 50px 0 110px;
}
#second.style.welfare section.welfare__nav nav {
  max-width: 890px;
  margin: 0 auto;
  width: 100%;
}
#second.style.welfare section.welfare__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.welfare__nav ul {
    margin-left: -10px;
    margin-right: -10px;
  }
}
#second.style.welfare section.welfare__nav li {
  margin-bottom: 50px;
  width: 47.191011236%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.welfare__nav li {
    margin-bottom: 5px;
    width: calc((100% - 5px) / 2);
  }
}
#second.style.welfare section.welfare__nav a {
  background: url("../imgs/style/welfare/nav_bg@2x.jpg") no-repeat center;
  border-radius: 30px;
  padding: 27px;
  height: 150px;
  font-weight: 700;
  font-size: 3.3rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  line-height: 1.36;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #085628;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.welfare__nav a {
    padding: 15px 0;
    font-size: 1.8rem;
    line-height: 1.2;
    border-radius: 20px;
    height: 100px;
    letter-spacing: -0.05em;
  }
}
#second.style.welfare section.welfare__nav a::after {
  width: 31px;
  height: 19px;
  display: block;
  content: "";
  background: url("../imgs/style/welfare/nav_arrow.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.welfare__nav a::after {
    bottom: 5px;
    width: 20px;
    height: 12.26px;
  }
}
#second.style.welfare section.work-life-balance {
  padding: 0 0 150px;
}
#second.style.welfare section.work-life-balance h2.ttl {
  background-image: url("../imgs/style/welfare/h2_1_bg@2x.jpg");
  background-position: 70% center;
}
#second.style.welfare section.work-life-balance .work-style {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}
#second.style.welfare section.work-life-balance .work-style li {
  width: 47.9166666667%;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.work-life-balance .work-style li {
    width: 100%;
    margin-bottom: 20px;
  }
}
#second.style.welfare section.work-life-balance .work-style li:nth-child(1) figure {
  max-width: 33.1304347826%;
}
#second.style.welfare section.work-life-balance .work-style li:nth-child(2) figure {
  max-width: 31.4330434783%;
}
#second.style.welfare section.work-life-balance .work-style li:nth-child(3) figure {
  max-width: 15.7113043478%;
}
#second.style.welfare section.work-life-balance .work-style li:nth-child(4) figure {
  max-width: 32.3147826087%;
}
#second.style.welfare section.work-life-balance .work-style a {
  border-radius: 30px;
  background: #d0d922;
  display: block;
  padding: 27px 0;
  position: relative;
  height: 300px;
  text-decoration: none;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.work-life-balance .work-style a {
    border-radius: 20px;
    padding: 15px 0;
    height: 180px;
  }
}
#second.style.welfare section.work-life-balance .work-style a::after {
  content: "";
  display: block;
  width: 30px;
  height: 30.15px;
  background: url("../imgs/style/welfare/icon_blank.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  right: 31px;
  bottom: 24.9px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.work-life-balance .work-style a::after {
    width: 25px;
    height: 25px;
    right: 15px;
    bottom: 15px;
  }
}
#second.style.welfare section.work-life-balance .work-style h5 {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #085628;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.work-life-balance .work-style h5 {
    font-size: 2.2rem;
    letter-spacing: -0.05em;
  }
}
#second.style.welfare section.work-life-balance .work-style span {
  white-space: nowrap;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 25px;
  margin-top: 20px;
  font-weight: 500;
  font-size: 10rem;
  line-height: 1x;
  color: rgba(8, 86, 40, 0.5);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.work-life-balance .work-style span {
    left: 10px;
    font-size: 6rem;
    margin-top: 10px;
  }
}
#second.style.welfare section.work-life-balance .work-style figure {
  margin-top: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.work-life-balance .work-style figure {
    margin-top: 10px;
  }
}
#second.style.welfare section.communication {
  padding: 0 0 198px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication {
    padding: 0 0 50px;
  }
}
#second.style.welfare section.communication h2.ttl {
  background-image: url("../imgs/style/welfare/h2_2_bg@2x.jpg");
  background-position: 70% center;
}
#second.style.welfare section.communication .lead {
  margin-bottom: 80px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .lead {
    margin-bottom: 50px;
  }
}
#second.style.welfare section.communication .ttl--sub + p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 46px;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .ttl--sub + p {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 30px;
  }
}
#second.style.welfare section.communication .communication__club {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication__club {
    display: block;
  }
}
#second.style.welfare section.communication .communication__club li {
  background: #9dc138;
  border-radius: 30px;
  width: 47.9166666667%;
  padding: 20px 30px 18px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication__club li {
    width: 100%;
    padding: 15px 30px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication__club li:nth-child(1) {
    margin-bottom: 10px;
  }
}
#second.style.welfare section.communication .communication__club h4 {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication__club h4 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
#second.style.welfare section.communication .communication__club p {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication__club p {
    font-size: 1.8rem;
  }
}
#second.style.welfare section.communication .communication__club-photo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 810px;
  margin: 0 auto 40px;
}
#second.style.welfare section.communication .communication__club-photo li {
  width: 48.024691358%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication__club-photo li {
    width: calc((100% - 5px) / 2);
  }
}
#second.style.welfare section.communication .communication__club-photo figure {
  max-width: 100%;
  position: relative;
}
#second.style.welfare section.communication .communication__club-photo figcaption {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication__club-photo figcaption {
    font-size: 1.4rem;
  }
}
#second.style.welfare section.communication .communication__club-photo img {
  margin-bottom: 10px;
}
#second.style.welfare section.communication .communication__club-photo + p {
  text-align: center;
  margin-bottom: 70px;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication__club-photo + p {
    font-size: 1.2rem;
  }
}
#second.style.welfare section.communication .communication2 .ttl--sub + p {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication2 .ttl--sub + p {
    margin-bottom: 30px;
  }
}
#second.style.welfare section.communication .communication2 > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1083px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication2 > div {
    display: block;
  }
}
#second.style.welfare section.communication .communication2 > div figure {
  max-width: 44.6518928901%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication2 > div figure {
    max-width: 100%;
    margin-bottom: 10px;
  }
}
#second.style.welfare section.communication .communication2 > div div {
  max-width: 51.7082179132%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication2 > div div {
    max-width: 100%;
  }
}
#second.style.welfare section.communication .communication2 > div h4 {
  background: #16974b;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 10px;
  line-height: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication2 > div h4 {
    font-size: 2rem;
  }
}
#second.style.welfare section.communication .communication2 > div p {
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.communication .communication2 > div p {
    font-size: 1.5rem;
  }
}
#second.style.welfare section.de-i {
  padding: 0 0 150px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.de-i {
    padding: 0 0 50px;
  }
}
#second.style.welfare section.de-i h2.ttl {
  background-image: url("../imgs/style/welfare/h2_3_bg@2x.jpg");
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
#second.style.welfare section.de-i h2.ttl span {
  display: block;
}
#second.style.welfare section.de-i h2.ttl span:nth-child(1) {
  margin-bottom: 10px;
}
#second.style.welfare section.de-i h2.ttl span:nth-child(2) {
  font-size: 3.5rem;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.de-i h2.ttl span:nth-child(2) {
    font-size: 2rem;
  }
}
#second.style.welfare section.de-i .de-i__cover {
  max-width: 100%;
  margin-bottom: 30px;
  text-align: center;
  padding: 40px 0;
  background: #d0d922;
}
#second.style.welfare section.de-i .de-i__cover img {
  width: 91.055%;
}
#second.style.welfare section.de-i .lead {
  margin-bottom: 40px;
}
#second.style.welfare section.de-i .ttl--sub {
  margin-bottom: 40px;
}
#second.style.welfare section.de-i .ttl--sub + p {
  font-size: 2rem;
  font-weight: 500;
  max-width: 1015px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.de-i .ttl--sub + p {
    font-size: 1.5rem;
  }
}
#second.style.welfare section.de-i ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.de-i ul {
    display: block;
    margin-bottom: -20px;
  }
}
#second.style.welfare section.de-i li {
  background: #16974b;
  padding: 14px 20px 20px;
  border-radius: 15px;
  margin-bottom: 50px;
  width: 47.9166666667%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.de-i li {
    width: 100%;
    margin-bottom: 20px;
    display: block;
    padding: 15px;
  }
}
#second.style.welfare section.de-i li h4 {
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.43;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.de-i li h4 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#second.style.welfare section.de-i li p {
  background: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 18px 23px;
  border-radius: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.welfare section.de-i li p {
    padding: 10px 15px;
    font-size: 1.5rem;
  }
}

#second.style.style2025 .ttl {
  font-weight: 700;
  font-size: 5rem;
  color: #16974b;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  line-height: 1.33;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .ttl {
    font-size: 2rem;
  }
}
#second.style.style2025 .cover {
  position: relative;
}
#second.style.style2025 .cover figure {
  position: relative;
  z-index: 1;
}
#second.style.style2025 .cover h1 {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -50px;
  z-index: 2;
  background: #085628;
  color: #fff;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1;
  padding: 20px 40px;
  border-radius: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .cover h1 {
    font-size: 2.8rem;
    bottom: -20px;
    padding: 8px 15px;
    border-radius: 10px;
  }
}
#second.style.style2025 .sec1 {
  padding: 120px 0 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec1 {
    padding: 50px 0;
  }
}
#second.style.style2025 .sec1 .ttl {
  margin-bottom: 70px;
  background: url("../imgs/style/2024/h2_bg.svg") no-repeat center;
  background-size: auto 100%;
  padding: 30px 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec1 .ttl {
    margin-bottom: 30px;
    padding: 5px 0;
  }
}
#second.style.style2025 .sec1 .ttl span:nth-child(3) {
  color: #9dc138;
}
#second.style.style2025 .sec1 .ttl-sub {
  text-align: center;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 5rem;
}
#second.style.style2025 .sec1 .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec1 .inner {
    padding: 0 15px;
  }
}
#second.style.style2025 .sec1 .inner figure,
#second.style.style2025 .sec1 .inner div {
  width: 47.6478494624%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec1 .inner figure,
  #second.style.style2025 .sec1 .inner div {
    width: 100%;
  }
}
#second.style.style2025 .sec1 .inner figure {
  margin-bottom: 99px;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec1 .inner figure {
    margin-bottom: 20px;
  }
}
#second.style.style2025 .sec1 .inner figure img {
  border-radius: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec1 .inner figure img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec1 .inner figure:nth-child(3) {
    margin-bottom: 60px;
  }
}
#second.style.style2025 .sec1 .inner figcaption {
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: -40px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec1 .inner figcaption {
    font-size: 1.2rem;
    bottom: -30px;
  }
}
#second.style.style2025 .sec1 .inner p {
  font-size: 1.6rem;
  font-size: 500;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec1 .inner p {
    font-size: 1.5rem;
  }
}
#second.style.style2025 .sec2 {
  padding: 120px 0 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec2 {
    padding: 50px 0;
  }
}
#second.style.style2025 .sec2 .ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec2 .ttl {
    margin-bottom: 30px;
  }
}
#second.style.style2025 .sec2 .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec2 .inner {
    padding: 0;
  }
}
#second.style.style2025 .sec2 figure {
  text-align: center;
  margin: 0 auto;
}
#second.style.style2025 .sec2 figure > img:nth-child(2) {
  width: 70%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec2 figure > img:nth-child(2) {
    width: 100%;
  }
}
#second.style.style2025 .sec3 {
  padding: 120px 0 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 {
    padding: 50px 0;
  }
}
#second.style.style2025 .sec3 .ttl-sub {
  margin-bottom: 75px;
  font-size: 4rem;
  text-align: center;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #16974b;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .ttl-sub {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
#second.style.style2025 .sec3 .inner {
  padding: 0 80px;
  max-width: 1175px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .inner {
    padding: 0 15px;
  }
}
#second.style.style2025 .sec3 .sec3-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 20px;
  }
}
#second.style.style2025 .sec3 .sec3-item figure {
  width: 23.9516129032%;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item figure {
    width: 50%;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item figure img {
    width: 100%;
  }
}
#second.style.style2025 .sec3 .sec3-item div {
  width: 71.6129032258%;
  background: #16974b;
  padding: 27px 47px;
  border-radius: 30px;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item div {
    border-radius: 20px;
    padding: 10px 20px;
    width: 90%;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--1 div {
    margin: 0 0 10px auto;
  }
}
#second.style.style2025 .sec3 .sec3-item--1 div::after {
  content: "";
  display: block;
  width: 43.77px;
  height: 65.8px;
  background: url("../imgs/style/2024/balloon1.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(244deg);
  transform: rotate(244deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--1 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(180deg);
    transform: scale(0.5) rotate(180deg);
    position: absolute;
    left: 30%;
    bottom: -40px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--1 figure {
    margin: 0 auto 0 10px;
  }
}
#second.style.style2025 .sec3 .sec3-item--2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#second.style.style2025 .sec3 .sec3-item--2 div {
  background: #9dc138;
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--2 div {
    margin: 0 auto 20px 0;
  }
}
#second.style.style2025 .sec3 .sec3-item--2 div::after {
  content: "";
  display: block;
  width: 43.77px;
  height: 65.8px;
  background: url("../imgs/style/2024/balloon2.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(296deg);
  transform: rotate(296deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--2 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(0deg);
    transform: scale(0.5) rotate(0deg);
    position: absolute;
    left: 50%;
    bottom: -40px;
  }
}
#second.style.style2025 .sec3 .sec3-item--2 figure img {
  width: 70%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--2 figure img {
    width: 100%;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--2 figure {
    margin: 0 20px 0 auto;
    width: 35%;
  }
}
#second.style.style2025 .sec3 .sec3-item--3 {
  margin-bottom: 120px;
}
#second.style.style2025 .sec3 .sec3-item--3 div {
  background: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--3 div {
    margin: 0 0 10px auto;
  }
}
#second.style.style2025 .sec3 .sec3-item--3 div::after {
  content: "";
  display: block;
  width: 43.77px;
  height: 65.8px;
  background: url("../imgs/style/2024/balloon3.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(244deg);
  transform: rotate(244deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--3 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(180deg);
    transform: scale(0.5) rotate(180deg);
    position: absolute;
    left: 30%;
    bottom: -40px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--3 figure {
    margin: 0 auto 0 30px;
  }
}
#second.style.style2025 .sec3 .sec3-item--4 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#second.style.style2025 .sec3 .sec3-item--4 div {
  background: #d0d922;
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--4 div {
    margin: 0 auto 10px 0;
  }
}
#second.style.style2025 .sec3 .sec3-item--4 div::after {
  content: "";
  display: block;
  width: 43.77px;
  height: 65.8px;
  background: url("../imgs/style/2024/balloon4.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(296deg);
  transform: rotate(296deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--4 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(0deg);
    transform: scale(0.5) rotate(0deg);
    position: absolute;
    left: 50%;
    bottom: -40px;
  }
}
#second.style.style2025 .sec3 .sec3-item--4 figure img {
  width: 70%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--4 figure img {
    width: 80%;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--4 figure {
    margin: 0 20px 0 auto;
    width: 50%;
  }
}
#second.style.style2025 .sec3 .sec3-item--5 div {
  background: #16974b;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--5 div {
    margin: 0 0 10px auto;
  }
}
#second.style.style2025 .sec3 .sec3-item--5 div::after {
  content: "";
  display: block;
  width: 49.91px;
  height: 75.03px;
  background: url("../imgs/style/2024/balloon5.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(244deg);
  transform: rotate(244deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--5 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(180deg);
    transform: scale(0.5) rotate(180deg);
    position: absolute;
    left: 30%;
    bottom: -40px;
  }
}
#second.style.style2025 .sec3 .sec3-item--5 figure img {
  width: 60%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--5 figure {
    margin: 0 auto 0 30px;
  }
}
#second.style.style2025 .sec3 .sec3-item--6 {
  margin-bottom: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#second.style.style2025 .sec3 .sec3-item--6 div {
  background: #9dc138;
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--6 div {
    margin: 0 auto 10px 0;
  }
}
#second.style.style2025 .sec3 .sec3-item--6 div::after {
  content: "";
  display: block;
  width: 43.77px;
  height: 65.8px;
  background: url("../imgs/style/2024/balloon6.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(296deg);
  transform: rotate(296deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--6 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(0deg);
    transform: scale(0.5) rotate(0deg);
    position: absolute;
    left: 50%;
    bottom: -40px;
  }
}
#second.style.style2025 .sec3 .sec3-item--6 figure img {
  width: 70%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--6 figure img {
    width: 80%;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec3 .sec3-item--6 figure {
    margin: 0 20px 0 auto;
    width: 50%;
  }
}
#second.style.style2025 .sec4 {
  padding: 100px 0;
}
#second.style.style2025 .sec4 .inner {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1175px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec4 .inner {
    padding: 0 15px;
  }
}
#second.style.style2025 .sec4 .lead {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 70px;
  text-align: center;
  line-height: 1.83;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec4 .lead {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 50px;
  }
}
#second.style.style2025 .sec4__ttl {
  text-align: center;
  margin-bottom: 50px;
}
#second.style.style2025 .sec4__ttl span {
  background: #085628;
  color: #fff;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 5rem;
  border-radius: 20px;
  padding: 20px 40px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec4__ttl span {
    font-size: 2.4rem;
    padding: 8px 15px;
    border-radius: 10px;
  }
}
#second.style.style2025 .sec4__photos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec4__photos {
    gap: 10px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
#second.style.style2025 .sec4__photos li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec4__photos li {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
  #second.style.style2025 .sec4__photos li:first-child {
    width: 100%;
  }
  #second.style.style2025 .sec4__photos li:nth-child(n+2) {
    width: calc((100% - 10px) / 2);
  }
}
#second.style.style2025 .sec4__photos img {
  border-radius: 20px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2025 .sec4__photos img {
    border-radius: 10px;
  }
}

#second.style.style2024 .ttl {
  font-weight: 700;
  font-size: 5rem;
  color: #16974b;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  line-height: 1.33;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .ttl {
    font-size: 2rem;
  }
}
#second.style.style2024 .cover {
  position: relative;
}
#second.style.style2024 .cover figure {
  position: relative;
  z-index: 1;
}
#second.style.style2024 .cover h1 {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -50px;
  z-index: 2;
  background: #085628;
  color: #fff;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1;
  padding: 20px 40px;
  border-radius: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .cover h1 {
    font-size: 2.8rem;
    bottom: -20px;
    padding: 8px 15px;
    border-radius: 10px;
  }
}
#second.style.style2024 .sec1 {
  padding: 120px 0 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec1 {
    padding: 50px 0;
  }
}
#second.style.style2024 .sec1 .ttl {
  margin-bottom: 70px;
  background: url("../imgs/style/2024/h2_bg.svg") no-repeat center;
  background-size: auto 100%;
  padding: 30px 0;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec1 .ttl {
    margin-bottom: 30px;
    padding: 5px 0;
  }
}
#second.style.style2024 .sec1 .ttl span:nth-child(3) {
  color: #9dc138;
}
#second.style.style2024 .sec1 .ttl-sub {
  text-align: center;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 5rem;
}
#second.style.style2024 .sec1 .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec1 .inner {
    padding: 0 15px;
  }
}
#second.style.style2024 .sec1 .inner figure,
#second.style.style2024 .sec1 .inner div {
  width: 47.6478494624%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec1 .inner figure,
  #second.style.style2024 .sec1 .inner div {
    width: 100%;
  }
}
#second.style.style2024 .sec1 .inner figure {
  margin-bottom: 99px;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec1 .inner figure {
    margin-bottom: 20px;
  }
}
#second.style.style2024 .sec1 .inner figure img {
  border-radius: 30px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec1 .inner figure img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec1 .inner figure:nth-child(3) {
    margin-bottom: 60px;
  }
}
#second.style.style2024 .sec1 .inner figcaption {
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: -40px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec1 .inner figcaption {
    font-size: 1.2rem;
    bottom: -30px;
  }
}
#second.style.style2024 .sec1 .inner p {
  font-size: 1.6rem;
  font-size: 500;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec1 .inner p {
    font-size: 1.5rem;
  }
}
#second.style.style2024 .sec2 {
  padding: 120px 0 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec2 {
    padding: 50px 0;
  }
}
#second.style.style2024 .sec2 .ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec2 .ttl {
    margin-bottom: 30px;
  }
}
#second.style.style2024 .sec2 .inner {
  max-width: 1175px;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec2 .inner {
    padding: 0;
  }
}
#second.style.style2024 .sec2 figure {
  text-align: center;
  margin: 0 auto;
}
#second.style.style2024 .sec2 figure > img:nth-child(2) {
  width: 70%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec2 figure > img:nth-child(2) {
    width: 100%;
  }
}
#second.style.style2024 .sec3 {
  padding: 120px 0 60px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 {
    padding: 50px 0;
  }
}
#second.style.style2024 .sec3 .ttl-sub {
  margin-bottom: 75px;
  font-size: 4rem;
  text-align: center;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #16974b;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .ttl-sub {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
#second.style.style2024 .sec3 .inner {
  padding: 0 80px;
  max-width: 1175px;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .inner {
    padding: 0 15px;
  }
}
#second.style.style2024 .sec3 .sec3-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 20px;
  }
}
#second.style.style2024 .sec3 .sec3-item figure {
  width: 23.9516129032%;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item figure {
    width: 50%;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item figure img {
    width: 100%;
  }
}
#second.style.style2024 .sec3 .sec3-item div {
  width: 71.6129032258%;
  background: #16974b;
  padding: 27px 47px;
  border-radius: 30px;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item div {
    border-radius: 20px;
    padding: 10px 20px;
    width: 90%;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--1 div {
    margin: 0 0 10px auto;
  }
}
#second.style.style2024 .sec3 .sec3-item--1 div::after {
  content: "";
  display: block;
  width: 43.77px;
  height: 65.8px;
  background: url("../imgs/style/2024/balloon1.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(244deg);
  transform: rotate(244deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--1 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(180deg);
    transform: scale(0.5) rotate(180deg);
    position: absolute;
    left: 30%;
    bottom: -40px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--1 figure {
    margin: 0 auto 0 10px;
  }
}
#second.style.style2024 .sec3 .sec3-item--2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#second.style.style2024 .sec3 .sec3-item--2 div {
  background: #9dc138;
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--2 div {
    margin: 0 auto 20px 0;
  }
}
#second.style.style2024 .sec3 .sec3-item--2 div::after {
  content: "";
  display: block;
  width: 43.77px;
  height: 65.8px;
  background: url("../imgs/style/2024/balloon2.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(296deg);
  transform: rotate(296deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--2 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(0deg);
    transform: scale(0.5) rotate(0deg);
    position: absolute;
    left: 50%;
    bottom: -40px;
  }
}
#second.style.style2024 .sec3 .sec3-item--2 figure img {
  width: 70%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--2 figure img {
    width: 100%;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--2 figure {
    margin: 0 20px 0 auto;
    width: 35%;
  }
}
#second.style.style2024 .sec3 .sec3-item--3 {
  margin-bottom: 120px;
}
#second.style.style2024 .sec3 .sec3-item--3 div {
  background: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--3 div {
    margin: 0 0 10px auto;
  }
}
#second.style.style2024 .sec3 .sec3-item--3 div::after {
  content: "";
  display: block;
  width: 43.77px;
  height: 65.8px;
  background: url("../imgs/style/2024/balloon3.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(244deg);
  transform: rotate(244deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--3 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(180deg);
    transform: scale(0.5) rotate(180deg);
    position: absolute;
    left: 30%;
    bottom: -40px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--3 figure {
    margin: 0 auto 0 30px;
  }
}
#second.style.style2024 .sec3 .sec3-item--4 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#second.style.style2024 .sec3 .sec3-item--4 div {
  background: #d0d922;
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--4 div {
    margin: 0 auto 10px 0;
  }
}
#second.style.style2024 .sec3 .sec3-item--4 div::after {
  content: "";
  display: block;
  width: 43.77px;
  height: 65.8px;
  background: url("../imgs/style/2024/balloon4.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(296deg);
  transform: rotate(296deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--4 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(0deg);
    transform: scale(0.5) rotate(0deg);
    position: absolute;
    left: 50%;
    bottom: -40px;
  }
}
#second.style.style2024 .sec3 .sec3-item--4 figure img {
  width: 70%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--4 figure img {
    width: 80%;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--4 figure {
    margin: 0 20px 0 auto;
    width: 50%;
  }
}
#second.style.style2024 .sec3 .sec3-item--5 div {
  background: #16974b;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--5 div {
    margin: 0 0 10px auto;
  }
}
#second.style.style2024 .sec3 .sec3-item--5 div::after {
  content: "";
  display: block;
  width: 49.91px;
  height: 75.03px;
  background: url("../imgs/style/2024/balloon5.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(244deg);
  transform: rotate(244deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--5 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(180deg);
    transform: scale(0.5) rotate(180deg);
    position: absolute;
    left: 30%;
    bottom: -40px;
  }
}
#second.style.style2024 .sec3 .sec3-item--5 figure img {
  width: 60%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--5 figure {
    margin: 0 auto 0 30px;
  }
}
#second.style.style2024 .sec3 .sec3-item--6 {
  margin-bottom: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#second.style.style2024 .sec3 .sec3-item--6 div {
  background: #9dc138;
  color: #085628;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--6 div {
    margin: 0 auto 10px 0;
  }
}
#second.style.style2024 .sec3 .sec3-item--6 div::after {
  content: "";
  display: block;
  width: 43.77px;
  height: 65.8px;
  background: url("../imgs/style/2024/balloon6.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -30px;
  margin-top: -30px;
  -webkit-transform: rotate(296deg);
  transform: rotate(296deg);
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--6 div::after {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: scale(0.5) rotate(0deg);
    transform: scale(0.5) rotate(0deg);
    position: absolute;
    left: 50%;
    bottom: -40px;
  }
}
#second.style.style2024 .sec3 .sec3-item--6 figure img {
  width: 70%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--6 figure img {
    width: 80%;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.style.style2024 .sec3 .sec3-item--6 figure {
    margin: 0 20px 0 auto;
    width: 50%;
  }
}

/* ========================================
info
========================================*/
#second.info.index .ttl,
#second.info.career .ttl {
  font-weight: 700;
  font-size: 5rem;
  color: #16974b;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  margin-bottom: 34px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.info.index .ttl,
  #second.info.career .ttl {
    font-size: 7.4666666667vw;
  }
}
#second.info.index .ttl-sub,
#second.info.career .ttl-sub {
  font-weight: 700;
  font-size: 5rem;
  color: #16974b;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  margin-bottom: 52px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.info.index .ttl-sub,
  #second.info.career .ttl-sub {
    font-size: 6.4vw;
  }
}
#second.info.index .cover,
#second.info.career .cover {
  height: 400px;
  background: url("../imgs/_common/cover_bg.jpg?3") no-repeat center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.info.index .cover,
  #second.info.career .cover {
    height: 200px;
  }
}
#second.info.index .cover h1,
#second.info.career .cover h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: #fff !important;
  font-weight: 700;
  font-size: 6rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  line-height: 1.43;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.info.index .cover h1,
  #second.info.career .cover h1 {
    font-size: 9.0666666667vw;
    line-height: 1.2;
  }
}

#second.info.career .cover {
  background: url("../imgs/_common/cover_bg.jpg?3") no-repeat center;
  background-size: cover;
}
#second.info.career .cover h1 {
  color: #16974b;
  letter-spacing: -0.05em;
}

/* ========================================
entry
========================================*/
#second.entry.index .cover {
  height: 400px;
  background: url("../imgs/style/index/cover_bg.jpg?3") repeat-x center;
  background-size: 100% 100%;
  position: relative;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.entry.index .cover {
    height: 200px;
  }
}
#second.entry.index .cover h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
  font-size: 6rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  line-height: 1.43;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  #second.entry.index .cover h1 {
    font-size: 9.0666666667vw;
    line-height: 1.2;
  }
}

.entry-ttl {
  position: relative;
  text-align: center;
}
.entry-ttl > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 1366px;
  width: 100%;
  padding: 0 50px;
  font-weight: 700;
  font-size: 5rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #16974b;
  text-shadow: 0 0 50px #fff, 0 0 50px #fff, 0 0 50px #fff, 0 0 50px #fff, 0 0 10px #fff, 0 0 10px #fff;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-ttl > span {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    padding: 20px;
    font-size: 10.6666666667vw;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-ttl--left {
    text-align: center;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-ttl--right {
    text-align: center;
  }
}
.entry-inner {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 50px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-inner {
    padding: 50px 18px;
  }
}
.entry-new_graduate {
  padding-bottom: 100px;
}
.entry-new_graduate__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-new_graduate__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    width: 100%;
    max-width: none;
  }
}
.entry-new_graduate__nav li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-new_graduate__nav li {
    width: 100%;
  }
}
.entry-new_graduate__nav h3 {
  font-weight: 700;
  font-size: 4rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #16974b;
  line-height: 1.2;
  white-space: nowrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .entry-new_graduate__nav h3 {
    text-align: center;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-new_graduate__nav h3 {
    font-size: 8vw;
    margin-bottom: 20px;
  }
}
.entry-new_graduate__nav h3 span {
  display: block;
  font-size: 80%;
}
.entry-new_graduate__nav p {
  text-align: center;
}
.entry-new_graduate__nav .btn {
  font-size: 2.8rem;
  height: auto;
  line-height: 1;
  padding: 12px 60px 15px 40px;
  min-width: 300px;
  width: 100%;
  white-space: nowrap;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-new_graduate__nav .btn {
    font-size: 5.3333333333vw;
    width: 100%;
  }
}
.entry-new_graduate__nav .btn::after {
  width: 33px;
  height: 27px;
  right: 20px;
  background-size: contain;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-new_graduate__nav .btn::after {
    width: 24px;
    height: 18px;
    right: 20px;
  }
}
.entry-new_graduate__mynav--2026 {
  background-image: url("/company/recruit/assets/imgs/entry/logo_mynav2026.svg");
}
.entry-new_graduate__mynav--2027 {
  background-image: url("/company/recruit/assets/imgs/entry/logo_mynav2027.svg");
}
.entry-career-section {
  border-radius: 30px;
  background: rgba(208, 217, 34, 0.1);
  border: 5px solid #d0d922;
  padding: 50px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 960px) {
  .entry-career-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-career-section {
    border-radius: 20px;
    border: 3px solid #d0d922;
    padding: 20px;
    margin-bottom: 10px;
  }
}
.entry-career-section:last-child {
  margin-bottom: 0;
}
.entry-career-section .color1 {
  color: #085628;
}
.entry-career-section h3 {
  font-weight: 700;
  font-size: 4rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #16974b;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .entry-career-section h3 {
    text-align: center;
  }
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-career-section h3 {
    font-size: 8vw;
  }
}
.entry-career-section h3 span {
  display: block;
  font-size: 80%;
}
.entry-career-section .btn {
  font-size: 2.8rem;
  height: auto;
  line-height: 1;
  padding: 12px 60px 15px 40px;
  min-width: 300px;
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-career-section .btn {
    font-size: 5.3333333333vw;
  }
}
.entry-career-section .btn::after {
  width: 33px;
  height: 27px;
  right: 20px;
  background-size: contain;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-career-section .btn::after {
    width: 24px;
    height: 18px;
    right: 20px;
  }
}
.entry-career-section > div {
  width: 50%;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-career-section > div {
    width: 100%;
  }
}
.entry-career-section p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-career-section p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.entry-career-section ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.entry-career-section ul .note {
  margin-bottom: 0;
}
.entry-career-section p:has(+ .note) {
  margin-bottom: 0;
}
.entry-career-section .note {
  font-size: 1.4rem;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 10px;
}
@media screen and (max-width: 599px), screen and (max-width: 923px) and (orientation: landscape) {
  .entry-career-section .note {
    font-size: 1.2rem;
  }
}
.entry-career-section .note + .note {
  margin-top: 0;
}/*# sourceMappingURL=style.css.map */