@charset "utf-8";

/* yakuhanmp-noto */
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanmp-noto.min.css");

/* Noto Serif Japanese */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");

html {
  font-size: 100%;
}

body {
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #050505;
  /* font-family: serif; */
  font-family: YakuHanMP_Noto, "Noto Serif JP", "Hiragino Mincho ProN",
    "Yu Mincho", YuMincho, serif;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  font-weight: 500;
}

p {
  text-align: justify;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  color: #000000;
  display: block;
  transition: all ease-in-out 0.3s;
}

a:hover {
  opacity: 0.7;
}

li {
  list-style: none;
}


/* ----------------------------------------------------------------
wrapper
--------------------------------------------------------------- */
.wrapper {
  max-width: calc(1185px + 4%);
  margin: 0 auto;
  padding-left: 4% !important;
  padding-right: 4% !important;
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding-left: 8%;
    padding-right: 8%;
  }
}

/* ローディング -------------------------------------------------------------- */

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #76c050;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: relative;
  top: 47%;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.5s linear 0s infinite;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}

/* -- div#pagetop-scroll -------------------------------------------------------------- */

div#pagetop-scroll {
  display: none;
  position: fixed;
  right: 35px;
  bottom: 25px;
  color: #fff;
  width: 2.7em;
  height: 2.7em;
  border-radius: 3%;
  background: rgba(0, 0, 0, 0.486);
  text-align: center;
  line-height: 2.7em;
  z-index: 15;
}

.fa-3x {
  font-size: 1.25em;
  line-height: 2;
}

div#pagetop-scroll:hover {
  cursor: pointer;
  opacity: 0.9;
}

/* ヘッダー -------------------------------------------------------------- */

#header {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding-left: 70px;
  z-index: 30;
}

#header > .header-top {
  margin: 0 !important;
  padding: 0 0 25px !important;
}

#header > .header-top > .header-tagline {
  padding: 3px 20px 5px;
  background-color: #f7f7f7;
  color: #000000;
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.1em;
  font-weight: 600;
}

#header > .header-top > .header-contact-btn {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 76px;
  background-color: #76c050;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  z-index: 100;
  transition: all 0.3s;
}

h1 {
  font-size: clamp(1rem, 0.875rem + 0.63vw, 1.625rem);
  color: #000000;
  font-weight: bolder;
  vertical-align: middle;
}

h1 img {
  vertical-align: middle;
  margin-top: -15px !important;
  margin-right: 1rem;
  width: 65px;
  height: auto;
}

.header-area {
  padding: 15px 1% 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
}

.header-area .menu {
  display: flex;
  flex-wrap: wrap;
  z-index: 60;
  /* align-items: center; */
}

@media screen and (max-width: 1024px) {
  #header {
    padding-left: 0 !important;
  }

  .header-top {
    display: none;
  }

  .header-area .toplogo img {
    margin-top: 0 !important;
    margin-left: 0 !important;
    height: 55px;
  }

  .header-area {
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.1);
  }

  .header-area {
    position: fixed;
    z-index: 30;
    background: #fff;
    padding: 10px 4%;
    width: 100%;
    transition: 0.3s;
  }
  .header-area.open {
    background: #fff;
  }
  h1 img {
    margin-top: -15px !important;
    width: 45px;
  }
}

@media screen and (max-width: 768px) {
  .header-area .right .lang ul li {
    padding: 0 5px;
    width: 40px;
  }
}

/* ナビゲーション -------------------------------------------------------------- */

/* ナビゲーションドロップダウンのためのCSS */

