/*!************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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.6;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #000;
  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: #fff;
}
.ly_header.ly_header__topheader {
  position: absolute;
  width: 100%;
  top: 0;
  background-color: initial;
}

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

/* ------------------------------------------------------------
* フッター
* ------------------------------------------------------------ */
.ly_footer {
  position: relative;
  padding: 60px 0 40px;
  background: #fff;
}
.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: #388B6B;
}
.ly_sect.ly_sect__color_key-light {
  background-color: #F8FAF8;
  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__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;
}

/* ------------------------------------------------------------
* ページのタイトル部分
* ------------------------------------------------------------ */
/* ============================================================
*
* モジュール
*
* ============================================================ */
/* ------------------------------------------------------------
* ボタン
* ------------------------------------------------------------ */
/* ボタンのみ */
.el_btn, .el_arrowBtn, .el_arrowBtnLg {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  min-width: 230px;
  max-width: 100%;
  padding: 1.5em 3em;
  font-size: 1em;
  position: relative;
  line-height: 1.3;
  color: #FFF;
  text-decoration: none;
  vertical-align: middle;
  background-color: #aaa;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  margin: 30px 0 0;
  text-align: left;
}
.el_btn:before, .el_arrowBtn:before, .el_arrowBtnLg:before {
  content: "";
  position: absolute;
  bottom: 32px;
  right: 39px;
  width: 1px;
  height: 14px;
  background: #eee;
  rotate: -40deg;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.el_btn:after, .el_arrowBtn:after, .el_arrowBtnLg:after {
  content: "";
  position: absolute;
  bottom: 33px;
  right: 35px;
  width: 40px;
  height: 1px;
  background: #eee;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.el_btn:visited, .el_arrowBtn:visited, .el_arrowBtnLg:visited {
  color: #fff;
}
.el_btn:active, .el_arrowBtn:active, .el_arrowBtnLg:active, .el_btn:hover, .el_arrowBtn:hover, .el_arrowBtnLg:hover {
  background-color: #2e7258;
}
.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__white, .el_btn__white.el_arrowBtn, .el_btn__white.el_arrowBtnLg {
  background: #FFF;
  color: #000;
}
.el_btn.el_btn__white:hover, .el_btn__white.el_arrowBtn:hover, .el_btn__white.el_arrowBtnLg:hover {
  background: #2e7258;
  color: #FFF;
}
.el_btn.el_btn__blackbtn, .el_btn__blackbtn.el_arrowBtn, .el_btn__blackbtn.el_arrowBtnLg {
  color: #388B6B;
  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: #388B6B;
}
.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: #388B6B;
  color: #000;
}
.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.4em;
  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: #000;
  text-decoration: underline;
}
.el_btnInlineLink:visited {
  color: #000;
  text-decoration: underline;
}
.el_btnInlineLink:active, .el_btnInlineLink:hover {
  color: #000;
  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: #388B6B;
  background-color: #333;
  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: #388B6B;
  color: #333;
}
.el_outerLinkbtn:hover::after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9Il94MzJfIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiMzMzMzMzM7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik05NiwwdjQxNmg0MTZWMEg5NnogTTQ3MiwzNzZIMTM2VjQwaDMzNlYzNzZ6Ii8+Cgk8cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjQwLDQ3MiA0MCwyOTYgNDAsMTM2IDQwLDk2IDAsOTYgMCw1MTIgNDE2LDUxMiA0MTYsNDcyIDM3Niw0NzIgCSIvPgoJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIyMzIuOCwzMTIuOCAzNTAuNywxOTUgMzUwLjcsMjc5LjggMzkwLjcsMjc5LjggMzkwLjcsMTI2LjcgMjM3LjYsMTI2LjcgMjM3LjYsMTY2LjcgMzIyLjQsMTY2LjcgCgkJMjA0LjUsMjg0LjUgCSIvPgo8L2c+Cjwvc3ZnPgo=) no-repeat 5px center/1em 1em;
}
/* ------------------------------------------------------------
* 見出し
* ------------------------------------------------------------ */
/* トップの見出しとカテゴリタイトル
* -------------------------------------------------- */
.el_ttlHeading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  margin-bottom: 20px;
}
.el_ttlHeading.el_ttlHeading__line {
  border-bottom: 1px solid #388B6B;
}

.el_ttlHeading_ja {
  font-size: 34px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.el_ttlHeading_en {
  font-size: 14px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 5px;
}

.el_largetelnumber {
  font-family: "Libre Bodoni", serif;
  font-optical-sizing: auto;
  line-height: 1.2;
  font-size: 50px;
  margin-top: 10px;
}
.el_largetelnumber a {
  color: #000;
}
/* ページタイトル - 小(下層ページ用)
* -------------------------------------------------- */
.el_pageHeading {
  color: #000;
  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: #388B6B;
}
.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 #388B6B;
}
.el_pageHeading_main.el_pageHeading_main__course {
  color: #bd68e4;
}
.el_pageHeading_main > a {
  color: #000;
  text-decoration: none;
}
/* 本文中の見出し
* -------------------------------------------------- */
/* ----- 大見出し ----- */
.el_xlHeading {
  margin-bottom: 1em;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.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: #000;
}
.el_xlHeading_en span {
  border-bottom: solid 0.218em #000;
}

.el_xlHeading_ja {
  display: block;
}

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

.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-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  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: #000;
  margin: 0 5px;
  top: -2px;
  position: relative;
}
.el_label.el_label__lg {
  font-size: 1.2em;
}
.el_label.el_label__pink {
  background-color: #ff507a;
}
.el_label.el_label__purple {
  background-color: #bd68e4;
}
.el_label.el_label__green {
  background-color: #6ce0c4;
}
.el_label.el_label__yellow {
  background-color: #ffcc16;
}
.el_label.el_label__gray {
  background-color: #aaa;
}
.el_label.el_label__white {
  background-color: #fff;
}
.el_label.el_label__yellow {
  color: #000;
}
.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: #388B6B;
  color: #000;
  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: #000;
}
.el_entryTagLabel a:hover {
  background-color: #aaa;
}
.el_entryTagLabel.current a {
  background-color: #388B6B;
}

