@charset "UTF-8";
/* Scss Document */
/* reset
============================================================*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - https://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

html {
  overflow-x: hidden;
}

::selection {
  background: #8ecb14;
  color: #fff;
}

::-moz-selection {
  background: #8ecb14;
  color: #fff;
}

body {
  line-height: 1.4;
  position: relative;
  text-align: left;
  font-size: 16px;
  color: #3c3c3c;
  background: #fff;
  transform-origin: 0 0;
  hyphens: manual;
}

p {
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  font-weight: 400;
}

img, p {
  vertical-align: bottom;
}

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

ul {
  list-style: none;
}

ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

ol ol {
  padding-left: 1em;
}

ol li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}

ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  /* 以下は自由に装飾... */
  padding-right: 5px;
  color: #b40000;
}

blockquote, q {
  quotes: none;
}

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

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

table th {
  text-align: left;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  font-size: 16px;
}

table td {
  text-align: left;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  font-size: 16px;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #3c3c3c;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-weight: 400;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #3c3c3c;
  opacity: 0.6;
}

a .op:hover,
a.op:hover,
a:hover img {
  opacity: 0.9;
  -webkit-transition: all .2s;
  transition: all .2s;
}

a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
#wap {
  width: 100%;
  max-width: 2300px;
  margin: auto;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.txt_center {
  text-align: center;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.row {
  align-items: flex-start;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mt120 {
  margin-top: 120px;
}

.sp_block {
  display: none !important;
}

.position_center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
}

.position_center_y {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  /* Safari用 */
  transform: translate(0, -50%);
}

.position_center_x {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0) !important;
  /* Safari用 */
  transform: translate(-50%, 0) !important;
}

hr {
  margin: 0 auto;
}

i {
  position: relative;
  top: 6px;
}

.container {
  margin-left: auto;
  margin-right: auto;
}

.lineheight_16 {
  line-height: 1.6;
}

.lineheight_2 {
  line-height: 2;
}

.le_sp02,
.le_sp02 span {
  letter-spacing: 0.2em;
}

ruby > rt {
  font-size: 30%;
}

/************************** フォーム **************************/
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
  outline: none;
}

input[type="email"],
input[type="text"],
textarea {
  -webkit-appearance: none;
}

input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.6;
  transition: 0.3s;
  color: #fff !important;
}

form table {
  width: 80%;
  margin: auto;
}

form table th {
  padding: 2% 3% 2% 0;
  width: 23%;
  vertical-align: top;
  font-weight: bold;
}

form table td {
  border: none;
  padding-left: 50px;
  width: 63%;
}

form textarea:focus,
form input:focus {
  outline: none;
}

.red {
  background-color: #C7081B;
  color: #fff;
  font-size: 12px;
  padding: 2px 7px;
  margin-right: 10px;
  border-radius: 3px;
  margin-left: 20px;
}

.con_frame01 {
  width: 100%;
  border: 1px solid #888;
  height: 40px;
  margin-bottom: 30px;
  padding-left: 10px;
}

.con_frame06 {
  height: 150px;
  width: 100%;
  border: 1px solid #888;
  padding: 10px;
}

textarea,
input {
  font-family: "Noto Sans JP", sans-serif;
  outline: none;
}

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

[type=text] {
  line-height: normal;
}

input[type="button"],
input[type="submit"] {
  cursor: pointer;
  background: none;
}

form .ef01_green i,
form .ef01_og i {
  position: absolute;
  top: 36%;
  right: 5%;
}

form .ef01_green,
form .ef01_og {
  padding: 0;
  position: relative;
}

.form_btn {
  margin-bottom: 10px;
}

/*::    萓九�隕九◆逶ｮ   ::*/
/* Chrome */
::-webkit-input-placeholder {
  color: #999999;
  padding-left: 5px;
  padding-top: 5px;
  line-height: 1em;
}

/* Firefox */
::-moz-placeholder {
  color: #999999;
  padding-left: 5px;
  padding-top: 5px;
  line-height: 1em;
}

/* IE */
:-ms-input-placeholder {
  color: #999999;
  padding-left: 5px;
  padding-top: 5px;
  line-height: 1em;
}

form table td.radio {
  padding-top: 17px;
}

input[type=button],
input[type=submit] {
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: 0.3s;
}

input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
  outline: none;
}

input[type="email"],
input[type="text"],
textarea {
  -webkit-appearance: none;
  background: #fff;
}

textarea,
input[type="email"],
input[type="text"] {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  vertical-align: top;
  width: 100%;
  padding: 25px 10px;
  box-sizing: border-box;
}

textarea:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type=submit]:focus {
  outline: none;
}

input[type=submit] {
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  letter-spacing: 0.1em;
}

input[type=checkbox], input[type=radio] {
  margin-right: 3px;
  position: relative;
  top: 2px;
}

