@charset "UTF-8";
/* @import "_vars.scss"; */
@import url("https://use.fontawesome.com/releases/v5.0.6/css/all.css");
@import url("https://fonts.googleapis.com/css?family=Suez+One&display=swap");

/* font */
/* width */
a:link,
a:visited,
a:hover {
  color: #00b0f0;
  text-decoration: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
audio,
canvas,
video {
  display: block;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

iframe {
  border: none;
}

a {
  text-decoration: none;
  color: #000;
}

a:visited,
a:hover {
  color: #000;
  text-decoration: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

p {
  margin: 0;
}

ul {
  margin: 0;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

img {
  max-width: inherit;
}

.section-contents {
  width: 976px;
  padding: 0;
  display: block;
  margin: auto;
}

@media all and (max-width: 974px) {
  .section-contents {
    width: 100%;
    padding: 0 30px;
  }
}

.b-m10 {
  margin-bottom: 16px;
}

.invisible {
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -7px, 0);
    transform: translate3d(0, -7px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -7px, 0);
    transform: translate3d(0, -7px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

::-moz-selection,
::-moz-selection {
  background: #397de0;
  color: #fff;
}

::selection,
::-moz-selection {
  background: #397de0;
  color: #fff;
}

br._sp,
br.tab {
  display: none;
}

#site-header {
  position: fixed;
  width: 100%;
  padding-bottom: 15px;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  z-index: 99;
}

#site-header #nav-drawer {
  display: none;
}

#site-header .head__contents h1 {
  text-align: center;
  line-height: 0;
  padding-top: 20px;
  margin-bottom: 8px;
}

#site-header .head__contents h1 img {
  width: 318px;
  vertical-align: bottom;
}

#site-header .head__contents #main-nav {
  display: table;
  margin: auto;
  padding: 10px 0 0;
}

#site-header .head__contents #main-nav li {
  display: inline-block;
  margin-right: 3em;
}

#site-header .head__contents #main-nav li a {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}

#site-header .head__contents #main-nav li a:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 280ms ease-in-out;
  transition: all 280ms ease-in-out;
  width: 0;
}

#site-header .head__contents #main-nav li a:hover:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-color: #fff;
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
  width: 100%;
}

#site-header .head__contents #main-nav li a.current:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-color: #fff;
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
  width: 100%;
}

#site-header .head__contents #main-nav li a.current:before {
  bottom: auto;
  top: 0;
  width: 100%;
}

#site-header .head__contents #main-nav li:last-child {
  margin-right: 0;
}

#site-header .head__sub__contents {
  position: absolute;
  right: 1em;
  top: 14px;
}

#site-header .head__sub__contents ul {
  display: table;
  position: relative;
}

#site-header .head__sub__contents ul li {
  display: inline-table;
  margin-left: 1em;
  padding: 0.2em 1em;
}

#site-header .head__sub__contents ul li .back {
  width: 145px;
  height: 24px;
}

#site-header .head__sub__contents ul li .back .button_base {
  margin: 0;
  border: 0;
  font-size: 18px;
  position: relative;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -100px;
  width: 185px;
  height: 34px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

#site-header .head__sub__contents ul li .back .button_base:hover {
  cursor: pointer;
}

#site-header .head__sub__contents ul li .back .button_base.to-mail {
  width: 120px;
}

#site-header .head__sub__contents ul li .back .button_base.b03_skewed_slide_in {
  overflow: hidden;
  border: #fff solid 1px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}

#site-header .head__sub__contents ul li .back .button_base.b03_skewed_slide_in span {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 7px;
  letter-spacing: 0.12em;
  display: block;
}

#site-header .head__sub__contents ul li .back .button_base.b03_skewed_slide_in span:nth-child(1) {
  color: #fff;
  background-color: none;
}

#site-header .head__sub__contents ul li .back .button_base.b03_skewed_slide_in span:nth-child(2) {
  background-color: #fff;
  width: 230px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform: translate(-250px, 0px) skewX(-30deg);
  -webkit-transform: translate(-250px, 0px) skewX(-30deg);
  -moz-transform: translate(-250px, 0px) skewX(-30deg);
}

#site-header .head__sub__contents ul li .back .button_base.b03_skewed_slide_in span:nth-child(3) {
  color: #397de0;
  left: -200px;
  transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  font-weight: 500;
}

#site-header .head__sub__contents ul li .back .button_base.b03_skewed_slide_in:hover span:nth-child(2) {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-15px, 0px) skewX(-30deg);
  -webkit-transform: translate(-15px, 0px) skewX(-30deg);
  -moz-transform: translate(-15px, 0px) skewX(-30deg);
}

#site-header .head__sub__contents ul li .back .button_base.b03_skewed_slide_in:hover span:nth-child(3) {
  left: 0px;
  transition: left 0.30000000000000004s ease;
  -webkit-transition: left 0.30000000000000004s ease;
  -moz-transition: left 0.30000000000000004s ease;
}

#site-header.fixed {
  background: #397de0;
  border-bottom: 2px solid #fff;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

#top_main {
  position: relative;
}

#top_main .main-slid {
  height: 50vh;
}

#top_main .main-slid .main-slid-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 50vh;
}

#top_main .main-slid .main-slid-item.slid-1 {
  background-image: url(../img/top_main-1.jpg);
}

#top_main .main-slid .main-slid-item.slid-2 {
  background-image: url(../img/top_main-2.jpg);
}

#top_main .main-slid .main-slid-item.slid-3 {
  background-image: url(../img/top_main-3.jpg);
}

#top_main .main-slid .main-slid-item.slid-4 {
  background-image: url(../img/top_main-4.jpg);
}

#top_main .main-slid .main-slid-item.slid-5 {
  background-image: url(../img/top_main-5.jpg);
}

#top_main .main-slid.page-company .slid-1 {
  background-image: url(../img/company_main.jpg);
}

#top_main .main-slid._equalfoot .slid-1 {
  background-image: url(../img/equalfoot_main.jpg);
}

#top_main .main-slid.page_recruit .slid-1 {
  background-image: url(../img/recruit_back.jpg);
}

#top_main .top_main__contnts {
  position: absolute;
  bottom: 0;
  color: #fff;
  height: 235px;
  margin: auto;
  padding-top: 82px;
  top: 0;
}

#top_main .top_main__contnts.page_management {
  height: 302px;
}

#top_main .top_main__contnts._pc-rental {
  height: 175px;
}

#top_main .top_main__contnts.page_recruit {
  height: 255px;
}

#top_main .top_main__contnts h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.4em;
}

#top_main .top_main__contnts h2 span {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-weight: 400;
}

#top_main .top_main__contnts h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1em;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4em;
}

#top_main .top_main__contnts h3 span._management {
  margin-top: 15px;
  display: block;
}

#top_main a {
  padding-top: 60px;
}

#top_main a span {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#top_main a span:before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@supports (-ms-ime-align: auto) {
  #top_main .main-slid .main-slid-item {
    background-attachment: scroll;
  }
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

#page__anchor .page__anchor__contents ul {
  display: table;
  width: 100%;
  margin: 50px auto 60px;
}

#page__anchor .page__anchor__contents ul li {
  display: table-cell;
  width: 14.28571%;
  width: calc(100% / 7);
}

#page__anchor .page__anchor__contents ul li a {
  text-align: center;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  color: #000;
}

#page__anchor .page__anchor__contents ul li a span {
  display: block;
  margin-top: 0.8em;
  font-weight: 300;
}

#service .service__maincontents._management {
  position: relative;
}

#service .service__maincontents._management:after {
  content: "";
  border-left: 2px solid #fff;
  height: 109px;
  display: block;
  position: absolute;
  margin: auto;
  left: -50%;
  z-index: 9;
  right: -50%;
  width: 2px;
}

#service .service__maincontents__item {
  width: 100%;
  display: block;
  padding: 80px 0;
  zoom: 1;
}

#service .service__maincontents__item:before {
  content: " ";
  display: table;
}

#service .service__maincontents__item:after {
  content: " ";
  display: table;
  clear: both;
}

#service .service__maincontents__item:last-child {
  padding-bottom: 160px;
}

#service .service__maincontents__item .service__maincontents__item__text,
#service .service__maincontents__item img {
  float: left;
}

#service .service__maincontents__item .service__maincontents__item__text {
  max-width: 600px;
}

#service .service__maincontents__item .service__maincontents__item__text h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #397de0;
  margin-bottom: 0.5em;
}

#service .service__maincontents__item .service__maincontents__item__text p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

#service .service__maincontents__item .service__maincontents__item__text ul {
  margin-top: 1.5em;
}

#service .service__maincontents__item .service__maincontents__item__text ul li {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

#service .service__maincontents__item .service__maincontents__item__text ul li:before {
  content: "※";
  font-size: 80%;
  display: inline;
  margin-right: 8px;
}

#service .service__maincontents__item .service__maincontents__item__text._management p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1em;
  font-weight: 300;
  line-height: 1.8em;
}

#service .service__maincontents__item .service__maincontents__item__text._management span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 10px;
}

#service .service__maincontents__item .service__maincontents__item__text._management span.last {
  margin-top: 0;
}

#service .service__maincontents__item .service__maincontents__item__text._management ul {
  margin-bottom: 15px;
}

#service .service__maincontents__item .service__maincontents__item__text._management ul li {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1em;
  font-weight: 300;
  line-height: 1.8em;
}

#service .service__maincontents__item .service__maincontents__item__text._management ul li:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
}

#service .service__maincontents__item.first .service__maincontents__item__text {
  float: right;
}

#service .service__maincontents__item.first._management-box img {
  margin-left: 50px;
  margin-top: 40px;
}

#service .service__maincontents__item.first._pc-rental .service__maincontents__item__text h4 br.tab {
  display: none;
}

#service .service__maincontents__item.second .service__maincontents__item__text {
  margin-left: 80px;
}

#service .service__maincontents__item.second img {
  margin-left: 110px;
}

#service .service__maincontents__item.second._management-box .service__maincontents__item__text {
  margin-left: 0;
}

#service .service__maincontents__item.second._management-box h4 {
  margin-bottom: 30px;
}

#service .service__maincontents__item.second._management-box img {
  margin-left: 0;
  float: right;
}

#service .service__maincontents__item.second._pc-rental .service__maincontents__item__text {
  margin: 0;
}

#service .service__maincontents__item.second._pc-rental .service__maincontents__item__text h4 br.tab {
  display: none;
}

#service .service__maincontents__item.second._pc-rental img {
  margin: 0;
  margin-left: 50px;
}

#service .service__maincontents__item.third .service__maincontents__item__text {
  float: right;
  max-width: 700px;
}

#service .service__maincontents__item.third._management-box {
  padding-bottom: 110px;
}

#service .service__maincontents__item.third._management-box img {
  margin-top: 50px;
}

#service .service__maincontents__item.third._pc-rental .service__maincontents__item__text {
  max-width: 600px;
}

#service .service__maincontents__item.fifth .service__maincontents__item__text {
  padding-left: 80px;
}

#service .service__bottomcontents {
  background: #397de0;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

#service .service__bottomcontents p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
}

#service .service__bottomcontents p._pc-rental {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

#service .service__bottomcontents p._pc-rental span {
  display: block;
}

#service .service__bottomcontents p span {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  margin-bottom: 15px;
}

#service .service__bottomcontents p span.en {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-weight: 400;
}

#service .service__bottomcontents._management {
  position: relative;
  overflow: hidden;
  padding: 220px 0 150px;
}

#service .service__bottomcontents._management:before {
  content: "";
  width: 120%;
  height: 110px;
  display: block;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat top left/50% 100%, -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat top right/50% 100%;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top left/50% 100%, linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top right/50% 100%;
  position: absolute;
  top: 0;
  margin: auto;
  left: -50%;
  right: -50%;
}

#service .service__bottomcontents._management span {
  color: #fff;
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
}

#service .service__bottomcontents._management .service__bottomcontents__text {
  display: table;
  margin-top: 30px;
  width: 100%;
}

#service .service__bottomcontents._management .service__bottomcontents__text img {
  float: left;
}

#service .service__bottomcontents._management .service__bottomcontents__text p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1em;
  font-weight: 300;
  line-height: 1.8em;
  color: #fff;
  text-align: left;
  max-width: 600px;
  float: right;
}

@media all and (max-width: 639px) {
  #service .service__maincontents__item .service__maincontents__item__text h4 {
    font-size: 25px;
  }
}

@media all and (max-width: 639px) {
  #service .service__bottomcontents p span {
    font-size: 25px;
  }
}

@media all and (max-width: 639px) {
  #service .service__bottomcontents._management span {
    font-size: 25px;
  }
}

#price {
  margin-top: 170px;
}

#price .price__contents__top {
  margin-bottom: 50px;
  width: 100%;
  display: table;
}

#price .price__contents__top .price__contents__inner {
  float: left;
}

#price .price__contents__top .price__contents__inner.left h4 {
  color: #397de0;
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
}

#price .price__contents__top .price__contents__inner.left h4 span {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-weight: 400;
}

#price .price__contents__top .price__contents__inner.left h4 br.tab {
  display: none;
}

#price .price__contents__top .price__contents__inner.right {
  width: 641px;
  float: right;
}

#price .price__contents__top .price__contents__inner.right ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#price .price__contents__top .price__contents__inner.right ul li {
  display: inline-block;
  width: 22%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border: 1px solid #397de0;
  color: #397de0;
  text-align: center;
  margin: 0 3.1% 15px 0;
  padding: 0.4em 0;
}

#price .price__contents__top .price__contents__inner.right ul li:nth-child(4),
#price .price__contents__top .price__contents__inner.right ul li:last-child {
  margin-right: 0;
}

#price .price__contents__top .price__contents__inner.right ul li.font_mini {
  font-size: 70%;
  padding-top: 0.9em;
}

#price .price__contents__top .price__contents__inner.right .price__contents__inner__orage {
  text-align: center;
  display: block;
  background: #ff8000;
  padding: 0.4em 0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

#price .price__contents__top .price__contents__inner.right .attention {
  text-align: right;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

#price .price__contents__top .price__contents__inner._management {
  float: none;
}

#price .price__contents__top .price__contents__inner._management h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #397de0;
  text-align: center;
}

#price .price__contents__top .price__contents__inner._management h4 span {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-weight: 400;
}

#price .price__contents__middle {
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#price .price__contents__middle .price__contents__middle__item {
  display: inline-block;
  width: 479px;
  background: #e9e9e9;
  padding: 15px;
}

#price .price__contents__middle .price__contents__middle__item .price__contents__middle__item__title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: #397de0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

#price .price__contents__middle .price__contents__middle__item .price__contents__middle__item__text {
  background: #fff;
  padding: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

#price .price__contents__middle .price__contents__middle__item .attention {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-top: 20px;
}

#price .price__contents__middle .price__contents__middle__item .attention span {
  display: block;
}

#price .price__contents__middle .price__contents__middle__item.left {
  margin-right: 18px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text {
  font-size: 0;
}

#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul {
  display: table;
}

#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul li {
  margin-bottom: 0.3em;
  display: inline-block;
  letter-spacing: 0.05em;
  font-size: 14px;
}

#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul li:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
}

#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul li:last-child {
  color: #ff8000;
}

#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul li:last-child:before {
  display: none;
}

#price .price__contents__middle .price__contents__middle__item.right {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#price .price__contents__middle .price__contents__middle__item._management .price__contents__middle__item__text ul li:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
}

#price .price__contents__middle .price__contents__middle__item._management .price__contents__middle__item__text ul li:last-child {
  color: #000;
}

#price .price__contents__middle .price__contents__middle__item._management .price__contents__middle__item__text ul li:last-child:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
}

#price .price__contents__middle .price__contents__middle__item._management:nth-of-type(n + 3) {
  margin-top: 15px;
}

#price .price__contents__bottom {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#price .price__contents__bottom .price__contents__middle__item {
  margin-right: 20px;
  background: #e9e9e9;
  padding: 15px;
  width: 256px;
  float: left;
}

#price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: #397de0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

#price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__title br.tab {
  display: none;
}

#price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__title .en {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-weight: 500;
  letter-spacing: 0.05em;
}

#price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__text {
  background: #fff;
  padding: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.3em;
  font-weight: 300;
}

#price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__text ul li {
  margin-bottom: 0.6em;
  letter-spacing: 0.05em;
  padding-left: 15px;
}

#price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__text ul li:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
  margin-left: -15px;
}

#price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__text ul li:last-child {
  margin-bottom: 0;
}

#price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__text span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: block;
}

#price .price__contents__bottom .price__contents__middle__item:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#price .price__contents__bottom .price__contents__middle__item.cms {
  margin-right: 0;
  width: 424px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

#price .rwd {
  background: #e9e9e9;
  margin-top: 20px;
  padding: 15px 0;
}

#price .rwd .rwd-contents {
  display: table;
  margin: auto;
}

#price .rwd .rwd-contents .rwd-contents__tab {
  display: inline-block;
}

#price .rwd .rwd-contents p {
  display: inline-block;
  vertical-align: middle;
  color: #ff8000;
  margin-right: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

#price .rwd .rwd-contents p.rwd_pc:after {
  content: url(../img/rwd_pc-after.svg);
  width: 40px;
  height: 20px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

#price .rwd .rwd-contents p.rwd_price {
  margin-right: 0;
  margin-left: 10px;
  background: #fff;
  padding: 10px 25px;
}

#price .rwd .rwd-contents p.rwd_price .en {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 49px;
  letter-spacing: initial;
}

#price .rwd .rwd-contents p.rwd_price .tax {
  font-size: 14px;
}

#price .rwd .rwd-contents p.rwd_price .option {
  background: #ff8000;
  color: #fff;
  padding: 0 8px;
  margin-right: 6px;
}

#price .rwd .rwd-contents p img {
  vertical-align: middle;
  margin-right: 8px;
}

/*#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul li:nth-child(odd) {
 width: 56%;
}
#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul li:nth-child(even) {
 width: 44%;
}*/
@media all and (max-width: 639px) {
  #price .price__contents__top .price__contents__inner.left h4 {
    font-size: 25px;
  }
}

@media all and (max-width: 639px) {
  #price .price__contents__top .price__contents__inner._management h4 {
    font-size: 25px;
  }
}

#pc-price {
  margin-top: 170px;
}

#pc-price h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #397de0;
  text-align: center;
  margin-bottom: 80px;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item {
  display: inline-block;
  width: 305px;
  margin-right: 30px;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents {
  text-align: center;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents_top img {
  display: block;
  margin: 0 auto 15px;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents_top span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board {
  border: 1px solid #397de0;
  margin-top: 30px;
  padding: 15px 0;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board .price_board_main {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
  letter-spacing: 0em;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board .price_board_main:before {
  content: "月々";
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: inline-block;
  letter-spacing: 0em;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  padding-top: 8px;
  vertical-align: text-bottom;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board .price_board_main .en {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 45px;
  font-size: 2.8125rem;
  letter-spacing: 0.1em;
  letter-spacing: 0em;
  font-family: "Roboto Condensed", "Noto Sans Japanese";
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board .price_board_main .tax {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board.total {
  color: #397de0;
  border-color: #397de0;
  margin-top: 0;
  border-top: none;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board.total .price_board_main:before {
  border-color: #397de0;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board.multiple_price {
  display: none;
}

#pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item:last-child {
  margin-right: 0;
}

#pc-price .price__contents_pc-rental__bottom {
  background: #ff8000;
  margin-top: 50px;
  padding: 30px 0;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list {
  display: table;
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li {
  display: inline-block;
  width: 305px;
  margin-right: 30px;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 31px;
  font-size: 1.9375rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  background-image: url(../img/price__contents_pc-rental__bottom__title-after.svg);
  color: #ff8000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: center right;
  position: relative;
  padding: 40px 0 29px 15px;
  line-height: 1.3em;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__item .multiple_price {
  text-align: center;
  position: relative;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__item .multiple_price:before {
  content: "";
  border-right: 15px solid transparent;
  border-bottom: 12.6025px solid #ff8000;
  border-left: 15px solid transparent;
  position: absolute;
  top: -42px;
  margin: auto;
  left: 0;
  width: 15px;
  right: 0;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__item .multiple_price span.sub {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: #fff;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__item .multiple_price .multiple_price_brck {
  background: #fff;
  color: #ff8000;
  padding: 15px 0;
  margin-top: 10px;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__item .multiple_price .multiple_price_brck .price_board_main {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
  letter-spacing: 0em;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__item .multiple_price .multiple_price_brck .price_board_main:before {
  content: "月々";
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: inline-block;
  letter-spacing: 0em;
  display: inline-block;
  border: 1px solid #ff8000;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  padding-top: 8px;
  vertical-align: text-bottom;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__item .multiple_price .multiple_price_brck .price_board_main .en {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 45px;
  font-size: 2.8125rem;
  letter-spacing: 0.1em;
  letter-spacing: 0em;
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  color: #ff8000;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__item .multiple_price .multiple_price_brck .price_board_main .tax {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #ff8000;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__item .multiple_price .multiple_price_after {
  background: #397de0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  padding: 0.1em 0.5em;
  float: right;
  margin-top: 5px;
}

#pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li:last-child {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  #pc-price h4 {
    font-size: 25px;
  }
}

#works {
  margin-top: 170px;
}

#works h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #397de0;
  text-align: center;
  margin-bottom: 80px;
}

#works h4 .en {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-weight: 400;
}

#works .works__contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

#works .works__contents ul li {
  display: inline-block;
  width: 32%;
  margin-right: 2%;
}

#works .works__contents ul li:last-child {
  margin-right: 0;
}

#works .works__contents ul li span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19px;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  color: #397de0;
  display: block;
  text-align: center;
  font-weight: 500;
}

#works .works__contents ul li img {
  width: 100%;
  margin: 30px auto;
}

#works .works__contents ul li a {
  display: block;
  border: 1px solid #ff8000;
}

#works .works__contents ul li a p {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #ff8000;
  padding: 1em 0;
}

#works .works__contents ul li .back {
  width: 100%;
  height: auto;
  position: relative;
}

#works .works__contents ul li .back .button_base {
  margin: 0;
  border: 0;
  font-size: 18px;
  position: relative;
  top: 50%;
  left: 0;
  margin-top: -25px;
  width: 100%;
  height: 44px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

#works .works__contents ul li .back .button_base:hover {
  cursor: pointer;
}

#works .works__contents ul li .back .button_base.to-mail {
  width: 120px;
}

#works .works__contents ul li .back .button_base.b03_skewed_slide_in {
  overflow: hidden;
  border: #ff8000 solid 1px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1em;
}

#works .works__contents ul li .back .button_base.b03_skewed_slide_in span {
  font-size: 12px;
  position: absolute;
  text-align: center;
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 12px;
  letter-spacing: 0.12em;
  display: block;
}

#works .works__contents ul li .back .button_base.b03_skewed_slide_in span:nth-child(1) {
  color: #ff8000;
  background-color: none;
}

#works .works__contents ul li .back .button_base.b03_skewed_slide_in span:nth-child(2) {
  background-color: #ff8000;
  width: 120%;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform: translate(-250px, 0px) skewX(-30deg);
  -webkit-transform: translate(-250px, 0px) skewX(-30deg);
  -moz-transform: translate(-250px, 0px) skewX(-30deg);
  left: -140px;
}

#works .works__contents ul li .back .button_base.b03_skewed_slide_in span:nth-child(3) {
  color: #fff;
  left: -250px;
  transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  font-weight: 500;
}

#works .works__contents ul li .back .button_base.b03_skewed_slide_in:hover span:nth-child(2) {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-15px, 0px) skewX(-30deg);
  -webkit-transform: translate(-15px, 0px) skewX(-30deg);
  -moz-transform: translate(-15px, 0px) skewX(-30deg);
  left: 0;
}

#works .works__contents ul li .back .button_base.b03_skewed_slide_in:hover span:nth-child(3) {
  left: 0px;
  transition: left 0.30000000000000004s ease;
  -webkit-transition: left 0.30000000000000004s ease;
  -moz-transition: left 0.30000000000000004s ease;
}

