@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: #ff5319;
  color: #fff;
}

::-moz-selection {
  background: #ff5319;
  color: #fff;
}

body {
  line-height: 1.4;
  position: relative;
  text-align: left;
  font-size: 16px;
  color: #3a3a3a;
  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: #3a3a3a;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-weight: 400;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #3a3a3a;
  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;
  }
}
.shadow {
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.15) !important;
}

#wap {
  width: 100%;
  max-width: 2300px;
  margin: auto;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.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{
    margin-bottom: 60px;
}

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%;
  padding: 0 0 30px 0;
}
form table td p.attention {
  margin-top: 10px;
}

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] {
    background: #23bd32;
    border: 1px solid #23bd32;
    color: #fff;
    cursor: pointer;
    padding: 15px 0;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    transition: .3s;
    display: inline-block;
    overflow: hidden;
    width: 250px;
    margin: 5px;
}

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

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


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: 15px 10px;
  box-sizing: border-box;
    border: 1px solid #888888;}

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: 16px; }

input[type="text"].txt_box_s{
    width: 50%;
    display: inherit;
    margin-top: 10px;
    padding: 10px;
}

.mwform-radio-field01 label{
    display: table;
    margin-bottom: 5px !important;
}
.mwform-checkbox-field label, .mwform-radio-field label{
    padding-bottom: 5px;
}

.mw_wp_form .horizontal-item + .horizontal-item{
    margin-left: 0 !important
        ;
}

.mw_wp_form_confirm .none {
  display: none;
}

.mw_wp_form_confirm form table th{
    padding-top: 0;
}

/* 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: 'Rajdhani', sans-serif;
  font-weight: 700;
  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_46,
.f_46 span {
  font-size: 46px;
}

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

.f_52,
.f_52 span {
  font-size: 52px;
}

.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;
}

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_og,
a.f_og {
  color: #ff5319;
}

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

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

.f_gr,
a.f_gr {
  color: #23bd32;
}

a.f_gr:hover {
  color: #23bd32 !important;
}

.f_gr02,
a.f_gr02 {
  color: #f0fce2;
}

a.f_gr02:hover {
  color: #f0fce2 !important;
}

.f_gr03,
a.f_gr03 {
  color: #c0f285;
}

a.f_gr03:hover {
  color: #c0f285 !important;
}

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

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

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

/************************** 背景 **************************/
.bg_og {
  background-color: #ff5319;
}

.bg_yl {
  background-color: #f5f400;
}

.bg_gr {
  background-color: #f0fce2;
}

.bg_gr02 {
  background-color: #23bd32;
}

.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;
}

/************************** タイトル **************************/
/************************** ボタン **************************/
.btn01 {
  cursor: pointer;
  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: #23bd32;
  border: 1px solid #23bd32;
  color: #fff;
}

.btn01.btn01_gr02 {
  background: #fff;
  border: 2px solid #23bd32;
}

.btn01.btn01_yl01 {
  background: #f5f400;
  border: 1px solid #f5f400;
  color: #fff;
}

.btn01.btn01_yl02 {
  background: #fff;
  border: 2px solid #f5f400;
}

.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:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.btn01.btn01_gr02::before {
  background: #23bd32;
}

.btn01.btn01_yl02::before {
  background: #f5f400;
}

.btn01:hover {
  opacity: 1;
}

.btn01.btn01_gr01:hover {
  color: #23bd32;
}

.btn01.btn01_gr01:hover input {
  color: #23bd32;
}

.btn01:hover input {
  color: #23bd32;
}

.btn_contact {
  background: #f5f400;
  border: 2px solid #ff5319;
  border-radius: 100px;
  padding: 15px 60px;
}

.btn02 {
  background: #f0fce2;
  padding: 20px 0 10px;
  display: inline-block;
  border-radius: 20px;
  transition: 0.3s;
  position: relative;
  top: 0px;
}
.btn02:hover {
  opacity: 1;
  position: relative;
  top: 8px;
  transition: 0.3s;
}

.an_btn_wap {
  position: relative;
  top: -30px;
}
.an_btn_wap .btn02 {
  width: 30%;
  margin: 0 1%;
}

.btn03 {
  border-radius: 30px;
  padding: 40px 60px;
  width: 49%;
}
.btn03 .txt_box {
  margin-left: 50px;
}
.btn03:hover {
  background: #f5f400 !important;
  opacity: 1;
}
.btn03:hover img {
  opacity: 1;
}

.btn04{
    background: #23bd32;
    color: #fff;
    font-weight: bold;
    padding: 5px 20px;
    border: 1px solid #23bd32;
    transition: 0.3s;
    display: inline-block;
}

.btn04:hover{
    background: #fff;
    color: #23bd32;
    transition: 0.3s;
    opacity: 1;
}


.btn05{
    background: #FF5319;
    color: #fff;
    font-weight: bold;
    padding: 10px 50px;
    border: 1px solid #FF5319;
    transition: 0.3s;
    display: inline-block;
	border-radius: 50px;
}

.btn05:hover{
    background: #fff;
    color: #FF5319;
    transition: 0.3s;
    opacity: 1;
}