/* ------------------------------------------------------------
* フォームの要素
* ------------------------------------------------------------ */
/* ----- テキスト・テキストエリア ----- */
.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-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
/* ロゴ
* -------------------------------------------------- */
.bl_headerContents_logo {
  padding: 0 70px 0 0;
}
.bl_headerContents_logo a {
  display: block;
}
.bl_headerContents_logo img {
  display: block;
  width: 100%;
  max-width: 320px;
  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: #000;
  text-decoration: none;
}
.bl_headerContents_linksSns_item a:visited {
  color: #000;
  text-decoration: none;
}
.bl_headerContents_linksSns_item a:focus,
.bl_headerContents_linksSns_item a:active,
.bl_headerContents_linksSns_item a:hover {
  color: #000;
  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_navSP_wrap {
  width: 120px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.bl_headerContents_linkBtn_icon {
  position: relative;
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin: 0 0 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 0 0 20px;
}
.bl_scrollHeader .bl_headerContents_logo img {
  max-width: 260px;
}

/* ------------------------------------------------------------
* フェードインのメニュー
* ------------------------------------------------------------ */
/* 開閉のボタン
* -------------------------------------------------- */
.bl_menuOpnBtn {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_menuOpnBtn.is_opened {
  background: rgba(255, 255, 255, 0);
}
.bl_menuOpnBtn > span, .bl_menuOpnBtn::before, .bl_menuOpnBtn::after {
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_menuOpnBtn::before {
  -webkit-transform: translateY(-9px);
          transform: translateY(-9px);
  width: 30px;
}
.bl_menuOpnBtn::after {
  -webkit-transform: translateY(9px);
          transform: translateY(9px);
  width: 10px;
}
.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: #333;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 530px;
  min-height: 100%;
  padding: 12px 15px;
  margin: 0 auto;
}
/* ----- 見出し ----- */
.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 #333;
  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: #333;
}

/* ------------------------------------------------------------
* サイト一覧
* ------------------------------------------------------------ */
/* 全てのリスト */
.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: #000;
  text-decoration: none;
}
.bl_sitemapList a:visited {
  color: #000;
  text-decoration: none;
}
.bl_sitemapList a:active, .bl_sitemapList a:hover {
  color: #000;
  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: #000;
  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: #2e7258;
}

.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: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_gnavList li.is_level_1 > ul > li a:visited {
  color: #000;
  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;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1.3;
  position: absolute;
  right: 0;
  bottom: 0;
}

.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,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iX+ODrOOCpOODpOODvF8yIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvCAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyODMuNDYgMjgzLjQ2Ij4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLmNscy0xIHsKICAgICAgICBmaWxsOiAjMzMzOwogICAgICB9CgogICAgICAuY2xzLTEsIC5jbHMtMiB7CiAgICAgICAgc3Ryb2tlLXdpZHRoOiAwcHg7CiAgICAgIH0KCiAgICAgIC5jbHMtMiB7CiAgICAgICAgZmlsbDogbm9uZTsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPGcgaWQ9IkRlc2lnbiI+CiAgICA8Zz4KICAgICAgPHJlY3QgY2xhc3M9ImNscy0yIiB3aWR0aD0iMjgzLjQ2IiBoZWlnaHQ9IjI4My40NiIvPgogICAgICA8cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMTcyLjM3IDEwMS42NSAxNTkuNSAxMTUuNDUgMjEwLjEgMTYyLjYzIDI4LjEgMTYyLjYzIDI4LjEgMTgxLjUgMjU4LjAxIDE4MS41IDE3Mi4zNyAxMDEuNjUiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPg==) no-repeat right calc(0.1em + 5px)/1em 1em;
  opacity: 0.5;
}
.bl_topicpath_item:last-child {
  padding: 5px 0 5px 0.5em;
  background: transparent;
}
.bl_topicpath_item a {
  color: #000;
  text-decoration: none;
}
.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: 500px;
  padding-right: 50px;
}
.bl_footershopinfo > p {
  font-size: 14px;
}

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

.bl_footershopinfo_logo {
  width: 350px;
  margin-bottom: 20px;
}
.bl_footershopinfo_logo img {
  width: 100%;
}
.bl_footershopinfo_outerlink {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  border-top: 1px solid #DDD;
  padding-top: 20px;
}
.bl_footershopinfo_outerlink .bl_footershopinfo_tetra {
  font-size: 14px;
}

.bl_footershopinfo_outerlinkimage.bl_footershopinfo_outerlinkimage__instagram {
  margin: 10px 0 0;
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.bl_footershopinfo_outerlinkimage.bl_footershopinfo_outerlinkimage__instagram img {
  width: 100%;
}
.bl_footershopinfo_outerlinkimage.bl_footershopinfo_outerlinkimage__tetra .tetralogo {
  display: inline-block;
  margin: 2px 0 10px;
}
.bl_footershopinfo_outerlinkimage.bl_footershopinfo_outerlinkimage__tetra .tetralogo img {
  width: 140px;
}
.bl_footernav_sitenav {
  margin-bottom: 30px;
}
.bl_footernav_sitenav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl_footernav_sitenav > ul > li {
  list-style: none;
  font-size: 12px;
  width: 11em;
  padding-right: 1em;
  margin-bottom: 12px;
  font-weight: bold;
}
.bl_footernav_sitenav > ul > li a {
  color: #333;
  text-decoration: none;
}
.bl_footernav_sitenav > ul > li a:hover {
  color: #388B6B;
}

.bl_footerarea {
  font-size: 12px;
  background-color: #F8FAF8;
  padding: 20px;
}
.bl_footerarea > ul {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl_footerarea > ul > li {
  list-style: none;
  font-size: 10px;
  min-width: 5em;
}

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

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

.bl_slider_cont {
  position: relative;
}

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

.bl_slider_img::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(255, 255, 255) 100%);
  opacity: 0.6;
  mix-blend-mode: multiply;
  height: 90vh;
  min-height: 500px;
}
.bl_slider_img img {
  height: 90vh;
  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: 42%;
  left: 5%;
  z-index: 10;
  width: 100%;
  padding: 0 20px;
  color: #fff;
}