#works .works__contents ul li:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

#works .works__contents ul li:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#works .works__contents ul li:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@media all and (max-width: 639px) {
  #works h4 {
    font-size: 25px;
  }
}

#flow {
  background: #e9e9e9;
  margin-top: 170px;
  padding: 100px 0;
}

#flow h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#flow .flow__contents .flow__contents__slide {
  width: 100%;
  margin: auto;
  position: relative;
}

#flow .flow__contents .flow__contents__slide .slide-arrow {
  width: 22px;
  position: absolute;
  z-index: 9;
  margin: auto;
  top: 0;
  bottom: 0;
  cursor: pointer;
}

#flow .flow__contents .flow__contents__slide .slide-arrow.next-arrow {
  right: 37px;
}

#flow .flow__contents .flow__contents__slide .slide-arrow.prev-arrow {
  left: 37px;
}

#flow .flow__contents .flow__contents__slide .slide-dots {
  text-align: center;
}

#flow .flow__contents .flow__contents__slide .slide-dots li {
  display: inline-block;
  margin: 0 15px;
}

#flow .flow__contents .flow__contents__slide .slide-dots li button {
  position: relative;
  text-indent: -9999px;
}

#flow .flow__contents .flow__contents__slide .slide-dots li button:before {
  content: "○";
  font-size: 20px;
  text-indent: 0px;
  position: absolute;
  top: 0;
  left: 0;
}

#flow .flow__contents .flow__contents__slide .slide-dots li.slick-active button:before {
  content: "●";
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents {
  width: 838px;
  height: 380px;
  margin: auto;
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__left {
  float: left;
  width: 50%;
  height: 380px;
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__left img {
  max-width: auto;
  height: 100%;
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right {
  width: 50%;
  background: #fff;
  float: right;
  height: 380px;
  padding: 30px;
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span {
  font-family: "Noto Sans Japanese";
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.01em;
  color: #397de0;
  margin-bottom: 15px;
  display: block;
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span:before {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  margin-right: 8px;
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span.no-1:before {
  content: "1";
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span.no-2:before {
  content: "2";
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span.no-3:before {
  content: "3";
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span.no-4:before {
  content: "4";
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span.no-5:before {
  content: "5";
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span.no-6:before {
  content: "6";
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span.no-7:before {
  content: "7";
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span.attention {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-top: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right .slide__item__contents__right__list {
  display: table;
  margin: 10px 0;
  width: 100%;
  background: #e9e9e9;
  padding: 10px;
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right .slide__item__contents__right__list li {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  display: inline-block;
  margin-right: 1.5em;
}

#flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right .slide__item__contents__right__list li:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 3px;
}

@media all and (max-width: 639px) {
  #flow h4 {
    font-size: 25px;
  }
}

#voc {
  margin-top: 170px;
}

#voc h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#voc .voc__contents .voc__contents__list {
  width: 855px;
  margin: auto;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item {
  margin-bottom: 100px;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item:last-child {
  margin-bottom: 0;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner {
  display: table;
  width: 100%;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__left {
  float: left;
  width: 278px;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__left img {
  display: block;
  margin: auto;
  width: 232px;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__left .voc_name {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 25px;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__left .voc_name span {
  font-size: 13px;
  margin-right: 1em;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__left .voc_name span.sub {
  display: block;
  margin-right: 0;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__right {
  float: right;
  width: 558px;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__right .title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19px;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  color: #397de0;
  margin-bottom: 1.5em;
  font-weight: 500;
}

#voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__right .voc__contents__list__item__inner__right__message {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

@media all and (max-width: 639px) {
  #voc h4 {
    font-size: 25px;
  }
}

#lineup {
  margin-top: 170px;
}

#lineup h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#lineup .lineup-contents {
  width: 100%;
  display: table;
}

#lineup .lineup-contents .tab_wrap {
  margin: 0 auto;
}

#lineup .lineup-contents input[type="radio"] {
  display: none;
}

#lineup .lineup-contents .tab_area {
  font-size: 0;
  width: 728px;
  float: right;
  margin-bottom: 20px;
}

#lineup .lineup-contents label {
  width: 33.33333%;
  width: calc(99.9% / 3);
  display: inline-block;
  padding: 12px 0;
  color: #e9e9e9;
  border: 1px solid #e9e9e9;
  text-align: center;
  cursor: pointer;
  -webkit-transition: ease 0.2s opacity;
  transition: ease 0.2s opacity;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

#lineup .lineup-contents label:hover {
  opacity: 0.5;
}

#lineup .lineup-contents .lineup-contents__table {
  display: table;
  width: 100%;
  border: 1px solid #397de0;
}

#lineup .lineup-contents .lineup-contents__table .panel_area {
  background: #fff;
  width: 100%;
}

#lineup .lineup-contents .lineup-contents__table table {
  width: 100%;
}

#lineup .lineup-contents .lineup-contents__table table tbody {
  width: 100%;
}

#lineup .lineup-contents .lineup-contents__table table tbody tr {
  width: 100%;
}

#lineup .lineup-contents .lineup-contents__table table tbody tr:nth-child(even) {
  background: #e9e9e9;
}

#lineup .lineup-contents .lineup-contents__table table tbody tr th,
#lineup .lineup-contents .lineup-contents__table table tbody tr td {
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 3px 15px;
}

#lineup .lineup-contents .lineup-contents__table table tbody tr th.en {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-weight: 400;
  line-height: 27px;
}

#lineup .lineup-contents .lineup-contents__table table tbody tr td {
  border-left: 1px solid #397de0;
  width: 728px;
}

#lineup .lineup-contents .lineup-contents__table table tbody tr td.en {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-weight: 400;
  line-height: 27px;
}

#lineup .lineup-contents .lineup-contents__table table tbody tr td.blue {
  color: #397de0;
}

#lineup .lineup-contents .lineup-contents__table table tbody tr td.blue span {
  display: block;
  font-size: 14px;
  color: #000;
}

#lineup .lineup-contents .lineup-contents__table table tbody tr td .option {
  font-size: 12px;
  margin-left: 1em;
}

#lineup .lineup-contents .lineup-contents__table .tab_panel {
  width: 100%;
  display: none;
}

#lineup .lineup-contents .lineup-contents__table .tab_panel ul {
  border-right: none;
}

#lineup .lineup-contents .lineup-contents__table .tab_panel ul li {
  text-align: left;
}

#lineup .lineup-contents #tab1:checked~.tab_area .tab1_label {
  background: #397de0;
  color: #fff;
  border-color: #397de0;
}

#lineup .lineup-contents #tab1:checked~.tab_area .tab1_label:after {
  content: "";
  border-top: 10px solid #397de0;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  width: 10px;
  bottom: -10px;
}

#lineup .lineup-contents #tab1:checked~.lineup-contents__table .panel_area #panel1 {
  display: block;
}

#lineup .lineup-contents #tab2:checked~.tab_area .tab2_label {
  background: #397de0;
  color: #fff;
  border-color: #397de0;
}

#lineup .lineup-contents #tab2:checked~.tab_area .tab2_label:after {
  content: "";
  border-top: 10px solid #397de0;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  width: 10px;
  bottom: -10px;
}

#lineup .lineup-contents #tab2:checked~.lineup-contents__table .panel_area #panel2 {
  display: block;
}

#lineup .lineup-contents #tab3:checked~.tab_area .tab3_label {
  background: #397de0;
  color: #fff;
  border-color: #397de0;
}

#lineup .lineup-contents #tab3:checked~.tab_area .tab3_label:after {
  content: "";
  border-top: 10px solid #397de0;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  width: 10px;
  bottom: -10px;
}

#lineup .lineup-contents #tab3:checked~.lineup-contents__table .panel_area #panel3 {
  display: block;
}

@media all and (max-width: 639px) {
  #lineup h4 {
    font-size: 25px;
  }
}

#media {
  margin-top: 170px;
}

#media h4 {
  font-size: 40px;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#media .innerB {
  display: table;
  width: 100%;
}

#media .innerB .left,
#media .innerB .right {
  width: 48%;
  float: left;
}

#media .innerB .left img,
#media .innerB .right img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

#media .innerB .left p {
  font-weight: 400;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

#media .innerB .right {
  margin-left: 4%;
}

#media .innerB .right p {
  font-weight: 400;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

@media all and (max-width: 639px) {
  #media h4 {
    font-size: 25px;
  }
}

@media all and (max-width: 639px) {
  #media .innerB {
    display: block;
  }
}

@media all and (max-width: 639px) {

  #media .innerB .left,
  #media .innerB .right {
    width: 100%;
    float: none;
  }
}

@media all and (max-width: 639px) {
  #media .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}

#faq {
  margin-top: 170px;
}

#faq h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#faq .faq__contents .accbox {
  margin: 2em 0;
  padding: 0;
  width: 100%;
}

#faq .faq__contents .accbox label {
  display: block;
  margin: 1.5px 0;
  padding: 11px 12px;
  color: #397de0;
  font-weight: bold;
  border: 1px solid #397de0;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19pxpx;
  font-size: 1.1875pxrem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

#faq .faq__contents .accbox label:hover {
  background: #397de0;
  color: #fff;
}

#faq .faq__contents .accbox input {
  display: none;
}

#faq .faq__contents .accbox .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#faq .cssacc:checked+.accshow {
  height: auto;
  padding: 30px;
  background: #e9e9e9;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16pxpx;
  font-size: 1pxrem;
  letter-spacing: 0.1em;
  opacity: 1;
  font-weight: 300;
}

#faq .cssacc:checked+.accshow ul {
  margin: 0.5em 0;
  width: 100%;
}

#faq .cssacc:checked+.accshow ul li:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  #faq h4 {
    font-size: 25px;
  }
}

#about {
  margin-top: 170px;
}

#about h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#about .about__contents {
  display: table;
  width: 100%;
}

#about .about__contents .about__contents__left {
  float: left;
  width: 279px;
}

#about .about__contents .about__contents__left img {
  width: 80%;
  display: block;
  margin: auto;
}

#about .about__contents .about__contents__right {
  float: right;
  width: 624px;
}

#about .about__contents .about__contents__right .about__contents__right__inner {
  width: 100%;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr {
  border-bottom: 1px solid #e9e9e9;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr th,
#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td {
  padding: 0.5em 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr th {
  width: 145px;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td {
  padding-left: 1em;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.address span {
  margin-left: 2em;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar {
  font-size: 14px;
  font-size: 0.875rem;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar ul {
  display: table;
  margin: 0.7em 0;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar ul li {
  display: inline-block;
  margin-right: 1.7em;
  color: #ff8000;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar ul li:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area {
  width: 100%;
  display: table;
  margin-top: 10px;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar {
  width: 45%;
  float: left;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar:last-child {
  margin-left: 10%;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_head {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body {
  width: 100%;
  margin-bottom: 10px;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table {
  width: 100%;
  border: 1px solid #4d4d4d;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr {
  border-bottom: 1px solid #4d4d4d;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr th,
#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr td {
  padding: 0.3em 0;
  text-align: center;
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 12px;
  font-size: 0.75rem;
  color: #4d4d4d;
  font-weight: 600;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr th.sun,
#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr td.sun {
  color: #ff0000;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr th.sat,
#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr td.sat {
  color: #0071b1;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr th.off,
#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr td.off {
  color: #ff0000;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr th {
  background: #e9e9e9;
}

#about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar .calendar_body table tbody tr td {
  border-left: 1px solid #4d4d4d;
}

@media all and (max-width: 639px) {
  #about h4 {
    font-size: 25px;
  }
}

#greeting {
  margin-top: 170px;
  background: #e9e9e9;
  padding: 100px 0;
}

#greeting h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#greeting .greeting__contents {
  width: 100%;
  background: #fff;
  padding: 90px;
}

#greeting .greeting__contents .greeting__contents__main {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.8em;
}

#greeting .greeting__contents .greeting__contents__signature {
  display: block;
  text-align: right;
  margin: 30px 0;
}

#greeting .greeting__contents .greeting__contents__signature span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-right: 2em;
}

#greeting .greeting__contents .greeting__contents__signature .back {
  width: 205px;
  height: 24px;
  display: inline-block;
}

#greeting .greeting__contents .greeting__contents__signature .back .button_base {
  margin: 0;
  border: 0;
  font-size: 18px;
  position: relative;
  top: 50%;
  left: 0;
  margin-left: 0;
  width: 185px;
  height: 34px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

#greeting .greeting__contents .greeting__contents__signature .back .button_base:hover {
  cursor: pointer;
}

#greeting .greeting__contents .greeting__contents__signature .back .button_base.to-mail {
  width: 120px;
}

#greeting .greeting__contents .greeting__contents__signature .back .button_base.b03_skewed_slide_in {
  overflow: hidden;
  border: #397de0 solid 1px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}

#greeting .greeting__contents .greeting__contents__signature .back .button_base.b03_skewed_slide_in span {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 7px;
  letter-spacing: 0.12em;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#greeting .greeting__contents .greeting__contents__signature .back .button_base.b03_skewed_slide_in span:nth-child(1) {
  color: #397de0;
  background-color: #fff;
}

#greeting .greeting__contents .greeting__contents__signature .back .button_base.b03_skewed_slide_in span:nth-child(2) {
  background-color: #397de0;
  width: 230px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform: translate(-250px, 0px) skewX(-30deg);
  -webkit-transform: translate(-250px, 0px) skewX(-30deg);
  -moz-transform: translate(-250px, 0px) skewX(-30deg);
}

#greeting .greeting__contents .greeting__contents__signature .back .button_base.b03_skewed_slide_in span:nth-child(3) {
  color: #fff;
  left: -200px;
  transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  font-weight: 500;
}

#greeting .greeting__contents .greeting__contents__signature .back .button_base.b03_skewed_slide_in:hover span:nth-child(2) {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-15px, 0px) skewX(-30deg);
  -webkit-transform: translate(-15px, 0px) skewX(-30deg);
  -moz-transform: translate(-15px, 0px) skewX(-30deg);
}

#greeting .greeting__contents .greeting__contents__signature .back .button_base.b03_skewed_slide_in:hover span:nth-child(3) {
  left: 0px;
  transition: left 0.30000000000000004s ease;
  -webkit-transition: left 0.30000000000000004s ease;
  -moz-transition: left 0.30000000000000004s ease;
}

#greeting .greeting__contents .greeting__contents__bottom {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #e9e9e9;
  font-weight: 400;
}

#greeting .greeting__contents .greeting__contents__bottom span {
  display: block;
  line-height: 1.8em;
}

@media all and (max-width: 639px) {
  #greeting h4 {
    font-size: 25px;
  }
}

#performance {
  padding: 130px 0;
  min-height: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/performance-back.svg);
}

#performance h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#performance .performance__contents {
  display: table;
  width: 100%;
}

#performance .performance__contents .performance__contents__item {
  width: 50%;
  float: left;
  padding-right: 15px;
  margin-bottom: 50px;
}

#performance .performance__contents .performance__contents__item.rigth {
  padding-right: 0;
  padding-left: 15px;
}

#performance .performance__contents .performance__contents__item:last-child {
  margin-bottom: 0;
}

#performance .performance__contents .performance__contents__item h5 {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
  background: #397de0;
  color: #fff;
  width: 314px;
  margin: 0 auto -23px;
  position: relative;
  z-index: 9;
  line-height: 1.9em;
}

#performance .performance__contents .performance__contents__item h5:after {
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  border-left: 20px solid #397de0;
  content: "";
  width: 20px;
  position: absolute;
  height: 20px;
  right: -20px;
}

#performance .performance__contents .performance__contents__item h5:before {
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  border-right: 20px solid #397de0;
  content: "";
  width: 20px;
  position: absolute;
  height: 20px;
  left: -20px;
}

#performance .performance__contents .performance__contents__item .performance__contents__item__inner {
  width: 100%;
  margin: auto;
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid #397de0;
  padding: 60px 15px 15px;
}

#performance .performance__contents .performance__contents__item .performance__contents__item__inner img {
  display: block;
  width: 100%;
  height: auto;
}

#performance .performance__contents .performance__contents__item .performance__contents__item__inner img.SP_graph {
  display: none;
}

#performance .performance__contents .performance__contents__item .performance__contents__item__inner .performance__contents__item__inner__text {
  color: #ff8000;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50px;
}

#performance .performance__contents .performance__contents__item .performance__contents__item__inner .performance__contents__item__inner__text span {
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
}

@media all and (max-width: 639px) {
  #performance h4 {
    font-size: 25px;
  }
}

#regional {
  margin-top: 170px;
}

#regional h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#regional .regional__contents-1 {
  background-image: url(../img/regional__contents-1.png);
  padding: 180px 0 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center left;
  position: relative;
  margin-bottom: 180px;
}

#regional .regional__contents-1:after {
  content: "";
  width: 30%;
  height: 590px;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

#regional .regional__contents-1 img.sponly {
  display: none;
}

#regional .regional__contents__item {
  margin-bottom: 180px;
}

#regional .regional__contents__item.regional__contents-2 {
  position: relative;
  padding-bottom: 30px;
}

#regional .regional__contents__item.regional__contents-2:after {
  background: #e9e9e9;
  content: "";
  width: 100%;
  height: 490px;
  z-index: -1;
  display: block;
  position: absolute;
  bottom: 0;
}

#regional .regional__contents__item .regional__contents__item-title {
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4em;
}

#regional .regional__contents__item .regional__contents__item-text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#regional .regional__contents__item.regional__contents-1-inner {
  width: 577px;
  margin-left: auto;
  z-index: 999;
  margin-bottom: 80px;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: #397de0;
  letter-spacing: 0em;
  margin-bottom: 20px;
  font-weight: 400;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-title span {
  font-size: 30px;
  font-size: 1.875rem;
  display: block;
  letter-spacing: 0.05em;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-main {
  background: #397de0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 1.2em;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link {
  display: table;
  width: 100%;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li {
  display: inline-block;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back {
  width: 205px;
  height: 24px;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back .button_base {
  margin: 0;
  border: 0;
  font-size: 18px;
  position: relative;
  top: 50%;
  left: 0;
  margin-left: 0;
  width: 185px;
  height: 34px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back .button_base:hover {
  cursor: pointer;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back .button_base.to-mail {
  width: 120px;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back .button_base.b03_skewed_slide_in {
  overflow: hidden;
  border: #397de0 solid 1px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back .button_base.b03_skewed_slide_in span {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 7px;
  letter-spacing: 0.12em;
  display: block;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back .button_base.b03_skewed_slide_in span:nth-child(1) {
  color: #397de0;
  background-color: #fff;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back .button_base.b03_skewed_slide_in span:nth-child(2) {
  background-color: #397de0;
  width: 230px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform: translate(-250px, 0px) skewX(-30deg);
  -webkit-transform: translate(-250px, 0px) skewX(-30deg);
  -moz-transform: translate(-250px, 0px) skewX(-30deg);
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back .button_base.b03_skewed_slide_in span:nth-child(3) {
  color: #fff;
  left: -200px;
  transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  font-weight: 500;
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back .button_base.b03_skewed_slide_in:hover span:nth-child(2) {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-15px, 0px) skewX(-30deg);
  -webkit-transform: translate(-15px, 0px) skewX(-30deg);
  -moz-transform: translate(-15px, 0px) skewX(-30deg);
}

#regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back .button_base.b03_skewed_slide_in:hover span:nth-child(3) {
  left: 0px;
  transition: left 0.30000000000000004s ease;
  -webkit-transition: left 0.30000000000000004s ease;
  -moz-transition: left 0.30000000000000004s ease;
}

#regional .regional__contents__item .regional__contents-2__inner {
  display: table;
  width: 100%;
}

#regional .regional__contents__item .regional__contents-2__inner .regional__contents-2__inner__left {
  float: left;
}

#regional .regional__contents__item .regional__contents-2__inner .regional__contents-2__inner__right {
  float: right;
  width: 410px;
}

#regional .regional__contents__item .regional__contents-2__inner .regional__contents-2__inner__right .regional__contents__item-title {
  margin-bottom: 30px;
}

#regional .regional__contents__item .regional__contents-2__inner .regional__contents-2__inner__right .regional__contents__item-title br.tab {
  display: none;
}

#regional .regional__contents__item .regional__contents-2__inner .regional__contents-2__inner__right img {
  display: none;
}

#regional .regional__contents__item .regional__contents-2__works ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#regional .regional__contents__item .regional__contents-2__works ul li {
  width: 33%;
  padding: 10px 25px;
}

#regional .regional__contents__item .regional__contents-2__works ul li span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
  margin-bottom: 10px;
  color: #397de0;
}

#regional .regional__contents__item .regional__contents-2__works ul li a img {
  width: 100%;
}

#regional .regional__contents__item .regional__contents-3__inner {
  display: table;
  width: 100%;
}

#regional .regional__contents__item .regional__contents-3__inner .regional__contents-3__inner__left {
  width: 410px;
  float: left;
}

#regional .regional__contents__item .regional__contents-3__inner .regional__contents-3__inner__left .regional__contents__item-title {
  margin-bottom: 30px;
}

#regional .regional__contents__item .regional__contents-3__inner .regional__contents-3__inner__left img {
  display: none;
}

#regional .regional__contents__item .regional__contents-3__inner .regional__contents-3__inner__right {
  float: right;
}

#regional .regional__contents__item .regional__contents-3__bottom {
  background: #e9e9e9;
  margin-top: 30px;
  padding: 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#regional .regional__contents__item .regional__contents-3__bottom ul {
  margin: 10px 0;
}

#regional .regional__contents__item.regional__contents-4 .regional__contents__item-title {
  text-align: center;
  margin-bottom: 30px;
}

#regional .regional__contents__item.regional__contents-4 .regional__contents__item-title br._sp {
  display: none;
}

#regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner {
  display: table;
  width: 100%;
}

#regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__left {
  float: left;
}

#regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__right {
  float: right;
  width: 410px;
}

#regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__right ul {
  margin: 15px 0;
}

#regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__right ul li {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__right ul li:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
}

#regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__right .regional__contents-4__inner__bottom {
  background: #e9e9e9;
  padding: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__right .regional__contents-4__inner__bottom a {
  border-bottom: 1px solid #397de0;
  color: #397de0;
}

@media all and (max-width: 639px) {
  #regional h4 {
    font-size: 25px;
  }
}

#about_equalfoot .about_equalfoot__content-item {
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 180px;
}

#about_equalfoot .about_equalfoot__content-item h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #397de0;
  margin-bottom: 1em;
}

#about_equalfoot .about_equalfoot__content-item h4 img {
  display: none;
}

#about_equalfoot .about_equalfoot__content-item .about_equalfoot__content-item__text {
  background: #397de0;
  padding: 1.8em;
  width: 531px;
  line-height: 1.8em;
}

#about_equalfoot .about_equalfoot__content-item .about_equalfoot__content-item__text p {
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#about_equalfoot .about_equalfoot__content-item.about_equalfoot__content1 {
  background-image: url(../img/about_equalfoot__content1.jpg);
  padding: 90px 0 50px;
  background-position: center left;
  background-size: contain;
}

#about_equalfoot .about_equalfoot__content-item.about_equalfoot__content1 h4,
#about_equalfoot .about_equalfoot__content-item.about_equalfoot__content1 .about_equalfoot__content-item__text {
  width: 531px;
  display: block;
  margin-left: auto;
}

#about_equalfoot .about_equalfoot__content-item.about_equalfoot__content2 {
  background-image: url(../img/about_equalfoot__content2.jpg);
  padding: 90px 0 50px;
  background-size: initial;
  background-position: center right;
}

#about_equalfoot .about_equalfoot__content-item.about_equalfoot__content3 {
  background-image: url(../img/about_equalfoot__content3.jpg);
  padding: 90px 0 50px;
  background-size: cover;
  background-position: center;
}