.btn06{
    background: #23bd32;
    color: #fff;
    font-weight: bold;
    padding: 10px 50px;
    border: 1px solid #23bd32;
    transition: 0.3s;
    display: inline-block;
	border-radius: 50px;
}

.btn06:hover{
    background: #fff;
    color: #23bd32;
    transition: 0.3s;
    opacity: 1;
}
/************************** 動き **************************/
.gradient_border {
  --borderWidth: 6px;
  background: #fff;
  position: relative;
  border-radius: var(--borderWidth);
  display: inline-block;
  margin-right: 15px;
  padding-left: 10px;
}

.gradient_border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #ffaa00, #ff8585, #ffaa00, #ff8585);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 2s ease alternate infinite;
  background-size: 300% 300%;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.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;
}

.arrow_wap {
  display: inline-block;
}

.arrow01 {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
  left: -12px;
  -webkit-transition: color 0.35s ease-out 0s, -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: color 0.35s ease-out 0s, -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, color 0.35s ease-out 0s;
  transition: transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, color 0.35s ease-out 0s, -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.arrow01::before,
.arrow01::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: 0.3s;
}

.arrow01::before {
  left: 4px;
  width: 40px;
  height: 1px;
  background: #23bd32;
}

.arrow01::after {
  left: 38px;
  width: 6px;
  height: 4px;
  border-top: 1px solid #23bd32;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -1px;
  border-top: 1px solid #23bd32;
}

.arrow_wap:hover .arrow01::before {
  width: 60px;
}

.arrow_wap:hover .arrow01::after {
  left: 57px;
}

.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% 1.0em;
}

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

/************************** テーブル **************************/
.table01 th {
  border-right: 1px solid #c0f285;
  width: 20%;
  padding: 20px 40px 20px 0;
}
.table01 td {
  padding: 20px 0 20px 60px;
}

.table02 th {
  border-top: 2px solid #c0f285;
  border-bottom: 2px solid #c0f285;
  width: 24%;
  padding: 0 30px;
  background: #f0fce2;
  vertical-align: middle;
}
.table02 td {
  padding: 30px;
  border-top: 2px solid #c0f285;
  border-bottom: 2px solid #c0f285;
}

/*---------------------/header---------------------*/
header {
  background: #fff;
  padding: 8px 20px;
  position: fixed;
  width: 100%;
  z-index: 99999;
  flex-wrap: inherit !important;
  border-bottom: 2px solid #23bd32;
  top: 0;
}
header h1 img {
  transition: 0.3s;
}
header .box01_wap {
  margin-right: 300px;
}
header .box01_wap .txt01 {
  transition: 0.3s;
}
header .box01_wap .tel_wap {
  transition: 0.3s;
}
header .box01_wap .tel_wap i {
  font-size: 30px;
  top: 3px;
}
header .box01_wap .tel_wap .d-inline {
  position: relative;
  top: -5px;
}
header nav a {
  margin: 0 0.6vw;
  position: relative;
}
header nav a:hover {
  opacity: 1;
  color: #23bd32;
}
header .box03 {
  right: 40px;
  top: -20px;
  padding: 40px 20px 20px;
  background: #f5f400;
  border: 3px solid #ff5319;
  transition: 0.3s;
}
header .box03:hover {
  opacity: 1;
  top: 0;
  transition: 0.3s;
}

@media (max-width: 1400px) {
  header h1 {
    width: 20%;
  }
  header h1 img {
    width: 100%;
    height: auto;
  }
	
	header h2{
		font-size: 1.2vw;
	}

  header .box03 {
    right: 0;
    padding: 40px 5px 20px;
  }

  header .box01_wap {
    margin-right: 170px;
  }
}
header.fixed .box01_wap .txt01 {
  display: none;
  transition: 0.3s;
}
header.fixed h1 img {
  width: auto;
  height: 60px;
  transition: 0.3s;
}
header.fixed .box01_wap .tel_wap {
  transition: 0.3s;
  margin-top: 0;
}

/*---------------------/headerトップ固定---------------------*/
/*---------------------/footer---------------------*/
footer {
  background: url("../img/common/bg05.jpg") no-repeat;
  background-size: cover;
  padding: 120px 0 0;
}
footer .box02 h2 {
  margin-bottom: 10px;
}
footer .box02 h2 a {
  flex: 1 1 auto;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: .3s;
  z-index: 1;
  padding-bottom: 5px;
  text-transform: inherit;
}
footer .box02 h2 a::after {
  position: absolute;
  transition: .3s;
  content: '';
  width: 0;
  right: 0;
  left: auto;
  bottom: 0;
  height: 1px;
  background: #fff;
}
footer .box02 h2 a:hover {
  opacity: 1;
}
footer .box02 h2 a:hover:after {
  width: 100%;
  left: 0;
}
footer .box02 h2 i {
  top: 4px;
  font-size: 18px;
}
footer address {
  padding: 5px 0;
  background: #23bd32;
}
footer #pagetop {
  position: fixed;
  bottom: 10%;
  right: 2%;
  z-index: 2000;
  line-height: 100%;
}
footer #pagetop a:hover p {
  opacity: 0.6;
}

.container_1300 {
  max-width: 1300px;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

.container_1080 {
  max-width: 1080px;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

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