.bl_slider_ttl {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.bl_slider_subttl {
  font-size: 42px;
  font-family: "Libre Bodoni", serif;
  font-optical-sizing: auto;
  font-optical-sizing: auto;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.15em;
}
.bl_slider_subttl span {
  font-size: 0.7em;
}

.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: 40px;
}
.bl_summaryItem.bl_summaryItem__col1 {
  width: 100%;
}
.bl_summaryItem_inner {
  display: block;
  margin: 0 auto;
  color: #000;
  text-decoration: none;
}
.bl_summaryItem_inner:visited, .bl_summaryItem_inner:active, .bl_summaryItem_inner:hover {
  color: #000;
  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%;
  margin: 0 0 10px;
  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;
}
.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: #000;
  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;
}
.bl_summaryItem_inner:active .bl_summaryItem_title, .bl_summaryItem_inner:hover .bl_summaryItem_title {
  opacity: 0.7;
}

.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_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 {
  padding: 0 0 1.33em;
  margin: 0 0 1.33em;
  font-size: 28px;
  line-height: 1.5;
  border-bottom: solid 1px #ddd;
}
.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: #388B6B;
}
.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: #388B6B;
  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: #000;
  text-decoration: none;
  background-color: #fff;
  border: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.bl_entry .quoteLink:visited {
  color: #000;
  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: #000;
  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_entryCategorySearch_wrap {
  margin-bottom: 5px;
}
.bl_entryCategorySearch_wrap span {
  background-color: #388B6B;
  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: #388B6B;
  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_pagetitle {
  position: relative;
}

.bl_categoryTitle {
  position: relative;
  overflow: hidden;
}

.bl_categoryTitleImg {
  margin-bottom: 40px;
  width: 100%;
  height: 300px;
}
.bl_categoryTitleImg > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}
.bl_categoryTitle_body {
  margin-bottom: 30px;
  position: relative;
}

.ly_title__photo .bl_pagetitle {
  padding-right: 60%;
}

.bl_categoryTitle_cont {
  margin-bottom: 40px;
}
/* ------------------------------------------------------------
* ページャー
* ------------------------------------------------------------ */
.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: #333;
  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: #000;
  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: #000;
  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: #000;
  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: #000;
  text-decoration: none;
}
.bl_serialNaviItem_btn:active, .bl_serialNaviItem_btn:hover {
  color: #fff;
  text-decoration: none;
  background-color: #388B6B;
}
.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: #388B6B;
}

/* ------------------------------------------------------------
* フォーム
* ------------------------------------------------------------ */
.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: #388B6B;
}

.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: #388B6B;
  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_txt_em {
  font-style: normal !important;
  font-weight: bold !important;
}

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

/* 上付き文字 */
.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_topnews_listwrap {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 12;
  right: 0;
  bottom: 50px;
  padding: 30px 20px 0;
  width: 50%;
}

.un_topnews_ttl {
  min-width: 220px;
}