#about_equalfoot .about_equalfoot__content-item.about_equalfoot__content3 .about_equalfoot__content3__area {
  background: #fff;
  padding: 1.8em;
  display: table;
}

#about_equalfoot .about_equalfoot__content-item.about_equalfoot__content3 h4 {
  display: table;
  margin-bottom: 0.5em;
}

#about_equalfoot .about_equalfoot__content-item.about_equalfoot__content3 h4 span {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  font-weight: 400;
}

@media all and (max-width: 639px) {
  #about_equalfoot .about_equalfoot__content-item h4 {
    font-size: 25px;
  }
}

@media all and (max-width: 769px) {
  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content3 {
    background-attachment: initial;
  }
}

#report {
  margin-top: 170px;
  position: relative;
  padding-bottom: 240px;
}

#report h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#report .report__contents {
  margin-bottom: 100px;
}

#report .report__contents.report__2018 {
  margin-top: 100px;
}

#report .report__contents.report__2016 {
  margin-bottom: 0;
}

#report .report__contents .report__contents__top {
  background: #e9e9e9;
  padding: 60px 60px 40px;
  position: relative;
}

#report .report__contents .report__contents__top .report__contents__top__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  margin: auto;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  width: 572px;
}

#report .report__contents .report__contents__top .report__contents__top__title span {
  background: #ff8000;
  padding: 0.5em 1em;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: 0.1em;
}

#report .report__contents .report__contents__top .report__contents__top__title span:nth-child(2) {
  background: #397de0;
}

#report .report__contents .report__contents__top .report__contents__top__main__text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin-top: 1em;
  position: relative;
}

#report .report__contents .more-btn {
  width: 400px;
  display: block;
  margin: auto;
  text-align: center;
  border: 1px solid #397de0;
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.5em;
  margin-top: 20px;
  font-weight: 400;
  cursor: pointer;
}

#report .report__contents .report__contents__more {
  display: none;
  padding-bottom: 170px;
}

#report .report__contents .report__contents__more .report__contents__middle .report__contents__middle__contents {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 90px;
}

#report .report__contents .report__contents__more .report__contents__middle .report__contents__middle__contents .report__contents__middle__contents-item {
  width: 50%;
  display: inline-block;
  padding: 0 20px;
  margin-bottom: 50px;
}

#report .report__contents .report__contents__more .report__contents__middle .report__contents__middle__contents .report__contents__middle__contents-item .report__contents__middle__contents-item__titel {
  border-bottom: 1px solid #397de0;
  border-top: 1px solid #397de0;
  text-align: center;
  color: #397de0;
  padding: 0.3em 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 0.8em;
}

#report .report__contents .report__contents__more .report__contents__middle .report__contents__middle__contents .report__contents__middle__contents-item .report__contents__middle__contents-item__text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#report .report__contents .report__contents__more .report__contents__middle .back {
  display: table;
  margin: auto;
  width: 400px;
  height: 24px;
}

#report .report__contents .report__contents__more .report__contents__middle .back .button_base {
  margin: 0;
  border: 0;
  font-size: 18px;
  position: relative;
  top: 50%;
  left: 0;
  margin-left: 0;
  width: 100%;
  height: 34px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

#report .report__contents .report__contents__more .report__contents__middle .back .button_base:hover {
  cursor: pointer;
}

#report .report__contents .report__contents__more .report__contents__middle .back .button_base.b03_skewed_slide_in {
  overflow: hidden;
  border: #397de0 solid 1px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#report .report__contents .report__contents__more .report__contents__middle .back .button_base.b03_skewed_slide_in span {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 7px;
  letter-spacing: 0.12em;
  display: block;
}

#report .report__contents .report__contents__more .report__contents__middle .back .button_base.b03_skewed_slide_in span:nth-child(1) {
  color: #397de0;
  background-color: #fff;
}

#report .report__contents .report__contents__more .report__contents__middle .back .button_base.b03_skewed_slide_in span:nth-child(2) {
  background-color: #397de0;
  width: 110%;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform: translate(-110%, 0px) skewX(-30deg);
  -webkit-transform: translate(-110%, 0px) skewX(-30deg);
  -moz-transform: translate(-110%, 0px) skewX(-30deg);
}

#report .report__contents .report__contents__more .report__contents__middle .back .button_base.b03_skewed_slide_in span:nth-child(3) {
  color: #fff;
  left: -100%;
  transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  font-weight: 500;
}

#report .report__contents .report__contents__more .report__contents__middle .back .button_base.b03_skewed_slide_in:hover span:nth-child(2) {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-15px, 0px) skewX(-30deg);
  -webkit-transform: translate(-15px, 0px) skewX(-30deg);
  -moz-transform: translate(-15px, 0px) skewX(-30deg);
}

#report .report__contents .report__contents__more .report__contents__middle .back .button_base.b03_skewed_slide_in:hover span:nth-child(3) {
  left: 0px;
  transition: left 0.30000000000000004s ease;
  -webkit-transition: left 0.30000000000000004s ease;
  -moz-transition: left 0.30000000000000004s ease;
}

#report .report__contents .report__contents__more .report__contents__bottom {
  margin-top: 100px;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__title {
  color: #ff8000;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__title:before,
#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__title:after {
  width: 19px;
  height: 25px;
  display: inline-block;
  vertical-align: bottom;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__title:before {
  content: url(../img/report__contents__bottom__title-before.svg);
  margin-right: 5px;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__title:after {
  content: url(../img/report__contents__bottom__title_after.svg);
  margin-left: 5px;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul {
  display: table;
  padding-top: 50px;
  margin: auto;
  position: relative;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul:before {
  content: url(../img/report__contents__bottom__contents__click.svg);
  display: block;
  width: 91px;
  height: 85px;
  left: -100px;
  top: 120px;
  position: absolute;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul li {
  display: table-cell;
  margin-right: 10px;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul li:first-child:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  width: 240px;
  height: 115px;
  background-image: url(../img/report__contents__bottom_back.svg);
  background-size: contain;
  position: absolute;
  left: -180px;
  top: 20px;
  z-index: -1;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul li a {
  padding: 0 10px;
  display: block;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul li a img {
  width: 100%;
  border: 1px solid #c1c1c1;
  width: 128px;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul.last {
  padding-top: 50px;
}

#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul.last:before,
#report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul.last li:first-child:before {
  display: none;
}

#report .report__contents.report__2016 ._report__2016 {
  position: relative;
  display: block;
}

#report .report__contents.report__2016 ._report__2016:after {
  content: "平成28年度は私たち単独で支援事業を行いました";
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  position: absolute;
  bottom: 32px;
  left: 0;
}

#report .report__contents.report__2016 .report__contents__top__main__text_before {
  color: #397de0;
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  display: block;
  text-align: center;
  margin-top: 25px;
}

#report .report__bottom {
  width: 976px;
  display: block;
  background: #397de0;
  margin: auto;
  color: #fff;
  position: absolute;
  color: #fff;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -90px;
}

#report .report__bottom .report__bottom__contents {
  display: table;
  margin: auto;
  padding: 30px 0;
}

#report .report__bottom .report__bottom__contents .report__bottom__contents__left {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  font-weight: 400;
}

#report .report__bottom .report__bottom__contents .report__bottom__contents__right {
  display: inline-block;
  vertical-align: middle;
}

#report .report__bottom .report__bottom__contents .report__bottom__contents__right .report__bottom__contents__right__main {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 500;
}

#report .report__bottom .report__bottom__contents .report__bottom__contents__right .report__bottom__contents__right__main span {
  font-size: 40px;
  font-size: 2.5rem;
  margin: 0 0.3em 0 0.1em;
}

#report .report__bottom .report__bottom__contents .report__bottom__contents__right .report__bottom__contents__right__annotation {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
}

@media all and (max-width: 639px) {
  #report h4 {
    font-size: 25px;
  }
}

@media all and (max-width: 769px) {
  #report .report__contents .report__contents__more .report__contents__middle .back {
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  #report .report__contents.report__2016 .report__contents__top__main__text_before {
    font-size: 25px;
  }
}

#entry_company .entry_company__top {
  background: #e9e9e9;
  padding-top: 240px;
}

#entry_company .entry_company__top h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#entry_company .entry_company__top .entry_big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 50px;
}

#entry_company .entry_company__top .entry_big li {
  display: inline-block;
  width: 32.6666666%;
  margin-right: 1%;
  background: #fff;
  margin-bottom: 50px;
  padding: 25px;
}

#entry_company .entry_company__top .entry_big li:nth-child(3n) {
  margin-right: 0;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .entry_big__neme {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  text-align: center;
  height: 80px;
  padding-top: 12px;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .entry_big__neme img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  margin-top: -12px;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .thumbnail {
  width: 100%;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .entry_big__read {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 15px;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .entry_big__info {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #808080;
  padding-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid #808080;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .entry_big__info a {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #808080;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .back {
  display: table;
  width: 100%;
  height: 24px;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .back .button_base {
  margin: 0;
  border: 0;
  font-size: 18px;
  position: relative;
  top: 50%;
  left: 0;
  margin-left: 0;
  width: 100%;
  height: 34px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .back .button_base:hover {
  cursor: pointer;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .back .button_base.b03_skewed_slide_in {
  overflow: hidden;
  border: #397de0 solid 1px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .back .button_base.b03_skewed_slide_in span {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 7px;
  letter-spacing: 0.12em;
  display: block;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .back .button_base.b03_skewed_slide_in span:nth-child(1) {
  color: #397de0;
  background-color: #fff;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .back .button_base.b03_skewed_slide_in span:nth-child(2) {
  background-color: #397de0;
  width: 110%;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform: translate(-110%, 0px) skewX(-30deg);
  -webkit-transform: translate(-110%, 0px) skewX(-30deg);
  -moz-transform: translate(-110%, 0px) skewX(-30deg);
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .back .button_base.b03_skewed_slide_in span:nth-child(3) {
  color: #fff;
  left: -100%;
  transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  font-weight: 500;
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .back .button_base.b03_skewed_slide_in:hover span:nth-child(2) {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-15px, 0px) skewX(-30deg);
  -webkit-transform: translate(-15px, 0px) skewX(-30deg);
  -moz-transform: translate(-15px, 0px) skewX(-30deg);
}

#entry_company .entry_company__top .entry_big li .entry_big__item__content .back .button_base.b03_skewed_slide_in:hover span:nth-child(3) {
  left: 0px;
  transition: left 0.30000000000000004s ease;
  -webkit-transition: left 0.30000000000000004s ease;
  -moz-transition: left 0.30000000000000004s ease;
}

#entry_company .entry_middle {
  display: table;
  margin-top: 80px;
  padding-bottom: 65px;
}

#entry_company .entry_middle li {
  display: inline-block;
  width: 48%;
  margin-right: 4%;
  font-size: 0;
  margin-bottom: 15px;
  float: left;
}

#entry_company .entry_middle li:nth-child(even) {
  margin-right: 0;
}

#entry_company .entry_middle li .entry_middle__itme__contens {
  width: 100%;
}

#entry_company .entry_middle li .entry_middle__itme__contens img {
  float: left;
  width: 48%;
  display: block;
}

#entry_company .entry_middle li .entry_middle__itme__contens .entry_middle__itme__contens__text {
  width: 48%;
  margin-left: 4%;
  float: right;
}

#entry_company .entry_middle li .entry_middle__itme__contens .entry_middle__itme__contens__text .entry_middle__itme__title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

#entry_company .entry_middle li .entry_middle__itme__contens .entry_middle__itme__contens__text .entry_middle__itme__info {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #808080;
}

#entry_company .entry_middle li .entry_middle__itme__contens .entry_middle__itme__contens__text .entry_middle__itme__info a {
  display: block;
}

#entry_company .entry_small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#entry_company .entry_small li {
  width: 20%;
  padding: 10px;
  margin-bottom: 15px;
}

#entry_company .entry_small li p {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}

#entry_company .entry_small li img {
  width: 100%;
}

@media all and (max-width: 639px) {
  #entry_company .entry_company__top h4 {
    font-size: 25px;
  }
}

@media all and (max-width: 769px) {
  #entry_company .entry_company__top .entry_big li .entry_big__item__content .back {
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  #entry_company .entry_middle li {
    float: none;
  }
}

#bank_payment {
  position: relative;
  padding-top: 80px;
}

#bank_payment .win_close {
  position: absolute;
  right: 15px;
  top: 15px;
}

#bank_payment .win_close a {
  background: #397de0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.5em;
}

#bank_payment h3 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
}

#bank_payment h3 span {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
}

#bank_payment h4 {
  border: 1px solid #397de0;
  color: #397de0;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: table;
  padding: 0.3em 1.5em;
  margin: 30px auto;
}

#bank_payment .bank_payment__read {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  background: #e9e9e9;
  display: table;
  padding: 0.3em 1.5em;
  margin: 0 auto 80px;
}

#bank_payment table {
  width: 100%;
  margin: 0 auto 80px;
  border-top: 1px solid #397de0;
}

#bank_payment table tbody tr {
  border-bottom: 1px dashed #397de0;
}

#bank_payment table tbody tr th {
  width: 40%;
  padding-right: 15px;
  text-align: left;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#bank_payment table tbody tr th span {
  position: absolute;
  background: #ff8000;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  right: 15px;
  padding: 0.3em 0.8em;
}

#bank_payment table tbody tr td {
  border-left: 1px solid #397de0;
  width: 60%;
  padding-left: 15px;
  padding: 0.5em 0 0.5em 15px;
}

#bank_payment table tbody tr td .annotation {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#bank_payment table tbody tr td textarea {
  width: 100%;
  background: #e9e9e9;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 0.3em;
}

#bank_payment table tbody tr td select {
  background: #e9e9e9;
  background-image: url(../img/credit_back.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 0.3em;
  width: 100%;
  cursor: pointer;
}

#bank_payment table tbody tr td label.text input[type="text"] {
  width: 100%;
  background: #e9e9e9;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 0.3em;
}

#bank_payment table tbody tr td label.botton {
  float: left;
  width: 50%;
  padding-right: 20px;
  margin-bottom: 15px;
  margin-top: 30px;
  cursor: pointer;
}

#bank_payment table tbody tr td label.botton input[type="submit"],
#bank_payment table tbody tr td label.botton input[type="reset"] {
  background: #ff8000;
  border: 1px solid #ff8000;
  padding: 0.5em 1em;
  width: 100%;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #fff;
}

#bank_payment table tbody tr td label.botton.reset {
  padding-left: 20px;
  padding-right: 0;
}

#bank_payment table tbody tr td label.botton.reset input[type="reset"] {
  background: #fff;
  color: #ff8000;
}

#bank_payment table tbody tr:nth-last-child(2) {
  border-bottom: 1px solid #397de0;
}

#bank_payment table tbody tr:last-child {
  border-bottom: none;
}

#bank_payment table tbody tr:last-child td {
  border-left: none;
}

@media all and (max-width: 639px) {
  #bank_payment h3 {
    font-size: 25px;
  }
}

#equalfoot-thanks {
  position: relative;
  padding-top: 80px;
}

#equalfoot-thanks .win_close {
  position: absolute;
  right: 15px;
  top: 15px;
}

#equalfoot-thanks .win_close a {
  background: #397de0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.5em;
}

#equalfoot-thanks .equalfoot-thanks__read {
  color: #397de0;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

#equalfoot-thanks .equalfoot-thanks__text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-align: center;
}

#blog_card {
  margin-top: 170px;
  padding: 30px 0 40px;
  position: relative;
}

#blog_card .blog_card__titel {
  text-align: center;
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #397de0;
  padding-bottom: 15px;
  position: relative;
}

#blog_card .blog_card__titel:before {
  content: url(../img/blog_card__titel-before.svg);
  display: block;
  width: 295px;
  height: 94px;
  position: absolute;
  z-index: -1;
}

#blog_card ul {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#blog_card ul li {
  display: inline-block;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 15px;
}

#blog_card ul li:nth-child(even) {
  margin-right: 0;
}

#blog_card ul li .blog_card__item__contents {
  width: 100%;
  display: block;
}

#blog_card ul li .blog_card__item__contents a {
  display: block;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

#blog_card ul li .blog_card__item__contents a .blog_card__item__contents__thumbnail {
  width: 30%;
  float: left;
  height: 100%;
  overflow: hidden;
  min-height: 150px;
  position: relative;
}

#blog_card ul li .blog_card__item__contents a .blog_card__item__contents__thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

#blog_card ul li .blog_card__item__contents a .blog_card__item__contents__taxt {
  width: 70%;
  float: right;
  line-height: 1.3em;
  padding: 10px;
  padding-left: 20px;
}

#blog_card ul li .blog_card__item__contents a .blog_card__item__contents__taxt .blog_card__item__contents__title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #397de0;
}

#blog_card ul li .blog_card__item__contents a .blog_card__item__contents__taxt .blog_card__item__contents__body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: #8e8e8e;
  line-height: 1.5em;
  margin-top: 0.9em;
  letter-spacing: 0.05em;
}

#blog_card ul li .blog_card__item__contents a:hover {
  border-color: #ff8000;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

#blog_card ul li .blog_card__item__contents a:hover .blog_card__item__contents__thumbnail img {
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#blog_card ul li .blog_card__item__contents a:hover .blog_card__item__contents__title {
  color: #397de0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-weight: 500;
}

#blog_card._page-company {
  margin-top: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid #e9e9e9;
}

#blog_card._page-company .blog_card__titel:before {
  top: -40px;
}

#blog_card._page-company.page_recruit {
  border-bottom: none;
}

#privilege {
  margin-top: 170px;
}

#privilege h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #397de0;
  margin-bottom: 50px;
}

#privilege .privilege__read {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
}

#privilege .privilege__read__bottom {
  width: 697px;
  display: block;
  margin: auto;
}

#privilege .privilege__read__bottom_text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  padding: 0.3em 0.8em;
  display: table;
  margin: 15px auto 0;
  font-weight: 500;
  color: #397de0;
  border: 1px solid #397de0;
  text-align: center;
}

#privilege .privilege__option__read {
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 400;
  margin: 70px auto 30px;
}

#privilege .privilege__option__contents {
  border-top: 1px solid #e9e9e9;
  width: 100%;
}

#privilege .privilege__option__contents tbody tr {
  border-bottom: 1px solid #e9e9e9;
}

#privilege .privilege__option__contents tbody tr th,
#privilege .privilege__option__contents tbody tr td {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  padding: 0.8em 0;
}

#privilege .privilege__option__contents tbody tr th {
  width: 25%;
}

#privilege .privilege__option__contents tbody tr td {
  width: 75%;
}

#privilege .privilege__entry {
  width: 100%;
  margin-top: 70px;
}

#privilege .privilege__entry .privilege__entry__method {
  background: #e9e9e9;
  padding: 40px;
}

#privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents {
  display: table;
  margin: auto;
}

#privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div {
  display: inline-block;
  vertical-align: middle;
}

#privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-left {
  background: #fff;
  width: 211px;
  height: 211px;
  border-radius: 50%;
  position: relative;
}

#privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-left p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
  color: #397de0;
  text-align: center;
  font-weight: 400;
  display: block;
  margin: auto;
  top: 0;
  bottom: 0;
  height: 80px;
  position: absolute;
  left: 0;
  right: 0;
}

#privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-right {
  width: 527px;
  position: relative;
}

#privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-right ul {
  width: 100%;
  margin-left: 30px;
}

#privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-right ul li {
  border-bottom: 2px solid #fff;
  padding-bottom: 20px;
}

#privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-right ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 20px;
}

#privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-right ul li p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-right ul li p span {
  color: #397de0;
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 5px;
}

#privilege .privilege__entry .privilege__entry__payment {
  background: #397de0;
  color: #fff;
  padding: 40px;
}

#privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
}

#privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__title span {
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid #fff;
  padding: 0.3em 0.8em;
  display: table;
  margin: 0 auto 20px;
}

#privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 800px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li {
  width: 50%;
  padding: 0 30px;
}

#privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  border: 1px solid #fff;
  display: table;
  padding: 0.3em 0.8em;
  margin-bottom: 20px;
}

#privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li select {
  background: #fff;
  background-image: url(../img/credit_back.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 100%;
  margin-bottom: 15px;
  padding: 0.3em 0.8em;
}

#privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

#privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li a {
  display: block;
}

#privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li a.bank {
  margin-top: 20px;
}

#privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li a.cancel {
  width: 159px;
  margin-top: 20px;
}

@media all and (max-width: 639px) {
  #privilege h4 {
    font-size: 25px;
  }
}

#equalfoot_interview_top {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-position: center bottom;
  height: 50vh;
  background-image: url(../img/equalfoot_main.jpg);
  position: relative;
}

#equalfoot_interview_top h2 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  height: 1em;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  color: #fff;
  top: 0;
  bottom: 0;
}

@media all and (max-width: 639px) {
  #equalfoot_interview_top h2 {
    font-size: 25px;
  }
}

#equalfoot_interview-main {
  margin-top: 100px;
}

#equalfoot_interview-main .equalfoot_interview__top .equalfoot_interview__top__title {
  display: table;
  margin: 0 auto 60px;
  border: 1px solid #397de0;
}

#equalfoot_interview-main .equalfoot_interview__top .equalfoot_interview__top__title p {
  display: inline-block;
  padding: 0.5em 0.8em;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

#equalfoot_interview-main .equalfoot_interview__top .equalfoot_interview__top__title p.interview__top__title__left {
  background: #397de0;
  color: #fff;
}

#equalfoot_interview-main .equalfoot_interview__top .equalfoot_interview__top__title p.interview__top__title__right {
  color: #397de0;
}

#equalfoot_interview-main .equalfoot_interview__top h3 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  font-weight: 500;
  text-align: center;
  color: #397de0;
  position: relative;
  padding-bottom: 25px;
  font-family: "Roboto Condensed", "Noto Sans Japanese";
}

#equalfoot_interview-main .equalfoot_interview__top h3 span {
  font-size: 23px;
  font-size: 1.4375rem;
}

#equalfoot_interview-main .equalfoot_interview__top h3:after {
  content: "";
  width: 70px;
  height: 2px;
  border-bottom: 2px solid #397de0;
  display: block;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}

#equalfoot_interview-main .equalfoot_interview__top h4 {
  text-align: center;
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  margin-top: 36px;
  line-height: 1.8em;
  font-weight: 400;
  margin-bottom: 80px;
}

#equalfoot_interview-main .equalfoot_interview__top .equalfoot_interview__top-photo {
  width: 100%;
  display: block;
}

#equalfoot_interview-main .equalfoot_interview__journal {
  width: 693px;
  margin: 80px auto 220px;
  display: block;
}

#equalfoot_interview-main .equalfoot_interview__journal .equalfoot_interview__journal__item {
  padding: 25px 0;
  display: block;
}

#equalfoot_interview-main .equalfoot_interview__journal .equalfoot_interview__journal__item .journal__read {
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  display: block;
  font-weight: 400;
}

#equalfoot_interview-main .equalfoot_interview__journal .equalfoot_interview__journal__item .journal__text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

#equalfoot_interview-main .equalfoot_interview__journal .journal__photo {
  max-width: 100%;
  display: block;
  margin: 25px auto;
}

#equalfoot_interview-main .equalfoot_interview__information {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #ff8000;
  border-top: 1px solid #ff8000;
  padding: 70px 0 40px;
}

#equalfoot_interview-main .equalfoot_interview__information:before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #ff8000;
  display: block;
  position: absolute;
  top: 2px;
}