/*==ナビゲーション全体の設定*/
.g-nav {
  text-align: center;
  margin: 45px 0 0;
}
/*ナビゲーションを横並びに*/
.g-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
/*2階層目以降は横並びにしない*/
.g-nav ul ul {
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
.g-nav ul li {
  position: relative;
}

/*ナビゲーションのリンク設定*/
.g-nav ul li a {
  display: block;
  text-decoration: none;
  padding: 0 15px;
  transition: all 0.3s;
}

.g-nav ul li li a {
  padding: 10px 35px;
}

.g-nav ul li a:hover {
  color: #287900;
}

.g-nav li.has-child ul {
  position: absolute;
  left: -60px;
  top: 32px;
  z-index: 4;
  background: #76c050;
  width: auto;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap;
}

.g-nav li.has-child:hover > ul,
.g-nav li.has-child ul li:hover > ul,
.g-nav li.has-child:active > ul,
.g-nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

.g-nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

.g-nav li.has-child ul li:last-child a {
  border-bottom: none;
}

.g-nav li.has-child ul li a:hover,
.g-nav li.has-child ul li a:active {
  opacity: 0.7;
}

.nav-pcOnly {
  display: block !important;
}

.nav-spOnly {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  nav {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;
    text-align: center;
    transition: 0.3s;
  }

  .open nav {
    visibility: visible;
    opacity: 1;
  }

  .g-nav {
    padding: 0;
  }

  .g-nav ul {
    margin: 0;
    display: block;
    width: 80vw;
    padding: 0;
    flex-direction: column;
  }
  .g-nav ul li {
    letter-spacing: 0.05rem;
    font-size: 0.9rem;
  }

  .g-nav ul li:first-child a {
    border-top: 1px solid #fff;
  }

  .g-nav ul li a {
    border-bottom: 1px solid #fff;
    color: #fff !important;
    padding: 7px 0;
  }

  .g-nav ul li a:hover {
    background: #287900 !important;
    color: #fff !important;
    opacity: 1 !important;
  }

  .nav-pcOnly {
    display: none !important;
  }

  .nav-spOnly {
    display: block !important;
  }
}

/*  ハンバーガーメニュー -------------------------------------------------------------- */

.hamburger {
  display: none;
  height: 40px;
  width: 40px;
  margin-top: -50px !important;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 40px;
  background: #76c050;
  position: absolute;
  transition: 0.5s all ease-in-out;
}

.hamburger span:nth-of-type(1) {
  position: relative;
  top: 17px;
}

.hamburger span:nth-of-type(2) {
  position: relative;
  top: 24px;
}

.open .hamburger span:nth-of-type(1) {
  position: relative;
  top: 22px;
}

.open .hamburger span:nth-of-type(2) {
  position: relative;
  top: 29px;
}

.open span:nth-child(1) {
  transform: translateY(0px) rotate(-315deg);
  width: 30px;
  margin-left: 10px;
}

.open span:nth-child(2) {
  transform: translateY(-10px) rotate(315deg);
  width: 30px;
  margin-left: 10px;
}

.open span:nth-child(1) {
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}

.open span:nth-child(2) {
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}

#mask {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 20;
  cursor: pointer;
}

#mask.open {
  opacity: 0.85 !important;
  visibility: visible;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}

.header-area {
  z-index: 9999;
  background: #fff;
}

/* トップ画像 -------------------------------------------------------------- */

.topimg-area {
  position: relative;
  margin-bottom: 100px;
  overflow: hidden;
}

.topimg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  z-index: 1;
}

.topimg img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  object-fit: cover;
  object-position: 100% 100%;
}

.topimg-area,
.topimg {
  max-height: calc(100vh - 190px);
}

/* ズームインの幅 */
.topimg img.mv {
  width: 100% !important;
}