.un_topnews_list {
  list-style: none;
  margin-bottom: 20px;
}
.un_topnews_list > time {
  font-weight: bold;
  padding-right: 5px;
}
.un_topnews_list > li {
  font-size: 14px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 8px;
  width: 100%; /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.un_topnews_list > li a {
  color: #333;
}
.un_topnews_list > li > time {
  margin-right: 5px;
}
/* ------------------------------------------------------------
* コピー
* ------------------------------------------------------------ */
.un_topheadcopybody {
  text-align: center;
  font-size: 18px;
}
.un_topheadcopybody span {
  display: inline-block;
}

/* ------------------------------------------------------------
* 施工事例リンク
* ------------------------------------------------------------ */
.un_topworkslink_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.un_topworkslink_wrap .un_topworkslink__col1 {
  width: 100%;
}
.un_topworkslink_wrap .un_topworkslink__col2 {
  width: 50%;
}

.un_topworkslink_cont {
  padding: 150px 60px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.un_topworkslink_cont::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.un_topworkslink_cont.un_topworkslink_cont__key01 {
  background-image: url(assets/topworkslink_bg_01.jpg);
}
.un_topworkslink_cont.un_topworkslink_cont__key02 {
  background-image: url(assets/topworkslink_bg_02.jpg);
}
.un_topworkslink_cont.un_topworkslink_cont__key03 {
  background-image: url(assets/topworkslink_bg_03.jpg);
}
.un_topworkslink_cont.un_topworkslink_cont__key04 {
  background-image: url(assets/topworkslink_bg_04.jpg);
}
.un_topworkslink_cont:hover::before {
  background-color: rgba(0, 0, 0, 0.8);
}

.un_topworkslink_ttl_en {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.un_topworkslink_ttl_jp {
  font-size: 30px;
  line-height: 1.2;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  z-index: 2;
}
.un_topworkslink_ttl_jp > a {
  text-decoration: none;
  color: #fff;
}
/* ------------------------------------------------------------
* Instagram
* ------------------------------------------------------------ */
.un_topinstagram_thum .un_topinstagram_thum_cont {
  padding: 5px;
}
.un_topinstagram_thum .un_topninstagramitem {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}

/* ------------------------------------------------------------
* About
* ------------------------------------------------------------ */
.un_topaboutimage img {
  width: 100%;
}

.un_topaboutlinkwrap {
  background-color: #F8FAF8;
  padding: 80px 0;
}
.un_topaboutlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}

.un_topaboutlink_image {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.un_topaboutlink_box {
  width: 33.3333333333%;
  padding: 0 20px;
}
.un_topaboutlink_box > a {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 10px;
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.un_topaboutlink_box > a:before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 29px;
  width: 1px;
  height: 10px;
  background: #777;
  rotate: -40deg;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.un_topaboutlink_box > a:after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 25px;
  width: 20px;
  height: 1px;
  background: #777;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.un_topaboutlink_box:hover .un_topaboutlink_image {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.un_topaboutlink_box:hover a::before {
  right: 25px;
}
.un_topaboutlink_box:hover a::after {
  right: 21px;
}
/* ------------------------------------------------------------
* 施工エリア
* ------------------------------------------------------------ */
.un_toparea_wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.un_toparea_wrap dl dt {
  width: 200px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
.un_toparea_wrap dl div {
  width: calc(100% - 200px);
  margin-bottom: 20px;
}
.un_toparea_wrap dl div dd {
  display: inline-block;
  margin-right: 10px;
}

.un_productlink_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.un_productlink_wrap ul li {
  list-style: none;
  width: 20%;
  padding: 10px;
  margin-bottom: 0;
}
.un_productlink_wrap ul li img {
  width: 100%;
  border: 1px solid #ddd;
}
/* ------------------------------------------------------------
* お客様の声
* ------------------------------------------------------------ */
.un_topvoice_wrap {
  overflow: hidden;
}

.un_topvoicesummary {
  padding: 0 15px;
}
.un_topvoicesummary p {
  line-height: 1.3;
}
.un_topvoicesummary a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
}
.un_topvoicesummary .un_topvoice_name {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

.un_topvoice_image {
  margin-bottom: 10px;
}
.un_topvoice_image img {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #aaa;
}
.un_topvoice_image img:hover {
  opacity: 0.8;
}

.un_topvoice_title {
  font-size: 12px;
  margin-top: 5px;
}
/* ------------------------------------------------------------
* ショールーム
* ------------------------------------------------------------ */
.un_topshowroom_outer {
  background-color: #ededed;
  padding-bottom: 60px;
}

.un_topshowroom_image img {
  width: 100%;
}

.un_topshowroom_wrap {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 50px;
  margin: -50px -50px 50px;
}

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

.un_topshowroom_telwrap {
  margin-top: 40px;
}

.un_topshowroom_body_text {
  width: 50%;
  padding-right: 50px;
}

.un_topshowroom_body_map {
  width: 50%;
}
.un_topshowroom_body_map > iframe {
  width: 100% !important;
  height: 100%;
}

.un_topshowroom_adlist {
  overflow: hidden;
  margin: 30px 0 0;
}
.un_topshowroom_adlist dt {
  font-weight: bold;
  float: left;
  width: 5em;
}
.un_topshowroom_adlist dd {
  padding-left: 6em;
  margin-bottom: 10px;
}

.un_topshowroom_comment {
  margin-top: 40px;
  font-size: 14px;
}
.un_notice_box {
  margin-top: 30px;
  border: 5px solid #fa4027;
  padding: 20px 30px;
  text-align: center;
}
/* ------------------------------------------------------------
* お知らせ
* ------------------------------------------------------------ */
/* 重要と全ての切り替えナビ
* -------------------------------------------------- */
.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: #000;
  border-color: #000;
}
.un_newsNav_btn.un_newsNav_btn__all.stay {
  color: #fff;
  background-color: #000;
}
.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: #000;
}
.un_newsNav_btn.un_newsNav_btn__all:active, .un_newsNav_btn.un_newsNav_btn__all:hover {
  color: #fff;
  text-decoration: none;
  background-color: #000;
}
.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_servicelist_wrap {
  margin: 40px 0 60px;
}
.un_servicelist_wrap h4 {
  margin-bottom: 20px;
  color: #388B6B;
}

.un_servicelist_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin-bottom: 40px;
}
.un_servicelist_cont div {
  width: 50%;
  padding: 0 20px;
}
.un_servicelist_cont dt {
  font-weight: bold;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 10px 0 5px;
}
.un_servicelist_cont dd {
  padding-left: 20px;
  padding: 10px;
}

.un_companyarealist {
  background-color: #fff;
  padding: 30px;
}
.un_companyarealist h4 {
  margin-bottom: 20px;
}
.un_companyarealist ul {
  font-size: 12px;
}
.un_companyarealist ul li {
  list-style: none;
  display: inline-block;
  min-width: 5em;
}
.un_companymovie video {
  width: 100%;
}

/* ------------------------------------------------------------
* わたしたちの特長
* ------------------------------------------------------------ */
.un_features_cont {
  overflow: hidden;
  padding: 60px 0 30px;
  margin: 60px 0 30px;
}
.un_features_cont.un_features_cont__feature01 {
  border-top: 1px solid #EEE;
}
.un_features_cont.un_features_cont__feature02 {
  padding: 80px 0;
  background-color: #F8FAF8;
}
.un_features_cont.un_features_cont__feature02 .un_features_cont_heading {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.un_features_cont.un_features_cont__feature02 .un_features_cont_body {
  padding-right: 0;
  padding-left: 40px;
}
.un_features_cont.un_features_cont__feature02 .un_features_cont_image > div {
  margin-left: calc((50vw - 100%) * -1);
  margin-right: auto;
}
.un_features_cont.un_features_cont__feature03 {
  padding-top: 0;
}

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

.un_features_cont_body {
  width: 50%;
  padding-right: 40px;
}

.un_features_cont_image {
  width: 50%;
}
.un_features_cont_image > div {
  width: 50vw;
  margin-right: calc((50vw - 100%) * -1);
}
.un_features_cont_image > div img {
  width: 100%;
}
.un_featues_headingnumber {
  font-size: 70px;
  color: #388B6B;
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1;
}
.un_featues_headingnumber > span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
}

.un_featues_headingtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  margin: 30px 0 10px;
  font-size: 30px;
}

.un_features_cont_thum_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px;
}
.un_features_cont_thum_wrap > div {
  padding: 10px;
}

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

.un_features_cont_btmcontent_text {
  padding-right: 30px;
}

.un_features_cont_btmcontent_btn {
  width: 50%;
}
.un_features_cont_voice_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px 40px;
}

.un_features_cont_voice {
  width: 20%;
  padding: 0 10px;
}
.un_features_cont_voice > div {
  padding: 20px;
  height: 100%;
  background-color: #fff;
  border: 1px solid #EEE;
}

.un_features_cont_voice_name {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}
/* ------------------------------------------------------------
* 施工事例
* ------------------------------------------------------------ */
.un_works_taglist {
  margin-bottom: 20px;
}

.toggle {
  display: none;
}

