@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/*------------------------------------------------
	Font
------------------------------------------------*/
/*
[77% = 10px]
[85% = 11px]
[93% = 12px]
[100% = 13px]
[108% = 14px]
[116% = 15px]
[123.1% = 16px]
[131% = 17px]
[138.5% = 18px]
[146.5% = 19px]
[153.9% = 20px]
[161.6% = 21px]
[167% = 22px]
[174% = 23px]
[182% = 24px]
[189% = 25px]
[197% = 26px]

wght@100;300;400;500;700;900
*/
body {
  font: 13px/1.231 arial, helvetica, clean, sans-serif;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", YuGothic, Meiryo, Osaka, "MS PGothic", sans-serif;
}

select, input, button, textarea {
  font: 99% arial, helvetica, clean, sans-serif;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", YuGothic, Meiryo, Osaka, "MS PGothic", sans-serif;
}

body {
  word-wrap: break-word;
}

a {
  text-decoration: underline;
  color: #d52012;
}

a:hover {
  opacity: 0.5;
}

/*------------------------------------------------
    Layout
------------------------------------------------*/
html, body {
  height: 100%;
}

.dnone {
  display: none;
}

#pc {
  display: block !important;
}

#sp {
  display: none !important;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.pt0em {
  padding-top: 0em;
}

.pt05em {
  padding-top: 0.5em;
}

.pt1em {
  padding-top: 1em;
}

.pt2em {
  padding-top: 2em;
}

.pt3em {
  padding-top: 3em;
}

.pt4em {
  padding-top: 4em;
}

.pt5em {
  padding-top: 5em;
}

.pt6em {
  padding-top: 6em;
}

.pt7em {
  padding-top: 7em;
}

.pt8em {
  padding-top: 8em;
}

.pt9em {
  padding-top: 9em;
}

.pt20px {
  padding-top: 20px;
}

.pt40px {
  padding-top: 40px;
}

.pt50px {
  padding-top: 50px;
}

.pt80px {
  padding-top: 80px;
}

.mt02em {
  margin-top: 0.2em;
}

.mt03em {
  margin-top: 0.3em;
}

.mt04em {
  margin-top: 0.4em;
}

.mt05em {
  margin-top: 0.5em;
}

.mt1em {
  margin-top: 1em;
}

.mt2em {
  margin-top: 2em;
}

.mt3em {
  margin-top: 3em;
}

.mb3px {
  margin-bottom: 3px;
}

.mb50px {
  margin-bottom: 50px;
}

.mb60px {
  margin-bottom: 60px;
}

.mb70px {
  margin-bottom: 70px;
}

.mb80px {
  margin-bottom: 80px;
}

.mb90px {
  margin-bottom: 90px;
}

.mb150px {
  margin-bottom: 150px;
}

.mb300px {
  margin-bottom: 300px;
}

.pbmb0em {
  padding-bottom: 0;
  margin-bottom: 0;
}

.pb1em {
  padding-bottom: 1em;
}

.pb1_5em {
  padding-bottom: 1.5em;
}

.pb2em {
  padding-bottom: 2em;
}

.pb3em {
  padding-bottom: 3rem;
}

.pb4em {
  padding-bottom: 4em;
}

.pb5em {
  padding-bottom: 5em;
}

.pb6em {
  padding-bottom: 6em;
}

.pb7em {
  padding-bottom: 7em;
}

.pb8em {
  padding-bottom: 8em;
}

.pb9em {
  padding-bottom: 9em;
}

.pb10em {
  padding-bottom: 10em;
}

.pb10px {
  padding-bottom: 10px;
}

.pb20px {
  padding-bottom: 20px;
}

.pb50px {
  padding-bottom: 50px;
}

.pb100px {
  padding-bottom: 100px;
}

.fs50 {
  font-size: 50%;
}

.fs60 {
  font-size: 60%;
}

.fs70 {
  font-size: 70%;
}

.fs80 {
  font-size: 80%;
}

.fs90 {
  font-size: 90%;
}

.fs100 {
  font-size: 100%;
}

.fs14 {
  font-size: 108%;
}

.fs110 {
  font-size: 110%;
}

.fs120 {
  font-size: 120%;
}

.fs130 {
  font-size: 130%;
}

.fs140 {
  font-size: 140%;
}

.fs150 {
  font-size: 150%;
}

.fs160 {
  font-size: 160%;
}

.fs170 {
  font-size: 170%;
}

.fs175 {
  font-size: 175%;
}

.fw_n {
  font-weight: normal;
}

.infomr {
  margin-right: 0.3em;
}

.mr02 {
  margin-right: 0.2em;
}