#equalfoot_interview-main .equalfoot_interview__information:after {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #ff8000;
  display: block;
  position: absolute;
  bottom: 2px;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents {
  position: relative;
  width: 100%;
  display: table;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents:before {
  content: url(../img/equalfoot_interview__information_before.svg);
  display: block;
  background: #fff;
  width: 238px;
  height: 72px;
  position: absolute;
  top: -89px;
  padding-right: 10px;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left {
  float: left;
  width: 50%;
  padding: 0 30px;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left .interview__compay {
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left .interview__compay span {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left table {
  width: 100%;
  border-top: 1px solid #e9e9e9;
  margin-top: 15px;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left table tbody tr {
  width: 100%;
  border-bottom: 1px solid #e9e9e9;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left table tbody tr th,
#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left table tbody tr td {
  padding: 0.5em;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li {
  display: inline-block;
  width: 47%;
  margin-left: 6%;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li:first-child {
  margin-left: 0;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back {
  width: 100%;
  height: 24px;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back .button_base {
  margin: 0;
  border: 0;
  font-size: 18px;
  position: relative;
  top: 50%;
  left: 0;
  margin-left: 0;
  width: 100%;
  height: 34px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back .button_base:hover {
  cursor: pointer;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back .button_base.b03_skewed_slide_in {
  overflow: hidden;
  border: #397de0 solid 1px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back .button_base.b03_skewed_slide_in span {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 7px;
  letter-spacing: 0.12em;
  display: block;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back .button_base.b03_skewed_slide_in span:nth-child(1) {
  color: #397de0;
  background-color: #fff;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back .button_base.b03_skewed_slide_in span:nth-child(2) {
  background-color: #397de0;
  width: 110%;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform: translate(-110%, 0px) skewX(-30deg);
  -webkit-transform: translate(-110%, 0px) skewX(-30deg);
  -moz-transform: translate(-110%, 0px) skewX(-30deg);
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back .button_base.b03_skewed_slide_in span:nth-child(3) {
  color: #fff;
  left: -100%;
  transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  font-weight: 500;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back .button_base.b03_skewed_slide_in:hover span:nth-child(2) {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-15px, 0px) skewX(-30deg);
  -webkit-transform: translate(-15px, 0px) skewX(-30deg);
  -moz-transform: translate(-15px, 0px) skewX(-30deg);
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back .button_base.b03_skewed_slide_in:hover span:nth-child(3) {
  left: 0px;
  transition: left 0.30000000000000004s ease;
  -webkit-transition: left 0.30000000000000004s ease;
  -moz-transition: left 0.30000000000000004s ease;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__right {
  float: left;
  width: 50%;
  padding: 0 30px;
}

#equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__right img {
  display: block;
  margin-left: auto;
  max-width: 391px;
  height: auto;
}

@media all and (max-width: 639px) {
  #equalfoot_interview-main .equalfoot_interview__top h3 {
    font-size: 25px;
  }
}

@media all and (max-width: 769px) {
  #equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left ul li .back {
    width: 100%;
  }
}

#equalfoot_interview-pagefoot {
  margin-top: 100px;
}

#equalfoot_interview-pagefoot .page_shere {
  background: #e9e9e9;
  position: relative;
  padding: 40px 0;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents .page_shere__contents__top {
  color: #397de0;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  margin: auto;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents .page_shere__contents__top:before,
#equalfoot_interview-pagefoot .page_shere .page_shere__contents .page_shere__contents__top:after {
  display: inline-block;
  width: 13px;
  height: 23px;
  vertical-align: middle;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents .page_shere__contents__top:before {
  content: url(../img/page_shere__contents__top_before.svg);
  margin-right: 5px;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents .page_shere__contents__top:after {
  content: url(../img/page_shere__contents__top_after.svg);
  margin-left: 5px;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul {
  display: table;
  margin: auto;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li {
  display: inline-block;
  width: 47%;
  margin-left: 6%;
  float: left;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li:first-child {
  margin-left: 0;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back {
  width: 196px;
  height: 24px;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back .button_base {
  margin: 0;
  border: 0;
  font-size: 18px;
  position: relative;
  top: 50%;
  left: 0;
  margin-left: 0;
  width: 100%;
  height: 34px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back .button_base:hover {
  cursor: pointer;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back .button_base.b03_skewed_slide_in {
  overflow: hidden;
  border: #397de0 solid 1px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back .button_base.b03_skewed_slide_in span {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 7px;
  letter-spacing: 0.12em;
  display: block;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back .button_base.b03_skewed_slide_in span:nth-child(1) {
  color: #397de0;
  background-color: #fff;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back .button_base.b03_skewed_slide_in span:nth-child(2) {
  background-color: #397de0;
  width: 110%;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform: translate(-110%, 0px) skewX(-30deg);
  -webkit-transform: translate(-110%, 0px) skewX(-30deg);
  -moz-transform: translate(-110%, 0px) skewX(-30deg);
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back .button_base.b03_skewed_slide_in span:nth-child(3) {
  color: #fff;
  left: -100%;
  transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  font-weight: 500;
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back .button_base.b03_skewed_slide_in:hover span:nth-child(2) {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-15px, 0px) skewX(-30deg);
  -webkit-transform: translate(-15px, 0px) skewX(-30deg);
  -moz-transform: translate(-15px, 0px) skewX(-30deg);
}

#equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back .button_base.b03_skewed_slide_in:hover span:nth-child(3) {
  left: 0px;
  transition: left 0.30000000000000004s ease;
  -webkit-transition: left 0.30000000000000004s ease;
  -moz-transition: left 0.30000000000000004s ease;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list {
  border-top: 1px solid #e9e9e9;
  margin-top: 100px;
  border-bottom: 1px solid #e9e9e9;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .interview__list__title {
  padding: 50px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  color: #397de0;
  text-align: center;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list ul {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list ul li {
  width: 50%;
  display: inline-block;
  padding: 10px 20px;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list ul li .equalfoot_interview__list-itme__contents {
  border: 1px solid #e9e9e9;
  display: table;
  width: 100%;
  padding: 15px;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list ul li .equalfoot_interview__list-itme__contents .interview__list__thumbnail {
  float: left;
  width: 30%;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list ul li .equalfoot_interview__list-itme__contents .interview__list__thumbnail img {
  display: block;
  width: 100%;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list ul li .equalfoot_interview__list-itme__contents .rigth {
  float: right;
  width: 70%;
  padding-left: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list ul li .equalfoot_interview__list-itme__contents .rigth span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list ul li.current .equalfoot_interview__list-itme__contents {
  border-color: #ff8000;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .back {
  margin: 50px auto;
  width: 343px;
  height: 24px;
  display: table;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .back .button_base {
  margin: 0;
  border: 0;
  font-size: 18px;
  position: relative;
  top: 50%;
  left: 0;
  margin-left: 0;
  width: 100%;
  height: 34px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .back .button_base:hover {
  cursor: pointer;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .back .button_base.b03_skewed_slide_in {
  overflow: hidden;
  border: #397de0 solid 1px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .back .button_base.b03_skewed_slide_in span {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 7px;
  letter-spacing: 0.12em;
  display: block;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .back .button_base.b03_skewed_slide_in span:nth-child(1) {
  color: #397de0;
  background-color: #fff;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .back .button_base.b03_skewed_slide_in span:nth-child(2) {
  background-color: #397de0;
  width: 110%;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform: translate(-110%, 0px) skewX(-30deg);
  -webkit-transform: translate(-110%, 0px) skewX(-30deg);
  -moz-transform: translate(-110%, 0px) skewX(-30deg);
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .back .button_base.b03_skewed_slide_in span:nth-child(3) {
  color: #fff;
  left: -100%;
  transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  font-weight: 500;
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .back .button_base.b03_skewed_slide_in:hover span:nth-child(2) {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-15px, 0px) skewX(-30deg);
  -webkit-transform: translate(-15px, 0px) skewX(-30deg);
  -moz-transform: translate(-15px, 0px) skewX(-30deg);
}

#equalfoot_interview-pagefoot .equalfoot_interview__list .back .button_base.b03_skewed_slide_in:hover span:nth-child(3) {
  left: 0px;
  transition: left 0.30000000000000004s ease;
  -webkit-transition: left 0.30000000000000004s ease;
  -moz-transition: left 0.30000000000000004s ease;
}

@media all and (max-width: 639px) {
  #equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li {
    float: none;
  }
}

@media all and (max-width: 769px) {
  #equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li .back {
    width: 100%;
  }
}

@media all and (max-width: 769px) {
  #equalfoot_interview-pagefoot .equalfoot_interview__list .back {
    width: 100%;
  }
}

#page_recruit__nev {
  background: #e9e9e9;
}

#page_recruit__nev ul {
  width: 100%;
  display: table;
}

#page_recruit__nev ul li {
  display: table-cell;
  width: 25%;
}

#page_recruit__nev ul li a {
  padding: 0.8em 0;
  display: block;
  width: 100%;
}

#page_recruit__nev ul li a span {
  text-align: center;
  display: block;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #397de0;
  font-weight: 400;
}

#page_recruit__nev ul li a span:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}

#page_recruit__nev ul li a.current,
#page_recruit__nev ul li a:hover {
  background: #397de0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#page_recruit__nev ul li a.current span,
#page_recruit__nev ul li a:hover span {
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#page_recruit__nev ul li:first-child a span:before {
  background-image: url(../img/page_recruit__nev__contents__item-1.png);
}

#page_recruit__nev ul li:nth-child(2) a span:before {
  background-image: url(../img/page_recruit__nev__contents__item-2.png);
}

#page_recruit__nev ul li:nth-child(3) a span:before {
  background-image: url(../img/page_recruit__nev__contents__item-3.png);
}

#page_recruit__nev ul li:nth-child(4) a span:before {
  background-image: url(../img/page_recruit__nev__contents__item-4.png);
}

#recruit-top1 {
  background: #397de0;
  padding: 100px 0;
  background-image: url(../img/recruit-top1-back.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#recruit-top1 .recruit-top1__content {
  display: table;
}

#recruit-top1 .recruit-top1__content .recruit-top1__content__left {
  float: left;
  width: 40%;
}

#recruit-top1 .recruit-top1__content .recruit-top1__content__left h4 {
  color: #fff;
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  margin-top: 1em;
}

#recruit-top1 .recruit-top1__content .recruit-top1__content__right {
  float: right;
  width: 60%;
}

#recruit-top1 .recruit-top1__content .recruit-top1__content__right p {
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

@media all and (max-width: 639px) {
  #recruit-top1 .recruit-top1__content .recruit-top1__content__left h4 {
    font-size: 25px;
  }
}

#recruit-top2 {
  background: #e9e9e9;
  position: relative;
  padding: 100px 0;
}

#recruit-top2:before {
  background-image: url(../img/recruit-top2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: center right;
  content: "";
  width: 45%;
  height: 100%;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
}

#recruit-top2 .recruit-top2__left {
  width: 55%;
  padding-right: 30px;
}

#recruit-top2 .recruit-top2__left img {
  display: none;
}

#recruit-top2 .recruit-top2__left h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #397de0;
  margin-bottom: 30px;
}

#recruit-top2 .recruit-top2__left p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#recruit-top2 .recruit-top2__left ul {
  margin: 20px 0;
}

#recruit-top2 .recruit-top2__left ul li {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#recruit-top2 .recruit-top2__left ul li:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  #recruit-top2 .recruit-top2__left h4 {
    font-size: 25px;
  }
}

#recruit-top3 {
  background: #397de0;
  position: relative;
  padding: 100px 0;
}

#recruit-top3:before {
  background-image: url(../img/recruit-top3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: center right;
  content: "";
  width: 45%;
  height: 100%;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
}

#recruit-top3 .recruit-top2__right {
  width: 55%;
  color: #fff;
  margin-left: auto;
  padding-left: 30px;
}

#recruit-top3 .recruit-top2__right img {
  display: none;
}

#recruit-top3 .recruit-top2__right h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  margin-bottom: 30px;
}

#recruit-top3 .recruit-top2__right p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

@media all and (max-width: 639px) {
  #recruit-top3 .recruit-top2__right h4 {
    font-size: 25px;
  }
}

#recruit__bottomnavi {
  background: #397de0;
  padding: 100px 0;
  background-image: url(../img/recruit-top1-back.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#recruit__bottomnavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#recruit__bottomnavi ul li {
  display: inline-block;
  width: 31%;
  font-size: 0;
  margin-right: 3.5%;
}

#recruit__bottomnavi ul li:last-child {
  margin-right: 0;
}

#recruit__bottomnavi ul li a {
  display: block;
  width: 100%;
}

#recruit__bottomnavi ul li a span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  display: block;
  margin-top: 15px;
}

#recruit__bottomnavi ul li a figure {
  width: 100%;
  max-height: 195px;
  overflow: hidden;
  display: block;
}

#recruit__bottomnavi ul li a figure img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

#recruit__bottomnavi ul li a:hover figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#recruit__bottom-slid {
  position: relative;
  margin-top: 50px;
}

#recruit__bottom-slid .section-contents {
  position: relative;
}

#recruit__bottom-slid .section-contents h4 {
  position: absolute;
  z-index: 2;
  top: -50px;
}

#recruit__bottom-slid .section-contents h4 img {
  width: 391px;
  display: block;
}

#recruit__bottom-slid .simply-scroll-container {
  position: relative;
  width: 100%;
}

#recruit__bottom-slid .simply-scroll-clip {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 262px;
}

#recruit__bottom-slid .simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#recruit__bottom-slid .simply-scroll-list li {
  float: left;
  padding: 0;
  margin: 0;
  width: 341px;
  height: 262px;
}

#recruit__bottom-slid .simply-scroll-list li img {
  display: block;
  width: 100%;
}

#requirements__top {
  margin-top: 80px;
  margin-bottom: 100px;
}

#requirements__top h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #397de0;
  text-align: center;
  margin-bottom: 50px;
}

#requirements__top ul {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#requirements__top ul li {
  display: inline-block;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 15px;
}

#requirements__top ul li:nth-child(3n) {
  margin-right: 0;
}

#requirements__top ul li a {
  border: 1px solid #397de0;
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
  width: 100%;
  padding: 1em 0;
}

#requirements__top ul li a:hover {
  background: #397de0;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#requirements__top ul li.recruitment_end {
  position: relative;
}

#requirements__top ul li.recruitment_end:before {
  content: "※現在募集しておりません";
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 2.5em;
}

@media all and (max-width: 639px) {
  #requirements__top h4 {
    font-size: 25px;
  }
}

#requirements__main .requirements__main__item {
  margin-bottom: 130px;
}

#requirements__main .requirements__main__item .requirements__main__item__top h5 {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  position: relative;
  text-align: center;
  color: #397de0;
  display: block;
  margin: 0 auto;
}

#requirements__main .requirements__main__item .requirements__main__item__top h5:before {
  content: "正社員";
  display: block;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  background: #397de0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  position: absolute;
  padding-top: 24px;
  bottom: -60px;
  left: 30px;
}

#requirements__main .requirements__main__item .requirements__main__item__top h5.arbeit:before {
  content: "アルバイト";
}

#requirements__main .requirements__main__item .requirements__main__item__top h5 span {
  border: 1px solid #397de0;
  padding: 0.8em 2em;
  background: #fff;
  display: -webkit-inline-box;
  margin: auto;
  z-index: 2;
}

#requirements__main .requirements__main__item .requirements__main__item__top img {
  margin-top: -2em;
  display: block;
  width: 100%;
  border-top: 1px solid #397de0;
}

#requirements__main .requirements__main__item .requirements__main__item__top .recruitment_end {
  background: #e9e9e9;
  color: #397de0;
  text-align: center;
  padding: 0.6em 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-top: 15px;
}

#requirements__main .requirements__main__item .requirements__main__item__contents {
  margin-top: 70px;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .left,
#requirements__main .requirements__main__item .requirements__main__item__contents .right {
  width: 50%;
  float: left;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .left {
  padding-right: 30px;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .right {
  padding-left: 30px;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item {
  margin-bottom: 50px;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__read {
  border-bottom: 1px solid #397de0;
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 15px;
  padding-bottom: 0.5em;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .attention {
  font-size: 12px;
  font-size: 0.75rem;
  color: #4d4d4d;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text ul li {
  margin-bottom: 0.5em;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text ul li:last-child {
  margin-bottom: 0;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text ul li span {
  display: block;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text ul li:before {
  content: url(../img/icon_check.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .top {
  margin-bottom: 20px;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .bottom {
  margin-top: 20px;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .color-o {
  color: #ff8000;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back {
  margin-top: 20px;
  width: 100%;
  height: 24px;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back .button_base {
  margin: 0;
  border: 0;
  font-size: 18px;
  position: relative;
  top: 50%;
  left: 0;
  margin-left: 0;
  width: 100%;
  height: 34px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back .button_base:hover {
  cursor: pointer;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back .button_base.b03_skewed_slide_in {
  overflow: hidden;
  border: #397de0 solid 1px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back .button_base.b03_skewed_slide_in span {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 7px;
  letter-spacing: 0.12em;
  display: block;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back .button_base.b03_skewed_slide_in span:nth-child(1) {
  color: #397de0;
  background-color: #fff;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back .button_base.b03_skewed_slide_in span:nth-child(2) {
  background-color: #397de0;
  width: 110%;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform: translate(-110%, 0px) skewX(-30deg);
  -webkit-transform: translate(-110%, 0px) skewX(-30deg);
  -moz-transform: translate(-110%, 0px) skewX(-30deg);
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back .button_base.b03_skewed_slide_in span:nth-child(3) {
  color: #fff;
  left: -100%;
  transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  font-weight: 500;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back .button_base.b03_skewed_slide_in:hover span:nth-child(2) {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-15px, 0px) skewX(-30deg);
  -webkit-transform: translate(-15px, 0px) skewX(-30deg);
  -moz-transform: translate(-15px, 0px) skewX(-30deg);
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back .button_base.b03_skewed_slide_in:hover span:nth-child(3) {
  left: 0px;
  transition: left 0.30000000000000004s ease;
  -webkit-transition: left 0.30000000000000004s ease;
  -moz-transition: left 0.30000000000000004s ease;
}

#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__top,
#requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__bottom {
  display: table;
  width: 100%;
}

@media all and (max-width: 769px) {
  #requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__item .requirements__main__item__contents__item__text .back {
    width: 100%;
  }
}

#data-1 h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #397de0;
  text-align: center;
  width: 976px;
  padding: 0;
  display: block;
  margin: 80px auto 50px;
}

#data-1 .data-1__top img {
  width: 100%;
  display: block;
  font-size: 0;
}

#data-1 .data-1__top .data-1__top__main {
  display: table;
  margin: auto;
  margin: -40px auto 110px;
}

#data-1 .data-1__top .data-1__top__main p {
  display: inline-block;
  border: 1px solid #397de0;
  padding: 0 2em;
}

#data-1 .data-1__top .data-1__top__main p .ja {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  font-weight: 400;
}

#data-1 .data-1__top .data-1__top__main p .en {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 65px;
  font-size: 4.0625rem;
  letter-spacing: 0.1em;
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  margin-left: 15px;
  letter-spacing: 0;
  font-weight: 400;
}

#data-1 .data-1__top .data-1__top__main p.data-1__top__main__left {
  color: #fff;
  background: #397de0;
}

#data-1 .data-1__top .data-1__top__main p.data-1__top__main__rigth {
  color: #397de0;
  background: #fff;
}

#data-1 .data-1__top .data-1__top__main p.data-1__top__main__rigth .en {
  margin-left: 0;
}

#data-1 .data-1__top .data-1__top__main p.data-1__top__main__rigth ._before {
  margin-left: 15px;
}

#data-1 .data-1__top .data-1__top__middle {
  display: table;
  width: 100%;
}

#data-1 .data-1__top .data-1__top__middle>div {
  float: left;
  width: 46%;
  margin-right: 8%;
}

#data-1 .data-1__top .data-1__top__middle>div:last-child {
  margin-right: 0;
}

#data-1 .data-1__top .data-1__top__middle table {
  width: 100%;
}

#data-1 .data-1__top .data-1__top__middle table tbody {
  border-top: 1px solid #e9e9e9;
}

#data-1 .data-1__top .data-1__top__middle table tbody tr {
  width: 100%;
  border-bottom: 1px solid #e9e9e9;
}

#data-1 .data-1__top .data-1__top__middle table tbody tr th {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  width: 50%;
  text-align: left;
}

#data-1 .data-1__top .data-1__top__middle table tbody tr td {
  text-align: right;
  width: 50%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
  color: #397de0;
  font-weight: 400;
  padding: 0.3em 0.5em;
}

#data-1 .data-1__top .data-1__top__middle table tbody tr td .en {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 60px;
  font-size: 3.75rem;
  letter-spacing: 0;
}

#data-1 .data-1__top .data-1__top__middle table tbody tr td .en._after {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
}

#data-1 .data-1__top .data-1__top__bottom {
  display: table;
  width: 100%;
  margin-top: 100px;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents {
  display: table;
  width: 100%;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div {
  float: left;
  width: 46%;
  margin-right: 8%;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div:last-child {
  margin-right: 0;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div .data-1__top__bottom__contents__title {
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div .data-1__top__bottom__contents__title:before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #397de0;
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: -1;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div .data-1__top__bottom__contents__title span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
  color: #397de0;
  background: #fff;
  padding: 0 0.5em;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left .current_year {
  margin-top: 10px;
  width: 100;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left .current_year p {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left .current_year p .en {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 60px;
  font-size: 3.75rem;
  color: #397de0;
  letter-spacing: 0;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left .current_year p ._enafret {
  color: #397de0;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left .current_year__bottom {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #e9e9e9;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table tbody tr {
  border-bottom: 1px solid #e9e9e9;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table tbody tr th,
#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table tbody tr td {
  width: 50%;
  padding: 0 15px;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table tbody tr th {
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table tbody tr td {
  text-align: right;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #397de0;
  padding: 0.3em 0.5em;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table tbody tr td .en {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 55px;
  font-size: 3.4375rem;
  letter-spacing: 0;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #e9e9e9;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr {
  border-bottom: 1px solid #e9e9e9;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr th {
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  position: relative;
  padding-left: 50px;
  letter-spacing: 0.05em;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr th span {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr th:before {
  content: "";
  background-image: url(https://placehold.jp/33x55.png);
  display: block;
  width: 30px;
  height: 48px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr:first-child th:before {
  background-image: url(../img/data-1__top__bottom__contents__right-th1.svg);
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr:nth-child(2) th:before {
  background-image: url(../img/data-1__top__bottom__contents__right-th2.svg);
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr:nth-child(3) th:before {
  background-image: url(../img/data-1__top__bottom__contents__right-th3.svg);
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr:nth-child(4) th:before {
  background-image: url(../img/data-1__top__bottom__contents__right-th4.svg);
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr:nth-child(5) th:before {
  background-image: url(../img/data-1__top__bottom__contents__right-th5.svg);
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr td {
  text-align: right;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #397de0;
  padding: 0.3em 0.5em;
}

#data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr td .en {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 50px;
  font-size: 3.125rem;
  letter-spacing: 0;
}

#data-1 .data-1__top .data-1__top__bottom__comment {
  zoom: 1;
  background: #e9e9e9;
  margin-top: 80px;
}

#data-1 .data-1__top .data-1__top__bottom__comment:before {
  content: " ";
  display: table;
}

#data-1 .data-1__top .data-1__top__bottom__comment:after {
  content: " ";
  display: table;
  clear: both;
}

#data-1 .data-1__top .data-1__top__bottom__comment p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 30px;
}

@media all and (max-width: 639px) {
  #data-1 h4 {
    font-size: 25px;
  }
}

@media all and (max-width: 974px) {
  #data-1 h4 {
    width: 100%;
    padding: 0 30px;
  }
}

#data-2 {
  zoom: 1;
  background: #e9e9e9;
  position: relative;
  display: block;
  padding: 0 0 80px;
}

#data-2:before {
  content: " ";
  display: table;
}

#data-2:after {
  content: " ";
  display: table;
  clear: both;
}

#data-2 h4 {
  color: #397de0;
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  position: relative;
  margin-top: -0.75em;
}

#data-2 h4:before {
  content: "";
  display: block;
  width: 40%;
  width: calc(50% - 3.2em);
  width: -webkit-calc(50% - 3.2em);
  height: 1px;
  border-bottom: 1px solid #397de0;
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}

#data-2 h4:after {
  content: "";
  display: block;
  width: 40%;
  width: calc(50% - 3.2em);
  width: -webkit-calc(50% - 3.2em);
  height: 1px;
  border-bottom: 1px solid #397de0;
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

#data-2 .data-2__content__inner {
  width: 100%;
  display: table;
  margin-top: 60px;
}

#data-2 .data-2__content__inner .inner__item {
  float: left;
  width: 46%;
  margin-right: 8%;
}

#data-2 .data-2__content__inner .inner__item:last-child {
  margin-right: 0;
}

#data-2 .data-2__content__inner .inner__item .inner__item__title {
  width: 100%;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0.3em 0.5em;
  display: table;
}

#data-2 .data-2__content__inner .inner__item .inner__item__title p {
  width: 50%;
  float: left;
  vertical-align: middle;
}

#data-2 .data-2__content__inner .inner__item .inner__item__title p.inner__item__title-left {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  text-align: left;
  font-weight: 400;
  margin-top: 0.3em;
  line-height: 1.4em;
}

#data-2 .data-2__content__inner .inner__item .inner__item__title p.inner__item__title__right {
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 60px;
  font-size: 3.75rem;
  letter-spacing: 0.1em;
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-weight: 400;
  text-align: right;
  letter-spacing: 0;
}

