/*
! tailwindcss v3.0.15 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
  font-feature-settings : "palt";
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/*
Remove the default font size and weight for headings.
*/


h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/


strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

/*
Add the correct font size in all browsers.
*/

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

/*
Removes the default spacing and border for appropriate elements.
*/


dl,
h2,
h3,
h4,
p {
  margin: 0;
}

p {
 text-align: justify;
 text-justify: inter-ideograph;
 -ms-text-justify: inter-ideograph;
 -ms-text-align: justify;
}

    
/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
iframe {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img {
  max-width: 100%;
  height: auto;
}

/*
Ensure the default browser behavior of the `hidden` attribute.
*/

*, ::before, ::after {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.pointer-events-none {
  pointer-events: none;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.top-1\/2 {
  top: 50%;
}
.right-0 {
  right: 0px;
}
.-bottom-o-80 {
  bottom: -0.80rem;
}
.left-0 {
  left: 0px;
}
.top-0 {
  top: 0px;
}
.top-o-56 {
  top: 0.56rem;
}
.-bottom-o-36 {
  bottom: -0.36rem;
}
.bottom-o-16 {
  bottom: 0.16rem;
}
.bottom-0 {
  bottom: 0px;
}
.z-10 {
  z-index: 10;
}
.-z-10 {
  z-index: -10;
}
.z-50 {
  z-index: 50;
}
.order-2 {
  order: 2;
}
.order-1 {
  order: 1;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-o-16 {
  margin-top: 0.16rem;
  margin-bottom: 0.16rem;
}
.mt-o-136 {
  margin-top: 1.36rem;
}
.mt-o-68 {
  margin-top: 0.68rem;
}
.mr-o-16 {
  margin-right: 0.16rem;
}
.ml-o-16 {
  margin-left: 0.16rem;
}
.mt-o-16 {
  margin-top: 0.16rem;
}

.mt-o-08 {
  margin-top: 0.08rem;
}

.mt-o-40 {
  margin-top: 0.40rem;
}
.mt-o-140 {
  margin-top: 1.40rem;
}
.mt-o-32 {
  margin-top: 0.32rem;
}
.mt-o-56 {
  margin-top: 0.56rem;
}
.mt-o-12 {
  margin-top: 0.12rem;
}
.mt-o-48 {
  margin-top: 0.48rem;
}
.mt-o-24 {
  margin-top: 0.24rem;
}
.mt-o-148 {
  margin-top: 1.48rem;
}
.ml-auto {
  margin-left: auto;
}
.mt-o-80 {
  margin-top: 0.80rem;
}
.mb-o-24 {
  margin-bottom: 0.24rem;
}
.mt-o-8 {
  margin-top: 0.08rem;
}
.mt-o-64 {
  margin-top: 0.64rem;
}
.mt-o-52 {
  margin-top: 0.52rem;
}
.mt-o-20 {
  margin-top: 0.20rem;
}
.mb-o-8 {
  margin-bottom: 0.08rem;
}
.mt-o-4 {
  margin-top: 0.04rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.h-o-2 {
  height: 0.02rem;
}
.h-o-720 {
  height: 7.20rem;
}
.h-o-70 {
  height: 0.70rem;
}
.h-o-620 {
  height: 6.20rem;
}
.h-o-708 {
  height: 7.08rem;
}
.h-o-72 {
  height: 0.72rem;
}
.h-o-680 {
  height: 6.80rem;
}
.h-o-3 {
  height: 0.03rem;
}
.h-o-240 {
  height: 2.40rem;
}
.h-o-1 {
  height: 0.01rem;
}
.w-o-696 {
  width: 6.96rem;
}
.w-o-218 {
  width: 2.18rem;
}
.w-o-280 {
  width: 2.80rem;
}
.w-o-357 {
  width: 3.57rem;
}
.w-o-622 {
  width: 6.22rem;
}
.w-4\/6 {
  width: 66.666667%;
}
.w-full {
  width: 100%;
}
.w-o-700 {
  width: 7rem;
}
.w-o-543 {
  width: 5.43rem;
}
.w-o-36 {
  width: 0.36rem;
}
.w-9\/12 {
  width: 75%;
}
.w-o-692 {
  width: 6.92rem;
}
.w-o-360 {
  width: 3.60rem;
}
.w-o-734 {
  width: 7.34rem;
}
.w-o-610 {
  width: 6.1rem;
}
.w-o-300 {
  width: 3rem;
}
.w-o-400 {
  width: 4rem;
}
.w-o-520 {
  width: 5.20rem;
}
.w-o-580 {
  width: 5.80rem;
}
.w-o-620 {
  width: 6.20rem;
}
.w-o-340 {
  width: 3.40rem;
}
.w-o-315 {
  width: 3.15rem;
}
.w-o-120 {
  width: 1.20rem;
}
.w-o-708 {
  width: 7.08rem;
}
.w-o-614 {
  width: 6.14rem;
}
.cursor-pointer {
  cursor: pointer;
}
.resize-none {
  resize: none;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-o-16 {
  gap: 0.16rem;
}
.gap-o-28 {
  gap: 0.28rem;
}
.overflow-scroll {
  overflow: scroll;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-t {
  border-top-width: 1px;
}
.border-dotted {
  border-style: dotted;
}
.border-input {
  --tw-border-opacity: 1;
  border-color: rgb(220 220 220 / var(--tw-border-opacity));
}
.border-placeholder {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(36 36 36 / var(--tw-bg-opacity));
}
.bg-red {
  --tw-bg-opacity: 1;
  background-color: rgb(239 14 34 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-darkRed {
  --tw-bg-opacity: 1;
  background-color: rgb(178 15 57 / var(--tw-bg-opacity));
}
.bg-gray {
  --tw-bg-opacity: 1;
  background-color: rgb(241 241 241 / var(--tw-bg-opacity));
}
.bg-rose-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 241 242 / var(--tw-bg-opacity));
}
.py-o-8 {
  padding-top: 0.08rem;
  padding-bottom: 0.08rem;
}
.py-o-40 {
  padding-top: 0.40rem;
  padding-bottom: 0.40rem;
}
.py-o-28 {
  padding-top: 0.28rem;
  padding-bottom: 0.28rem;
}
.py-o-4 {
  padding-top: 0.04rem;
  padding-bottom: 0.04rem;
}
.py-o-24 {
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
}

.py-o-80 {
  padding-top: 0.80rem;
  padding-bottom: 0.80rem;
}
.py-o-32 {
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
}
.py-o-12 {
  padding-top: 0.12rem;
  padding-bottom: 0.12rem;
}
.py-o-16 {
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
}
.px-o-24 {
  padding-left: 0.24rem;
  padding-right: 0.24rem;
}
.py-o-20 {
  padding-top: 0.20rem;
  padding-bottom: 0.20rem;
}
.px-o-32 {
  padding-left: 0.32rem;
  padding-right: 0.32rem;
}
.py-o-36 {
  padding-top: 0.36rem;
  padding-bottom: 0.36rem;
}
.pt-o-156 {
  padding-top: 1.56rem;
}
.pb-o-40 {
  padding-bottom: 0.40rem;
}
.pt-o-80 {
  padding-top: 0.80rem;
}
.pr-o-16 {
  padding-right: 0.16rem;
}
.pb-o-120 {
  padding-bottom: 1.20rem;
}
.pt-o-12 {
  padding-top: 0.12rem;
}
.pb-o-180 {
  padding-bottom: 1.80rem;
}
.pb-o-80 {
  padding-bottom: 0.80rem;
}
.pt-o-28 {
  padding-top: 0.28rem;
}
.pb-o-20 {
  padding-bottom: 0.20rem;
}
.pt-o-40 {
  padding-top: 0.40rem;
}
.text-center {
  text-align: center!important;
}
.text-md {
  font-size: 13.02083vw;
}
.text-16 {
  font-size: 0.16rem;
}
.text-21 {
  font-size: 0.21rem;
}
.text-26 {
  font-size: 0.26rem;
}
.text-28 {
  font-size: 0.28rem;
}
.text-35 {
  font-size: 0.35rem;
}
.text-32 {
  font-size: 0.32rem;
}
.text-60 {
  font-size: 0.60rem;
}
.text-27 {
  font-size: 0.27rem;
}
.text-23 {
  font-size: 0.23rem;
}
.text-30 {
  font-size: 0.30rem;
}
.text-50 {
  font-size: 0.50rem;
}
.text-22 {
  font-size: 0.22rem;
}
.text-45 {
  font-size: 0.45rem;
}
.text-33 {
  font-size: 0.33rem;
}
.text-42 {
  font-size: 0.42rem;
}
.text-40 {
  font-size: 0.40rem;
}
.text-24 {
  font-size: 0.24rem;
}
.text-36 {
  font-size: 0.36rem;
}
.text-46 {
  font-size: 0.46rem;
}
.text-37 {
  font-size: 0.37rem;
}
.text-34 {
  font-size: 0.34rem;
}
.text-20 {
  font-size: 0.20rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.leading-o-18 {
  line-height: 1.8;
}
.leading-o-20 {
  line-height: 2;
}
.leading-o-16 {
  line-height: 1.6;
}
.leading-none {
  line-height: 1;
}
.tracking-o-150 {
  letter-spacing: 0.15em;
}
.tracking-o-50 {
  letter-spacing: 0.05em;
}
.tracking-o-75 {
  letter-spacing: 0.075em;
}
.tracking-o-25 {
  letter-spacing: 0.025em;
}
.tracking-o-100 {
  letter-spacing: 0.100em;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-darkRed {
  --tw-text-opacity: 1;
  color: rgb(178 15 57 / var(--tw-text-opacity));
}
.text-red {
  --tw-text-opacity: 1;
  color: rgb(239 14 34 / var(--tw-text-opacity));
}
.text-yellow {
  --tw-text-opacity: 1;
  color: rgb(255 246 109 / var(--tw-text-opacity));
}
.text-pink {
  --tw-text-opacity: 1;
  color: rgb(255 219 228 / var(--tw-text-opacity));
}
.text-placeholder {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.opacity-0 {
  opacity: 0;
}
.duration-200 {
  transition-duration: 200ms;
}



html{
  /* ベースフォント */
  font-family: 'Noto Sans JP', sans-serif;
  color: #242424;
  scroll-behavior: smooth;
}

input::-moz-placeholder {
  color: #9ca3af;
}

input:-ms-input-placeholder {
  color: #9ca3af;
}

input::placeholder {
  color: #9ca3af;
}

textarea::-moz-placeholder {
  color: #9ca3af;
}

textarea:-ms-input-placeholder {
  color: #9ca3af;
}

textarea::placeholder {
  color: #9ca3af;
}

.keyv_bg{
  background: url(../images/keyv_bg.png) no-repeat top center/cover;
}

.cta_btn_arrow{
  position: relative;
}

.cta_btn_arrow::after{
  content: "";
  position: absolute;
  border-left: solid 0.12rem #fff;
  border-top: solid 0.12rem transparent;
  border-bottom: solid 0.12rem transparent;
  right: 0.4rem;
  top: 43%;
}

.about01_map_bg{
  background: url(../images/about01_bg.png) no-repeat center top/cover,#f1f1f1;
}

.about02_map_bg{
  background: url(../images/about02_bg.png.png) no-repeat center top/cover,#f1f1f1;
}

.cta_tel_bg{
  background: url(../images/cta_bg.png) no-repeat center top/cover;
}

.voice_bg{
  background: url(../images/voice_head_bg.png) no-repeat center top /4rem;
}

.plan_arrow{
  position: relative;
}

.plan_arrow::before{
  position: absolute;
  content: "";
  background: url(../images/plan_arrow.png) no-repeat left top/contain;
  width: 0.5rem;
  height: 0.5rem;
  top: 0;
}

.catch_bg{
  background: url(../images/catch_bg.png) no-repeat center top/cover;
}

.catch_arrow{
  position: relative;
}

.catch_arrow::after{
  content: "";
  position: absolute;
  background: url(../images/catch_arrow.png) no-repeat center top/contain;
  width: 2.4rem;
  height: 0.8rem;
  left: calc(50% - 1.2rem);
  bottom: -0.4rem;
}

.form_title_arrow{
  position: relative;
}

.form_title_arrow::after{
  position: absolute;
  content: "";
  border-top: solid 0.16rem #242424;
  border-left: solid 0.16rem transparent;
  border-right: solid 0.16rem transparent;
  left: calc(50% - 0.08rem);
  bottom: -0.14rem;
}

.submit_arrow{
  position: relative;
}

.submit_arrow::after{
  position: absolute;
  content: "▼";
  font-size: 0.2rem;
  transform: rotate(-90deg);
  right: 0.28rem;
  top: 0.32rem;
}

/* 光らせるためのstyle */
.shine{
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
/* 光の疑似要素 */
.shine::before{
  content: "";
  -webkit-animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
          animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
}
/* 光の動き */
@-webkit-keyframes shine{
  0% {
    left: -160%;
    opacity: 0;
  }
  70% {
    left: -160%;
    opacity: 0.5;
  }
  71% {
    left: -160%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
@keyframes shine{
  0% {
    left: -160%;
    opacity: 0;
  }
  70% {
    left: -160%;
    opacity: 0.5;
  }
  71% {
    left: -160%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}

/* .textCheck:valid {
  border: solid 0.01rem #3cb371;
} */

.selectbox_check{
  position: relative;
}

.selectbox_check::after{
  position: absolute;
  content: "▼";
  font-size: 0.14rem;
  right: 0.16rem;
  top: 38%;
}


@media screen and (min-width: 768px){
  .keyv_bg{
    background: url(../images/keyv_bg_pc.png) no-repeat top center/cover;
  }
  .about01_map_bg{
    background: url(../images/about01_bg_pc.png) no-repeat center top/cover,#f1f1f1;
  }
  .about02_map_bg{
    background: url(../images/about02_bg_pc.png) no-repeat center top/cover,#f1f1f1;
  }
  .cta_tel_bg{
    background: url(../images/cta_bg_pc.png) no-repeat center top/cover;;
  }
  .voice_bg{
  background: url(../images/voice_head_bg_pc.png) no-repeat center top /2.2rem;
  }
  .plan_arrow::before{
    position: absolute;
    content: "";
    background: url(../images/plan_arrow.png) no-repeat left top/contain;
    width: 0.28rem;
    height: 0.28rem;
    top: 0;
  }
  .catch_bg{
    background: url(../images/catch_bg_pc.png) no-repeat center top/cover;
  }
  .selectbox_check::after{
    font-size: 0.14rem;
    right: 0.08rem;
    top: 32%;
  }
  .cta_btn_arrow::after{
    content: "";
    position: absolute;
    border-left: solid 0.12rem #fff;
    border-top: solid 0.12rem transparent;
    border-bottom: solid 0.12rem transparent;
    right: 0.4rem;
    top: 40%;
  }
}


@media (min-width: 768px) {

  .md\:sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .md\:top-0 {
    top: 0px;
  }

  .md\:-top-o-32 {
    top: -0.32rem;
  }

  .md\:right-0 {
    right: 0px;
  }

  .md\:-bottom-o-28 {
    bottom: -0.28rem;
  }

  .md\:right-o-60 {
    right: 0.60rem;
  }

  .md\:bottom-o-20 {
    bottom: 0.20rem;
  }

  .md\:z-50 {
    z-index: 50;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:my-o-8 {
    margin-top: 0.08rem;
    margin-bottom: 0.08rem;
  }

  .md\:ml-0 {
    margin-left: 0px;
  }

  .md\:mt-o-40 {
    margin-top: 0.40rem;
  }

  .md\:mt-o-24 {
    margin-top: 0.24rem;
  }

  .md\:mt-o-32 {
    margin-top: 0.32rem;
  }

  .md\:mt-o-80 {
    margin-top: 0.80rem;
  }

  .md\:mt-o-20 {
    margin-top: 0.20rem;
  }

  .md\:mt-o-64 {
    margin-top: 0.64rem;
  }

  .md\:mt-o-16 {
    margin-top: 0.16rem;
  }

  .md\:-mt-o-180 {
    margin-top: -1.80rem;
  }
  
  .md\:-mt-o-200 {
    margin-top: -2.00rem;
  }

  .md\:-mt-o-40 {
    margin-top: -0.40rem;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:-mt-o-88 {
    margin-top: -0.88rem;
  }

  .md\:-mt-o-208 {
    margin-top: -2.08rem;
  }

  .md\:-mt-o-140 {
    margin-top: -1.40rem;
  }
  
  .md\:-mt-o-160 {
    margin-top: -1.60rem;
  }

  .md\:mr-0 {
    margin-right: 0px;
  }

  .md\:mt-o-8 {
    margin-top: 0.08rem;
  }

  .md\:mt-o-12 {
    margin-top: 0.12rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-o-48 {
    margin-top: 0.48rem;
  }

  .md\:mr-o-24 {
    margin-right: 0.24rem;
  }

  .md\:block {
    display: block;
  }

  .md\:inline-block {
    display: inline-block;
  }

  .md\:inline {
    display: inline;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-o-430 {
    height: 4.30rem;
  }

  .md\:h-o-440 {
    height: 4.40rem;
  }

  .md\:h-o-480 {
    height: 4.80rem;
  }

  .md\:h-o-540 {
    height: 5.40rem;
  }

  .md\:h-o-40 {
    height: 0.40rem;
  }

  .md\:h-o-180 {
    height: 1.80rem;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:w-o-1448 {
    width: 14.48rem;
  }

  .md\:w-initial {
    width: initial;
  }

  .md\:w-o-692 {
    width: 6.92rem;
  }

  .md\:w-o-1090 {
    width: 10.90rem;
  }

  .md\:w-o-1040 {
    width: 10.40rem;
  }

  .md\:w-o-500 {
    width: 5rem;
  }

  .md\:w-o-1000 {
    width: 10rem;
  }

  .md\:w-o-1368 {
    width: 13.68rem;
  }

  .md\:w-o-400 {
    width: 4rem;
  }

  .md\:w-o-648 {
    width: 6.48rem;
  }

  .md\:w-o-600 {
    width: 6rem;
  }

  .md\:w-o-30 {
    width: 0.30rem;
  }

  .md\:w-o-780 {
    width: 7.80rem;
  }

  .md\:w-o-560 {
    width: 5.60rem;
  }

  .md\:w-o-420 {
    width: 4.20rem;
  }

  .md\:w-o-580 {
    width: 5.80rem;
  }

  .md\:w-o-1269 {
    width: 12.69rem;
  }

  .md\:w-o-1200 {
    width: 12rem;
  }

  .md\:w-o-1100 {
    width: 11rem;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-o-480 {
    width: 4.80rem;
  }

  .md\:w-o-150 {
    width: 1.50rem;
  }

  .md\:w-o-220 {
    width: 2.20rem;
  }

  .md\:w-o-830 {
    width: 8.30rem;
  }

  .md\:w-o-920 {
    width: 9.20rem;
  }

  .md\:w-o-440 {
    width: 4.40rem;
  }

  .md\:w-o-380 {
    width: 3.80rem;
  }

  .md\:w-o-24 {
    width: 0.24rem;
  }

  .md\:w-o-720 {
    width: 7.20rem;
  }

  .md\:w-o-264 {
    width: 2.64rem;
  }

  .md\:w-o-1036 {
    width: 10.36rem;
  }

  .md\:scale-125 {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:flex-wrap {
    flex-wrap: wrap;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-o-28 {
    gap: 0.28rem;
  }

  .md\:gap-o-64 {
    gap: 0.64rem;
  }

  .md\:gap-o-80 {
    gap: 0.80rem;
  }

  .md\:gap-o-8 {
    gap: 0.08rem;
  }

  .md\:gap-o-20 {
    gap: 0.20rem;
  }

  .md\:whitespace-nowrap {
    white-space: nowrap;
  }

  .md\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }

  .md\:py-o-24 {
    padding-top: 0.24rem;
    padding-bottom: 0.24rem;
  }

  .md\:py-o-32 {
    padding-top: 0.32rem;
    padding-bottom: 0.32rem;
  }

  .md\:py-o-8 {
    padding-top: 0.08rem;
    padding-bottom: 0.08rem;
  }

  .md\:py-o-12 {
    padding-top: 0.12rem;
    padding-bottom: 0.12rem;
  }

  .md\:pt-o-40 {
    padding-top: 0.40rem;
  }

  .md\:pb-o-40 {
    padding-bottom: 0.40rem;
  }

  .md\:pb-o-80 {
    padding-bottom: 0.80rem;
  }

  .md\:pt-o-16 {
    padding-top: 0.16rem;
  }

  .md\:pb-o-120 {
    padding-bottom: 1.20rem;
  }

  .md\:pb-o-160 {
    padding-bottom: 1.60rem;
  }

  .md\:text-center {
    text-align: center;
  }

  .md\:text-pc {
    font-size: 6.51042vw;
  }

  .md\:text-16 {
    font-size: 0.16rem;
  }

  .md\:text-20 {
    font-size: 0.20rem;
  }

  .md\:text-26 {
    font-size: 0.26rem;
  }

  .md\:text-40 {
    font-size: 0.40rem;
  }

  .md\:text-28 {
    font-size: 0.28rem;
  }

  .md\:text-19 {
    font-size: 0.19rem;
  }

  .md\:text-30 {
    font-size: 0.30rem;
  }

  .md\:text-24 {
    font-size: 0.24rem;
  }

  .md\:text-22 {
    font-size: 0.22rem;
  }

  .md\:text-34 {
    font-size: 0.34rem;
  }

  .md\:text-14 {
    font-size: 0.14rem;
  }

  .md\:text-18 {
    font-size: 0.18rem;
  }

  .md\:text-23 {
    font-size: 0.23rem;
  }

  .md\:leading-o-20 {
    line-height: 2;
  }

  .md\:shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}


@media (max-width: 767px) {

  .sp\:left-0 {
    left: 0px;
  }

  .sp\:right-0 {
    right: 0px;
  }

  .sp\:mt-o-120 {
    margin-top: 1.20rem;
  }

  .sp\:mt-o-164 {
    margin-top: 1.64rem;
  }

  .sp\:mt-o-96 {
    margin-top: 0.96rem;
  }

  .sp\:mt-o-40 {
    margin-top: 0.40rem;
  }

  .sp\:mt-o-20 {
    margin-top: 0.20rem;
  }
  
  .sp\:mt-o-10 {
    margin-top: 0.10rem;
  }
  
  .sp\:block {
    display: block;
  }

  .sp\:hidden {
    display: none;
  }

  .sp\:whitespace-nowrap {
    white-space: nowrap;
  }

  .sp\:py-o-40 {
    padding-top: 0.40rem;
    padding-bottom: 0.40rem;
  }
}


/*2023.02.16追加*/

.contentsBox-mb{width:100%; margin:0 auto 30px auto!important;padding: 0 0 10px 0!important; }

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




/*2023.08.28追加*/
/*バイリンガル---ロゴリンク*/	
.bilingual-logolink {
    margin: 0 auto 30px auto!important;
    padding: 20px;
    background: #eeeeee;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
	
	-webkit-flex-direction:row;
	-moz-flex-direction:row;
	-ms-flex-direction:row;
	-o-flex-direction:row;
	flex-direction:row;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	}
	
/*ボックス子*/	
@media (min-width: 1200px) {.bilingual-logolink .box{width: calc(33.3333333% - 20px) ;margin:0 10px;padding: 0px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;text-align:center!important;}}
@media (min-width: 992px) and (max-width: 1199px){.bilingual-logolink .box{width: calc(33.3333333% - 20px) ;margin:0 10px;padding: 10px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;text-align:center!important;}}
@media (min-width: 768px) and (max-width: 991px) {.bilingual-logolink .box{width: calc(100% - 0px) ;margin:10px 0;padding: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;text-align:center!important;}}
@media (max-width: 767px) {.bilingual-logolink .box{width: calc(100% - 0px) ;margin:10px 0;padding: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;text-align:center!important;}}

.bilingual-logolink img{width:100%;}
.bilingual-logolink p{margin: 0 auto!important;text-align:center!important;}
@media (min-width: 1200px) {.bilingual-logolink p{font-size: 80%!important;}}
@media (min-width: 992px) and (max-width: 1199px){.bilingual-logolink p{font-size: 80%!important;}}
@media (min-width: 768px) and (max-width: 991px) {.bilingual-logolink p{font-size: 140%!important;}}
@media (max-width: 767px) {.bilingual-logolink p{font-size: 140%!important;}}


.bilingual-partnership img{width:100%;}

/*バイリンガル---キャッチArea*/	
.bilingual-catchArea{
    margin: 50px auto 30px auto;
    padding: 0;
    position: relative;
    width: 100%;
    }
    
.bilingual-catchArea img{
    width: 100%;
    }

.bilingual-catchArea .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  margin: 0 auto;
  color: #0f284c;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
  -1px 1px 0 #FFF,  1px -1px 0 #FFF,
  1px 0 0 #FFF, -1px  0 0 #FFF,
  0 1px 0 #FFF,  0 -1px 0 #FFF;
}

.bilingual-catchArea::before{
     content: "";
     width: 0;
     height: 0;
     border-left: 50px solid transparent;
     border-right: 50px solid transparent;
     border-top: 50px solid #0f284c;
     position: absolute;
     transform: translateX(-50%);
     -webkit-transform: translateX(-50%);
     -ms-transform: translateX(-50%);
     top: 0px;
     left:50%;
     margin: -30px 0 -20px 0;
    }


/* -------------------------------------------------------------------------- */
/*バナー画像*/
/* -------------------------------------------------------------------------- */
.bannerContents-Area{margin:0px auto 30px auto;display: block;padding:0;text-align: center!important;}
.bannerContents-Area img{width: 100%;margin:0 auto!important;padding:0;text-align: center!important;}

@media (min-width: 992px){.bannerContents-Area{width: 90%;}}
@media (max-width:991px){.bannerContents-Area{width: 95%;}}



/*テキストスタイル　ミニアム(小)*/
@media (min-width:992px){.p-min{margin: 0 0 10px 0;font-size: 90%!important;line-height: 1.2!important; text-align: justify;text-justify: inter-ideograph;-ms-text-justify: inter-ideograph;-ms-text-align: justify;clear: both;}}
@media (max-width:991px){.p-min{margin: 0 0 10px 0;font-size: 150%!important;line-height: 1.2!important; text-align: justify;text-justify: inter-ideograph;-ms-text-justify: inter-ideograph;-ms-text-align: justify;clear: both;}}
.p-min:last-child{margin: 0 0 0px 0;}





/* -------------------------------------------------------------------------- */
/*リストテキスト*/
/* -------------------------------------------------------------------------- */
/*カウントアイコン*/
ul.listTxt-count {margin:0 0 25px 25px;padding: 0px;display: block;}
ul.listTxt-count li{margin: 0 0 7px 0;padding: 0 0 0 5px;list-style-type: decimal;word-break: break-all;font-feature-settings : "palt";}
@media (min-width:992px){ul.listTxt-count li{font-size: 120%!important;line-height: 1.3!important; text-align: justify;text-justify: inter-ideograph;-ms-text-justify: inter-ideograph;-ms-text-align: justify;}}
@media (max-width:991px){ul.listTxt-count li{font-size: 190%!important;line-height: 1.3!important; text-align: justify;text-justify: inter-ideograph;-ms-text-justify: inter-ideograph;-ms-text-align: justify;}}


/*チェックアイコン*/
ul.listTxt-check {margin:0;padding: 0px;display: block;}
ul.listTxt-check li{margin: 0 0 7px 0;padding: 0 0 0 20px;list-style-type: none;position: relative;font-feature-settings : "palt";}
ul.listTxt-check li:before {content:"\f14a";font-family: "fontawesome";position: absolute;left: 0px;top:1px;word-break: break-all;}
@media (min-width:992px){ul.listTxt-check li{font-size: 120%!important;line-height: 1.3!important; text-align: justify;text-justify: inter-ideograph;-ms-text-justify: inter-ideograph;-ms-text-align: justify;}}
@media (max-width:991px){ul.listTxt-check li{font-size: 190%!important;line-height: 1.3!important; text-align: justify;text-justify: inter-ideograph;-ms-text-justify: inter-ideograph;-ms-text-align: justify;}}


/* -------------------------------------------------------------------------- */
/*リスキリング支援事業*/
/* -------------------------------------------------------------------------- */
.reskilling_area{
    margin:40px auto 0 auto;
    padding: 20px;
    width: 100%;
    border: 3px #e50112 solid;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
@media (min-width:992px){.reskilling_area{padding:20px;}}
@media (max-width:991px){.reskilling_area{padding:10px;}}

.reskilling_area .inner{
    margin:0 0 30px 0;
    padding:0;
    width: 100%;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
    
.reskilling_area .lineBox{
    margin:0;
    padding:10px;
    width: 100%;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px #cccccc dotted;
    }
    
.reskilling_area .grayBox{
    margin:0;
    padding:10px;
    width: 100%;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #eeeeee;
    }

/*見出しh3ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.reskilling_area h3{
    margin:0 auto 10px auto;
    background: #e50112;
    color: #ffffff;
    padding: 10px;
    font-weight: bold;
}
@media (min-width:992px){.reskilling_area h3{font-size: 150%;}}
@media (max-width:991px){.reskilling_area h3{font-size: 210%;}}

/*見出しh4ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.reskilling_area h4{
    margin:0 auto 10px auto;
    border-bottom: 2px #222222 solid;
    color: #222222;
    padding: 0 0 5px 0;
    font-weight: bold;
    line-height: 1.2;
}
@media (min-width:992px){.reskilling_area h4{font-size: 130%;}}
@media (max-width:991px){.reskilling_area h4{font-size: 190%;}}

/*見出しh5ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.reskilling_area h5{text-align:center;margin:0 0 10px 0;padding:0px;color:#e50012;font-weight: bold;position:relative;}
.reskilling_area h5:before{content: "";margin: 0;border: 1px solid #e50012;height: 30px; top: -5px;transform: translateY(-50%);-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);position:absolute;transform: rotate(-20deg);}
.reskilling_area h5:after{content: "";margin: 0;border: 1px solid #e50012;height: 30px;top: -5px;transform: translateY(-50%);-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);position:absolute;transform: rotate(20deg);}
.reskilling_area h5 span{margin:3px auto 0 auto;padding:7px; display: block;color:#333333;font-weight:bold;text-decoration: underline;}

@media (min-width: 992px){.reskilling_area h5{font-size: 150%;line-height: 1.0;}.reskilling_area h5 span{font-size: 100%;width: 60%;}.reskilling_area h5:before{left: 25%;}.reskilling_area h5:after{right:25%;}}
@media (max-width:991px){.reskilling_area h5{font-size: 220%;line-height: 1.0;}.reskilling_area h5 span{font-size: 100%;width: 100%;}.reskilling_area h5:before{left: 2px;}.reskilling_area h5:after{right: 2px;}}


/*リスキリングロゴーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width:992px){.reskilling_area .logo img{margin: 0 0 10px 20px;padding: 0;width: 250px;float: right;}}
@media (max-width:991px){.reskilling_area .logo img{margin: 0 0 10px 0;padding: 0;width: 100%;}}


/*テキストーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.reskilling_area .inner p{
    margin:0 auto 10px auto;
    padding: 0;
    text-align: justify;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph;
    -ms-text-align: justify;    
}
@media (min-width:992px){.reskilling_area .inner p{font-size: 120%;line-height: 1.4;}}
@media (max-width:991px){.reskilling_area .inner p{font-size: 190%;line-height: 1.5;}}

/*margin打消しーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.reskilling_area .inner p:last-child{margin:0 auto 0 auto;}
.reskilling_area .inner:last-child{margin:0 0 0 0;}

/*リンクーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.reskilling_area a:link   {text-decoration: none;display: block;}
.reskilling_area a:visited{text-decoration: none;display: block;}
.reskilling_area a:active {text-decoration: none;display: block;}
.reskilling_area a:hover  {text-decoration: none;display: block;filter: alpha(opacity=50);-moz-opacity:0.50;opacity:0.50;}





/* -------------------------------------------------------------------------- */
/*テキストリンクボタンエリア(2column)*/
/* -------------------------------------------------------------------------- */
.linkbtnArea_2column{
    margin: 0!important;
    padding: 0!important;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;

	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction:row;
	-moz-flex-direction:row;
	-ms-flex-direction:row;
	-o-flex-direction:row;
	flex-direction:row;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	}
	
.linkbtnArea_2column a:hover{filter: alpha(opacity=50);-moz-opacity:0.50;opacity:0.50;}

@media (min-width: 992px){
    .linkbtnArea_2column .box{
	    width: calc(50% - 10px);
	    margin: 5px;
	    padding: 0;
	    -webkit-box-sizing: border-box;
	    -moz-box-sizing: border-box;
	    box-sizing: border-box;
	    }}
@media (max-width:991px){
    .linkbtnArea_2column .box{
	    width: calc(100% - 10px);
	    margin: 5px;
	    padding: 0;
	    -webkit-box-sizing: border-box;
	    -moz-box-sizing: border-box;
	    box-sizing: border-box;
	    }}



/* -------------------------------------------------------------------------- */
/*DIV型リンクボタン*/
/* -------------------------------------------------------------------------- */
/*DIV型リンクボタン　カラー：グレーーーーーーーーーーーーーーーーーーーーーーー*/
.common-noneActiveButton{
    margin:5px 0;
    width: 100%;
    border:1px solid #dddddd;
    box-shadow:inset 0px 1px 0px 0px #e6e6e6;
	background:linear-gradient(to bottom, #cccccc 5%, #b3b3b3 100%);
	background-color:#cccccc;
    text-align: center;
    border-radius:3px;
    color: #ffffff;
    }
    
@media (min-width: 992px){
    .common-noneActiveButton{font-size: 1.2em;line-height:1.2;padding:10px 0;}
    .common-grayButton   a{font-size: 120%;line-height:1.2;padding:10px 0;}
    .common-blueButton   a{font-size: 120%;line-height:1.2;padding:10px 0;}
    .common-redButton    a{font-size: 120%;line-height:1.2;padding:10px 0;}
    .common-greenButton  a{font-size: 120%;line-height:1.2;padding:10px 0;}
    .common-purpleButton a{font-size: 120%;line-height:1.2;padding:10px 0;}
    .common-orangeButton a{font-size: 120%;line-height:1.2;padding:10px 0;}
    .common-yellowButton a{font-size: 120%;line-height:1.2;padding:10px 0;}
    }
    
@media (max-width:991px){
    .common-noneActiveButton{font-size: 220%;line-height:1.2;padding:15px 0;}
    .common-grayButton   a{font-size: 220%;line-height:1.2;padding:15px 0;}
    .common-blueButton   a{font-size: 220%;line-height:1.2;padding:15px 0;}
    .common-redButton    a{font-size: 220%;line-height:1.2;padding:15px 0;}
    .common-greenButton  a{font-size: 220%;line-height:1.2;padding:15px 0;}
    .common-purpleButton a{font-size: 220%;line-height:1.2;padding:15px 0;}
    .common-orangeButton a{font-size: 220%;line-height:1.2;padding:15px 0;}
    .common-yellowButton a{font-size: 220%;line-height:1.2;padding:15px 0;}
    }


/*DIV型リンクボタン　カラー：グレーーーーーーーーーーーーーーーーーーーーーーー*/
.common-grayButton{
    margin:5px 0;
    width: 100%;
    border:1px solid #808080;
    text-shadow:0px 1px 0px #f2f2f2;
    box-shadow:inset 0px 1px 0px 0px #e6e6e6;
	background:linear-gradient(to bottom, #cccccc 5%, #b3b3b3 100%);
	background-color:#cccccc;
    text-align: center;
    border-radius:3px;
    }

.common-grayButton a:link   {color:#000000;text-decoration: none;display: block;}
.common-grayButton a:visited{color:#000000;text-decoration: none;display: block;}
.common-grayButton a:active {color:#000000;text-decoration: none;display: block;}
.common-grayButton a:hover  {color:#000000; text-decoration:none;background:linear-gradient(to bottom, #b3b3b3 5%, #cccccc 100%);background-color:#b3b3b3; display:block;}


/*DIV型リンクボタン　カラー：イエローーーーーーーーーーーーーーーーーーーーーーー*/
.common-yellowButton{
    margin:5px 0;
    width: 100%;
    border:1px solid #d3d30f;
    text-shadow:0px 1px 0px #fffdd4;
    box-shadow:inset 0px 1px 0px 0px #fffc8d;
	background:linear-gradient(to bottom, #ffff00 5%, #ffdb27 100%);
	background-color:#ffff00;
    text-align: center;
    border-radius:3px;
    }

.common-yellowButton a:link   {color:#000000;text-decoration: none;display: block;}
.common-yellowButton a:visited{color:#000000;text-decoration: none;display: block;}
.common-yellowButton a:active {color:#000000;text-decoration: none;display: block;}
.common-yellowButton a:hover  {color:#000000; text-decoration:none;background:linear-gradient(to bottom, #ffdb27 5%, #ffff00 100%);background-color:#ffdb27; display:block;}


/*DIV型リンクボタン　カラー：ブルーーーーーーーーーーーーーーーーーーーーーーーー*/
.common-blueButton{
    margin:5px 0;
    width: 100%;
    border:1px solid #124d77;
    text-shadow:0px 1px 0px #154682;
    box-shadow:inset 0px 1px 0px 0px #54a3f7;
	background:linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
	background-color:#007dc1;
    text-align: center;
    border-radius:3px;
    }

.common-blueButton a:link   {color:#ffffff;text-decoration: none;display: block;}
.common-blueButton a:visited{color:#ffffff;text-decoration: none;display: block;}
.common-blueButton a:active {color:#ffffff;text-decoration: none;display: block;}
.common-blueButton a:hover  {color:#ffffff; text-decoration:none;background:linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);background-color:#0061a7; display:block;}


/*DIV型リンクボタン　カラー：レッドーーーーーーーーーーーーーーーーーーーーーーーー*/
.common-redButton{
    margin:5px 0;
    width: 100%;
    border:1px solid #ad0e29;
    text-shadow:0px 1px 0px #c1272d;
    box-shadow:inset 0px 1px 0px 0px #ff7676;
	background:linear-gradient(to bottom, #ed1c24 5%, #bc1931 100%);
	background-color:#bc1931;
    text-align: center;
    border-radius:3px;
    }

.common-redButton a:link   {color:#ffffff;text-decoration: none;display: block;}
.common-redButton a:visited{color:#ffffff;text-decoration: none;display: block;}
.common-redButton a:active {color:#ffffff;text-decoration: none;display: block;}
.common-redButton a:hover  {color:#ffffff; text-decoration:none;background:linear-gradient(to bottom, #bc1931 5%, #ed1c24 100%);background-color:#bc1931; display:block;}


/*DIV型リンクボタン　カラー：グリーンーーーーーーーーーーーーーーーーーーーーーーーー*/
.common-greenButton{
    margin:5px 0;
    width: 100%;
    border:1px solid #006837;
    text-shadow:0px 1px 0px #2d7a54;
    box-shadow:inset 0px 1px 0px 0px #52a05a;
	background:linear-gradient(to bottom, #23a35d 5%, #00602b 100%);
	background-color:#00602b;
    text-align: center;
    border-radius:3px;
    }

.common-greenButton a:link   {color:#ffffff;text-decoration: none;display: block;}
.common-greenButton a:visited{color:#ffffff;text-decoration: none;display: block;}
.common-greenButton a:active {color:#ffffff;text-decoration: none;display: block;}
.common-greenButton a:hover  {color:#ffffff; text-decoration:none;background:linear-gradient(to bottom, #00602b 5%,  100%);background-color:#00602b; display:block;}


/*DIV型リンクボタン　カラー：オレンジーーーーーーーーーーーーーーーーーーーーーーーー*/
.common-orangeButton{
    margin:5px 0;
    width: 100%;
    border:1px solid #f25220;
    text-shadow:0px 1px 0px #f23420;
    box-shadow:inset 0px 1px 0px 0px #f2a620;
	background:linear-gradient(to bottom, #f4901e 5%, #f23f20 100%);
	background-color:#f23f20;
    text-align: center;
    border-radius:3px;
    }

.common-orangeButton a:link   {color:#ffffff;text-decoration: none;display: block;}
.common-orangeButton a:visited{color:#ffffff;text-decoration: none;display: block;}
.common-orangeButton a:active {color:#ffffff;text-decoration: none;display: block;}
.common-orangeButton a:hover  {color:#ffffff; text-decoration:none;background:linear-gradient(to bottom, #f23f20 5%, #f4901e 100%);background-color:#f23f20; display:block;}


/*DIV型リンクボタン　カラー：パープルーーーーーーーーーーーーーーーーーーーーーーーー*/
.common-purpleButton{
    margin:5px 0;
    width: 100%;
    border:1px solid #9327a3;
    text-shadow:0px 1px 0px #5409c1;
    box-shadow:inset 0px 1px 0px 0px #b72ab7;
	background:linear-gradient(to bottom, #8b24ba 5%, #62006d 100%);
	background-color:#62006d;
    text-align: center;
    border-radius:3px;
    }

.common-purpleButton a:link   {color:#ffffff;text-decoration: none;display: block;}
.common-purpleButton a:visited{color:#ffffff;text-decoration: none;display: block;}
.common-purpleButton a:active {color:#ffffff;text-decoration: none;display: block;}
.common-purpleButton a:hover  {color:#ffffff; text-decoration:none;background:linear-gradient(to bottom, #62006d 5%, #8b24ba 100%);background-color:#62006d; display:block;}