.mr05 {
  margin-right: 0.5em;
}

.ml05 {
  margin-left: 0.5em;
}

.mb1 {
  margin-bottom: 1em;
}

.mb2 {
  margin-bottom: 2em;
}

.ml2em {
  margin-left: 2em;
}

.txtbol {
  font-weight: bold;
}

.txtnomle {
  font-weight: normal;
}

.mbpb0 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.flot-r {
  float: right;
}

.flot-l {
  float: left;
}

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

.t-l {
  text-align: left;
}

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

.w5p {
  width: 5%;
}

.w10p {
  width: 10%;
}

.w15p {
  width: 15%;
}

.w20p {
  width: 20%;
}

.w25p {
  width: 25%;
}

.w30p {
  width: 30%;
}

.w35p {
  width: 35%;
}

.w40p {
  width: 40%;
}

.w45p {
  width: 45%;
}

.w49p {
  width: 49%;
}

.w50p {
  width: 50%;
}

.w60p {
  width: 60%;
}

.w70p {
  width: 70%;
}

.w80p {
  width: 80%;
}

.w90p {
  width: 90%;
}

.w95p {
  width: 95%;
}

.w100p {
  width: 100%;
}

.color_white {
  color: #ffffff;
}

.color_red {
  color: #d52012;
}

/*------------------------------------------------
    Header
------------------------------------------------*/
header {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  z-index: 10000;
  position: fixed;
  top: 0;
  box-shadow: 0px 2px 4px -3px rgba(0, 0, 0, 0.6);
}

.header_box {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_box_item:nth-child(1) {
  margin-left: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.header_box_item:nth-child(2) {
  margin-right: 20px;
}

.head_tel {
  margin: 0;
  padding: 0;
}

.header_box .header_box_item .head_txt {
  font-size: 120%;
  line-height: 100%;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
}

.header_box_item .head_txt .head_tel {
  font-size: 200%;
  line-height: 100%;
  color: #ff6817 !important;
}

/*main visual start*/
div#mainVisual {
  position: relative;
  background: url(main-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 0;
}

#mainVisual .mainvisual_container {
  max-width: 960px;
  margin: 45px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-width: 768px;
  height: 100%;
  padding-top: 10px;
}

.mainvisual_container_image_main1 {
  width: 100%;
}

.mainvisual_container_image_main2 {
  width: 45%;
}

.mainvisual_container_image_main1 img, .mainvisual_container_image_main2 img {
  width: 100%;
}

#mainVisual .intro_container {
  text-align: center;
  position: absolute;
  bottom: -16px;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 2;
}

.intro_container img {
  width: 28px;
}

/*main visual end*/
/*------------------------------------------------
    footer
------------------------------------------------*/
footer {
  background: #325da7;
  margin-top: 50px;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 10px;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 24px;
  text-indent: 35px;
}

footer nav, .footer-inner2 {
  margin-left: 0px;
  margin-right: 0px;
}

footer nav a {
  text-decoration: none;
  color: #FFFFFF;
}

.footer-inner {
  margin: 0px 0px 10px 0px;
  display: flex;
  align-items: stretch;
}

.footer-inner-item:nth-child(1) {
  margin-right: 40px;
}

.footer-inner-item:nth-child(2) {
  margin-right: 40px;
}

.footer-inner-item:nth-child(3) {
  margin-right: 20px;
}

/*.footer-inner-item:nth-child(4) {
  margin-right: 20px;
}
.footer-inner-item:nth-child(5) {
}*/
.footer-inner2 {
  padding: 0px;
  display: flex;
  justify-content: center;
}

.footer-inner2-item {
  width: 40%;
  margin: 60px 20px 60px 20px;
}

.footer-inner2-2 {
  padding: 0px;
  display: flex;
  justify-content: center;
}

.footer-inner2-2-item {
  margin: 0;
  padding: 0;
  line-height: 18px;
  justify-content: flex-start;
}

.footer-inner2-2-item:nth-child(1) {
  margin-right: 20px;
}

.footer-inner3 {
  width: 100%;
  background-color: #09458b;
}

.f-copylight {
  text-align: left;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #ffffff;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 3 !important;
}

.pagetop a {
  display: block;
  text-align: center;
  text-decoration: none;
  background-image: url("../../img/top_arrow.svg");
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  margin-right: 0px;
  margin-bottom: 10px;
}

.pagetop a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha( opacity=50 )";
}

.pagetop a em {
  visibility: hidden;
}

/*------------------------------------------------
    Clear
------------------------------------------------*/
.clearfix:after, ul:after, dl:after, .header_topmenu:after, #main p:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clear {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/*------------------------------------------------
    BreadCrumb
