@charset "UTF-8";
/* =========================================================
@mixin
=========================================================*/
/* =========================================================
@extends
=========================================================*/
/* =========================================================
アニメーション
=========================================================*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUpTrigger {
  opacity: 0;
}

@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

.cta a {
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.cta a:after {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* =========================================================
common
=========================================================*/
* {
  outline: none;
  font-size: 16px;
  line-height: 2.0;
}

@media only screen and (max-width: 959px) {
  * {
    font-size: 14px;
    line-height: 1.8;
  }
}

body {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  overflow: auto;
  position: relative;
  text-align: center;
  letter-spacing: -0.01em;
  color: #333;
  font-weight: 400;
  line-height: 1.8;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  background: #fff;
  font-optical-sizing: auto;
}

a {
  cursor: pointer !important;
}

a:hover,
a:focus {
  text-decoration: none;
  cursor: pointer;
}

a:focus {
  outline: none;
}

h1, h2, h3, h4 {
  margin: 0px;
  padding: 0px;
  font-weight: 300;
}

p {
  margin-bottom: 1.2em;
  white-space: normal;
}

pre {
  margin-bottom: 1.2em;
  white-space: normal;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
  color: #333;
}

ul, li, dl, dt, dd {
  padding: 0;
  margin: 0;
  text-indent: 0;
  list-style-type: none;
}

.pc {
  display: block !important;
}

@media only screen and (max-width: 959px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 959px) {
  .sp {
    display: block !important;
  }
}

/* =========================================================
共通
=========================================================*/
.radius {
  border-radius: 10px;
}

.shadow {
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
}

.grid-center {
  display: grid;
  place-items: center;
}

.dsp_block {
  display: block !important;
}

.dsp_none {
  display: none !important;
}

.marker {
  font-weight: bold;
  font-size: inherit;
  background: linear-gradient(transparent 60%, #FFE84E 50%);
}

.marker_green, .about .inner h3 span, .about .inner p span {
  font-weight: bold;
  font-size: inherit;
  background: linear-gradient(transparent 60%, #0A914E 50%);
}

@media only screen and (max-width: 959px) {
  .marker_green, .about .inner h3 span, .about .inner p span {
    background: linear-gradient(transparent 30%, #0A914E 30%);
  }
}

.line_pink {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
  color: #F15D56;
}

.line_green {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
  color: #00A758;
}

/* =========================================================
見出し
=========================================================*/
/* =========================================================
main
=========================================================*/
main {
  text-align: center;
  min-width: 1040px;
}

@media only screen and (max-width: 959px) {
  main {
    min-width: 100%;
  }
}

/* =========================================================
header
=========================================================*/
header {
  min-width: 1040px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 959px) {
  header {
    min-width: 100%;
  }
}

header h1 {
  height: 80px;
  width: auto;
  margin-right: 0;
}

@media only screen and (max-width: 959px) {
  header h1 {
    height: 60px;
  }
}

header h1 img {
  width: auto;
  height: 100%;
}

header nav {
  width: auto;
  padding-right: 0;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 959px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

header nav ul li {
  opacity: 0;
  padding-right: 30px;
  cursor: pointer;
}

header nav ul li a {
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.3;
  height: 80px;
  padding-top: 18px;
  cursor: pointer;
}

header nav ul li a span {
  font-weight: normal;
  font-size: 0.8rem;
  display: block;
  cursor: pointer;
}

header nav ul * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

header nav ul a {
  display: block;
  position: relative;
  text-decoration: none;
}

header nav ul a:before, header nav ul a:after {
  height: 12px;
  width: 12px;
  position: absolute;
  content: '';
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
}

header nav ul a:before {
  left: -12px;
  top: 10px;
  border-left: 2px solid #F15D56;
  border-top: 2px solid #F15D56;
  -webkit-transform: translate(100%, 50%);
  transform: translate(100%, 50%);
}

header nav ul a:after {
  right: -12px;
  bottom: 10px;
  border-right: 2px solid #F15D56;
  border-bottom: 2px solid #F15D56;
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}

header nav ul a:hover {
  color: #F15D56;
}

header nav ul a:hover span {
  color: #F15D56;
}

header nav ul a:hover:before, header nav ul a:hover:after {
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  opacity: 1;
}

header nav p {
  margin: 0;
  background: #00A758;
  background: linear-gradient(#00A758, #00A758 40px, #fff 40px, #fff 41px, #00A758 42px);
  width: 200px;
  height: 80px;
  box-sizing: border-box;
  text-align: center;
}

header nav p a {
  display: block;
  color: #fff;
  width: 100%;
  height: 40px;
  font-size: 1.1rem;
  padding-top: 3px;
}

header nav p a .arrow-right {
  width: 1em;
  color: #fff;
}

header nav p a .arrow-right::before {
  width: 0.45em;
  height: 0.45em;
}

header #menu {
  display: none;
}

@media only screen and (max-width: 959px) {
  header #menu {
    display: block;
  }
}

header #menu .openbtn {
  position: relative;
  background: #FFF;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

header #menu .openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #00A758;
  width: 45%;
}

header #menu .openbtn span:nth-of-type(1) {
  top: 15px;
}

header #menu .openbtn span:nth-of-type(2) {
  top: 23px;
}

header #menu .openbtn span:nth-of-type(3) {
  top: 31px;
}

