/*!************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./node_modules/ress/dist/ress.min.css ***!
  \************************************************************************************************************************************************************************************************************************************************************/
html {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

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

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}
/*!********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/scss/style.scss ***!
  \********************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ============================================================
*
* BASE
*
* ============================================================ */
/* ------------------------------------------------------------
* 基本設定
* ------------------------------------------------------------ */
html {
  line-height: 1.75;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #444444;
  background: #fff;
}

/* ----- リンクの設定 ----- */
a {
  color: #006dd9;
}
a:active, a:hover {
  text-decoration: none;
}

/* ----- ボタンの設定 ----- */
button {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ----- 画像 ----- */
img {
  max-width: 100%;
  vertical-align: bottom;
}

/* ----- lazyloadアニメーション ----- */
.js-lazy-load {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.5, 0, 0, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0.1s;
  transition: opacity 0.4s cubic-bezier(0.5, 0, 0, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0.1s;
  transition: opacity 0.4s cubic-bezier(0.5, 0, 0, 1) 0.1s, transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0.1s;
  transition: opacity 0.4s cubic-bezier(0.5, 0, 0, 1) 0.1s, transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0.1s;
}

ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ------------------------------------------------------------
* 限定的なベーススタイル
* ------------------------------------------------------------ */
/* 管理用パーツ
* -------------------------------------------------- */
#adminBox,
.acms-admin-box {
  position: relative;
  z-index: 10;
  margin-bottom: 0;
  border: 0;
}

.acms-admin-edit-info {
  margin: 0;
  border: 0;
}

#js-seo_info {
  background-color: #efefef;
}

/* ============================================================
*
* レイアウト
*
* ============================================================ */
/* ------------------------------------------------------------
* ヘッダー
* ------------------------------------------------------------ */
.ly_header {
  position: relative;
  z-index: 9990;
  background-color: #F9FCFC;
}
.ly_header.ly_header__topheader {
  position: absolute;
  width: 100%;
  top: 0;
  background-color: initial;
}
.ly_header.ly_title__workscat {
  background-color: #079DF1;
}

.ly_header_inner {
  padding: 5px 20px;
  margin-right: auto;
  margin-left: auto;
}

/* ------------------------------------------------------------
* フッター
* ------------------------------------------------------------ */
.ly_footer {
  position: relative;
  padding: 60px 0 40px;
  background-color: #F9FCFC;
}
.ly_footer__home {
  padding: 60px 0 40px;
}

.ly_footer_inner {
  max-width: 1140px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

/* ------------------------------------------------------------
* ラッパー
* ------------------------------------------------------------ */
/* ------------------------------------------------------------
* セクション
* ------------------------------------------------------------ */
.ly_sect {
  position: relative;
  padding: 40px 0;
}
.ly_sect > .ly_sect_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  border-radius: 40px 40px 0 0;
}
.ly_sect.ly_sect__color_key {
  background-color: #079DF1;
}
.ly_sect.ly_sect__color_key-light {
  background-color: #F8FAF8;
  width: 100%;
}
.ly_sect.ly_sect__color_sub {
  background-color: #FFDB5E;
  width: 100%;
}
.ly_sect.ly_sect__color_gray-lighter {
  background-color: #ededed;
  margin-top: 40px;
}
.ly_sect.ly_sect__color_gray-light {
  background-color: #e6e6e6;
  margin-top: 40px;
}
.ly_sect.ly_sect_narrowPadding {
  padding: 50px 0;
}
.ly_sect.ly_sect__color_key_lighter {
  background-color: #F9FCFC;
}
.ly_sect.ly_sect__entry {
  padding-top: 20px;
}

/* ------------------------------------------------------------
* コンテンツエリア
* ------------------------------------------------------------ */
.ly_cont {
  max-width: 1140px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.ly_sect .ly_cont {
  position: relative;
}

.ly_cont.ly_cont__mdNarrow {
  max-width: 800px;
}

.ly_cont.ly_cont__narrow {
  max-width: 800px;
}

/* ------------------------------------------------------------
* ページのタイトル部分
* ------------------------------------------------------------ */
.ly_title {
  background: url(assets/nav_innerbgimage.png) center left 20%/contain no-repeat;
  background-color: #F9FCFC;
}
.ly_title.ly_title__workscat {
  background-color: #079DF1;
}
.ly_title.ly_title__nobgimg {
  background-image: none;
}

/* ============================================================
*
* モジュール
*
* ============================================================ */
/* ------------------------------------------------------------
* ボタン
* ------------------------------------------------------------ */
/* ボタンのみ */
.el_btn, .el_arrowBtn, .el_arrowBtnLg {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding: 1.2em 2.5em;
  line-height: 1;
  color: #444444;
  text-decoration: none;
  background-color: #FFF;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  font-weight: bold;
  margin: 0 3px;
  border-radius: 100px;
  text-align: center;
}
.el_btn:active, .el_arrowBtn:active, .el_arrowBtnLg:active, .el_btn:hover, .el_arrowBtn:hover, .el_arrowBtnLg:hover {
  background-color: #e6e6e6;
}
.el_btn:active::before, .el_arrowBtn:active::before, .el_arrowBtnLg:active::before, .el_btn:hover::before, .el_arrowBtn:hover::before, .el_arrowBtnLg:hover::before {
  right: 29px;
}
.el_btn:active::after, .el_arrowBtn:active::after, .el_arrowBtnLg:active::after, .el_btn:hover::after, .el_arrowBtn:hover::after, .el_arrowBtnLg:hover::after {
  right: 25px;
}
.el_btn.el_btn__widthfull, .el_btn__widthfull.el_arrowBtn, .el_btn__widthfull.el_arrowBtnLg {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.el_btn.el_btn__color, .el_btn__color.el_arrowBtn, .el_btn__color.el_arrowBtnLg {
  background: #079DF1;
  color: #FFF;
}
.el_btn.el_btn__color:hover, .el_btn__color.el_arrowBtn:hover, .el_btn__color.el_arrowBtnLg:hover {
  background: #0680c7;
}
.el_btn.el_btn__accent, .el_btn__accent.el_arrowBtn, .el_btn__accent.el_arrowBtnLg {
  background: #FFDB5E;
  color: #444444;
}
.el_btn.el_btn__accent:hover, .el_btn__accent.el_arrowBtn:hover, .el_btn__accent.el_arrowBtnLg:hover {
  background: #d3b136;
}
.el_btn.el_btn__third, .el_btn__third.el_arrowBtn, .el_btn__third.el_arrowBtnLg {
  background: #E6002D;
  color: #FFF;
}
.el_btn.el_btn__third:hover, .el_btn__third.el_arrowBtn:hover, .el_btn__third.el_arrowBtnLg:hover {
  background: #ca0029;
}
.el_btn.el_btn__arrow, .el_btn__arrow.el_arrowBtn, .el_btn__arrow.el_arrowBtnLg {
  padding-right: 3em;
  text-align: left;
  position: relative;
}
.el_btn.el_btn__arrow::after, .el_btn__arrow.el_arrowBtn::after, .el_btn__arrow.el_arrowBtnLg::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.5em;
  width: 15px;
  height: 15px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTE0LjIxLDcuMjlsLTQtNGMtLjM5LS4zOS0xLjAyLS4zOS0xLjQxLDBzLS4zOSwxLjAyLDAsMS40MWwyLjI5LDIuMjlIMi41Yy0uNTUsMC0xLC40NS0xLDFzLjQ1LDEsMSwxaDguNTlsLTIuMjksMi4yOWMtLjM5LjM5LS4zOSwxLjAyLDAsMS40MS4yLjIuNDUuMjkuNzEuMjlzLjUxLS4xLjcxLS4yOWw0LTRjLjM5LS4zOS4zOS0xLjAyLDAtMS40MVoiIHN0eWxlPSJzdHJva2Utd2lkdGg6MHB4OyIvPjwvc3ZnPg==);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.9;
}
.el_btn.el_btn__arrow:hover::after, .el_btn__arrow.el_arrowBtn:hover::after, .el_btn__arrow.el_arrowBtnLg:hover::after {
  right: 1em;
}
.el_btn.el_btn__arrow.el_btn__color::after, .el_btn__arrow.el_btn__color.el_arrowBtn::after, .el_btn__arrow.el_btn__color.el_arrowBtnLg::after, .el_btn.el_btn__arrow.el_btn__third::after, .el_btn__arrow.el_btn__third.el_arrowBtn::after, .el_btn__arrow.el_btn__third.el_arrowBtnLg::after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTE0LjIxLDcuMjlsLTQtNGMtLjM5LS4zOS0xLjAyLS4zOS0xLjQxLDBzLS4zOSwxLjAyLDAsMS40MWwyLjI5LDIuMjlIMi41Yy0uNTUsMC0xLC40NS0xLDFzLjQ1LDEsMSwxaDguNTlsLTIuMjksMi4yOWMtLjM5LjM5LS4zOSwxLjAyLDAsMS40MS4yLjIuNDUuMjkuNzEuMjlzLjUxLS4xLjcxLS4yOWw0LTRjLjM5LS4zOS4zOS0xLjAyLDAtMS40MVoiIHN0eWxlPSJmaWxsOiNmZmY7IHN0cm9rZS13aWR0aDowcHg7Ii8+PC9zdmc+);
}
.el_btn.el_btn__arrow.el_btn__lg::after, .el_btn__arrow.el_btn__lg.el_arrowBtn::after, .el_btn__arrow.el_btn__lg.el_arrowBtnLg::after {
  width: 20px;
  height: 20px;
}
.el_btn.el_btn__arrowbtm, .el_btn__arrowbtm.el_arrowBtn, .el_btn__arrowbtm.el_arrowBtnLg {
  padding-right: 5em;
  text-align: left;
  position: relative;
}
.el_btn.el_btn__arrowbtm::after, .el_btn__arrowbtm.el_arrowBtn::after, .el_btn__arrowbtm.el_arrowBtnLg::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.5em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAhCAMAAABgOjJdAAAAFVBMVEVMaXFERERFRUVCQkJDQ0NEREREREQSucUUAAAABnRSTlMAgd8gX0DvpXGXAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAd0lEQVR4nO3QSQ7AIAxDUWJa3//IFWEKEJC6rNS/s/RWDuFdIBl/8ZE/5NqJKBmQly8iqIQ0BEbENKSIRtCFAhViCZroYCSowoKBoIgRWIIsZmAIVKygEyThgUZA8nZBJaytYCIeGIgPDNmBRvagkBNQcgYhyAoeyz4F6VW5W6gAAAAASUVORK5CYII=);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.el_btn.el_btn__arrowbtm:hover::after, .el_btn__arrowbtm.el_arrowBtn:hover::after, .el_btn__arrowbtm.el_arrowBtnLg:hover::after {
  bottom: -0.5em;
}
.el_btn.el_btn__border, .el_btn__border.el_arrowBtn, .el_btn__border.el_arrowBtnLg {
  border: 1px solid #079DF1;
}
.el_btn.el_btn__blackbtn, .el_btn__blackbtn.el_arrowBtn, .el_btn__blackbtn.el_arrowBtnLg {
  color: #079DF1;
  border: solid 1px #464646;
  background-color: #464646;
}
.el_btn.el_btn__blackbtn.el_btn.el_btn__arrowRight, .el_btn__blackbtn.el_btn__arrowRight.el_arrowBtn, .el_btn__blackbtn.el_btn__arrowRight.el_arrowBtnLg {
  position: relative;
  padding: 1em 3em 1em 2em;
}
.el_btn.el_btn__blackbtn.el_btn.el_btn__arrowRight::before, .el_btn__blackbtn.el_btn__arrowRight.el_arrowBtn::before, .el_btn__blackbtn.el_btn__arrowRight.el_arrowBtnLg::before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTE0LjIxLDcuMjlsLTQtNGMtLjM5LS4zOS0xLjAyLS4zOS0xLjQxLDBzLS4zOSwxLjAyLDAsMS40MWwyLjI5LDIuMjlIMi41Yy0uNTUsMC0xLC40NS0xLDFzLjQ1LDEsMSwxaDguNTlsLTIuMjksMi4yOWMtLjM5LjM5LS4zOSwxLjAyLDAsMS40MS4yLjIuNDUuMjkuNzEuMjlzLjUxLS4xLjcxLS4yOWw0LTRjLjM5LS4zOS4zOS0xLjAyLDAtMS40MVoiIHN0eWxlPSJzdHJva2Utd2lkdGg6MHB4OyIvPjwvc3ZnPg==) no-repeat 8px/14px 14px #fff;
  background-color: #079DF1;
}
.el_btn.el_btn__blackbtn.el_btn.el_btn__arrowRight:active::before, .el_btn__blackbtn.el_btn__arrowRight.el_arrowBtn:active::before, .el_btn__blackbtn.el_btn__arrowRight.el_arrowBtnLg:active::before, .el_btn.el_btn__blackbtn.el_btn.el_btn__arrowRight:hover::before, .el_btn__blackbtn.el_btn__arrowRight.el_arrowBtn:hover::before, .el_btn__blackbtn.el_btn__arrowRight.el_arrowBtnLg:hover::before {
  background-position: 10px;
}
.el_btn.el_btn__blackbtn.el_btn.el_btn__outerLink::after, .el_btn__blackbtn.el_btn__outerLink.el_arrowBtn::after, .el_btn__blackbtn.el_btn__outerLink.el_arrowBtnLg::after {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  margin: 0 0 0 8px;
  position: relative;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9Il94MzJfIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGMUY7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik05NiwwdjQxNmg0MTZWMEg5NnogTTQ3MiwzNzZIMTM2VjQwaDMzNlYzNzZ6Ii8+Cgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjQwLDQ3MiA0MCwyOTYgNDAsMTM2IDQwLDk2IDAsOTYgMCw1MTIgNDE2LDUxMiA0MTYsNDcyIDM3Niw0NzIgCSIvPgoJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIyMzIuOCwzMTIuOCAzNTAuNywxOTUgMzUwLjcsMjc5LjggMzkwLjcsMjc5LjggMzkwLjcsMTI2LjcgMjM3LjYsMTI2LjcgMjM3LjYsMTY2LjcgMzIyLjQsMTY2LjcgCgkJMjA0LjUsMjg0LjUgCSIvPgo8L2c+Cjwvc3ZnPgo=);
}
.el_btn.el_btn__blackbtn.el_btn.el_btn__outerLink:hover, .el_btn__blackbtn.el_btn__outerLink.el_arrowBtn:hover, .el_btn__blackbtn.el_btn__outerLink.el_arrowBtnLg:hover {
  background-color: #079DF1;
  color: #444444;
}
.el_btn.el_btn__blackbtn.el_btn.el_btn__outerLink:hover::after, .el_btn__blackbtn.el_btn__outerLink.el_arrowBtn:hover::after, .el_btn__blackbtn.el_btn__outerLink.el_arrowBtnLg:hover::after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9Il94MzJfIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiMzMzMzMzM7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik05NiwwdjQxNmg0MTZWMEg5NnogTTQ3MiwzNzZIMTM2VjQwaDMzNlYzNzZ6Ii8+Cgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjQwLDQ3MiA0MCwyOTYgNDAsMTM2IDQwLDk2IDAsOTYgMCw1MTIgNDE2LDUxMiA0MTYsNDcyIDM3Niw0NzIgCSIvPgoJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIyMzIuOCwzMTIuOCAzNTAuNywxOTUgMzUwLjcsMjc5LjggMzkwLjcsMjc5LjggMzkwLjcsMTI2LjcgMjM3LjYsMTI2LjcgMjM3LjYsMTY2LjcgMzIyLjQsMTY2LjcgCgkJMjA0LjUsMjg0LjUgCSIvPgo8L2c+Cjwvc3ZnPgo=);
}
.el_btn.el_btn__small, .el_btn__small.el_arrowBtn, .el_btn__small.el_arrowBtnLg {
  min-width: auto;
  padding: 0.5em 1em;
  font-size: 0.8em;
  line-height: 1;
}

.el_btn_wrap.el_btn_wrap__widthfull {
  text-align: center;
  margin-top: 20px;
}

/* 大きいボタン */
.el_btn.el_btn__lg, .el_btn__lg.el_arrowBtn, .el_btn__lg.el_arrowBtnLg {
  width: 100%;
  max-width: 1000px;
  padding-top: 1.2em;
  padding-bottom: 1.2em;
  font-size: 1.375em;
  border-width: 3px;
}

/* 矢印あり */
.el_arrowBtn, .el_arrowBtnLg,
.el_btn.el_btn__arrowRight {
  position: relative;
  padding: 1.5em 6em 1.5em 2em;
}
.el_arrowBtn:active::before, .el_arrowBtnLg:active::before, .el_arrowBtn:hover::before, .el_arrowBtnLg:hover::before,
.el_btn.el_btn__arrowRight:active::before,
.el_btn.el_btn__arrowRight:hover::before {
  background-position: 10px;
}

.el_arrowBtnLg {
  width: 100%;
  max-width: 1000px;
  padding-top: 1.2em;
  padding-bottom: 1.4em;
  font-size: 1.375em;
}

/* 色違い */
.el_btn.el_btn__borderWhite, .el_btn__borderWhite.el_arrowBtn, .el_btn__borderWhite.el_arrowBtnLg {
  border-color: #fff !important;
}

/* インラインのリンクボタン
* -------------------------------------------------- */
.el_btnInlineLink {
  position: relative;
  display: inline-block;
  padding: 0 1.7em 0 0;
  color: #444444;
  text-decoration: underline;
}
.el_btnInlineLink:visited {
  color: #444444;
  text-decoration: underline;
}
.el_btnInlineLink:active, .el_btnInlineLink:hover {
  color: #444444;
  text-decoration: none;
}
.el_btnInlineLink:active::before, .el_btnInlineLink:hover::before {
  background-position: center center;
  border-width: 1px;
}

.el_btnInlineLink.el_btnInlineLink__back {
  padding: 0 0 0 0;
}
.el_btnInlineLink.el_btnInlineLink__back::before {
  right: auto;
  left: -0.35em;
}
.el_btnInlineLink.el_btnInlineLink__back:active::before, .el_btnInlineLink.el_btnInlineLink__back:hover::before {
  background-position: center center;
}

.el_outerLinkbtn {
  position: relative;
  display: inline-block;
  padding: 0.8em 1.5em;
  min-width: 5em;
  font-size: 18px;
  line-height: 1.6;
  color: #079DF1;
  background-color: #FFDB5E;
  text-align: center;
  border-radius: 100px;
  margin: 1em 10px;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
}
.el_outerLinkbtn::after {
  display: inline-block;
  content: "";
  top: -2px;
  width: 1.5em;
  height: 1.5em;
  position: relative;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9Il94MzJfIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGMUY7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik05NiwwdjQxNmg0MTZWMEg5NnogTTQ3MiwzNzZIMTM2VjQwaDMzNlYzNzZ6Ii8+Cgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjQwLDQ3MiA0MCwyOTYgNDAsMTM2IDQwLDk2IDAsOTYgMCw1MTIgNDE2LDUxMiA0MTYsNDcyIDM3Niw0NzIgCSIvPgoJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIyMzIuOCwzMTIuOCAzNTAuNywxOTUgMzUwLjcsMjc5LjggMzkwLjcsMjc5LjggMzkwLjcsMTI2LjcgMjM3LjYsMTI2LjcgMjM3LjYsMTY2LjcgMzIyLjQsMTY2LjcgCgkJMjA0LjUsMjg0LjUgCSIvPgo8L2c+Cjwvc3ZnPgo=) no-repeat 5px center/1em 1em;
}
.el_outerLinkbtn:hover {
  background-color: #079DF1;
  color: #FFDB5E;
}
.el_outerLinkbtn:hover::after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9Il94MzJfIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiMzMzMzMzM7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik05NiwwdjQxNmg0MTZWMEg5NnogTTQ3MiwzNzZIMTM2VjQwaDMzNlYzNzZ6Ii8+Cgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjQwLDQ3MiA0MCwyOTYgNDAsMTM2IDQwLDk2IDAsOTYgMCw1MTIgNDE2LDUxMiA0MTYsNDcyIDM3Niw0NzIgCSIvPgoJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIyMzIuOCwzMTIuOCAzNTAuNywxOTUgMzUwLjcsMjc5LjggMzkwLjcsMjc5LjggMzkwLjcsMTI2LjcgMjM3LjYsMTI2LjcgMjM3LjYsMTY2LjcgMzIyLjQsMTY2LjcgCgkJMjA0LjUsMjg0LjUgCSIvPgo8L2c+Cjwvc3ZnPgo=) no-repeat 5px center/1em 1em;
}
/* ------------------------------------------------------------
* 見出し
* ------------------------------------------------------------ */
/* トップの見出しとカテゴリタイトル
* -------------------------------------------------- */
.el_ttlHeading {
  font-size: 36px;
  margin-bottom: 20px;
}
.el_ttlHeading.el_ttlHeading__line {
  border-bottom: 1px solid #079DF1;
}