label {
  margin-right: 10px;
}
label span {
  font-size: 18px;
}

/* Chrome */
::-webkit-input-placeholder {
  color: #D6D6D6;
  padding-left: 5px;
  padding-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

/* Firefox */
::-moz-placeholder {
  color: #D6D6D6;
  padding-left: 5px;
  padding-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

/* IE */
:-ms-input-placeholder {
  color: #D6D6D6;
  padding-left: 5px;
  padding-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

/************************** フォント **************************/
strong,
.f_bold,
.f_bold span {
  font-weight: 700;
}

.f_en,
.f_en span {
  font-family: 'Blinker', sans-serif;
  font-weight: 600;
  line-height: 1;
}

.f_10,
.f_10 span {
  font-size: 10px;
}

.f_12,
.f_12 span {
  font-size: 12px;
}

.f_14,
.f_14 span {
  font-size: 14px;
}

.f_16,
.f_16 span {
  font-size: 16px;
}

.f_18,
.f_18 span {
  font-size: 18px;
}

.f_20,
.f_20 span {
  font-size: 20px;
}

.f_21,
.f_21 span {
  font-size: 21px;
}

.f_22,
.f_22 span {
  font-size: 22px;
}

.f_24,
.f_24 span {
  font-size: 24px;
}

.f_26,
.f_26 span {
  font-size: 26px;
}

.f_28,
.f_28 span {
  font-size: 28px;
}

.f_30,
.f_30 span {
  font-size: 30px;
}

.f_32,
.f_32 span {
  font-size: 32px;
}

.f_36,
.f_36 span {
  font-size: 36px;
}

.f_38,
.f_38 span {
  font-size: 38px;
}

.f_40,
.f_40 span {
  font-size: 40px;
}

.f_42,
.f_42 span {
  font-size: 42px;
}

.f_48,
.f_48 span {
  font-size: 48px;
}

.f_56,
.f_56 span {
  font-size: 56px;
}

.f_60,
.f_60 span {
  font-size: 60px;
}

.f_62,
.f_62 span {
  font-size: 62px;
}

.f_64,
.f_64 span {
  font-size: 64px;
}

.f_72,
.f_72 span {
  font-size: 72px;
}

.f_80,
.f_80 span {
  font-size: 80px;
}

.f_100,
.f_100 span {
  font-size: 100px;
}

.f_wh {
  color: #fff;
}
.f_green {
  color: #36B167;
}
.f_blue1 {
  color: #00A0D2;
}
.f_blue2 {
  color: #003E8C;
}



a.f_wh:hover {
  color: #fff;
  opacity: 0.8;
}

.f_gray {
  color: #888888;
}

a.f_gray:hover {
  color: #888888;
  opacity: 0.8;
}

.f_red {
  color: #E70011;
}

.f_blue,
a.f_blue {
  color: #64a3d7;
}

a.f_blue:hover {
  color: #64a3d7 !important;
}

.f_blue02,
a.f_blue02 {
  color: #ebfafa;
}

a.f_blue02:hover {
  color: #ebfafa !important;
}

.f_gr,
a.f_gr {
  color: #8ecb14;
}

a.f_gr:hover {
  color: #8ecb14 !important;
}

.f_pink,
a.f_pink {
  color: #bf4f82;
}

a.f_pink:hover {
  color: #bf4f82 !important;
}

.f_yl,
a.f_yl {
  color: #e7c71c;
}

a.f_yl:hover {
  color: #e7c71c !important;
}

.f_tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/************************** 背景 **************************/
.bg_wh {
  background-color: #fff;
}

.bg_blue {
  background-color: #64a3d7;
}

.bg_gray {
  background-color: #f2f2f2;
}

.bg_yl {
  background-color: #e7c71c;
}

.bg_pink02 {
  background-color: #fff0f7;
}

.bg_bl02 {
  background-color: #ebfafa;
}

.bg_yl02 {
  background-color: #fffbe6;
}

.bg_gr02 {
  background-color: #f8ffec;
}

.bg_inner {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
}

/************************** ライン **************************/
.line01 {
  width: 160px;
  height: 5px;
  background: url("../img/common/line01.svg");
  background-size: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.round {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.round.round_l {
  width: 20px;
  height: 20px;
}
.round.round_gr {
  border: 1px solid #8ecb14;
}
.round.round_bl {
  border: 1px solid #64a3d7;
}
.round.round_pink {
  border: 1px solid #bf4f82;
}
.round.round_yl {
  border: 1px solid #e7c71c;
}

/************************** タイトル **************************/
.sub_ttl01 {
  background: url(../img/service/bg_txt.png) no-repeat;
  background-position: bottom center;
  padding-bottom: 25px;
}

.sub_ttl02 {
  background: url("../img/about/bg_txt01.png") no-repeat;
  background-position: bottom center;
  padding-bottom: 25px;
}

.sub_ttl03 {
  background: url("../img/about/bg_txt02.png") no-repeat;
  background-position: bottom center;
  padding-bottom: 25px;
}

/************************** ボタン **************************/
.btn01 {
  cursor: pointer;
  color: #fff;
  padding: 15px 50px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  transition: .3s;
  display: inline-block;
  background: #fff;
  overflow: hidden;
}
.btn01 input {
  color: #fff;
}
.btn01 span {
  position: relative;
  z-index: 10;
}
.btn01.btn01_gr01 {
  background: #8ecb14;
  border: 1px solid #8ecb14;
}
.btn01.btn01_pink01 {
  background: #bf4f82;
  border: 1px solid #bf4f82;
}
.btn01.btn01_bl01 {
  background: #64a3d7;
  border: 1px solid #64a3d7;
}
.btn01.btn01_yl01 {
  background: #e7c71c;
  border: 1px solid #e7c71c;
}
.btn01.btn01_gr02 {
  color: #8ecb14;
}
.btn01.btn01_pink02 {
  color: #bf4f82;
}
.btn01.btn01_bl02 {
  color: #64a3d7;
}
.btn01.btn01_yl02 {
  color: #e7c71c;
}

.btn01::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.btn01.btn01_gr02::before {
  background: #8ecb14;
  border-radius: 50px;
}

.btn01.btn01_yl02::before {
  background: #e7c71c;
  border-radius: 50px;
}

.btn01.btn01_bl02::before {
  background: #64a3d7;
  border-radius: 50px;
}

.btn01.btn01_pink02::before {
  background: #bf4f82;
  border-radius: 50px;
}

.btn01:hover {
  color: #fff;
  opacity: 1;
}

.btn01.btn01_gr01:hover {
  color: #8ecb14;
}
.btn01.btn01_gr01:hover input {
  color: #8ecb14;
}

.btn01:hover input {
  color: #8ecb14;
}

.btn01.btn01_yl01:hover {
  color: #e7c71c;
}

.btn01.btn01_bl01:hover {
  color: #64a3d7;
}

.btn01.btn01_pink01:hover {
  color: #bf4f82;
}

.btn01:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.btn02 {
  position: relative;
  padding-left: 30px;
}
.btn02::after {
  position: absolute;
  top: 9px;
  left: 0;
  transform: translateX(5px);
  content: '';
  width: 20px;
  height: 1px;
  transform-origin: left top;
  transition: transform .3s;
}
.btn02.btn02_gr::after {
  background: #8ecb14;
}
.btn02:hover::after {
  transform: translateX(15px);
}
.btn02 .round {
  position: relative;
  left: -2px;
}

/************************** 動き **************************/
.arrow_wap .arrow {
  transform: translateX(0px);
  transition: 0.3s;
}
.arrow_wap:hover .arrow {
  transform: translateX(8px);
  transition: 0.3s;
}

.fadein_left {
  opacity: 0;
  transform: translate(80px, 0);
  transition: all 0.8s;
}

.fadein_right {
  opacity: 0;
  transform: translate(-80px, 0);
  transition: all 0.8s;
}

.fadein_bottom {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1.2s;
  overflow: hidden;
}

@media all and (-ms-high-contrast: none) {
  .fadein {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.8s;
}

.fadein:nth-of-type(1) {
  -moz-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
}

.fadein:nth-of-type(2) {
  -moz-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
}

.fadein:nth-of-type(3) {
  -moz-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
}

.fadein:nth-of-type(4) {
  -moz-transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  -ms-transition-delay: 0.4s;
}

.fadein:nth-of-type(5) {
  -moz-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
}

.fadein:nth-of-type(6) {
  -moz-transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  -ms-transition-delay: 0.6s;
}

.fadein:nth-of-type(7) {
  -moz-transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  -ms-transition-delay: 0.7s;
}

.fadein:nth-of-type(8) {
  -moz-transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  -ms-transition-delay: 0.8s;
}

.fadein:nth-of-type(9) {
  -moz-transition-delay: 0.9s;
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  -ms-transition-delay: 0.9s;
}

.fadein:nth-of-type(10) {
  -moz-transition-delay: 1s;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  -ms-transition-delay: 1s;
}

.fuwafuwa:nth-child(odd) {
  -webkit-animation: horizontal1 1s ease-in-out infinite alternate;
}

.fuwafuwa:nth-child(even) {
  -webkit-animation: horizontal2 1s ease-in-out infinite alternate;
}

.fuwafuwa span {
  text-decoration: none;
  display: block;
  -webkit-animation: vertical 1s ease-in-out infinite alternate;
}

.fuwafuwa:nth-child(1) span {
  -webkit-animation-duration: 1.1s;
}

.fuwafuwa:nth-child(2) span {
  -webkit-animation-duration: 1.3s;
}

.fuwafuwa:nth-child(3) span {
  -webkit-animation-duration: 1.5s;
}

@-webkit-keyframes horizontal1 {
  0% {
    -webkit-transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0px);
  }
}
@-webkit-keyframes horizontal2 {
  0% {
    -webkit-transform: translateX(3px);
  }
  100% {
    -webkit-transform: translateX(0px);
  }
}
@-webkit-keyframes vertical {
  0% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
  }
}
.swing {
  -webkit-animation: swing linear 5s infinite;
}

@-moz-keyframes swing {
  0% {
    -moz-transform: rotate(0deg);
  }
  25% {
    -moz-transform: rotate(-5deg);
  }
  50% {
    -moz-transform: rotate(0deg);
  }
  75% {
    -moz-transform: rotate(5deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-o-keyframes swing {
  0% {
    -o-transform: rotate(0deg);
  }
  25% {
    -o-transform: rotate(-5deg);
  }
  50% {
    -o-transform: rotate(0deg);
  }
  75% {
    -o-transform: rotate(5deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@-ms-keyframes swing {
  0% {
    -ms-transform: rotate(0deg);
  }
  25% {
    -ms-transform: rotate(-5deg);
  }
  50% {
    -ms-transform: rotate(0deg);
  }
  75% {
    -ms-transform: rotate(5deg);
  }
  100% {
    -ms-transform: rotate(0deg);
  }
}
@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.buruburu {
  animation: furu 2.2s infinite;
}

@keyframes furu {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  2% {
    transform: translate(2px, 2px) rotateZ(2deg);
  }
  4% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  6% {
    transform: translate(2px, 0px) rotateZ(-2deg);
  }
  8% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  10% {
    transform: translate(2px, 2px) rotateZ(2deg);
  }
  12% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  14% {
    transform: translate(2px, 0px) rotateZ(-2deg);
  }
  16% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  18% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
.marker-animation.active {
  background-position: -100% 20%;
}

.marker-animation {
  background-image: -webkit-linear-gradient(left, transparent 50%, #e7c71c 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, #e7c71c 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, #e7c71c 50%);
  background-image: -o-linear-gradient(left, transparent 50%, #e7c71c 50%);
  background-image: linear-gradient(left, transparent 50%, #e7c71c 50%);
  background-repeat: repeat-x;
  background-size: 200% 60%;
  background-position: 0 20%;
  transition: all 2s ease;
  transition-delay: 0.8s;
  font-weight: bold;
  padding: 0 0 20px 3px;
  letter-spacing: 3px;
}

/************************** 動き **************************/
.table01 {
  max-width: 700px;
}
.table01 th {
  border-right: 1px solid #888888;
  width: 25%;
  padding: 20px 0;
}
.table01 td {
  padding: 20px 0 20px 60px;
}

/*---------------------/header---------------------*/
header {
  max-width: 280px;
  width: 20%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 999;
}
header .header_fot {
  margin-bottom: 5vh;
}
header .header_fot nav {
  margin-bottom: 5vh;
  padding-left: 50px;
}
header .header_fot nav a {
  margin-bottom: 20px;
  display: table;
}
header .header_fot nav a::after {
  position: absolute;
  top: 10px;
  left: -50px;
  content: '';
  width: 35px;
  height: 1px;
  background: #8ecb14;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
header .header_fot nav a:hover::after {
  transform: scale(1, 1);
}
header .header_fot nav a:hover {
  opacity: 1;
}
header .header_fot nav a:hover * {
  opacity: 1;
}
header .header_fot nav a .round {
  top: 5px;
  left: -20px;
}
header .header_fot .btn01 {
  padding: 10px 0 15px;
  width: 70%;
}

/*---------------------/headerトップ固定---------------------*/
/*---------------------/footer---------------------*/
footer {
  background: url("../img/common/logo03.svg") no-repeat;
  background-position: bottom 5px right;
  background-size: 380px;
}
footer .phonelink_ring {
  top: 2px;
}
footer .btn01 {
  padding: 10px 50px 15px;
}
footer address {
  background: #f2f2f2;
  padding: 10px 0;
}
footer #pagetop {
  position: fixed;
  bottom: 10%;
  right: 2%;
  z-index: 2000;
  line-height: 100%;
}
footer #pagetop a:hover p {
  opacity: 0.6;
}

main {
  width: calc(100% - 280px);
  margin-right: 0;
  margin-left: auto;
}

.container_1220 {
  max-width: 1220px;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

.container_980 {
  max-width: 980px;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

/**-----------------------------------------------  form_link  **/
/*---------------------footer/---------------------*/
/*---------------------/hover---------------------*/
/*---------------------hover/---------------------*/