#data-2 .data-2__content__inner .inner__item .inner__item__title p.inner__item__title__right span {
  font-size: 25px;
  font-size: 1.5625rem;
  margin-left: -0.5em;
}

#data-2 .data-2__content__inner .inner__item .inner__item__text {
  margin-top: 1.5em;
}

#data-2 .data-2__content__inner .inner__item .inner__item__text p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-align: justify;
}

@media all and (max-width: 639px) {
  #data-2 h4 {
    font-size: 25px;
  }
}

#data-3 {
  margin-top: 130px;
  margin-bottom: 80px;
}

#data-3 .data-3__contents ul {
  display: table;
  width: 100%;
}

#data-3 .data-3__contents ul li {
  float: left;
  width: 46%;
  margin-right: 8%;
  margin-bottom: 80px;
}

#data-3 .data-3__contents ul li:nth-child(even) {
  margin-right: 0;
}

#data-3 .data-3__contents ul li .data-3__contents__item {
  width: 100%;
}

#data-3 .data-3__contents ul li .data-3__contents__item .data-3__contents__item__title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: 0.1em;
  color: #397de0;
  font-weight: 400;
  text-align: center;
  position: relative;
  line-height: 2.9em;
  margin-bottom: 30px;
}

#data-3 .data-3__contents ul li .data-3__contents__item .data-3__contents__item__title:before {
  width: 100%;
  height: 105%;
  content: "";
  display: block;
  background-image: url(../img/data-3__contents__item__title__back.svg);
  background-repeat: no-repeat;
  z-index: -1;
  position: absolute;
}

#data-3 .data-3__contents ul li .data-3__contents__item .data-3__contents__item__text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16ppx;
  font-size: 1prem;
  letter-spacing: 0.1em;
}

#selection_flow {
  background-image: url(../img/selection_flow__back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

#selection_flow .selection_flow__contents {
  display: table;
  background: #ff8000;
  color: #fff;
  padding: 150px 0;
  position: relative;
}

#selection_flow .selection_flow__contents:before,
#selection_flow .selection_flow__contents:after {
  content: "";
  display: block;
  height: 100%;
  width: 110px;
  height: 103%;
  position: absolute;
}

#selection_flow .selection_flow__contents:before {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #ff801e)) no-repeat top left/100% 100%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, #ff801e 50.5%) no-repeat top left/100% 100%;
  bottom: 0;
  left: -110px;
}

#selection_flow .selection_flow__contents:after {
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #ff801e)) no-repeat top left/100% 100%;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #ff801e 50.5%) no-repeat top left/100% 100%;
  top: 0;
  right: -110px;
}

#selection_flow .selection_flow__contents h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul {
  border-left: 1px solid #fff;
  margin-top: 30px;
  position: relative;
  padding-left: 15px;
  margin-left: 15px;
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul li {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  margin-left: 1em;
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul li:before {
  content: "";
  display: inline-block;
  width: 31px;
  height: 31px;
  position: absolute;
  left: -15px;
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul li:first-child:before {
  background-image: url(../img/selection_flow__contents__list-before1.svg);
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul li:nth-child(2):before {
  background-image: url(../img/selection_flow__contents__list-before2.svg);
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul li:nth-child(3):before {
  background-image: url(../img/selection_flow__contents__list-before3.svg);
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul li:nth-child(4):before {
  background-image: url(../img/selection_flow__contents__list-before4.svg);
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul li:nth-child(5):before {
  background-image: url(../img/selection_flow__contents__list-before5.svg);
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul li:nth-child(6):before {
  background-image: url(../img/selection_flow__contents__list-before6.svg);
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul li:nth-child(7):before {
  background-image: url(../img/selection_flow__contents__list-before7.svg);
}

#selection_flow .selection_flow__contents .selection_flow__contents__list ul li:last-child {
  margin-bottom: 0;
}

@media all and (max-width: 639px) {
  #selection_flow .selection_flow__contents h4 {
    font-size: 25px;
  }
}

#entry {
  padding-top: 170px;
  padding-bottom: 170px;
  background: #397de0;
  color: #fff;
}

#entry h4 {
  text-align: center;
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  margin-bottom: 50px;
}

#entry .entry__contents__read {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

#entry .entry__contents__entoryform table {
  width: 100%;
  border-top: 1px solid #fff;
  margin-top: 50px;
}

#entry .entry__contents__entoryform table tbody tr {
  border-bottom: 1px dashed #fff;
}

#entry .entry__contents__entoryform table tbody tr th {
  text-align: left;
  width: 40%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19px;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  position: relative;
}

#entry .entry__contents__entoryform table tbody tr th span {
  background: #ff8000;
  position: absolute;
  right: 0.5em;
  font-size: 12px;
  padding: 0.3em 0.8em;
}

#entry .entry__contents__entoryform table tbody tr td {
  width: 60%;
  padding: 1.2em 0 1.2em 1em;
  border-left: 1px solid #fff;
}

#entry .entry__contents__entoryform table tbody tr td input {
  padding: 0.5em;
}

#entry .entry__contents__entoryform table tbody tr td label {
  position: relative;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#entry .entry__contents__entoryform table tbody tr td label.checkbox {
  margin-right: 2em;
  display: inline-block;
}

#entry .entry__contents__entoryform table tbody tr td label.checkbox input[type="checkbox"] {
  position: relative;
  margin: 0 10px 0 0;
  cursor: pointer;
}

#entry .entry__contents__entoryform table tbody tr td label.checkbox input[type="checkbox"]:before {
  position: absolute;
  z-index: 1;
  top: 0.25rem;
  left: 0.1875rem;
  width: 0.75rem;
  height: 0.375rem;
  content: "";
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  border: 2px solid #ff8000;
  border-top-style: none;
  border-right-style: none;
}

#entry .entry__contents__entoryform table tbody tr td label.checkbox input[type="checkbox"]:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}

#entry .entry__contents__entoryform table tbody tr td label.checkbox input[type="checkbox"]:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  content: "";
  cursor: pointer;
  border: 2px solid #f2f2f2;
  background: #ffffff;
}

#entry .entry__contents__entoryform table tbody tr td label.radio_text {
  line-height: 135%;
  margin-right: 2em;
  display: inline-block;
}

#entry .entry__contents__entoryform table tbody tr td label.radio_text input[type="radio"] {
  position: relative;
  margin: 0 5px 0 0;
  cursor: pointer;
}

#entry .entry__contents__entoryform table tbody tr td label.radio_text input[type="radio"]:before {
  position: absolute;
  z-index: 1;
  top: 0.125rem;
  left: 0rem;
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  border-radius: 50%;
  background: #ff8000;
}

#entry .entry__contents__entoryform table tbody tr td label.radio_text input[type="radio"]:checked:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

#entry .entry__contents__entoryform table tbody tr td label.radio_text input[type="radio"]:after {
  position: absolute;
  top: 0;
  left: -0.125rem;
  width: 1rem;
  height: 1rem;
  content: "";
  border: 2px solid #f2f2f2;
  border-radius: 50%;
  background: #ffffff;
}

#entry .entry__contents__entoryform table tbody tr td label.text input[type="text"] {
  width: 100%;
  background: #e7e7e7;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#entry .entry__contents__entoryform table tbody tr td label.text input[type="text"]:focus {
  background: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#entry .entry__contents__entoryform table tbody tr td label.text.group input[type="text"] {
  margin-bottom: 0.5em;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#entry .entry__contents__entoryform table tbody tr td label.age input[type="text"] {
  width: 3em;
  background: #e7e7e7;
  margin-right: 0.5em;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#entry .entry__contents__entoryform table tbody tr td label.age input[type="text"]:focus {
  background: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#entry .entry__contents__entoryform table tbody tr td label.textarea textarea {
  width: 100%;
  background: #e7e7e7;
  padding: 0.5em;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#entry .entry__contents__entoryform table tbody tr td label.textarea textarea:focus {
  background: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#entry .entry__contents__entoryform table tbody tr td label.botton {
  float: left;
  width: 50%;
  padding-right: 20px;
  margin-bottom: 15px;
}

#entry .entry__contents__entoryform table tbody tr td label.botton.reset {
  padding-left: 20px;
  padding-right: 0;
}

#entry .entry__contents__entoryform table tbody tr td label.botton input[type="submit"] {
  background: #fff;
  border: 1px solid #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 0.5em 1em;
  width: 100%;
  cursor: pointer;
}

#entry .entry__contents__entoryform table tbody tr td label.botton input[type="reset"] {
  color: #fff;
  border: 1px solid #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 0.5em 1em;
  width: 100%;
  cursor: pointer;
}

#entry .entry__contents__entoryform table tbody tr td span.annotation {
  zoom: 1;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

#entry .entry__contents__entoryform table tbody tr td span.annotation:before {
  content: " ";
  display: table;
}

#entry .entry__contents__entoryform table tbody tr td span.annotation:after {
  content: " ";
  display: table;
  clear: both;
}

#entry .entry__contents__entoryform table tbody tr:nth-last-child(2) {
  border-bottom-style: solid;
}

#entry .entry__contents__entoryform table tbody tr:last-child {
  border: none;
}

#entry .entry__contents__entoryform table tbody tr:last-child td {
  border: none;
  padding: 30px 0 0;
}

@media all and (max-width: 639px) {
  #entry h4 {
    font-size: 25px;
  }
}

#entry__contact .contact__contents__middle .contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 70px;
}

#entry__contact .contact__contents__middle .contact-list li {
  width: 33.33333%;
  width: calc(100% / 3);
  display: inline-block;
  text-align: center;
}

#entry__contact .contact__contents__middle .contact-list li p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19pxpx;
  font-size: 1.1875pxrem;
  letter-spacing: 0.1em;
  color: #397de0;
  font-weight: 300;
}

#entry__contact .contact__contents__middle .contact-list li p.fax {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

#entry__contact .contact__contents__middle .contact-list li img {
  margin: 15px auto;
}

#entry__contact .contact__contents__middle .contact-list li a p {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 40px;
  color: #397de0;
  font-weight: 400;
  letter-spacing: 0.04em;
}

#entry__contact .back-gray {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19pxpx;
  font-size: 1.1875pxrem;
  letter-spacing: 0.1em;
  font-weight: 300;
  background: #e9e9e9;
  padding: 0.5em 1em;
  display: table;
  margin: 20px auto 70px;
}

#entry__contact .back-gray span {
  font-size: 16px;
}

#privacy-top {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-position: center bottom;
  height: 50vh;
  background-image: url(../img/privacy_back.jpg);
  position: relative;
}

#privacy-top h2 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  height: 1em;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  color: #fff;
  top: 0;
  bottom: 0;
}

@media all and (max-width: 639px) {
  #privacy-top h2 {
    font-size: 25px;
  }
}

.privacy__main {
  margin-top: 170px;
}

.privacy__main .privacy__main__list .privacy__main__item {
  margin-bottom: 140px;
}

.privacy__main .privacy__main__list .privacy__main__item:last-child {
  margin-bottom: 0;
}

.privacy__main .privacy__main__list .privacy__main__item h3 {
  border-top: 1px solid #397de0;
  border-bottom: 1px solid #397de0;
  color: #397de0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19px;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  padding: 0.5em 0;
  margin-bottom: 1.5em;
  font-weight: 500;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8em;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents p.privacy__main__second-list-read {
  margin-top: 2em;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents ul {
  margin: 2em 0;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents ul li {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.8em;
  line-height: 1.5em;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents ul li:last-child {
  margin-bottom: 0;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents ul.back-gray {
  background: #e9e9e9;
  padding: 2em;
  margin: 1em 0 0;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents .privacy__main__item-contents__innercontents {
  margin: 2em 0;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents .privacy__main__item-contents__innercontents p {
  margin: 2em 0 0;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents .privacy__main__item-contents__innercontents p.back-gray {
  background: #e9e9e9;
  margin: 2em 0 0;
  display: table;
  padding: 0.2em 0.5em;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents .privacy__main__item-contents__innercontents p.back-gray-after {
  margin-top: 0.5em;
}

.privacy__main .privacy__main__list .privacy__main__item .privacy__main__item-contents .privacy__main__item-contents__innercontents p span {
  color: #397de0;
  display: block;
}

.privacy__main .privacy__main__bottom {
  border-top: 1px solid #e9e9e9;
  margin-top: 2em;
  padding-top: 2em;
}

.privacy__main .privacy__main__bottom p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.privacy__main .privacy__main__bottom p span {
  display: block;
  line-height: 1.8em;
}

i svg {
  width: 17px;
  height: 17px;
  margin-right: 3px;
  vertical-align: -3px;
}

#contact {
  margin-top: 170px;
}

#contact .contact__top {
  background: #ff8000;
  padding: 2em 0;
  margin-bottom: 70px;
}

#contact .contact__top h4 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #fff;
  text-align: center;
}

#contact .contact__contents .contact__contents__middle .contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 70px;
}

#contact .contact__contents .contact__contents__middle .contact-list li {
  width: 33.33333%;
  width: calc(100% / 3);
  display: inline-block;
  text-align: center;
}

#contact .contact__contents .contact__contents__middle .contact-list li p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19px;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  color: #ff8000;
  font-weight: 300;
}

#contact .contact__contents .contact__contents__middle .contact-list li p.fax {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 40px;
  color: #ff8000;
  font-weight: 400;
  letter-spacing: 0.04em;
}

#contact .contact__contents .contact__contents__middle .contact-list li img {
  margin: 15px auto;
}

#contact .contact__contents .contact__contents__middle .contact-list li a p {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-size: 40px;
  color: #ff8000;
  font-weight: 400;
  letter-spacing: 0.04em;
}

#contact .contact__contents .back-gray {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19pxpx;
  font-size: 1.1875pxrem;
  letter-spacing: 0.1em;
  font-weight: 300;
  background: #e9e9e9;
  padding: 0.5em 1em;
  display: table;
  margin: 20px auto 0;
}

#contact .contact__contents .back-gray span {
  font-size: 16px;
}

#contact .contact__contents .contact__contents__bottom {
  margin-top: 70px;
}

#contact .contact__contents .contact__contents__bottom .mailform {
  width: 100%;
  border-top: 1px solid #397de0;
}

#contact .contact__contents .contact__contents__bottom .mailform tr {
  width: 100%;
}

#contact .contact__contents .contact__contents__bottom .mailform tr th {
  width: 336px;
  border-bottom: 1px dashed #397de0;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19pxpx;
  font-size: 1.1875pxrem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #397de0;
  padding: 1em 0.8em 1em 0;
  border-right: 1px solid #397de0;
}

#contact .contact__contents .contact__contents__bottom .mailform tr th span {
  background: #397de0;
  color: #fff;
  font-size: 14px;
  padding: 5px 7px;
  float: right;
}

#contact .contact__contents .contact__contents__bottom .mailform tr td {
  width: 642px;
  border-bottom: 1px dashed #397de0;
  padding: 1em 0 1em 0.8em;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16pxpx;
  font-size: 1pxrem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

#contact .contact__contents .contact__contents__bottom .mailform tr td input,
#contact .contact__contents .contact__contents__bottom .mailform tr td button,
#contact .contact__contents .contact__contents__bottom .mailform tr td textarea,
#contact .contact__contents .contact__contents__bottom .mailform tr td select {
  width: 100%;
  background: #e9e9e9;
  padding-left: 10px;
  line-height: 2em;
}

#contact .contact__contents .contact__contents__bottom .mailform tr td label {
  margin-bottom: 1em;
  margin-right: 2em;
}

#contact .contact__contents .contact__contents__bottom .mailform tr td label:last-child {
  margin-bottom: 0;
}

#contact .contact__contents .contact__contents__bottom .mailform tr td label input {
  height: 1.5em;
  width: 1.5em;
  border: 1px solid #e9e9e9;
  background: none;
  padding: 0;
  margin-right: 0.5em;
  vertical-align: middle;
}

#contact .contact__contents .contact__contents__bottom .mailform tr td label.checkbox {
  margin-right: 2em;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

#contact .contact__contents .contact__contents__bottom .mailform tr td label.checkbox input[type="checkbox"] {
  border: none;
  position: relative;
  margin: 0 10px 0 0;
  cursor: pointer;
}

#contact .contact__contents .contact__contents__bottom .mailform tr td label.checkbox input[type="checkbox"]:before {
  position: absolute;
  z-index: 1;
  top: 0.125rem;
  left: 0.1875rem;
  width: 0.75rem;
  height: 0.375rem;
  content: "";
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  border: 2px solid #ff8000;
  border-top-style: none;
  border-right-style: none;
}

#contact .contact__contents .contact__contents__bottom .mailform tr td label.checkbox input[type="checkbox"]:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}

#contact .contact__contents .contact__contents__bottom .mailform tr td label.checkbox input[type="checkbox"]:after {
  position: absolute;
  top: -0.125rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  content: "";
  cursor: pointer;
  border: 2px solid #f2f2f2;
  background: #ffffff;
}

#contact .contact__contents .contact__contents__bottom .mailform tr:nth-last-child(2) td,
#contact .contact__contents .contact__contents__bottom .mailform tr:nth-last-child(2) th {
  border-bottom-style: solid;
}

#contact .contact__contents .contact__contents__bottom .mailform tr:last-child td,
#contact .contact__contents .contact__contents__bottom .mailform tr:last-child th {
  border: none;
}

#contact .contact__contents .contact__contents__bottom .mailform tr:last-child td {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13pxpx;
  font-size: 0.8125pxrem;
  letter-spacing: 0.1em;
  display: table;
  margin-top: 30px;
}

#contact .contact__contents .contact__contents__bottom .mailform tr:last-child td input {
  width: 48%;
  width: calc(96% / 2);
  display: table-cell;
  margin-right: 4%;
  border: 1px solid #ff8000;
  padding: 0.5em 0;
  background: #ff8000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19pxpx;
  font-size: 1.1875pxrem;
  letter-spacing: 0.1em;
  font-weight: 500;
  float: left;
  margin-bottom: 15px;
  cursor: pointer;
}

#contact .contact__contents .contact__contents__bottom .mailform tr:last-child td input.reset {
  margin-right: 0;
  background: #fff;
  color: #ff8000;
  float: right;
}

#contact .contact__contents .contact__contents__bottom .mailform tr:last-child td .annotation {
  zoom: 1;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13pxpx;
  font-size: 0.8125pxrem;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
  font-weight: 300;
}

#contact .contact__contents .contact__contents__bottom .mailform tr:last-child td .annotation:before {
  content: " ";
  display: table;
}

#contact .contact__contents .contact__contents__bottom .mailform tr:last-child td .annotation:after {
  content: " ";
  display: table;
  clear: both;
}

@media all and (max-width: 639px) {
  #contact .contact__top h4 {
    font-size: 25px;
  }
}

#main-footer {
  margin-top: 170px;
}

#main-footer .blog {
  background: #e9e9e9;
  padding: 100px 0;
}

#main-footer .blog h5 {
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #397de0;
  text-align: center;
}

#main-footer .blog .blog__contents {
  margin-top: 50px;
  background: #fff;
  padding: 30px;
}

#main-footer .blog .blog__contents ul li {
  margin-bottom: 30px;
}

#main-footer .blog .blog__contents ul li:last-child {
  margin-bottom: 0;
}

#main-footer .blog .blog__contents ul li .post-item {
  display: table;
  margin: 0 auto;
}

#main-footer .blog .blog__contents ul li .post-item .thumbnail-link,
#main-footer .blog .blog__contents ul li .post-item .post-item__text {
  display: table-cell;
  vertical-align: top;
}

#main-footer .blog .blog__contents ul li .post-item .thumbnail-link {
  padding-right: 30px;
}

#main-footer .blog .blog__contents ul li .post-item img {
  width: 145px;
}

#main-footer .blog .blog__contents ul li .post-item .post-item__text {
  width: 711px;
}

#main-footer .blog .blog__contents ul li .post-item .post-item__text p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13pxpx;
  font-size: 0.8125pxrem;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}

#main-footer .blog .blog__contents ul li .post-item .post-item__text p.post-title {
  font-size: 19px;
  color: #397de0;
  margin: 8px 0;
  line-height: 1.3em;
  letter-spacing: 0.1em;
}

#main-footer .blog .blog__contents ul li .post-item .post-item__text p.data {
  font-family: "Roboto Condensed", "Noto Sans Japanese";
  font-weight: 400;
}

#main-footer .sitemap {
  background: #397de0;
  padding: 100px 0;
}

#main-footer .sitemap img.logo {
  display: block;
  margin: auto;
}

#main-footer .sitemap .sitemap__content {
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

#main-footer .sitemap .sitemap__content .sitemap__content-nav {
  max-width: 100%;
  display: table;
  margin: 30px auto 0;
}

#main-footer .sitemap .sitemap__content .sitemap__content-nav .sitemap__content-nav-item {
  display: inline-block;
  padding-right: 60px;
  vertical-align: top;
}

#main-footer .sitemap .sitemap__content .sitemap__content-nav .sitemap__content-nav-item:last-child {
  padding-right: 0;
}

#main-footer .sitemap .sitemap__content .sitemap__content-nav .sitemap__content-nav-item a {
  color: #fff;
}

#main-footer .sitemap .sitemap__content .sitemap__content-nav .sitemap__content-nav-item p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 19pxpx;
  font-size: 1.1875pxrem;
  letter-spacing: 0.1em;
}

#main-footer .sitemap .sitemap__content .sitemap__content-nav .sitemap__content-nav-item ul {
  margin-top: 15px;
}

#main-footer .sitemap .sitemap__content .sitemap__content-nav .sitemap__content-nav-item ul li {
  display: table;
}

#main-footer .sitemap .sitemap__content .sitemap__content-nav .sitemap__content-nav-item ul li a {
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}

#main-footer .sitemap .sitemap__content .sitemap__content-nav .sitemap__content-nav-item ul li a:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 280ms ease-in-out;
  transition: all 280ms ease-in-out;
  width: 0;
}

#main-footer .sitemap .sitemap__content .sitemap__content-nav .sitemap__content-nav-item ul li a:hover:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-color: #fff;
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
  width: 100%;
}

#main-footer .sitemap .sitemap__content .foot_snslink {
  display: table;
  margin: 45px auto 30px;
}

#main-footer .sitemap .sitemap__content .foot_snslink li {
  display: inline-block;
}

#main-footer .sitemap .sitemap__content .foot_snslink li a {
  font-weight: 400;
  text-align: center;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  display: block;
  padding: 0.3em 4em;
  position: relative;
}

#main-footer .sitemap .sitemap__content .foot_snslink li a:before {
  content: "";
  background-image: url(../img/foot_snslink-1.svg);
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
  background-repeat: no-repeat;
}