header #menu .openbtn.active span:nth-of-type(1),
header #menu .openbtn.active span:nth-of-type(3) {
  top: 23px;
}

header #menu ul {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100vw;
  padding: 10px 30px 10px 30px;
  margin-right: 0;
  text-align: left;
  background: #fff;
  z-index: 99;
  opacity: 0;
  box-shadow: 0px 3px 10px -5px rgba(0, 0, 0, 0.5);
  display: none;
}

header #menu ul li {
  border-top: 1px solid #ccc;
}

header #menu ul li:first-child {
  border-top: none;
}

header #menu ul li a {
  display: block;
  padding: 5px 45px 5px 10px;
  font-size: 0.8rem;
  position: relative;
}

header #menu ul li a span {
  display: inline-block;
  width: 120px;
  margin-right: 15px;
  font-size: 1rem;
  font-weight: 600;
}

header #menu ul li a .arrow-right {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 1em;
  height: 0.1em;
  margin-right: 0;
}

header #menu ul li a:hover {
  color: #F15D56;
}

header #menu ul li a:hover .arrow-right {
  color: #F15D56;
}

#header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.5);
}

#header nav ul li {
  opacity: 1;
}

/* =========================================================
footer
=========================================================*/
.footer {
  min-width: 1040px;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 959px) {
  .footer {
    min-width: 100%;
  }
}

.footer_mark {
  width: 920px;
  margin: 0 auto 40px;
  text-align: left;
  border: 1px solid #ccc;
  padding: 20px 40px;
  border-radius: 10px;
}

.footer_mark dl{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_mark dl dt{
  width: 120px;
  margin-right: 20px;
}

.footer_mark dl dt img{
  width: 100px;
}

.footer_mark dl dd{
  flex: 1;
}

.footer_mark dl dd a{
  display: block;
  text-decoration: underline;
  color: #0C78BB;
}

@media only screen and (max-width: 959px) {
  .footer_mark {
    width: 90%;
    display: block;
    padding: 0 30px;
    margin: 0 20px 20px;
    padding: 20px;
    box-sizing: border-box;
  }

  .footer_mark dl dt{
    width: 80px;
    margin-right: 10px;
  }
  
  .footer_mark dl dt img{
    width: 70px;
  }

  .footer_mark dl dd,
  .footer_mark dl dd a{
    font-size: 13px;
  }
  
}

.footer_corporate {
  width: 920px;
  margin: 0 auto 100px;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 959px) {
  .footer_corporate {
    width: 100%;
    display: block;
    padding: 0 30px;
    margin-bottom: 50px;
  }
}

.footer_corporate dl {
  width: 500px;
  margin-right: 0;
}

@media only screen and (max-width: 959px) {
  .footer_corporate dl {
    width: 100%;
    margin-bottom: 40px;
  }
}

.footer_corporate dl dt {
  margin-bottom: 10px;
}

.footer_corporate dl dt img {
  height: 100px;
}

@media only screen and (max-width: 959px) {
  .footer_corporate dl dt {
    text-align: center;
  }
}

@media only screen and (max-width: 959px) {
  .footer_corporate dl dd {
    font-size: 0.9rem;
  }
}

.footer_corporate dl dd strong {
  display: block;
  margin-bottom: 0px;
}

@media only screen and (max-width: 959px) {
  .footer_corporate dl dd strong {
    margin-bottom: 15px;
    font-size: 1rem;
  }
}

.footer_corporate ul {
  margin-right: 0;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.footer_corporate ul li {
  border-top: 1px solid #ccc;
}

.footer_corporate ul li a {
  display: block;
  padding: 5px 45px 5px 10px;
  font-size: 0.8rem;
  position: relative;
}

.footer_corporate ul li a span {
  display: inline-block;
  width: 120px;
  margin-right: 15px;
  font-size: 1rem;
  font-weight: 600;
}

.footer_corporate ul li a .arrow-right {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 1em;
  height: 0.1em;
  margin-right: 0;
}

.footer_corporate ul li a:hover {
  color: #F15D56;
}

.footer_corporate ul li a:hover .arrow-right {
  color: #F15D56;
}

.footer_nav {
  background: #F7F7F7;
  text-align: center;
  padding: 30px;
}

@media only screen and (max-width: 959px) {
  .footer_nav {
    padding: 30px;
  }
}

.footer_nav ul {
  width: 920px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media only screen and (max-width: 959px) {
  .footer_nav ul {
    width: 100%;
    justify-content: left;
  }
}

.footer_nav ul li {
  margin-right: 10px;
}

.footer_nav ul li::before {
  content: "|";
  display: inline-block;
  margin-right: 10px;
}

.footer_nav ul li:last-child::after {
  content: "|";
  display: inline-block;
  margin-left: 10px;
}

.footer_nav ul li a {
  font-size: 0.9rem;
}

@media only screen and (max-width: 959px) {
  .footer_nav ul li a {
    font-size: 0.8rem;
  }
}

.footer .copyright {
  font-size: 0.9rem;
  background: #333333;
  text-align: center;
  padding: 5px 0;
  color: #fff;
  margin-bottom: 0;
}

/* =========================================================
OPENING
=========================================================*/
#rebrand {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#rebrand img {
  width: 920px;
}

#rebrand .rebrand_01{  display: block; opacity: 0;}
#rebrand .rebrand_01_sp{  display: none;}
#rebrand .rebrand_01_sp img{  width: 100%;}
#rebrand .rebrand_02{  display: none; opacity: 0;}

@media only screen and (max-width: 959px) {
  #rebrand .rebrand_01{  display: none;}
  #rebrand .rebrand_01_sp{  display: block; opacity: 0; width: 100%;}
  #rebrand .rebrand_02 img{  width: 100%;}
}


/* セクション
=========================================================*/
section {
  width: 100%;
  text-align: center;
  position: relative;
}

section .inner {
  width: 920px;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: left;
  margin: 0 auto;
}

@media only screen and (max-width: 959px) {
  section .inner {
    width: 100%;
    padding: 50px 15px;
  }
}

section h2 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
}

@media only screen and (max-width: 959px) {
  section h2 {
    font-size: 1.8rem;
  }
}

section h2 span {
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  padding-top: 10px;
}

.layer {
  position: absolute;
  z-index: -1;
  transform: rotate(45deg);
  width: calc(800 / 1440* 1.414* 100vw);
  height: calc(800 / 1440* 1.414* 100vw);
  top: calc(-800 / 1440* 1.414* 100vw / 2);
  left: 0;
}

.layer.grey {
  background: #f5f5f5;
}

.arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 1.4em;
  height: 0.1em;
  background: currentColor;
  margin-left: 10px;
}