.top-outline {
  position: absolute;
  color: #fff;
  padding: 60px 40px;
  left: 0;
  bottom: 7%;
  z-index: 10;
  background: linear-gradient(to right, #76c050, #64c235);
  background: -moz-linear-gradient(left, #76c050, #64c235);
  background: -webkit-linear-gradient(left, #76c050, #64c235);
  width: 430px;
}

.top-outline .title {
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.75rem);
  line-height: 3rem;
  letter-spacing: 0.05rem;
}

.top-outline .day {
  font-size: clamp(1rem, 0.925rem + 0.38vw, 1.375rem);
  line-height: 3rem;
  margin-top: 15px;
  letter-spacing: 0.05rem;
}

.top-outline .title {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.top-outline .title span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.top-outline .title.active,
.top-outline .title.active span {
  transition-delay: 0.2s;
  transform: translate(0, 0);
}

.top-outline .day {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.top-outline .day span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.top-outline .day.active,
.top-outline .day.active span {
  transition-delay: 0.2s;
  transform: translate(0, 0);
}

.top-outline .lead {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition-delay: 0.1s;
}

.top-outline .lead {
  font-size: clamp(0.8rem, 0.787rem + 0.13vw, 0.95rem);
  line-height: 1.45;
  /* display: block; */
  transform: translate(100%, 0);
  transition-delay: 0.1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

/* .top-outline .lead > span {
  font-size: 125%;
} */

.top-outline .lead.active,
.top-outline .lead.active span {
  transition-delay: 0.3s;
  transform: translate(0, 0);
}

@media screen and (max-width: 1200px) {
  .top-outline {
    padding: 30px 30px 30px 40px;
    bottom: 5%;
    width: 380px;
  }
  .top-outline .title {
    line-height: 2rem;
    margin-bottom: 20px;
  }

  .top-outline .day {
    line-height: 2rem;
  }

  .top-outline .lead {
    letter-spacing: 0.05rem;
  }
}

@media screen and (max-width: 1024px) {
  .topimg-area {
    padding-top: 85px !important;
  }
  .top-outline {
    padding: 20px;
    bottom: 3% !important;
    width: 310px;
  }
  .top-outline .title {
    line-height: 2rem;
    margin-bottom: 20px;
  }
  .top-outline .day {
    line-height: 1rem;
    margin-bottom: 5px;
  }
  .top-outline .lead {
    letter-spacing: 0.01rem;
  }
}

@media screen and (max-width: 768px) {
  .topimg-area,
  .topimg {
    max-height: unset;
  }
  .top-outline {
    width: auto;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1.5rem;
    width: 80%;
    bottom: auto !important;
    padding: 40px 30px;
  }
  .top-outline .title {
    line-height: 2rem;
    text-align: center !important;
  }
  .top-outline .day {
    text-align: center !important;
  }
  .top-outline .lead {
    text-align: center !important;
  }
  .topimg img {
    width: 100% !important;
    /* max-height: 550px !important; */
    text-align: center !important;
  }
  .topimg-area,
  .topimg {
    max-height: 60vh !important;
  }
}

@media screen and (max-width: 568px) {
  .top-outline {
    padding: 40px 25px;
  }
  .top-outline .title {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 380px) {
  .top-outline {
    padding: 20px 20px;
  }
}

.zoomIn {
  transition: 30s all ease-out;
}
.zoomIn.active {
  transform: scale(1.2, 1.2);
}

@media screen and (max-width: 450px) {
  .zoomIn {
    transition: 10s all ease-out;
  }
  .zoomIn.active {
    transform: scale(1.2, 1.2);
  }
}

.spOnly {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: inline;
  }
}

/* section -------------------------------------------------------------- */

section {
  padding-top: 80px !important;
  margin-top: -80px !important;
  padding-bottom: 80px !important;
  margin-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  section {
    padding-top: 80px !important;
    margin-top: -160px !important;
    padding-bottom: 80px !important;
    margin-bottom: 80px;
  }
}

/* section-title-------------------- */

h3 {
  font-size: 24px;
}

h3 > span {
  display: block;
  font-size: 14px;
}

.section-title {
  text-align: center;
  position: relative;
  padding-top: 45px;
  margin-bottom: 80px;
  color: #000000;
}

.section-title::after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  bottom: -20px;
  right: 50%;
  transform: translateX(50%) rotate(135deg);
}

.section-title02 {
  text-align: center;
  position: relative;
  margin-bottom: 80px;
  color: #000000;
}

.section-title02::after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  bottom: -20px;
  right: 50%;
  transform: translateX(50%) rotate(135deg);
}

/* いち樹について -------------------------------------------------------------- */

#about {
  position: relative;
  width: 100%;
  height: 50%;
  background: #fff;
}

.background-about {
  position: absolute;
  top: 30em;
  bottom: 15em;
  width: 100%;
  background: #f8f8f8;
  z-index: 0;
}

.about-area {
  margin: 0 auto;
  max-width: 1500px;
}

.about-sec-inner {
  display: flex;
}

.about-img {
  width: 50%;
  z-index: 1;
}

@media screen and (max-width: 568px) {
.about-img {
  display: none !important;
}
}

.about-read {
  box-sizing: border-box;
  width: 50%;
  margin: 70px 0 70px -11vw !important;
  padding: 6vw;
  background-color: #76c050;
  box-shadow: 0px 20px 36px 4px rgb(0 0 0 / 25%);
  color: #ffffff;
  z-index: 10;
}

.about-read > h3 {
  font-size: clamp(1.063rem, 0.975rem + 0.44vw, 1.5rem);
  margin-bottom: 35px;
  line-height: 1.65;
  text-align: justify;
}

.about-read > p {
  font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
  font-weight: 600;
  text-align: justify;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.bussines-contents {
  position: relative;
  margin: 85px auto 0;
  background-color: #fff;
  box-shadow: 0 0 20px rgb(221, 219, 219);
  width: calc(100% - 100px);
}

.bussines-contents-area-top{
  padding: 0;
  margin: 0;
 }

.bussines-contents-area-top > p{
 padding: 55px 25px 0 !important;
 margin: 0;
font-weight: 600;
}

.bussines-contents-area {
  display: flex;
  flex-wrap: row;
}

.l-wrapper {
  width: 48%;
  margin: 3rem auto;
}

.card {
  text-decoration: none;
}

.card__title {
  padding: 1rem 0;
  font-size: 1.25rem;
  text-align: center;
  border: #ccc solid 1px;
  display: block;
  background-color: #fff;
}

.card__body {
  padding: 1rem;
}

.bussines-contents-area-bottom{
  padding: 0 0 25px;
  margin: 0;
 }

 .bussines-contents-area-bottom h3{
  width: 98%;
  margin: 0 auto;
  padding: 1rem 0;
  font-size: 1.25rem;
  text-align: center;
  border: #ccc solid 1px;
  display: block;
  background-color: #fff;
 }

 .materials {
  display: flex;
  flex-wrap: row;
  margin-top: -25px;
}

.materials .card__header > p{
  width: 98%;
  margin: 0 15px;
  padding: 0;
  font-size: 1.15rem;
  text-align: left;
  display: block;
  font-weight: 600;
}

.materials .card__body > ul{
  margin: -10px 0 0 0;
  padding: 0;
 }

 .materials .card__body > ul >li >a{
  text-decoration: underline;
 }

@media only screen and (max-width: 768px) {
  .about-img {
    width: 100%;
  }

  .about-read {
    box-sizing: border-box;
    width: 100%;
    margin: 300px 0 70px -20vw !important;
    padding: 6vw;
    background-color: #76c050;
    box-shadow: 0px 20px 36px 4px rgb(0 0 0 / 25%);
    color: #ffffff;
    z-index: 10;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .bussines-contents {
    width: calc(100% - 25px);
  }
  .bussines-contents-area,.materials {
    display: initial;
  }
  .l-wrapper {
    width: 94%;
  }
  .sp-mx-15{
    margin-top: -45px !important;
  }
}

@media screen and (max-width: 568px) {
.about-read {
  margin: 0 !important;
}
}

/* 会社情報 -------------------------------------------------------------- */

#company {
  background: #76c050;
}

#company .company-area {
  display: table;
  margin: 0 auto;
  color: #fff;
}

#company .company-inn {
  margin-bottom: 30px;
}

#company .company-area .company-inn dl {
  border-bottom: solid 1px #fff;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

#company .company-area .company-inn dl dt {
  width: 6.75rem;
  text-align: justify; /* For Edge */
  text-align-last: justify;
}