#main-footer .sitemap .sitemap__content .foot_snslink li a.facebook:before {
  background-image: url(../img/foot_snslink-2.svg);
}

#main-footer .sitemap .sitemap__content .foot_snslink li a.twitte:before {
  background-image: url(../img/foot_snslink-3.svg);
}

#main-footer .sitemap .sitemap__content .foot_snslink li a:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0);
  bottom: -6px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 280ms ease-in-out;
  transition: all 280ms ease-in-out;
  width: 0;
}

#main-footer .sitemap .sitemap__content .foot_snslink li a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#main-footer .sitemap .sitemap__content .foot_snslink li a:hover:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-color: #fff;
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
  width: 100%;
}

#main-footer .googlemp {
  position: relative;
  padding-bottom: 20%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

#main-footer .googlemp iframe,
#main-footer .googlemp object,
#main-footer .googlemp embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#main-footer .foot-company {
  background: #f2f2f2;
  padding: 30px 0;
}

#main-footer .foot-company img {
  width: 375px;
}

#main-footer .foot-company .foot-company__contents {
  text-align: center;
}

#main-footer .foot-company .foot-company__contents .logo {
  margin: auto;
}

#main-footer .foot-company .foot-company__contents .cpmpany-address {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12pxpx;
  font-size: 0.75pxrem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #555;
  margin-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

#main-footer .foot-company .foot-company__contents .cpmpany-address ul {
  display: table;
  margin: auto;
}

#main-footer .foot-company .foot-company__contents .cpmpany-address ul li {
  display: table-cell;
  color: #555;
}

#main-footer .foot-company .foot-company__contents .cpmpany-address ul li a {
  color: #555;
  margin-right: 1em;
  margin-left: 0.5em;
}

#main-footer .foot-company .foot-company__contents .cpmpany-address ul li:last-child a {
  margin-right: 0;
}

#main-footer .foot-company .foot-company__contents .copyright {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

#main-footer .foot-company .foot-company__contents .copyright br.tab {
  display: none;
}

@media all and (max-width: 639px) {
  #main-footer .blog h5 {
    font-size: 25px;
  }
}

#page__thanks #site-header {
  background: #fff;
}

#page__thanks #thanks {
  padding-top: 180px;
}

#page__thanks #thanks h2 {
  font-size: 40px;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #397de0;
  text-align: center;
  margin-bottom: 30px;
}

#page__thanks #thanks .thanks_text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-align: center;
}

#page__thanks #contact {
  margin-top: 100px;
}

@media all and (max-width: 639px) {
  #page__thanks #thanks h2 {
    font-size: 25px;
  }
}

#page_recruitfooter #contact {
  display: none;
}

#page_recruitfooter #main-footer {
  margin-top: 0;
}

.to-top {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16pxpx;
  font-size: 1pxrem;
  letter-spacing: 0.1em;
  position: fixed;
  z-index: 99;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  font-weight: 500;
  color: #ff8000;
  text-align: center;
  letter-spacing: 0.07em;
}

.to-top img {
  display: block;
  margin: 0 auto 10px;
}

.scrollbar {
  height: 445px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 15px;
}

.scrollbar::-webkit-scrollbar {
  overflow: hidden;
  width: 1px;
  background: #fafafa;
}

.scrollbar::-webkit-scrollbar:horizontal {
  height: 1px;
}

.scrollbar::-webkit-scrollbar-button {
  display: none;
}

.scrollbar::-webkit-scrollbar-piece {
  background: #eee;
}

.scrollbar::-webkit-scrollbar-piece:start {
  background: #eee;
}

.scrollbar::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-corner {
  background: #144389;
}

.mitle-check {
  padding: 5px;
  margin: 25px 0 15px 0;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
  color: #144389;
  font-weight: bold;
  overflow: hidden;
}

@media all and (max-width: 974px) {
  br {
    display: none;
  }

  br.tab {
    display: block;
  }

  #top_main .top_main__contnts.page_recruit h3 br {
    display: block;
  }

  #site-header {
    background: #397de0;
    z-index: 999;
    padding-bottom: 0;
  }

  #site-header #nav-drawer {
    position: relative;
    display: block;
  }

  #site-header .nav-unshown {
    display: none;
  }

  #site-header #nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    position: fixed;
    top: 15px;
    left: 15px;
  }

  #site-header #nav-open span {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
    display: block;
    content: "";
    cursor: pointer;
  }

  #site-header #nav-open span:before,
  #site-header #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
    display: block;
    content: "";
    cursor: pointer;
  }

  #site-header #nav-open span:before {
    bottom: -8px;
  }

  #site-header #nav-open span:after {
    bottom: -16px;
  }

  #site-header #nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  #site-header h1 {
    text-align: center;
  }

  #site-header h1 img {
    width: 318px;
  }

  #site-header #nav-content {
    overflow: auto;
    position: fixed;
    padding-top: 50px;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 330px;
    height: 100%;
    background: #397de0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
  }

  #site-header #nav-content .sp_navi li {
    text-align: center;
    margin: 0 0 0;
    padding: 15px 0;
  }

  #site-header #nav-content .sp_navi li a {
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    font-size: 19px;
    font-size: 1.1875rem;
    letter-spacing: 0.1em;
  }

  #site-header #nav-content .sp_navi li a:visited {
    color: #fff;
  }

  #site-header #nav-content .sp_navi li .sns__link {
    display: table;
    width: auto;
    margin: auto;
  }

  #site-header #nav-content .sp_navi li .sns__link li {
    float: left;
    margin-left: 1em;
  }

  #site-header #nav-content .sp_navi li .sns__link li:first-child {
    margin-left: 0;
  }

  #site-header #nav-content .sp_navi li .sns__link li a {
    font-size: 70%;
    display: block;
  }

  #site-header #nav-content .sp_navi li .sns__link li a:before {
    content: "";
    background-image: url(../img/foot_snslink-1.svg);
    width: 30px;
    height: 30px;
    display: block;
    margin-right: 7px;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin: auto;
    margin-bottom: 10px;
  }

  #site-header #nav-content .sp_navi li .sns__link li a.facebook:before {
    background-image: url(../img/foot_snslink-2.svg);
  }

  #site-header #nav-content .sp_navi li .sns__link li a.twitte:before {
    background-image: url(../img/foot_snslink-3.svg);
  }

  #site-header #nav-input:checked~#nav-close {
    display: block;
    opacity: 0.5;
  }

  #site-header #nav-input:checked~#nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }

  #site-header .head__contents,
  #site-header .head__sub__contents {
    display: none;
  }

  #page__anchor .page__anchor__contents ul {
    display: table;
    padding: 0 30px;
  }

  #page__anchor .page__anchor__contents ul li {
    display: table-cell;
  }

  #service .service__maincontents .service__maincontents__item img {
    width: 30%;
  }

  #service .service__maincontents .service__maincontents__item .service__maincontents__item__text {
    width: 70%;
  }

  #service .service__maincontents .service__maincontents__item .service__maincontents__item__text p {
    line-height: 1.8em;
  }

  #service .service__maincontents .service__maincontents__item.first .service__maincontents__item__text,
  #service .service__maincontents .service__maincontents__item.third .service__maincontents__item__text {
    padding-left: 30px;
  }

  #service .service__maincontents .service__maincontents__item.second img,
  #service .service__maincontents .service__maincontents__item.second .service__maincontents__item__text {
    margin-left: 0;
  }

  #service .service__maincontents .service__maincontents__item.first._management-box img {
    margin-left: 0;
  }

  #service .service__bottomcontents._management .service__bottomcontents__text img {
    width: 30%;
  }

  #service .service__bottomcontents._management .service__bottomcontents__text p {
    width: 70%;
    padding-left: 50px;
  }

  #price .price__contents__top .price__contents__inner {
    float: none;
  }

  #price .price__contents__top .price__contents__inner.left h4 {
    text-align: center;
    margin-bottom: 30px;
  }

  #price .price__contents__top .price__contents__inner.left h4 br {
    display: none;
  }

  #price .price__contents__top .price__contents__inner.right {
    margin: auto;
    float: none;
  }

  #price .price__contents__middle .price__contents__middle__item {
    width: 48%;
  }

  #price .price__contents__middle .price__contents__middle__item.left {
    margin-right: 4%;
  }

  #price .price__contents__bottom .price__contents__middle__item {
    width: 30.666666666%;
    width: calc(92% / 3);
    margin-right: 4%;
  }

  #price .price__contents__bottom .price__contents__middle__item.cms {
    width: 30.666666666%;
    width: calc(92% / 3);
  }

  #price .rwd .rwd-contents p {
    font-size: 16px;
  }

  #price .rwd .rwd-contents p img {
    width: 50px;
  }

  #price .rwd .rwd-contents p:last-child .en {
    font-size: 37px;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item {
    width: 31%;
    margin-right: 3.5%;
    vertical-align: top;
  }

  #pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li {
    width: 31%;
    margin-right: 3.5%;
  }

  #pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__title {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    font-size: 25px;
    font-size: 1.5625rem;
    letter-spacing: 0.1em;
  }

  #pc-price .price__contents_pc-rental__bottom .price__contents_pc-rental__bottom__list li.price__contents_pc-rental__bottom__title br {
    display: block;
  }

  #lineup .lineup-contents .tab_area {
    width: 73%;
  }

  #lineup .lineup-contents .lineup-contents__table table tbody tr th {
    width: 27%;
  }

  #lineup .lineup-contents .lineup-contents__table table tbody tr td {
    width: 73%;
  }

  #works h4 {
    line-height: initial;
  }

  #works .works__contents ul li span {
    font-size: 16px;
  }

  #flow .flow__contents .flow__contents__slide .slide-arrow.prev-arrow {
    left: 5px;
  }

  #flow .flow__contents .flow__contents__slide .slide-arrow.next-arrow {
    right: 5px;
  }

  #flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents {
    width: 100%;
  }

  #flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right p ._sp {
    display: block;
  }

  #voc .voc__contents .voc__contents__list {
    width: 100%;
  }

  #voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__left {
    width: 35%;
    padding-right: 30px;
  }

  #voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__right {
    width: 65%;
  }

  #voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__right br._sp {
    display: block;
  }

  #about .about__contents {
    display: block;
  }

  #about .about__contents .about__contents__left,
  #about .about__contents .about__contents__right {
    float: none;
    margin: auto;
  }

  #about .about__contents .about__contents__left {
    margin-bottom: 30px;
  }

  #greeting br,
  #performance .performance__contents .performance__contents__item .performance__contents__item__inner .performance__contents__item__inner__text p br {
    display: block;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content2 {
    background-size: contain;
  }

  #regional .regional__contents-1 {
    padding: 20px 0;
  }

  #regional .regional__contents-1 .regional__contents__item br {
    display: block;
  }

  #regional .regional__contents-1 .regional__contents__item.regional__contents-1-inner {
    margin-bottom: 0;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__left {
    width: 45%;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__left img {
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__right {
    width: 50%;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__right br {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__works br {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-3 .regional__contents-3__inner .regional__contents-3__inner__left {
    width: 50%;
  }

  #regional .regional__contents__item.regional__contents-3 .regional__contents-3__inner .regional__contents-3__inner__left br {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-3 .regional__contents-3__inner .regional__contents-3__inner__right {
    width: 45%;
  }

  #regional .regional__contents__item.regional__contents-3 .regional__contents-3__inner .regional__contents-3__inner__right img {
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-4 br {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__left {
    width: 45%;
  }

  #regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__left img {
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__right {
    width: 50%;
  }

  #page_recruit__nev ul li a span {
    font-size: 14px;
    font-size: 0.875rem;
  }

  #page_recruit__nev ul li a span:before {
    display: block;
    margin: auto;
  }

  #recruit__bottomnavi ul li a span {
    font-size: 18px;
    font-size: 1.125rem;
  }

  #recruit-top1 br,
  #recruit-top2 br,
  #recruit-top3 br,
  #requirements__top ul li a br {
    display: block;
  }

  #data-1 .data-1__top .data-1__top__middle table tbody tr th {
    width: 40%;
    font-size: 21px;
    font-size: 1.3125rem;
  }

  #data-1 .data-1__top .data-1__top__middle table tbody tr th .tab {
    display: block;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr th {
    font-size: 17px;
    font-size: 1.0625rem;
    width: 58%;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr th .tab {
    display: block;
  }

  #data-2 .data-2__content__inner .inner__item .inner__item__title p.inner__item__title-left {
    font-size: 17px;
    font-size: 1.0625rem;
    width: 53%;
  }

  #data-2 .data-2__content__inner .inner__item .inner__item__title p.inner__item__title-left br {
    display: block;
  }

  #data-2 .data-2__content__inner .inner__item .inner__item__title p.inner__item__title__right {
    width: 47%;
  }

  #data-2 .data-2__content__inner .inner__item .inner__item__text p {
    font-size: 14px;
    font-size: 0.875rem;
  }

  #data-2 .data-2__content__inner .inner__item .inner__item__text p br {
    display: block;
  }

  #data-3 .data-3__contents ul li .data-3__contents__item .data-3__contents__item__title {
    font-size: 16px;
    font-size: 1rem;
  }

  #data-3 .data-3__contents ul li .data-3__contents__item .data-3__contents__item__title:before {
    height: 111%;
    background-position: center;
  }

  #data-3 .data-3__contents ul li .data-3__contents__item .data-3__contents__item__text {
    font-size: 14px;
    font-size: 0.875rem;
  }

  #data-3 .data-3__contents ul li .data-3__contents__item .data-3__contents__item__text br {
    display: block;
  }

  #selection_flow .selection_flow__back .section-contents {
    padding: 0 80px;
  }

  #selection_flow br {
    display: block;
  }

  #entry .entry__contents__read br {
    display: block;
  }

  #entry .contact__contents__middle .contact-list li p.fax {
    font-size: 22px;
    font-size: 1.375rem;
  }

  #entry .contact__contents__middle .contact-list li img {
    width: 30%;
  }

  #entry .contact__contents__middle .contact-list li a p {
    font-size: 22px;
    font-size: 1.375rem;
  }

  #blog_card {
    padding: 0 30px;
  }

  #blog_card br {
    display: block;
  }

  #contact .contact__contents .contact__contents__middle .contact-list li p.fax {
    font-size: 22px;
    font-size: 1.375rem;
  }

  #contact .contact__contents .contact__contents__middle .contact-list li img {
    width: 30%;
  }

  #contact .contact__contents .contact__contents__middle .contact-list li a p {
    font-size: 22px;
    font-size: 1.375rem;
  }

  #contact .contact__contents .contact__contents__bottom .mailform tr th {
    width: 40%;
  }

  #contact .contact__contents .contact__contents__bottom .mailform tr td {
    width: 60%;
  }

  #contact .contact__contents .contact__contents__bottom .mailform:last-child td {
    width: 100%;
  }

  #main-footer .blog .blog__contents ul li {
    width: 100%;
  }

  #main-footer .blog .blog__contents ul li .post-item {
    width: 100%;
  }

  #main-footer .blog .blog__contents ul li .post-item .thumbnail-link {
    display: table-cell;
    max-width: initial;
    width: 30%;
    padding-right: 15px;
  }

  #main-footer .blog .blog__contents ul li .post-item .thumbnail-link img {
    width: 100%;
    display: block;
    height: auto;
  }

  #main-footer .blog .blog__contents ul li .post-item .post-item__text {
    margin-left: 0;
    width: 70%;
    padding-left: 15px;
    display: table-cell;
  }

  #page__thanks br,
  #equalfoot-thanks br {
    display: block;
  }

  #equalfoot_interview-main .equalfoot_interview__journal {
    width: 693px;
    max-width: 100%;
  }

  #equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__right img {
    width: 391px;
    max-width: 100%;
  }
}

@media all and (max-width: 769px) {
  .contact__contents__bottom {
    overflow: hidden;
  }

  #site-header h1 {
    width: 350px;
    margin-left: 61px;
  }

  #site-header .head__contents,
  #site-header .head__sub__contents {
    display: none;
  }

  #top_main .main-slid .main-slid-item {
    background-attachment: inherit;
  }

  #top_main .top_main__contnts.page_management ba.tab {
    display: block;
  }

  #page__anchor .page__anchor__contents ul li a {
    font-size: 14px;
  }

  #page__anchor .page__anchor__contents ul li a img {
    width: 60%;
  }

  #page__anchor._equalfoot .page__anchor__contents ul li a {
    font-size: 14px;
  }

  #page__anchor._equalfoot .page__anchor__contents ul li a img {
    width: 30%;
  }

  #service .service__maincontents .service__maincontents__item {
    margin-top: 70px;
    padding: 0;
  }

  #service .service__maincontents .service__maincontents__item:last-child {
    padding-bottom: 100px;
  }

  #service .service__maincontents .service__maincontents__item._pc-rental .service__maincontents__item__text h4 {
    font-size: 37px;
  }

  #service .service__maincontents .service__maincontents__item._pc-rental .service__maincontents__item__text h4 br.tab {
    display: block;
  }

  #price {
    margin-top: 100px;
  }

  #price .price__contents__top .price__contents__inner h4 br.tab {
    display: block;
  }

  #price .price__contents__middle .price__contents__middle__item {
    width: 100%;
    margin: 0 0 30px;
  }

  #price .price__contents__middle .price__contents__middle__item .price__contents__middle__item__title {
    margin-bottom: 15px;
  }

  #price .price__contents__middle .price__contents__middle__item .price__contents__middle__item__text ul {
    display: block;
  }

  #price .price__contents__middle .price__contents__middle__item .price__contents__middle__item__text ul li {
    display: block;
    width: 100%;
  }

  #price .price__contents__middle .price__contents__middle__item.left {
    margin-right: 0;
  }

  #price .price__contents__middle .price__contents__middle__item._management:nth-of-type(n + 3) {
    margin-top: 0;
  }

  #price .price__contents__bottom {
    margin-top: 0;
  }

  #price .price__contents__bottom .price__contents__middle__item {
    width: 100%;
    margin: 0 0 30px;
  }

  #price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__title {
    margin-bottom: 15px;
  }

  #price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__title br {
    display: none;
  }

  #price .price__contents__bottom .price__contents__middle__item.cms {
    width: 100%;
  }

  #price .rwd {
    padding: 15px;
    margin-top: 0;
  }

  #price .rwd .rwd-contents {
    display: block;
  }

  #price .rwd .rwd-contents .rwd-contents__tab {
    display: table;
    margin: auto;
  }

  #price .rwd .rwd-contents p {
    text-align: center;
    margin-right: 0;
    font-size: 14px;
  }

  #price .rwd .rwd-contents p.rwd_pc:after {
    margin-right: 10px;
  }

  #price .rwd .rwd-contents p.rwd_price {
    margin-left: 0;
    margin-top: 15px;
    display: block;
  }

  #pc-price {
    margin-top: 100px;
  }

  #pc-price h4 {
    margin-bottom: 50px;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle {
    display: block;
    width: 100%;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item {
    width: 100%;
    display: block;
    margin-right: 0;
    margin-bottom: 100px;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item:last-child {
    margin-bottom: 0;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board.multiple_price {
    display: block;
    background: #ff8000;
    border-color: #ff8000;
    color: #fff;
    position: relative;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board.multiple_price .multiple_price_brck .price_board_main:before {
    border-color: #fff;
    margin-right: 15px;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board.multiple_price .multiple_price_after {
    background: #397de0;
    position: absolute;
    padding: 3px 0.5em;
    font-size: 20px;
    margin: auto;
    left: 0;
    right: 0;
    width: 8em;
    bottom: -1em;
  }

  #pc-price .price__contents_pc-rental__bottom {
    display: none;
  }

  #works {
    margin-top: 100px;
  }

  #works .works__contents ul li {
    padding: 10px;
  }

  #flow {
    margin-top: 100px;
    padding-top: 50px;
  }

  #flow .flow__contents .flow__contents__slide {
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #flow .flow__contents .flow__contents__slide .slide-arrow {
    width: 12px;
  }

  #flow .flow__contents .flow__contents__slide .slide-arrow.prev-arrow {
    left: -23px;
  }

  #flow .flow__contents .flow__contents__slide .slide-arrow.next-arrow {
    right: -23px;
  }

  #flow .flow__contents .flow__contents__slide .slide-dots {
    margin: 30px auto 0;
  }

  #flow .flow__contents .flow__contents__slide .slide-dots li {
    margin: 0 12px 0;
  }

  #flow .flow__contents .flow__contents__slide .slick-track {
    background: #fff;
    padding-bottom: 30px;
  }

  #flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents {
    width: 100%;
  }

  #flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__left {
    width: 100%;
    float: none;
    height: auto;
  }

  #flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__left img {
    width: 100%;
    height: auto;
  }

  #flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right {
    width: 100%;
    float: none;
    height: auto;
    padding: 15px 15px 0;
  }

  #flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right span {
    font-size: 18px;
    margin-bottom: 10px;
  }

  #flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right p {
    font-size: 14px;
    text-align: justify;
  }

  #flow .flow__contents .flow__contents__slide .flow__contents__slide__item .slide__item__contents .slide__item__contents__right p br._sp {
    display: block;
  }

  #voc {
    margin-top: 100px;
  }

  #voc .voc__contents .voc__contents__list {
    width: 100%;
  }

  #voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner {
    display: block;
  }

  #voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__left {
    width: 100%;
    float: none;
    padding-right: 0;
  }

  #voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__right {
    width: 100%;
    float: none;
  }

  #voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__right .title {
    margin-top: 1.5em;
  }

  #voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__right .voc__contents__list__item__inner__right__message {
    text-align: justify;
    line-height: 1.8em;
  }

  #voc .voc__contents .voc__contents__list .voc__contents__list__item .voc__contents__list__item__inner .voc__contents__list__item__inner__right .voc__contents__list__item__inner__right__message br._sp {
    display: block;
  }

  #about {
    margin-top: 100px;
  }

  #about .about__contents .about__contents__left {
    margin-bottom: 50px;
  }

  #greeting {
    margin-top: 100px;
  }

  #performance {
    padding: 100px 0;
    padding-bottom: 70px;
  }

  #performance .performance__contents .performance__contents__item {
    float: none;
    width: 100%;
    background: none;
    padding-top: 0;
    margin-bottom: 50px;
    padding: 0;
  }

  #performance .performance__contents .performance__contents__item.rigth {
    margin-bottom: 0;
  }

  #performance .performance__contents .performance__contents__item h5 {
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 15px;
    padding: 0.3em;
    position: relative;
    width: 264px;
    line-height: inherit;
  }

  #performance .performance__contents .performance__contents__item h5:before,
  #performance .performance__contents .performance__contents__item h5:after {
    top: 0;
  }

  #performance .performance__contents .performance__contents__item .performance__contents__item__inner {
    width: 100%;
    padding: 15px;
  }

  #performance .performance__contents .performance__contents__item .performance__contents__item__inner img {
    width: 100;
    height: auto;
  }

  #performance .performance__contents .performance__contents__item .performance__contents__item__inner img.SP_graph {
    width: 100%;
  }

  #performance .performance__contents .performance__contents__item .performance__contents__item__inner ul {
    display: none;
  }

  #performance .performance__contents .performance__contents__item .performance__contents__item__inner .performance__contents__item__inner__text {
    top: 20px;
    font-size: 16px;
    font-size: 1rem;
  }

  #regional {
    margin-top: 100px;
  }

  #regional .regional__contents-1 {
    margin-bottom: 100px;
  }

  #regional .regional__contents__item .regional__contents__item-title {
    text-align: center;
  }

  #regional .regional__contents__item.regional__contents-2 {
    margin-bottom: 100px;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__left,
  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__right {
    float: none;
    display: block;
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__left img.pc {
    display: none;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__right .regional__contents__item-title {
    margin-top: 20px;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__right .regional__contents__item-title br {
    display: none;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__right .regional__contents__item-title br._sp {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__right img {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__works {
    margin-top: 30px;
    background: #e9e9e9;
    padding: 20px 0 10px;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__works ul {
    margin: 0 auto;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__works ul li {
    padding: 0 15px;
  }

  #regional .regional__contents__item.regional__contents-2:after {
    display: none;
  }

  #regional .regional__contents__item.regional__contents-3 {
    margin-bottom: 100px;
  }

  #regional .regional__contents__item.regional__contents-3 .regional__contents-3__inner {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-3 .regional__contents-3__inner .regional__contents-3__inner__left,
  #regional .regional__contents__item.regional__contents-3 .regional__contents-3__inner .regional__contents-3__inner__right {
    float: none;
    display: block;
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-3 .regional__contents-3__inner .regional__contents-3__inner__left img {
    display: block;
    margin-bottom: 20px;
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-3 .regional__contents-3__inner .regional__contents-3__inner__right img {
    display: none;
  }

  #regional .regional__contents__item.regional__contents-4 .regional__contents__item-title br._sp {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__left {
    float: none;
    display: block;
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__right {
    float: none;
    display: block;
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-4 .regional__contents-4__inner .regional__contents-4__inner__right .regional__contents__item-text {
    margin-top: 20px;
  }

  #about_equalfoot .about_equalfoot__content-item {
    margin-bottom: 0;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content1 {
    background: none;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content1 .bg-mask:before {
    content: url(../img/SP_about_equalfoot__content1.jpg);
    display: block;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content1 h4 {
    width: 100%;
    margin-top: -90px;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content1 .about_equalfoot__content-item__text {
    width: 100%;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content2 {
    background-size: cover;
  }

  #report {
    margin-top: 100px;
    padding-bottom: 0;
  }

  #report .report__bottom {
    width: 100%;
    display: block;
    margin-top: 100px;
    position: static;
  }

  #report .report__bottom .report__bottom__contents {
    display: block;
  }

  #report .report__bottom .report__bottom__contents .report__bottom__contents__left {
    text-align: center;
    display: block;
  }

  #report .report__bottom .report__bottom__contents .report__bottom__contents__right {
    display: block;
    text-align: center;
  }

  #entry_company .entry_company__top {
    padding-top: 100px;
  }

  #entry_company .entry_company__top .entry_big li {
    width: 48%;
    margin-right: 4%;
  }

  #entry_company .entry_company__top .entry_big li:nth-child(3n) {
    margin-right: 4%;
  }

  #entry_company .entry_company__top .entry_big li:nth-child(even) {
    margin-right: 0;
  }

  #entry_company .entry_company__top .entry_big li:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  #recruit__bottom-slid .section-contents h4 img {
    width: 314px;
  }

  #requirements__top ul li {
    width: 49%;
  }

  #requirements__top ul li:nth-child(3) {
    margin-right: 2%;
  }

  #requirements__top ul li:nth-child(even) {
    margin-right: 0;
  }

  #requirements__top ul li a {
    font-size: 14px;
    font-size: 0.875rem;
  }

  #data-1 .data-1__top .data-1__top__main {
    display: block;
    margin: 30px auto 50px;
  }

  #data-1 .data-1__top .data-1__top__main p {
    display: block;
    text-align: center;
  }

  #entry {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  #entry .entry__contents__read {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  #entry .entry__contents__entoryform table tbody tr th,
  #entry .entry__contents__entoryform table tbody tr td {
    display: block;
    width: 100%;
  }

  #entry .entry__contents__entoryform table tbody tr th {
    font-size: 16px;
    font-size: 1rem;
    padding-top: 0.5em;
  }

  #entry .entry__contents__entoryform table tbody tr td {
    padding-left: 0;
    border-left: none;
    padding-top: 7px;
  }

  #entry .entry__contents__entoryform table tbody tr td label.botton {
    float: none;
    width: 100%;
    padding-right: 0;
  }

  #entry .entry__contents__entoryform table tbody tr td label.botton.reset {
    padding-left: 0;
    margin-top: 10px;
  }

  #entry .entry__contents__entoryform table tbody tr td label.botton.reset input[type="reset"] {
    margin-top: 15px;
    margin-bottom: 30px;
  }

  #bank_payment table tbody tr th,
  #bank_payment table tbody tr td {
    display: block;
    width: 100%;
    padding: 0;
  }

  #bank_payment table tbody tr th {
    padding-top: 15px;
    margin-bottom: 10px;
  }

  #bank_payment table tbody tr th span {
    right: 0;
  }

  #bank_payment table tbody tr td {
    border-left: none;
    padding-bottom: 15px;
  }

  #bank_payment table tbody tr td label.botton {
    float: none;
    width: 100%;
    padding: 0;
    display: block;
    margin-top: 15px;
  }

  #bank_payment table tbody tr td label.botton.reset {
    padding-left: 0;
  }

  #privilege .privilege__option__read ._sp {
    display: block;
  }

  #privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents {
    display: block;
  }

  #privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div {
    display: block;
  }

  #privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-left {
    margin: 0 auto 30px;
  }

  #privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-left br {
    display: block;
  }

  #privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-right {
    width: 100%;
  }

  #privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-right ul {
    margin-left: 0;
  }

  #privilege .privilege__entry .privilege__entry__method .privilege__entry__method__contents div.privilege__entry__method__contents-right ul li {
    text-align: center;
  }

  #privilege .privilege__entry .privilege__entry__payment {
    padding: 80px 40px;
  }

  #privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__title ._sp {
    display: block;
  }

  #privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents {
    display: block;
    width: 100%;
    margin-top: 50px;
  }

  #privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li {
    width: 80%;
    margin: 0 auto 50px;
  }

  #privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li span {
    margin: 10px auto 10px;
    width: 100%;
    display: block;
    text-align: center;
  }

  #privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li a.cancel {
    margin: 0 auto;
  }

  #privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li:last-child {
    margin-bottom: 0;
  }

  #equalfoot_interview_top {
    background-attachment: initial;
  }

  #equalfoot_interview-main br {
    display: block;
  }

  #equalfoot_interview-pagefoot .page_shere .page_shere__contents ul {
    width: 100%;
  }

  #equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li {
    display: block;
    width: 100%;
    margin-left: 0;
    height: 34px;
    margin-bottom: 15px;
  }

  #equalfoot_interview-pagefoot .page_shere .page_shere__contents ul li:last-child {
    margin-bottom: 0;
  }

  #privacy-top {
    background-attachment: inherit;
  }

  .privacy__main {
    margin-top: 100px;
  }

  .privacy__main .privacy__main__list .privacy__main__item {
    margin-bottom: 100px;
  }

  .privacy__main .privacy__main__list .privacy__main__item br {
    display: block;
  }

  #faq {
    margin-top: 100px;
  }

  #faq .cssacc:checked+.accshow br._sp {
    display: block;
  }

  .to-top {
    bottom: 15px;
    right: 15px;
  }

  .to-top span {
    display: none;
  }
}