.arrow-right::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}

.btn_detail {
  width: 920px;
  height: 70px;
  margin: 0 auto;
  padding: 0px 0 0px 0;
  position: relative;
  display: block;
}

@media only screen and (max-width: 959px) {
  .btn_detail {
    width: 100%;
  }
}

.btn_detail a {
  position: absolute;
  top: 30px;
  right: 0;
  font-size: 0.9rem;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 3px;
  overflow: hidden;
  transition-duration: .3s;
  z-index: 2;
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.btn_detail a .arrow-right {
  width: 1em;
  color: #fff;
}

.btn_detail a .arrow-right::before {
  width: 0.45em;
  height: 0.45em;
}

.btn_detail a.pink {
  background: #F15D56;
  color: #fff;
}

.btn_detail a.white {
  background: #fff;
  color: #00A758;
}

.btn_detail a.white .arrow-right {
  color: #00A758;
}

.btn_detail a.green {
  background: #00A758;
  color: #fff;
}

.btn_detail a:hover {
  transform: scale(1.1);
}

a.animate {
  position: relative;
  padding-bottom: 5px;
}

a.animate::before {
  background: #333;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

a.animate:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media print, screen and (max-width: 767px) {
  > .layer.green {
    width: calc(300 / 375 * 1.414 * 100vw);
    height: calc(300 / 375 * 1.414 * 100vw);
    bottom: calc(-300 / 375 * 1.414 * 100vw / 2);
    right: calc(-300 / 375 * 1.414 * 100vw / 2);
  }
  .layer.green2 {
    width: calc(200 / 375 * 1.414 * 100vw);
    height: calc(200 / 375 * 1.414 * 100vw);
    top: calc(-200 / 375 * 1.414 * 100vw / 2);
    left: calc(-200 / 375 * 1.414 * 100vw / 2);
  }
  .layer.white {
    width: calc(1320 / 1440 * 1.414 * 100vw);
    height: calc(1320 / 1440 * 1.414 * 100vw);
    bottom: calc(-1320 / 1440 * 1.414 * 100vw / 2);
    left: calc(-1320 / 1440 * 1.414 * 100vw / 2);
  }
}

.fv {
  overflow: hidden;
}

@media only screen and (max-width: 959px) {
  .fv > .layer {
    display: none;
  }
}

.fv > .layer.green {
  background: radial-gradient(#00aa59, #93bf00);
  opacity: 0;
  width: calc(900 / 1440 * 1.414 * 100vw);
  height: calc(900 / 1440 * 1.414 * 100vw);
  bottom: calc(-1120 / 1440 * 1.414 * 100vw / 2);
  right: calc(-1120 / 1440 * 1.414 * 100vw / 2);
  left: auto;
  top: auto;
  z-index: 2;
}

.fv > .layer.green:after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  left: -10px;
  bottom: -10px;
  background-color: #fff;
  opacity: 1;
}

.fv > .layer.green.type2 {
  background: radial-gradient(#00aa59, #93bf00);
  opacity: 0;
  width: calc(400 / 1440 * 1.414 * 100vw);
  height: calc(400 / 1440 * 1.414 * 100vw);
  top: calc(-400 / 1440 * 1.414 * 100vw / 2);
  left: calc(-400 / 1440 * 1.414 * 100vw / 2);
}

.fv > .layer.green.type2:after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  left: -10px;
  bottom: -10px;
  background-color: #fff;
  opacity: 1;
}

.fv > .layer.white {
  background: #fff;
  width: calc(1120 / 1440 * 1.414 * 100vw);
  height: calc(1120 / 1440 * 1.414 * 100vw);
  bottom: calc(-1120 / 1440 * 1.414 * 100vw / 2);
  left: calc(-1120 / 1440 * 1.414 * 100vw / 2);
  top: auto;
  z-index: 0;
}

.fv.show .layer.green {
  transition: opacity 0.5s ease;
  transition-delay: .7s;
  opacity: 1;
}

.fv.show .layer.green:after {
  transition-delay: .7s;
  transform: translateY(-100%);
}

.fv.show .layer.green.type2 {
  transition: opacity 0.5s ease;
  transition-delay: .6s;
  opacity: 1;
}

.fv.show .layer.green.type2:after {
  transition: transform 0.4s ease;
  transition-delay: .6s;
  transform: translateY(100%);
}

.fv dl {
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
}

.fv dl dt {
  background-color: #FFF;
}

.fv dl dt ul li {
  width: 900px;
  height: 600px;
  opacity: 0.7;
  position: relative;
}

@media only screen and (max-width: 959px) {
  .fv dl dt ul li {
    height: 300px;
  }
}

.fv dl dt ul li.fv_first {
  background: url(../img/bg_fv_01.jpg) no-repeat left 50% top;
  background-size: auto 100%;
}

.fv dl dt ul li.fv_second {
  background: url(../img/bg_fv_02.jpg) no-repeat left 50% top;
  background-size: auto 100%;
}

.fv dl dt ul li.fv_third {
  background: url(../img/bg_fv_03.jpg) no-repeat left 50% top;
  background-size: auto 100%;
}

.fv dl dt ul li.swiper-slide-active {
  opacity: 1;
}

.fv dl dd {
  width: 100%;
  display: block;
  z-index: 2;
}

.fv dl dd h2 {
  width: 100%;
  background: #00A758;
  background: linear-gradient(120deg, #00A758 0%, #00A758 70%, #03552C 100%);
  padding: 20px;
  font-size: 2.7rem;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.5);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

@media only screen and (max-width: 959px) {
  .fv dl dd h2 {
    font-size: 1.8rem;
  }
}

.fv h3 {
  padding-top: 60px;
  position: relative;
  z-index: 2;
  background: #fff;
}

@media only screen and (max-width: 959px) {
  .fv h3 {
    padding-top: 30px;
  }
}

.fv h3 p {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 0;
  display: inline-block;
  opacity: 0;
}

@media only screen and (max-width: 959px) {
  .fv h3 p {
    font-size: 1.15rem;
    line-height: 1.6;
    display: inline;
    opacity: 1;
  }
}

.fv .mv_btn {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 0 50px 0;
  position: absolute;
  right: 0%;
  bottom: 200px;
  margin: 0 0px 0 0;
  z-index: 5;
}

.fv .mv_btn:after {
  content: "";
  width: 1px;
  height: 40px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.news .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (max-width: 959px) {
  .news .inner {
    display: block;
  }
}

.news .inner h2 span {
  color: #F15D56;
}

@media only screen and (max-width: 959px) {
  .news .inner h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

.news_cont {
  width: 720px;
}

@media only screen and (max-width: 959px) {
  .news_cont {
    width: 100%;
  }
}

.news_item {
  opacity: 0;
  padding: 18px 18px;
}

@media only screen and (max-width: 959px) {
  .news_item {
    padding: 15px 15px;
  }
}

.news_item:nth-child(even) {
  background: #F7F7F7;
}

.news_item:first-child {
  padding-top: 0;
}

.news_item dt {
  font-size: 1rem;
  color: #F15D56;
  margin-bottom: 5px;
}

.news_item dt p {
  display: inline-block;
  margin: 0;
  width: 130px;
}

.news_item dt span {
  font-size: 0.8rem;
  line-height: 1;
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  margin-left: 10px;
}

.news_item dt span.topics {
  background-color: #0C78BB;
}

.news_item dt span.event {
  background-color: #00A758;
}

.news_item dt [class*="area_"] {
  background-color: #666;
}

.news_item dd {
  position: relative;
  padding-left: 20px;
}

.news_item dd:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  background: #ccc;
  height: calc(tan(60deg) * 14px / 2);
  width: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.news #event .event_image {
  margin: 50px 0;
}

@media only screen and (max-width: 959px) {
  .news #event .event_image {
    margin: 30px 0;
  }
}

.news #event .event_image img {
  max-width: 100%;
}

.news #event .post_list_item_table {
  width: 100%;
  margin-bottom: 40px;
  border: 1px solid #ccc;
}

.news #event .post_list_item_table tr {
  border-top: 1px solid #ccc;
  background: #fff;
}