------------------------------------------------*/
#bread_crumb {
  margin-top: 30px;
  margin-bottom: 60px;
}

#bread_crumb ul {
  margin: 0;
  padding: 0;
}

#bread_crumb ul li {
  display: inline;
  font-size: 100%;
  line-height: 180%;
}

#bread_crumb ul li:before {
  padding: 0 3px;
  content: ">";
}

#bread_crumb ul li:first-child:before {
  content: "";
  padding: 0;
}

#bread_crumb ul li a {
  color: #112b27;
  text-decoration: none;
}

#bread_crumb ul li a:hover {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------------------------------------
    Main Contents
----------------------------------------------------------------------------------------------------------*/
/* 繝懊ャ繧ｯ繧ｹ縺ｮ蟾ｦ蜿ｳ縺ｫ遒ｺ菫昴☆繧倶ｽ咏區 */
.header-site, .contents, .topic_menue, .ent_box_w-full {
  padding-left: 20px;
  padding-right: 20px;
}

.txt_center {
  text-align: center;
  padding: 0;
  margin: 0;
}

.mbox {
  max-width: 960px;
  height: auto;
  margin-top: 40px;
}

.mbox img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.mpcspbox {
  margin-bottom: 50px;
}

.contents .com_txt p {
  font-size: 150%;
  line-height: 180%;
}

.contents .com_txt .contact_tel {
  padding: 30px;
  border: 1px solid #000000;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.com_txt .contact_tel .tel-title {
  font-size: 200%;
  text-align: center;
  margin: 0;
}

.com_txt .contact_tel .tel-tex {
  font-size: 280%;
  font-weight: bold;
  text-align: center;
  margin: 0;
  color: #ff6817 !important;
}