#company .company-area .company-inn dl dd {
  padding-left: 1.75rem;
}

#company .company-area .company-inn dl dd ul li:first-child {
  font-size: 1rem;
  line-height: 2;
  padding-bottom: 5px;
}

#company .company-area .company-inn dl dd ul li:nth-child(n + 2) {
  /* font-size: 0.85rem; */
  line-height: 1.5;
  padding-left: 0.5rem;
}

#company .company-area .company-inn dl dd ul li:nth-child(4) {
  /* font-size: 0.85rem; */
  padding-top: 7px;
}

#company .section-title {
  color: #fff !important;
}

#company .section-title::after {
  border-color: #fff !important;
}

@media screen and (max-width: 768px) {
  #company .company-area .company-inn dl {
    display: initial;
    flex-wrap: initial;
  }
  #company .company-area .company-inn dl dt {
    width: 100%;
    text-align:initial; /* For Edge */
    text-align-last: initial;
    font-weight: 900;
    padding-bottom: 5px;
  }
  
  #company .company-area .company-inn dl dd {
    padding-left: 0;
    border-bottom: solid 1px #fff;
    margin-bottom: 25px;
  }
  }

/* 採用情報 -------------------------------------------------------------- */

#recruitment {
  background: #fff;
}

#recruitment .recruitment-area {
  display: table;
  margin: 0 auto;
  color: #000;
}

#recruitment .recruitment-inn {
  margin-bottom: 30px;
}

#recruitment .recruitment-area .recruitment {
  border: solid 1px #ccc !important;
  padding: 35px 35px 0 35px;
}