.un_works_taglist_accdionbtn { /*タイトル*/
  padding: 1em 80px 1em 20px;
  display: block;
  width: 30em;
  color: #fff;
  background: #aaa;
  margin: auto;
}
.un_works_taglist_accdionbtn:hover {
  background: #666;
  cursor: pointer;
}
.un_works_taglist_accdionbtn::before { /*タイトル横の矢印*/
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.un_works_taglist_accdionbtn,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.un_works_taglist_content {
  height: 0;
  margin: 30px 0;
  padding: 0 40px;
  overflow: hidden;
}

.toggle:checked + .un_works_taglist_accdionbtn + .un_works_taglist_content { /*開閉時*/
  height: auto;
  padding: 20px 40px 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.toggle:checked + .un_works_taglist_accdionbtn::before {
  -webkit-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
}

.un_works_taglist_content {
  background: #F8FAF8;
  font-size: 12px;
}
.un_works_taglist_content h4 {
  margin: 20px 0 10px;
  color: #388B6B;
}
.un_works_taglist_content .acms-form-checkbox {
  min-width: calc(20% - 20px);
  margin-bottom: 10px;
}
.un_works_taglist_content .casesearchbtn {
  background-color: #666;
  color: #fff;
  padding: 20px;
  width: 80%;
  margin: 20px auto 0;
}
.un_works_summary_wrap {
  margin-bottom: 60px;
}

.un_works_summary_card_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}

.un_works_summary_card {
  width: 33.3333333333%;
  padding: 0 10px;
  margin-bottom: 30px;
}
.un_works_summary_card:hover .un_works_summary_title a {
  color: #388B6B;
}

.un_works_summary_title {
  margin-top: 10px;
}
.un_works_summary_title > a {
  display: inline-block;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.5;
}

.un_works_summary_area {
  margin-top: 5px;
  font-size: 12px;
  color: #aaa;
}
/* ------------------------------------------------------------
* 詳細ページ
* ------------------------------------------------------------ */
.un_worksentry_header {
  background-color: #F8FAF8;
  padding: 60px 10px 30px;
  overflow: hidden;
  margin-bottom: 60px;
}

.un_worksentry_construction_area {
  color: #999;
}

.un_worksentry_title {
  font-size: 30px;
  margin: 5px 0 20px;
  line-height: 1.4;
}

.un_worksentry_header div.un_worksentry_header_slider {
  max-width: 800px;
  margin: 0 auto 60px;
}
.un_worksentry_header div.un_worksentry_header_slider img {
  width: 100%;
}
.un_worksentry_header div.un_worksentry_header_slider .slick-dots li button:before {
  font-size: 12px;
}

.un_worksentry_photocaption {
  font-size: 14px;
  color: #999;
  margin: 10px 0;
}

.un_worksentry_maincomment {
  margin-bottom: 40px;
}

.un_works_entrycustom img {
  width: 100%;
}

.un_works_entry_mainphotowrap {
  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-bottom: 30px;
}

.un_works_beforeimage {
  width: 35%;
  padding: 0 20px;
}

.un_works_mainphoto {
  width: 65%;
  padding: 0 20px;
}

.un_works_imageswrapper {
  position: relative;
}

.un_works_photolabel {
  position: absolute;
  left: 0;
  bottom: 20px;
  display: inline-block;
  padding: 5px 15px;
  background-color: #aaa;
  color: #fff;
  z-index: 2;
  font-size: 14px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.un_works_photolabel.un_works_photolabel__after {
  color: #000;
  background-color: #fff;
}
.un_works_photolabel.un_works_photolabel__arrow {
  background-color: #333;
  width: 30px;
  height: 30px;
  left: auto;
  right: -35px;
  bottom: 40%;
  padding: 5px;
}
.un_works_photolabel.un_works_photolabel__arrow img {
  vertical-align: baseline;
}
.un_works_subimage_wrap {
  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;
  padding: 0 10px;
  margin-bottom: 20px;
}

.un_works_subimage {
  width: 33.3333333333%;
  padding: 0 10px;
}

.un_works_number {
  margin: 30px 20px;
  font-size: 12px;
  color: #999;
  text-align: right;
}
.slick-slider .slick-next:before {
  content: "";
  background-color: #666;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAAFVBMVEVMaXH////////////////////////zsRG/AAAABnRSTlMAwi/tnGFDWdRpAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAhElEQVR4nO3UUQrDMAwEUcuy9/5HLiWQfrkEai2kmXeBASG2NQAAAADA03RHI0d9JKTySkjllXg3pDA0VFqZ6aj0T6U7Knn/Sjgq7axoUrlknBernJjxR5VprsT9K+kd5fw2MfGb1JWKtsluiGhd2RjRcpTlqMhR0WZj/WMAAAAAALTDC7WND7tzHiHuAAAAAElFTkSuQmCC);
  background-size: 50%;
  background-position: center;
  width: 40px;
  height: 40px;
  display: block;
}

.slick-slider .slick-prev {
  left: -45px;
}
.slick-slider .slick-prev::before {
  content: "";
  background-color: #666;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAAGFBMVEVMaXH////////////////////////////eQubUAAAAB3RSTlMAwR7tm2JKRJFh9QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAItJREFUeJzt1EEOwyAQBEFYFub/P44SxeFin+LxYdX1gRYCpjUAAAAAQF0RDzT6sFdiSO7Ku+GuxKchdWNlfRtS2hrzSMh3kiqNlP8+skYjdmPaGr1aYyxbY/watu8RRRpr1Jir+WjjX/2ysafEF0n5Iyl7JPZc2SJxb0Onkez3ysvXBQAAAABAO7wAnBER97BNp0gAAAAASUVORK5CYII=);
  background-size: 50%;
  background-position: center;
  width: 40px;
  height: 40px;
  display: block;
}

.un_otherworks_wrap {
  overflow: hidden;
  background-color: #e6e6e6;
  padding: 60px 0 20px;
}

.workstag_wrap {
  display: block;
  overflow: hidden;
  margin: 30px 6px 20px;
  padding: 30px 0 0;
  border-top: 1px solid #DDD;
}
.workstag_wrap li {
  list-style: none;
  display: inline-block;
  margin: 0 2px 6px 0;
}
.workstag_wrap li a {
  font-size: 11px;
  padding: 8px 14px;
  background-color: #EEE;
  color: #AAA;
  line-height: 1;
  display: inline-block;
  border-radius: 3px;
  text-decoration: none;
}
.workstag_wrap li a:hover {
  background-color: #388B6B;
  text-decoration: none;
  color: #FFF;
}

.tagtitle {
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: bold;
}
.tagtitle h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.tagtitle span {
  color: #388B6B;
  font-size: 12px;
  border: solid 2px #388B6B;
  padding: 8px 15px;
  margin: 0 5px 10px;
  display: inline-block;
  line-height: 1;
}

.un_workscomment_title {
  font-weight: bold;
}

/* ------------------------------------------------------------
* 採用情報
* ------------------------------------------------------------ */
.un_cat_recruit {
  background-image: url(assets/bg_largelogoimage.png);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: bottom 100px left -10%;
  background-attachment: fixed;
}

/* ------------------------------------------------------------
* flow
* ------------------------------------------------------------ */
.un_flowheaderlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.un_flowheaderlist_cont {
  width: 14.2857142857%;
  padding: 0 10px;
}

.un_flowheaderlist_cont_inner {
  background-color: #ededed;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  padding: 10px 10px 60px;
  height: 100%;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.un_flowheaderlist_cont_inner::after {
  content: "";
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iX+ODrOOCpOODpOODvF8yIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvCAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyODMuNDYgMjgzLjQ2Ij4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLmNscy0xIHsKICAgICAgICBmaWxsOiAjMzMzOwogICAgICB9CgogICAgICAuY2xzLTEsIC5jbHMtMiB7CiAgICAgICAgc3Ryb2tlLXdpZHRoOiAwcHg7CiAgICAgIH0KCiAgICAgIC5jbHMtMiB7CiAgICAgICAgZmlsbDogbm9uZTsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPGcgaWQ9IkRlc2lnbiI+CiAgICA8Zz4KICAgICAgPHJlY3QgY2xhc3M9ImNscy0yIiB3aWR0aD0iMjgzLjQ2IiBoZWlnaHQ9IjI4My40NiIvPgogICAgICA8cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMTY4Ljc0IDE2MS4wOSAxMjEuNTYgMjExLjY5IDEyMS41NiAyNi44NSAxMDIuNjkgMjYuODUgMTAyLjY5IDI1OS42IDE4Mi41NCAxNzMuOTYgMTY4Ljc0IDE2MS4wOSIvPgogICAgPC9nPgogIDwvZz4KPC9zdmc+);
  width: calc(100% - 20px);
  height: 20px;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 10px;
}
.un_flowheaderlist_cont_inner:hover {
  background-color: #aaa;
}

.un_flowheader_number {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
}

.un_flowheader_title {
  height: 8em;
  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;
}
.un_flowheader_title a {
  color: #000;
  text-decoration: none;
}

.un_flowheader_free {
  display: inline;
  background-color: #333;
  color: #FFF;
  padding: 5px 20px;
  font-size: 14px;
}

.un_flowcont_step_wrap {
  background-color: #fff;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
.un_flowcont_step_wrap:last-child {
  margin-bottom: 0;
}

.un_flowcont_step_wrap__after {
  background-color: #ededed;
}

.un_flowcont_step_body {
  width: 40%;
  padding-right: 30px;
}

.un_flowcont_step_image {
  width: 60%;
}

.un_flowcont_number {
  display: inline-block;
  width: 80px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #388B6B;
  text-align: center;
  font-size: 12px;
  line-height: 1;
}
.un_flowcont_number span {
  font-size: 60px;
  display: block;
}

.un_flowcont_free {
  background: #388B6B;
  color: #FFF;
  font-size: 14px;
  padding: 5px 10px;
  position: relative;
  display: inline-block;
  top: -10px;
  margin-left: 10px;
}

.un_flowcont_title {
  margin: 20px 0;
  font-size: 24px;
}
/* ------------------------------------------------------------
* 展示場
* ------------------------------------------------------------ */
.un_showroom_image_wrap {
  margin-bottom: 40px;
}

.un_gmapouterlink_large {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  border-bottom: 1px solid #eee;
  padding: 5px 0 20px;
  margin: 0 0 40px;
}
.un_gmapouterlink_large a {
  color: #388B6B;
  text-decoration: none;
}
.un_gmapouterlink_large a:hover {
  color: #2e7258;
  text-decoration: underline;
}
.un_gmapouterlink_large span {
  display: inline-block;
}

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

.un_access_cont_body {
  width: 50%;
  padding-right: 40px;
}

.un_access_cont_map {
  width: 50%;
}
.un_access_cont_map iframe {
  width: 100% !important;
}
.un_gmapsvembet iframe {
  width: 100% !important;
  margin-top: 30px;
}

/* ------------------------------------------------------------
* よくある質問
* ------------------------------------------------------------ */
.un_cat_faq {
  background-image: url(assets/bg_largelogoimage.png);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: bottom 100px left -10%;
  background-attachment: fixed;
}

.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: #000;
  text-decoration: none;
  padding: 20px 5px;
  display: block;
}
.un_faq_nav li a:hover {
  color: #388B6B;
}
.un_faq_nav li::after {
  content: "";
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iX+ODrOOCpOODpOODvF8yIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvCAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyODMuNDYgMjgzLjQ2Ij4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLmNscy0xIHsKICAgICAgICBmaWxsOiAjMzMzOwogICAgICB9CgogICAgICAuY2xzLTEsIC5jbHMtMiB7CiAgICAgICAgc3Ryb2tlLXdpZHRoOiAwcHg7CiAgICAgIH0KCiAgICAgIC5jbHMtMiB7CiAgICAgICAgZmlsbDogbm9uZTsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPGcgaWQ9IkRlc2lnbiI+CiAgICA8Zz4KICAgICAgPHJlY3QgY2xhc3M9ImNscy0yIiB3aWR0aD0iMjgzLjQ2IiBoZWlnaHQ9IjI4My40NiIvPgogICAgICA8cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMTcyLjM3IDEwMS42NSAxNTkuNSAxMTUuNDUgMjEwLjEgMTYyLjYzIDI4LjEgMTYyLjYzIDI4LjEgMTgxLjUgMjU4LjAxIDE4MS41IDE3Mi4zNyAxMDEuNjUiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPg==);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  right: 15px;
  top: 35%;
}

.un_faq_largeheding {
  font-size: 18px;
  padding: 15px 0;
  border-bottom: 2px solid #999;
  margin-top: 60px;
  margin-bottom: 30px;
}
.un_faq_largeheding:first-child {
  margin-top: 0;
}

.un_faq_contbody {
  position: relative;
  margin-left: 60px;
  margin-bottom: 30px;
}

.un_faq_questionbody {
  font-weight: bold;
  padding: 20px 0;
}
.un_faq_questionbody::before {
  content: "Q";
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  color: #999;
  position: absolute;
  left: -45px;
  top: -5px;
}

/* ------------------------------------------------------------
* フォーム
* ------------------------------------------------------------ */
.un_formselect_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 30px -10px;
}
.un_formselect_wrap ul li {
  width: 50%;
  list-style: none;
  padding: 0 10px 5px;
}
.un_formselect_wrap ul li a {
  text-align: center;
  margin: 0 0 10px;
  padding: 20px;
  color: #000;
  text-decoration: none;
  display: block;
  border: 1px solid #388B6B;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
}
.un_formselect_wrap ul li a:hover {
  background-color: #388B6B;
  color: #FFF;
}
.un_form_commoncomment li {
  margin-left: 1.5em;
  font-size: 14px;
}