.el_ttlHeading_ja {
  font-size: 34px;
}

.el_ttlHeading_en {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 5px;
}

.el_largetelnumber {
  line-height: 1.2;
  font-size: 50px;
  margin-top: 10px;
  margin-bottom: 80px;
  color: #079DF1;
}
.el_largetelnumber a {
  color: #444444;
}
/* ページタイトル - 小(下層ページ用)
* -------------------------------------------------- */
.el_pageHeading {
  color: #444444;
  margin-top: 60px;
}
.ly_sect__newscontent .ly_title:first-child .el_pageHeading {
  margin-top: 0;
}

.el_pageHeading_sub {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #079DF1;
}
.el_pageHeading_sub span {
  position: relative;
  display: inline-block;
  margin: 0 1.5em 0 0;
}
.el_pageHeading_sub span::after {
  position: absolute;
  top: 0.25em;
  right: -1.25em;
  display: block;
  width: 1em;
  height: 1em;
  content: "";
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTEyLDhjMC0uMjYtLjEtLjUxLS4yOS0uNzFMNS43MSwxLjI5Yy0uMzktLjM5LTEuMDItLjM5LTEuNDEsMHMtLjM5LDEuMDIsMCwxLjQxbDUuMjksNS4yOS01LjI5LDUuMjljLS4zOS4zOS0uMzksMS4wMiwwLDEuNDFzMS4wMi4zOSwxLjQxLDBsNi02Yy4yLS4yLjI5LS40NS4yOS0uNzFaIiBzdHlsZT0ic3Ryb2tlLXdpZHRoOjBweDsiLz48L3N2Zz4=) no-repeat center/0.8em 0.8em;
}
.el_pageHeading_sub span:last-child {
  margin: 0;
}
.el_pageHeading_sub span:last-child::after {
  content: none;
}

.el_pageHeading_main {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 1px solid #079DF1;
}
.el_pageHeading_main > a {
  color: #444444;
  text-decoration: none;
}
/* 本文中の見出し
* -------------------------------------------------- */
/* ----- 大見出し ----- */
.el_xlHeading {
  margin-bottom: 1em;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
}
.el_xlHeading span {
  display: inline-block;
}