.news #event .post_list_item_table th {
  width: 100px;
  vertical-align: middle;
  padding: 10px;
}

.news #event .post_list_item_table th p {
  margin-bottom: 0;
}

.news #event .post_list_item_table td {
  padding: 10px;
  vertical-align: middle;
}

.news #event .post_list_item_table td p {
  margin-bottom: 0;
}

.news #event p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.news #event p.seminar_form_policy_title {
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
}

.news #event ol li {
  font-size: 0.9rem;
  line-height: 1.8;
}

.news #event .seminar_form_policy {
  border-top: 3px solid #333;
  padding: 20px;
}

.news #event .seminar_form_external {
  text-align: center;
  margin-bottom: 100px;
}

.news #event .seminar_form_external a {
  background: #F15D56;
  background-image: linear-gradient(172deg, #F15D56 50%, #d8413a 51%);
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
  padding: 20px 35px;
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

@media only screen and (max-width: 959px) {
  .news #event .seminar_form_external a {
    position: relative;
    margin: 0 auto;
    top: 0;
    left: 0;
    margin-top: 20px;
  }
}

.news #event .seminar_form_external a .arrow-right {
  color: #fff;
}

.news #event .seminar_form_external a:hover {
  transform: scale(1.1);
}

#top .about .inner {
  color: #fff;
}

