@charset "UTF-8";
/* --

 top.css

 ------------------------------------
-- */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese);
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap");
/* --

 * clearfix............float解除
 * font-size...........フォントサイズ指定（px指定はIE8対策）
 * moving-base.........基本のアニメーション
 * FontAwesome.........アイコンフォント使用（FontAwesome）
 * opacity.............透明度設定（IE対応含む）
 * tablet..............ブレイクポイント設定（タブレット）
 * mobile..............ブレイクポイント設定（スマホ）

 ------------------------------------

 * scroll..............スクロールアイコンのスタイル

-- */
.business__photo:after, .mainvisual__wrap:after, .img-left:after,
.img-right:after {
  content: "";
  display: table;
  clear: both;
}

/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * loading.............ローディングアイコンのアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
}
@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
}
@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2px) rotate(-45deg);
    transform: translateY(2px) rotate(-45deg);
  }
}
@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2px) rotate(-45deg);
    transform: translateY(2px) rotate(-45deg);
  }
}
@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg);
  }
}
@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  -webkit-animation: fadein 0.5s ease-out forwards;
          animation: fadein 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeinUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeinUp {
  -webkit-animation: fadeinUp 0.5s ease-out forwards;
          animation: fadeinUp 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeinRight {
  -webkit-animation: fadeinRight 0.5s ease-out forwards;
          animation: fadeinRight 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeinLeft {
  -webkit-animation: fadeinLeft 0.5s ease-out forwards;
          animation: fadeinLeft 0.5s ease-out forwards;
}

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
main, footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
main, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  clear: both;
  display: block;
  width: 100%;
  height: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -mox-appearance: none;
  -moz-appearance: none;
}

select::-ms-expand {
  display: none;
}

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

/*-----------------------------------

	$base

-----------------------------------*/
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  min-width: 100%;
  min-height: 100%;
}

[id=wrapper] {
  overflow: hidden;
  position: relative;
}