.el_lgHeading {
  margin-bottom: 0.72em;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

/* サブで英語がある時 */
.el_xlHeading_en {
  display: block;
  margin: 0 0 0.5em;
  font-size: 0.8em;
  color: #444444;
}
.el_xlHeading_en span {
  border-bottom: solid 0.218em #444444;
}

.el_xlHeading_ja {
  display: block;
}

/* サブで数字がある時 */
.el_xlHeading_num {
  display: block;
  margin: 0 0 0.25em;
  font-size: 0.8em;
  color: #444444;
}
.el_xlHeading_num span {
  border-bottom: solid 2px #444444;
}

.el_xlHeading_ja {
  display: block;
}

/* ----- 中見出し ----- */
.el_mdHeading {
  margin-bottom: 0.72em;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

/* ----- 小見出し ----- */
.el_smHeading {
  margin-bottom: 0.72em;
  font-size: 16px;
  line-height: 1.5;
}

.el_lgHeading_en {
  font-size: 60px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 30px;
}
.el_lgHeading_en span {
  font-size: 16px;
  padding-left: 10px;
}

/* ------------------------------------------------------------
* 注釈
* ------------------------------------------------------------ */
.el_note {
  font-size: 12px;
  color: #777;
}

ul.el_note {
  padding-left: 0;
  list-style: none;
}
ul.el_note li {
  padding-left: 1em;
  margin-bottom: 0.5em;
  text-indent: -1em;
}
ul.el_note li:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
* ラベル
* ------------------------------------------------------------ */
/* ボタンのみ */
.el_label {
  display: inline-block;
  padding: 0.15em 0.5em 0.1em;
  font-size: 1em;
  line-height: 1.3;
  color: #fff;
  background-color: #444444;
  margin: 0 5px;
  top: -2px;
  position: relative;
}
.el_label.el_label__lg {
  font-size: 1.2em;
}
.el_label.el_label__white {
  background-color: #fff;
}
.el_label.el_label__yellow {
  color: #444444;
}
.el_label.el_label__new {
  background-color: #fa4027;
}
.el_label.el_label__small {
  font-size: 0.8em;
}
.el_label.el_label__marginright {
  margin-right: 5px;
}

.el_labelLarge {
  background-color: #079DF1;
  color: #444444;
  font-size: 14px;
  line-height: 1.3;
  display: inline-block;
  font-weight: bold;
  padding: 5px 10px;
  margin: 0 0 5px;
}
.el_labelLarge.el_labelLarge__gray {
  background-color: #464646;
  color: #FFF;
}

.el_entryTagLabel {
  list-style: none;
}
.el_entryTagLabel a {
  text-decoration: none;
  background-color: #e6e6e6;
  display: inline-block;
  border-radius: 100px;
  margin: 0 5px 10px 5px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: #444444;
}
.el_entryTagLabel a:hover {
  background-color: #aaa;
}
.el_entryTagLabel.current a {
  background-color: #079DF1;
}

/* ------------------------------------------------------------
* フォームの要素
* ------------------------------------------------------------ */
/* ----- テキスト・テキストエリア ----- */
.el_inputText,
.el_inputTextarea {
  padding: 0.75em 1em;
  line-height: 1.5;
  vertical-align: middle;
  background-color: #fff;
  border: solid 1px #ddd;
  border-radius: 3px;
}
.el_inputText:-moz-placeholder-shown:focus, .el_inputTextarea:-moz-placeholder-shown:focus {
  background-color: #fff;
}
.el_inputText:-ms-input-placeholder:focus, .el_inputTextarea:-ms-input-placeholder:focus {
  background-color: #fff;
}
.el_inputText:focus, .el_inputText:placeholder-shown:focus,
.el_inputTextarea:focus,
.el_inputTextarea:placeholder-shown:focus {
  background-color: #fff;
}
.el_inputText::-webkit-input-placeholder, .el_inputTextarea::-webkit-input-placeholder {
  font-size: 14px;
  color: #aaa;
}
.el_inputText::-moz-placeholder, .el_inputTextarea::-moz-placeholder {
  font-size: 14px;
  color: #aaa;
}
.el_inputText:-ms-input-placeholder, .el_inputTextarea:-ms-input-placeholder {
  font-size: 14px;
  color: #aaa;
}
.el_inputText::-ms-input-placeholder, .el_inputTextarea::-ms-input-placeholder {
  font-size: 14px;
  color: #aaa;
}
.el_inputText::placeholder,
.el_inputTextarea::placeholder {
  font-size: 14px;
  color: #aaa;
}
.el_inputText:-moz-placeholder-shown, .el_inputTextarea:-moz-placeholder-shown {
  background-color: #fbfbfb;
}
.el_inputText:-ms-input-placeholder, .el_inputTextarea:-ms-input-placeholder {
  background-color: #fbfbfb;
}
.el_inputText:placeholder-shown,
.el_inputTextarea:placeholder-shown {
  background-color: #fbfbfb;
}

.el_inputTextarea {
  resize: vertical;
}

/* ----- ラジオボタン  ----- */
/* テキストのみ */
.el_inputRadio {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.el_inputRadio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.el_inputRadio label {
  position: relative;
  display: block;
  padding-right: 0.5em;
  padding-left: 1.5em;
  line-height: 1.3;
  cursor: pointer;
}
.el_inputRadio label::before,
.el_inputRadio label::after {
  position: absolute;
  top: 0.05em;
  left: 0;
  display: block;
  width: 1.2em;
  height: 1.2em;
  content: "";
  background-color: #fff;
  border-radius: 50%;
}
.el_inputRadio label::before {
  border: solid 2px #ddd;
}
.el_inputRadio label::after {
  border: solid 0.45em #ff507a;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.el_inputRadio input:checked + label::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* テキストもボタンに入れる */
.el_inputRadio.el_inputRadio__btn label {
  padding: 0.85em 1em 0.85em 2.2em;
  cursor: pointer;
  background-color: #fbfbfb;
  border: solid 1px #ddd;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.el_inputRadio.el_inputRadio__btn label::before,
.el_inputRadio.el_inputRadio__btn label::after {
  top: 50%;
  left: 0.5em;
  margin-top: -0.6em;
}
.el_inputRadio.el_inputRadio__btn label::before {
  border: solid 2px #ddd;
}
.el_inputRadio.el_inputRadio__btn label::after {
  background-color: #ff507a;
  border: solid 3px #fff;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.el_inputRadio.el_inputRadio__btn input:checked + label {
  color: #fff;
  background-color: #ff507a;
  border-color: #ff507a;
}
.el_inputRadio.el_inputRadio__btn input:checked + label::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ----- セレクトボックス  ----- */
.el_select {
  padding: 0.75em 2em 0.75em 1em;
  line-height: 1.5;
  vertical-align: middle;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTExLjQ1LDYuNzFjLS4yOSwwLS41Ny0uMTItLjc3LS4zNmwtMi42OC0zLjItMi42OCwzLjJjLS4zNS40Mi0uOTkuNDgtMS40MS4xMi0uNDItLjM1LS40OC0uOTktLjEyLTEuNDFMNy4yMy45NWMuMzgtLjQ1LDEuMTUtLjQ1LDEuNTMsMGwzLjQ1LDQuMTFjLjM1LjQyLjMsMS4wNS0uMTIsMS40MS0uMTkuMTYtLjQyLjIzLS42NC4yM1oiIHN0eWxlPSJmaWxsOiM3Nzc7IHN0cm9rZS13aWR0aDowcHg7Ii8+PHBhdGggZD0ibTgsMTUuMzljLS4zLDAtLjU4LS4xMy0uNzctLjM2bC0zLjQ1LTQuMTJjLS4zNS0uNDItLjMtMS4wNS4xMi0xLjQxLjQyLS4zNiwxLjA1LS4zLDEuNDEuMTJsMi42OCwzLjIsMi42OC0zLjJjLjM2LS40Mi45OS0uNDgsMS40MS0uMTIuNDIuMzUuNDguOTkuMTIsMS40MWwtMy40NSw0LjEyYy0uMTkuMjMtLjQ3LjM2LS43Ny4zNloiIHN0eWxlPSJmaWxsOiM3Nzc7IHN0cm9rZS13aWR0aDowcHg7Ii8+PC9zdmc+) no-repeat right 0.5em center/1em 1em #fff;
  border: solid 1px #ddd;
  border-radius: 3px;
}

/* ----- チェックボックス   ----- */
/* テキストのみ */
.el_inputCheckbox {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.el_inputCheckbox input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.el_inputCheckbox label {
  position: relative;
  display: block;
  padding-right: 0.5em;
  padding-left: 1.5em;
  line-height: 1.3;
  cursor: pointer;
}
.el_inputCheckbox label::before,
.el_inputCheckbox label::after {
  position: absolute;
  top: 0.05em;
  left: 0;
  display: block;
  width: 1.2em;
  height: 1.2em;
  content: "";
  background-color: #fff;
  border-radius: 50%;
}
.el_inputCheckbox label::before {
  border: solid 2px #ddd;
}
.el_inputCheckbox label::after {
  border: solid 0.45em #ff507a;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.el_inputCheckbox input:checked + label::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* テキストもボタンに入れる */
.el_inputCheckbox.el_inputCheckbox__btn label {
  padding: 0.85em 1em 0.85em 2.2em;
  cursor: pointer;
  background-color: #fbfbfb;
  border: solid 1px #ddd;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.el_inputCheckbox.el_inputCheckbox__btn label::before,
.el_inputCheckbox.el_inputCheckbox__btn label::after {
  top: 50%;
  left: 0.5em;
  margin-top: -0.6em;
}
.el_inputCheckbox.el_inputCheckbox__btn label::before {
  border: solid 2px #ddd;
}
.el_inputCheckbox.el_inputCheckbox__btn label::after {
  background-color: #ff507a;
  border: solid 3px #fff;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.el_inputCheckbox.el_inputCheckbox__btn input:checked + label {
  color: #fff;
  background-color: #ff507a;
  border-color: #ff507a;
}
.el_inputCheckbox.el_inputCheckbox__btn input:checked + label::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.el_formcomment {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.el_form_commentlist {
  margin: 5px 0 0 1.5em;
}
.el_form_commentlist li {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

/* ------------------------------------------------------------
* テーブル
* ------------------------------------------------------------ */
/* ----- テーブル ----- */
.el_table table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.el_table th,
.el_table td {
  display: block;
  padding: 0.5em 1em;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.el_table.js-scroll-hint th,
.el_table.js-scroll-hint td {
  display: table-cell;
  white-space: nowrap;
}
.el_table.js-scroll-hint table {
  margin: 0;
}
.el_table th {
  font-weight: bold;
  background: #f0f0f0;
}
.el_table td {
  background: #fff;
}
.el_table .entry-custom-table {
  margin-bottom: 2em;
}
/* ------------------------------------------------------------
* リスト
* ------------------------------------------------------------ */
.el_list {
  padding: 0 0 0 2em;
  margin: 0 0 2em;
}
.el_list li {
  margin: 0 0 0.375em;
  line-height: 1.5;
}
.el_list li:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
* ヘッダーのコンテンツ
* ------------------------------------------------------------ */
.bl_headerContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}

/* ロゴ
* -------------------------------------------------- */
.bl_headerContents_logo {
  width: 30%;
  max-width: 320px;
  padding: 0 70px 0 0;
}
.bl_headerContents_logo a {
  display: block;
}
.bl_headerContents_logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* 右側
* -------------------------------------------------- */
.bl_headerContents_linksSns {
  padding: 0 20px 0 0;
  font-size: 12px;
  line-height: 1.3;
}

.bl_headerContents_linksSns_head,
.bl_headerContents_linksSns_item {
  display: inline-block;
}

.bl_headerContents_linksSns_item::before {
  display: inline-block;
  margin: 0 0.5em;
  content: "/";
}
.bl_headerContents_linksSns_item a {
  color: #444444;
  text-decoration: none;
}
.bl_headerContents_linksSns_item a:visited {
  color: #444444;
  text-decoration: none;
}
.bl_headerContents_linksSns_item a:focus,
.bl_headerContents_linksSns_item a:active,
.bl_headerContents_linksSns_item a:hover {
  color: #444444;
  text-decoration: underline;
}
.bl_headerContents_linksSns_item img {
  width: 1.2em;
  height: 1.2em;
  margin: 0 0.3em 0 0;
}
.bl_headerContents_links {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.bl_headerContents_linkBtn {
  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;
  height: 80px;
  padding: 0 20px;
  margin: 0 0 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #464646;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background-color: #e6e6e6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.bl_headerContents_linkBtn img {
  width: 30px;
  display: block;
}
.bl_headerContents_linkBtn:focus, .bl_headerContents_linkBtn:active, .bl_headerContents_linkBtn:hover {
  background-color: #ededed;
}
.bl_headerContents_linkBtn:focus::after, .bl_headerContents_linkBtn:active::after, .bl_headerContents_linkBtn:hover::after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9Il94MzJfIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiMzMzMzMzM7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik05NiwwdjQxNmg0MTZWMEg5NnogTTQ3MiwzNzZIMTM2VjQwaDMzNlYzNzZ6Ii8+Cgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjQwLDQ3MiA0MCwyOTYgNDAsMTM2IDQwLDk2IDAsOTYgMCw1MTIgNDE2LDUxMiA0MTYsNDcyIDM3Niw0NzIgCSIvPgoJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIyMzIuOCwzMTIuOCAzNTAuNywxOTUgMzUwLjcsMjc5LjggMzkwLjcsMjc5LjggMzkwLjcsMTI2LjcgMjM3LjYsMTI2LjcgMjM3LjYsMTY2LjcgMzIyLjQsMTY2LjcgCgkJMjA0LjUsMjg0LjUgCSIvPgo8L2c+Cjwvc3ZnPgo=) no-repeat 5px center/1em 1em;
}
.bl_headerContents_linkBtn.bl_headerContents_linkBtn__spheader {
  width: 60px;
  height: 60px;
  position: relative;
  padding: 0;
  margin: 0;
  font-size: 9px;
}
.bl_headerContents_linkBtn.bl_headerContents_linkBtn__spheader.is_opened {
  display: none;
}

.bl_navbtn_wrap {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.bl_headerContents_linkBtn_icon {
  position: relative;
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin: 0 0.5em 0 0.5em;
  vertical-align: baseline;
  top: 2px;
}
.bl_headerContents_linkBtn_icon::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_headerContents_linkBtn_icon::before {
  opacity: 1;
}

.bl_scrollHeader {
  position: fixed;
  width: 100%;
  top: -500px;
  left: 0;
  z-index: 20;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.is_scrolled .bl_scrollHeader {
  top: 0;
}
.bl_scrollHeader .ly_header_inner {
  padding: 0 20px;
}
.bl_scrollHeader .bl_headerContents_logo img {
  max-width: 260px;
}

/* ------------------------------------------------------------
* フェードインのメニュー
* ------------------------------------------------------------ */
/* 開閉のボタン
* -------------------------------------------------- */
.bl_menuOpnBtn {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_menuOpnBtn.is_opened {
  background: rgb(255, 255, 255);
}
.bl_menuOpnBtn > span, .bl_menuOpnBtn::before, .bl_menuOpnBtn::after {
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  width: 30px;
  height: 2px;
  content: "";
  background: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_menuOpnBtn::before {
  -webkit-transform: translateY(-9px);
          transform: translateY(-9px);
}
.bl_menuOpnBtn::after {
  -webkit-transform: translateY(9px);
          transform: translateY(9px);
}
.bl_menuOpnBtn.is_opened span {
  opacity: 0;
}
.bl_menuOpnBtn.is_opened::before {
  -webkit-animation: before-opened 0.5s forwards;
          animation: before-opened 0.5s forwards;
}
.bl_menuOpnBtn.is_closed::before {
  -webkit-animation: before-closed 0.5s forwards;
          animation: before-closed 0.5s forwards;
}
.bl_menuOpnBtn.is_opened::after {
  -webkit-animation: after-on 0.5s forwards;
          animation: after-on 0.5s forwards;
  width: 30px;
}
.bl_menuOpnBtn.is_closed::after {
  -webkit-animation: after-off 0.5s forwards;
          animation: after-off 0.5s forwards;
}

@-webkit-keyframes before-opened {
  0% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  60% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(30deg);
            transform: translateY(0) rotate(30deg);
  }
}

@keyframes before-opened {
  0% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  60% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(30deg);
            transform: translateY(0) rotate(30deg);
  }
}
@-webkit-keyframes before-closed {
  0% {
    -webkit-transform: translateY(0) rotate(30deg);
            transform: translateY(0) rotate(30deg);
  }
  40% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  60% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
}
@keyframes before-closed {
  0% {
    -webkit-transform: translateY(0) rotate(30deg);
            transform: translateY(0) rotate(30deg);
  }
  40% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  60% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
}
@-webkit-keyframes after-on {
  0% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  60% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-30deg);
            transform: translateY(0) rotate(-30deg);
  }
}
@keyframes after-on {
  0% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  60% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-30deg);
            transform: translateY(0) rotate(-30deg);
  }
}
@-webkit-keyframes after-off {
  0% {
    -webkit-transform: translateY(0) rotate(-30deg);
            transform: translateY(0) rotate(-30deg);
  }
  40% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  60% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
}
@keyframes after-off {
  0% {
    -webkit-transform: translateY(0) rotate(-30deg);
            transform: translateY(0) rotate(-30deg);
  }
  40% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  60% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
}
/* メニュー本体
* -------------------------------------------------- */
/* ----- 大枠 ----- */
.bl_menu {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.bl_menu_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #FFF;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  background-image: url(assets/nav_innerbgimage.png);
  background-position: center right -5%;
  background-size: 70%;
  background-repeat: no-repeat;
  min-height: 80%;
}

.bl_menu_inner_imagewrap {
  border-radius: 0 30px 30px 0;
  width: 40%;
  overflow: hidden;
}

.bl_menu_inner_sitemap {
  width: 60%;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl_menu_inner_sitemap a {
  text-decoration: none;
}

.bl_menu_inner_cat {
  width: 33.3333333333%;
}

.bl_menu_categorylink {
  display: inline-block;
  margin-bottom: 20px;
}

.bl_menu_inner_catname_en {
  font-size: 36px;
  line-height: 1.2;
  color: #079DF1;
  font-weight: bold;
}

.bl_menu_inner_catname_ja {
  color: #444444;
  font-weight: bold;
  padding-left: 5px;
}

.bl_menu_inner_navlist {
  margin: 0 1em 40px;
}
.bl_menu_inner_navlist > li {
  list-style: none;
}
.bl_menu_inner_navlist > li a {
  color: #444444;
  border-bottom: 1px solid #AAA;
  font-size: 14px;
}

/* ----- 見出し ----- */
.bl_menuHead {
  padding: 0 auto 0;
  margin: 0 0;
  text-align: center;
}

/* ロゴ */
.bl_menuHead_logo {
  margin: 0 auto;
  padding: 10px;
}
.bl_menuHead_logo a {
  display: inline-block;
  width: 100%;
  max-width: 250px;
}
.bl_menuHead_logo img {
  display: inline-block;
  padding: 5px 10px;
}

/* SNSリンク */
.bl_menuHead_sns_link {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  border: solid 1px #FFDB5E;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.bl_menuHead_sns_link:active, .bl_menuHead_sns_link:hover {
  background-color: #FFDB5E;
}
/* ------------------------------------------------------------
* サイト一覧
* ------------------------------------------------------------ */
/* 全てのリスト */
.bl_sitemapList ul {
  padding: 0;
  margin: 20px 0 0;
  font-size: 12px;
  list-style: none;
}

.bl_sitemapList li {
  padding: 0 0 0 1em;
  margin: 0;
  font-weight: normal;
  line-height: 1.5;
}

.bl_sitemapList a {
  color: #444444;
  text-decoration: none;
}
.bl_sitemapList a:visited {
  color: #444444;
  text-decoration: none;
}
.bl_sitemapList a:active, .bl_sitemapList a:hover {
  color: #444444;
  text-decoration: underline;
}

/* 1階層目のリスト */
.bl_sitemapList > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 20px;
}

.bl_sitemapList li.is_level_1 {
  width: 50%;
  padding: 20px 10px;
  font-size: 1.2em;
  font-weight: bold;
}
.bl_sitemapList li.is_level_1 > a {
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
/* ------------------------------------------------------------
* グローバルナビ
* ------------------------------------------------------------ */
/* 外枠 */
.bl_gnavList {
  width: 100%;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* 全階層 */
.bl_gnavList ul {
  padding: 0;
  margin: 10px 10px 0 0;
  list-style: none;
}

/* 1階層目のリスト */
.bl_gnavList > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.bl_gnavList li.is_level_1 {
  position: relative;
  display: table-cell;
  padding: 5px;
  margin: 0 2px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
.bl_gnavList li.is_level_1 > a {
  display: inline-block;
  color: #444444;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 5px 10px 10px;
  position: relative;
}
.ly_header__topheader .bl_gnavList li.is_level_1 > a {
  color: #FFF;
}
.bl_gnavList li.is_level_1 > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #464646;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_gnavList li.is_level_1[data-has-child=true] > a {
  padding-right: 1em;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMCA2Ij48cGF0aCBkPSJtNSw2aDBjLS4yNywwLS41Mi0uMTEtLjcxLS4yOUwuMjksMS43MUMtLjEsMS4zMi0uMS42OC4yOS4yOS42OC0uMSwxLjMyLS4xLDEuNzEuMjlsMy4yOSwzLjI5TDguMjkuMjljLjM5LS4zOSwxLjAyLS4zOSwxLjQxLDBzLjM5LDEuMDIsMCwxLjQxbC00LDRjLS4xOS4xOS0uNDQuMjktLjcxLjI5WiIgc3R5bGU9InN0cm9rZS13aWR0aDowcHg7Ii8+PC9zdmc+) no-repeat right center/10px auto;
}
.bl_gnavList li.is_level_1 > a:visited {
  text-decoration: none;
}
.bl_gnavList li.is_level_1 > a:hover {
  text-decoration: none;
  border-bottom: 1px;
}
.bl_gnavList li.is_level_1 > a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.bl_gnavList li.is_level_1.stay > a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.bl_gnavList li.is_level_1.is_on > a {
  color: #0680c7;
}

.bl_gnav__instaicon {
  margin: 0 5px 5px 0;
}
.bl_gnav__instaicon img {
  width: 25px;
}
.bl_gnav__instaicon a {
  width: 26px;
  height: 26px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAAIVBMVEVMaXEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC+JJ50AAAACnRSTlMAPpm8gNfvZBAg10I+vAAAAAlwSFlzAAALEwAACxMBAJqcGAAAA95JREFUeJzVm+F2gyAMhQkEgrz/A++0bjVgxCAwtvuv1faTECCBaExFEQjRvZQa5F8/QCSI5okAXUidCg6hkeq6oQdczd7sMOo3224qbJoge4vGwa39CKuuBn4SNqXkK31Ns5q7i664U3qXyy7iJpms4bof+XFkK93nHSIAaIbhRwDwnmm9jkynW4KlJqDwCOhuPQxObb10wSZFKhseslEVvX7MtapEe34Rb12gQ7FwHzwubRVjjBBkE1M4XMfO5ZZkKzZ4Brckb1KDx3jzmZyEJoc5fvWaSY5Pllv1/DD+WYB2VtwX9vBZhiMfVfsDuQmGPjB+E+ZGV1raD+cyI/rC1jChwShNGFTYmt/UuSp8lE8Y31/G4mHceEsXS86Pb7u8k4M4i84AU2YFbgCYCwb2Xcw+qf+YcI9+gnNIoAWb7Dtq7OJIpwwn2JLtJecyvJOJO/U+rB/lVUV6JA4nw8HI78GuvCpDSxOIyVnZUzRFEiehOGWy2R+5dTO7d+ZVPFTD9+0+awxdgKujqQjLLkSXy2Lh7WqwNr+prufAwV4DLsPfimorOrDb8kHdz62Sgd3GwZc/aMsj3TCwFZpl6eU5AGR9Qz+nJvApryqmSDjNZjAEHMPtNkosxhrLFTrArjCy+KebV3VzagCDsv+sxtipAZw3pTKrZqm97waTllvcSr1gr7Lz2dq+EwwK+8lPCX1gm1qi7u3OOkkN5mNYEfyiFGk9AQO7GhSJJJ9soAeMd7ardI3tAbvWaD9b6jvAoTmvYo7dAY6tls5svT0HQ3vqTNW+SQ/AyoQOhoCpC4zPwVi7KCv+bzCtMjV0geEfDqe4agIxq6ZMs2yRwFXLIqwKBMyq0McsC/ZgVXhrVgX0ZlkKY1YlbWZZmmpWJeZm2VaEWbX5Yi63m+Ko7SZoID/aYIut4Clbik4BNtGN30R1q7aNnQ4sFIpIqi+d8BtHAzcP7xoOQ26LzOq1YqY4DJlz/HMLxjkHXhdyHJzZXSPNEd+F/PEbenioad27cvPiUPNK6RBMOca9EDBUzCLYScUnRjy4Lg/QJ8rlJL6Ijyo/ERVTPnJnlGOIotKbJhSgiPJ5F88puRFEqXSmKUVGJ0Uhv5lUVpXLpnMm+RuFZJSE1uW1gnNK5xLXtrpY0ORNHm/tPGzieUZZEDrUt8sQFfnFIp4KAxtdlqn7Sie8CziGFJVtezlIxYWE6NW3vtZRCk7UJDiQHMe9KrvpVUmi7nVoLOw2v1FCn54X0c/gmmWvKxhlfvRUgf7eKylGWz3VrtCXHz2W3f7ui1YLXy0zO3vJy3Tf+rw+2OTsutcHvwAQce+54c4eEwAAAABJRU5ErkJggg==);
  background-size: cover;
  display: block;
}
.ly_header__topheader .bl_gnav__instaicon a {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAAIVBMVEVMaXH///////////////////////////////////////8c1D1MAAAACnRSTlMAPpm8gNfvZBAg10I+vAAAAAlwSFlzAAALEwAACxMBAJqcGAAAA95JREFUeJzVm+F2gyAMhQkEgrz/A++0bjVgxCAwtvuv1faTECCBaExFEQjRvZQa5F8/QCSI5okAXUidCg6hkeq6oQdczd7sMOo3224qbJoge4vGwa39CKuuBn4SNqXkK31Ns5q7i664U3qXyy7iJpms4bof+XFkK93nHSIAaIbhRwDwnmm9jkynW4KlJqDwCOhuPQxObb10wSZFKhseslEVvX7MtapEe34Rb12gQ7FwHzwubRVjjBBkE1M4XMfO5ZZkKzZ4Brckb1KDx3jzmZyEJoc5fvWaSY5Pllv1/DD+WYB2VtwX9vBZhiMfVfsDuQmGPjB+E+ZGV1raD+cyI/rC1jChwShNGFTYmt/UuSp8lE8Y31/G4mHceEsXS86Pb7u8k4M4i84AU2YFbgCYCwb2Xcw+qf+YcI9+gnNIoAWb7Dtq7OJIpwwn2JLtJecyvJOJO/U+rB/lVUV6JA4nw8HI78GuvCpDSxOIyVnZUzRFEiehOGWy2R+5dTO7d+ZVPFTD9+0+awxdgKujqQjLLkSXy2Lh7WqwNr+prufAwV4DLsPfimorOrDb8kHdz62Sgd3GwZc/aMsj3TCwFZpl6eU5AGR9Qz+nJvApryqmSDjNZjAEHMPtNkosxhrLFTrArjCy+KebV3VzagCDsv+sxtipAZw3pTKrZqm97waTllvcSr1gr7Lz2dq+EwwK+8lPCX1gm1qi7u3OOkkN5mNYEfyiFGk9AQO7GhSJJJ9soAeMd7ardI3tAbvWaD9b6jvAoTmvYo7dAY6tls5svT0HQ3vqTNW+SQ/AyoQOhoCpC4zPwVi7KCv+bzCtMjV0geEfDqe4agIxq6ZMs2yRwFXLIqwKBMyq0McsC/ZgVXhrVgX0ZlkKY1YlbWZZmmpWJeZm2VaEWbX5Yi63m+Ko7SZoID/aYIut4Clbik4BNtGN30R1q7aNnQ4sFIpIqi+d8BtHAzcP7xoOQ26LzOq1YqY4DJlz/HMLxjkHXhdyHJzZXSPNEd+F/PEbenioad27cvPiUPNK6RBMOca9EDBUzCLYScUnRjy4Lg/QJ8rlJL6Ijyo/ERVTPnJnlGOIotKbJhSgiPJ5F88puRFEqXSmKUVGJ0Uhv5lUVpXLpnMm+RuFZJSE1uW1gnNK5xLXtrpY0ORNHm/tPGzieUZZEDrUt8sQFfnFIp4KAxtdlqn7Sie8CziGFJVtezlIxYWE6NW3vtZRCk7UJDiQHMe9KrvpVUmi7nVoLOw2v1FCn54X0c/gmmWvKxhlfvRUgf7eKylGWz3VrtCXHz2W3f7ui1YLXy0zO3vJy3Tf+rw+2OTsutcHvwAQce+54c4eEwAAAABJRU5ErkJggg==);
}

/* 2階層目のリスト */
.bl_gnavList li.is_level_1 > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  padding: 5px 0 0;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(10px, 10px);
          transform: translate(10px, 10px);
}
.bl_gnavList li.is_level_1 > ul.is_on {
  -webkit-animation: cnav-on 0.3s forwards;
          animation: cnav-on 0.3s forwards;
}
.bl_gnavList li.is_level_1 > ul.is_off {
  -webkit-animation: cnav-off 0.3s forwards;
          animation: cnav-off 0.3s forwards;
}

.bl_gnavList li.is_level_1 > ul > li {
  margin: 0 0 -1px;
  overflow: hidden;
  font-size: 14px;
  font-weight: normal;
  background-color: #ffd6e0;
  border: solid 1px #fff;
}
.bl_gnavList li.is_level_1 > ul > li a {
  display: block;
  padding: 10px 20px;
  color: #444444;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_gnavList li.is_level_1 > ul > li a:visited {
  color: #444444;
  text-decoration: none;
}
.bl_gnavList li.is_level_1 > ul > li a:hover {
  color: #fff;
  background-color: #ff507a;
}
.bl_gnavList li.is_level_1 > ul > li:first-child {
  border-radius: 10px 10px 0 0;
}
.bl_gnavList li.is_level_1 > ul > li:last-child {
  margin: 0;
  border-radius: 0 0 10px 10px;
}

@-webkit-keyframes cnav-on {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  1% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes cnav-on {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  1% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes cnav-off {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  99% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
}
@keyframes cnav-off {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  99% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
}
/* ------------------------------------------------------------
* トピックパス
* ------------------------------------------------------------ */
.bl_topicpath {
  margin: 0 0 20px;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1.3;
  position: absolute;
}

.bl_topicpath_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  margin: 0 0 0 -0.5em;
  list-style: none;
}
.bl_topicpath_list::after {
  display: block;
  clear: both;
  content: "";
}
.bl_topicpath_item {
  padding: 5px 1.5em 5px 0.5em;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjUgMjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI1IDI1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0Q5RDlEOTtmaWx0ZXI6dXJsKCNBZG9iZV9PcGFjaXR5TWFza0ZpbHRlcik7fQoJLnN0MXttYXNrOnVybCgjbWFzazBfMTlfMTEyM18wMDAwMDE1MDA4Mzg4NDA1MzAzNzI1OTM4MDAwMDAwNDEyNzQ3NTgwMjcwMjI2NjAwNV8pO30KCS5zdDJ7ZmlsbDojNDQ0NDQ0O30KPC9zdHlsZT4KPGRlZnM+Cgk8ZmlsdGVyIGlkPSJBZG9iZV9PcGFjaXR5TWFza0ZpbHRlciIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSI2LjgiIHk9IjIuOSIgd2lkdGg9IjExLjgiIGhlaWdodD0iMjAiPgoJCTxmZUNvbG9yTWF0cml4ICB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMSAwIDAgMCAwICAwIDEgMCAwIDAgIDAgMCAxIDAgMCAgMCAwIDAgMSAwIi8+Cgk8L2ZpbHRlcj4KPC9kZWZzPgo8bWFzayBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSI2LjgiIHk9IjIuOSIgd2lkdGg9IjExLjgiIGhlaWdodD0iMjAiIGlkPSJtYXNrMF8xOV8xMTIzXzAwMDAwMTUwMDgzODg0MDUzMDM3MjU5MzgwMDAwMDA0MTI3NDc1ODAyNzAyMjY2MDA1XyI+Cgk8cmVjdCB4PSIwLjUiIHk9IjAuOSIgY2xhc3M9InN0MCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+CjwvbWFzaz4KPGcgY2xhc3M9InN0MSI+Cgk8cGF0aCBjbGFzcz0ic3QyIiBkPSJNOC41LDIyLjlsLTEuOC0xLjhsOC4yLTguMkw2LjgsNC43bDEuOC0xLjhsMTAsMTBMOC41LDIyLjl6Ii8+CjwvZz4KPC9zdmc+Cg==) no-repeat right calc(0.1em + 5px)/1em 1em;
  opacity: 0.8;
}
.ly_title__workscat .bl_topicpath_item {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjUgMjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI1IDI1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxnPgoJPHBhdGggY2xhc3M9InN0MCIgZD0iTTguNSwyMi45bC0xLjgtMS44bDguMi04LjJMNi44LDQuN2wxLjgtMS44bDEwLDEwTDguNSwyMi45eiIvPgo8L2c+Cjwvc3ZnPgo=);
}
.bl_topicpath_item:last-child {
  padding: 5px 0 5px 0.5em;
  background: transparent;
}
.bl_topicpath_item a {
  color: #444444;
  text-decoration: none;
}
.ly_title__workscat .bl_topicpath_item a {
  color: #FFF;
}
.bl_topicpath_item a:hover,
.bl_topicpath_item a:active {
  text-decoration: underline;
}

/* ------------------------------------------------------------
* CTAエリア
* ------------------------------------------------------------ */
.bl_cta {
  text-align: center;
  background-color: #333;
  padding: 60px 40px;
}

.bl_cta_inner {
  max-width: 1100px;
  margin: auto;
}

/* 電話番号
* -------------------------------------------------- */
.bl_ctaTel {
  width: 100%;
  margin: 0 0 20px;
  color: #fff;
  text-align: center;
}

.bl_ctaTel_title {
  margin: 0 0 10px;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.3;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.bl_cta_bodywrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  margin: 30px -20px 0;
}

.bl_cta_body {
  width: 50%;
  padding: 20px;
}

.bl_cta_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 20px;
}
.bl_cta_body.bl_cta_body__tel {
  border-left: 1px solid #fff;
}

.bl_cta_body_icon {
  width: 100px;
  padding: 15px;
}

.bl_cta_body_cont {
  width: calc(100% - 130px);
}
.bl_cta_body_cont > p {
  margin-bottom: 5px;
}

.bl_cta_titlesmall {
  font-weight: bold;
}

.bl_cta_telnumber {
  font-family: "Libre Bodoni", serif;
  font-optical-sizing: auto;
  font-size: 45px;
  line-height: 1;
}
.bl_cta_telnumber a {
  color: #FFF;
}
/* ------------------------------------------------------------
* フッターのコンテンツ
* ------------------------------------------------------------ */
.bl_footergroup_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bl_footershopinfo {
  width: 400px;
}
.bl_footershopinfo > p {
  font-size: 14px;
}
.bl_footershopinfo img {
  vertical-align: text-bottom;
}
.bl_footershopinfo a {
  color: #444444;
}

.bl_footernav {
  width: calc(100% - 400px);
}

.bl_footershopinfo_logo {
  width: 300px;
  margin-bottom: 20px;
}
.bl_footershopinfo_logo img {
  width: 100%;
}
.bl_footershopinfo_outerlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.bl_footershopinfo_outerlinkimage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl_footershopinfo_outerlinkimage.bl_footershopinfo_outerlinkimage__instagram {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.bl_footershopinfo_outerlinkimage.bl_footershopinfo_outerlinkimage__instagram img {
  width: 100%;
}
.bl_footershopinfo_outerlinkimage.bl_footershopinfo_outerlinkimage__tetra {
  width: 140px;
}
.bl_footernav_sitenav {
  margin-bottom: 30px;
}
.bl_footernav_sitenav > ul.bl_footernav_lv1 {
  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;
}
.bl_footernav_sitenav > ul.bl_footernav_lv1 > li {
  list-style: none;
  font-size: 16px;
  font-weight: bold;
  width: 11em;
  padding-right: 1em;
  margin-bottom: 12px;
  font-weight: bold;
}
.bl_footernav_sitenav > ul.bl_footernav_lv1 > li > a {
  color: #079DF1;
  text-decoration: none;
}
.bl_footernav_sitenav > ul.bl_footernav_lv1 > li > a:hover {
  color: #0680c7;
}
.bl_footernav_sitenav ul.bl_footernav_lv2 {
  margin-top: 10px;
}
.bl_footernav_sitenav ul.bl_footernav_lv2 > li {
  font-size: 0.8em;
  font-weight: normal;
  list-style: none;
  margin-left: 1em;
}
.bl_footernav_sitenav ul.bl_footernav_lv2 > li a {
  color: #666;
  text-decoration: none;
}
.bl_footernav_sitenav ul.bl_footernav_lv2 > li a:hover {
  color: #079DF1;
}

.bl_footer_copyright {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #999;
  margin: 60px 0 0;
}

.bl_footerpolicylink > a {
  font-size: 12px;
  padding-right: 10px;
}
/* ================ バナー ================ */
.bl-footer-bnr-smile100 {
  margin: 40px auto 80px;
}

.bl-footer-bnr-smile100_bnr {
  display: block;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl-footer-bnr-smile100_bnr:hover {
  opacity: 0.7;
}

.bl-footer-bnr-smile100_bnr_sm {
  display: block;
  width: 100%;
  height: auto;
}

.bl-footer-bnr-smile100_bnr_lg {
  display: none;
  width: 100%;
  height: auto;
}
.bl_footericon_wrap {
  width: 100px;
  margin: 10px 0;
}
.bl_footericon_wrap img {
  border: 1px solid #ddd;
}

/* ------------------------------------------------------------
* スライダー
* ------------------------------------------------------------ */
.bl_slider_wrap {
  overflow: hidden;
  top: 0;
  position: relative;
  line-height: 0;
}

.bl_slider_cont {
  position: relative;
}
.bl_slider_cont::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(24, 79, 184, 0.25);
  opacity: 1;
  min-height: 500px;
  z-index: 5;
  background-image: url(assets/mv_bgmark.png);
  background-position: center;
  background-size: 80%;
  background-repeat: no-repeat;
}

.bl_slider .slick-list {
  overflow: visible;
}

.bl_slider_img img {
  height: 100vh;
  min-height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  vertical-align: middle;
}

.bl_slider_copy {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  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;
  z-index: 15;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  text-shadow: 0px 0px 30px rgba(7, 157, 241, 0.4);
}

.bl_slider_ttl {
  font-size: 160px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 0.8;
  letter-spacing: -0.03em;
}

.bl_slider_ttl__large {
  font-size: 1.3em;
  display: block;
}

.bl_slider_subttl {
  font-size: 34px;
  font-weight: bold;
  font-optical-sizing: auto;
  text-transform: uppercase;
  line-height: 1.2;
}
.bl_slider_scrolldown {
  position: absolute;
  color: #FFF;
  z-index: 11;
  font-size: 10px;
  letter-spacing: 0.08em;
  left: 15px;
  bottom: 100px;
  padding-right: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.bl_slider_scrolldown > span {
  -webkit-animation: scroll-arrow 4s infinite linear 1s;
          animation: scroll-arrow 4s infinite linear 1s;
  display: block;
  position: absolute;
  right: -10px;
}
.bl_slider_scrolldown > span:before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -10px;
  width: 1px;
  height: 20px;
  background: #eee;
  rotate: -31deg;
}
.bl_slider_scrolldown > span:after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -15px;
  width: 120px;
  height: 1px;
  background: #eee;
  -webkit-transform-origin: right;
          transform-origin: right;
}

@-webkit-keyframes scroll-arrow {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  2% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  4% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  6% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  8% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes scroll-arrow {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  2% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  4% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  6% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  8% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/* ------------------------------------------------------------
* サマリー
* ------------------------------------------------------------ */
.bl_summaryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  padding: 0;
  list-style: none;
}
.bl_summaryList.bl_summaryList__col2 .bl_summaryItem {
  width: 50%;
}
.bl_summaryList.bl_summaryList__col1 .bl_summaryItem {
  width: 100%;
}

.bl_summaryItem {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  width: 50%;
  margin-bottom: 60px;
}
.bl_summaryItem.bl_summaryItem__col1 {
  width: 100%;
}
.bl_summaryItem_inner {
  display: block;
  margin: 0 auto;
  color: #444444;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
}
.bl_summaryItem_inner:visited, .bl_summaryItem_inner:active, .bl_summaryItem_inner:hover {
  color: #444444;
  text-decoration: none;
}
.bl_summaryItem_inner.bl_summaryItem_inner__narrow {
  padding: 0 40px;
}

.bl_summaryItem.bl_summaryItem__sideimage .bl_summaryItem_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl_summaryItem.bl_summaryItem__sideimage .bl_summaryItem_media {
  width: 40%;
}
.bl_summaryItem.bl_summaryItem__sideimage .bl_summaryItem_info {
  width: 60%;
  display: block;
  padding-left: 20px;
}

.bl_summaryItem_media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bl_summaryItem_mediaImg {
  overflow: hidden;
}
.bl_summaryItem_mediaImg img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/10;
}
.bl_summaryItem_inner:active .bl_summaryItem_mediaImg img, .bl_summaryItem_inner:hover .bl_summaryItem_mediaImg img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.bl_summaryItem_info {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.3;
  color: #aaa;
}
.bl_summaryItem_info.bl_summaryItem_info__large {
  color: #444444;
  font-size: 14px;
}

.bl_summaryItem_info_new {
  margin-left: 0.5em;
  color: #fa4027;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.bl_summaryItem_inner:active .bl_summaryItem_info_new, .bl_summaryItem_inner:hover .bl_summaryItem_info_new {
  opacity: 0.7;
}

.bl_summaryItem_title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding: 15px 25px 15px;
  position: relative;
  background-color: #fff;
}
.bl_summaryItem_inner:active .bl_summaryItem_title, .bl_summaryItem_inner:hover .bl_summaryItem_title {
  opacity: 0.7;
}
.bl_summaryItem_inner:active .bl_summaryItem_title::after, .bl_summaryItem_inner:hover .bl_summaryItem_title::after {
  right: 10px;
}
.bl_summaryItem_title::after {
  content: "";
  display: block;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTE0LjIxLDcuMjlsLTQtNGMtLjM5LS4zOS0xLjAyLS4zOS0xLjQxLDBzLS4zOSwxLjAyLDAsMS40MWwyLjI5LDIuMjlIMi41Yy0uNTUsMC0xLC40NS0xLDFzLjQ1LDEsMSwxaDguNTlsLTIuMjksMi4yOWMtLjM5LjM5LS4zOSwxLjAyLDAsMS40MS4yLjIuNDUuMjkuNzEuMjlzLjUxLS4xLjcxLS4yOWw0LTRjLjM5LS4zOS4zOS0xLjAyLDAtMS40MVoiIHN0eWxlPSJzdHJva2Utd2lkdGg6MHB4OyIvPjwvc3ZnPg==) no-repeat center/contain;
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0.6;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.bl_summaryItem_title_important {
  display: inline-block;
  padding: 0 0.5em;
  margin-right: 0.3em;
  font-size: 0.75em;
  line-height: 1.7;
  color: #fff;
  vertical-align: 2px;
  background-color: #fa4027;
  border-radius: 3px;
}
.bl_summaryItem_title_important::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.2em;
  vertical-align: -0.1em;
  content: "";
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTcuMDYsMTAuMDhsLS42Ny02LjMyLS4wNy0yLjc2aDMuMzhsLS4wOSwyLjc2LS42NSw2LjMyaC0xLjlabS45NCw0LjkyYy0xLjA5LDAtMS45Mi0uNzQtMS45Mi0xLjgxcy44My0xLjgzLDEuOTItMS44MywxLjkyLjc4LDEuOTIsMS44My0uODMsMS44MS0xLjkyLDEuODFaIiBzdHlsZT0iZmlsbDojZmE0MDI3OyBzdHJva2Utd2lkdGg6MHB4OyIvPjwvc3ZnPg==) no-repeat center/90% auto #fff;
  border-radius: 50%;
}
.bl_categoryinnerlink_wrap {
  margin: 80px 0 -60px;
}