#recruitment .recruitment-area .recruitment-inn dl {
  border-bottom: solid 1px #ccc !important;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

#recruitment .recruitment-area .recruitment-inn dl dt {
  width: 5rem;
  text-align: justify; /* For Edge */
  text-align-last: justify;
}

#recruitment .recruitment-area .recruitment-inn dl dd {
  padding-left: 1.75rem;
}

#recruitment .recruitment-area .recruitment-inn dl dd ul li:first-child {
  font-size: 1rem;
  line-height: 2;
  padding-bottom: 5px;
}

#recruitment .recruitment-area .recruitment-inn dl dd ul li:nth-child(n + 2) {
  /* font-size: 0.85rem; */
  line-height: 1.5;
  padding-left: 0.5rem;
}

#recruitment .recruitment-area .recruitment-inn dl dd ul li:nth-child(4) {
  /* font-size: 0.85rem; */
  padding-top: 7px;
}

#recruitment .section-title {
  color: #fff !important;
}

#recruitment .section-title::after {
  border-color: #000 !important;
}


@media screen and (max-width: 768px) {
  #recruitment .recruitment-area .recruitment-inn dl {
    display: initial;
    flex-wrap: initial;
  }
  #recruitment .recruitment-area .recruitment-inn dl dt {
    width: 100%;
    text-align:initial; /* For Edge */
    text-align-last: initial;
    font-weight: 900;
    padding-bottom: 5px;
  }
  #recruitment .recruitment-area .recruitment-inn dl dd {
    padding-left: 0;
    border-bottom: solid 1px #ccc;
    margin-bottom: 25px;
  }
}


/* 演題募集・企業の皆様 -------------------------------------------------------------- */

.contentsBox {
  max-width: calc(1185px + 4%);
  margin: 0 auto;
  padding: 0;
}

.ttl {
  padding-bottom: 25px;
  border-bottom: solid 1px #ccc;
}

.contentsBox dl {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}

.contentsBox dt {
  font-size: 1.1rem;
  font-weight: 700;
  color: #76c050;
  line-height: 2;
}

.contentsBox dt i {
  margin-right: 0.35rem;
}

.contentsBox dd {
  font-size: 1rem;
  line-height: 1.65;
  padding: 0.5rem 0.25rem;
}

.contentsBox dd.link {
  padding: 0 0.25rem 0 !important;
}

.contentsBox dd.link p {
  display: table;
  border-bottom: solid 1px #002357;
  text-align: left;
  line-height: 1.65;
  /* margin-top: 12px; */
  margin-bottom: 15px;
  margin-left: 3px;
}

.contentsBox dd.link p {
  display: table;
  border-bottom: solid 1px #002357;
  text-align: left;
  line-height: 1.65;
  /* margin-top: 12px; */
  margin-bottom: 8px;
  margin-left: 3px;
}

.contentsBox dd.note {
  padding: 0 0.25rem 1rem !important;
  font-size: 0.95rem;
  color: #4c4c4c;
}


/* ダウンロード */

.downLoadBox {
  display: flex;
  justify-content: space-around;
  margin-top: 35px;
  margin-bottom: 35px;
}

.downLoadBox .downLoad-inn {
  text-align: center !important;
  border: solid 1px #002357;
  padding: 15px 0;
  background-color: #fff;
}

.contentsBox dd .downLoadBox .downLoad-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px !important;
  text-align: center !important;
}

.downLoadBox .downitem {
  display: table;
  margin: 0 auto;
  border-bottom: solid 1px #002357;
}

.downLoadBox .downitem > a:hover{
  color:#287900;
}

.downLoadBox div {
  width: 49%;
}

@media only screen and (max-width: 768px) {
  .downLoadBox div {
    width: 100%;
  }
}

.downLoadBox .section-title {
  letter-spacing: 0.03rem;
}


/* table-design01 */

.table-design01 {
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9rem;
  background-color: #fff;
}
.table-design01 th {
  padding: 10px;
  background: #f8f7f2;
  border: solid 1px #ccc;
}

.table-design01 td {
  padding: 10px;
  border: solid 1px #ccc;
}
.table-design01 td:first-child {
  background: #f8f7f2;
}

.table-design01 th:first-child {
  white-space: nowrap !important;
  width: 220px !important;
}

/* table-design02 */

