@charset "UTF-8";

/* Sass Document */
.pc {
  display: block;
}
@media only screen and (max-width: 959px),
print {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}
@media only screen and (max-width: 959px),
print {
  .sp {
    display: block;
  }
}
.col-red {
  color: #d82a2a;
}

.col-green {
  color: #4e9438;
}

.wrapper {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 1400px) {
  .wrapper {
    width: 90%;
  }
}

@media only screen and (max-width: 959px),
print {
  .wrapper {
    width: 90%;
  }
}

.container {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 1199px),
print {
  .container {
    width: 95%;
  }
}

.inner {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 1199px),
print {
  .inner {
    width: 90%;
  }
}

/*********
各種パーツ
*******/
h1 {
  font-size: 12px;
  padding: 0.5em 1.5em;
  background-color: rgba(246, 246, 246, 0.3);
  position: absolute;
  width: 100%;
}

@media only screen and (max-width: 959px),
print {
  h1 {
    font-size: 2.66667vw;
    padding: 0.5em;
  }
}

h2.section-title {
  font-size: 36px;
  line-height: 1.33333;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 959px),
print {
  h2.section-title {
    font-size: 4.8vw;
  }
}

h2.section-title span {
  font-size: 56px;
  color: #4e9438;
}

@media only screen and (max-width: 959px),
print {
  h2.section-title span {
    font-size: 7.46667vw;
  }
}

h2.section-title span.dot {
  color: #333;
  font-size: 36px;
  line-height: 1.33333;
  position: relative;
  display: inline-block;
}
h3 span.dot {
  position: relative;
  display: inline-block;
}

h2.section-title span.dot::before {
  position: absolute;
  top: -0.8em;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  color: #eee082;
  font-size: 1.5em;
  content: "・";
}
h3 span.dot::before {
  position: absolute;
  top: -0.8em;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  color: #2285bc;
  font-size: 1em;
  content: "・";
}

@media only screen and (max-width: 959px),
print {
  h2.section-title span.dot {
    font-size: 4.8vw;
  }
}

.under-maker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #eee082));
  background: linear-gradient(transparent 70%, #eee082 0%);
}

.btn-wrapper {
  margin-top: 2em;
}

.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
}

.btn {
  font-size: 18px;
  font-family: inherit;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  border-radius: 15px;
  border: solid 1px #2285bc;
  background-color: #2285bc;
  color: #fff;
  position: relative;
  width: 30%;
  padding: 1em 0;
  z-index: 1;
  margin-bottom: 1em;
}

@media only screen and (max-width: 959px),
print {
  .btn {
    font-size: 4.8vw;
    width: 90%;
  }
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
}

.btn:hover {
  background-color: #fff;
  color: #2285bc;
}

.btn:hover::after {
  border-right: 1px solid #2285bc;
  border-top: 1px solid #2285bc;
}

.btn.disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

/*****************************************************************************
 初期設定
 *****************************************************************************/
* {
  margin: 0;
  padding: 0;
}

html {
  overflow: auto;
}

body {
  /* @include YuGothic; */
  font-family: 'Noto Serif JP', serif;
  margin: 0;
  padding: 0;
  text-align: left;
  color: #333;
  background-color: rgba(78, 148, 56, 0.05);
  font-weight: bold;
  /* font-feature-settings: "palt" on; */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  scroll-behavior: smooth;
  left: 0;
  zoom: 1;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0em;
}

@media only screen and (max-width: 959px),
print {
  body {
    font-size: 3.2vw;
  }
}

a {
  color: #333;
  display: inline-block;
}

a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

a:hover img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

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

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

.text-right {
  text-align: right;
}

.fw-bold {
  font-weight: bold;
}

.hidden-sp {
  display: block;
}

@media only screen and (max-width: 959px),
print {
  .hidden-sp {
    display: none;
  }
}

.hidden-pc {
  display: none;
}

@media only screen and (max-width: 959px),
print {
  .hidden-pc {
    display: block;
  }
}

/* ================================================
 * flex
/* ================================================*/
.flex_start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex_end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex_between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex_around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex_all_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: center;
  margin: 0 auto;
}

/**************
ヘッダー
***************/
.header {
  position: relative;
}

.header .point-box {
  margin: 80px auto;
  max-width: 840px;
  box-shadow: 2.8px 2.8px 7.7px 0.3px #4e943833;
  background-color: #fff;
  padding: 40px 110px;
}