/* ------------------------------------------------------------
* エントリー
* ------------------------------------------------------------ */
/* エントリーのタイトル
* -------------------------------------------------- */
.bl_entryHeader {
  margin: 0 0 20px;
}

.bl_entryHeaderInfo {
  margin: 0 0 10px;
  font-size: 16px;
}

.bl_entryHeaderInfo_date {
  margin: 0 0.5em 0 0;
  color: #aaa;
}

.bl_entryHeaderInfo_new {
  margin: 0 0.5em 0 0;
  font-size: 0.8em;
  color: #fa4027;
}

.bl_entryHeaderInfo_important {
  display: inline-block;
  padding: 0 0.5em;
  margin-right: 0.5em;
  font-size: 0.75em;
  line-height: 1.7;
  color: #fff;
  vertical-align: 2px;
  background-color: #fa4027;
  border-radius: 3px;
}
.bl_entryHeaderInfo_important::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.2em;
  vertical-align: -0.1em;
  content: "";
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTcuMDYsMTAuMDhsLS42Ny02LjMyLS4wNy0yLjc2aDMuMzhsLS4wOSwyLjc2LS42NSw2LjMyaC0xLjlabS45NCw0LjkyYy0xLjA5LDAtMS45Mi0uNzQtMS45Mi0xLjgxcy44My0xLjgzLDEuOTItMS44MywxLjkyLjc4LDEuOTIsMS44My0uODMsMS44MS0xLjkyLDEuODFaIiBzdHlsZT0iZmlsbDojZmE0MDI3OyBzdHJva2Utd2lkdGg6MHB4OyIvPjwvc3ZnPg==) no-repeat center/90% auto #fff;
  border-radius: 50%;
}

.bl_entryHeaderTitle {
  margin: 0 0 1em;
  font-size: 26px;
  line-height: 1.5;
}

.bl_entryHeaderSmall {
  margin: 30px 0 20px;
}

.bl_entryHeaderSmall__ja {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 1.3;
}

.bl_entryHeaderSmall__en {
  font-size: 12px;
  text-transform: uppercase;
}
/* ユニットのスタイル
* -------------------------------------------------- */
/* ----- 本文 ----- */
.bl_entry {
  word-wrap: break-word;
}
.bl_entry p {
  margin-bottom: 2em;
}

/* ----- 見出し ----- */
.bl_entry h2 {
  margin-bottom: 0.72em;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  color: #079DF1;
}
.bl_entry h3 {
  margin-bottom: 0.72em;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.bl_entry h4 {
  margin-bottom: 0.72em;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

/* ----- エントリー内コンテナー ----- */
.entry-container {
  margin: 0 10px;
}

[class^=column-table] .entry-container {
  margin-bottom: 2em;
  overflow-x: auto;
}

[class^=column-table] table {
  margin-bottom: 0;
}

/* ----- テーブル ----- */
.bl_entry table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.bl_entry th,
.bl_entry td {
  display: block;
  padding: 0.5em 1em;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.bl_entry .acms-table-responsive th,
.bl_entry .acms-table-responsive td {
  display: table-cell;
  white-space: nowrap;
}
.bl_entry .acms-table-responsive table {
  margin: 0;
}
.bl_entry th {
  font-weight: bold;
  background: #f0f0f0;
}
.bl_entry .entry-custom-table {
  margin-bottom: 2em;
}
/* ----- リスト ----- */
.bl_entry ul {
  padding: 0 0 0 2em;
  margin: 0 10px 2em;
}
.bl_entry ul li {
  margin: 0 0 0.375em;
  line-height: 1.5;
}
.bl_entry ul li:last-child {
  margin-bottom: 0;
}
.bl_entry ul.el_note {
  padding-left: 0;
  list-style: none;
}
.bl_entry ul.el_note li {
  padding-left: 1em;
  margin-bottom: 0.5em;
  text-indent: -1em;
}

/* ----- 番号付きリスト ----- */
.bl_entry ol {
  padding: 0 0 0 2em;
  margin: 0 10px 2em;
}
.bl_entry ol li {
  margin: 0 0 0.375em;
  line-height: 1.5;
}
.bl_entry ol li:last-child {
  margin-bottom: 0;
}

/* ----- 定義リスト ----- */
.bl_entry dl {
  margin-top: 0;
  margin-bottom: 2em;
  line-height: 1.5;
}
.bl_entry dt {
  margin: 0 0 0.375em;
  font-weight: bold;
  line-height: 1.5;
}
.bl_entry dd {
  margin-bottom: 0.625em;
  margin-left: 0;
  line-height: 1.5;
}
.bl_entry dl.el_horizontal dt {
  float: left;
  width: 10em;
  padding: 1em 1em 1em 1em;
  color: #079DF1;
  text-align: right;
}
.bl_entry dl.el_horizontal dd {
  padding: 1em 1em 1em 11em;
  border-bottom: 1px solid #DDD;
}

/* ----- ユニット ----- */
.bl_entry .caption {
  font-size: 12px;
  color: #aaa;
}

.column-file-auto + .caption {
  margin-left: 10px;
}

[class*=column-media-] a,
[class*=column-image-] a {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
[class*=column-media-] a:hover,
[class*=column-image-] a:hover {
  opacity: 0.8;
}

/* ----- 引用URL ----- */
.bl_entry .quote {
  padding: 0;
  border: solid 1px #ddd;
}
.bl_entry .quoteLink {
  display: block;
  padding: 15px;
  color: #444444;
  text-decoration: none;
  background-color: #fff;
  border: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.bl_entry .quoteLink:visited {
  color: #444444;
  text-decoration: none;
}
.bl_entry .quoteLink:hover {
  background-color: #464646;
}
.bl_entry .quoteLink:hover .quoteTitle {
  text-decoration: underline;
}
.bl_entry .quote-maincontents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bl_entry .quoteTitle-wrap {
  margin: 0 20px 10px 0;
}
.bl_entry .quoteTitle {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  text-align: left;
}
.bl_entry .quoteImageContainer {
  float: none;
  min-width: 100px;
  margin: 0 0 10px;
}
.bl_entry .quoteSiteName {
  margin: 0;
  font-size: 14px;
  text-align: left;
}
.bl_entry .quoteDescription {
  font-size: 12px;
  text-align: left;
}
.bl_entry .caption {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1;
  color: #777;
}

/* ----- 罫線ユニット ----- */
.unit-separator {
  margin: 0 10px 2em;
  border: 0;
  border-top: solid 1px #aaa;
}

/* ----- カードユニット ----- */
.unit-cards {
  margin: 0 10px 2em;
}
.unit-cards ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  padding: 0;
  margin-bottom: -30px;
  list-style: none;
}
.unit-cards ul li {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 30px;
}
.unit-cards ul li:last-child {
  margin-bottom: 30px;
}
.unit-cards h3,
.unit-cards p {
  margin-right: 0;
  margin-left: 0;
}

/* ----- ユニットグループ ----- */
[class*=bl_entryUnit_bg] {
  padding: 20px 10px;
  margin: 0 10px 2em;
  overflow: hidden;
  border-radius: 10px;
}
[class*=bl_entryUnit_bg] *:last-child {
  margin-bottom: 0;
}
[class*=bl_entryUnit_bg] h2,
[class*=bl_entryUnit_bg] h3,
[class*=bl_entryUnit_bg] h4 {
  margin-bottom: 0.5em;
}

.bl_entryUnit_bgGray {
  background-color: #464646;
}

/* WordPressインポート時の調整
* -------------------------------------------------- */
.bl_entry img[class*=wp-image-] {
  margin: 0 10px 20px;
}

/* ----- 定義リスト(カスタムユニット) ----- */
.bl_customDescriptionList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
}
.bl_customDescriptionList .bl_customDescriptionList_item {
  width: 50%;
  padding: 10px 20px;
}
.bl_customDescriptionList dt {
  width: 5em;
  float: left;
  font-weight: bold;
  padding: 20px 0;
}
.bl_customDescriptionList dd {
  padding: 20px 0 20px 6em;
}
/* ----- 定義リスト ----- */
.bl_descriptionListHorizontal dt {
  width: 7em;
  float: left;
  font-weight: bold;
  padding: 20px 10px;
  color: #079DF1;
}
.bl_descriptionListHorizontal dd {
  padding: 20px 0 20px 8em;
  border-bottom: 1px solid #e6e6e6;
}

dl.un_joblist dt {
  width: 12em;
  float: left;
  font-weight: bold;
  padding: 20px 20px;
  margin-bottom: 0;
}
dl.un_joblist dd {
  padding: 20px 0 20px 13em;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 0;
}
.bl_entryCategorySearch_wrap {
  margin-bottom: 5px;
}
.bl_entryCategorySearch_wrap span {
  background-color: #079DF1;
  display: inline-block;
  border-radius: 100px;
  margin: 0 3px 3px 0;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
}

.bl_entryCategorySearch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 60px;
}

.bl_entryCategoryLabel {
  margin-bottom: 5px;
}
.bl_entryCategoryLabel span {
  background-color: #079DF1;
  display: inline-block;
  border-radius: 100px;
  margin: 0 3px 3px 0;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
}

.bl_entryEmbetunit {
  margin: 0 10px;
}
.bl_entryEmbetunit > iframe {
  width: 100% !important;
}

/* ----- メディアの角丸 ----- */
.bl_entryimage_round {
  border-radius: 20px;
}

/* ------------------------------------------------------------
* ページタイトル部分
* ------------------------------------------------------------ */
.bl_categoryTitle {
  overflow: hidden;
}

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

.bl_categoryTitle_body {
  width: 45%;
  padding-top: 55px;
}
.bl_categoryTitle_body.bl_categoryTitle_body__recTitle {
  width: 50%;
}

.bl_categoryTitleImg {
  position: relative;
  right: 0;
  top: 10px;
  width: 50vw;
  margin-right: calc((50vw - 50%) * -1);
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  margin-bottom: 30px;
}
.bl_categoryTitleImg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.bl_categoryTitleImg_innertext {
  position: absolute;
  font-family: "Dawning of a New Day", cursive;
  font-weight: normal;
  font-style: normal;
  z-index: 2;
  color: #FFDB5E;
  bottom: 15%;
  left: 5%;
  font-size: 80px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  line-height: 0.9;
}
.ly_title__workscat .bl_categoryTitleImg_innertext, .un_cat_growth .bl_categoryTitleImg_innertext {
  bottom: auto;
  top: 5%;
}

.bl_pagetitle_entrytitle {
  font-size: 36px;
  margin-top: 20px;
}
.ly_title__workscat .bl_pagetitle_entrytitle {
  color: #FFF;
}

.bl_pagetitle_introductiontext {
  font-size: 22px;
  margin: 25px 0;
  font-weight: bold;
}
.bl_pagetitle_introductiontext.bl_pagetitle_introductiontext__strong {
  padding: 5px 10px;
  display: inline;
  background-color: #FFDB5E;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  line-height: 2;
}
.ly_title__workscat .bl_pagetitle_introductiontext, .bl_categoryTitle_cont__recruit .bl_pagetitle_introductiontext {
  color: #FFF;
}

.bl_pagetitle {
  position: relative;
  margin-bottom: 20px;
}
.bl_pagetitle::before {
  content: "";
  height: 5px;
  width: 80px;
  background-color: #079DF1;
  display: block;
  margin-bottom: 15px;
}
.ly_sect__color_key .bl_pagetitle::before, .ly_title__workscat .bl_pagetitle::before, .bl_categoryTitle_cont__recruit .bl_pagetitle::before {
  background-color: #FFF;
}
.bl_pagetitle.bl_pagetitle__reccolor::before {
  background-color: #E6002D;
}

.bl_pagetitle_en {
  font-size: 48px;
  color: #079DF1;
  margin: 20px 0 5px;
  line-height: 1;
  font-weight: bold;
}
.ly_sect__color_key .bl_pagetitle_en, .ly_title__workscat .bl_pagetitle_en, .bl_categoryTitle_cont__recruit .bl_pagetitle_en {
  color: #FFF;
}
.bl_pagetitle__reccolor .bl_pagetitle_en {
  color: #E6002D;
}

.bl_pagetitle_ja {
  font-size: 18px;
  color: #444444;
  font-weight: bold;
}
.ly_sect__color_key .bl_pagetitle_ja, .ly_title__workscat .bl_pagetitle_ja, .bl_categoryTitle_cont__recruit .bl_pagetitle_ja {
  color: #FFF;
}

.bl_pagetitle_btmcopy {
  color: #444444;
  margin: 20px 0;
}
.ly_sect__color_key .bl_pagetitle_btmcopy {
  color: #FFF;
}
.bl_pagetitle__reccolor .bl_pagetitle_btmcopy {
  color: #E6002D;
}
/* ------------------------------------------------------------
* ページャー
* ------------------------------------------------------------ */
.bl_pager {
  margin: 30px auto;
}

/* ページ送り
* -------------------------------------------------- */
.bl_pagerList {
  padding: 0;
  margin: 0 -2px;
  text-align: center;
  list-style: none;
}
.bl_pagerList li {
  display: inline-block;
  margin: 2px;
}
.bl_pagerList li.cur > span {
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 12px;
  font-weight: bold;
  line-height: 30px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background: #FFDB5E;
  border-radius: 50%;
}

.bl_pagerItem_btn {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  font-size: 12px;
  font-weight: bold;
  line-height: 30px;
  color: #444444;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background: #e6e6e6;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_pagerItem_btn:visited {
  color: #444444;
  text-decoration: none;
}
.bl_pagerItem_btn:active, .bl_pagerItem_btn:hover {
  color: #fff;
  text-decoration: none;
  background-color: #aaa;
}
.bl_pagerItem_btn.bl_pagerItem_btn__forward, .bl_pagerItem_btn.bl_pagerItem_btn__back {
  background-color: transparent;
}
.bl_pagerItem_btn.bl_pagerItem_btn__forward::before, .bl_pagerItem_btn.bl_pagerItem_btn__forward::after, .bl_pagerItem_btn.bl_pagerItem_btn__back::before, .bl_pagerItem_btn.bl_pagerItem_btn__back::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_pagerItem_btn.bl_pagerItem_btn__forward::after, .bl_pagerItem_btn.bl_pagerItem_btn__back::after {
  opacity: 0;
}
.bl_pagerItem_btn.bl_pagerItem_btn__forward:active::before, .bl_pagerItem_btn.bl_pagerItem_btn__forward:hover::before, .bl_pagerItem_btn.bl_pagerItem_btn__back:active::before, .bl_pagerItem_btn.bl_pagerItem_btn__back:hover::before {
  opacity: 0;
}
.bl_pagerItem_btn.bl_pagerItem_btn__forward:active::after, .bl_pagerItem_btn.bl_pagerItem_btn__forward:hover::after, .bl_pagerItem_btn.bl_pagerItem_btn__back:active::after, .bl_pagerItem_btn.bl_pagerItem_btn__back:hover::after {
  opacity: 1;
}
.bl_pagerItem_btn.bl_pagerItem_btn__forward::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTEyLDhjMC0uMjYtLjEtLjUxLS4yOS0uNzFMNS43MSwxLjI5Yy0uMzktLjM5LTEuMDItLjM5LTEuNDEsMHMtLjM5LDEuMDIsMCwxLjQxbDUuMjksNS4yOS01LjI5LDUuMjljLS4zOS4zOS0uMzksMS4wMiwwLDEuNDFzMS4wMi4zOSwxLjQxLDBsNi02Yy4yLS4yLjI5LS40NS4yOS0uNzFaIiBzdHlsZT0ic3Ryb2tlLXdpZHRoOjBweDsiLz48L3N2Zz4=);
}
.bl_pagerItem_btn.bl_pagerItem_btn__forward::after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTEyLDhjMC0uMjYtLjEtLjUxLS4yOS0uNzFMNS43MSwxLjI5Yy0uMzktLjM5LTEuMDItLjM5LTEuNDEsMHMtLjM5LDEuMDIsMCwxLjQxbDUuMjksNS4yOS01LjI5LDUuMjljLS4zOS4zOS0uMzksMS4wMiwwLDEuNDFzMS4wMi4zOSwxLjQxLDBsNi02Yy4yLS4yLjI5LS40NS4yOS0uNzFaIiBzdHlsZT0iZmlsbDojZmZjYzE2OyBzdHJva2Utd2lkdGg6MHB4OyIvPjwvc3ZnPg==);
}
.bl_pagerItem_btn.bl_pagerItem_btn__back::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTQsOGMwLC4yNi4xLjUxLjI5LjcxbDYsNmMuMzkuMzksMS4wMi4zOSwxLjQxLDBzLjM5LTEuMDIsMC0xLjQxbC01LjI5LTUuMjksNS4yOS01LjI5Yy4zOS0uMzkuMzktMS4wMiwwLTEuNDFzLTEuMDItLjM5LTEuNDEsMGwtNiw2Yy0uMi4yLS4yOS40NS0uMjkuNzFaIiBzdHlsZT0ic3Ryb2tlLXdpZHRoOjBweDsiLz48L3N2Zz4=);
}
.bl_pagerItem_btn.bl_pagerItem_btn__back::after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTQsOGMwLC4yNi4xLjUxLjI5LjcxbDYsNmMuMzkuMzksMS4wMi4zOSwxLjQxLDBzLjM5LTEuMDIsMC0xLjQxbC01LjI5LTUuMjksNS4yOS01LjI5Yy4zOS0uMzkuMzktMS4wMiwwLTEuNDFzLTEuMDItLjM5LTEuNDEsMGwtNiw2Yy0uMi4yLS4yOS40NS0uMjkuNzFaIiBzdHlsZT0iZmlsbDojZmZjYzE2OyBzdHJva2Utd2lkdGg6MHB4OyIvPjwvc3ZnPg==);
}