.un_formheading {
  border-bottom: 1px solid #388B6B;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 40px;
}

.un_matsumoto_caution {
  border: 2px solid #fa4027;
  padding: 30px;
  margin-bottom: 30px;
  font-size: 14px;
}

.monookiphoto_wrap {
  border: 1px solid #DDD;
  padding: 20px;
  margin: 15px 0;
  text-align: center;
  background-color: #e6e6e6;
}

.monookiphoto_wrap p.monookiphoto_text {
  margin: 0 0 10px;
  padding: 0;
  font-weight: bold;
  font-size: 12px;
}

.entry-container p.monookiimagecopy {
  font-size: 12px;
  margin: 0 0 10px;
}

.monookiphoto_wrap input {
  position: relative;
  /* margin: 8px 0 0 -14px; */
}

/* labelをボタンらしく */
.upload-label {
  margin-top: 10px;
}

/* ホバー時 */
/* inputは隠す */
/* ------------------------------------------------------------
* サービス
* ------------------------------------------------------------ */
.un_service_title_cont {
  position: relative;
  margin-bottom: 40px;
}

.un_service_titleimage {
  margin: 0 -20px;
}

.un_service_titlelargetext {
  position: absolute;
  bottom: 0;
  left: -20px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px 40px;
  max-width: 800px;
  width: 80%;
}