.about {
  background: url(../img/bg_about.jpg) no-repeat left top;
  background-size: cover;
  position: relative;
}

.about h2 {
  margin-bottom: 50px;
}

@media only screen and (max-width: 959px) {
  .about h2 {
    margin-bottom: 30px;
  }
}

.about .inner {
  text-align: center;
}

.about .inner h3 {
  margin-bottom: 30px;
}

.about .inner h3 span {
  font-size: 1.8rem;
  line-height: 1.6;
}

@media only screen and (max-width: 959px) {
  .about .inner h3 span {
    font-size: 1.35rem;
  }
}

.about .inner p span {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
}

.about_image {
  text-align: center;
  margin-top: 30px;
}

.about_image img {
  width: 600px;
}

@media only screen and (max-width: 959px) {
  .about_image img {
    width: 300px;
  }
}

.message {
  border-bottom: #333333 solid 30px;
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.3);
}

.message h2 {
  margin-bottom: 50px;
}

@media only screen and (max-width: 959px) {
  .message h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

.message h2 span {
  color: #F15D56;
}

.message_cont {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 959px) {
  .message_cont {
    display: block;
  }
}

.message_cont-image {
  width: 400px;
  margin-right: 40px;
  position: relative;
}

.message_cont-image img {
  width: 100%;
  border-radius: 5px;
}

@media only screen and (max-width: 959px) {
  .message_cont-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.message_cont-image dd {
  position: absolute;
  background: #fff;
  padding: 7px 15px;
  top: 400px;
  left: -20px;
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 959px) {
  .message_cont-image dd {
    top: auto;
    bottom: -20px;
    left: 20px;
  }
}

.message_cont-image dd strong {
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
}

.message_cont-text {
  flex: 1;
}

.message_lead {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.message_caption {
  font-size: 0.8rem;
  line-height: 1.6;
}

.product {
  background: radial-gradient(circle, #00A758 75%, #03552C 100%);
  background-size: cover;
  position: relative;
  height: 1200px;
}

@media only screen and (max-width: 959px) {
  .product {
    height: 800px;
  }
}

.product .panel {
  min-width: 1040px;
  height: 100%;
  width: 100%;
  background: url(../img/bg_product_over.png) no-repeat left top;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0;
  opacity: 0;
}

@media only screen and (max-width: 959px) {
  .product .panel {
    min-width: 100%;
  }
}

.product .inner {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -460px;
}

@media only screen and (max-width: 959px) {
  .product .inner {
    width: 340px;
    margin-left: -170px;
    padding: 0;
    top: 50px;
  }
}

.product h2 {
  color: #fff;
  margin-bottom: 50px;
}

.product h2 span {
  color: #fff;
}

@media only screen and (max-width: 959px) {
  .product h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

.product_cont {
  padding: 50px;
  background-color: #fff;
}

@media only screen and (max-width: 959px) {
  .product_cont {
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.7);
  }
}

.product_cont h3 {
  padding: 10px;
  background: #F7F7F7;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.2rem;
  font-weight: 500;
}

@media only screen and (max-width: 959px) {
  .product_cont h3 {
    background: #0C78BB;
    color: #fff;
  }
}

.product_cont ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.product_cont ul:last-child {
  margin-bottom: 0;
}

.product_cont ul li {
  width: 140px;
  margin-bottom: 20px;
  margin-right: calc((820px - (140px * 5)) / 4);
}

.product_cont ul li:nth-child(5n) {
  margin-right: 0;
}

@media only screen and (max-width: 959px) {
  .product_cont ul li {
    width: 100px;
    height: 55px;
    margin-bottom: 5px;
    margin-right: 5px;
    border: 1px solid #aaa;
    background: #fff;
  }
  .product_cont ul li:nth-child(5n) {
    margin-right: 5px;
  }
  .product_cont ul li:nth-child(3n) {
    margin-right: 5px;
  }
}

.product_cont ul li a {
  text-align: center;
  display: block;
}

.product_cont ul li a img {
  border: 1px solid #aaa;
  width: 100%;
  height: 90px;
}

@media only screen and (max-width: 959px) {
  .product_cont ul li a img {
    width: auto;
    height: 50px;
    border: none;
  }
}

.product_cont ul li a span {
  display: block;
  padding-top: 5px;
  font-size: 0.8rem;
  line-height: 1.4;
}

@media only screen and (max-width: 959px) {
  .product_cont ul li a span {
    display: none;
  }
}

.recruit {
  border-top: 50px solid #fff;
}

.recruit .inner {
  position: relative;
  padding-top: 50px;
}

@media only screen and (max-width: 959px) {
  .recruit .inner {
    text-align: center;
  }
  .recruit .inner p {
    text-align: left;
  }
}

.recruit h2 {
  margin-bottom: 30px;
}

.recruit h2 span {
  color: #F15D56;
}

@media only screen and (max-width: 959px) {
  .recruit h2 {
    margin-bottom: 30px;
  }
}

.recruit_btn {
  background: #00A758;
  background-image: linear-gradient(172deg, #00A758 50%, #01954E 51%);
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
  padding: 20px 35px;
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  top: 40px;
  right: 0;
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

@media only screen and (max-width: 959px) {
  .recruit_btn {
    position: relative;
    margin: 0 auto;
    top: 0;
    left: 0;
    margin-top: 20px;
  }
}

.recruit_btn .arrow-right {
  color: #fff;
}

.recruit_btn:hover {
  transform: scale(1.1);
}

.recruit_image {
  background: url(../img/bg_recruit.jpg) no-repeat left top;
  background-size: cover;
  height: 270px;
  color: #fff;
  text-align: center;
  padding-top: 120px;
}

@media only screen and (max-width: 959px) {
  .recruit_image {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.recruit_image dt {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  width: 920px;
  text-align: left;
  margin: 0 auto 20px;
}

@media only screen and (max-width: 959px) {
  .recruit_image dt {
    width: 100%;
    font-size: 1.4rem;
  }
}

.recruit_image dd {
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 1;
  width: 920px;
  text-align: left;
  margin: 0 auto;
}

@media only screen and (max-width: 959px) {
  .recruit_image dd {
    width: 100%;
    font-size: 2.6rem;
    line-height: 1.2;
  }
}

/* 下改装
=========================================================*/
#lower .contents .inner h2 {
  margin-bottom: 100px;
}

@media only screen and (max-width: 959px) {
  #lower .contents .inner h2 {
    margin-bottom: 30px;
  }
}

#lower .fv #particles {
  z-index: -1;
  width: 100%;
  height: 120px;
  background-color: #ccc;
  background: #627589;
  background: radial-gradient(circle, #87919A 55%, #627589 100%);
  box-shadow: inset 1px -6px 6px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 959px) {
  #lower .fv #particles {
    height: 90px;
  }
}

#lower .fv #breadcrumb {
  width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 20px 0 0;
}

@media only screen and (max-width: 959px) {
  #lower .fv #breadcrumb {
    width: 100%;
    padding: 15px;
    overflow-x: scroll;
  }
}

#lower .fv #breadcrumb li {
  position: relative;
}

@media only screen and (max-width: 959px) {
  #lower .fv #breadcrumb li {
    flex-shrink: 0;
  }
}

#lower .fv #breadcrumb li:after {
  content: ">";
  display: inline-block;
  padding: 0 10px;
}