/* 前後リンク
* -------------------------------------------------- */
.bl_serialNavi {
  padding: 40px 0 40px;
}

.bl_serialNavi_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
}

.bl_serialNavi_item {
  width: 33.33%;
}
.bl_serialNavi_item.bl_serialNavi_item__prev {
  text-align: left;
}
.bl_serialNavi_item.bl_serialNavi_item__index {
  text-align: center;
}
.bl_serialNavi_item.bl_serialNavi_item__next {
  text-align: right;
}

.bl_serialNaviItem_btn {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  font-size: 0;
  color: #444444;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background: #e6e6e6;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_serialNaviItem_btn::before, .bl_serialNaviItem_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px auto;
}
.bl_serialNaviItem_btn::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_serialNaviItem_btn::after {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_serialNavi_item__prev > .bl_serialNaviItem_btn::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTEuNzksNy4yOUw1Ljc5LDMuMjljLjM5LS4zOSwxLjAyLS4zOSwxLjQxLDBzLjM5LDEuMDIsMCwxLjQxbC0yLjI5LDIuMjloOC41OWMuNTUsMCwxLC40NSwxLDFzLS40NSwxLTEsMUg0LjkxbDIuMjksMi4yOWMuMzkuMzkuMzksMS4wMiwwLDEuNDEtLjIuMi0uNDUuMjktLjcxLjI5cy0uNTEtLjEtLjcxLS4yOUwxLjc5LDguNzFjLS4zOS0uMzktLjM5LTEuMDIsMC0xLjQxWiIgc3R5bGU9InN0cm9rZS13aWR0aDowcHg7Ii8+PC9zdmc+);
}
.bl_serialNavi_item__prev > .bl_serialNaviItem_btn::after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTEuNzksNy4yOUw1Ljc5LDMuMjljLjM5LS4zOSwxLjAyLS4zOSwxLjQxLDBzLjM5LDEuMDIsMCwxLjQxbC0yLjI5LDIuMjloOC41OWMuNTUsMCwxLC40NSwxLDFzLS40NSwxLTEsMUg0LjkxbDIuMjksMi4yOWMuMzkuMzkuMzksMS4wMiwwLDEuNDEtLjIuMi0uNDUuMjktLjcxLjI5cy0uNTEtLjEtLjcxLS4yOUwxLjc5LDguNzFjLS4zOS0uMzktLjM5LTEuMDIsMC0xLjQxWiIgc3R5bGU9ImZpbGw6I2ZmZjsgc3Ryb2tlLXdpZHRoOjBweDsiLz48L3N2Zz4=);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.bl_serialNavi_item__next > .bl_serialNaviItem_btn::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTE0LjIxLDcuMjlsLTQtNGMtLjM5LS4zOS0xLjAyLS4zOS0xLjQxLDBzLS4zOSwxLjAyLDAsMS40MWwyLjI5LDIuMjlIMi41Yy0uNTUsMC0xLC40NS0xLDFzLjQ1LDEsMSwxaDguNTlsLTIuMjksMi4yOWMtLjM5LjM5LS4zOSwxLjAyLDAsMS40MS4yLjIuNDUuMjkuNzEuMjlzLjUxLS4xLjcxLS4yOWw0LTRjLjM5LS4zOS4zOS0xLjAyLDAtMS40MVoiIHN0eWxlPSJzdHJva2Utd2lkdGg6MHB4OyIvPjwvc3ZnPg==);
}
.bl_serialNavi_item__next > .bl_serialNaviItem_btn::after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0ibTE0LjIxLDcuMjlsLTQtNGMtLjM5LS4zOS0xLjAyLS4zOS0xLjQxLDBzLS4zOSwxLjAyLDAsMS40MWwyLjI5LDIuMjlIMi41Yy0uNTUsMC0xLC40NS0xLDFzLjQ1LDEsMSwxaDguNTlsLTIuMjksMi4yOWMtLjM5LjM5LS4zOSwxLjAyLDAsMS40MS4yLjIuNDUuMjkuNzEuMjlzLjUxLS4xLjcxLS4yOWw0LTRjLjM5LS4zOS4zOS0xLjAyLDAtMS40MVoiIHN0eWxlPSJmaWxsOiNmZmY7IHN0cm9rZS13aWR0aDowcHg7Ii8+PC9zdmc+);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.bl_serialNaviItem_btn:visited {
  color: #444444;
  text-decoration: none;
}
.bl_serialNaviItem_btn:active, .bl_serialNaviItem_btn:hover {
  color: #fff;
  text-decoration: none;
  background-color: #079DF1;
}
.bl_serialNaviItem_btn.bl_serialNaviItem_btn__staff {
  position: relative;
  display: inline-block;
  width: auto;
  height: 20px;
  overflow: visible;
  font-size: 14px;
  text-align: center;
  background: initial;
}
.bl_serialNaviItem_btn.bl_serialNaviItem_btn__staff::before, .bl_serialNaviItem_btn.bl_serialNaviItem_btn__staff::after {
  position: relative;
}
.bl_serialNaviItem_btn.bl_serialNaviItem_btn__staff:hover {
  color: #079DF1;
}

/* ------------------------------------------------------------
* フォーム
* ------------------------------------------------------------ */
.bl_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.bl_formGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 0 0 1.5em;
  border-bottom: 1px solid #DDD;
  padding: 0 1em 1.5em;
}

.bl_formLabel {
  width: 100%;
  padding: 0 0 0.3em;
  font-weight: bold;
}

.bl_formLabel_required {
  margin-left: 0.5em;
  font-size: 12px;
  color: #079DF1;
}

.bl_formControl {
  width: 100%;
}

.bl_formInput {
  position: relative;
  width: 100%;
}
.bl_formInput > .bl_scheduleItem_cover {
  border-radius: 0;
}

/* ----- エラーテキスト ----- */
.bl_formErrorText_group:first-child {
  margin-top: 0.5em;
}

.bl_formErrorText {
  font-size: 12px;
  color: #fa4027;
}
.bl_formErrorText .acms-icon {
  padding-right: 0.3em;
  vertical-align: -0.03em;
}

/* ----- プライバシーポリシー ----- */
.bl_formPrivacy {
  padding: 20px;
  margin-top: 10px;
  font-size: 12px;
  color: #777;
  border: solid 1px #ddd;
}

.bl_formPrivacy_agree {
  margin-top: 30px;
  font-size: 16px;
  text-align: center;
}

/* ----- 送信ボタン ----- */
.bl_formBtn {
  margin-top: 30px;
  text-align: center;
}
.bl_formBtn .el_btn {
  width: 100%;
  max-width: 400px;
}

/* ----- 確認画面のテーブル ----- */
.bl_formConfirm {
  width: 100%;
}

.bl_formConfirm_head {
  display: block;
  padding: 0 1em 0.3em;
  text-align: left;
}

.bl_formConfirm_body {
  display: block;
  padding: 0.3em 1em 1.5em;
  margin: 0 0 1.5em;
  border-bottom: solid 1px #ddd;
  text-align: left;
}

/* ----- チェックボックス ----- */
.bl_formcheckbox {
  margin-right: 40px;
}

/* ------------------------------------------------------------
* マツモト物置
* ------------------------------------------------------------ */
/* ------------------------------------------------------------
* マツモト物置
* ------------------------------------------------------------ */
.bl_topmatsumoto_wrap {
  background: #000;
}

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

.bl_topmatsumoto_body {
  width: 60%;
}

.bl_topmatsumoto_image {
  width: 40%;
}