.com_txt .contact_tel .fax-tex {
  font-size: 180%;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.com_txt .contact_tel p {
  text-align: center;
  font-size: 130%;
  margin: 20px 0 0 0;
}

.com_tex_box {
  padding: 0.4rem 1rem 1rem;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  border-radius: 6px;
  color: #000000;
  font-size: 90%;
}

.floating-banner1 {
  position: fixed;
  z-index: 99999;
  top: 300px;
  right: 0;
}

.floating-banner1:hover {
  opacity: 0.5;
}

.banner1 {
  width: 60px;
}

.floating-banner1 a {
  text-decoration: none;
}

.floating-banner2 {
  position: fixed;
  z-index: 99999;
  top: 470px;
  right: 0;
}

.floating-banner2:hover {
  opacity: 0.5;
}

.banner2 {
  width: 60px;
}

.floating-banner2 a {
  text-decoration: none;
}

.b-btn-box {
  display: none;
}

/*----------------------------------------------------------------------------------------------------------
    繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ繝懊ち繝ｳ
----------------------------------------------------------------------------------------------------------*/
@-webkit-keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
.shiny-btn {
  position: relative;
  display: block;
  width: 50%;
  height: auto;
  line-height: 100%;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #ff6817;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  font-size: 30px;
  font-weight: bold;
  padding: 50px 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.shiny-btn::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 100%, rgba(255, 255, 255, 0) 0%);
  -webkit-animation-name: shiny;
          animation-name: shiny;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media (max-width: 769px) {
  #pc {
    display: none !important;
  }
  #sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  /*header start*/
  header {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    z-index: 10000;
    position: fixed;
    top: 0;
    box-shadow: 0px 2px 4px -3px rgba(0, 0, 0, 0.6);
  }
  .head_width {
    max-width: 960px;
    margin: auto;
    position: relative;
    text-align: center;
    height: 40px;
  }
  .head_width img {
    width: 190px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header_box {
    width: 100%;
  }
  .header_box_item img {
    width: 100%;
    max-width: 200px;
    min-width: 100px;
    height: auto;
    vertical-align: bottom;
  }
  .header_box_item {
    margin-left: 20px;
    margin-right: 20px;
  }
  /*
  .header_box_item:nth-child(1) {
  }

  .header_box_item:nth-child(2) {
  }
  */
  .header_box .header_box_item .head_txt {
    font-size: 120%;
    line-height: 100%;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 0;
  }
  .head_tel {
    font-size: 200%;
    line-height: 100%;
    font-weight: bold;
    color: #FF18A8 !important;
    text-decoration: none;
    white-space: nowrap;
    margin-top: 0;
    margin-bottom: 5px;
  }
  .head_tel a {
    color: #ff6817 !important;
    text-decoration: none;
  }
  /*header end*/
  /*--------------------------*/
  /*--------------------------*/
  /*main visual start*/
  div#mainVisual {
    background-position: center center;
  }
  #mainVisual .mainvisual_container {
    margin: 30px auto 0;
    display: block;
    width: 100%;
    min-width: auto;
    height: 100%;
    padding: 20px 0 0px;
  }
  .mainvisual_container_image_main1 {
    width: 100%;
    margin-top: 10px;
  }
  .mainvisual_container_image_main2 {
    width: 100%;
    margin-top: 14px;
  }
  .mainvisual_container_image_main1 img, .mainvisual_container_image_main2 img {
    width: 100%;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
  }
  #mainVisual .intro_container {
    text-align: center;
    position: absolute;
    bottom: -16px;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 2;
  }
  .intro_container img {
    width: 28px;
  }
  /*main visual end*/
  .contact_btn {
    top: 200px;
  }
  .product_btn {
    top: 375px;
  }
  .mbox {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }
  footer {
    margin-bottom: 0px;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-inner3 {
    height: 24vw;
  }
  .contents .com_txt p {
    font-size: 120%;
  }
  .contents .com_txt .contact_tel {
    padding: 20px;
    width: 70%;
  }
  .com_txt .contact_tel .tel-title {
    font-size: 140%;
    line-height: 120%;
  }
  .com_txt .contact_tel .tel-tex {
    font-size: 180%;
  }
  .com_txt .contact_tel .tel-tex a {
    color: #ff6817 !important;
    text-decoration: none;
  }
  .com_txt .contact_tel .fax-tex {
    font-size: 130%;
  }
  .com_txt .contact_tel p {
    text-align: center;
    font-size: 100%;
  }
  .shiny-btn {
    width: 90%;
    font-size: 30px;
    padding: 30px 20px;
    line-height: 130%;
  }
  /*------------------------------------------------
      contact繝懊ち繝ｳ
  ------------------------------------------------
  .floating-banner1 {
      top: 200px;
  }
  .banner1 {
      width: 50px;
  }*/
  /*------------------------------------------------
      product繝懊ち繝ｳ
  ------------------------------------------------
  .floating-banner2 {
      top: 342px;
  }
  .banner2 {
      width: 50px;
  }*/
  /*------------------------------------------------
      contact繝懊ち繝ｳ product繝懊ち繝ｳ
  ------------------------------------------------*/
  .b-btn-box {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
  }
  .b-btn-item {
    width: 50%;
  }
  .b-btn-item img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .pagetop {
    bottom: 100px;
    right: 0;
  }
}
@media (min-width: 769px) {
  /*  */
}
@media (min-width: 960px) {
  #bread_crumb, .header-site, .contents, footer nav, .f-copylight {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
/*----------------------------------------------------------------------------------------------------------
	繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ繝懊ち繝ｳ
----------------------------------------------------------------------------------------------------------*/
.shiny-btn.product {
  /*    position: relative;
      display: block;
      width: 50%;
      height: auto;
      line-height: 100%;
      text-align: center;
      text-decoration: none;
      color: #ffffff;
  */
  background-color: #6dd900;
  /*    overflow: hidden;
      margin-left: auto;
      margin-right: auto;
      border-radius: 20px;
      font-size: 30px;
      font-weight: bold;
      padding: 50px 20px;
      margin-top: 50px;
      margin-bottom: 50px;
  */
}

.shiny-btn.product .next {
  font-size: 1.125rem;
  display: inline-block;
  margin-left: 0.5rem;
}

.shiny-btn.product .next::before,
.shiny-btn.product .next::after {
  content: "";
}

.shiny_box {
  display: flex;
  flex-direction: row-reverse;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.shiny-btn {
  flex-basis: calc((100% - 32px) / 2);
}

/* 2022-03-08 */
.c-btn-box {
  margin-top: -20px;
  display: flex;
  justify-content: center;
}

.h-btn-box {
  display: flex;
  justify-content: center;
  width: calc(100% - 510px);
}

.c-btn-item,
.h-btn-item {
  width: 50%;
  height: auto;
}

.c-btn-item img,
.h-btn-item img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.header_box_item:nth-child(2) {
  margin-left: 10px;
  margin-right: 10px;
}

.header_box_item:nth-child(3) {
  margin-right: 20px;
}

@media (max-width: 1058px) {
  .shiny_box {
    width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }
  .shiny-btn {
    flex-basis: calc((100% - 32px) / 2);
  }
}
@media (max-width: 769px) {
  .shiny-btn {
    width: 100%;
    font-size: 30px;
    padding: 30px 20px;
    line-height: 130%;
  }
  .shiny_box {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .h-btn-box {
    display: none;
  }
}