.table-design02 {
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9rem;
  background-color: #fff;
}
.table-design02 th {
  padding: 10px;
  background: #fffbff;
  border: solid 1px #ccc;
}

.table-design02 td {
  padding: 10px;
  border: solid 1px #ccc;
}
.table-design02 td:first-child {
  background: #f8f7f2;
}

.table-design02 th:first-child {
  white-space: nowrap !important;
  width: 220px !important;
}


/* table-design03 */

.table-design03 {
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9rem;
  margin-top: -1px !important;
  background-color: #fff;
}
.table-design03 th {
  padding: 10px;
  background: #f4fcfc;
  border: solid 1px #ccc;
}
.table-design03 th > span{
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
}

.table-design03 td {
  padding: 10px;
  border: solid 1px #ccc;
}

.table-design03 th:first-child {
  white-space: nowrap !important;
  width: 220px !important;
}


/* table-design04 */

.table-design04 {
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9rem;
  background-color: #fff;
}
.table-design04 th {
  padding: 10px;
  background: #F8F7F2;
  border: solid 1px #ccc;
}

.table-design04 td {
  padding: 10px;
  border: solid 1px #ccc;
}


.bg-white02 {
  background-color: #f8f7f2 !important;
}

.prices {
  overflow-x: auto;
}

/* Chrome, Safari 対応 */
.prices::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.prices::-webkit-scrollbar-track {
  background: #f7f7f7;
}

.prices::-webkit-scrollbar-thumb {
  background: #9b9b9b;
  border-radius: 5px;
}

.prices table {
  width: 100%;
  min-width: 1000px !important;
  border-collapse: collapse;
  white-space: nowrap;
}

h4 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  margin-top: 15px;
}

h4:before,
h4:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}


h4:before {
  left: 0;
}
h4:after {
  right: 0;
}

h5 {
  font-size: 0.95rem;
  margin-top: 25px;
  margin-bottom: 5px;
}

h5::before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 400;
  margin-right: 4px;
}

h5 > span {
  font-size: 14px;
}


ol.service-contents{
  counter-reset:list;
  list-style-type:none;
  padding:8px 0;
}
ol.service-contents li:first-child{
  position:relative;
  margin: 7px 0 7px 0px;
  padding-left:48px;
  padding-right: 25px;
  font-weight: bold;
  font-size:16px;
  line-height: 40px;
  border: 2px solid #F8F7F2;
  color: #333;
}
ol.service-contents li:first-child:before{
  position: absolute;
  left: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #333;
  line-height:40px;
  background: #F8F7F2;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ol.service-contents li:first-child:after{
  content:"";
  display: block;
  position: absolute;
  left: 30px;
  height: 0;
  width: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #F8F7F2;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ol.service-contents li:nth-child(2){
  margin: 12px 0 12px 0px;
  padding-left:15px;
  padding-right: 25px;
  line-height: 30px;
}

ol.service-contents li.no1:first-child:before{
  content: "1";
}

ol.service-contents li.no2:first-child:before{
  content: "2";
}
.mb8px{
  margin-bottom: 8px;
}


ul.service-contents-cp{
  counter-reset:list;
  list-style-type:none;
  padding:0;
}
ul.service-contents-cp li{
  position:relative;
  color: #333;
  padding: 0 0 0 20px;
  margin: 7px 0px;
  line-height: 30px;
  /* border-bottom: dashed 1px #ccc; */
}
ul.service-contents-cp li:before{
  counter-increment: list;
  content: counter(list) ".";
  display: block;
  position: absolute;
  left: 0px;
  font-weight: bold;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}



/* Q&A -------------------------------------------------------------- */

.qa-Box {
  width: 100%;
  margin: 0 auto !important;
  padding: 15px 0 !important;
  border-bottom: none !important;
}

.qa-Box .qa-area dt{
  display: flex;
  align-items: baseline;
  margin: 0;
  padding: 15px;
}

.qa-Box .qa-area dd {
  display: flex;
  align-items: baseline;
  margin: 0;
  padding: 15px 15px 25px 15px;
}

.qa-Box .qa-area dt {
  background: #f2f2f2;
  color: #333 !important;
  font-size: 1rem !important;
}

.qa-Box .qa-area dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}

.qa-Box .qa-area dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
  line-height: 2em;
}

.qa-Box .qa-area dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #6699B7;
  width: 2em;
  height: 2em;
}