.bl_topmatsumoto_logotoptext {
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.bl_topmatsumoto_logotoptext > span {
  display: inline-block;
}

.bl_topmatsumoto_logo {
  max-width: 500px;
  width: 80%;
  margin: 15px auto;
}

.bl_topmatsumoto_link {
  text-align: center;
}
.bl_topmatsumoto_link > a {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: bold;
  background: #FFF;
  color: #000;
  text-decoration: none;
  margin: 5px 3px;
}
.bl_topmatsumoto_link > a:hover {
  background-color: #079DF1;
  color: #FFF;
}
/* ============================================================
*
* ヘルパー
*
* ============================================================ */
/* ------------------------------------------------------------
* フォントとテキストのスタイル
* ------------------------------------------------------------ */
/* 英字フォント */
/* 太字 */
.hp_font_bold {
  font-weight: bold !important;
}

/* 文字揃え */
.hp_txt_left {
  text-align: left !important;
}

.hp_txt_right {
  text-align: right !important;
}

.hp_txt_center {
  text-align: center !important;
}

.hp_txt_justify {
  text-align: justify !important;
  text-justify: inter-ideograph !important;
}

/* 文字間を戻す */
.hp_letter_0 {
  letter-spacing: 0 !important;
}

/* 文字色 */
.hp_color_primary {
  color: #079DF1 !important;
}

.hp_color_secondary {
  color: #FFDB5E !important;
}

.hp_color_third {
  color: #E6002D !important;
}

/* 強調 */
.hp_txt_em {
  font-style: normal !important;
  font-weight: bold !important;
}

/* 重要 */
.hp_txt_strong {
  font-weight: bold !important;
  color: #fa4027 !important;
}

/* 黄帯 */
.hp_txt_strong_bg {
  font-weight: bold !important;
  background-color: #FFDB5E;
  display: inline-block;
  padding: 5px 20px;
  font-size: 1.1em;
  margin-bottom: 5px;
}

/* 上付き文字 */
.hp_txt_sup {
  color: #777;
}

/* 小文字 */
.hp_txt_small {
  font-size: 0.8em !important;
}

/* ------------------------------------------------------------
* パディングとマージン
* ------------------------------------------------------------ */
.hp_pt__0 {
  padding-top: 0 !important;
}

.hp_mt__0 {
  margin-top: 0 !important;
}

.hp_MT__0 {
  margin-top: 0 !important;
}

.hp_pt__xxs {
  padding-top: 5px !important;
}

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

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

.hp_pt__xs {
  padding-top: 10px !important;
}

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

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

.hp_pt__sm {
  padding-top: 20px !important;
}

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

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

.hp_pt__md {
  padding-top: 40px !important;
}

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

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

.hp_pt__lg {
  padding-top: 60px !important;
}

.hp_mt__lg {
  margin-top: 60px !important;
}

.hp_MT__lg {
  margin-top: -60px !important;
}

.hp_pt__xl {
  padding-top: 80px !important;
}

.hp_mt__xl {
  margin-top: 80px !important;
}

.hp_MT__xl {
  margin-top: -80px !important;
}

.hp_pt__xxl {
  padding-top: 100px !important;
}

.hp_mt__xxl {
  margin-top: 100px !important;
}

.hp_MT__xxl {
  margin-top: -100px !important;
}

.hp_pr__0 {
  padding-right: 0 !important;
}

.hp_mr__0 {
  margin-right: 0 !important;
}

.hp_MR__0 {
  margin-right: 0 !important;
}

.hp_pr__xxs {
  padding-right: 5px !important;
}

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

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

.hp_pr__xs {
  padding-right: 10px !important;
}

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

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

.hp_pr__sm {
  padding-right: 20px !important;
}

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

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

.hp_pr__md {
  padding-right: 40px !important;
}

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

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

.hp_pr__lg {
  padding-right: 60px !important;
}

.hp_mr__lg {
  margin-right: 60px !important;
}

.hp_MR__lg {
  margin-right: -60px !important;
}

.hp_pr__xl {
  padding-right: 80px !important;
}

.hp_mr__xl {
  margin-right: 80px !important;
}

.hp_MR__xl {
  margin-right: -80px !important;
}

.hp_pr__xxl {
  padding-right: 100px !important;
}

.hp_mr__xxl {
  margin-right: 100px !important;
}

.hp_MR__xxl {
  margin-right: -100px !important;
}

.hp_pb__0 {
  padding-bottom: 0 !important;
}

.hp_mb__0 {
  margin-bottom: 0 !important;
}

.hp_MB__0 {
  margin-bottom: 0 !important;
}

.hp_pb__xxs {
  padding-bottom: 5px !important;
}

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

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

.hp_pb__xs {
  padding-bottom: 10px !important;
}

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

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

.hp_pb__sm {
  padding-bottom: 20px !important;
}

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

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

.hp_pb__md {
  padding-bottom: 40px !important;
}

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

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

.hp_pb__lg {
  padding-bottom: 60px !important;
}

.hp_mb__lg {
  margin-bottom: 60px !important;
}

.hp_MB__lg {
  margin-bottom: -60px !important;
}

.hp_pb__xl {
  padding-bottom: 80px !important;
}

.hp_mb__xl {
  margin-bottom: 80px !important;
}

.hp_MB__xl {
  margin-bottom: -80px !important;
}

.hp_pb__xxl {
  padding-bottom: 100px !important;
}

.hp_mb__xxl {
  margin-bottom: 100px !important;
}

.hp_MB__xxl {
  margin-bottom: -100px !important;
}

.hp_pl__0 {
  padding-left: 0 !important;
}

.hp_ml__0 {
  margin-left: 0 !important;
}

.hp_ML__0 {
  margin-left: 0 !important;
}

.hp_pl__xxs {
  padding-left: 5px !important;
}

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

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

.hp_pl__xs {
  padding-left: 10px !important;
}

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

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

.hp_pl__sm {
  padding-left: 20px !important;
}

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

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

.hp_pl__md {
  padding-left: 40px !important;
}

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

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

.hp_pl__lg {
  padding-left: 60px !important;
}

.hp_ml__lg {
  margin-left: 60px !important;
}

.hp_ML__lg {
  margin-left: -60px !important;
}

.hp_pl__xl {
  padding-left: 80px !important;
}

.hp_ml__xl {
  margin-left: 80px !important;
}

.hp_ML__xl {
  margin-left: -80px !important;
}

.hp_pl__xxl {
  padding-left: 100px !important;
}

.hp_ml__xxl {
  margin-left: 100px !important;
}

.hp_ML__xxl {
  margin-left: -100px !important;
}

/* ------------------------------------------------------------
* ディスプレイ
* ------------------------------------------------------------ */
.hp_block {
  display: block !important;
}

.hp_inline {
  display: inline !important;
}

.hp_inline_block {
  display: inline-block !important;
}

/* 非表示 */

/* 端末別 */

/* ------------------------------------------------------------
* 画像の幅
* ------------------------------------------------------------ */
/* 画像をブロックにする */
.hp_img_block {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
*
* ユニークグループ
*
* ============================================================ */
/* ------------------------------------------------------------
* わたしたちの目標
* ------------------------------------------------------------ */
.un_ourtheme {
  overflow: hidden;
  position: relative;
  text-align: center;
  color: #fff;
}

.un_ourtheme_image {
  position: absolute;
  width: 400px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  top: 100%;
  left: 100%;
  overflow: hidden;
  z-index: 2;
}
.un_ourtheme_image > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.un_ourtheme_image.un_ourtheme_image__img01 {
  width: 15%;
  top: 5%;
  left: 12%;
}
.un_ourtheme_image.un_ourtheme_image__img02 {
  width: 30%;
  top: 30%;
  left: -12%;
}
.un_ourtheme_image.un_ourtheme_image__img03 {
  width: 15%;
  top: 75%;
  left: 25%;
}
.un_ourtheme_image.un_ourtheme_image__img04 {
  width: 30%;
  top: 20%;
  left: auto;
  right: -8%;
}
.un_ourtheme_image.un_ourtheme_image__img05 {
  width: 20%;
  top: 62%;
  left: auto;
  right: 8%;
}
.un_ourtheme_image.js-lazy-load {
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}

.un_topheadcopybody {
  text-align: center;
  font-size: 18px;
}
.un_topheadcopybody span {
  display: inline-block;
}

.un_ourtheme_title {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: normal;
}

.un_ourtheme_title_img {
  width: 300px;
  margin: 0 auto -5px;
}

.un_ourtheme_cont_largetheme {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 40px;
}

.un_ourtheme_cont_body {
  line-height: 2;
  margin-bottom: 30px;
}

.un_smile_slidertext {
  margin-top: 120px;
  position: relative;
  z-index: 10;
}
/* ------------------------------------------------------------
* インスタグラム
* ------------------------------------------------------------ */
.un_topinstagram {
  border-top: 1px solid #fff;
  color: #fff;
}

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

.un_topinstagram_title {
  font-size: 26px;
  margin-bottom: 10px;
}

.un_topinstagram_follow > a {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  padding: 5px 15px;
  position: relative;
}
.un_topinstagram_follow > a::before, .un_topinstagram_follow > a::after {
  content: "";
  width: 2px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: 5px;
}
.un_topinstagram_follow > a::before {
  left: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.un_topinstagram_follow > a::after {
  right: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.un_topinstagram_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.un_topinstagram_cont > div.insta-item {
  width: 20%;
  padding: 10px;
}
.insta-button {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: center/cover no-repeat;
  border-radius: 10px;
}

/* ------------------------------------------------------------
* companyスライダー
* ------------------------------------------------------------ */
.un_topcompanyslidercont_wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
}

.un_topcompanyslidercont {
  margin: 10px 0;
  padding: 0 10px;
  width: 25%;
}
.un_topcompanyslidercont:hover .un_topcompanysliderimage img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.un_topcompanyslidercont:hover .un_topcompanyslidertitle {
  background-color: #079DF1;
}
.un_topcompanyslidercont:hover .un_topcompanyslidertitle > a {
  color: #fff;
}

.un_topcompanysliderimage {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.un_topcompanysliderimage > img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.un_topcompanyslidertitle {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #079DF1;
          box-shadow: 0px 4px 0px 0px #079DF1;
  border-radius: 100px;
  margin: -40px auto 0;
  padding: 20px 30px;
  position: relative;
  z-index: 2;
  width: calc(90% - 20px);
}
.un_topcompanyslidertitle > a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
.un_topcompanyslidertitle > a span {
  font-size: 12px;
  padding-right: 10px;
  display: inline-block;
}
.un_topcompanyslidertitle img {
  width: 100%;
}

.un_topcompany .slick-slider .slick-next,
.un_topcompany .slick-slider .slick-prev {
  width: 40px;
  height: 40px;
}
.un_topcompany .slick-slider .slick-next::before,
.un_topcompany .slick-slider .slick-prev::before {
  content: "";
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 40px;
  display: block;
}
.un_topcompany .slick-slider .slick-next {
  right: calc(24% - 20px);
  z-index: 2;
}
.un_topcompany .slick-slider .slick-next::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjUgMjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI1IDI1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0Q5RDlEOTtmaWx0ZXI6dXJsKCNBZG9iZV9PcGFjaXR5TWFza0ZpbHRlcik7fQoJLnN0MXttYXNrOnVybCgjbWFzazBfMTlfMTEyM18wMDAwMDE1MDA4Mzg4NDA1MzAzNzI1OTM4MDAwMDAwNDEyNzQ3NTgwMjcwMjI2NjAwNV8pO30KCS5zdDJ7ZmlsbDojNDQ0NDQ0O30KPC9zdHlsZT4KPGRlZnM+Cgk8ZmlsdGVyIGlkPSJBZG9iZV9PcGFjaXR5TWFza0ZpbHRlciIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSI2LjgiIHk9IjIuOSIgd2lkdGg9IjExLjgiIGhlaWdodD0iMjAiPgoJCTxmZUNvbG9yTWF0cml4ICB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMSAwIDAgMCAwICAwIDEgMCAwIDAgIDAgMCAxIDAgMCAgMCAwIDAgMSAwIi8+Cgk8L2ZpbHRlcj4KPC9kZWZzPgo8bWFzayBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSI2LjgiIHk9IjIuOSIgd2lkdGg9IjExLjgiIGhlaWdodD0iMjAiIGlkPSJtYXNrMF8xOV8xMTIzXzAwMDAwMTUwMDgzODg0MDUzMDM3MjU5MzgwMDAwMDA0MTI3NDc1ODAyNzAyMjY2MDA1XyI+Cgk8cmVjdCB4PSIwLjUiIHk9IjAuOSIgY2xhc3M9InN0MCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+CjwvbWFzaz4KPGcgY2xhc3M9InN0MSI+Cgk8cGF0aCBjbGFzcz0ic3QyIiBkPSJNOC41LDIyLjlsLTEuOC0xLjhsOC4yLTguMkw2LjgsNC43bDEuOC0xLjhsMTAsMTBMOC41LDIyLjl6Ii8+CjwvZz4KPC9zdmc+Cg==);
}
.un_topcompany .slick-slider .slick-prev {
  left: 24%;
  z-index: 2;
}
.un_topcompany .slick-slider .slick-prev::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjUgMjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI1IDI1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzQ0NDQ0NDt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xNS45LDIyLjVsLTEwLTEwbDEwLTEwbDEuOCwxLjhsLTguMiw4LjJsOC4yLDguMkwxNS45LDIyLjV6Ii8+Cjwvc3ZnPgo=);
}

.un_topmovie_embet {
  max-width: 1200px;
  margin: 60px auto 0;
  width: 100%;
  padding: 20px;
}
.un_topmovie_embet iframe {
  width: 100% !important;
  aspect-ratio: 16/9 !important;
}
/* ------------------------------------------------------------
* 仕事を知る
* ------------------------------------------------------------ */
.un_topinnerlink_wrap {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.un_topinnerlink_image {
  width: 60%;
}

.un_topinnerlink_cont {
  width: 30%;
  padding: 0 40px;
  min-width: 400px;
}

.un_topwork_cont {
  color: #fff;
}
/* ------------------------------------------------------------
* 成長のために
* ------------------------------------------------------------ */
.un_topgrowth_wrap {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAhCAMAAABgOjJdAAAACVBMVEVMaXEGnfEIm+9TePUiAAAAA3RSTlMALgYYEmjHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIUlEQVR4nGNgGAUjBDAxMjIy4VXBCAI0V8FE0B2jYBgBAEPvAB4of1IHAAAAAElFTkSuQmCC);
  background-repeat: repeat;
  background-size: 15px;
}
.un_topgrowth_wrap .un_topinnerlink_wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.un_topgrowth_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.un_topgrowth_image > div {
  position: relative;
}
.un_topgrowth_image > div:nth-child(2) {
  text-align: right;
}

/* ------------------------------------------------------------
* 採用情報
* ------------------------------------------------------------ */
.un_toprec_wrap {
  background: url(assets/top_recbackgroundimage.png) #ffeded repeat-x center bottom/900px;
  padding: 40px 0;
}

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

.un_toprec_image {
  max-width: 700px;
  margin-top: -50px;
}
/* ------------------------------------------------------------
* お知らせ
* ------------------------------------------------------------ */
.un_topnews_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}

.un_topnews_title {
  width: 250px;
}

.un_topnews_cont {
  width: calc(100% - 250px);
}
.un_topnews_cont > ul {
  list-style: none;
  margin-left: 50px;
}
.un_topnews_cont > ul li {
  margin-bottom: 15px;
}
.un_topnews_cont > ul li span {
  padding-right: 10px;
}
.un_topothernews_wrap {
  margin: 40px 0 0;
}

.un_topothernews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

.un_topothernews_logoimage {
  width: 25%;
  padding: 20px;
}
.un_topothernews_logoimage a:hover {
  opacity: 0.8;
}
/* ------------------------------------------------------------
* ローディング画面
* ------------------------------------------------------------ */
/* Loading背景画面設定　*/
.un_firstloadmv_wrap {
  display: none;
}

.js_firstAccess {
  -webkit-animation: firstAccess-overflow 11s linear 1 forwards;
          animation: firstAccess-overflow 11s linear 1 forwards;
}
.js_firstAccess .un_firstloadmv_wrap {
  display: block;
  -webkit-animation: firstAccess-fadeout 2s linear 11s 1 forwards;
          animation: firstAccess-fadeout 2s linear 11s 1 forwards;
  height: 100vh;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgb(255, 255, 255);
}
.js_firstAccess .un_firstloadmv_wrap .bl_slider_cont {
  width: 100%;
  height: 100%;
  top: 0;
}
.js_firstAccess .un_firstloadmv_wrap .bl_slider_cont::before {
  display: none;
}
.js_firstAccess .un_firstloadmv_wrap .bl_slider_copy {
  color: #079DF1;
  text-shadow: none;
}
.js_firstAccess .un_firstloadmv_mark {
  max-width: 300px;
  width: 40%;
  height: auto;
  inset: 0;
  position: absolute;
  z-index: 50;
  margin: auto;
  display: inline-table;
  opacity: 0;
  -webkit-animation: firstAccess-fadein-out 3s linear 1s 1 forwards;
          animation: firstAccess-fadein-out 3s linear 1s 1 forwards;
}
.js_firstAccess .bl_slider_ttl > span {
  opacity: 0;
  -webkit-animation: firstAccess-fadein 1s linear 1s 1 forwards;
          animation: firstAccess-fadein 1s linear 1s 1 forwards;
}
.js_firstAccess .bl_slider_ttl > span:first-of-type {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
.js_firstAccess .bl_slider_ttl > span:nth-of-type(2) {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}
.js_firstAccess .bl_slider_ttl > span:nth-of-type(3) {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}
.js_firstAccess .bl_slider_subttl {
  opacity: 0;
  -webkit-animation: firstAccess-fadein 1s linear 7s 1 forwards;
          animation: firstAccess-fadein 1s linear 7s 1 forwards;
}

@-webkit-keyframes firstAccess-overflow {
  0% {
    overflow: hidden;
  }
  99% {
    overflow: hidden;
  }
  100% {
    overflow: auto;
  }
}

@keyframes firstAccess-overflow {
  0% {
    overflow: hidden;
  }
  99% {
    overflow: hidden;
  }
  100% {
    overflow: auto;
  }
}
@-webkit-keyframes firstAccess-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes firstAccess-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes firstAccess-fadein-out {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes firstAccess-fadein-out {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes firstAccess-fadeout {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
    inset: 0;
  }
  100% {
    opacity: 0;
    left: -999%;
    top: -999%;
  }
}
@keyframes firstAccess-fadeout {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
    inset: 0;
  }
  100% {
    opacity: 0;
    left: -999%;
    top: -999%;
  }
}
/* ------------------------------------------------------------
* お知らせ
* ------------------------------------------------------------ */
/* 重要と全ての切り替えナビ
* -------------------------------------------------- */
.un_newsNav {
  margin: -66px 0 40px;
}

.un_newsNav_list {
  margin: -2px;
  list-style: none;
}

.un_newsNav_item {
  display: inline-block;
  padding: 2px;
}

.un_newsNav_btn {
  display: inline-block;
  padding: 0 0.8em;
  font-size: 12px;
  line-height: 22px;
  text-decoration: none;
  vertical-align: bottom;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.un_newsNav_btn:visited {
  text-decoration: none;
}
.un_newsNav_btn:active, .un_newsNav_btn:hover {
  text-decoration: none;
}
.un_newsNav_btn.un_newsNav_btn__all {
  color: #444444;
  border-color: #444444;
}
.un_newsNav_btn.un_newsNav_btn__all.stay {
  color: #fff;
  background-color: #444444;
}
.un_newsNav_btn.un_newsNav_btn__all.stay:visited {
  color: #fff;
}
.un_newsNav_btn.un_newsNav_btn__all.stay:active, .un_newsNav_btn.un_newsNav_btn__all.stay:hover {
  opacity: 0.7;
}
.un_newsNav_btn.un_newsNav_btn__all:visited {
  color: #444444;
}
.un_newsNav_btn.un_newsNav_btn__all:active, .un_newsNav_btn.un_newsNav_btn__all:hover {
  color: #fff;
  text-decoration: none;
  background-color: #444444;
}
.un_newsNav_btn.un_newsNav_btn__important {
  color: #fa4027;
  border-color: #fa4027;
}
.un_newsNav_btn.un_newsNav_btn__important.stay {
  color: #fff;
  background-color: #fa4027;
}
.un_newsNav_btn.un_newsNav_btn__important.stay:visited {
  color: #fff;
}
.un_newsNav_btn.un_newsNav_btn__important.stay:active, .un_newsNav_btn.un_newsNav_btn__important.stay:hover {
  opacity: 0.7;
}
.un_newsNav_btn.un_newsNav_btn__important:visited {
  color: #fa4027;
}
.un_newsNav_btn.un_newsNav_btn__important:active, .un_newsNav_btn.un_newsNav_btn__important:hover {
  color: #fff;
  background-color: #fa4027;
}

.un_news_newlabel {
  background-color: #E6002D;
  color: #FFF;
  font-size: 12px;
  padding: 3px 8px;
  line-height: 1;
  margin-right: 5px;
}

/* ------------------------------------------------------------
* よくある質問
* ------------------------------------------------------------ */
.un_faq_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.un_faq_navwrap {
  width: 20em;
  height: 100%;
  position: sticky;
  top: 120px;
  padding-right: 50px;
}

.un_faq_cont_wrap {
  width: calc(100% - 20em);
}
.un_faq_nav li {
  list-style: none;
  border-bottom: 1px solid #EEE;
  position: relative;
}
.un_faq_nav li a {
  color: #444444;
  text-decoration: none;
  padding: 20px 5px;
  display: block;
}
.un_faq_nav li a:hover {
  color: #079DF1;
}
.un_faq_nav li::after {
  content: "";
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAhCAMAAABgOjJdAAAAFVBMVEVMaXFERERFRUVCQkJDQ0NEREREREQSucUUAAAABnRSTlMAgd8gX0DvpXGXAAAACXBIWXMAABYlAAAWJQFJUiTwAAAARklEQVR4nGNgoAFgZCSkgI0NvxJGNjYCSpiZRpVQIVyYsQNWNrgSNryAkaAKNkZiVDDhAGwIh2AHLKMKwIAO4UBErsSSswGx+wXp4ZNPHQAAAABJRU5ErkJggg==);
  width: 10px;
  height: 10px;
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  right: 15px;
  top: 40%;
}

.un_faq_largeheding {
  font-size: 20px;
  padding: 15px 0;
  margin-top: 60px;
}
.un_faq_largeheding:first-child {
  margin-top: 0;
}

.un_faq_contbody {
  position: relative;
  margin-bottom: 20px;
  background-color: #FFF;
  border-radius: 20px;
}

details.un_faq_contbody::after {
  content: "＋";
  position: absolute;
  right: 25px;
  top: 20px;
}

details.un_faq_contbody[open]::after {
  content: "ー";
}

.un_faq_questionbody {
  font-weight: bold;
  padding: 20px 50px 20px 70px;
  display: block;
  cursor: pointer;
  font-size: 18px;
}
.un_faq_questionbody::-webkit-details-marker {
  display: none;
}
.un_faq_questionbody::before {
  content: "Q.";
  font-size: 30px;
  color: #999;
  position: absolute;
  left: 25px;
  top: 10px;
  color: #079DF1;
}
.un_faq_questionbody:hover {
  color: #079DF1;
}

.un_faq_answerbody {
  margin: 0 40px;
  padding: 15px 0 20px;
  border-top: 1px solid #DDD;
}
/* ------------------------------------------------------------
* 代表あいさつ
* ------------------------------------------------------------ */
.un_message_cont {
  line-height: 2;
  text-align: justify;
}
.un_message_cont strong {
  font-weight: bold;
  padding: 10px 0;
  font-size: 1.2em;
  display: inline-block;
}

.un_message_name_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

.un_message_name {
  line-height: 0.8;
}
.un_message_name em {
  font-weight: normal;
  font-size: 1.2em;
  letter-spacing: 0.3em;
  font-style: normal;
  margin-left: 20px;
}

.un_philosophy_wrap {
  background-color: #FFDB5E;
  margin-top: 80px;
  padding: 80px 20px;
  position: relative;
}

.un_philosophy_bg {
  text-transform: uppercase;
  font-size: 12vw;
  color: #FFDB5E;
  text-shadow: 0px 0px 2px rgb(255, 255, 255);
  text-align: center;
  font-weight: bold;
  line-height: 0.8;
}

.un_philosophy_cont {
  position: absolute;
  inset: 0;
  margin: auto;
  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;
}
.un_philosophy_cont p {
  display: inline;
  background: #fff;
  padding: 20px 40px;
  font-size: 80px;
  font-weight: bold;
  line-height: 1;
}
.un_philosophy_cont .un_philosophy_inner {
  position: relative;
}
.un_philosophy_cont .un_philosophy_ttl {
  position: absolute;
  top: -70px;
  left: -40px;
  font-size: 20px;
  padding: 10px 20px;
}
/* ------------------------------------------------------------
* 事業紹介
* ------------------------------------------------------------ */
.un_business_cont_wrap {
  margin-top: 60px;
}

.un_business_cont {
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  border: 4px solid #079DF1;
  margin-bottom: 60px;
}

.un_business_title_en {
  font-size: 40px;
  text-transform: uppercase;
  color: #079DF1;
  font-weight: bold;
  line-height: 1.2;
}

.un_business_title_jp {
  font-size: 18px;
  margin-bottom: 40px;
}

.un_business_headcopy {
  font-size: 26px;
  margin-bottom: 20px;
}

.un_business_store_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px -20px 0;
}

.un_business_store_cont {
  width: 33.3333333333%;
  padding: 20px 20px 0;
}