#lower .fv #breadcrumb li:last-child {
  font-weight: 600;
}

#lower .fv #breadcrumb li:last-child::after {
  content: "";
}

#lower .fv #breadcrumb li:first-child {
  padding-left: 30px;
}

#lower .fv #breadcrumb li:first-child:before {
  content: "";
  background: url(../img/icon_home.svg) no-repeat left top;
  background-size: 20px;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  top: 5px;
  left: 0;
}

@media only screen and (max-width: 959px) {
  #lower .fv #breadcrumb li:first-child:before {
    top: 0;
  }
}

#lower .news .inner {
  display: block;
  padding-top: 50px;
}

#lower .news_cont {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 959px) {
  #lower .news_cont {
    display: block;
  }
}

#lower .news_main {
  width: 670px;
}

@media only screen and (max-width: 959px) {
  #lower .news_main {
    width: 100%;
    margin-bottom: 50px;
  }
}

#lower .news_nav {
  width: 200px;
}

@media only screen and (max-width: 959px) {
  #lower .news_nav {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
}

#lower .news_nav dl {
  border-bottom: 1px solid #ccc;
}

#lower .news_nav dl dt {
  color: #F15D56;
  font-weight: 600;
  margin-bottom: 10px;
}

#lower .news_nav dl dd ul li {
  border-top: 1px solid #ccc;
  position: relative;
  cursor: pointer;
}

#lower .news_nav dl dd ul li a {
  display: block;
  padding: 5px 45px 5px 10px;
  position: relative;
}

#lower .news_nav dl dd ul li a:hover {
  color: #F15D56;
}

#lower .news_nav dl dd ul li .arrow-right {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 1em;
  height: 0.1em;
  margin-right: 0;
}

#lower .news_nav dl dd ul li:hover .arrow-right {
  color: #F15D56;
}

#lower .news.article .news_item {
  padding-left: 0;
}

#lower .news.article .news_main {
  border-top: 5px solid #333;
  padding-top: 20px;
}

#lower .news.article h3 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 50px;
}

@media only screen and (max-width: 959px) {
  #lower .news.article .btn_detail a {
    right: 15px;
  }
}

#lower .message {
  box-shadow: none;
  border: none;
}

#lower .outline .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (max-width: 959px) {
  #lower .outline .inner {
    display: block;
  }
}

#lower .outline .inner h2 span {
  color: #F15D56;
}

@media only screen and (max-width: 959px) {
  #lower .outline .inner h2 {
    text-align: center;
    margin-bottom: 50px;
  }
}

#lower .outline_cont {
  width: 720px;
  border-bottom: 1px solid #ccc;
}

@media only screen and (max-width: 959px) {
  #lower .outline_cont {
    width: 100%;
  }
}

#lower .outline_cont dl {
  display: flex;
  justify-content: left;
  border-top: 1px solid #ccc;
  padding: 10px;
}

#lower .outline_cont dl dt {
  font-weight: 600;
  width: 120px;
}