@media all and (max-width: 639px) {
  br {
    display: none;
  }

  br._sp {
    display: block;
  }

  #site-header h1 {
    max-width: 280px;
    margin-left: 61px;
    height: 48px;
    position: relative;
  }

  #site-header h1 img {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
  }

  #top_main {
    height: 70vh;
  }

  #top_main .main-slid {
    height: 70vh;
  }

  #top_main .main-slid .main-slid-item {
    height: 70vh;
  }

  #top_main .section-contents .top_main__contnts {
    width: 100%;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
  }

  #top_main .section-contents .top_main__contnts h2 {
    font-size: 30px;
    text-align: center;
  }

  #top_main .section-contents .top_main__contnts h2:before {
    content: "";
    width: 0.55em;
    display: inline-block;
    height: 1px;
  }

  #top_main .section-contents .top_main__contnts h3 {
    font-size: 18px;
    text-align: center;
  }

  #top_main .section-contents .top_main__contnts.page_management h2 {
    font-size: 23px;
  }

  #top_main .section-contents .top_main__contnts.page_management h3 {
    font-size: 16px;
    line-height: 13px;
    letter-spacing: 0.15em;
  }

  #top_main .section-contents .top_main__contnts.page_management h3 span {
    line-height: 1.4em;
  }

  #top_main .section-contents .top_main__contnts.page_recruit h3 br {
    display: block;
  }

  #top_main .section-contents a span {
    bottom: 20px;
  }

  #page__anchor {
    display: none;
  }

  #service .service__maincontents .service__maincontents__item {
    text-align: center;
  }

  #service .service__maincontents .service__maincontents__item .service__maincontents__item__text {
    text-align: justify;
  }

  #service .service__maincontents .service__maincontents__item .service__maincontents__item__text p {
    line-height: 1.5em;
  }

  #service .service__maincontents .service__maincontents__item .service__maincontents__item__text h4 {
    text-align: center;
  }

  #service .service__maincontents .service__maincontents__item .service__maincontents__item__text h4:after {
    margin: 20px auto 0;
    display: block;
    width: 80%;
  }

  #service .service__maincontents .service__maincontents__item .service__maincontents__item__text h4._pc-rental {
    font-size: 25px;
  }

  #service .service__maincontents .service__maincontents__item .service__maincontents__item__text h4._pc-rental br {
    display: block;
  }

  #service .service__maincontents .service__maincontents__item img {
    display: none;
  }

  #service .service__maincontents .service__maincontents__item.first .service__maincontents__item__text {
    padding-left: 0;
    float: none;
    width: 100%;
    text-align: left;
  }

  #service .service__maincontents .service__maincontents__item.first .service__maincontents__item__text h4:after {
    content: url(../img/service__maincontents__item-first.svg);
  }

  #service .service__maincontents .service__maincontents__item.first .service__maincontents__item__text h4._management:after {
    content: url(../img/management_ervice__maincontents__item-1.svg);
  }

  #service .service__maincontents .service__maincontents__item.first .service__maincontents__item__text h4._pc-rental:after {
    content: url(../img/pc-rental_service-main01.svg);
  }

  #service .service__maincontents .service__maincontents__item.second .service__maincontents__item__text {
    margin-left: 0;
    padding-left: 0;
    float: none;
    width: 100%;
    text-align: left;
  }

  #service .service__maincontents .service__maincontents__item.second .service__maincontents__item__text h4:after {
    content: url(../img/service__maincontents__item-second.svg);
  }

  #service .service__maincontents .service__maincontents__item.second .service__maincontents__item__text h4._management:after {
    content: url(../img/management_ervice__maincontents__item-2.svg);
  }

  #service .service__maincontents .service__maincontents__item.second .service__maincontents__item__text h4._pc-rental:after {
    content: url(../img/pc-rental_service-main02.svg);
  }

  #service .service__maincontents .service__maincontents__item.third .service__maincontents__item__text {
    padding-left: 0;
    float: none;
    width: 100%;
    text-align: left;
  }

  #service .service__maincontents .service__maincontents__item.third .service__maincontents__item__text h4:after {
    content: url(../img/service__maincontents__item-third.svg);
  }

  #service .service__maincontents .service__maincontents__item.third .service__maincontents__item__text h4._management:after {
    content: url(../img/management_ervice__maincontents__item-3.svg);
  }

  #service .service__maincontents .service__maincontents__item.third .service__maincontents__item__text h4._pc-rental:after {
    content: url(../img/pc-rental_service-main03.svg);
  }

  #service .service__maincontents .service__maincontents__item.third._management-box {
    padding-bottom: 10px;
  }

  #service .service__maincontents .service__maincontents__item.fourth .service__maincontents__item__text {
    padding-left: 0;
    float: none;
    width: 100%;
    text-align: left;
  }

  #service .service__maincontents .service__maincontents__item.fourth .service__maincontents__item__text h4:after {
    content: url(../img/pc-rental_service-main04.svg);
  }

  #service .service__maincontents .service__maincontents__item.fifth .service__maincontents__item__text {
    padding-left: 0;
    float: none;
    width: 100%;
    text-align: left;
  }

  #service .service__maincontents .service__maincontents__item.fifth .service__maincontents__item__text h4:after {
    content: url(../img/SP-pc-rental_service-main05.svg);
  }

  #service .service__bottomcontents {
    margin-top: 50px;
    padding: 30px 30px;
  }

  #service .service__bottomcontents._management {
    padding: 140px 0 100px;
  }

  #service .service__bottomcontents._management:before {
    height: 60px;
  }

  #service .service__bottomcontents .section-contents {
    padding: 0;
  }

  #service .service__bottomcontents .section-contents p {
    font-size: 15px;
  }

  #service .service__bottomcontents .section-contents p span {
    margin-bottom: 0;
  }

  #service .service__bottomcontents .section-contents p span.last:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
  }

  #service .service__bottomcontents._management {
    padding: 140px 30px 100px;
  }

  #service .service__bottomcontents._management .service__bottomcontents__text {
    display: block;
  }

  #service .service__bottomcontents._management .service__bottomcontents__text img {
    width: 80%;
    float: none;
  }

  #service .service__bottomcontents._management .service__bottomcontents__text p {
    width: 100%;
    float: none;
    padding-left: 0;
    margin-top: 20px;
  }

  #price .price__contents__top {
    display: inherit;
  }

  #price .price__contents__top .price__contents__inner {
    float: none;
  }

  #price .price__contents__top .price__contents__inner h4 {
    text-align: center;
  }

  #price .price__contents__top .price__contents__inner.right {
    width: 100%;
  }

  #price .price__contents__top .price__contents__inner.right ul {
    display: table;
    margin-top: 30px;
  }

  #price .price__contents__top .price__contents__inner.right ul li {
    width: 48%;
    margin: 0 4% 8px 0;
  }

  #price .price__contents__top .price__contents__inner.right ul li:nth-child(even) {
    margin-right: 0;
  }

  #price .price__contents__top .price__contents__inner.right .price__contents__inner__orage {
    padding: 0.4em 15px;
    font-size: 16px;
  }

  #price .price__contents__top .price__contents__inner.right .attention {
    text-align: left;
  }

  #price .price__contents__top .price__contents__inner.right .attention span {
    display: block;
  }

  #price .price__contents__middle .price__contents__middle__item .price__contents__middle__item__text ul li {
    padding-left: 15px;
  }

  #price .price__contents__middle .price__contents__middle__item .price__contents__middle__item__text ul li:before {
    margin-right: 5px;
    margin-left: -15px;
  }

  #price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul li:nth-child(even),
  #price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul li:nth-child(odd) {
    width: 100%;
  }

  #price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__title br._sp {
    display: block;
  }

  #price .rwd {
    padding: 15px;
  }

  #price .rwd .rwd-contents {
    display: block;
  }

  #price .rwd .rwd-contents p {
    text-align: left;
    display: block;
    margin-right: 0;
    font-size: 14px;
  }

  #price .rwd .rwd-contents p.rwd_pc img {
    margin-right: 15px;
  }

  #price .rwd .rwd-contents p.rwd_pc:after {
    content: url(../img/SP_rwd_pc-after.svg);
    width: 23px;
    height: 20px;
    display: block;
    margin: auto;
  }

  #price .rwd .rwd-contents p.rwd_price {
    margin-left: 0;
    margin-top: 15px;
    text-align: center;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents_top span {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board .price_board_main:before {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    padding-top: 11px;
    letter-spacing: 0em;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board span {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }

  #pc-price .price__contents_pc-rental .price__contents_pc-rental__middle .price__contents_pc-rental__middle__item .price__contents_pc-rental__middle__item__contents .price__contents_pc-rental__middle__item__contents__price_board.multiple_price .multiple_price_after {
    font-size: 14px;
    font-size: 0.875rem;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content1 {
    padding-top: 0;
    padding-bottom: 0;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content1 .bg-mask:before {
    display: none;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content1 .bg-mask h4 {
    margin-top: 50px;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content2 {
    background: none;
    padding: 0;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content3 {
    background: none;
    padding: 0;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content3 .about_equalfoot__content3__area {
    padding: 0;
    display: block;
    background: none;
  }

  #about_equalfoot .about_equalfoot__content-item.about_equalfoot__content3 .about_equalfoot__content3__area h4 span {
    font-size: 16px;
    font-size: 1rem;
  }

  #about_equalfoot .about_equalfoot__content-item h4 {
    margin-top: 50px;
    text-align: center;
  }

  #about_equalfoot .about_equalfoot__content-item h4 img {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }

  #about_equalfoot .about_equalfoot__content-item .about_equalfoot__content-item__text {
    width: 100%;
    padding: 15px;
    line-height: 1.5em;
  }

  #about_equalfoot .about_equalfoot__content-item .about_equalfoot__content-item__text br {
    display: block;
  }

  #report .report__contents .report__contents__top {
    padding: 15px;
  }

  #report .report__contents .report__contents__top .report__contents__top__title {
    display: block;
    position: initial;
    width: 100%;
    margin-bottom: 30px;
  }

  #report .report__contents .report__contents__top .report__contents__top__title span {
    display: block;
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
  }

  #report .report__contents .report__contents__top .report__contents__top__main__text {
    font-size: 14px;
    font-size: 0.875rem;
  }

  #report .report__contents .report__contents__top .report__contents__top__main__text br {
    display: block;
  }

  #report .report__contents .more-btn {
    width: 100%;
  }

  #report .report__contents .report__contents__more {
    padding-bottom: 0;
  }

  #report .report__contents .report__contents__more .report__contents__middle .report__contents__middle__contents {
    width: 100%;
    display: block;
  }

  #report .report__contents .report__contents__more .report__contents__middle .report__contents__middle__contents .report__contents__middle__contents-item {
    width: 100%;
    display: block;
    padding: 0;
  }

  #report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__title {
    font-size: 16px;
    font-size: 1rem;
  }

  #report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul li {
    display: inline-block;
    width: 45%;
    margin-bottom: 20px;
  }

  #report .report__contents .report__contents__more .report__contents__bottom .report__contents__bottom__contents ul:last-child {
    padding-top: 0;
  }

  #report .report__contents.report__2018 {
    margin-top: 0;
  }

  #report .report__contents.report__2016 ._report__2016:after {
    position: initial;
  }

  #report .report__bottom .report__bottom__contents .report__bottom__contents__left {
    font-size: 24px;
    font-size: 1.5rem;
  }

  #report .report__bottom .report__bottom__contents .report__bottom__contents__right .report__bottom__contents__right__main {
    font-size: 50px;
    font-size: 3.125rem;
  }

  #report .report__bottom .report__bottom__contents .report__bottom__contents__right .report__bottom__contents__right__main span {
    font-size: 29px;
    font-size: 1.8125rem;
  }

  #report .report__bottom .report__bottom__contents .report__bottom__contents__right .report__bottom__contents__right__annotation {
    font-size: 16px;
    font-size: 1rem;
  }

  #entry_company .entry_company__top .entry_big {
    display: block;
  }

  #entry_company .entry_company__top .entry_big li {
    width: 100%;
    margin-right: 0;
  }

  #entry_company .entry_company__top .entry_big li:nth-child(even) {
    margin-right: 0;
  }

  #entry_company .entry_middle {
    display: block;
  }

  #entry_company .entry_middle li {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  #entry_company .entry_middle li .entry_middle__itme__contens {
    display: table;
  }

  #entry_company .entry_middle li .entry_middle__itme__contens br {
    display: block;
  }

  #entry_company .entry_small li {
    width: 50%;
  }

  #privilege .privilege__read__bottom {
    width: 100%;
  }

  #privilege .privilege__read__bottom_text {
    display: block;
  }

  #privilege .privilege__option__read {
    letter-spacing: 0.02em;
  }

  #privilege .privilege__entry .privilege__entry__method {
    padding: 30px 15px;
  }

  #privilege .privilege__entry .privilege__entry__payment {
    padding: 30px 15px;
  }

  #privilege .privilege__entry .privilege__entry__payment .privilege__entry__payment__contents li {
    width: 100%;
    padding: 0;
  }

  #equalfoot_interview_top h2 {
    height: 3em;
    padding: 0 30px;
  }

  #equalfoot_interview_top h2 br {
    display: block;
  }

  #equalfoot_interview-main br {
    display: block;
  }

  #equalfoot_interview-main .equalfoot_interview__top .equalfoot_interview__top__title {
    display: block;
    text-align: center;
  }

  #equalfoot_interview-main .equalfoot_interview__top .equalfoot_interview__top__title p {
    display: block;
    width: 100%;
  }

  #equalfoot_interview-main .equalfoot_interview__top h3 span {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
  }

  #equalfoot_interview-main .equalfoot_interview__top h4 {
    margin-bottom: 50px;
    line-height: 1.5em;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 300;
  }

  #equalfoot_interview-main .equalfoot_interview__journal {
    margin: 50px auto 100px;
  }

  #equalfoot_interview-main .equalfoot_interview__journal .equalfoot_interview__journal__item .journal__text {
    text-align: justify;
  }

  #equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__left {
    width: 100%;
    float: none;
    padding: 0;
  }

  #equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__right {
    width: 100%;
    float: none;
    padding: 0;
    display: block;
    margin: 50px auto 0;
  }

  #equalfoot_interview-main .equalfoot_interview__information .equalfoot_interview__information__contents .equalfoot_interview__information__contents__right img {
    margin: 0 auto;
  }

  #equalfoot_interview-pagefoot .equalfoot_interview__list ul {
    display: block;
  }

  #equalfoot_interview-pagefoot .equalfoot_interview__list ul li {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  #works h4 {
    margin-bottom: 0;
  }

  #works .works__contents ul {
    display: block;
  }

  #works .works__contents ul li {
    width: 100%;
    margin: 50px 0 0;
    padding: 0;
  }

  #works .works__contents ul li img {
    margin: 15px 0;
  }

  #works .works__contents ul li .back {
    margin-top: 15px;
  }

  #flow .slide__item__contents__right p {
    font-size: 12px;
  }

  #lineup .lineup-contents .tab_area {
    width: 100%;
  }

  #lineup .lineup-contents .lineup-contents__table table tbody tr th,
  #lineup .lineup-contents .lineup-contents__table table tbody tr td {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    width: 100%;
    display: block;
    padding: 0;
  }

  #lineup .lineup-contents .lineup-contents__table table tbody tr th.en,
  #lineup .lineup-contents .lineup-contents__table table tbody tr td.en {
    line-height: 1.5em;
  }

  #lineup .lineup-contents .lineup-contents__table table tbody tr th {
    font-weight: 500;
    padding: 0.5em 15px 0.3em;
  }

  #lineup .lineup-contents .lineup-contents__table table tbody tr th.en {
    font-weight: 500;
  }

  #lineup .lineup-contents .lineup-contents__table table tbody tr td {
    border-left: none;
    text-align: center;
    padding: 0 15px 0.5em;
  }

  #about .about__contents .about__contents__left {
    width: 100%;
  }

  #about .about__contents .about__contents__left img {
    width: 55%;
  }

  #about .about__contents .about__contents__right {
    width: 100%;
  }

  #about .about__contents .about__contents__right .about__contents__right__inner tbody tr.about-row {
    display: block;
  }

  #about .about__contents .about__contents__right .about__contents__right__inner tbody tr.about-row th,
  #about .about__contents .about__contents__right .about__contents__right__inner tbody tr.about-row td {
    width: 100%;
    display: block;
    padding-left: 0;
  }

  #about .about__contents .about__contents__right .about__contents__right__inner tbody tr.about-row th {
    text-align: left;
    padding-bottom: 0;
  }

  #about .about__contents .about__contents__right .about__contents__right__inner tbody tr.about-row__ca {
    display: block;
  }

  #about .about__contents .about__contents__right .about__contents__right__inner tbody tr.about-row__ca>th,
  #about .about__contents .about__contents__right .about__contents__right__inner tbody tr.about-row__ca>td {
    width: 100%;
    display: block;
    padding-left: 0;
  }

  #about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar {
    width: 100%;
    float: none;
  }

  #about .about__contents .about__contents__right .about__contents__right__inner tbody tr td.calendar .calendar__area div.calendar:last-child {
    margin-left: 0;
  }

  #greeting {
    margin-top: 50px;
    padding: 50px 0;
  }

  #greeting .greeting__contents {
    padding: 15px;
  }

  #regional .regional__contents-1 {
    background: none;
  }

  #regional .regional__contents-1 img.sponly {
    display: block;
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-1-inner {
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li {
    display: block;
    height: 34px;
    margin-top: 10px;
  }

  #regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back {
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back a {
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back a.button_base {
    width: 100%;
  }

  #regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-link li .back a.button_base.b03_skewed_slide_in span:nth-child(2) {
    width: 110%;
    transform: translate(-110%, 0px) skewX(-30deg);
    -webkit-transform: translate(-110%, 0px) skewX(-30deg);
    -moz-transform: translate(-110%, 0px) skewX(-30deg);
  }

  #regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-title {
    margin-top: 20px;
    font-size: 23px;
    font-size: 1.4375rem;
    text-align: center;
  }

  #regional .regional__contents__item.regional__contents-1-inner .regional__contents-1-inner-title span {
    font-size: 18px;
    font-size: 1.125rem;
  }

  #regional .regional__contents__item .regional__contents__item-title {
    font-size: 23px;
    font-size: 1.4375rem;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__right .regional__contents__item-title br {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__inner .regional__contents-2__inner__right .regional__contents__item-title br._sp {
    display: none;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__works ul {
    display: block;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__works ul li {
    width: 100%;
    margin-bottom: 25px;
  }

  #regional .regional__contents__item.regional__contents-2 .regional__contents-2__works ul li:last-child {
    margin-bottom: 0;
  }

  #faq .faq__contents .accbox label {
    font-size: 14px;
  }

  #faq .cssacc:checked+.accshow {
    line-height: 1.7em;
    padding: 15px;
    font-size: 14px;
    text-align: justify;
  }

  #page_recruit__nev .section-contents {
    padding: 0;
  }

  #page_recruit__nev .section-contents ul li {
    display: inline-block;
    width: 50%;
  }

  #page_recruit__nev .section-contents ul li a span {
    font-size: 12px;
    font-size: 0.75rem;
  }

  #recruit__bottomnavi ul {
    display: block;
  }

  #recruit__bottomnavi ul li {
    display: block;
    width: 100%;
    margin-bottom: 50px;
  }

  #recruit__bottomnavi ul li:last-child {
    margin-bottom: 0;
  }

  #recruit__bottom-slid .section-contents h4 {
    top: -30px;
  }

  #recruit__bottom-slid .section-contents h4 img {
    width: 254px;
  }

  #recruit__bottom-slid .simply-scroll-list li {
    width: auto;
    height: 200px;
  }

  #recruit__bottom-slid .simply-scroll-list li img {
    display: block;
    width: auto;
    height: 200px;
  }

  #loopSlide .simply-scroll {
    margin-bottom: 0;
    height: 200px;
  }

  #loopSlide .simply-scroll .simply-scroll-clip {
    height: 200px;
  }

  #recruit-top1 {
    padding: 50px 0;
  }

  #recruit-top1 .recruit-top1__content {
    display: block;
  }

  #recruit-top1 .recruit-top1__content .recruit-top1__content__left,
  #recruit-top1 .recruit-top1__content .recruit-top1__content__right {
    float: none;
    width: 100%;
  }

  #recruit-top1 .recruit-top1__content .recruit-top1__content__left h4 {
    text-align: center;
    margin-top: 0;
  }

  #recruit-top1 .recruit-top1__content .recruit-top1__content__left h4 br.tab {
    display: none;
  }

  #recruit-top1 .recruit-top1__content .recruit-top1__content__right {
    margin-top: 30px;
  }

  #recruit-top2 {
    padding: 50px 0;
  }

  #recruit-top2:before {
    display: none;
  }

  #recruit-top2 .recruit-top2__left {
    width: 100%;
    padding-right: 0;
  }

  #recruit-top2 .recruit-top2__left img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  #recruit-top2 .recruit-top2__left h4 {
    text-align: center;
  }

  #recruit-top2 .recruit-top2__left h4 br {
    display: none;
  }

  #recruit-top3 {
    padding: 50px 0;
  }

  #recruit-top3:before {
    display: none;
  }

  #recruit-top3 .recruit-top2__right {
    width: 100%;
    padding-left: 0;
  }

  #recruit-top3 .recruit-top2__right img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  #recruit-top3 .recruit-top2__right h4 {
    text-align: center;
  }

  #requirements__top ul {
    display: block;
  }

  #requirements__top ul li {
    display: block;
    width: 100%;
    margin-right: 0;
  }

  #requirements__main .requirements__main__item .requirements__main__item__top {
    position: relative;
  }

  #requirements__main .requirements__main__item .requirements__main__item__top h5 span {
    padding: 10px;
    display: block;
  }

  #requirements__main .requirements__main__item .requirements__main__item__top h5:before {
    display: none;
  }

  #requirements__main .requirements__main__item .requirements__main__item__top img {
    margin-top: 15px;
    border-top: none;
  }

  #requirements__main .requirements__main__item .requirements__main__item__top:after {
    content: "正社員";
    display: block;
    width: 71px;
    height: 71px;
    border-radius: 50%;
    background: #397de0;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-align: center;
    position: absolute;
    padding-top: 24px;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: auto;
  }

  #requirements__main .requirements__main__item .requirements__main__item__top.recruitment_end:after {
    display: none;
  }

  #requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__top,
  #requirements__main .requirements__main__item .requirements__main__item__contents .requirements__main__item__contents__bottom {
    display: block;
  }

  #requirements__main .requirements__main__item .requirements__main__item__contents .left,
  #requirements__main .requirements__main__item .requirements__main__item__contents .right {
    width: 100%;
    float: none;
    padding: 0;
  }

  #requirements__main .requirements__main__item#update .requirements__main__item__top:after {
    content: "アルバイト";
  }

  #data-1 .data-1__top .data-1__top__main {
    margin: 30px auto;
  }

  #data-1 .data-1__top .data-1__top__main p .ja {
    font-size: 20px;
    font-size: 1.25rem;
  }

  #data-1 .data-1__top .data-1__top__main p .en {
    font-size: 51px;
    font-size: 3.1875rem;
  }

  #data-1 .data-1__top .data-1__top__middle {
    display: block;
  }

  #data-1 .data-1__top .data-1__top__middle>div {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  #data-1 .data-1__top .data-1__top__middle>div table tbody tr td {
    font-size: 20px;
    font-size: 1.25rem;
  }

  #data-1 .data-1__top .data-1__top__middle>div table tbody tr td .en {
    font-size: 51px;
    font-size: 3.1875rem;
  }

  #data-1 .data-1__top .data-1__top__middle>div table tbody tr td .en._after {
    font-size: 27px;
    font-size: 1.6875rem;
  }

  #data-1 .data-1__top .data-1__top__middle>div.right table tbody {
    border-top: none;
  }

  #data-1 .data-1__top .data-1__top__bottom {
    display: block;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents {
    display: block;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left .current_year p {
    font-size: 20px;
    font-size: 1.25rem;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left .current_year p .en {
    font-size: 51px;
    font-size: 3.1875rem;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left .current_year__bottom br {
    display: block;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table tbody tr th,
  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table tbody tr td {
    font-size: 20px;
    font-size: 1.25rem;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table tbody tr th .en,
  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__left table tbody tr td .en {
    font-size: 51px;
    font-size: 3.1875rem;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right {
    margin-top: 100px;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr {
    position: relative;
    display: block;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr:before {
    content: "";
    background-image: url(https://placehold.jp/33x55.png);
    display: block;
    width: 30px;
    height: 48px;
    position: absolute;
    margin: auto;
    background-repeat: no-repeat;
    bottom: 17px;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr th,
  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr td {
    display: block;
    width: 100%;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr th {
    text-align: center;
    padding-left: 0;
    padding-top: 0.5em;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr th br.tab,
  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr th:before {
    display: none;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr th span {
    display: inline-block;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr td {
    text-align: center;
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr:first-child:before {
    background-image: url(../img/data-1__top__bottom__contents__right-th1.svg);
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr:nth-child(2):before {
    background-image: url(../img/data-1__top__bottom__contents__right-th2.svg);
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr:nth-child(3):before {
    background-image: url(../img/data-1__top__bottom__contents__right-th3.svg);
  }

  #data-1 .data-1__top .data-1__top__bottom .data-1__top__bottom__contents>div.data-1__top__bottom__contents__right table tbody tr:nth-child(4):before {
    background-image: url(../img/data-1__top__bottom__contents__right-th4.svg);
  }

  #data-1 .data-1__top .data-1__top__bottom__comment {
    margin-top: 50px;
  }

  #data-1 .data-1__top .data-1__top__bottom__comment p {
    padding: 15px;
    font-size: 14px;
    font-size: 0.875rem;
  }

  #data-1 .data-1__top .data-1__top__bottom__comment p br {
    display: block;
  }

  #data-2 .data-2__content__inner {
    display: block;
  }

  #data-2 .data-2__content__inner .inner__item {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  #data-2 .data-2__content__inner .inner__item .inner__item__title {
    display: block;
  }

  #data-2 .data-2__content__inner .inner__item .inner__item__title p {
    float: none;
  }

  #data-2 .data-2__content__inner .inner__item .inner__item__title p.inner__item__title-left,
  #data-2 .data-2__content__inner .inner__item .inner__item__title p.inner__item__title__right {
    width: 100%;
    text-align: center;
  }

  #data-2 .data-2__content__inner .inner__item .inner__item__title p.inner__item__title-left br {
    display: none;
  }

  #data-2 .data-2__content__inner .inner__item:last-child {
    margin-bottom: 0;
  }

  #data-3 {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  #data-3 .data-3__contents ul {
    display: block;
  }

  #data-3 .data-3__contents ul li {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  #data-3 .data-3__contents ul li .data-3__contents__item .data-3__contents__item__title:before {
    height: 111%;
    background-position: center;
  }

  #selection_flow .selection_flow__contents {
    background: rgba(204, 102, 0, 0.8);
    padding: 100px 0;
  }

  #selection_flow .selection_flow__contents:before {
    background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, rgba(204, 102, 0, 0.8))) no-repeat top left/100% 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, rgba(204, 102, 0, 0.8) 50.5%) no-repeat top left/100% 100%;
  }

  #selection_flow .selection_flow__contents:after {
    background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, rgba(204, 102, 0, 0.8))) no-repeat top left/100% 100%;
    background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, rgba(204, 102, 0, 0.8) 50.5%) no-repeat top left/100% 100%;
  }

  #selection_flow .selection_flow__contents .selection_flow__contents__list ul li {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
  }

  #selection_flow .selection_flow__contents .selection_flow__contents__list ul li br {
    display: none;
  }

  #blog_card {
    padding: 0 30px;
  }

  #blog_card .blog_card__titel {
    font-size: 22px;
    font-size: 1.375rem;
  }

  #blog_card ul {
    display: block;
  }

  #blog_card ul li {
    display: block;
    width: 100%;
    margin-right: 0;
  }

  #blog_card ul li .blog_card__item__contents a .blog_card__item__contents__taxt .blog_card__item__contents__title {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.4em;
  }

  #blog_card ul li .blog_card__item__contents a .blog_card__item__contents__taxt .blog_card__item__contents__body {
    font-size: 10px;
    font-size: 0.625rem;
  }

  #entry__contact .contact__contents__middle .contact-list {
    display: table;
  }

  #entry__contact .contact__contents__middle .contact-list li {
    width: 259px;
    display: block;
    text-align: left;
    position: relative;
    padding-left: 74px;
    margin: 0 auto 30px;
  }

  #entry__contact .contact__contents__middle .contact-list li img {
    display: none;
  }

  #entry__contact .contact__contents__middle .contact-list li p.fax,
  #entry__contact .contact__contents__middle .contact-list li a p {
    font-size: 25px;
  }

  #entry__contact .contact__contents__middle .contact-list li:before {
    width: 51px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 5px;
  }

  #entry__contact .contact__contents__middle .contact-list li:nth-child(1):before {
    content: url(../img/contact__contents__middle-tel-ao.svg);
  }

  #entry__contact .contact__contents__middle .contact-list li:nth-child(2):before {
    content: url(../img/contact__contents__middle-fax-ao.svg);
  }

  #entry__contact .contact__contents__middle .contact-list li:nth-child(3):before {
    content: url(../img/contact__contents__middle-mail-ao.svg);
  }

  #entry__contact .back-gray {
    font-size: 14px;
  }

  #contact {
    margin-top: 100px;
  }

  #contact .contact__contents .contact__contents__middle .contact-list {
    display: table;
  }

  #contact .contact__contents .contact__contents__middle .contact-list li {
    width: 259px;
    display: block;
    text-align: left;
    position: relative;
    padding-left: 74px;
    margin: 0 auto 30px;
  }

  #contact .contact__contents .contact__contents__middle .contact-list li img {
    display: none;
  }

  #contact .contact__contents .contact__contents__middle .contact-list li p.fax,
  #contact .contact__contents .contact__contents__middle .contact-list li a p {
    font-size: 25px;
  }

  #contact .contact__contents .contact__contents__middle .contact-list li:before {
    width: 51px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 5px;
  }

  #contact .contact__contents .contact__contents__middle .contact-list li:nth-child(1):before {
    content: url(../img/contact__contents__middle-tel.svg);
  }

  #contact .contact__contents .contact__contents__middle .contact-list li:nth-child(2):before {
    content: url(../img/contact__contents__middle-fax.svg);
  }

  #contact .contact__contents .contact__contents__middle .contact-list li:nth-child(3):before {
    content: url(../img/contact__contents__middle-mail.svg);
  }

  #contact .contact__contents .back-gray {
    font-size: 14px;
  }

  #contact .contact__contents .contact__contents__bottom .mailform tr {
    display: block;
  }

  #contact .contact__contents .contact__contents__bottom .mailform tr th {
    width: 100%;
    display: block;
    border: none;
    font-size: 16px;
    padding: 15px 0 5px;
  }

  #contact .contact__contents .contact__contents__bottom .mailform tr th span {
    font-size: 12px;
    padding: 2px 4px;
  }

  #contact .contact__contents .contact__contents__bottom .mailform tr td {
    width: 100%;
    display: block;
    padding: 0 0 15px;
  }

  #contact .contact__contents .contact__contents__bottom .mailform tr td label {
    width: 100%;
    margin: 0;
    display: block;
  }

  #contact .contact__contents .contact__contents__bottom .mailform tr:nth-last-child(2) th {
    border: none;
  }

  #contact .contact__contents .contact__contents__bottom .mailform tr:last-child td input {
    width: 100%;
    font-size: 16px;
  }

  #main-footer {
    margin-top: 100px;
  }

  #main-footer .blog {
    padding-top: 50px;
  }

  #main-footer .blog .blog__contents {
    padding: 15px;
  }

  #main-footer .sitemap,
  #main-footer .googlemp {
    display: none;
  }

  #main-footer .foot-company .foot-company__contents img {
    width: 100%;
  }

  #main-footer .foot-company .foot-company__contents .cpmpany-address ul {
    display: block;
  }

  #main-footer .foot-company .foot-company__contents .cpmpany-address ul li {
    display: block;
    margin-right: 0;
  }
}