.un_business_icon {
  font-size: 12px;
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid;
  border-radius: 999px;
  line-height: 1;
}
.un_business_icon.un_business_icon_swim {
  color: #079df1;
}
.un_business_icon.un_business_icon_gym {
  color: #f6715e;
}
.un_business_icon.un_business_icon_gakken {
  color: #00c96f;
}

.un_business_logoimage {
  margin: 2px 0 10px;
  max-width: 200px;
}

.un_business_store_image {
  margin-bottom: 5px;
  border-radius: 5px;
  overflow: hidden;
}

.un_business_outerlink {
  font-size: 12px;
  color: #444444;
}
/* ------------------------------------------------------------
* 株式会社豊和について
* ------------------------------------------------------------ */
.un_profile_gmap {
  margin: 40px 0 0;
}
.un_profile_gmap iframe {
  width: 100% !important;
  height: 500px !important;
}

.un_sdgs_introductbody {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.un_history_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bl_descriptionListHorizontal {
  padding-right: 20px;
}
.un_history_wrap .bl_descriptionListHorizontal {
  width: 70%;
}

.un_historyimage_wrap {
  width: 30%;
  min-width: 300px;
}
.un_historyimage_wrap > div {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}
/* ------------------------------------------------------------
* SDGs
* ------------------------------------------------------------ */
.un_sdgsDeclaration {
  text-align: center;
  margin: 40px auto 80px;
  padding: 0 10px;
}
.un_sdgsDeclaration img {
  max-width: 590px;
}

.un_sdgs_contbox {
  border: 4px solid #079DF1;
  border-radius: 10px;
  padding: 60px;
  margin-bottom: 30px;
}

.un_sdgs_conttitle_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.bl_entry .un_sdgs_conttitle h3 {
  font-size: 28px;
  margin-bottom: 0;
}

.un_sdgs_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.un_sdgs_icon img {
  width: 10vw;
  max-width: 100px;
  display: block;
  margin: 3px;
}

.bl_entry .un_sdgslist {
  list-style: none;
}
.bl_entry .un_sdgslist li {
  font-size: 18px;
  text-indent: -1.3em;
  margin-bottom: 0.5em;
}
.bl_entry .un_sdgslist li::before {
  content: "●";
  color: #079DF1;
  margin-right: 0.3em;
}
.bl_entry .un_sdgslist li a {
  color: #444444;
}

.un_sdgs_goal_box {
  background-color: #079DF1;
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
}
.un_sdgs_goal_box p {
  margin-bottom: 0;
}
.un_sdgs_goal_box .un_sdgs_goal_title {
  margin-bottom: 5px;
  font-size: 1.05em;
  font-weight: bold;
}
/* ------------------------------------------------------------
* スタッフの一日
* ------------------------------------------------------------ */
.un_schedule_cont_wrap {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px;
}

.un_schedule_cont {
  position: relative;
}
.un_schedule_cont::before {
  content: "";
  display: block;
  width: 3px;
  height: calc(100% + 50px);
  border-left: 4px dotted #079DF1;
  position: absolute;
  left: 78px;
  top: 40px;
  z-index: 2;
}

.un_work_title_en {
  font-size: 40px;
  text-transform: uppercase;
  color: #079DF1;
  font-weight: bold;
  line-height: 1.2;
}

.un_work_title_jp {
  font-size: 18px;
  margin-bottom: 40px;
}

.un_schedule_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 0;
}

.un_schedule_unit_time {
  margin: 0 40px;
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #079DF1;
  background-color: #fff;
  position: relative;
  z-index: 3;
}
.un_schedule_unit_time > span {
  color: #079DF1;
  padding: 20px;
  display: inline-block;
  font-weight: bold;
}

.un_schedule_unit_title {
  width: 180px;
  font-size: 18px;
  font-weight: bold;
  color: #079DF1;
}

.un_schedule_unit_body {
  border-left: 1px solid #CCC;
  padding-left: 30px;
  width: calc(100% - 160px - 180px);
}

.un_staffwork_wrap {
  border: 4px solid #FFF;
  padding: 60px;
  border-radius: 20px;
}
.un_staffwork_wrap h2 {
  position: relative;
}
.un_staffwork_wrap h2::before {
  content: "";
  display: block;
  width: 3px;
  height: 200px;
  border-left: 4px dotted #FFF;
  position: absolute;
  left: 74px;
  top: -230px;
  z-index: 1;
}
/* ------------------------------------------------------------
* 先輩社員の声
* ------------------------------------------------------------ */
.un_interview_innerlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.un_interview_innerlink > li {
  list-style: none;
  padding: 0 10px;
  text-align: center;
  color: #079DF1;
  font-weight: bold;
  font-size: 20px;
}
.un_interview_innerlink > li > span {
  font-size: 1.4em;
  padding-left: 5px;
}
.un_interview_innerlink .el_btn {
  display: block;
  font-size: initial;
}

.un_interview_cont_wrap {
  padding: 0 90px 20px;
  border-radius: 30px;
}
.un_interview_cont_wrap.un_interview_cont_wrap__keycolor_lighter {
  background: #F9FCFC;
  padding-top: 60px;
  margin-bottom: 60px;
}

.un_interview_cont_title {
  text-align: center;
  background: url(assets/nav_innerbgimage.png) no-repeat center center/contain;
  padding: 40px 30px;
}
.un_interview_cont_title h2 {
  color: #FFF;
  font-size: 40px;
  line-height: 1;
}
.un_interview_cont_wrap__keycolor_lighter .un_interview_cont_title h2 {
  color: #444444;
}
.un_interview_cont_title > div {
  display: inline-block;
  text-align: left;
}

.un_interview_cont_titlenumber {
  color: #FFF;
  font-size: 20px;
}
.un_interview_cont_titlenumber span {
  font-weight: bold;
  font-size: 2.4em;
  padding-left: 5px;
}
.un_interview_cont_wrap__keycolor_lighter .un_interview_cont_titlenumber {
  color: #079DF1;
}

.un_interview_cont_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
.un_interview_cont_box.un_interview_cont_box__reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.un_interview_cont_image {
  width: 200px;
  padding: 0 30px;
}

.un_interview_cont_body_wrap {
  width: calc(100% - 200px);
}

.un_interview_cont_body {
  background: #FFF;
  padding: 30px;
  border-radius: 20px;
  position: relative;
}
.un_interview_cont_body > p {
  border-left: 2px solid #079DF1;
  padding: 0 0 0 20px;
}
.un_interview_cont_body::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  border-bottom: 6px dotted #FFF;
  left: -50px;
  top: 20px;
}
.un_interview_cont_box__reverse .un_interview_cont_body::before {
  left: auto;
  right: -50px;
}
.un_interview_private_title {
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  margin-bottom: 20px;
}

.un_interview_privateimage_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.un_interview_privateimage {
  overflow: hidden;
  width: 25%;
  padding: 15px;
}
.un_interview_privateimage img {
  border-radius: 20px;
}
/* ------------------------------------------------------------
* 採用情報
* ------------------------------------------------------------ */
.bl_categoryTitle_cont.bl_categoryTitle_cont__recruit {
  background: url(assets/rec_index_mv.jpg) no-repeat top 30% center/cover;
  margin: 0;
  padding-bottom: 80px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.bl_categoryTitle_cont.bl_categoryTitle_cont__recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(85%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 85%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.bl_categoryTitle_body__recTitle {
  position: relative;
  z-index: 2;
}

.un_rec_message_largetitle_en {
  font-size: 10em;
  line-height: 1;
  color: #FFF;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  position: absolute;
  left: 95%;
  top: 5%;
  font-weight: bold;
}

.un_rec_message_headcopy {
  color: #FFF;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 40px;
}
.un_rec_message_headcopy > span {
  color: #FFF;
  background-color: #E6002D;
  display: inline-block;
  padding: 5px;
  line-height: 1.2;
}

.un_rec_message_body {
  color: #FFF;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}

.un_rec_message_name {
  color: #FFF;
  margin-top: 20px;
}

.un_rec_message_nameimage {
  max-width: 160px;
  margin-left: 10px;
}
.un_rec_message_nameimage.un_rec_message_nameimage__pc {
  display: inline-block;
}
.un_rec_message_nameimage.un_rec_message_nameimage__sp {
  display: none;
}

.un_recindex_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -30px;
}

.un_recindex_image_wrap {
  width: 50%;
  padding: 0 30px;
}

.un_recindex_title_en {
  color: #E6002D;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
}

.un_recindex_title_ja {
  font-size: 18px;
  margin-bottom: 20px;
}

.un_recindex_body_wrap {
  width: 50%;
  padding: 0 30px;
}

.un_recindex_body_title {
  font-weight: bold;
  font-size: 26px;
}
.un_recindex_body_title > span {
  font-size: 1.3em;
  padding-right: 10px;
}

.un_recindex_body_heading {
  display: inline-block;
  background-color: #E6002D;
  color: #FFF;
  font-weight: bold;
  margin: 0 0 10px;
  padding: 5px 15px;
  line-height: 1.2;
  font-size: 20px;
}

.un_recindex_body_text {
  margin-bottom: 40px;
}

.un_recindex_btmlgcopy {
  font-size: 38px;
  text-align: center;
  margin: 40px 0;
}
.un_recindex_btmlgcopy > span {
  display: inline-block;
}

.un_recindex_joblistlink_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 30px 0;
}
/* ------------------------------------------------------------
* 募集要項
* ------------------------------------------------------------ */
.un_joblist_introduction_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.un_joblist_introduction_title {
  color: #079DF1;
}

.un_joblist_introduction_body > ul {
  margin-left: 1.5em;
}
.un_joblist_introduction_body.is-active {
  display: block; /* 'active' クラスが付いたコンテンツだけを表示する */
}

.un_joblist_cont_wrap {
  margin: 40px 0;
}

.un_joblist_tabmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-left: 30px;
  position: relative;
  z-index: 2;
}
.un_joblist_tabmenu > li {
  margin-bottom: -3px;
}
.un_joblist_tabmenu > li.is-active a {
  background-color: #FFF;
  color: #079DF1;
}
.un_joblist_tabmenu a {
  display: inline-block;
  padding: 20px 40px;
  font-weight: bold;
  font-size: 18px;
  background-color: #079DF1;
  color: #FFF;
  font-weight: bold;
  margin-right: 8px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 3px solid #079DF1;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.un_joblist_tabmenu a:hover {
  background-color: #079DF1;
  color: #FFF;
}

.un_joblist_tabbody_wrap {
  border: 3px solid #079DF1;
  border-radius: 20px;
  padding: 0 60px 80px;
  background-color: #fff;
}

.un_joblist_tabbody_cont {
  display: none; /* 初期状態ではすべてのコンテンツを非表示にする */
  padding-top: 60px;
}
.un_joblist_tabbody_cont.is-active {
  display: block; /* 'active' クラスが付いたコンテンツだけを表示する */
}
/* ------------------------------------------------------------
* エントリーフォーム
* ------------------------------------------------------------ */
.un_recruit_entryform_outer {
  border: 3px solid #079DF1;
  border-radius: 20px;
  padding: 60px 60px 80px;
  background-color: #fff;
}

.hide-content {
  display: none;
}

.job-2-show.is_show {
  display: block;
}

.job-3-show.is_show {
  display: block;
}