.un_service_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 40px;
}

.un_service_cont_wrap {
  max-width: 1000px;
  margin: auto;
}

.un_service_largecont_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.un_service_largecont_bodywrap {
  width: 40%;
}
.un_service_largecont_bodywrap .un_service_largecont_titleen {
  color: #388B6B;
  font-weight: bold;
  margin: 5px;
}
.un_service_largecont_bodywrap .un_service_largecont_titlejp {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  font-size: 30px;
  margin: 10px 0 20px;
}
.un_service_largecont_bodywrap p {
  margin-bottom: 20px;
}

.un_service_largecont_image {
  width: 60%;
  padding-left: 30px;
}
.un_service_largecont_image img {
  width: 100%;
}

.un_service_smcont_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px 40px;
}
.un_service_smcont_box .un_service_smcont_image {
  padding: 0 10px;
  width: 33.3333333333%;
}
.un_service_smcont_box .un_service_smcont_image img {
  width: 100%;
}

.un_service_infocont_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  gap: 20px;
}
.un_service_infocont_wrap .un_service_infocont {
  background-color: #F8FAF8;
  padding: 30px 30px 20px;
  width: 50%;
  font-size: 14px;
}
.ly_sect__color_key-light .un_service_infocont_wrap .un_service_infocont {
  background-color: #fff;
}
.un_service_infocont_wrap .un_service_infocont .un_service_infotitle {
  font-weight: bold;
  margin-bottom: 10px;
  color: #388B6B;
}
.un_service_infocont_wrap .un_service_infocont .un_service_infolist {
  list-style: none;
  margin: 0;
}
.un_service_infocont_wrap .un_service_infocont .un_service_infolist li {
  display: inline-block;
  padding-right: 20px;
}

.un_service_workslink_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.un_service_workslink_btn .el_btn {
  width: calc(50% - 40px);
}
/* ============================================================
*
* プログラム
*
* ============================================================ */
/* ------------------------------------------------------------
* メニューの開閉
* ------------------------------------------------------------ */
/* スクロールを止める */
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.5s forwards;
          animation: menu-fade-in 0.5s forwards;
}
.js_menu.is_closed {
  visibility: hidden;
  -webkit-animation: menu-fade-out 0.5s forwards;
          animation: menu-fade-out 0.5s forwards;
}

/* カバー */
.js_menu_cover {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 9998;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background: #333;
  opacity: 0;
}
.js_menu_cover.is_opened {
  visibility: visible;
  -webkit-animation: menu-fade-in 0.5s forwards;
          animation: menu-fade-in 0.5s forwards;
}
.js_menu_cover.is_closed {
  visibility: hidden;
  -webkit-animation: menu-fade-out 0.5s forwards;
          animation: menu-fade-out 0.5s 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_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;
  }
  .un_topvoice_image {
    position: relative;
  }
  .un_topvoice_image .un_topvoice_title {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #fff;
    top: 0;
    left: 0;
    display: block;
    margin: 0;
    padding: 10%;
    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;
    font-weight: bold;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .un_topvoice_image:hover .un_topvoice_title {
    opacity: 1;
  }
}