body {
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  background: #fff;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* layout
-------------------------------------------------------------- */
.inner {
  margin-left: auto;
  margin-right: auto;
  width: 92%;
  max-width: 1080px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.business main, .recruit main, .contact main, .privacy main {
  padding-top: 60px;
}
@media screen and (max-width: 480px) {
  .business main, .recruit main, .contact main, .privacy main {
    padding-top: 30px;
  }
}

/* 表示・非表示 */
.only-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .only-pc {
    display: none;
  }
}
.only-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .only-sp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .only-sp {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .more-tb {
    display: none;
  }
}

.under-tb {
  display: none;
}
@media screen and (max-width: 768px) {
  .under-tb {
    display: block;
  }
}

.nodisplay {
  display: none;
}

/* Headline
-------------------------------------------------------------- */
/* common
-------------------------------------------------------------- */
.common__title-01 {
  font-size: 36px;
  font-size: 3.6rem;
  color: #366ca8;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.common__title-01 span {
  font-size: 18px;
  font-size: 1.8rem;
  color: #444;
  display: block;
}
@media screen and (max-width: 768px) {
  .common__title-01 {
    font-size: 30px;
    font-size: 3rem;
  }
  .common__title-01 span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.common__title-02 {
  font-size: 20px;
  font-size: 2rem;
  border-left: 2px solid #366ca8;
  padding: 0.5em 0 0.5em 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .common__title-02 {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 0.5em 0 0.5em 12px;
    margin-bottom: 20px;
  }
}
.common__lead {
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common__lead {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .common__lead {
    padding-bottom: 30px;
  }
}

/* Text
-------------------------------------------------------------- */
a {
  color: #0690ca;
  text-decoration: underline;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
a img {
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
a[target=_blank]::after {
  display: inline-block;
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-left: 0.25em;
  font-size: 80%;
  vertical-align: middle;
}
a[href$=".pdf"], a[href$=".doc"], a[href$=".docx"], a[href$=".xls"], a[href$=".xlsx"] {
  text-decoration: none;
}
a[href$=".pdf"]::after, a[href$=".doc"]::after, a[href$=".docx"]::after, a[href$=".xls"]::after, a[href$=".xlsx"]::after {
  display: none;
}
a[href$=".pdf"]::before, a[href$=".doc"]::before, a[href$=".docx"]::before, a[href$=".xls"]::before, a[href$=".xlsx"]::before {
  padding-right: 0.25em;
  vertical-align: middle;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
a[href$=".pdf"]:hover, a[href$=".pdf"]:active, a[href$=".pdf"]:focus, a[href$=".doc"]:hover, a[href$=".doc"]:active, a[href$=".doc"]:focus, a[href$=".docx"]:hover, a[href$=".docx"]:active, a[href$=".docx"]:focus, a[href$=".xls"]:hover, a[href$=".xls"]:active, a[href$=".xls"]:focus, a[href$=".xlsx"]:hover, a[href$=".xlsx"]:active, a[href$=".xlsx"]:focus {
  color: #dc3818;
}
a[href$=".pdf"]::before {
  display: inline-block;
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #cd0f0f;
}
a[href$=".doc"]::before, a[href$=".docx"]::before {
  display: inline-block;
  content: "\f1c2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #1958a0;
}
a[href$=".xls"]::before, a[href$=".xlsx"]::before {
  display: inline-block;
  content: "\f1c3";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #006f3e;
}
a:hover, a:active, a:focus {
  color: #dc3818;
}
a:hover img, a:active img, a:focus img {
  opacity: 0.7;
}

.link-arrow {
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.link-arrow::before {
  display: inline-block;
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.2em;
  vertical-align: middle;
  color: #dc3818;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

sup {
  vertical-align: top;
  font-size: 60%;
}

strong {
  color: #c00;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(253, 242, 0, 0)), color-stop(50%, rgb(253, 242, 0)), to(rgb(253, 242, 0)));
  background: linear-gradient(rgba(253, 242, 0, 0) 50%, rgb(253, 242, 0) 50%, rgb(253, 242, 0));
}

/* Image
-------------------------------------------------------------- */
img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.image img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.img-left .image {
  float: left;
  width: 48%;
}
.img-left .text {
  float: right;
  width: 48%;
}

.img-right .image {
  float: right;
  width: 48%;
}
.img-right .text {
  float: left;
  width: 48%;
}

@media screen and (max-width: 640px) {
  .img-left .image,
.img-right .image {
    float: none;
    width: 100%;
    padding-bottom: 1em;
  }
  .img-left .text,
.img-right .text {
    float: none;
    width: 100%;
  }
}
/* Btn
-------------------------------------------------------------- */
.btn-01 a {
  display: inline-block;
  width: 96%;
  max-width: 300px;
  border: 2px solid #353535;
  text-align: center;
  font-weight: bold;
  padding: 0.6em 2em;
  margin-bottom: 1em;
  border-radius: 100px;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.btn-01 a::after {
  display: inline-block;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .btn-01 a::after {
    right: 0.3em;
  }
}
.btn-01 a:hover, .btn-01 a:active, .btn-01 a:focus {
  background: #353535;
  border-color: #353535;
  color: #fff;
}
.btn-contact a {
  display: block;
  background: #dc3818;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5em 2em;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}
.btn-contact a::before {
  display: inline-block;
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 0.25em;
}
.btn-contact a:hover, .btn-contact a:active, .btn-contact a:focus {
  background: #80210e;
}

/* List
-------------------------------------------------------------- */
ul li,
ol li {
  list-style: none;
}

.list-decimal-01 {
  padding-left: 1.5em;
}
.list-decimal-01 li {
  list-style: decimal;
}
.list-decimal-02 {
  padding-left: 1.5em;
  position: relative;
}
.list-decimal-02 li span {
  position: absolute;
  left: 0.2em;
}

.list-bullet > li {
  position: relative;
  padding-left: 1.4em;
}
.list-bullet > li:not(:last-child) {
  padding-bottom: 0.25em;
}
.list-bullet > li::before {
  content: "●";
  color: #e6f0f4;
  position: absolute;
  top: 0;
  left: 0;
}

/* Table
-------------------------------------------------------------- */
.tbl-01 {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 1px solid #ccd2d4;
}
.tbl-01 tr {
  border-bottom: 1px solid #ccd2d4;
}
.tbl-01 th {
  font-weight: bold;
  width: 240px;
  background: #e6f0f4;
  text-align: center;
}
.tbl-01 th, .tbl-01 td {
  padding: 1.4em;
  word-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .tbl-01 th {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .tbl-01 th, .tbl-01 td {
    display: block;
    width: 100%;
    border: none;
    padding-right: 0;
    padding-left: 0;
  }
  .tbl-01 th {
    background: none;
    text-align: left;
    color: #366ca8;
    padding-bottom: 0.5em;
  }
  .tbl-01 td {
    padding-top: 0.5em;
  }
}

/* box
-------------------------------------------------------------- */
/* align
-------------------------------------------------------------- */
.al-center {
  text-align: center;
}

.al-left {
  text-align: left;
}

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

/* margin
-------------------------------------------------------------- */
.mb-0 {
  margin-bottom: 0px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

/*-----------------------------------

	$header

-----------------------------------*/
.header__wrap {
  display: table;
  width: 100%;
  padding: 20px 0;
}
.header__logo, .header__box {
  display: table-cell;
  vertical-align: middle;
}
.header__logo {
  width: 335px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__contact {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  text-align: right;
}
.header__contact-txt {
  font-size: 12px;
  font-size: 1.2rem;
}
.header__contact-tel {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 500;
}
.header__contact-tel span, .header__contact-tel a {
  padding-left: 1em;
  vertical-align: middle;
}
.header__contact-tel span::before, .header__contact-tel a::before {
  display: inline-block;
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 80%;
  color: #dc3818;
  margin-right: 0.15em;
  vertical-align: middle;
}
.header__contact-tel a {
  text-decoration: none;
  display: none;
}
@media screen and (max-width: 480px) {
  .header__contact-tel a {
    display: block;
  }
}

/*-----------------------------------

	$header - tablet

-----------------------------------*/
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    display: block;
    margin: auto;
  }
  .header__contact {
    display: none;
  }
}
/*-----------------------------------

	$header - mobile

-----------------------------------*/
@media screen and (max-width: 480px) {
  .header__wrap {
    padding: 5px 0;
  }
  .header__logo {
    width: 250px;
  }
}
/*-----------------------------------

	$footer

-----------------------------------*/
.footer__wrap {
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    padding: 60px 0;
  }
}
.footer__info {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .footer__info {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.footer__tel {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.25em 0;
}
.footer__tel span, .footer__tel a {
  vertical-align: middle;
}
.footer__tel span::before, .footer__tel a::before {
  display: inline-block;
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 80%;
  color: #dc3818;
  margin-right: 0.15em;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .footer__tel span {
    display: none;
  }
}
.footer__tel a {
  text-decoration: none;
  display: none;
  color: #444;
}
@media screen and (max-width: 480px) {
  .footer__tel a {
    display: inline-block;
  }
}
.footer__copyright {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  padding: 1em 0;
  text-align: center;
  color: #fff;
  background: #000;
}

#pagetop {
  position: fixed;
  right: 0;
  display: none;
  z-index: 999;
}
#pagetop a {
  display: block;
  width: 36px;
  padding-top: 100%;
  background: #ccc;
  opacity: 0.7;
  position: relative;
}
#pagetop a::before {
  display: inline-block;
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#pagetop a:hover, #pagetop a:active, #pagetop a:focus {
  opacity: 1;
}

/*-----------------------------------

	$mainvisual

-----------------------------------*/
.mainvisual {
  position: relative;
}
.mainvisual::after {
  content: "";
  display: block;
  width: 100%;
  height: 33%;
  position: absolute;
  bottom: 0;
  z-index: -1;
  background: #e6f0f4;
}
.mainvisual__wrap {
  position: relative;
}
.mainvisual__list {
  width: 74%;
  float: right;
  list-style: none;
}
.mainvisual__image.sp {
  display: none;
}
.mainvisual__text {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.mainvisual__text p {
  font-size: 44px;
  font-size: 4.4rem;
  font-family: "Noto Serif JP", serif;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.mainvisual__text p span {
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  margin-bottom: 0.5em;
}
.mainvisual__text p span:last-child {
  padding-right: 0.4em;
}
@media screen and (max-width: 1024px) {
  .mainvisual__text p {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual__text p {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual__list {
    width: 100%;
  }
  .mainvisual__image.pc {
    display: none;
  }
  .mainvisual__image.sp {
    display: block;
  }
  .mainvisual__text {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    bottom: 15px;
  }
  .mainvisual__text .inner {
    width: 100%;
  }
  .mainvisual__text p br {
    display: none;
  }
  .mainvisual__text p span {
    padding: 0 0.4em;
  }
}

/*-----------------------------------

	$business

-----------------------------------*/
.business {
  background: #e6f0f4;
  padding: 80px 0;
}
.business__wrap {
  background: #fff;
  padding: 60px;
}
.business__list {
  padding-bottom: 60px;
}
.business__list dl {
  background: #fff;
  border: 1px solid #366ca8;
  padding: 0 40px 40px;
}
.business__list dt {
  color: #366ca8;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-top: -0.5em;
  padding-bottom: 0.5em;
}
.business__list dt span {
  background: #fff;
  padding: 0 1em;
}
.business__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.business__list ul li {
  width: 48.5%;
  background: #366ca8;
  color: #fff;
  text-align: center;
  padding: 0.6em;
  font-size: 20px;
  font-size: 2rem;
  margin-top: 20px;
}
.business__photo:not(:last-child) {
  padding-bottom: 50px;
}
.business__photo li {
  width: 32%;
  float: left;
  text-align: center;
}
.business__photo li:not(:first-child) {
  margin-left: 2%;
}
.business__photo .caption {
  padding-top: 0.5em;
}
@media screen and (max-width: 1024px) {
  .business {
    padding: 60px 0;
  }
  .business__wrap {
    padding: 40px;
  }
  .business__list {
    padding-bottom: 30px;
  }
  .business__list dl {
    padding: 0 30px 30px;
  }
  .business__list dt {
    color: #366ca8;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .business__list ul li {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .business__photo .caption {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .business {
    padding: 40px 0;
  }
  .business__wrap {
    padding: 30px;
  }
  .business__list dl {
    padding: 0 20px 20px;
  }
  .business__list ul li {
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 10px;
    padding: 0.25em;
  }
  .business__photo li {
    width: 100%;
    max-width: 480px;
    margin: auto;
    float: none;
    padding-bottom: 40px;
  }
  .business__photo li:not(:first-child) {
    margin-left: auto;
  }
  .business__photo .caption {
    padding-top: 0.25em;
  }
}
@media screen and (max-width: 480px) {
  .business__wrap {
    padding: 20px;
  }
  .business__photo li {
    padding-bottom: 1em;
  }
}

/*-----------------------------------

	$.company

-----------------------------------*/
.company {
  padding: 80px 0;
}
.company__list {
  padding-bottom: 50px;
}
.company__list 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;
}
.company__list li {
  width: 32%;
  background: #366ca8;
  color: #fff;
  font-weight: 700;
  padding: 0.6em;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
.company .map {
  padding-top: 50px;
}
.company .map iframe {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1024px) {
  .company {
    padding: 60px 0;
  }
  .company__list li {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .company {
    padding: 40px 0;
  }
  .company__list {
    padding-bottom: 30px;
  }
  .company__list li {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .company__list li:not(:first-child) {
    margin-top: 10px;
  }
  .company .map {
    padding-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .company__wrap {
    padding: 0 2%;
  }
}

/*-----------------------------------

	$.recruit

-----------------------------------*/
.recruit {
  padding: 80px 0;
  background: #f2f1ed;
}
.recruit__box {
  background: #fff;
  border-radius: 20px;
  padding: 60px 80px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.recruit__box:not(:last-child) {
  margin-bottom: 60px;
}
.recruit__title-01 {
  font-size: 24px;
  font-size: 2.4rem;
  background: #e6f0f4;
  border-radius: 100px;
  text-align: center;
  padding: 0.5em;
  line-height: 1;
  margin-bottom: 30px;
}
.recruit__title-02 {
  font-size: 20px;
  font-size: 2rem;
  color: #366ca8;
  line-height: 1;
  margin-bottom: 20px;
}
.recruit__photo {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recruit__photo li {
  text-align: center;
  width: 49%;
}
.recruit .faq__list dt {
  color: #366ca8;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 30px;
  text-indent: -1.25em;
  margin-left: 1.25em;
}
.recruit .faq__list dt::before {
  content: "Q.";
  padding-right: 0.25em;
}
.recruit .faq__answer:not(:last-child) {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ccc;
}
.recruit .faq__answer-ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 30px;
  text-indent: -1.25em;
  margin-left: 1.25em;
}
.recruit .faq__answer-ttl::before {
  content: "A.";
  padding-right: 0.25em;
}
.recruit .faq__photo {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.recruit .faq__photo:not(:last-child) {
  padding-bottom: 50px;
}
.recruit .faq__photo li {
  text-align: center;
  width: 24.1%;
}
@media screen and (max-width: 1024px) {
  .recruit {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit {
    padding: 40px 0;
  }
  .recruit__box {
    padding: 30px;
  }
  .recruit__box:not(:last-child) {
    margin-bottom: 30px;
  }
  .recruit__title-01 {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .recruit__title-02 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .recruit__photo {
    padding-top: 20px;
  }
  .recruit .faq__list dt {
    font-size: 18px;
    font-size: 1.8rem;
    padding-bottom: 15px;
    line-height: 1.6;
  }
  .recruit .faq__answer:not(:last-child) {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .recruit .faq__answer-ttl {
    font-size: 15px;
    font-size: 1.5rem;
    padding-bottom: 15px;
    line-height: 1.6;
  }
  .recruit .faq__photo li {
    width: 49%;
    margin-bottom: 10px;
  }
}