.jobtypeselect_wrap {
  margin-bottom: 60px;
}
.jobtypeselect_wrap label.jobtypeselect {
  background-color: #fff;
  padding: 10px 40px;
  border: 2px solid #079DF1;
  border-radius: 50px;
  font-size: 1.5em;
  margin-right: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.jobtypeselect_wrap label.jobtypeselect:hover {
  background-color: #e6e6e6;
}
.jobtypeselect_wrap input[type=radio] {
  display: none;
}
.jobtypeselect_wrap input[type=radio]:checked + label.jobtypeselect {
  background-color: #079DF1;
  color: #FFF;
}

.fileiconlink {
  margin-right: 10px;
}
/* ------------------------------------------------------------
* 豊和の研修制度
* ------------------------------------------------------------ */
.un_training_unit_wrap {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #CCC;
}

.un_training_unit_title {
  display: inline-block;
}

.un_training_unit_heading {
  display: inline-block;
  font-weight: bold;
}

.un_training_unit_image_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.un_training_unit_image_wrap .un_training_unit_image {
  width: 50%;
  padding: 0 20px;
}
.un_training_unit_image_wrap .un_training_unit_image > img {
  border-radius: 20px;
}
/* ------------------------------------------------------------
* 社内活動
* ------------------------------------------------------------ */
.un_activity_unit_wrap {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #CCC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.un_activity_unit_wrap:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.un_activity_unit_body_wrap {
  width: 50%;
  padding: 0 20px;
}
.un_activity_unit_body_wrap .un_activity_unit_heading {
  font-weight: bold;
  margin-bottom: 0;
}

.un_activity_unit_body {
  padding: 0 10px;
}

.un_activity_unit_image_wrap {
  width: 50%;
  padding: 0 20px;
}

.un_activity_unit_image > img {
  border-radius: 30px;
  width: 100%;
}
/* ============================================================
*
* プログラム
*
* ============================================================ */
/* ------------------------------------------------------------
* メニューの開閉
* ------------------------------------------------------------ */
/* スクロールを止める */
body.is_locked {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* メニュー本体 */
.js_menu {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 9999;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
}
.js_menu.is_opened {
  visibility: visible;
  -webkit-animation: menu-fade-in 0.6s forwards;
          animation: menu-fade-in 0.6s forwards;
}
.js_menu.is_closed {
  visibility: hidden;
  -webkit-animation: menu-fade-out 0.6s forwards;
          animation: menu-fade-out 0.6s forwards;
}

/* カバー */
.js_menu_cover {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 9998;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background: #FFF;
  opacity: 0;
}
.js_menu_cover.is_opened {
  visibility: visible;
  -webkit-animation: menu-fade-in 0.3s forwards;
          animation: menu-fade-in 0.3s forwards;
}
.js_menu_cover.is_closed {
  visibility: hidden;
  -webkit-animation: menu-fade-out 0.3s forwards;
          animation: menu-fade-out 0.3s forwards;
}

/* アニメーション */
@-webkit-keyframes menu-fade-in {
  0% {
    left: 0;
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  1% {
    left: 0;
    display: block;
    visibility: visible;
    opacity: 0;
  }
  100% {
    left: 0;
    display: block;
    visibility: visible;
    opacity: 1;
  }
}
@keyframes menu-fade-in {
  0% {
    left: 0;
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  1% {
    left: 0;
    display: block;
    visibility: visible;
    opacity: 0;
  }
  100% {
    left: 0;
    display: block;
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes menu-fade-out {
  0% {
    left: 0;
    display: block;
    visibility: visible;
    opacity: 1;
  }
  99% {
    left: 0;
    display: block;
    visibility: visible;
    opacity: 0;
  }
  100% {
    left: 100%;
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes menu-fade-out {
  0% {
    left: 0;
    display: block;
    visibility: visible;
    opacity: 1;
  }
  99% {
    left: 0;
    display: block;
    visibility: visible;
    opacity: 0;
  }
  100% {
    left: 100%;
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}
/* ------------------------------------------------------------
* メインビジュアルのアニメーション用
* ------------------------------------------------------------ */
/* 背景画像 */
/* ------------------------------------------------------------
* フェードインのアニメーション
* ------------------------------------------------------------ */
body.no-js [class*=js_fade] {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
body.no-js [class*=js_fade].is-appeared {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-animation: none;
          animation: none;
}

/* フェードイン */
.js_fadeIn {
  visibility: hidden;
  opacity: 0;
}
.js_fadeIn.is_appeared {
  visibility: visible;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.js_fadeIn_item {
  visibility: hidden;
  opacity: 0;
}
.js_fade_group.is_appeared .js_fadeIn_item {
  visibility: visible;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 下から上にフェードイン */
.js_fadeUp {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.js_fadeUp.is_appeared {
  visibility: visible;
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
          animation-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.js_fadeUp_item {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.js_fade_group.is_appeared .js_fadeUp_item {
  visibility: visible;
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
          animation-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 下から上に大きくなりながらフェードイン */
.js_fadeScaleUp {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(50px) scale(0.7);
          transform: translateY(50px) scale(0.7);
}
.js_fadeScaleUp.is_appeared {
  visibility: visible;
  -webkit-animation-name: fade-scale-up;
          animation-name: fade-scale-up;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
          animation-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.js_fadeScaleUp_item {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.js_fade_group.is_appeared .js_fadeScaleUp_item {
  visibility: visible;
  -webkit-animation-name: fade-scale-up;
          animation-name: fade-scale-up;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
          animation-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

@-webkit-keyframes fade-scale-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px) scale(0.9);
            transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}

@keyframes fade-scale-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px) scale(0.9);
            transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
/* ディレイを追加する */
.js_delay_0 {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}

.js_delay_1 {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
}

.js_delay_2 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}

.js_delay_3 {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}

.js_delay_4 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}

.js_delay_5 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
}

.js_delay_6 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}

.js_delay_7 {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
}

.js_delay_8 {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}

.js_delay_9 {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
}

.js_delay_10 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}

.js_delay_11 {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
}

.js_delay_12 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}

.js_delay_13 {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
}

.js_delay_14 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
}

.js_delay_15 {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
}

.js_delay_16 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
}

.js_delay_17 {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
}

.js_delay_18 {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}

.js_delay_19 {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important;
}

.js_delay_20 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
}

/* ------------------------------------------------------------
* スライダー（Slick）
* ------------------------------------------------------------ */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@media screen and (min-width: 480px){
  .bl_sitemapList li.is_level_1 {
    width: 50%;
  }
  .bl_formInput.bl_formInput__full {
    width: 100%;
  }
  .bl_formInput.bl_formInput__sm {
    max-width: 170px;
  }
  .bl_formInput.bl_formInput__md {
    max-width: 300px;
  }
  .bl_formInput.bl_formInput__lg {
    max-width: 750px;
  }
  .bl_formInput.bl_formInput__100 {
    max-width: 100%;
  }
  .bl_formInput.bl_formInput__75 {
    max-width: 75%;
  }
  .bl_formInput.bl_formInput__50 {
    max-width: 49%;
  }
  .bl_formInput.bl_formInput__25 {
    max-width: 24%;
  }
  .hp_hide_sm_min {
    display: none !important;
  }
}

@media screen and (min-width: 480px) and (max-width: 1023px){
  .hp_hide_tablet {
    display: none !important;
  }
}

@media screen and (min-width: 768px){
  .ly_footer__home {
    padding-top: 100px;
  }
  .ly_footer_inner {
    padding-right: 50px;
    padding-left: 50px;
  }
  .ly_sect {
    padding: 80px 0;
  }
  .ly_cont {
    padding-right: 50px;
    padding-left: 50px;
  }
  .el_xlHeading {
    font-size: 40px;
  }
  .el_lgHeading {
    font-size: 28px;
  }
  .el_mdHeading {
    font-size: 24px;
  }
  .el_smHeading {
    font-size: 20px;
  }
  .el_table th,
  .el_table td {
    display: table-cell;
    text-align: left;
  }
  .bl-footer-bnr-smile100_bnr_sm {
    display: none;
  }
  .bl-footer-bnr-smile100_bnr_lg {
    display: block;
  }
  .bl_entryHeaderTitle {
    font-size: 32px;
  }
  .bl_entry h2 {
    font-size: 28px;
  }
  .bl_entry h3 {
    font-size: 24px;
  }
  .bl_entry h4 {
    font-size: 20px;
  }
  .bl_entry th,
  .bl_entry td {
    display: table-cell;
    text-align: left;
  }
  .hp_hide_md_min {
    display: none !important;
  }
}

@media screen and (min-width: 1024px){
  .ly_cont.ly_cont__mdNarrow {
    max-width: 1140px;
  }
  .bl_headerContents_logo {
    padding: 0 20px 0 0;
  }
  .bl_headerContents_links {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
  body.is_scrolled .bl_menuOpnBtn,
  body.is_locked .bl_menuOpnBtn {
    visibility: visible;
    opacity: 1;
  }
  .bl_sitemapList li.is_level_1 {
    width: 33.33%;
  }
  .bl_ctaTel {
    margin: 0;
    white-space: nowrap;
  }
  .bl_summaryItem {
    width: 33.33%;
  }
  .hp_hide_lg_min {
    display: none !important;
  }
  .hp_hide_pc {
    display: none !important;
  }
}

@media screen and (min-width: 1280px){
  .hp_hide_xl_min {
    display: none !important;
  }
}

@media screen and (max-width: 1279px){
  .hp_hide_xl_max {
    display: none !important;
  }
}

@media (max-width: 1150px){
  .bl_gnavList li.is_level_1 {
    font-size: 0.9em;
    padding: 5px 2px;
  }
  .bl_gnavList li.is_level_1 > a {
    padding: 5px 5px 10px;
  }
}

@media screen and (max-width: 1023px){
  .bl_headerContents_logo {
    padding: 0;
  }
  .bl_headerContents_links {
    display: none;
  }
  .bl_scrollHeader .ly_header_inner {
    padding: 0 0 0 0;
  }
  .bl_menu_inner_imagewrap {
    display: none;
  }
  .bl_menu_inner_sitemap {
    width: 100%;
    padding: 40px 20px;
  }
  .bl_gnav {
    display: none;
  }
  .bl_summaryItem_inner.bl_summaryItem_inner__narrow {
    padding: 0 10px;
  }
  .hp_hide_lg_max {
    display: none !important;
  }
}

@media screen and (max-width: 767px){
  body {
    font-size: 14px;
  }
  .ly_header_inner {
    padding: 0;
  }
  .ly_footer {
    padding: 40px 0 20px;
  }
  .ly_sect.ly_sect_narrowPadding {
    padding: 30px 0;
  }
  .el_btn, .el_arrowBtn, .el_arrowBtnLg {
    min-width: 150px;
    padding: 1.5em 2em 1.5em 2em;
    font-size: 14px;
  }
  .el_btn:before, .el_arrowBtn:before, .el_arrowBtnLg:before {
    bottom: 29px;
    right: 34px;
    height: 10px;
    rotate: -40deg;
  }
  .el_btn:after, .el_arrowBtn:after, .el_arrowBtnLg:after {
    right: 31px;
    width: 20px;
  }
  .el_btn_wrap.el_btn_wrap__widthfull {
    margin: 0 10px;
  }
  .el_btn.el_headrecruitbtn, .el_headrecruitbtn.el_arrowBtn, .el_headrecruitbtn.el_arrowBtnLg {
    border-radius: 0;
    width: 60px;
    height: 60px;
    padding: 10px;
    display: block;
    min-width: auto;
    line-height: 1.5;
  }
  .el_btn.el_btn__lg, .el_btn__lg.el_arrowBtn, .el_btn__lg.el_arrowBtnLg {
    font-size: 1.1em;
    line-height: 1.2;
  }
  .el_outerLinkbtn {
    padding: 0.8em 1.5em;
    font-size: 14px;
  }
  .el_ttlHeading {
    font-size: 22px;
  }
  .el_ttlHeading_ja {
    font-size: 24px;
  }
  .el_ttlHeading_ja span {
    letter-spacing: 0;
  }
  .el_ttlHeading_ja span::before, .el_ttlHeading_ja span::after {
    top: 3px;
    width: 30px;
    height: 20px;
  }
  .el_ttlHeading_ja span::before {
    left: -50px;
  }
  .el_ttlHeading_ja span::after {
    right: -50px;
  }
  .el_largetelnumber {
    text-align: center;
    font-size: 40px;
  }
  .el_pageHeading_main {
    font-size: 22px;
  }
  .el_lgHeading_en {
    font-size: 40px;
  }
  .bl_headerContents {
    height: 60px;
  }
  .bl_headerContents_logo {
    padding: 0 10px;
    width: 55%;
  }
  .bl_headerContents_logo img {
    max-width: 240px;
  }
  .bl_menu_categorylink {
    margin-bottom: 10px;
  }
  .bl_menu_inner_navlist {
    margin-bottom: 20px;
  }
  .bl_menu_inner_navlist li a {
    font-size: 12px;
  }
  .bl_menu_inner_catname_en {
    font-size: 26px;
  }
  .bl_menu_inner_cat {
    width: 50%;
  }
  .bl_topicpath {
    display: none;
  }
  .bl_cta {
    padding: 30px 20px;
  }
  .bl_ctaTel_title {
    font-size: 40px;
  }
  .bl_cta_bodywrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 10px 0 0;
  }
  .bl_cta_bodywrap .el_btn_wrap.el_btn_wrap__widthfull {
    margin: 0;
    width: 100%;
  }
  .bl_cta_body {
    width: 100%;
    padding: 10px;
  }
  .bl_cta_body.bl_cta_body__tel {
    border-left: none;
    border-top: 1px solid #FFF;
    margin-top: 20px;
    padding-top: 20px;
  }
  .bl_cta_body_icon {
    width: 75px;
    padding: 15px;
  }
  .bl_cta_body_cont {
    width: calc(100% - 75px);
  }
  .bl_cta_body_cont > p {
    margin-bottom: 5px;
  }
  .bl_cta_telnumber {
    font-size: 35px;
  }
  .bl_footergroup_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bl_footershopinfo {
    width: 100%;
  }
  .bl_footershopinfo > p {
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
  }
  .bl_footernav {
    width: 100%;
  }
  .bl_footershopinfo_logo {
    width: 80%;
    min-width: 200px;
    margin: 0 auto 20px;
  }
  .bl_footershopinfo_outerlink {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 10px 0;
  }
  .bl_footernav_sitenav {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .bl_footernav_sitenav > ul.bl_footernav_lv1 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bl_footernav_sitenav > ul.bl_footernav_lv1 > li {
    width: 50%;
  }
  .bl_footernav_sitenav > ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bl_footernav_sitenav > ul li {
    padding: 0 0.2em;
    position: relative;
  }
  .bl_footernav_sitenav > ul li::after {
    position: absolute;
    margin-left: 5px;
    right: 0;
  }
  .bl_footerpolicylink {
    text-align: center;
  }
  .bl_slider_img::before {
    height: 100vh;
  }
  .bl_slider_img img {
    height: 100vh;
  }
  .bl_slider_copy {
    padding: 0 10px;
    margin-top: -10%;
  }
  .bl_slider_ttl {
    font-size: 110px;
  }
  .bl_slider_subttl {
    font-size: 24px;
  }
  .bl_slider_scrolldown {
    display: none;
  }
  .bl_summaryList.bl_summaryList__col2 .bl_summaryItem {
    width: 100%;
  }
  .bl_summaryItem {
    width: 50%;
    margin-bottom: 30px;
  }
  .bl_summaryItem.bl_summaryItem__sideimage .bl_summaryItem_media {
    width: 100%;
  }
  .bl_summaryItem.bl_summaryItem__sideimage .bl_summaryItem_info {
    width: 100%;
    padding-left: 0;
  }
  .bl_entryHeaderTitle {
    font-size: 22px;
  }
  .bl_entry dl.el_horizontal dt {
    float: none;
    padding: 1em 1em 0;
    text-align: left;
  }
  .bl_entry dl.el_horizontal dd {
    padding: 0 1em 1em;
  }
  .bl_customDescriptionList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bl_customDescriptionList .bl_customDescriptionList_item {
    width: 100%;
    padding-top: 0;
  }
  .bl_customDescriptionList dt {
    width: 100%;
    float: none;
    padding: 10px 10px 0;
  }
  .bl_customDescriptionList dd {
    padding: 0 15px 10px;
    border-bottom: 1px solid #e6e6e6;
  }
  dl.un_joblist dt {
    width: 100%;
    float: none;
    padding: 15px 0 0;
  }
  dl.un_joblist dd {
    padding: 0 0 15px;
  }
  .bl_categoryTitle_cont__recruit .bl_pagetitle::before {
    background-color: #079DF1;
  }
  .bl_pagetitle_en {
    font-size: 40px;
  }
  .bl_categoryTitle_cont__recruit .bl_pagetitle_en {
    color: #079DF1;
  }
  .bl_pagetitle_ja {
    font-size: 16px;
  }
  .bl_categoryTitle_cont__recruit .bl_pagetitle_ja {
    color: #444444;
  }
  .bl_pagetitle_entrytitle {
    font-size: 24px;
  }
  .bl_categoryTitle_cont {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .bl_categoryTitle_body {
    width: 100%;
    padding-top: 30px;
  }
  .bl_categoryTitle_body.bl_categoryTitle_body__recTitle {
    width: 100%;
    padding-top: calc(70vw + 20px);
  }
  .bl_categoryTitleImg {
    width: calc(100% + 20px);
    top: 0;
    margin: 20px -20px 0 0;
  }
  .bl_pagetitle_introductiontext {
    font-size: 18px;
    margin: 15px 0;
  }
  .bl_categoryTitle_cont__recruit .bl_pagetitle_introductiontext {
    color: #444444;
  }
  .un_rec_message_headcopy {
    color: #444444;
    font-size: 22px;
  }
  .bl_serialNavi_item.bl_serialNavi_item__prev {
    width: 10%;
  }
  .bl_serialNavi_item.bl_serialNavi_item__index {
    width: 80%;
  }
  .bl_serialNavi_item.bl_serialNavi_item__next {
    width: 10%;
  }
  .bl_topmatsumoto_wrap {
    padding-top: 30px;
  }
  .bl_topmatsumoto_body {
    width: 100%;
    z-index: 2;
  }
  .bl_topmatsumoto_image {
    width: 100%;
    margin-top: -50px;
  }
  .hp_hide_md_max {
    display: none !important;
  }
  .un_topheadcopybody {
    font-size: 14px;
  }
  .un_ourtheme {
    padding: 50vw 0;
  }
  .un_ourtheme_image.un_ourtheme_image__img01 {
    width: 30%;
    top: 4%;
    left: 8%;
  }
  .un_ourtheme_image.un_ourtheme_image__img02 {
    width: 50%;
    top: auto;
    bottom: 5%;
    left: -20px;
  }
  .un_ourtheme_image.un_ourtheme_image__img03 {
    width: 30%;
    top: auto;
    bottom: 25%;
    left: 8%;
  }
  .un_ourtheme_image.un_ourtheme_image__img04 {
    width: 50%;
    top: 1%;
    left: auto;
    right: -5%;
  }
  .un_ourtheme_image.un_ourtheme_image__img05 {
    width: 50%;
    top: auto;
    bottom: 15%;
    left: auto;
    right: -8%;
  }
  .un_ourtheme_cont_largetheme {
    font-size: 40px;
  }
  .un_topinstagram_cont > div.insta-item {
    width: 50%;
  }
  .un_topcompanyslidercont {
    width: 100%;
    margin-bottom: 30px;
  }
  .un_topcompanysliderimage > img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    aspect-ratio: 16/12;
  }
  .un_topmovie_embet {
    margin-top: 0;
  }
  .un_topinnerlink_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
  .un_topinnerlink_image {
    width: 100%;
    padding: 0 20px;
    margin: -10px 0 20px;
  }
  .un_topinnerlink_cont {
    width: 100%;
    padding: 0 20px;
    min-width: auto;
  }
  .un_topinnerlink_cont .el_btn_wrap {
    display: inline-block;
  }
  .un_toprec_wrap {
    padding: 40px 0;
  }
  .un_toprec_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .un_toprec_cont > div {
    width: 100%;
  }
  .un_toprec_image {
    margin-top: -10px;
  }
  .un_topnews_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .un_topnews_title {
    width: 100%;
  }
  .un_topnews_cont {
    width: 100%;
  }
  .un_topnews_cont > ul {
    margin-left: 10px;
  }
  .un_topnews_cont > ul li {
    margin-bottom: 15px;
  }
  .un_topnews_cont > ul li .un_topnews_date {
    display: block;
  }
  .un_topothernews_logoimage {
    padding: 10px;
    width: 50%;
  }
  .un_faq_cont_wrap {
    width: 100%;
  }
  .un_faq_questionbody {
    font-size: 16px;
  }
  .un_philosophy_wrap {
    padding: 60px 10px;
    position: relative;
  }
  .un_philosophy_bg {
    font-size: 6vw;
  }
  .un_philosophy_cont p {
    padding: 15px 20px;
    font-size: 35px;
  }
  .un_philosophy_cont .un_philosophy_ttl {
    top: -40px;
    left: -20px;
    font-size: 14px;
    padding: 5px 10px;
  }
  .un_business_cont_wrap {
    margin-top: 40px;
  }
  .un_business_cont {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  .un_business_title_en {
    font-size: 28px;
  }
  .un_business_title_jp {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .un_business_headcopy {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .un_history_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bl_descriptionListHorizontal {
    padding-right: 0;
  }
  .un_history_wrap .bl_descriptionListHorizontal {
    width: 100%;
  }
  .un_historyimage_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
    width: 100%;
  }
  .un_historyimage_wrap > div {
    width: calc(50% - 10px);
    margin: 5px;
  }
  .un_sdgsDeclaration img {
    width: 100%;
  }
  .un_sdgs_introductbody {
    text-align: left;
    font-size: 16px;
  }
  .un_sdgs_introductbody br {
    display: none;
  }
  .un_sdgs_contbox {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }
  .un_sdgs_conttitle_wrap {
    display: block;
  }
  .un_sdgs_conttitle_wrap br {
    display: none;
  }
  .bl_entry .un_sdgs_conttitle h3 {
    font-size: 20px;
  }
  .bl_entry .un_sdgs_conttitle p {
    margin-bottom: 5px;
  }
  .un_sdgs_icon img {
    width: 15vw;
  }
  .bl_entry ul.un_sdgslist {
    padding-left: 8px;
  }
  .bl_entry ul.un_sdgslist li {
    font-size: 14px;
  }
  .un_sdgs_goal_box {
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
  }
  .un_work_title_jp {
    margin-bottom: 20px;
  }
  .un_schedule_cont_wrap {
    padding: 30px;
  }
  .un_schedule_cont::before {
    left: 30px;
    top: 50px;
    height: calc(100% + 10px);
  }
  .un_schedule_unit {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .un_schedule_unit_time {
    width: 50px;
    height: 50px;
    margin: 0 5px;
  }
  .un_schedule_unit_time > span {
    padding: 10px;
  }
  .un_schedule_unit_title {
    width: calc(100% - 60px);
    font-size: 16px;
    padding-left: 10px;
  }
  .un_schedule_unit_body {
    width: 100%;
    padding-left: 70px;
    border-left: none;
  }
  .un_staffwork_wrap {
    padding: 30px;
  }
  .un_staffwork_wrap h2::before {
    left: 26px;
    top: -210px;
  }
  .un_interview_innerlink {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .un_interview_innerlink > li {
    width: 50%;
    padding: 0 5px;
    font-size: 16px;
  }
  .un_interview_innerlink > li > span {
    font-size: 1em;
    padding-left: 5px;
  }
  .un_interview_cont_wrap {
    padding: 0 0 30px;
  }
  .un_interview_cont_title {
    padding: 0 10px 20px;
  }
  .un_interview_cont_title h2 {
    font-size: 30px;
  }
  .un_interview_cont_box {
    margin-bottom: 20px;
  }
  .un_interview_cont_image {
    width: 150px;
    padding: 0 10px;
  }
  .un_interview_cont_body_wrap {
    width: calc(100% - 150px);
  }
  .un_interview_cont_body {
    padding: 20px;
  }
  .un_interview_cont_body > p {
    padding: 0 0 0 10px;
    font-size: 12px;
  }
  .un_interview_cont_body::before {
    top: 10px;
  }
  .un_interview_privateimage {
    width: 50%;
    padding: 10px;
  }
  .bl_categoryTitle_cont.bl_categoryTitle_cont__recruit {
    background: none;
  }
  .bl_categoryTitle_cont.bl_categoryTitle_cont__recruit::before {
    content: "";
    background: url(assets/rec_index_mv.jpg) no-repeat left 30% top 30%/120%;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding-top: 70%;
    z-index: 1;
  }
  .un_rec_message_body {
    color: #444444;
    text-shadow: none;
    font-size: 12px;
  }
  .un_rec_message_name {
    color: #444444;
  }
  .un_rec_message_nameimage {
    max-width: 130px;
  }
  .un_rec_message_nameimage.un_rec_message_nameimage__pc {
    display: none;
  }
  .un_rec_message_nameimage.un_rec_message_nameimage__sp {
    display: inline-block;
  }
  .un_recindex_cont {
    margin: 0;
  }
  .un_recindex_cont_wrap {
    padding-top: 0;
  }
  .un_recindex_cont {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .un_recindex_image_wrap {
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
  }
  .un_recindex_title_en {
    font-size: 30px;
  }
  .un_recindex_body_wrap {
    width: 100%;
    padding: 0 10px;
  }
  .un_recindex_body_title {
    font-size: 20px;
  }
  .un_recindex_body_title > span {
    font-size: 1em;
    padding-right: 5px;
  }
  .un_recindex_body_heading {
    font-size: 16px;
    margin-top: 10px;
    padding: 5px 10px;
  }
  .un_recindex_btmlgcopy {
    font-size: 22px;
    margin: 10px 0 20px;
  }
  .un_recindex_joblistlink_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .un_joblist_introduction_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .un_joblist_introduction_body {
    margin-bottom: 20px;
  }
  .un_joblist_tabmenu {
    margin-left: 20px;
    margin-right: 20px;
  }
  .un_joblist_tabmenu > li a {
    font-size: 14px;
    padding: 10px 15px;
    line-height: 1.3;
    margin-right: 4px;
  }
  .un_joblist_tabbody_wrap {
    padding: 0 20px 40px;
  }
  .un_joblist_tabbody_cont {
    padding-top: 30px;
  }
  .un_joblist_tabbody_cont h2 {
    font-size: 20px;
  }
  .un_recruit_entryform_outer {
    padding: 20px 10px 40px;
  }
  .un_recruit_entryform_outer .el_lgHeading {
    padding: 20px 20px 0;
  }
  .jobtypeselect_wrap {
    margin-bottom: 20px;
  }
  .jobtypeselect_wrap label.jobtypeselect {
    padding: 5px 15px;
    font-size: 1em;
    margin-bottom: 5px;
  }
  .un_training_unit_image_wrap {
    margin: 0;
  }
  .un_training_unit_image_wrap .un_training_unit_image {
    padding: 0 10px;
  }
  .un_activity_unit_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 10px 30px;
    margin-bottom: 30px;
  }
  .un_activity_unit_wrap:nth-of-type(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .un_activity_unit_body_wrap {
    width: 100%;
    padding: 0;
  }
  .un_activity_unit_image_wrap {
    width: 100%;
    max-width: 350px;
    margin: 20px auto 0;
    padding: 0;
  }
}

@media screen and (max-width: 479px){
  .bl_slider_ttl {
    font-size: 75px;
  }
  .bl_slider_subttl {
    font-size: 19px;
  }
  .bl_summaryItem {
    width: 100%;
    margin-bottom: 30px;
  }
  .bl_categoryTitleImg_innertext {
    font-size: 40px;
  }
  .hp_hide_sm_max {
    display: none !important;
  }
  .hp_hide_sp {
    display: none !important;
  }
  .un_business_store_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 20px -20px 0;
  }
  .un_business_store_cont {
    width: 100%;
    padding: 20px 20px 20px;
  }
  .un_interview_innerlink {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .un_interview_innerlink > li {
    width: 100%;
    text-align: left;
  }
}

@media screen and (max-width: 374px){
  .hp_hide_xs_max {
    display: none !important;
  }
}

/*# sourceMappingURL=bundle.min.css.map*/