.qa-Box .qa-area dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #D65556;
  width: 2em;
  height: 2em;
}

@media screen and (max-width: 960px) {
  .qa-Box {
    width: 95%;
  }
}


/* footer -------------------------------------------------------------- */

#footer{
  background: #f5f2e9;
  color: #333;
}

/* area */

.footer-inner{
  width:100%;
  margin:0 auto;
  padding:70px;
}

@media screen and (max-width:940px) {
.footer-inner{
  padding:70px 30px;
}
}

#footer a{
  color: #333;
}

.footer-area{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.footer-info{
  width:30%;
}

.footer-info span{
  display: block;
  font-size:1.7rem;
  font-weight: bold;
  line-height: 1.5;
}

.footer-info dt.footer-title,
.footer-info li:first-of-type{
  margin: 0 0 10px 0;
}

.footer-info li dt{
  margin:0 10px 0 0;
}

.footer-info li dt,
.footer-info li dd{
  display: inline-block;
}

.footer-sitemap{
  width:65%;
}

.footer-sitemap ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 50px 0;
  font-size: 0.9rem;
}

.footer-sitemap li{
  padding: 10px 20px;
}

.footer-sitemap li a{
position: relative;
  padding: 0 10px;
}

.footer-sitemap li a:before{
position: absolute;
top:40%;
left:-10px;
content: '';
width: 7px;
height:7px;
border-top: 2px solid #333;
border-right: 2px solid #333;
transform: rotate(45deg);
}

#footer > small{
  display: block;
  text-align: right;
}

@media screen and (max-width:1090px) {
  .footer-area{
      align-items: flex-start;
  }
.footer-info{
  width:40%;
}
.footer-sitemap{
  width:56%;
}
  
}

@media screen and (max-width:940px) {
  #footer > small{
      text-align: center;
  }
  #page-top{
  position: relative;
  text-align: center;
  right: inherit;
  bottom: inherit;
  margin: 50px auto 30px auto;
  width: 80px;
  animation: none!important;
  transform:none!important;
  opacity: 1;
  }
  
}

@media screen and (max-width:768px) {
.footer-info,
.footer-sitemap{
  width:100%;
}
  
.footer-info{
  text-align: center;
  margin:0 0 70px 0;
  padding: 0 0 70px 0;
  border-bottom:1px solid rgba(255,255,255,0.8);
}
  .footer-info span{
      font-size:1.3rem;
  }    
}



/* fadeUp -------------------------------------------------------------- */
.fadeUp img {
  opacity: 0;
  transform: translate(-50%, -30%) !important;
  transition: 1s all ease-in-out;
}

.fadeUp.active img {
  opacity: 1;
  transform: translate(-50%, -50%) !important;
}

.fadeUp.active:nth-child(1) img {
  transition-delay: 0s;
}

.fadeUp.active:nth-child(2) img {
  transition-delay: 0.05s;
}

.fadeUp.active:nth-child(3) img {
  transition-delay: 0.1s;
}

.fadeUp.active:nth-child(4) img {
  transition-delay: 0.15s;
}

.fadeUp.active:nth-child(5) img {
  transition-delay: 0.2s;
}

.fadeUp.active:nth-child(6) img {
  transition-delay: 0.25s;
}

.fadeUp.active:nth-child(7) img {
  transition-delay: 0.3s;
}

.fadeUp.active:nth-child(8) img {
  transition-delay: 0.35s;
}

.fadeUp.active:nth-child(9) img {
  transition-delay: 0.4s;
}

.fadeUp.active:nth-child(10) img {
  transition-delay: 0.45s;
}
.fadeUp.active:nth-child(11) img {
  transition-delay: 0.5s;
}
.fadeUp.active:nth-child(12) img {
  transition-delay: 0.55s;
}
.fadeUp.active:nth-child(13) img {
  transition-delay: 0.6s;
}
.fadeUp.active:nth-child(14) img {
  transition-delay: 0.65s;
}
.fadeUp.active:nth-child(15) img {
  transition-delay: 0.7s;
}



/* other -------------------------------------------------------------- */

.txt-right {
  text-align: right !important;
}

.txt-left {
  text-align: left !important;
}


.my-4{
  margin-top:45px !important;
  margin-bottom: 25px !important;
}

.pt30{
  padding-top: 30px !important;
}

/* 改行コントロール */
span.lbc {
  display: inline-block !important;
}

.sspc {
  display: none;
}