@media only screen and (max-width: 959px) {
  #lower .outline_cont dl dt {
    width: 90px;
  }
}

@media only screen and (max-width: 959px) {
  #lower .outline_cont dl dd {
    flex: 1;
  }
}

#lower .outline_map {
  border-top: 1px solid #ccc;
  padding: 10px;
}

#lower .division {
  background: #F7F7F7 url(../img/bg_company_division.jpg) no-repeat left top;
  background-size: cover;
}

#lower .division .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (max-width: 959px) {
  #lower .division .inner {
    display: block;
  }
}

#lower .division .inner h2 span {
  color: #F15D56;
}

@media only screen and (max-width: 959px) {
  #lower .division .inner h2 {
    text-align: center;
    margin-bottom: 50px;
  }
}

#lower .division_cont {
  width: 720px;
}

@media only screen and (max-width: 959px) {
  #lower .division_cont {
    width: 100%;
  }
}

#lower .division_cont img {
  width: 100%;
}

#lower .office .inner h2 span {
  color: #F15D56;
}

@media only screen and (max-width: 959px) {
  #lower .office .inner {
    padding: 50px 0;
  }
}

#lower .office .office_detail {
  width: 1080px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  margin-bottom: 100px;
}

#lower .office .office_detail dl {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin-bottom: 5px;
  padding: 10px 20px;
  /* border-bottom: 1px dotted #333; */
  font-size: 1.5rem;
}

#lower .office .office_detail dl:nth-child(odd) {
  background: #f5f5f5;
}

#lower .office .office_detail dl dt {
  font-weight: bold;
  width: 150px;
  margin-right: 20px;
  padding-left: 30px;
  position: relative;
  text-align: left;
}

#lower .office .office_detail dl dt:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 22px;
  background: url(../img/icon_pin.png) no-repeat left top;
  background-size: auto 22px;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 959px) {
  #lower .office .office_detail {
    width: 100%;
    margin: 50px auto;
    box-sizing: border-box;
    padding: 0;
  }
  #lower .office .office_detail dl {
    display: block;
    margin-bottom: 5px;
    padding: 10px 20px;
  }
  #lower .office .office_detail dl dt {
    font-weight: bold;
    width: 100%;
    margin-right: 0px;
    padding-left: 25px;
    position: relative;
    font-size: 1.3rem;
    text-align: left;
  }
  #lower .office .office_detail dl dt:before {
    position: absolute;
    top: 3px;
    left: 0;
  }
  #lower .office .office_detail dl dd {
    text-align: left;
  }
}

#lower .office .office_pc {
  background: url(../img/bg_office.png) no-repeat left top 50px;
  background-size: 100% auto;
  width: 920px;
  margin: 0px auto 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 220px 220px 220px 220px;
  grid-template-rows: 230px 230px 230px 230px;
  /* 支店 */
}

@media only screen and (max-width: 959px) {
  #lower .office .office_pc {
    display: none;
  }
}

#lower .office .office_pc .slick-track {
  padding: 80px 0;
}

#lower .office .office_pc .office_list_item {
  padding: 0 10px;
  width: 100%;
}

#lower .office .office_pc .office_list_sp {
  display: none !important;
}

#lower .office .office_pc .office_list_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: 'object-fit: center; object-position: center;';
}

#lower .office .office_pc .office_list_item_contents {
  box-sizing: border-box;
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  height: 50px;
}

#lower .office .office_pc .office_list_item_area {
  font-size: 1rem;
  margin: 0 0 1em 0;
  position: absolute;
  line-height: 1;
  left: 0;
  top: -35px;
}

#lower .office .office_pc .office_list_item_area span {
  color: #fff;
  background: #222;
  padding: 10px 15px;
}

#lower .office .office_pc .office_list_item_title {
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: bold;
  margin: 0 0 0em 0;
}

#lower .office .office_pc .office_list_item_text {
  font-size: calc(16 / 1440 * 100vw);
  font-size: 0.8rem;
}

#lower .office .office_pc .office_list_item_img {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

#lower .office .office_pc .office-title {
  grid-column-start: 1;
  grid-column-end: span 2;
  grid-row-start: 1;
  grid-row-end: 1;
}

#lower .office .office_pc .office-tokyo {
  grid-column-start: 4;
  grid-column-end: 4;
  grid-row-start: 3;
  grid-row-end: 3;
}

#lower .office .office_pc .office-tokyo2 {
  grid-column-start: 4;
  grid-column-end: 4;
  grid-row-start: 4;
  grid-row-end: 4;
}

#lower .office .office_pc .office-sendai {
  grid-column-start: 4;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 2;
}

#lower .office .office_pc .office-osaka {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 2;
}

#lower .office .office_pc .office-sapporo {
  grid-column-start: 4;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 1;
}

#lower .office .office_pc .office-fukuoka {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 3;
  grid-row-end: 3;
}

#lower .office .office_pc .office-nagoya {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 2;
  grid-row-end: 2;
}

#lower .office .office_pc .office-yokohama {
  grid-column-start: 3;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 4;
}

#lower .office .office_pc .office_list_item_in {
  background: #fff;
  box-shadow: 0 0 16px #999;
  /* display: flex; */
}