.flex_2,
.flex_3,
.flex_4,
.flex_5 {
  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;
  margin-bottom: 16px;
}

.flex_2 .bx {
  position: relative;
  background: #eee;
  margin-bottom: 16px;
  /* 
	box-shadow: rgba($black,0.2) 0 0 2px 2px;
	background: #fff;
	*/
}

.flex_2 .bx img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.flex_2 .bx div {
  padding: 16px;
}

@media (max-width: 479px) {
  .flex_2 .bx {
    margin-bottom: 24px;
  }
}

.flex_2 .bx:nth-child(odd) {
  width: calc(50% - 16px);
  margin-right: 16px;
}

.flex_2 .bx:nth-child(even) {
  width: calc(50% - 16px);
  margin-left: 16px;
}

.mttl_s1 {
  text-align: center;
  color: #FF6600;
  font-size: 1.1rem;
  border: 1px solid #FF6600;
  padding: 6px 0;
  margin-bottom: 8px;
  background-color: #FFF;
}

.flex_3 .bx {
  position: relative;
  background: #eee;
  margin-bottom: 16px;
  /* 
	box-shadow: rgba($black,0.2) 0 0 2px 2px;
	background: #fff;
	*/
}

.flex_3 .bx img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.flex_3 .bx div {
  padding: 16px;
}

@media (max-width: 479px) {
  .flex_3 .bx {
    margin-bottom: 24px;
  }
}

.flex_3 .bx:nth-child(1) {
  width: calc(33.33% - 16px);
  margin-right: 8px;
}

.flex_3 .bx:nth-child(2) {
  width: calc(33.33% - 16px);
  margin-left: 8px;
  margin-right: 8px;
}

.flex_3 .bx:nth-child(3) {
  width: calc(33.33% - 16px);
  margin-left: 8px;
}

.flex_4 .bx {
  position: relative;
  background: #eee;
  margin-bottom: 16px;
  /* 
	box-shadow: rgba($black,0.2) 0 0 2px 2px;
	background: #fff;
	*/
}

.flex_4 .bx img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.flex_4 .bx div {
  padding: 16px;
}

@media (max-width: 479px) {
  .flex_4 .bx {
    margin-bottom: 24px;
  }
}

.flex_4 .bx:nth-child(1) {
  width: calc(25% - 16px);
  margin-right: 8px;
}

.flex_4 .bx:nth-child(2) {
  width: calc(25% - 16px);
  margin-left: 8px;
  margin-right: 8px;
}

.flex_4 .bx:nth-child(3) {
  width: calc(25% - 16px);
  margin-left: 8px;
  margin-right: 8px;
}

.flex_4 .bx:nth-child(4) {
  width: calc(25% - 16px);
  margin-left: 8px;
}

.flex_5 .bx {
  position: relative;
  background: #eee;
  margin-bottom: 16px;
  /* 
	box-shadow: rgba($black,0.2) 0 0 2px 2px;
	background: #fff;
	*/
}

.flex_5 .bx img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.flex_5 .bx div {
  padding: 16px;
}

@media (max-width: 479px) {
  .flex_5 .bx {
    margin-bottom: 24px;
  }
}

.flex_5 .bx:nth-child(1) {
  width: calc(20% - 16px);
  margin-right: 8px;
}

.flex_5 .bx:nth-child(2) {
  width: calc(20% - 16px);
  margin-left: 8px;
  margin-right: 8px;
}

.flex_5 .bx:nth-child(3) {
  width: calc(20% - 16px);
  margin-left: 8px;
  margin-right: 8px;
}

.flex_5 .bx:nth-child(4) {
  width: calc(20% - 16px);
  margin-left: 8px;
  margin-right: 8px;
}

.flex_5 .bx:nth-child(5) {
  width: calc(20% - 16px);
  margin-left: 8px;
}

@media (max-width: 479px) {

  .flex_2,
  .flex_3 {
    display: block;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .flex_2 .bx:nth-child(odd),
  .flex_3 .bx:nth-child(odd) {
    width: calc(100% - 0px);
    margin: 0px 0px 16px;
  }

  .flex_2 .bx:nth-child(even),
  .flex_3 .bx:nth-child(even) {
    width: calc(100% - 0px);
    margin: 0px 0px 16px;
  }

  .flex_4 .bx:nth-child(1) {
    width: calc(50% - 8px);
    margin-right: 4px;
  }

  .flex_4 .bx:nth-child(2) {
    width: calc(50% - 8px);
    margin-left: 4px;
    margin-right: 0px;
  }

  .flex_4 .bx:nth-child(3) {
    width: calc(50% - 8px);
    margin-right: 4px;
    margin-left: 0px;
  }

  .flex_4 .bx:nth-child(4) {
    width: calc(50% - 8px);
    margin-left: 4px;
    margin-right: 0px;
  }

  .flex_5 .bx:nth-child(1) {
    width: calc(50% - 16px);
    margin-right: 16px;
  }

  .flex_5 .bx:nth-child(2) {
    width: calc(50% - 16px);
    margin-left: 16px;
  }

  .flex_5 .bx:nth-child(3) {
    width: calc(50% - 16px);
    margin-right: 16px;
  }

  .flex_5 .bx:nth-child(4) {
    width: calc(50% - 16px);
    margin-left: 16px;
  }

  .flex_5 .bx:nth-child(5) {
    width: calc(50% - 16px);
    margin-right: 16px;
  }
}

.single {
  position: relative;
  max-width: 976px;
  width: 99%;
  padding: 80px 0;
  margin: 0 auto;
}

.single_none {
  width: 100%;
  padding: 80px 0;
  margin: 0 auto;
}

header {
  width: 100%;
  z-index: 100;
  position: fixed;
  padding: 0;
  height: 60px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  background-color: #FFF;
}

@media screen and (max-width: 768px) {
  header {
    height: auto !important;
    padding: 0px 0;
    position: fixed;
    background: white;
    z-index: 200;
  }
}

#head {
  width: 100%;
  margin: 0px auto 0;
}

@media screen and (max-width: 768px) {
  #head {
    height: 60px !important;
    margin: 0;
    padding: 0;
  }
}

#head .logo {
  float: left;
  margin-top: 5px;
  margin-left: 8px;
}

#head .logo img {
  height: auto;
}

@media (max-width: 768px) {
  #head .logo {
    width: auto;
    float: none;
    margin-left: 0px;
    text-align: center;
  }

  #head .logo img {
    width: auto;
    height: 50px;
  }
}

#navi {
  width: calc(58% - 32px);
  float: right;
  overflow: hidden;
}

#navi ul {
  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;
}

#navi li {
  list-style: none;
  background: #FFF;
  /* width: calc(20% - 0px); */
  padding: 0 20px;
  height: 60px;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  margin-right: 0px;
}

#navi li span {
  display: block;
  font-size: 0.8rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
}

#navi li i {
  margin-right: 4px;
  color: #aaa;
}

#navi li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* 	flex-direction: column; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2rem;
  position: relative;
  color: #333;
}

#navi li a:hover {
  opacity: 0.8;
}

#navi li a:link,
#navi li a:visited {
  color: #333;
  text-decoration: none;
}

#navi li a.white {
  color: #FFF !important;
}

#navi li a.white:hover {
  opacity: 0.8;
}

#navi li a.white:link,
#navi li a.white:visited {
  color: #FFF !important;
  text-decoration: none;
}

@media (max-width: 768px) {
  #navi {
    width: calc(100% - 0px);
    float: none;
    background-color: #FFF;
    margin: 0;
    padding: 0;
    border-top: 1px solid #eee;
  }

  #navi ul {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  #navi li {
    list-style: none;
    width: calc(25% - 0px);
    background: none;
    background: #FFF;
    letter-spacing: 0;
    /* width: calc(20% - 0px); */
    padding: 5px 0px;
    height: auto;
    font-size: 0.5rem;
  }

  #navi li a {
    letter-spacing: 0.0rem;
  }

  #navi li i {
    margin-right: 0px;
    color: #aaa;
    display: none;
  }
}

.bg-orange {
  background-color: #FF6600 !important;
}

.white {
  color: #FFF !important;
}

#slider {
  width: 100%;
  min-width: 976px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.ftext {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0px 0;
  text-align: center;
  margin: auto;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
}

.ftext img {
  position: absolute;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 960px;
  height: 478px;
  margin: auto;
}

.flash {
  height: 0;
}

@media screen and (max-width: 800px) {
  #slider {
    width: 100%;
    min-width: 100%;
    position: relative;
  }

  .flash {
    width: 100%;
    height: 80px;
  }

  .ftext {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .ftext img {
    height: auto;
    max-width: 90%;
    width: 100%;
  }
}

#cms-contact-2-1-area input {
  appearance: auto;
}

#cms-contact-2-1-area label {
  display: block;
}


#cms-contact-2-1-area .form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
    content: '必須';
    color: #fff;
    background: #397de0;
}