@media only screen and (max-width: 959px),
print {
  .header .point-box {
    width: 94%;
    padding: 8% 5%;
    margin: 10% auto;
  }
}

.header .point-item {
  font-size: 28px;
  line-height: 1.5;
  position: relative;
  padding-left: 50px;
}

@media only screen and (max-width: 959px),
print {
  .header .point-item {
    font-size: 3.8vw;
    padding-left: 2em;
  }
}

.header .point-item::before {
  position: absolute;
  content: "";
  background-image: url(../images/00_listmarker-check.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 33px;
  height: 28px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0;
}
@media only screen and (max-width: 959px),
print {
  .header .point-item::before {
    width: 1.5em;
    height: 1.5em;
    margin-right: 1em;
  }
}
.header .point-item:not(:last-child) {
  margin-bottom: 0.5em;
}
/*****************************************************************************
 フッター
 *****************************************************************************/
.footer {
  color: #fff;
  background-color: #4e9438;
  text-align: center;
  font-size: 14px;
  padding: 3em 0 2em;
}

@media only screen and (max-width: 959px),
print {
  .footer {
    padding: 2em 0 1em;
  }
}

.footer span {
  font-family: Verdana, "Droid Sans";
}

.footer-linkHolder {
  margin-bottom: 40px;
}

.footer-item {
  width: 40px;
  margin: auto 10px 0;
}

@media only screen and (max-width: 767px),
print {
  .footer-linkHolder {
    margin-bottom: 2em;
  }
}

/*****************************************************************************
共通
*****************************************************************************/
/******************************
トップページ
******************************/
/* about */
.about {
  background-image: url(../images/01_about-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 80px;
  text-align: center;
}

@media only screen and (max-width: 959px),
print {
  .about {
    padding: 10% 0;
  }
}

@media only screen and (max-width: 959px),
print {
  .about .about-box.flex_between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.about .about-text {
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 2em;
  position: relative;
}

@media only screen and (max-width: 959px),
print {
  .about .about-text {
    font-size: 3.2vw;
  }
}

.about .about-text::before {
  content: "";
  position: absolute;
  background-image: url(../images/01_item.png);
  background-repeat: no-repeat;
  background-size: 100%;
  top: -88px;
  left: 84px;
  width: 193px;
  height: 240px;
  z-index: 1;
}

@media only screen and (max-width: 1400px) {
  .about .about-text::before {
    top: -6vw;
    left: 4vw;
    width: 14vw;
    height: 17vw;
  }
}

@media only screen and (max-width: 1199px),
print {
  .about .about-text::before {
    left: 0;
  }
}

@media only screen and (max-width: 959px),
print {
  .about .about-text::before {
    top: -20vw;
    left: 4vw;
    width: 15vw;
    height: 18vw;
  }
}

@media only screen and (max-width: 768px),
print {
  .about .about-text::before {
    top: -24vw;
    left: 0;
    width: 17vw;
    height: 21vw;
  }
}

.about .about-item {
  -webkit-box-shadow: 2.8px 2.8px 7.7px 0.3px rgba(34, 133, 188, 0.4);
  box-shadow: 2.8px 2.8px 7.7px 0.3px rgba(34, 133, 188, 0.4);
  background-color: #fff;
  font-size: 24px;
  line-height: 2;
  width: 360px;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding-top: 1em;
}

@media only screen and (max-width: 1199px),
print {
  .about .about-item {
    width: 31%;
  }
}

@media only screen and (max-width: 959px),
print {
  .about .about-item {
    width: 60%;
    margin: 0 auto 5%;
    height: 40vw;
    font-size: 3.46667vw;
  }
}

.about .about-item .flag {
  position: absolute;
  top: 0;
  left: 10px;
  width: 72px;
}

@media only screen and (max-width: 959px),
print {
  .about .about-item .flag {
    left: 5%;
    width: 20%;
  }
}

/* video */
.video {
  background-color: #fff;
  text-align: center;
  padding-top: 96px;
  padding-bottom: 80px;
  position: relative;
}

@media only screen and (max-width: 959px),
print {
  .video {
    padding-top: 10%;
    padding-bottom: 25%;
  }
}

.video .section-title::before,
.video .section-title::after {
  content: '';
  position: absolute;
  top: 55%;
  display: inline-block;
  width: 120px;
  height: 4px;
  background-color: #2285bc;
  border-radius: 2px;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

@media only screen and (max-width: 768px),
print {

  .video .section-title::before,
  .video .section-title::after {
    width: 15vw;
  }
}

.video .section-title::before {
  left: -2.5em;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.video .section-title::after {
  right: -2.5em;
}

.video .video-title-box {
  position: relative;
}

.video .video-ballon {
  width: 30%;
  position: absolute;
  top: 0;
  left: -5%;
  /* width: 360px;
    height: 320px;
    position: absolute;
    top: 0;
    left: -80px;
    padding-bottom: 1em;
    background-image: url(../images/02_video-ballon.png);
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    @include media(tab) {
      background: none;
      width: 100%;
      height: auto;
      position: static;
    } */
}

@media only screen and (max-width: 1199px),
print {
  .video .video-ballon {
    position: static;
    margin-bottom: 2em;
    width: 100%;
  }

  .video .video-ballon .hidden-sp {
    display: none;
  }
}

@media only screen and (max-width: 1199px),
print {
  .video .video-ballon img {
    display: none;
  }
}

.video .video-ballon .video-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 70%;
}

@media only screen and (max-width: 1199px),
print {
  .video .video-ballon .video-text {
    position: static;
    width: 100%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    text-align: center;
    font-size: 18px;
  }
}

@media only screen and (max-width: 959px),
print {
  .video .video-ballon .video-text {
    font-size: 2.66667vw;
    text-align: center;
  }
}

.video .video-wrapper {
  position: relative;
}

.video .video-wrapper::after {
  content: "";
  position: absolute;
  background-image: url(../images/02_konbu.png);
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: 0;
  right: 0;
  width: 275px;
  height: 240px;
}

@media only screen and (max-width: 1199px),
print {
  .video .video-wrapper::after {
    bottom: 0;
    right: 0;
    width: 17vw;
    height: 14vw;
  }
}

@media only screen and (max-width: 959px),
print {
  .video .video-wrapper::after {
    bottom: -18vw;
    right: 0;
    width: 20vw;
    height: 16vw;
  }
}

.video .video-wrapper video {
  width: 50%;
  height: 100%;
}

@media only screen and (max-width: 959px),
print {
  .video .video-wrapper video {
    width: 70%;
  }
}

/* menu */
.menu {
  background-color: rgba(78, 148, 56, 0.15);
  padding-top: 60px;
  padding-bottom: 90px;
  text-align: center;
}

.menu h2.section-title {
  margin-bottom: 0.5em;
}

.menu h3 {
  font-size: 56px;
  margin-bottom: 1em;
}

@media only screen and (max-width: 959px),
print {
  .menu h3 {
    font-size: 5.6vw;
  }
}

.menu h3 .circle {
  background: #eee082;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  display: inline-block;
}

@media only screen and (max-width: 959px),
print {
  .menu h3 .circle {
    width: 2em;
    height: 2em;
    line-height: 2em;
  }
}

.menu .flex_between {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media only screen and (max-width: 959px),
print {
  .menu .flex_between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.menu .menu-item {
  position: relative;
}

.menu .menu-item-tag {
  width: 70%;
  position: absolute;
  bottom: -6%;
  right: -10%;
}

.menu .menu-item:nth-of-type(2n-1) {
  width: 25%;
}

@media only screen and (max-width: 959px),
print {
  .menu .menu-item:nth-of-type(2n-1) {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4em;
  }
}

.menu .menu-item:nth-of-type(2n) {
  width: 30%;
}

@media only screen and (max-width: 959px),
print {
  .menu .menu-item:nth-of-type(2n) {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4em;
  }
}

.menu .menu-item:nth-of-type(2n) .menu-item-tag {
  width: 60%;
}

.menu .menu-item:nth-of-type(3n-1) {
  margin-top: 4em;
}

.menu .menu-item:nth-of-type(4),
.menu .menu-item:nth-of-type(6) {
  margin-top: -3em;
}

@media only screen and (max-width: 959px),
print {

  .menu .menu-item:nth-of-type(4),
  .menu .menu-item:nth-of-type(6) {
    margin-top: 4em;
  }
}

.menu .menu-item:nth-of-type(4) .menu-item-tag,
.menu .menu-item:nth-of-type(5) .menu-item-tag,
.menu .menu-item:nth-of-type(6) .menu-item-tag {
  right: unset;
  left: -10%;
  bottom: -12%;
}

@media only screen and (max-width: 959px),
print {
  .menu .menu-item:nth-of-type(1) {
    margin-top: 0;
  }
}

.reason {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url(../images/04_reason-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 959px),
print {
  .reason {
    padding-top: 10%;
    padding-bottom: 10%;
  }
}

.reason-title {
  width: 780px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3em;
}

.reason h2.section-title {
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
  position: relative;
  margin-bottom: 1em;
}

@media only screen and (max-width: 959px),
print {
  .reason h2.section-title {
    left: 5%;
  }
}

.reason h2.section-title::after {
  content: "";
  position: absolute;
  background-image: url(../images/04_title-ballon.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 50px;
  bottom: -35px;
  left: 0;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
}

@media only screen and (max-width: 959px),
print {
  .reason h2.section-title::after {
    height: 6vw;
    bottom: -5vw;
  }
}

.reason h3 {
  font-size: 56px;
  text-align: center;
}

@media only screen and (max-width: 959px),
print {
  .reason h3 {
    font-size: 7.46667vw;
  }
}

.reason-item {
  width: 30%;
  -webkit-box-shadow: 2.8px 2.8px 7.7px 0.3px rgba(34, 133, 188, 0.4);
  box-shadow: 2.8px 2.8px 7.7px 0.3px rgba(34, 133, 188, 0.4);
  background-color: #fff;
  padding: 1.5em 0;
  margin-bottom: 50px;
  height: 390px;
}

@media only screen and (max-width: 959px),
print {
  .reason-item {
    width: 100%;
    margin-bottom: 3em;
    height: 100vw;
  }
}

@media only screen and (max-width: 959px),
print {
  .reason-item-box.flex_between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.reason-item-img {
  margin-bottom: 1em;
}

.reason-item p {
  font-size: 20px;
  line-height: 1.7;
  color: #4e9438;
  text-align: center;
}

@media only screen and (max-width: 959px),
print {
  .reason-item p {
    font-size: 5.33333vw;
  }
}

.more {
  background-color: rgba(78, 148, 56, 0.05);
  padding: 80px 0 130px;
}

@media only screen and (max-width: 1199px),
print {
  .more {
    padding: 10% 0 25%;
  }
}

.more-item {
  position: relative;
  margin-bottom: 300px;
}
@media only screen and (max-width: 959px),
print {
.more-item {
  margin-bottom: 10%;
}
}
.more-img {
  width: 50%;
}

@media only screen and (max-width: 1199px),
print {
  .more-img {
    width: 80%;
  }
}

.more-text {
  position: absolute;
  width: 72%;
  bottom: -50%;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2.5em;
}
.more-text p {
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.96px;
}
@media only screen and (max-width: 959px),
print {
  .more-text p {
    font-size: 16px;
  }
}
.more-text p:last-child {
  font-size: 20px;
  line-height: 2.4;
  text-align: right;
}
@media only screen and (max-width: 959px),
print {
  .more-text p:last-child {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px),
print {
  .more-text {
    width: 95%;

  }
}
@media only screen and (max-width: 959px),
print {
  .more-text {
    position: relative;
    margin-top: -2em;
    margin-left: auto;
  }
}
.more-listHolder {
  position: relative;
  padding: 40px 60px;
}
@media only screen and (max-width: 959px),
print {
  .more-listHolder {
    padding: 8% 10%;
  }
}

.more-listHolder::before,
.more-listHolder::after {
  content: "";
  display: inline-block;
  position: absolute;
  border: 2px solid #4e9438;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 100%;
}
.more-listHolder::before {
  border-right: none;
  left: 0;
}
.more-listHolder::after {
  border-left: none;
  right: 0;
}
.more-listHolder ul {
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.96px;
}
@media only screen and (max-width: 959px),
print {
.more-listHolder ul {
  font-size: 18px;
}
}
.more-listHolder ul li {
  position: relative;
  text-indent: -1em;
  padding-left: 1em;
}
.more-listHolder ul li::before {
  display:inline-block;
  vertical-align: middle;
  /*以下白丸つくる*/
  content:'';
  width:0.5em;
  height: 1px;
  background: #4e9438;
  margin-right: 12px;
}
.company {
  background-color: #fff;
  text-align: center;
  padding: 60px 0 80px;
}

@media only screen and (max-width: 959px),
print {
  .company {
    padding: 15% 0;
  }
}

.company h2.section-title {
  font-size: 56px;
  position: relative;
}

@media only screen and (max-width: 959px),
print {
  .company h2.section-title {
    font-size: 7.46667vw;
  }
}

.company h2.section-title::after {
  content: "";
  position: absolute;
  background-image: url(../images/06_company-title.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 20%;
  height: 12px;
  bottom: -0.4em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (max-width: 959px),
print {
  .company h2.section-title::after {
    height: 2vw;
  }
}

.company-box {
  font-size: 18px;
  line-height: 2.66667;
  text-align: left;
}

@media only screen and (max-width: 959px),
print {
  .company-box {
    font-size: 3.73333vw;
  }
}

.company-box dl {
  width: 67%;
}

@media only screen and (max-width: 959px),
print {
  .company-box dl {
    width: 100%;
  }
}

.company-box dl div {
  border-bottom: solid 1px rgba(34, 133, 188, 0.3);
  padding: 0.5em 0;
}

.company-box dt {
  width: 43%;
  padding-left: 5em;
}

@media only screen and (max-width: 959px),
print {
  .company-box dt {
    padding-left: 1em;
    width: 35%;
  }
}

.company-box dd {
  width: 57%;
}

@media only screen and (max-width: 959px),
print {
  .company-box dd {
    width: 65%;
  }
}

.company-box .company-img {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media only screen and (max-width: 959px),
print {
  .company-box .company-img {
    display: none;
  }
}

.company-box .company-img img {
  width: 60%;
}

.contact {
  padding-top: 80px;
  padding-bottom: 70px;
  background-image: url(../images/07_contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /*スクロールバーの横幅指定*/
  /*スクロールバーの背景色・角丸指定*/
  /*スクロールバーの色・角丸指定*/
}

@media only screen and (max-width: 959px),
print {
  .contact {
    padding: 15% 0;
  }
}

.contact-box {
  background-color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 3em 0 4em;
}

.contact h2.section-title {
  font-size: 56px;
  position: relative;
  margin-bottom: 1.2em;
}

@media only screen and (max-width: 959px),
print {
  .contact h2.section-title {
    font-size: 7.46667vw;
  }
}

.contact h2.section-title::after {
  content: "";
  position: absolute;
  background-image: url(../images/06_company-title.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 12%;
  height: 12px;
  bottom: -0.4em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (max-width: 959px),
print {
  .contact h2.section-title::after {
    height: 2vw;
  }
}

.contact .scrollArea {
  height: 200px;
  overflow: auto;
  padding-right: 20px;
  text-align: left;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 1em;
}

@media only screen and (max-width: 959px),
print {
  .contact .scrollArea {
    width: 90%;
    margin: 0 auto 1em;
    padding-right: 0.5em;
  }
}

.contact .scrollArea.deco::-webkit-scrollbar {
  width: 15px;
}

.contact .scrollArea.deco::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #f2f2f2;
}

.contact .scrollArea.deco::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #09C9D9;
}

.contact .scrollArea-wrapper {
  padding: 2em 2em 2em 3em;
  font-size: 16px;
}

@media only screen and (max-width: 959px),
print {
  .contact .scrollArea-wrapper {
    padding: 1.5em 1em 1em 1.5em;
    font-size: 2.93333vw;
  }
}

.contact .policy .under-line {
  border-bottom: solid 1px #333;
}

.contact .policy p.policy-title {
  font-size: 18px;
  margin: 0 0 1em 0;
  line-height: 1;
  color: #4e9438;
}

@media only screen and (max-width: 959px),
print {
  .contact .policy p.policy-title {
    font-size: 3.73333vw;
  }
}

.contact .policy p.policy-subtitle {
  margin: 1.5em 0 0.5em 0;
  font-size: 18px;
  font-weight: bold;
}

@media only screen and (max-width: 959px),
print {
  .contact .policy p.policy-subtitle {
    font-size: 3.73333vw;
  }
}

.contact .policy p {
  margin-bottom: 1.5em;
  line-height: 2;
}

.contact .policy ul {
  margin: 1em 0 0 1.5em;
}

.contact .policy ul li {
  list-style: outside decimal;
  font-size: 0.9em;
  line-height: 140%;
  margin: 0.5em 0 0 0;
}

.contact .policy ul li ul {
  margin: 0.5em 0 0.5em 0.5em;
}

.contact .policy ul li ul li {
  list-style: outside none;
  margin-left: 1em;
  text-indent: -1.5em;
}

.contact .policy ul.child {
  margin: 1em 0 0 0.5em;
}

.contact .policy ul.child li {
  list-style: outside none;
  margin-left: 3em;
  text-indent: -1.7em;
}

.contact .policy p.tR {
  margin: 1.5em 0 0 0;
  font-size: 0.95em;
  line-height: 140%;
  text-align: right;
}

.contact .policy ul li ul li ol li {
  list-style: outside lower-roman;
  margin-left: 1.5em;
  text-indent: -0.2em;
}

.contact .policy ol {
  margin: 1.5em 0 0 2em;
}

.contact .policy ol li {
  list-style: outside decimal;
  font-size: 0.95em;
  line-height: 140%;
  margin: 0.5em 0 0 0;
}

.contact .policy ol li ol {
  margin-bottom: 1.5em;
}

.contact .policy ol li ol li {
  font-size: 100%;
}

.contact .policy-check {
  font-size: 18px;
}

@media only screen and (max-width: 959px),
print {
  .contact .policy-check {
    font-size: 3.73333vw;
  }
}

.contact .err_text p {
  color: #d82a2a;
  margin-top: 1em;
}

table.formTable {
  width: 100%;
  margin: 0 auto 2.5em;
  border-collapse: collapse;
  text-align: left;
  font-size: 18px;
}

@media only screen and (max-width: 959px),
print {
  table.formTable {
    font-size: 4vw;
  }
}

table.formTable td,
table.formTable th {
  border: 1px solid #4e9438;
  vertical-align: middle;
}

@media only screen and (max-width: 959px),
print {

  table.formTable td,
  table.formTable th {
    border-bottom: none;
  }
}

table.formTable th {
  width: 28%;
  background-color: rgba(78, 148, 56, 0.15);
  padding: 2.5em;
  text-align: left;
}

@media only screen and (max-width: 959px),
print {
  table.formTable th {
    padding: 1em;
    display: block;
    width: 100%;
  }
}

table.formTable th .label {
  font-size: 12px;
  color: #fff;
  background-color: #4e9438;
  text-align: center;
  padding: 0 0.6em;
  line-height: 2;
}

@media only screen and (max-width: 959px),
print {
  table.formTable th .label {
    font-size: 3.2vw;
    margin-left: 2em;
  }
}

@media only screen and (max-width: 959px),
print {
  table.formTable th .flex_between {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

table.formTable td {
  width: 72%;
  padding: 1.5em;
}

@media only screen and (max-width: 959px),
print {
  table.formTable td {
    width: 100%;
    display: block;
    padding: 1em;
  }
}

table.formTable td input,
table.formTable td textarea {
  width: 92%;
  font-size: 120%;
  padding: 0.5em;
  font-family: inherit;
  border-radius: 5px;
  border: solid 1px #ccc;
  background-color: #fff;
}

@media only screen and (max-width: 959px),
print {

  table.formTable td input,
  table.formTable td textarea {
    width: 100%;
  }
}

@media only screen and (max-width: 959px),
print {
  table.formTable tr:last-of-type td {
    border: 1px solid #4e9438;
  }
}

.voice {
  background-color: rgba(78, 148, 56, 0.03);
  text-align: center;
  padding-bottom: 90px;
}

@media only screen and (max-width: 959px),
print {
  .voice {
    padding-bottom: 15%;
  }
}

.voice .section-title {
  padding-top: 70px;
  position: relative;
}

@media only screen and (max-width: 959px),
print {
  .voice .section-title {
    padding-top: 15%;
  }
}

.voice .section-title::before {
  position: absolute;
  content: "";
  background-image: url(../images/08_title.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  top: 1em;
  left: -0.5em;
}

@media only screen and (max-width: 959px),
print {
  .voice .section-title::before {
    top: 2em;
  }
}

.voice p {
  font-size: 24px;
  line-height: 2;
  text-align: left;
}

@media only screen and (max-width: 959px),
print {
  .voice p {
    font-size: 3.46667vw;
  }
}

.voice a {
  color: #2285bc;
  font-size: 24px;
  display: block;
  text-align: left;
  margin-top: 2em;
}

@media only screen and (max-width: 959px),
print {
  .voice a {
    font-size: 3.46667vw;
  }
}

.banner {
  background-color: #f5fafe;
  padding: 80px 0;
}

.banner-linkHolder>li {
  width: 48%;
}

@media only screen and (max-width: 767px),
print {
  .banner {
    padding: 10% 0;
  }

  .banner-linkHolder.flex_between {
    flex-direction: column;
  }

  .banner-linkHolder>li {
    width: 80%;
    margin: 0 auto 1em;
  }
}