@media only screen and (max-width: 959px) {
  #lower .office h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  #lower .office .swiper-office {
    background: url(../img/bg_office.png) no-repeat left 50% bottom 0px;
    background-size: 320px auto;
    width: 100%;
    height: auto;
    padding: 0 0 30px 0;
  }
  #lower .office .swiper-office ul {
    display: flex;
    height: 210px;
  }
  #lower .office .swiper-office ul li {
    background: #fff;
    box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.5);
  }
  #lower .office .swiper-office ul li p {
    height: 150px;
    overflow: hidden;
    margin: 0;
  }
  #lower .office .swiper-office ul li p img {
    width: 100%;
    height: auto;
  }
  #lower .office .swiper-office ul li dl {
    position: relative;
  }
  #lower .office .swiper-office ul li dl dt {
    position: absolute;
    background: #333;
    color: #fff;
    top: -40px;
    left: 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    line-height: 1;
  }
  #lower .office .swiper-office ul li dl dd {
    font-size: 0.9rem;
    font-weight: 500;
    height: 60px;
    padding: 0px 20px;
    display: flex;
    justify-content: left;
    align-items: center;
  }
}

#lower .about {
  background: none;
}

#lower .about h2 {
  text-align: left;
  color: #333;
}

#lower .about h2 span {
  color: #F15D56;
}

@media only screen and (max-width: 959px) {
  #lower .about h2 {
    text-align: center;
    margin-bottom: 50px;
  }
}

#lower .about .lead {
  text-align: center;
}

#lower .about .lead h3 {
  font-size: 2rem;
  line-height: 1.8;
  color: #00A758;
  font-weight: 800;
}

@media only screen and (max-width: 959px) {
  #lower .about .lead h3 {
    font-size: 1.3rem;
    font-weight: 600;
  }
}

#lower .about .lead p {
  color: #333;
  margin-bottom: 50px;
}

#lower .about .position {
  text-align: left;
  border-top: 3px solid #00A758;
}

#lower .about .position .inner {
  padding-top: 0;
  text-align: left;
  color: #333;
}

@media only screen and (max-width: 959px) {
  #lower .about .position .inner {
    text-align: center;
  }
}

#lower .about .position_lead {
  text-align: left;
}

#lower .about .position_inner {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

@media only screen and (max-width: 959px) {
  #lower .about .position_inner {
    display: block;
  }
}

#lower .about .position_inner dl {
  width: 45%;
}

@media only screen and (max-width: 959px) {
  #lower .about .position_inner dl {
    width: 100%;
  }
}

#lower .about .position h2 {
  background-color: #00A758;
  color: #fff;
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
  display: inline-block;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 50px;
}

@media only screen and (max-width: 959px) {
  #lower .about .position h2 {
    padding: 10px 15px;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto 30px;
  }
}

#lower .about .position h3 {
  color: #00A758;
  border: 1px solid #00A758;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  margin-top: 40px;
}

@media only screen and (max-width: 959px) {
  #lower .about .position h3 {
    display: block;
  }
}

#lower .about .position strong {
  font-weight: 600;
}

#lower .about .position strong.green {
  font-size: 1.1rem;
  color: #00A758;
}

#lower .about .position dl {
  margin-bottom: 20px;
}

#lower .about .position dl dt {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: #333 1px solid;
  margin-bottom: 5px;
  color: #00A758;
}

#lower .about .position dl dt span {
  padding-left: 10px;
  font-weight: 400;
  font-size: 0.8rem;
}

#lower .about .cando {
  text-align: left;
  border-top: 3px solid #00A758;
}

#lower .about .cando .inner {
  padding-top: 0;
  text-align: left;
  color: #333;
}

@media only screen and (max-width: 959px) {
  #lower .about .cando .inner {
    text-align: center;
  }
}

#lower .about .cando .inner h2 {
  background-color: #00A758;
  color: #fff;
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
  display: inline-block;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 50px;
}

@media only screen and (max-width: 959px) {
  #lower .about .cando .inner h2 {
    padding: 10px 15px;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto 30px;
  }
}

#lower .about .cando_inner {
  text-align: left;
}

@media only screen and (max-width: 959px) {
  #lower .about .cando_inner {
    display: block;
  }
}

#lower .about .cando_item {
  width: 100%;
  text-align: left;
  background: #F7F7F7;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: left;
}

@media only screen and (max-width: 959px) {
  #lower .about .cando_item {
    width: 100%;
    margin-bottom: 20px;
    display: block;
    padding: 15px;
  }
}

#lower .about .cando_item > div {
  flex: 1;
}

@media only screen and (max-width: 959px) {
  #lower .about .cando_item > div {
    width: 100%;
  }
}

#lower .about .cando_item h3 {
  color: #00A758;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.6;
  display: inline-block;
}

#lower .about .cando_item p {
  margin-right: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 2.0;
}

@media only screen and (max-width: 959px) {
  #lower .about .cando_item p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

#lower .about .cando_item p.about_image {
  margin-top: 0;
  width: 450px;
}

@media only screen and (max-width: 959px) {
  #lower .about .cando_item p.about_image {
    width: 100%;
    margin-bottom: 20px;
  }
}

#lower .about .cando_item p.about_image img {
  width: auto;
  height: 300px;
}

@media only screen and (max-width: 959px) {
  #lower .about .cando_item p.about_image img {
    height: 180px;
  }
}