@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;
  }
  .bl_menuOpnBtn {
    top: 30px;
    right: 30px;
    visibility: hidden;
    opacity: 0;
    display: none;
  }
  body.is_scrolled .bl_menuOpnBtn,
  body.is_locked .bl_menuOpnBtn {
    visibility: visible;
    opacity: 1;
  }
  .bl_menu_inner {
    max-width: 830px;
  }
  .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 {
    display: none;
  }
  .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: 5px 15px 5px 15px;
  }
  .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 4.5em 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 {
    bottom: 30px;
    right: 31px;
    width: 20px;
  }
  .el_btn_wrap.el_btn_wrap__widthfull {
    margin: 0 10px;
  }
  .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_logo img {
    max-width: 200px;
  }
  .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%;
    padding-right: 0;
  }
  .bl_footershopinfo > p {
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
  }
  .bl_footernav {
    width: 100%;
  }
  .bl_footershopinfo_logo {
    width: 80%;
    min-width: 300px;
    margin: 0 auto 20px;
  }
  .bl_footershopinfo_outerlink {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0;
  }
  .tetralogo {
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  .bl_footernav_sitenav {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .bl_footernav_sitenav > ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bl_footernav_sitenav > ul li {
    width: auto;
    padding: 0 1em;
    position: relative;
  }
  .bl_footernav_sitenav > ul li::after {
    position: absolute;
    content: "/";
    margin-left: 5px;
    right: 0;
  }
  .bl_footernav_sitenav > ul li:last-child::after {
    content: "";
  }
  .bl_slider_img::before {
    height: 80vh;
  }
  .bl_slider_img img {
    height: 80vh;
  }
  .bl_slider_copy {
    padding: 0 10px;
    margin-top: -10%;
  }
  .bl_slider_scrolldown {
    display: none;
  }
  .bl_summaryList.bl_summaryList__col2 .bl_summaryItem {
    width: 100%;
  }
  .bl_summaryItem {
    width: 100%;
    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_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;
  }
  .bl_categoryTitleImg {
    height: 150px;
  }
  .bl_categoryTitleImg > img {
    height: 150px;
  }
  .bl_categoryTitleImg {
    width: 100%;
  }
  .bl_categoryTitleImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .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_topnews_listwrap {
    width: 100%;
    bottom: 0;
    padding: 20px 20px 0;
  }
  .un_topheadcopybody {
    font-size: 14px;
  }
  .un_topworkslink_cont {
    padding: 40px 20px;
  }
  .un_topworkslink_ttl_en {
    font-size: 12px;
  }
  .un_topworkslink_ttl_jp {
    font-size: 20px;
  }
  .un_topaboutlinkwrap {
    padding: 40px 0;
  }
  .un_productlink_wrap ul li {
    width: 33.3333333333%;
  }
  .un_toparea_wrap dl dt {
    width: 100%;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .un_toparea_wrap dl div {
    width: 100%;
  }
  .un_toparea_wrap dl div dd {
    display: inline-block;
    margin-right: 10px;
  }
  .un_topshowroom_wrap {
    background-color: #fff;
    padding: 30px;
    margin: 15px -5px -40px;
  }
  .un_topshowroom_body_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .un_topshowroom_body_text {
    width: 100%;
    padding-right: 0;
  }
  .un_topshowroom_body_map {
    width: 100%;
    margin-top: 20px;
  }
  .un_topshowroom_body_map > iframe {
    height: 400px !important;
  }
  .un_notice_box {
    text-align: left;
    border: 3px solid #fa4027;
    padding: 20px 20px;
  }
  .un_servicelist_cont {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .un_servicelist_cont div {
    width: 100%;
    padding: 0;
    font-size: 12px;
  }
  .un_features_cont.un_features_cont__feature02 .un_features_cont_body {
    padding-left: 0;
  }
  .un_features_cont.un_features_cont__feature02 .un_features_cont_image > div {
    margin-left: 0;
  }
  .un_features_cont.un_features_cont__feature03 {
    padding-top: 0;
  }
  .un_features_cont_body {
    width: 100%;
    padding-right: 0;
  }
  .un_features_cont_image {
    width: 100%;
    margin-top: 30px;
  }
  .un_features_cont_image > div {
    width: 100%;
    margin-right: 0;
  }
  .un_featues_headingbody {
    margin-bottom: 20px;
  }
  .un_features_cont_btmcontent_text {
    padding-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .un_features_cont_btmcontent_btn {
    width: 100%;
  }
  .un_features_cont_thum_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 10px;
  }
  .un_features_cont_thum_wrap > div {
    width: 50%;
    padding: 10px;
  }
  .un_features_cont_voice {
    width: 100%;
    margin-bottom: 10px;
  }
  .un_works_taglist_accdionbtn {
    width: 100%;
  }
  .toggle:checked + .un_works_taglist_accdionbtn + .un_works_taglist_content { /*開閉時*/
    height: auto;
    padding: 10px 30px 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .un_works_taglist_content .acms-form-checkbox {
    margin-right: 5px;
  }
  .un_works_summary_card {
    width: 100%;
  }
  .un_worksentry_header {
    padding: 30px 0 10px;
    margin-bottom: 30px;
  }
  .un_worksentry_title {
    font-size: 22px;
  }
  .un_works_beforeimage {
    width: 100%;
    padding: 0;
  }
  .un_works_beforeimage .un_worksentry_photocaption {
    min-height: 60px;
    padding-left: 80px;
  }
  .un_works_mainphoto {
    width: 100%;
    padding: 0;
  }
  .un_works_photolabel.un_works_photolabel__arrow {
    right: auto;
    left: 10px;
    bottom: -50px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .un_works_subimage {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .un_flowcont_step_body {
    width: 100%;
    padding-right: 0;
  }
  .un_flowcont_step_image {
    width: 100%;
    margin-top: 10px;
  }
  .un_gmapouterlink_large {
    font-size: 22px;
  }
  .un_access_cont_body {
    width: 100%;
    padding-right: 0;
  }
  .un_access_cont_map {
    width: 100%;
    margin-top: 20px;
  }
  .un_access_cont_map iframe {
    height: 500px !important;
  }
  .un_gmapsvembet iframe {
    height: 300px !important;
  }
  .un_faq_cont_wrap {
    width: 100%;
  }
  .un_formselect_wrap ul li {
    width: 100%;
    padding-bottom: 0;
  }
  .un_service_titlelargetext {
    position: relative;
    bottom: auto;
    top: -30px;
    left: auto;
    padding: 20px 25px;
    width: calc(100% - 10px);
    margin: auto;
  }
  .un_service_title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .un_service_cont_wrap {
    max-width: 1000px;
    margin: auto;
  }
  .un_service_largecont_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 6px;
  }
  .un_service_largecont_bodywrap {
    width: 100%;
  }
  .un_service_largecont_bodywrap .un_service_largecont_titlejp {
    font-size: 30px;
  }
  .un_service_largecont_bodywrap p {
    margin-bottom: 20px;
  }
  .un_service_largecont_image {
    width: 100%;
    padding-left: 0;
  }
  .un_service_smcont_box {
    margin: 0 -3px 20px;
  }
  .un_service_smcont_box .un_service_smcont_image {
    padding: 0 3px;
  }
  .un_service_infocont_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .un_service_infocont_wrap .un_service_infocont {
    padding: 30px 30px 20px;
    width: 100%;
    font-size: 12px;
  }
  .un_service_infocont_wrap .un_service_infocont .un_service_infolist {
    list-style: none;
    margin: 0;
  }
  .un_service_workslink_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0;
  }
  .un_service_workslink_btn .el_btn {
    width: 100%;
    margin-top: 10px;
  }
}

@media screen and (max-width: 479px){
  .hp_hide_sm_max {
    display: none !important;
  }
  .hp_hide_sp {
    display: none !important;
  }
  .un_topaboutlink_box {
    width: 100%;
    padding: 0 30px;
    margin-bottom: 20px;
  }
}

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

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