@charset "UTF-8";

/* FOUC prevention: override inline critical CSS visibility:hidden */
.section, footer, .window-menu { visibility: visible; }

/* ==============================================
 Reset
=============================================== */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

/* chromeで読み込み時にtransitionが発生するのを防ぐ */
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

span {
  vertical-align: baseline;
}


/* ==============================================
 Common
=============================================== */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  margin: 0;
  width: 100%;
}

body {
  background: #fff;
  color: #232f3e;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-text-size-adjust: 100%;
  width: 100%;
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

a {
  color: #232f3e;
  cursor: pointer;
  outline: medium none;
  text-decoration: none;
  -webkit-transition: all 0.14s ease-out 0s;
  -moz-transition: all 0.14s ease-out 0s;
  -ms-transition: all 0.14s ease-out 0s;
  -o-transition: all 0.14s ease-out 0s;
  transition: all 0.14s ease-out 0s;
}

a:visited {
  outline: medium none;
}

a:focus {
  outline: medium none;
}

a:active, a:hover {
  outline: medium none;
}

@media (min-width: 1025px) {
  a:hover {
    color: #777;
    text-decoration: none;
  }
}

address {
  font-style: italic;
  margin: 0 0 24px;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
  vertical-align: baseline;
}

dfn {
  font-style: italic;
}

mark {
  background: none repeat scroll 0 0 #FFFF00;
  color: #000000;
}

p {
  line-height: 1.8;
  margin: 0 0 30px;
  max-height: 100%;
}

@media (max-width: 767px) {
  p {
    margin-bottom: 18px;
  }
}

code, kbd, pre, samp {
  -moz-hyphens: none;
  font-family: monospace,serif;
  font-size: 14px;
}

pre {
  background: none repeat scroll 0 0 #F5F5F5;
  color: #666666;
  font-family: monospace;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

blockquote, q {
  -moz-hyphens: none;
  quotes: none;
}

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

blockquote {
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  margin: 24px 40px;
}

blockquote blockquote {
  margin-right: 0;
}

blockquote cite, blockquote small {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
}

blockquote em, blockquote i {
  font-style: normal;
  font-weight: 300;
}

blockquote strong, blockquote b {
  font-weight: 400;
}

small {
  font-size: 85%;
  vertical-align: baseline;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl {
  margin: 0;
}

dt {
  font-weight: bold;
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

menu, ol, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

li {
  margin: 0;
}

th {
  font-weight: bold;
  font-weight: 600;
}

li, dt, dd, th, td {
  line-height: 1.6;
}

@media (max-width: 1024px) {
  li, dt, dd, th, td {
    line-height: 1.5;
  }
}

img {
  border: 0 none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
}

a img {
  -webkit-transition: all 0.14s ease-out 0s;
  -moz-transition: all 0.14s ease-out 0s;
  -ms-transition: all 0.14s ease-out 0s;
  -o-transition: all 0.14s ease-out 0s;
  transition: all 0.14s ease-out 0s;
}

a:hover img {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  a:hover img {
    opacity: 1;
  }
}

input, textarea, button, select {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

input[type="text"]:focus,
textarea:focus {
  outline: 0;
}

select::-moz-focus-inner,
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border: 0;
  outline: 0;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #232f3e;
}

/* ==============================================
 Common
=============================================== */
/* Micro Clearfix
----------------------------------------------- */
.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

/* padding
----------------------------------------------- */
.pt-0 {
  padding-top: 0px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-25 {
  padding-top: 25px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

/* margin
----------------------------------------------- */
.mt-0 {
  margin-top: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-25 {
  margin-top: 25px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

/* width
----------------------------------------------- */
._minw40 {
  min-width: 40px !important;
}

._minw100 {
  min-width: 100px !important;
}

._minw140 {
  min-width: 140px !important;
}

._minw200 {
  min-width: 200px !important;
}

._maxw240 {
  max-width: 240px !important;
}

._maxw380 {
  max-width: 380px !important;
}

._maxw580 {
  max-width: 580px !important;
}

._maxw880 {
  max-width: 880px !important;
}

._maxw1040 {
  max-width: 1040px !important;
}

._maxw1180 {
  max-width: 1180px !important;
}

._maxw1200 {
  max-width: 1200px !important;
}

._w40 {
  width: 40px !important;
}

._w60 {
  width: 60px !important;
}

._w100 {
  width: 100px !important;
}

._w150 {
  width: 150px !important;
}

._w200 {
  width: 200px !important;
}

._w5p {
  width: 5% !important;
}

._w10p {
  width: 10% !important;
}

._w15p {
  width: 15% !important;
}

._w20p {
  width: 20% !important;
}

._w25p {
  width: 25% !important;
}

._w30p {
  width: 30% !important;
}

._w35p {
  width: 35% !important;
}

._w40p {
  width: 40% !important;
}

._w45p {
  width: 45% !important;
}

._w50p {
  width: 50% !important;
}

._w55p {
  width: 55% !important;
}

._w60p {
  width: 60% !important;
}

/* ==============================================
 Loading
=============================================== */
.loader {
  display: none;
}

@-webkit-keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ==============================================
 fadein
=============================================== */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes delayFadeInLeft {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes delayFadeInRight {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes delayFadeInTop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes delayFadeInBottom {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadein {
  opacity: 0;
  transition: all 1200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fadein-left {
  transform: translate(-20px, 0);
}

.fadein-right {
  transform: translate(20px, 0);
}

.fadein-top {
  transform: translate(0, -20px);
}

.fadein-bottom {
  transform: translate(0, 20px);
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.curtain {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.curtain-right::before {
  content: "";
  background: #0ad1a9;
  height: 100%;
  right: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 1600ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -moz-transition: all 1600ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -ms-transition: all 1600ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -o-transition: all 1600ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: all 1600ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.curtain-right::after {
  content: "";
  background: #000;
  height: 100%;
  right: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  transition-delay: .16s;
  -webkit-transition: all 1600ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
  -moz-transition: all 1600ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
  -ms-transition: all 1600ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
  -o-transition: all 1600ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
  transition: all 1600ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.curtain-right.scrollin::before,
.curtain-right.scrollin::after {
  opacity: 0.6;
  width: 0;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

.curtain-left::before {
  content: "";
  background: #0ad1a9;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 1600ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -moz-transition: all 1600ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -ms-transition: all 1600ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -o-transition: all 1600ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: all 1600ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.curtain-left::after {
  content: "";
  background: #000;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  transition-delay: .16s;
  -webkit-transition: all 1600ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
  -moz-transition: all 1600ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
  -ms-transition: all 1600ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
  -o-transition: all 1600ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
  transition: all 1600ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.curtain-left.scrollin::before,
.curtain-left.scrollin::after {
  opacity: 0.6;
  width: 0;
  -webkit-transform: translateX(-1%);
  -ms-transform: translateX(-1%);
  transform: translateX(-1%);
}

/* ==============================================
 Layout
=============================================== */
.wrapper {
  padding-top: 80px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .wrapper {
    padding-top: 50px;
  }
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 1024px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  position: relative;
}

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

.fl-left {
  float: left;
}

.fl-right {
  float: right;
}

/* ==============================================
 Font
=============================================== */
.fc-red {
  color: #ea4335;
}

.fc-orange {
  color: #ff6a29;
}

.fc-green {
  color: #0ad1a9;
}

.fc-blue {
  color: #00a2f4;
}

.ff-en {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

/* ==============================================
 Header
=============================================== */
.site-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 100;
}

@media (max-width: 767px) {
  .site-header {
    height: 50px;
  }
}

.site-header .container {
  padding-right: 0;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media (max-width: 767px) {
  .site-header .container {
    padding-left: 15px;
  }
}

.site-header .header-left {
  margin-right: auto;
  padding-right: 20px;
}

.site-header .header-left h1 {
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.site-header .header-left h1 a {
  display: inline-block;
}

@media (max-width: 767px) {
  .site-header .header-left h1 a {
    padding-top: 9px;
  }
  .site-header .header-left h1 a img {
	width: 150px;
  }
}

.site-header .header-left h1 p {
  margin-bottom: 0;
  margin-left: 40px;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1279px) {
  .site-header .header-left h1 p {
    margin-left: 20px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .site-header .header-left h1 p {
	margin-left: 23px;
	font-size: 10px;
	width: 179px;
	margin-top: 12px;
  }
}

.site-header .header-right {
  margin-left: auto;
}

.site-header .header-right .header-btns {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media (max-width: 767px) {
  .site-header .header-right .header-btns {
    bottom: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 1000;
  }
}

.site-header .header-right .header-btns a {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  height: 80px;
  line-height: 80px;
  margin-right: 1px;
  text-align: center;
  padding: 0 10px;
  width: 260px;
}

.site-header .header-right .header-btns a:last-child {
  margin-right: auto;
}

@media (max-width: 1279px) {
  .site-header .header-right .header-btns a {
    width: 220px;
  }
}

@media (max-width: 767px) {
  .site-header .header-right .header-btns a {
    font-size: 12px;
    margin-right: 0;
    height: auto;
    line-height: 1.4;
    padding: 8px;
    width: 50%;
  }
}

.site-header .header-right .header-btns a span {
  display: inline-block;
  padding: 8px 0 10px 28px;
  line-height: 1;
}

@media (max-width: 767px) {
  .site-header .header-right .header-btns a span {
    padding: 25px 0 0;
  }
}

.site-header .header-right .header-btns a.btn-refer {
  background-color: #00a2f4;
}

@media (min-width: 1025px) {
  .site-header .header-right .header-btns a.btn-refer:hover {
    background-color: rgba(0, 162, 244, 0.8);
  }
}

.site-header .header-right .header-btns a.btn-refer span {
  background: url("../images/icon_job.png") no-repeat 0 7px/20px 18px;
}

@media (max-width: 767px) {
  .site-header .header-right .header-btns a.btn-refer span {
    background-position: 50% 0;
  }
}

.site-header .header-right .header-btns a.btn-contact {
  background-color: #0ad1a9;
}

@media (min-width: 1025px) {
  .site-header .header-right .header-btns a.btn-contact:hover {
    background-color: rgba(10, 209, 169, 0.8);
  }
}

.site-header .header-right .header-btns a.btn-contact span {
  background: url("../images/icon_chat.png") no-repeat 0 7px/20px 19px;
}

@media (max-width: 767px) {
  .site-header .header-right .header-btns a.btn-contact span {
    background-position: 50% 0;
  }
}

/* ==============================================
 Navigation
=============================================== */
.window-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 9999;
}

.window-menu .window-menu-container {
  position: relative;
  padding: 60px 40px;
  height: 100vh;
  overflow: auto;
  text-align: center;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.window-menu .window-menu-container::after {
  content: "";
  background: #03afe1;
  background: -moz-linear-gradient(left, #03afe1 0%, #0ad1a9 100%);
  background: -webkit-linear-gradient(left, #03afe1 0%, #0ad1a9 100%);
  background: linear-gradient(to right, #03afe1 0%, #0ad1a9 100%);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.97;
  height: 100%;
  width: 100%;
}

.window-menu .window-menu-container > * {
  position: relative;
  z-index: 1;
}

.window-menu .window-menu-container .window-menu-close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .window-menu .window-menu-container .window-menu-close {
    top: 15px;
    right: 15px;
  }
}

.window-menu .window-menu-container .window-menu-content h3 {
  margin-bottom: 20px;
  font-size: 26px;
}

@media (max-width: 767px) {
  .window-menu .window-menu-container .window-menu-content h3 {
    font-size: 20px;
  }
}

.window-menu .window-menu-container .window-menu-content h3 span {
  background: url("../images/icon_chat_green.png") no-repeat 0 50%/38px 36px;
  color: #fff;
  display: inline-block;
  padding: 4px 0 8px 46px;
}

@media (max-width: 767px) {
  .window-menu .window-menu-container .window-menu-content h3 span {
    background-size: 30px 28px;
    padding: 2px 0 4px 38px;
  }
}

.window-menu .window-menu-container .window-menu-content ul li {
  margin-bottom: 16px;
  width: 390px;
}

@media (max-width: 767px) {
  .window-menu .window-menu-container .window-menu-content ul li {
    max-width: 100%;
    width: 300px;
  }
}

.window-menu .window-menu-container .window-menu-content ul li a {
  background-position: 25px 50%;
  background-repeat: no-repeat;
  background-color: #fff;
  color: #0ad1a9;
  display: block;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 0;
  height: 66px;
  line-height: 64px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
}

@media (min-width: 1025px) {
  .window-menu .window-menu-container .window-menu-content ul li a:hover {
    opacity: 0.9;
  }
}

@media (max-width: 767px) {
  .window-menu .window-menu-container .window-menu-content ul li a {
    font-size: 16px;
    height: 58px;
    line-height: 56px;
  }
}

.window-menu .window-menu-container .window-menu-content ul li a.btn-mail {
  background-image: url("../images/btn_icon_mail.png");
  background-size: 33px 24px;
}

@media (max-width: 767px) {
  .window-menu .window-menu-container .window-menu-content ul li a.btn-mail {
    background-size: 24px 18px;
  }
}

.window-menu .window-menu-container .window-menu-content ul li a.btn-tel {
  background-image: url("../images/btn_icon_tel.png");
  background-size: 28px 35px;
  background-position: 30px 50%;
}

@media (max-width: 767px) {
  .window-menu .window-menu-container .window-menu-content ul li a.btn-tel {
    background-size: 20px 26px;
    background-position: 28px 50%;
  }
}

.window-menu .window-menu-container .window-menu-content ul li a.btn-line {
  background-image: url("../images/btn_icon_line.png");
  background-size: 37px 36px;
  background-position: 23px 55%;
}

@media (max-width: 767px) {
  .window-menu .window-menu-container .window-menu-content ul li a.btn-line {
    background-size: 26px 26px;
  }
}

.window-menu .window-menu-container .window-menu-content ul li.tel {
  border: 2px solid #fff;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  padding: 10px;
  line-height: 1.4;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}

.window-menu .window-menu-container .window-menu-content ul li.tel .number {
  font-family: "Roboto", sans-serif;
  display: block;
  letter-spacing: 0.05em;
}

.window-menu .window-menu-container .window-menu-content ul li.tel .number strong {
  font-size: 140%;
}

html.menu-open, body.menu-open {
  overflow: hidden;
}

/* ==============================================
 Button
=============================================== */
.btn-area {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 15px;
}

/* ==============================================
 Heading
=============================================== */
.heading-2 {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .heading-2 {
    margin-bottom: 40px;
  }
}

.heading-2 .en {
  color: #ffdc1a;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.2em;
  display: inline-block;
  padding: 0 45px;
  margin-bottom: 10px;
  position: relative;
}

.heading-2 .en::before, .heading-2 .en::after {
  content: "";
  background-color: #ffdc1a;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  position: absolute;
  width: 32px;
}

.heading-2 .en::before {
  left: 0;
}

.heading-2 .en::after {
  right: 0;
}

.heading-2 .ja {
  font-size: 30px;
  display: block;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .heading-2 .ja {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .heading-2 .ja {
    font-size: 20px;
  }
}

/* ==============================================
 Form
=============================================== */
/* layout
----------------------------------------------- */
.form-section-2 {
  display: none;
}

.form-step {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .form-step {
    margin-bottom: 20px;
  }
}

.form-block {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .form-block {
    margin-bottom: 20px;
  }
}

.form-block .form-label {
  font-weight: bold;
  display: block;
  margin-bottom: 13px;
}

@media (max-width: 767px) {
  .form-block .form-label {
    margin-bottom: 10px;
  }
  .form-block .form-label.form-label--required {
    position: relative;
    padding-right: 50px;
  }
}

.form-block .form-label small {
  font-size: 13px;
  font-weight: normal;
  display: inline-block;
}

.form-block .form-required {
  background-color: #00a2f4;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  display: inline-block;
  padding: 1px 10px 2px;
  margin-left: 10px;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .form-block .form-required {
    position: absolute;
    margin-left: auto;
    right: 0;
    top: 2px;
  }
}

.form-block .form-field--age {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.form-block .form-field--age .wpcf7-form-control-wrap input.form-control {
  width: 120px;
}

.form-block .form-field--age .form-unit {
  text-align: right;
  width: 1.5em;
}

.form-block .form-field--year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.form-block .form-field--year .wpcf7-form-control-wrap {
  flex: 1;
}

.form-block .form-field--year .form-unit {
  text-align: right;
  width: 1.5em;
}

.form-block .form-message {
  background-color: #fff;
  border: 1px solid #ea4335;
  color: #ea4335;
  padding: 10px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 15px;
  display: none;
}

.form-block--type2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 767px) {
  .form-block--type2 {
    display: block;
  }
}

.form-block--type2 .block-left {
  width: 66.7%;
}

@media (max-width: 767px) {
  .form-block--type2 .block-left {
    width: auto;
    margin-bottom: 20px;
  }
}

.form-block--type2 .block-right {
  margin-left: auto;
  width: 33%;
}

@media (max-width: 767px) {
  .form-block--type2 .block-right {
    width: auto;
  }
}

/* parts
----------------------------------------------- */
/* form default */
input.form-control, input[type="number"].form-control, input[type="email"].form-control, button.form-control, textarea.form-control {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (max-width: 767px) {
  input.form-control, input[type="number"].form-control, input[type="email"].form-control, button.form-control, textarea.form-control {
    font-size: 16px;
  }
}

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

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

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

input[type="text"].form-control, input[type="number"].form-control, input[type="password"].form-control, input[type="email"].form-control, input[type="tel"].form-control, input[type="url"].form-control, textarea.form-control {
  background-color: #fff;
  border: 1px solid #cedfdd;
  padding: 17px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  width: 100%;
}

@media (max-width: 767px) {
  input[type="text"].form-control, input[type="number"].form-control, input[type="password"].form-control, input[type="email"].form-control, input[type="tel"].form-control, input[type="url"].form-control, textarea.form-control {
    padding: 14px;
  }
}

input[type="text"].form-control:focus, input[type="number"].form-control:focus, input[type="password"].form-control:focus, input[type="email"].form-control:focus, input[type="tel"].form-control:focus, input[type="url"].form-control:focus, textarea.form-control:focus {
  border-color: #00a2f4;
}

input[type="text"].form-zip {
  width: 140px;
}

/* policy */
.check-policy {
  text-align: center;
  font-weight: bold;
  margin-bottom: 0;
}

.check-policy a {
  background: url("../images/icon_window03.png") no-repeat 100% 50%/11px 9px;
  color: #00a2f4;
  margin-right: 6px;
  display: inline-block;
  padding-right: 16px;
}

.check-policy a:hover {
  text-decoration: underline;
}

.check-policy span.wpcf7-list-item {
  margin-left: auto;
}

.check-policy label {
  display: inline-block;
}

.check-policy label .wpcf7-list-item-label {
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-image: url("../images/checkbox_off.png");
  background-size: 22px 22px;
  display: inline-block;
  padding-right: 30px;
}

.check-policy label input[type="checkbox"] {
  position: absolute;
  display: none;
  z-index: -1;
}

.check-policy label input[type="checkbox"]:checked + .wpcf7-list-item-label {
  background-image: url("../images/checkbox_on.png");
}

.check-policy .check-policy-error {
  display: none;
}

/* checkbox */
.form-checkbox-group .wpcf7-form-control {
  font-size: 0;
  letter-spacing: 0;
}

.form-checkbox-group .wpcf7-list-item {
  font-size: 15px;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-right: 1%;
  margin-left: auto;
  margin-bottom: 10px;
  width: 32.666%;
  vertical-align: top;
}

.form-checkbox-group .wpcf7-list-item:nth-child(3n) {
  margin-right: auto;
}

@media (max-width: 767px) {
  .form-checkbox-group .wpcf7-list-item:nth-child(3n) {
    margin-right: 2%;
  }
}

@media (max-width: 767px) {
  .form-checkbox-group .wpcf7-list-item {
    font-size: 13px;
    margin-bottom: 6px;
    margin-right: 2%;
    width: 49%;
  }
  .form-checkbox-group .wpcf7-list-item:nth-child(even) {
    margin-right: auto;
  }
}

.form-checkbox-group label {
  display: block;
}

.form-checkbox-group label .wpcf7-list-item-label {
  border: 1px solid #cedfdd;
  background-color: #fff;
  background-position: 14px 50%;
  background-repeat: no-repeat;
  background-image: url("../images/radio_btn_off.png");
  background-size: 18px 18px;
  display: block;
  padding: 17px 10px 18px 41px;
}

@media (max-width: 767px) {
  .form-checkbox-group label .wpcf7-list-item-label {
    background-position: 10px 50%;
    padding: 15px 10px 16px 34px;
  }
}

.form-checkbox-group label input[type="checkbox"] {
  position: absolute;
  display: none;
  z-index: -1;
}

.form-checkbox-group label input[type="checkbox"]:checked + .wpcf7-list-item-label {
  border: 1px solid #00a2f4;
  background-image: url("../images/radio_btn_on.png");
}

/* radio */
.form-radio-group .wpcf7-form-control {
  font-size: 0;
  letter-spacing: 0;
}

.form-radio-group .wpcf7-list-item {
  font-size: 15px;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-right: 1.8%;
  margin-left: auto;
  width: 48.4%;
  vertical-align: top;
}

.form-radio-group .wpcf7-list-item:nth-child(2n) {
  margin-right: auto;
}

@media (max-width: 767px) {
  .form-radio-group .wpcf7-list-item {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

.form-radio-group label {
  display: block;
}

.form-radio-group label .wpcf7-list-item-label {
  border: 1px solid #cedfdd;
  background-color: #fff;
  background-position: 14px 50%;
  background-repeat: no-repeat;
  background-image: url("../images/radio_btn_off.png");
  background-size: 18px 18px;
  display: block;
  padding: 17px 10px 18px 41px;
}

@media (max-width: 767px) {
  .form-radio-group label .wpcf7-list-item-label {
    background-position: 10px 50%;
    padding: 15px 10px 16px 34px;
  }
}

.form-radio-group label input[type="radio"] {
  position: absolute;
  display: none;
  z-index: -1;
}

.form-radio-group label input[type="radio"]:checked + .wpcf7-list-item-label {
  border: 1px solid #00a2f4;
  background-image: url("../images/radio_btn_on.png");
}

/* placeholder */
input::placeholder, textarea::placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #aaa;
  opacity: 1;
}

/* IE */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #aaa;
  opacity: 1;
}

/* Edge */
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #aaa;
  opacity: 1;
}

/* Chrome, Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox, IE */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Chrome autofill */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

/* ==============================================
 Contents
=============================================== */
/* mainvisual
----------------------------------------------- */
.mainvisual {
	position: relative;
	width: 100%;
	height: 450px;
	letter-spacing: 5px;
}

@media (max-width: 767px) {
  .mainvisual {
	height: 300px;
	letter-spacing: 3px;
  }
}

.mv-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.mv-bg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
@media (max-width: 767px) {
  .mv-bg img {
	object-fit: cover;
  }
}

.mainvisual .mv-wrap {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
  .mainvisual .mv-wrap {
    padding: 0;
    height: auto;
    position: relative;
    display: block;
  }
}

.mainvisual .catch {
	width: 1040px;
	padding-top: 20px;
}
@media (max-width: 1024px) {
  .mainvisual .catch {
	width: 100%;
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
}
}
@media (max-width: 767px) {
  .mainvisual .catch {
	  max-width: 390px;
}
}
.mainvisual .catch .sub-catch {
	font-size: 36px;
	line-height: 2;
	margin-bottom: 21px;
	text-align: center;
	font-weight: 600;
}
.mainvisual .catch .sub-catch span {
	font-size: 48px;
	color: #ff7a00;
}
@media (max-width: 1024px) {
  .mainvisual .catch .sub-catch {
  }
}

@media (max-width: 767px) {
  .mainvisual .catch .sub-catch {
	font-size: 20px;
	line-height: 2;
	margin-bottom: 30px;
  }
	.mainvisual .catch .sub-catch span {
	font-size: 28px;
}
}
.mainvisual .catch .catch-inner div{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: -35px;
	position: relative;
}
.mainvisual .catch .catch-inner div img {
	width: 148px;
	position: absolute;
	left: 170px;
	top: 10px;
}


.mainvisual .catch .main-catch {
	font-size: 48px;
	text-align: left;
	font-weight: 900;
}
.mainvisual .catch .main-catch span {
	font-size: 72px;
	padding-left: 18px;
	color: #ffffff;
	background-color: #ff7a00;
	padding-right: 18px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-right: 10px;
}
@media (max-width: 1024px) {
.mainvisual .catch .main-catch span {
	font-size: 64px;
}
  }
.br-sp{
	display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
	.mainvisual .catch .catch-inner div img{
	width: 85px;
	left: 99px;
	top: 7px;
	}
.mainvisual .catch .main-catch span {
	font-size: 39px;
	padding: 5px 10px;
}
}
.mainvisual .catch .catch-bottom {
	display: flex;
	margin-top: 0px;
	width: 640px;
	justify-content: space-around;
	padding-left: 0px;
}
.mainvisual .catch .catch-bottom .catch-point{
	display: flex;
	width: 190px;
	font-size: 24px;
	line-height: 30px;
	background-color: #ffffff;
	justify-content: center;
	padding-top: 10px;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 10px;
	flex-direction: column;
	align-items: center;
	border: 9px solid #0ad1a9;
	font-weight: 600;
	position: relative;
	text-align: center;
	margin-left: -20px;
	gap: 10px;
}
.mainvisual .catch .catch-bottom .catch-point img{
	width: auto;
	height: 45px;
}
.mainvisual .catch .catch-bottom .catch-point .point-number {
	width: 75px;
	height: auto;
	position: absolute;
	top: -8px;
	left: -8px;
}
@media (max-width: 767px) {
  .mainvisual .catch .catch-bottom {
	  width: 100%;
	  gap: 10px;
  }
	.mainvisual .catch .catch-bottom .catch-point{
	border: 5px solid #0ad1a9;
	font-size: 14px;
	line-height: 18px;
	padding-top: 5px;
	padding-bottom: 6px;
	padding-left: 5px;
	width: 1flex;
	padding-right: 5px;
	margin-left: 0px;
	gap: 5px;
	}
	.mainvisual .catch .catch-bottom .catch-point .point-number {
	width: 40px;
	height: auto;
	position: absolute;
	top: -5px;
	left: -5px;
}
	.mainvisual .catch .catch-bottom .catch-point img{
	height: 25px;
}
}

@media (max-width: 1024px) {
  .mainvisual .catch .main-catch {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .mainvisual .catch .main-catch {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .mainvisual .catch {
  }
}

@media (max-width: 1024px) {
  .mainvisual .mv-btn img {
    width: 360px;
  }
}

@media (max-width: 767px) {
  .mainvisual .mv-btn {
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 82%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .mainvisual .mv-btn img {
    width: 100%;
  }
}

.mainvisual .sp-img {
  display: none;
  width: 100%;
}

@media (max-width: 767px) {
  .mainvisual .sp-img {
    display: block;
  }
}

.mainvisual .mv-news {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .mainvisual .mv-news {
    position: static;
    bottom: 20px;
  }
}

.mainvisual .mv-news .inner {
  background-color: #fff;
  padding: 20px 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
}

@media (max-width: 767px) {
  .mainvisual .mv-news .inner {
    padding: 20px 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
  }
}

.mainvisual .mv-news .inner h2 {
  color: #0ad1a9;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-right: 3em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .mainvisual .mv-news .inner h2 {
    margin-right: 1em;
  }
}

.mainvisual .mv-news .inner .news-block {
  flex: 1;
}

.mainvisual .mv-news .inner .news-block a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media (max-width: 767px) {
  .mainvisual .mv-news .inner .news-block a {
    display: block;
  }
}

.mainvisual .mv-news .inner .news-block a .post-date {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  margin-right: 2em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .mainvisual .mv-news .inner .news-block a .post-date {
    display: block;
    font-size: 12px;
    margin-right: auto;
    margin-bottom: 2px;
  }
}

@media (max-width: 767px) {
  .mainvisual .mv-news .inner .news-block a .post-title {
    font-size: 85%;
    display: block;
  }
}

/* top
----------------------------------------------- */
.section-top {
	background-repeat: repeat;
	background-position: 0 0;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
}
.section-top .inner {
	width: 1040px;
	margin-bottom: 20px;
	position: relative;
	background-color: #ffffff;
	border: 5px solid #6ab666;
	padding-left: 18px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 10px;
}
@media (max-width: 1024px) {
	.section-top {
	padding-top: 20px;
	padding-bottom: 20px;
}
  .section-top .inner {
	width: 95%;
	padding-left: 10px;
	padding-right: 90px;
	display: flex;
	flex-direction: column;
	gap: 20px;
  }
}
.section-top .inner > img {
	width: 70px;
	position: absolute;
	right: 20px;
	bottom: 0px;
}

.section-top .inner div{
	display: flex;
	align-items: center;
}
.section-top .inner div:nth-child(1) {
	margin-bottom: -8px;
}
.section-top .inner div >img {
	width: 20px;
	margin-right: 10px;
}
.section-top p {
	font-size: 24px;
	font-weight: 600;
	text-align: left;
	letter-spacing: 3px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
}
.section-top .container > img {
	display: none;
}
@media (max-width: 1024px) {
  .section-top p {
	font-size: 21px;
	line-height: 28px;
	letter-spacing: 2px;
  }
}

@media (max-width: 767px) {
	.section-top .inner > img{
	right: 0px;
	width: 65px;
	}
  .section-top p {
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 1px;
  }
	.section-top .inner {
	width: 100%;
	display: none;
	flex-direction: column;
	gap: 20px;
	padding-right: 65px;
	border-width: 3px;
	padding-left: 5px;
}
	.section-top .container > img {
	display: block;
}
.section-top .inner div{
	display: flex;
	align-items: flex-start;
	margin-bottom: 0px;
	margin-top: 0px;
}
.section-top .inner div > img {
	width: 15px;
	margin-right: 2px;
	margin-top: 8px;
}
}
@media (max-width: 543px) {
	.section-top .inner div{
	width: 261px;
}
}
@media (max-width: 370px) {
	.section-top .inner > img{
	width: 55px;
	}
}
/* form
----------------------------------------------- */
.section-form {
  padding-top: 0px;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .section-form {
    padding-top: 0;
    padding-bottom: 20px;
  }
}

.section-form .wpcf7 {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .section-form .wpcf7 {
    padding-top: 55px;
    padding-bottom: 50px;
  }
}

.section-form .form-container {
  position: relative;
}

.section-form h2 {
  line-height: 1;
  font-size: 28px;
  color: #fff;
  position: absolute;
  top: -35px;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 1;
}

@media (max-width: 767px) {
  .section-form h2 {
    font-size: 18px;
    line-height: 1.3;
  }
}

.section-form h2 span {
  background-color: #00a2f4;
  display: inline-block;
  letter-spacing: 0.08em;
  padding: 20px 35px 24px;
  position: relative;
}

.section-form h2 span::after {
  content: "";
  border-style: solid;
  border-width: 14px 8px 0 8px;
  border-color: #00a2f4 transparent transparent transparent;
  bottom: -14px;
  left: 50%;
  margin-left: -8px;
  position: absolute;
}

@media (max-width: 767px) {
  .section-form h2 span {
    padding: 13px 20px 15px;
  }
}

.section-form .form-wrap {
  background-color: #e5f6fe;
  padding: 90px 100px 50px;
}

@media (max-width: 1024px) {
  .section-form .form-wrap {
    padding: 90px 30px;
  }
}

@media (max-width: 767px) {
  .section-form .form-wrap {
    position: relative;
    padding: 70px 15px 20px;
    margin: 0 -15px;
  }
}

.section-form .form-step {
  text-align: center;
}

.section-form .btn-area {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .section-form .btn-area {
    margin-top: 30px;
  }
}

.section-form .form-btn {
  border: none;
  background-color: #00a2f4;
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  background-image: url("../images/btn_arrow01.png");
  background-size: 7px 10px;
  color: #fff;
  display: inline-block;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  padding: 20px;
  letter-spacing: 0.1em;
  margin: 0 10px;
  position: relative;
  width: 240px;
  -webkit-transition: all 0.14s ease-out 0s;
  -moz-transition: all 0.14s ease-out 0s;
  -ms-transition: all 0.14s ease-out 0s;
  -o-transition: all 0.14s ease-out 0s;
  transition: all 0.14s ease-out 0s;
  vertical-align: top;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

@media (min-width: 1025px) {
  .section-form .form-btn:hover {
    opacity: 0.8;
  }
}

@media (max-width: 767px) {
  .section-form .form-btn {
    font-size: 16px;
    padding: 14px;
    margin: 0 2%;
    width: 46%;
  }
}

.section-form .back-btn {
  cursor: pointer;
  border: 1px solid #999999;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 20px 50%;
  background-image: url("../images/btn_arrow02.png");
  background-size: 7px 10px;
  color: #999999;
  display: inline-block;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  padding: 19px;
  letter-spacing: 0.1em;
  margin: 0 10px;
  position: relative;
  width: 240px;
  -webkit-transition: all 0.14s ease-out 0s;
  -moz-transition: all 0.14s ease-out 0s;
  -ms-transition: all 0.14s ease-out 0s;
  -o-transition: all 0.14s ease-out 0s;
  transition: all 0.14s ease-out 0s;
  vertical-align: top;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

@media (min-width: 1025px) {
  .section-form .back-btn:hover {
    opacity: 0.8;
  }
}

@media (max-width: 767px) {
  .section-form .back-btn {
    font-size: 16px;
    padding: 13px;
    margin: 0 2%;
    width: 46%;
  }
}

.section-form .wpcf7-not-valid-tip {
  color: #ea4335;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
}

.section-form .wpcf7 form.invalid .wpcf7-response-output, .section-form .wpcf7 form.unaccepted .wpcf7-response-output {
  background-color: #fff;
  border: 1px solid #ea4335;
  color: #ea4335;
  text-align: center;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-form .wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.section-form .wpcf7 form.sent .form-section-1, .section-form .wpcf7 form.sent .form-section-2 {
  display: none !important;
}

.section-form .wpcf7 form.sent .form-section-3 {
  display: block;
}

.section-form .form-section-3 {
  display: none;
}

.section-form .form-section-3 p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 767px) {
  .section-form .form-section-3 p {
    font-size: 16px;
  }
}

.section-form .form-section-3 p.small {
  font-size: 14px;
}

@media (max-width: 767px) {
  .section-form .form-section-3 p.small {
    font-size: 12px;
  }
}

/* pattern
----------------------------------------------- */
.section-pattern {
  background: #03afe1;
  background: -moz-linear-gradient(left, #03afe1 0%, #0ad1a9 100%);
  background: -webkit-linear-gradient(left, #03afe1 0%, #0ad1a9 100%);
  background: linear-gradient(to right, #03afe1 0%, #0ad1a9 100%);
}

.section-pattern .heading-2 .ja {
  color: #fff;
}

.section-pattern .heading-2 .ja .ff-en {
  font-size: 37px;
  margin: 0 0 0 2px;
  position: relative;
  top: 1px;
}

@media (max-width: 767px) {
  .section-pattern .heading-2 .ja .ff-en {
    font-size: 24px;
  }
}

.section-pattern .pattern-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 767px) {
  .section-pattern .pattern-list {
    display: block;
  }
}

.section-pattern .pattern-list li {
  background-color: #fff;
  margin-right: 2%;
  text-align: center;
  padding: 40px 40px 55px;
  width: 32%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.section-pattern .pattern-list li:last-child {
  margin-right: auto;
}

@media (max-width: 1024px) {
  .section-pattern .pattern-list li {
    padding: 20px 20px 25px;
  }
}

@media (max-width: 767px) {
  .section-pattern .pattern-list li {
    padding: 25px 20px 30px;
    margin-right: auto;
    margin-bottom: 20px;
    width: auto;
    -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    border-radius: 14px;
  }
}

.section-pattern .pattern-list li h3 {
  font-size: 26px;
  line-height: 1.5;
  min-height: 90px;
}

.section-pattern .pattern-list li h3.tit-2 {
  padding-top: 14px;
}

@media (max-width: 767px) {
  .section-pattern .pattern-list li h3.tit-2 {
    padding-top: 0;
  }
}

@media (max-width: 1024px) {
  .section-pattern .pattern-list li h3 {
    font-size: 20px;
    min-height: 70px;
  }
}

@media (max-width: 767px) {
  .section-pattern .pattern-list li h3 {
    font-size: 18px;
    min-height: inherit;
    margin-bottom: 10px;
  }
}

.section-pattern .pattern-list li img {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .section-pattern .pattern-list li img {
    width: 220px;
  }
}

.section-pattern .pattern-list li p {
  font-size: 16px;
  text-align: left;
  min-height: 160px;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .section-pattern .pattern-list li p {
    font-size: 14px;
    min-height: inherit;
  }
}

.section-pattern .pattern-list li .btn {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #00a2f4;
  padding: 12px 10px 13px;
  width: 240px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

@media (min-width: 1025px) {
  .section-pattern .pattern-list li .btn:hover {
    background-color: rgba(0, 162, 244, 0.8);
  }
}

@media (max-width: 1024px) {
  .section-pattern .pattern-list li .btn {
    margin-top: 20px;
    width: 100%;
  }
}

.section-pattern .pattern-list + p {
  margin-top: 60px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .section-pattern .pattern-list + p {
    margin-top: 30px;
    font-size: 18px;
    font-size: 4.8vw;
  }
}

/* campaign
----------------------------------------------- */
.section-campaign {
  background: url("../images/campaing_bg.jpg") no-repeat 50% 50%/cover;
  position: relative;
}

.section-campaign::before {
  background: url("../images/triangle_bg07.png") repeat-x 0 0;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  height: 13px;
  width: 100%;
}

@media (max-width: 767px) {
  .section-campaign::before {
    height: 6px;
    background-size: 13px 6px;
  }
}

.section-campaign::after {
  background: url("../images/triangle_bg01.png") repeat-x 0 0;
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  height: 13px;
  width: 100%;
}

@media (max-width: 767px) {
  .section-campaign::after {
    height: 6px;
    background-size: 13px 6px;
  }
}

.section-campaign .img {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .section-campaign .img {
    margin-bottom: 20px;
  }
}

.section-campaign table {
  border: 1px solid #ff6a29;
  margin: 0 auto;
  width: auto;
  overflow: hidden;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .section-campaign table {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
  }
}

.section-campaign table th {
  background-color: #ff6a29;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  padding: 15px 25px 15px 25px;
  white-space: nowrap;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .section-campaign table th {
    display: block;
    padding: 10px;
    width: 100%;
  }
}

.section-campaign table td {
  background-color: #fff;
  font-size: 13px;
  padding: 15px 20px;
  white-space: normal;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .section-campaign table td {
    display: block;
    padding: 15px;
    width: 100%;
  }
}

.section-campaign table td dl dd {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 3px;
}

.section-campaign table td dl dd:last-child {
  margin-bottom: 0;
}

.section-campaign table td dl dd strong {
  color: #ff6a29;
}

.section-campaign .note {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 767px) {
  .section-campaign .note {
    margin-top: 20px;
    text-align: left;
  }
}

.section-campaign .note dd {
  font-size: 13px;
  text-indent: -1em;
  padding-left: 1em;
  display: inline-block;
  margin-right: 1em;
}

.section-campaign .note dd:last-child {
  margin-right: auto;
}

.section-campaign .note dd.fc-orange {
  color: #ff6a29;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .section-campaign .note dd {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .section-campaign .note dd {
    display: block;
    margin-right: auto;
    margin-bottom: 3px;
  }
}

/* training
----------------------------------------------- */
.section-training {
  background: #fff1f2;
  position: relative;
}

.section-training::after {
  background: url("../images/triangle_bg02.png") repeat-x 0 0;
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  height: 13px;
  width: 100%;
}

@media (max-width: 767px) {
  .section-training::after {
    height: 6px;
    background-size: 13px 6px;
  }
}

.section-training .block {
  background-color: #fff;
  padding: 30px 80px 60px;
  position: relative;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .section-training .block {
    padding: 30px 40px 60px;
  }
}

@media (max-width: 767px) {
  .section-training .block {
    padding: 20px 15px 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
  }
}

.section-training .block::before {
  content: "";
  background: url("../images/traning_line.png") repeat-x 0 0;
  height: 8px;
  left: 50%;
  position: absolute;
  top: -4px;
  width: 86.44%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .section-training .block::before {
    height: 4px;
    background-size: 14px 4px;
    top: -2px;
  }
}

.section-training h2 {
  text-align: center;
}

.section-training h2 + p {
  position: relative;
  margin-top: -33px;
  margin-bottom: 65px;
}

@media (max-width: 767px) {
  .section-training h2 + p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .section-training h2 + p img {
    width: 280px;
  }
}

.section-training .box {
  background-color: #fff5f5;
  padding: 60px 30% 40px 80px;
  position: relative;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .section-training .box {
    padding: 60px 30% 40px 40px;
  }
}

@media (max-width: 767px) {
  .section-training .box {
    padding: 0;
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    -ms-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
  }
  .section-training .box .box-inner {
    padding: 15px 15px 10px;
  }
}

.section-training .box h3 {
  background-color: #f0747d;
  color: #fff;
  font-size: 28px;
  position: absolute;
  top: -30px;
  text-align: center;
  padding: 11px;
  left: 50%;
  width: 84.3%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
}

@media (max-width: 1279px) {
  .section-training .box h3 {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .section-training .box h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .section-training .box h3 {
    font-size: 16px;
    top: auto;
    left: auto;
    position: static;
    width: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    -ms-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
  }
}

@media (max-width: 370px) {
  .section-training .box h3 {
    font-size: 14px;
  }
}

.section-training .box h3 span {
  margin-right: 0.3em;
}

.section-training .box dl {
  position: relative;
  z-index: 1;
}

.section-training .box dl dt {
  color: #192f6a;
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .section-training .box dl dt {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.section-training .box dl dt span {
  background-color: #fff;
  border: 2px solid #192f6a;
  display: inline-block;
  padding: 2px 16px;
  position: relative;
}

.section-training .box dl dt span::before, .section-training .box dl dt span::after {
  background-color: #fff;
  content: "";
  height: 2px;
  position: absolute;
  left: 50%;
  width: 94%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section-training .box dl dt span::before {
  top: -2px;
}

.section-training .box dl dt span::after {
  bottom: -2px;
}

.section-training .box dl dd {
  background: url("../images/icon_check01.png") no-repeat 0 4px/22px 24px;
  color: #192f6a;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 30px;
  margin-bottom: 14px;
}

@media (max-width: 1024px) {
  .section-training .box dl dd {
    background-size: 20px 22px;
    padding-left: 27px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .section-training .box dl dd {
    background-size: 14px 15px;
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 8px;
  }
}

.section-training .box .img {
  position: absolute;
  right: -10px;
  top: 55px;
  width: 39%;
}

@media (max-width: 767px) {
  .section-training .box .img {
    top: 65px;
  }
}

.section-training .btn-area {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .section-training .btn-area {
    margin-top: 20px;
  }
}

.section-training .btn-area .btn {
  background-color: #00a2f4;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 18px;
  width: 420px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
}

@media (min-width: 1025px) {
  .section-training .btn-area .btn:hover {
    opacity: 0.8;
  }
}

@media (max-width: 767px) {
  .section-training .btn-area .btn {
    font-size: 16px;
    padding: 14px;
    width: 100%;
  }
}

/* campaign 202201
----------------------------------------------- */
.section-campaign-202204 {
  background: #fff6f6 url("../images/campaign_202204_bg.png") no-repeat 50% 0;
  background-size: cover;
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .section-campaign-202204 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section-campaign-202204::before {
  content: "";
  left: 0;
  top: 0;
  height: 13px;
  width: 100%;
  position: absolute;
  background: #03afe1;
  background: -moz-linear-gradient(left, #03afe1 0%, #0ad1a9 100%);
  background: -webkit-linear-gradient(left, #03afe1 0%, #0ad1a9 100%);
  background: linear-gradient(to right, #03afe1 0%, #0ad1a9 100%);
  -webkit-mask-image: url("../images/bg_mask.png");
  -webkit-mask-size: 26px 13px;
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-position: 50% 100%;
  mask-image: url("../images/bg_mask.png");
  mask-size: 26px 13px;
  mask-repeat: repeat-x;
  mask-position: 50% 0%;
}

@media (max-width: 767px) {
  .section-campaign-202204::before {
    height: 6px;
    -webkit-mask-size: 13px 6px;
    mask-size: 13px 6px;
  }
}

.section-campaign-202204 .container {
  z-index: 1;
}

.section-campaign-202204 .block {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .section-campaign-202204 .block {
    margin-bottom: 14px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
  }
}

.section-campaign-202204 .block .cont img {
  width: 100%;
}

.section-campaign-202204 .block .foot {
  background-color: #fce8e9;
  padding: 25px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .section-campaign-202204 .block .foot {
    display: block;
    padding: 20px;
  }
}

.section-campaign-202204 .block .foot .table-area {
  margin-right: auto;
}

.section-campaign-202204 .block .foot .table-area table {
  width: 100%;
}

.section-campaign-202204 .block .foot .table-area table th {
  border-right: 1px solid #8a8a8a;
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  padding-left: 0.2em;
  width: 140px;
  vertical-align: middle;
}

@media (max-width: 1024px) {
  .section-campaign-202204 .block .foot .table-area table th {
    border-right: none;
    font-size: 16px;
    display: block;
    padding-left: 0;
    margin-bottom: 14px;
    width: auto;
  }
}

.section-campaign-202204 .block .foot .table-area table td {
  font-size: 15px;
  padding-left: 20px;
}

@media (max-width: 1024px) {
  .section-campaign-202204 .block .foot .table-area table td {
    font-size: 13px;
    display: block;
    padding-left: 0;
    margin-bottom: 15px;
  }
}

.section-campaign-202204 .block .foot .table-area table td dl dd {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 3px;
}

.section-campaign-202204 .block .foot .table-area table td dl dd strong {
  color: #ef2d48;
}

.section-campaign-202204 .block .foot .btn-area {
  text-align: center;
  margin-left: auto;
  width: 370px;
}

@media (max-width: 1024px) {
  .section-campaign-202204 .block .foot .btn-area {
    width: auto;
  }
}

.section-campaign-202204 .block .foot .btn-area .btn {
  background-color: #ef2d48;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  padding: 23px;
  width: 300px;
  white-space: nowrap;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}

@media (max-width: 1024px) {
  .section-campaign-202204 .block .foot .btn-area .btn {
    font-size: 16px;
    display: block;
    padding: 15px;
    width: 100%;
  }
}

.section-campaign-202204 .block .foot .btn-area .btn .btn-arrow {
  display: inline-block;
  padding-right: 14px;
  position: relative;
}

.section-campaign-202204 .block .foot .btn-area .btn .btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 0;
}

.section-campaign-202204 .note dd {
  font-size: 13px;
  text-indent: -1em;
  padding-left: 1em;
}

.section-campaign-202204 .note dd.fc-red {
  color: #ef2d48;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .section-campaign-202204 .note dd {
    font-size: 12px;
  }
}

/* search
----------------------------------------------- */
.section-search {
  background-color: #ecfbf8;
  position: relative;
}

.section-search h3 {
  background: #03afe1;
  background: -moz-linear-gradient(left, #03afe1 0%, #0ad1a9 100%);
  background: -webkit-linear-gradient(left, #03afe1 0%, #0ad1a9 100%);
  background: linear-gradient(to right, #03afe1 0%, #0ad1a9 100%);
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 12px;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .section-search h3 {
    font-size: 16px;
    margin: 0 -15px 20px;
    position: relative;
  }
}

.section-search h4 {
  border-left: 5px solid #0ad1a9;
  font-size: 22px;
  margin-bottom: 25px;
  padding-left: 15px;
  padding-bottom: 2px;
}

@media (max-width: 767px) {
  .section-search h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.section-search .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .section-search .block {
    display: block;
  }
}

@media (max-width: 767px) {
  .section-search .block .card {
    margin-bottom: 40px;
  }
}

.section-search .block .card .img {
  margin-bottom: 18px;
}

.section-search .block .card .img img {
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
}

@media (max-width: 767px) {
  .section-search .block .card .img img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
  }
}

.section-search .block .card .btns {
  text-align: center;
}

.section-search .block .card .btns .btn {
  background-color: #fff;
  border: 1px solid #0ad1a9;
  color: #0ad1a9;
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 15px;
  position: relative;
}

.section-search .block .card .btns .btn::after {
  right: 20px;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0ad1a9;
  border-right: 2px solid #0ad1a9;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.14s ease-out 0s;
  -moz-transition: all 0.14s ease-out 0s;
  -ms-transition: all 0.14s ease-out 0s;
  -o-transition: all 0.14s ease-out 0s;
  transition: all 0.14s ease-out 0s;
}

@media (max-width: 1024px) {
  .section-search .block .card .btns .btn::after {
    right: 10px;
  }
}

@media (min-width: 1025px) {
  .section-search .block .card .btns .btn:hover {
    background-color: #0ad1a9;
    color: #fff;
  }
  .section-search .block .card .btns .btn:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.section-search .block.block-1 {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .section-search .block.block-1 {
    margin-bottom: 40px;
  }
}

.section-search .block.block-1 .card {
  margin-right: 4%;
  width: 48%;
}

.section-search .block.block-1 .card:last-child {
  margin-right: auto;
}

@media (max-width: 767px) {
  .section-search .block.block-1 .card {
    margin-right: auto;
    width: 100%;
  }
}

.section-search .block.block-1 .card .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.section-search .block.block-1 .card .btns .btn {
  margin-right: 3%;
  width: 48.5%;
}

.section-search .block.block-1 .card .btns .btn:last-child {
  margin-right: auto;
}

.section-search .block.block-2 {
  margin-bottom: 90px;
}

@media (max-width: 767px) {
  .section-search .block.block-2 {
    margin-bottom: 40px;
  }
}

.section-search .block.block-2 .card {
  margin-right: 2%;
  width: 32%;
}

.section-search .block.block-2 .card:last-child {
  margin-right: auto;
}

@media (max-width: 767px) {
  .section-search .block.block-2 .card {
    margin-right: auto;
    margin-bottom: 40px;
    width: 100%;
  }
}

.section-search .search-area-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-search .search-area-list li {
  margin-bottom: 20px;
  margin-right: 1.733%;
  width: 23.7%;
}

@media (max-width: 767px) {
  .section-search .search-area-list li {
    margin-bottom: 12px;
    margin-right: 3%;
    width: 48.5%;
  }
  .section-search .search-area-list li:nth-child(even) {
    margin-right: auto;
  }
}

.section-search .search-area-list li:nth-child(4n) {
  margin-right: auto;
}

.section-search .search-area-list li a {
  background-color: #fff;
  border: 1px solid #0ad1a9;
  color: #0ad1a9;
  font-size: 16px;
  font-weight: 500;
  display: block;
  text-align: center;
  padding: 15px;
  position: relative;
}

.section-search .search-area-list li a::after {
  right: 20px;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0ad1a9;
  border-right: 2px solid #0ad1a9;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.14s ease-out 0s;
  -moz-transition: all 0.14s ease-out 0s;
  -ms-transition: all 0.14s ease-out 0s;
  -o-transition: all 0.14s ease-out 0s;
  transition: all 0.14s ease-out 0s;
}

@media (max-width: 1024px) {
  .section-search .search-area-list li a::after {
    right: 10px;
  }
}

@media (min-width: 1025px) {
  .section-search .search-area-list li a:hover {
    background-color: #0ad1a9;
    color: #fff;
  }
  .section-search .search-area-list li a:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.section-search .btn-area {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .section-search .btn-area {
    margin-top: 20px;
  }
}

.section-search .btn-area .btn {
  background-color: #ffdc1a;
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  width: 420px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 0 #c0b111;
  -moz-box-shadow: 0 2px 0 #c0b111;
  -ms-box-shadow: 0 2px 0 #c0b111;
  box-shadow: 0 2px 0 #c0b111;
}

@media (max-width: 767px) {
  .section-search .btn-area .btn {
    font-size: 18px;
    width: 100%;
  }
}

.section-search .btn-area .btn:hover {
  color: #232f3e;
}

@media (min-width: 1025px) {
  .section-search .btn-area .btn:hover {
    background-color: #ffe553;
  }
}

.section-search .btn-area .btn .btn-icon {
  background: url("../images/icon_search.png") no-repeat 0 50%/23px 23px;
  display: inline-block;
  padding: 5px 0 5px 30px;
}

@media (max-width: 767px) {
  .section-search .btn-area .btn .btn-icon {
    background-size: 20px 20px;
    padding: 3px 0 3px 28px;
  }
}

/* flow
----------------------------------------------- */
.section-flow .flow-list li {
  border-bottom: 1px dashed #cccccc;
  padding-bottom: 55px;
  padding-top: 55px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .section-flow .flow-list li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: start;
    -moz-align-items: start;
    -ms-align-items: start;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .section-flow .flow-list li {
    display: block;
    padding-bottom: 35px;
    padding-top: 35px;
  }
}

.section-flow .flow-list li::before, .section-flow .flow-list li::after {
  content: "";
  background-color: #00a2f4;
  height: 50%;
  position: absolute;
  left: 44px;
  width: 3px;
}

@media (max-width: 1024px) {
  .section-flow .flow-list li::before, .section-flow .flow-list li::after {
    content: none;
  }
}

.section-flow .flow-list li::before {
  top: 0;
}

.section-flow .flow-list li::after {
  bottom: -1px;
}

.section-flow .flow-list li:first-child {
  padding-top: 0;
}

.section-flow .flow-list li:first-child::before {
  content: none;
}

.section-flow .flow-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.section-flow .flow-list li:last-child::after {
  content: none;
}

.section-flow .flow-list li .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  width: 200px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .section-flow .flow-list li .step {
    display: block;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
  }
}

.section-flow .flow-list li .step img {
  width: 90px;
}

@media (max-width: 1024px) {
  .section-flow .flow-list li .step img {
    width: 70px;
  }
}

.section-flow .flow-list li .step span {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-left: 15px;
}

@media (max-width: 1024px) {
  .section-flow .flow-list li .step span {
    display: block;
    margin-left: auto;
    margin-top: 10px;
  }
}

.section-flow .flow-list li .txt {
  flex: 1;
  padding-right: 30px;
}

@media (max-width: 767px) {
  .section-flow .flow-list li .txt {
    margin-bottom: 20px;
    padding-right: 0;
  }
}

.section-flow .flow-list li .txt p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .section-flow .flow-list li .txt p {
    font-size: 14px;
  }
}

.section-flow .flow-list li .txt .title {
  color: #00a2f4;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .section-flow .flow-list li .txt .title {
    font-size: 18px;
    text-align: center;
  }
}

.section-flow .flow-list li .txt .title .map-link {
  float: right;
}

@media (max-width: 767px) {
  .section-flow .flow-list li .txt .title .map-link {
    display: block;
    float: none;
    text-align: right;
  }
}

.section-flow .flow-list li .txt .title .map-link a {
  background: url("../images/mappin.png") no-repeat 0 50%/9px 13px;
  color: #ea4335;
  font-size: 12px;
  font-weight: normal;
  padding: 0px 0 3px 13px;
  text-decoration: underline;
}

.section-flow .flow-list li .txt .title .map-link a:hover {
  text-decoration: none;
}

.section-flow .flow-list li .img {
  width: 32%;
}

@media (max-width: 767px) {
  .section-flow .flow-list li .img {
    text-align: center;
    width: auto;
  }
}

.section-flow .flow-list li .img img {
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
}

@media (max-width: 767px) {
  .section-flow .flow-list li .img img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
  }
}

/* reason
----------------------------------------------- */
.section-reason {
  background: #03afe1;
  background: -moz-linear-gradient(left, #03afe1 0%, #0ad1a9 100%);
  background: -webkit-linear-gradient(left, #03afe1 0%, #0ad1a9 100%);
  background: linear-gradient(to right, #03afe1 0%, #0ad1a9 100%);
  padding-bottom: 70px;
}

.section-reason .inner {
  max-width: 980px;
}

.section-reason .heading-2 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-reason .heading-2 {
    margin-bottom: 20px;
  }
}

.section-reason .heading-2 .ja {
  color: #fff;
}

.section-reason .heading-2 + p {
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 110px;
  text-align: center;
}

@media (max-width: 767px) {
  .section-reason .heading-2 + p {
    margin-bottom: 70px;
  }
}

.section-reason .flex {
  width: 100%;
	justify-content: center;
}

@media (max-width: 767px) {
  .section-reason .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.section-reason .flex .card {
  background-color: #fff;
  margin-right: 4%;
  margin-bottom: 60px;
  padding: 0 30px 30px;
  width: 48%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .section-reason .flex .card {
    margin-right: auto;
    padding: 0 20px 30px;
    width: 100%;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    border-radius: 14px;
    -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
  }
}

.section-reason .flex .card:last-child {
}

.section-reason .flex .card .img {
  position: relative;
  margin-top: -70px;
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .section-reason .flex .card .img {
    margin-top: -50px;
    margin-bottom: 15px;
  }
  .section-reason .flex .card .img img {
    width: 260px;
  }
}

.section-reason .flex .card h3 {
  font-size: 21px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .section-reason .flex .card h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.section-reason .flex .card p {
  line-height: 1.7;
  margin-bottom: 0;
}

.section-reason .flex.block-2 .card .img {
  margin-top: -50px;
}

/* follow us
----------------------------------------------- */
@media (max-width: 767px) {
  .section-followus .heading-2 {
    margin-bottom: 30px;
  }
}

.section-followus .sns-links {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 90px;
}

@media (max-width: 767px) {
  .section-followus .sns-links {
    margin-bottom: 40px;
  }
}

.section-followus .sns-links li {
  font-size: 14px;
  display: inline-block;
  padding: 0 7px;
}

.section-followus .instagram-list {
  margin: 0 auto;
}

.section-followus .instagram-list .instagram-list-item {
  padding: 0 4px;
  margin-bottom: 8px;
  width: 25%;
}

@media (max-width: 1024px) {
  .section-followus .instagram-list .instagram-list-item {
    padding: 0 2px;
    margin-bottom: 4px;
    width: 33.333%;
  }
}

.section-followus .instagram-list .grid-sizer {
  width: 25%;
}

@media (max-width: 1024px) {
  .section-followus .instagram-list .grid-sizer {
    width: 33.333%;
  }
}

.section-followus .btn-area {
  padding-top: 40px;
}

@media (max-width: 767px) {
  .section-followus .btn-area {
    padding-top: 30px;
  }
}

.section-followus .btn {
  border: 1px solid #0ad1a9;
  color: #0ad1a9;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 13px 0;
  width: 200px;
  white-space: nowrap;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.section-followus .btn::after {
  right: 20px;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0ad1a9;
  border-right: 2px solid #0ad1a9;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.section-followus .btn .btn-icon {
  background: url("../images/icon_camera.png") no-repeat 0 50%/22px 17px;
  display: inline-block;
  padding: 2px 0 2px 30px;
  white-space: nowrap;
}

/* contact
----------------------------------------------- */
.section-contact {
  background: url("../images/contact_bg.jpg") no-repeat 50% 50%/cover;
  text-align: center;
}

.section-contact .inner {
  max-width: 980px;
}

.section-contact .heading-2 {
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .section-contact .heading-2 {
    margin-bottom: 10px;
  }
}

.section-contact .heading-2 + p {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .section-contact .heading-2 + p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.section-contact .flex {
  width: 100%;
}

@media (max-width: 767px) {
  .section-contact .flex {
    display: block;
  }
}

.section-contact .flex .card {
  background-color: #fff;
  margin-right: 3%;
  padding: 30px 40px 35px;
  width: 48.5%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .section-contact .flex .card {
    padding: 30px 20px 35px;
  }
}

@media (max-width: 767px) {
  .section-contact .flex .card {
    margin-right: auto;
    margin-bottom: 20px;
    padding: 20px 20px 25px;
    width: auto;
  }
}

.section-contact .flex .card:last-child {
  margin-right: auto;
}

.section-contact .flex .card h3 {
  margin-bottom: 15px;
}

.section-contact .flex .card .contact-tel {
  padding-top: 5px;
}

@media (max-width: 767px) {
  .section-contact .flex .card .contact-tel {
    padding-top: 0;
  }
}

.section-contact .flex .card .contact-tel a {
  background: url("../images/icon_freedail.png") no-repeat 0 55%/38px 25px;
  display: inline-block;
  font-size: 38px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #00a2f4;
  padding: 0 0 0 46px;
}

@media (max-width: 1024px) {
  .section-contact .flex .card .contact-tel a {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .section-contact .flex .card .contact-tel a {
    font-size: 29px;
    background-size: 32px 20px;
    padding-left: 40px;
  }
}

.section-contact .flex .card .contact-form a {
  background-color: #00a2f4;
  color: #fff;
  font-weight: 500;
  display: block;
  line-height: 1;
  padding: 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}

@media (min-width: 1025px) {
  .section-contact .flex .card .contact-form a:hover {
    background-color: rgba(0, 162, 244, 0.8);
  }
}

.section-contact .flex .card .contact-form a span {
  background-image: url("../images/icon_mail.png"), url("../images/icon_window01.png");
  background-position: left 2px, right 70%;
  background-repeat: no-repeat, no-repeat;
  background-size: 18px 14px,11px 9px;
  display: inline-block;
  padding: 0 18px 0 28px;
}

/* ==============================================
 Footer
=============================================== */
.site-footer {
  padding-top: 100px;
  padding-bottom: 80px;
}

@media (max-width: 1024px) {
  .site-footer {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

.site-footer .footer-info {
  float: left;
  width: 49%;
}

@media (max-width: 767px) {
  .site-footer .footer-info {
    float: none;
    width: auto;
  }
}

.site-footer .footer-info h1 {
  font-size: 20px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .site-footer .footer-info h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.site-footer .footer-info .footer-address {
  font-style: normal;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .site-footer .footer-info .footer-address {
    font-size: 14px;
  }
}

.site-footer .footer-info .footer-address small {
  font-size: 85%;
  display: block;
  margin-top: 10px;
}

.site-footer .footer-info .footer-tel {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .site-footer .footer-info .footer-tel {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.site-footer .footer-info .footer-tel .tel {
  margin-right: 20px;
}

@media (max-width: 1024px) {
  .site-footer .footer-info .footer-tel .tel {
    display: block;
    margin-right: 0;
  }
}

@media (max-width: 1024px) {
  .site-footer .footer-info .footer-tel .fax {
    display: block;
  }
}

.site-footer .footer-info .footer-tel .tel-number {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #0ad1a9;
  font-size: 21px;
}

@media (max-width: 767px) {
  .site-footer .footer-info .footer-tel .tel-number {
    font-size: 20px;
  }
}

.site-footer .footer-info .footer-menu {
  font-size: 0;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .site-footer .footer-info .footer-menu {
    margin-bottom: 40px;
  }
}

.site-footer .footer-info .footer-menu li {
  border-right: 1px solid #ddd;
  line-height: 1;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-right: 12px;
  padding-right: 12px;
}

@media (max-width: 767px) {
  .site-footer .footer-info .footer-menu li {
    margin-bottom: 10px;
  }
}

.site-footer .footer-info .footer-menu li:last-child {
  border-right: none;
  margin-right: auto;
  padding-right: 0;
}

.site-footer .footer-info .footer-menu li a {
  background: url("../images/icon_window02.png") no-repeat 100% 50%/11px 9px;
  padding-right: 20px;
}

.site-footer .footer-map {
  float: right;
  width: 49%;
}

.site-footer .footer-map .ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.site-footer .footer-map .ggmap iframe,
.site-footer .footer-map .ggmap object,
.site-footer .footer-map .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .site-footer .footer-map {
    float: none;
    width: auto;
  }
}

.site-footer .copyright {
  font-size: 11px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .site-footer .copyright {
    clear: both;
    position: static;
    text-align: center;
    padding-top: 30px;
  }
}

/* ==============================================
 Media Queries
=============================================== */
/* hidden
----------------------------------------------- */
@media screen and (min-width: 1025px) {
  .hidden-lg {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
}

@media screen and (min-width: 544px) and (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
}

@media screen and (max-width: 543px) {
  .hidden-xs {
    display: none !important;
  }
}

/* column
----------------------------------------------- */
.col-lg-1 {
  width: 12%;
}

.col-lg-2 {
  width: 16.6666%;
}

.col-lg-3 {
  width: 25%;
}

.col-lg-4 {
  width: 33.3333%;
}

.col-lg-5 {
  width: 41.6666%;
}

.col-lg-6 {
  width: 50%;
}

.col-lg-7 {
  width: 57.0833%;
}

.col-lg-8 {
  width: 66.6667%;
}

.col-lg-9 {
  width: 75%;
}

.col-lg-10 {
  width: 83.3334%;
}

.col-lg-11 {
  width: 91.6666%;
}

.col-lg-12 {
  width: 100%;
}

/* pc min
----------------------------------------------- */
@media screen and (max-width: 1024px) {
  html.sp-nav-open,
  body.sp-nav-open {
    overflow: hidden !important;
  }
  /* column
  ----------------------------------------------- */
  .col-md-1 {
    width: 12%;
  }
  .col-md-2 {
    width: 16.6666%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333%;
  }
  .col-md-5 {
    width: 41.6666%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 57.0833%;
  }
  .col-md-8 {
    width: 66.6667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3334%;
  }
  .col-md-11 {
    width: 91.6666%;
  }
  .col-md-12 {
    width: 100%;
  }
}

/* tablet
----------------------------------------------- */
@media screen and (max-width: 767px) {
  /* ==============================================
     Layout
    =============================================== */
  /* column
    ----------------------------------------------- */
  .col-sm-1 {
    width: 12%;
  }
  .col-sm-2 {
    width: 16.6666%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333%;
  }
  .col-sm-5 {
    width: 41.6666%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 57.0833%;
  }
  .col-sm-8 {
    width: 66.6667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3334%;
  }
  .col-sm-11 {
    width: 91.6666%;
  }
  .col-sm-12 {
    width: 100%;
  }
}

/* column
----------------------------------------------- */
@media screen and (max-width: 340px) {
  /* column
    ----------------------------------------------- */
  .col-xs-1 {
    width: 12%;
  }
  .col-xs-2 {
    width: 16.6666%;
  }
  .col-xs-3 {
    width: 25%;
  }
  .col-xs-4 {
    width: 33.3333%;
  }
  .col-xs-5 {
    width: 41.6666%;
  }
  .col-xs-6 {
    width: 50%;
  }
  .col-xs-7 {
    width: 57.0833%;
  }
  .col-xs-8 {
    width: 66.6667%;
  }
  .col-xs-9 {
    width: 75%;
  }
  .col-xs-10 {
    width: 83.3334%;
  }
  .col-xs-11 {
    width: 91.6666%;
  }
  .col-xs-12 {
    width: 100%;
  }
}

/************************************************
 印刷用
************************************************ */
@media print {
  body {
    zoom: 75%;
  }
}
