/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* メニューは初期は必ず非表示 */
#fixed {
  display: none;
}

#fixed.is-open {
  display: block;
}

/*-------------------------*/
/* +UTILS                  */
/*-------------------------*/
.fx-txt-left {
  text-align: left;
}

.fx-txt-right {
  text-align: right;
}

.fx-txt-center {
  text-align: center;
}

.fx-ellip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fx-left {
  float: left;
}

.fx-right {
  float: right;
}

.fx-center {
  margin: auto;
}

.fx-clearfix:before,
.fx-clearfix:after {
  content: "";
  display: table;
}

.fx-clearfix:after {
  clear: both;
}

.fx-clear {
  clear: both;
}

.fx-inline {
  display: inline;
}

.fx-inlineb {
  display: inline-block;
}

.fx-valign {
  vertical-align: middle;
}

/*-------------------------*/
/* +GRID                   */
/*-------------------------*/
.fx-row {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.fx-row+.fx-row {
  margin-top: 0;
}

.fx-row-start-xs {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.fx-row-center-xs {
  -ms-flex-pack: center;
  justify-content: center;
}

.fx-row-end-xs {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fx-row-between-xs {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fx-row-around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media screen and (min-width: 768px) {
  .fx-row-start-s {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .fx-row-center-s {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fx-row-end-s {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .fx-row-between-s {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .fx-row-around-s {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media screen and (min-width: 960px) {
  .fx-row-start-m {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .fx-row-center-m {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fx-row-end-m {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .fx-row-between-m {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .fx-row-around-m {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media screen and (min-width: 1280px) {
  .fx-row-start-l {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .fx-row-center-l {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fx-row-end-l {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .fx-row-between-l {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .fx-row-around-l {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.fx-row-reverse-xs {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .fx-row-reverse-s {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 960px) {
  .fx-row-reverse-m {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1280px) {
  .fx-row-reverse-l {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

[class*="fx-col"] {
  margin-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.fx-col-10-xs {
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
  max-width: 10%;
}

.fx-col-20-xs {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  max-width: 20%;
}

.fx-col-25-xs {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.fx-col-30-xs {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  max-width: 30%;
}

.fx-col-33-xs {
  -ms-flex-preferred-size: 33.3333%;
  flex-basis: 33.3333%;
  max-width: 33.3333%;
}

.fx-col-40-xs {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  max-width: 40%;
}

.fx-col-50-xs {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.fx-col-60-xs {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  max-width: 60%;
}

.fx-col-66-xs {
  -ms-flex-preferred-size: 66.6666%;
  flex-basis: 66.6666%;
  max-width: 66.6666%;
}

.fx-col-70-xs {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
  max-width: 70%;
}

.fx-col-75-xs {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.fx-col-80-xs {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  max-width: 80%;
}

.fx-col-90-xs {
  -ms-flex-preferred-size: 90%;
  flex-basis: 90%;
  max-width: 90%;
}

.fx-col-100-xs {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .fx-col-10-s {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }

  .fx-col-20-s {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }

  .fx-col-25-s {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .fx-col-30-s {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
  }

  .fx-col-33-s {
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .fx-col-35-s {
    -ms-flex-preferred-size: 40%;
    flex-basis: 35%;
    max-width: 35%;
  }

  .fx-col-40-s {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
  }

  .fx-col-46-s {
    -ms-flex-preferred-size: 46%;
    flex-basis: 46%;
    max-width: 46%;
  }

  .fx-col-50-s {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .fx-col-60-s {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
  }

  .fx-col-66-s {
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
  }

  .fx-col-70-s {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
  }

  .fx-col-75-s {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .fx-col-80-s {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
  }

  .fx-col-90-s {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
  }

  .fx-col-100-s {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .fx-col-10-m {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }

  .fx-col-20-m {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }

  .fx-col-25-m {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .fx-col-30-m {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
  }

  .fx-col-33-m {
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .fx-col-40-m {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
  }

  .fx-col-50-m {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .fx-col-60-m {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
  }

  .fx-col-66-m {
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
  }

  .fx-col-70-m {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
  }

  .fx-col-75-m {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .fx-col-80-m {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
  }

  .fx-col-90-m {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
  }

  .fx-col-100-m {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1280px) {
  .fx-col-10-l {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }

  .fx-col-20-l {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }

  .fx-col-25-l {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .fx-col-30-l {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
  }

  .fx-col-33-l {
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .fx-col-40-l {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
  }

  .fx-col-50-l {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .fx-col-60-l {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
  }

  .fx-col-66-l {
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
  }

  .fx-col-70-l {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
  }

  .fx-col-75-l {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .fx-col-80-l {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
  }

  .fx-col-90-l {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
  }

  .fx-col-100-l {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.fx-col-top-xs {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.fx-col-center-xs {
  -ms-flex-item-align: center;
  align-self: center;
}

.fx-col-bottom-xs {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

@media screen and (min-width: 768px) {
  .fx-col-top-s {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .fx-col-center-s {
    -ms-flex-item-align: center;
    align-self: center;
  }

  .fx-col-bottom-s {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}

@media screen and (min-width: 960px) {
  .fx-col-top-m {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .fx-col-center-m {
    -ms-flex-item-align: center;
    align-self: center;
  }

  .fx-col-bottom-m {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}

@media screen and (min-width: 1280px) {
  .fx-col-top-l {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .fx-col-center-l {
    -ms-flex-item-align: center;
    align-self: center;
  }

  .fx-col-bottom-l {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}

/* common.css */
/* CSS Document */

/*オリジナルリセットcss----------------------------------------------------------- */
p {
  margin-bottom: 0;
}

img {
  display: block;
}

/*デバイス共通----------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  /*font-family: "Yu Mincho", YuMincho, HG明朝B, "MS Mincho", serif;*/
  font-size: 1.8rem;
  line-height: 1.65;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

a,
a img {
  transition: all .3s;
}

a:hover,
a img:hover {
  opacity: 0.7;
}

.dib {
  display: inline-block;
}

.m0a {
  margin: 0 auto;
}

.mla {
  margin-left: auto;
}

.posr {
  position: relative;
}

.posa {
  position: absolute;
}

.imgr {
  display: block;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .sp_scroll {
    width: 100%;
    overflow-x: scroll;
  }

  .sp_scroll>* {
    min-width: 768px;
  }
}

/*テキスト関連----------------------------------------------------------- */
.fwb {
  font-weight: bold !important;
}

.underline {
  text-decoration: underline;
}

/*12px*/
.font_xs {
  font-size: 0.666em;
}

/*14px*/
.font_s {
  font-size: 0.777em;
}

/*21px*/
.font_m {
  font-size: 1.166em;
}

/*24px*/
.font_l {
  font-size: 1.333em;
}

/*36px*/
.font_xl {
  font-size: 2em;
}

@media screen and (max-width: 767px) {

  /*10px*/
  .font_xs {
    font-size: 0.625em;
  }

  /*12px*/
  .font_s {
    font-size: 0.75em;
  }

  /*20px*/
  .font_m {
    font-size: 1.25em;
  }

  /*24px*/
  .font_l {
    font-size: 1.5em;
  }

  /*32px*/
  .font_xl {
    font-size: 2em;
  }
}

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

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.shadow {
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}

.font_min {
  font-family: "Yu Mincho", YuMincho, HG明朝B, "MS Mincho", serif;
}

.font_go {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.note {
  position: relative;
  font-size: 0.777em;
  padding-left: 1em;
}

.note:before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
  font-size: 1em;
  line-height: 1.554em;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .tab_shadow {
    text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  }
}

@media screen and (max-width: 767px) {
  .sp_tal {
    text-align: left !important;
  }

  .sp_shadow {
    text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  }
}

/*余白&幅調整----------------------------------------------------------- */
.mt0 {
  margin-top: 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt45 {
  margin-top: 45px;
}

.mt60 {
  margin-top: 60px;
}

.mt75 {
  margin-top: 75px;
}

.mt90 {
  margin-top: 90px;
}

.mt120 {
  margin-top: 120px;
}

.mb0 {
  margin-bottom: 0;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb120 {
  margin-bottom: 120px;
}

.pt0 {
  padding-top: 0;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt45 {
  padding-top: 45px;
}

.pt60 {
  padding-top: 60px;
}

.pt75 {
  padding-top: 75px;
}

.pt90 {
  padding-top: 90px;
}

.pt120 {
  padding-top: 120px;
}

.pb0 {
  padding-bottom: 0;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb75 {
  padding-bottom: 75px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb120 {
  padding-bottom: 120px;
}

.pl0 {
  padding-left: 0;
}

.pr0 {
  padding-right: 0;
}

.ph0 {
  padding-left: 0;
  padding-right: 0;
}

.ph15 {
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 767px) {
  .spmt0 {
    margin-top: 0;
  }

  .spmt5 {
    margin-top: 5px;
  }

  .spmt10 {
    margin-top: 10px;
  }

  .spmt15 {
    margin-top: 15px;
  }

  .spmt20 {
    margin-top: 20px;
  }

  .spmt30 {
    margin-top: 30px;
  }

  .spmt45 {
    margin-top: 45px;
  }

  .spmt60 {
    margin-top: 60px;
  }

  .spmb0 {
    margin-bottom: 0;
  }

  .spmb5 {
    margin-bottom: 5px;
  }

  .spmb10 {
    margin-bottom: 10px;
  }

  .spmb15 {
    margin-bottom: 15px;
  }

  .spmb20 {
    margin-bottom: 20px;
  }

  .spmb30 {
    margin-bottom: 30px;
  }

  .spmb45 {
    margin-bottom: 45px;
  }

  .spmb60 {
    margin-bottom: 60px;
  }

  .sppt0 {
    padding-top: 0;
  }

  .sppt5 {
    padding-top: 5px;
  }

  .sppt10 {
    padding-top: 10px;
  }

  .sppt15 {
    padding-top: 15px;
  }

  .sppt20 {
    padding-top: 20px;
  }

  .sppt30 {
    padding-top: 30px;
  }

  .sppt45 {
    padding-top: 45px;
  }

  .sppt60 {
    padding-top: 60px;
  }

  .sppb0 {
    padding-bottom: 0;
  }

  .sppb5 {
    padding-bottom: 5px;
  }

  .sppb10 {
    padding-bottom: 10px;
  }

  .sppb15 {
    padding-bottom: 15px;
  }

  .sppb20 {
    padding-bottom: 20px;
  }

  .sppb30 {
    padding-bottom: 30px;
  }

  .sppb45 {
    padding-bottom: 45px;
  }

  .sppb60 {
    padding-bottom: 60px;
  }

  .sppl0 {
    padding-left: 0;
  }

  .sppr0 {
    padding-right: 0;
  }

  .spph0 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .spwd50 {
    width: 50% !important;
  }

  .spwd60 {
    width: 60% !important;
  }

  .spwd70 {
    width: 70% !important;
  }

  .spwd80 {
    width: 80% !important;
  }

  .spwd90 {
    width: 90% !important;
  }
}

/*見出し----------------------------------------------------------- */
h1,
h2,
h3 {
  letter-spacing: -0.05em;
  line-height: 1.4;
}

h2 {
  margin: 0;
  padding: 0 0 45px;
  text-align: center;
}

h3 {
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 959px) {
  h2 {
    padding: 0 0 45px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    padding: 0 0 30px;
  }
}

/*ボタン----------------------------------------------------------- */
.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  background: #25ad38;
  margin: 0 auto;
  border: 3px solid #25ad38;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 190%;
  font-family: inherit;
  padding: 5px;
  transition: all 0.2s ease;
  cursor: pointer;
  -webkit-box-shadow: 0px 4px 0px #197827;
  box-shadow: 0px 4px 0px #197827;
  text-align: center;
  padding: 10px 0;
  position: relative;
  width: 100%;
}

.btn a {
  color: #FFF;
}

.btn:focus {
  color: #FFF;
  text-decoration: none;
}

.btn:hover {
  background: #45ba55;
  border: 3px solid #45ba55;
  -webkit-box-shadow: 0px 4px 0px #236251;
  box-shadow: 0px 4px 0px #236251;
  color: #FFF;
  text-decoration: none;
}

.btn img {
  position: absolute;
  right: 5px;
  width: 20%;
  top: -12px;
}

.btn_gradient {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  background: #2d660a;
  background: -moz-linear-gradient(#5edd00 0%, #2d660a 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#5edd00), to(#2d660a));
  background: -webkit-linear-gradient(#5edd00 0%, #2d660a 100%);
  background: -o-linear-gradient(#5edd00 0%, #2d660a 100%);
  background: -ms-linear-gradient(#5edd00 0%, #2d660a 100%);
  background: linear-gradient(#5edd00 0%, #2d660a 100%);
}

button {
  margin: 0 auto;
  text-align: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: 100%;
}

button img:hover {
  opacity: .7;
}

/*Page Top----------------------------------------------------------- */
/*TOPへ戻る*/
.pagetop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
}

.pagetop a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #153aa1;
  border-radius: 50%;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

.pagetop a:before {
  position: absolute;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #fff;
  top: 50%;
  right: 50%;
  transform: translateX(50%) translateY(-60%);
}

.pagetop a:hover {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.pagetop a:link,
.pagetop a:visited {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 20px;
    right: 5px;
  }
}

/*ページ下部固定部分----------------------------------------------------------- */
.btm_fix {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 998;
}

.btm_fix a {
  width: 50%;
  min-width: 400px;
}

@media screen and (max-width: 767px) {
  .btm_fix a {
    width: 90%;
    min-width: inherit;
    font-size: 1.2em;
  }
}

/*white-box----------------------------------------------------------- */
.white_box {
  padding: 45px;
  background-color: #fff;
  margin-bottom: 30px;
}

.white_box_l {
  padding: 60px;
  background-color: #fff;
  margin-bottom: 30px;
}

.white_box_s {
  padding: 30px;
  background-color: #fff;
  margin-bottom: 30px;
}

.white_box_xs {
  padding: 15px;
  background-color: #fff;
  margin-bottom: 30px;
}

.white_box:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 959px) {
  .white_box {
    padding: 30px;
    margin-bottom: 15px;
  }

  .white_box_l {
    padding: 45q;
    margin-bottom: 30px;
  }

  .white_box_s,
  .white_box_xs {
    padding: 15px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {

  .white_box,
  .white_box_s,
  .white_box_xs {
    padding: 15px;
    margin-bottom: 15px;
  }

  .white_box_l {
    padding: 30px;
    margin-bottom: 15px;
  }
}

/*背景左右はみだし----------------------------------------------------------- */
.white_box.bg_over_l,
.white_box.bg_over_l>*,
.white_box.bg_over_r,
.white_box.bg_over_r>* {
  position: relative;
  z-index: 1;
}

.white_box.bg_over_l:before {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  width: 50vw;
  top: 0;
  left: 50%;
  transform: translateX(-50vw);
  background-color: #eeeef5;
  z-index: 0;
}

.white_box.bg_over_r:before {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  width: 50vw;
  top: 0;
  right: 0;
  transform: translateX(50vw);
  background-color: #eeeef5;
  z-index: 0;
}

/* 画像カバースライドイン */
.slidein {
  width: 100%;
  overflow: hidden;
}

.slidein .slidein_inner {
  width: inherit;
  height: inherit;
  opacity: 0;
}

.isPlay {
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8, 0, .5, 1);
  position: relative;
  opacity: 1 !important;
}

.isPlay:before {
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8, 0, .5, 1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(109.6deg, rgba(156, 252, 248, 1) 11.2%, rgba(110, 123, 251, 1) 91.1%);
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

/* 画像フェードイン */
.fadein {
  width: 100%;
  overflow: hidden;
}

.fadein .fadein_inner {
  width: inherit;
  height: inherit;
  opacity: 0;
}

.isfadein {
  animation-name: fadein;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8, 0, .5, 1);
  position: relative;
  opacity: 1;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*check_list----------------------------------------------------------- */
.check_list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 3px;
}

.check_list li:last-child {
  margin-bottom: 0;
}

.check_list li:before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0;
  left: 0;
  color: orange;
}

.list_border {
  border-bottom: 2px dashed #000;
}

.list_border_stop {
  border-bottom: 2px dashed #000;
  display: inline-block;
}

/*FOXcss追加スタイル----------------------------------------------------------- */
.fx-row-gutter-s {
  margin-left: -8px;
  margin-right: -8px;
}

.fx-row-gutter-s li {
  padding-left: 8px;
  padding-right: 8px;
}

.fx-row-gutter-xs {
  margin-left: -5px;
  margin-right: -5px;
}

.fx-row-gutter-xs li {
  padding-left: 5px;
  padding-right: 5px;
}

/*タブ切り替え----------------------------------------------------------- */
.tabs {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.tab_item {
  width: 50%;
  height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

.tab_item:hover {
  opacity: 0.75;
}

input[name="tab_item"] {
  display: none;
}

.tab_content {
  display: none;
  padding: 45px;
  clear: both;
  overflow: hidden;
}

#tab1:checked~#tab1_content,
#tab2:checked~#tab2_content,
#design:checked~#design_content {
  display: block;
}

.tabs input:checked+.tab_item {
  background-color: #5ab4bd;
  color: #fff;
}

/*Container / Break----------------------------------------------------------- */
@media (min-width: 1200px) {
  .container {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .container2 {
    width: 1100px;
    margin: 0 auto;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .p_none {
    display: none;
  }

  .pt_none {
    display: none;
  }

  .ps_none {
    display: none;
  }

  .t_none {
    display: block;
  }

  .ts_none {
    display: block;
  }

  .s_none {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body {
    overflow-x: hidden;
  }

  .container {
    margin: 0 auto;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .container2 {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .p_none {
    display: block;
  }

  .pt_none {
    display: none;
  }

  .ps_none {
    display: block;
  }

  .t_none {
    display: none;
  }

  .ts_none {
    display: none;
  }

  .s_none {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
    display: block;
    max-width: 767px;
  }

  .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .container2 {
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .mv_row {
    flex-direction: column;
    gap: 20px!important;
  }

  .p_none {
    display: block;
  }

  .pt_none {
    display: block;
  }

  .ps_none {
    display: none;
  }

  .t_none {
    display: block;
  }

  .ts_none {
    display: none;
  }

  .s_none {
    display: none;
  }
}

/* style.css */
/*セクション間余白----------------------------------------------------------- */
section {
  padding: 100px 0;
}

footer {
  padding: 45px 0;
}

/*色関連----------------------------------------------------------- */
.bg_cl1 {
  background-color: #273e76 !important;
}

.bg_cl2 {
  background-color: #f2f7fc;
}

.cl_base {
  color: #273e76;
}

.cl_main {
  color: #ef3300;
}

.cl_accent {
  color: #4265a1;
}

.cl_other1 {
  color: #4265a1;
}

.cl_other2 {
  color: #4265a1;
}

.cl_white {
  color: #FFF;
}

/*テキスト関連----------------------------------------------------------- */
.highlight {
  background: -webkit-linear-gradient(transparent 50%, #f1cd08 50%);
  background: -o-linear-gradient(transparent 50%, #f1cd08 50%);
  background: linear-gradient(transparent 50%, #f1cd08 50%);
  font-weight: bold;
}

/*リンク色----------------------------------------------------------- */
a:link,
a:visited {
  color: #162bee;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/*Page Top----------------------------------------------------------- */
.pagetop a {
  background-color: #273e76;
}

/*Header----------------------------------------------------------- */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99999;
}

#header {
  width: 100%;
  height: auto;
}

.mobile body.header_fix_mobile #header:hover {
  background-color: #273e76 !important;
}

header .logo {
  height: 60px;
  display: flex;
  align-items: center;
  padding-right: 15px;
}

header .container {
  display: flex;
  justify-content: space-between;
  padding: 15px 15px;
}

header .contact {
  display: flex;
  align-items: center;
  text-align: right;
}

header .tel {
  padding-right: 15px;
  line-height: 1.1;
}

header .contact_tel {
  font-size: 3.2rem;
}

.BtnTel,
.BtnTel--blog,
.BtnTel--cta {
  font-weight: 700;
  font-size: 2.8rem;
  display: block;
  line-height: 1.3;
  position: relative;
  padding-left: 47px;
}

@media (min-width: 1200px) {
  #header {
    height: 90px;
  }
}

/*MV----------------------------------------------------------- */
.mv {
  padding: 33px 0 0;
  background: url(../img/pc_mv_bg.png) no-repeat center top;
}

.mv2 {
  padding: 60px 0 0;
  background: url(../img/pc_mv_bg2.png) no-repeat center top;
}

.mv_b {
  margin-top: 60px;
  background-color: rgba(39, 62, 118, .8);
  padding: 43px 0 60px;
}

.mv_b ul {
  display: flex;
  justify-content: space-between;
}

.link_btn a {
  display: inline-block;
}

.link_btn a:hover img {
  opacity: 1;
}

.mv_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mv_left {
  flex: 1 1 52%;
}

.mv_right {
  flex: 1 1 48%;
}

.mv_monitor {
  position: relative;
  width: 100%;
  max-width: 520px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.mv_monitor_frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
}

.mv_video {
  position: absolute;
  z-index: 1;
  top: 6%;
  left: 1%;
  width: 97%;
  height: 70%;
  object-fit: cover;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  background: #ffffff;
}

@media (min-width: 1200px) {
  .mv .mv_txt {
    position: relative;
    left: -30px;
  }
}

/*CTA----------------------------------------------------------- */
.cta {
  padding: 120px 0 60px;
  background: url(../img/pc_cta_bg.jpg) no-repeat center/cover;
}

.cta .box {
  background-color: #FFF;

  padding: 50px 90px;
  font-size: 24px;
  font-weight: bold;
}

.cta .box .fa-check {
  color: #f06009;
  margin-right: 10px;
}

.cta ul {
  display: flex;
  flex-wrap: wrap;
}

.cta ul li {
  margin-right: 38px;
}

.cta ul.ul02 li:nth-of-type(1) {
  width: 153px
}

.cta ul.ul02 li:nth-of-type(2) {
  width: 105px;
}

.cta ul.ul02 li:nth-of-type(3) {
  width: 107px;
}

@media (min-width: 1200px) {
  .cta .inner {
    width: 1000px;

    margin: 0 auto;
  }
}

/*CTA2----------------------------------------------------------- */


/*sec01----------------------------------------------------------- */
.sec01 {
  background: url(../img/pc_sec01_bg.png) no-repeat center/cover;
}

.sec01 .box {
  background-color: #FFF;
  border-radius: 5px;
  padding: 10px;
}

.sec01 .txt {
  padding: 30px 0;
}

/*sec02----------------------------------------------------------- */
.sec02 {
  background: url(../img/pc_sec02_bg.png) no-repeat center/cover;
}

.sec02 h3 {
  margin-bottom: 30px;
}

.sec02 .inner {
  position: relative;
  padding: 45px;
}

.sec02 .inner .left {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 45px;
  height: 4px;
  background-color: #f1cd08;
}

.sec02 .inner .left::after {
  content: "";
  position: absolute;
  display: flex;
  width: 4px;
  height: 45px;
  background-color: #f1cd08;
  display: block;
}

.sec02 .inner .right {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 45px;
  height: 4px;
  background-color: #f1cd08;
}

.sec02 .inner .right::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 4px;
  height: 45px;
  background-color: #f1cd08;
  display: block;
}

@media (min-width: 960px) {
  .sec02 .fx-col-40-s {
    flex-basis: 44%;
    max-width: 44%;
  }

  .sec02 .fx-col-60-s {
    flex-basis: 56%;
    max-width: 56%;
  }
}

/*sec03----------------------------------------------------------- */
.sec03 {
  position: relative;
  background: url(../img/pc_sec03_bg.png) no-repeat center/cover;
}

.sec03 h2 {
  padding-bottom: 0;
}

.sec03 .arrow {
  position: absolute;
  top: -45px;
  right: 0;
  left: 0;
}

.sec03 .white_box {
  background-color: #e5e5e5;
  padding: 60px;
}

.sec03 .white_box .f_item {
  margin-top: 30px;
}

/*sec04----------------------------------------------------------- */
.sec04 h2 {
  background: #273e76;
  position: relative;
  height: 235px;
}

.sec04 h2 img {
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
}

.sec04 .white_box {
  border: solid 4px #273e76;
  padding: 56px;
}

.sec04 .white_box:not(:last-child) {
  margin-bottom: 50px;
}

.sec04 .white_box:nth-of-type(2) .fx-row {
  margin-left: -8px;
  margin-right: -8px;
}

.sec04 .white_box:nth-of-type(2) .f_item {
  padding-left: 8px;
  padding-right: 8px;
}

/*sec05----------------------------------------------------------- */
.sec05 .txt {
  background-color: #FFF;
  padding: 30px 40px 45px;
  font-size: 22px;
}

.sec05 .box {
  margin-top: 15px;
}

.sec05 h2 {
  padding-bottom: 30px;
}


/*sec06----------------------------------------------------------- */
.sec06 h3 {
  margin-bottom: 60px;
}

.sec06 .box {
  background-color: #f2f7fb;
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .sec06 .inner {
    width: 870px;
    margin: 0 auto;
  }

  .sec06 .fx-col-60-s {
    flex-basis: 65%;
    max-width: 65%;
  }

  .sec06 .fx-col-40-s {
    flex-basis: 35%;
    max-width: 35%;
  }
}

/*sec07----------------------------------------------------------- */
.sec07 {
  background: url(../img/pc_sec07_bg.png) no-repeat center/cover;
}

.sec07 .box {
  position: relative;
}

.sec07 .box::after {
  position: absolute;
  content: "";
  width: 99%;
  height: 4px;
  background-color: #273e76;
  top: 63%;
}

.sec07 .inner {
  position: relative;
  z-index: 2;
}

.sec07 .txt {
  background-color: #FFF;
  padding: 16px;
}

/*sec08----------------------------------------------------------- */
.qa .q {
  background-color: #273e76;
}

.qa .q .txt {
  margin-left: 15px;
  font-size: 30px;
  color: #FFF;
  font-weight: bold;
}

.qa .a {
  margin-bottom: 30px;
}

.qa .a:last-of-type {
  margin-bottom: 0;
}

.qa .txt {
  margin-left: 15px;
}

.qa .box:not(:last-child) {
  margin-bottom: 30px;
}

.qa .box .a {
  background-color: #fafafa;
}

.qa .box_item {
  display: flex;
  align-items: center;
  padding: 20px 30px;
}

.qa .box .a .box_item {
  padding: 30px;
  align-items: flex-start;
}

.qa .qq .txt {
  margin: 0 auto;
}

.qa .icon {
  width: 69px;
  flex-shrink: 0;
}

/*sec09----------------------------------------------------------- */
.sec09 {
  background-color: #f2f7fc;
}

form>ul>li:first-child {
  border-top: 1px solid #ccc;
}

form>ul>li {
  padding: 30px 0;
  border-bottom: 1px solid #ccc;
}

form>ul>li.bb_none {
  border-bottom: none;
}

form>ul>li:nth-child(odd) {
  background-color: #f2f2f2;
}

form>ul>li .fx-row>*:first-child {
  padding-top: 6px;
}

.form_head {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  font-size: 1.6rem;
}

.form_head span {
  display: inline-block;
  font-weight: bold;
  margin-left: 10px;
}

.haveto {
  background-color: #e40d21;
  color: #fff;
  padding: 3px 8px;
  font-weight: bold;
  font-size: 0.8em;
}

.any {
  background-color: #0000ff;
  color: #fff;
  padding: 3px 8px;
  font-weight: bold;
  font-size: 0.8em;
}

.input_adjust {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.input_2col {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
  width: 100%;
}

.input_2col input {
  width: calc(50% - 15px);
}

.input_1col {
  padding-right: 30px;
}

.input_1col input {
  width: 96%;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.input_zip_2col input {
  width: 30%;
}

.input_pref {
  width: 50%;
}

.input_select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 12px 16px;
}

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

.input_select {
  position: relative;
  border-radius: 2px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #ffffff;
}

.input_select::before {
  position: absolute;
  top: calc(50% - 3px);
  right: 1em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .fx-col-16-s {
    -ms-flex-preferred-size: 16%;
    flex-basis: 16%;
    max-width: 16%;
    padding-top: 12px;
  }

  .fx-col-54-s {
    -ms-flex-preferred-size: 54%;
    flex-basis: 54%;
    max-width: 54%;
  }
}

.input_tel_3col input {
  width: 30%;
}

.input_tel_3col input:first-child {
  width: 20%;
}

.radio_2col {
  display: flex;
}

.radio_2col label {
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.radio_2col label:first-child {
  padding-right: 30px;
}

.radio_2col span {
  padding-left: 10px;
}

.radio_1col>label {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.radio_1col span {
  padding-left: 10px;
}

.date_2col {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
}

.date_2col>* {
  display: block;
  width: calc(50% - 15px);
}

.input_date {
  position: relative;
}

.input_date:before {
  position: absolute;
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  right: 15px;
}

input[type="date"] {
  position: relative;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type="date"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button {
  -webkit-appearance: none;
}

.check_1col>label {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.check_1col span {
  padding-left: 10px;
}

.select_1col {
  padding-right: 30px;
}

.textarea {
  padding-right: 30px;
}

.textarea textarea {
  width: 96%;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.check_agree input {
  height: 20px;
  width: 20px;
}

.check_agree span {
  padding-top: 5px;
}

.sbm_wrap {
  padding: 30px 15px 0;
}

.sbm {
  position: relative;
  width: 80%;
  margin: 0 auto;
  border-radius: 40px;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  padding: 15px;
  background: #45ba55;
  color: #ffffff;
  line-height: 1em;
  transition: .3s;
  border: 2px solid #45ba55;
}

.sbm:before {
  position: absolute;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 1.2em;
  top: calc(50% - 0.5em);
  right: 15px;
  color: #fff;
}

.sbm_btn {
  border: 0;
  background-color: transparent;
}

.sbm_btn:focus {
  outline: none;
}

.sbm:hover {
  color: #45ba55;
  background: #ffffff;
}

.sbm:hover:before {
  color: #45ba55;
}

/*sec20----------------------------------------------------------- */

/*Footer----------------------------------------------------------- */
footer {
  background-color: #000000;
  color: #fff;
}

.footer_nav1 {
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

footer .copy {
  text-align: center;
  padding-bottom: 2em;
}


footer a:link,
footer a:visited {
  color: #fff;
  transition: all .3s;
}

footer a:hover,
footer a:focus {
  color: #fff;
  opacity: .7;
}

footer ul li {
  display: inline-block;
  white-space: nowrap;
  margin: 0 10px;
}

footer .copy {
  font-size: 14px;
}

/* animation */

.js-anim-in[data-anim="fadeIn"],
.js-anim-in [data-anim="fadeIn"] {
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease
}

.js-anim-in[data-anim="fadeIn"].is-active,
.js-anim-in [data-anim="fadeIn"].is-active {
  opacity: 1
}

.js-anim-in[data-anim-parent].is-active [data-anim="fadeIn"]:not(.js-anim-in),
.js-anim-in[data-anim-parent] .is-active[data-anim="fadeIn"] {
  opacity: 1
}

.js-anim-in[data-anim="slideUp"],
.js-anim-in [data-anim="slideUp"] {
  opacity: 0;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease
}

.js-anim-in[data-anim="slideUp"].is-active,
.js-anim-in [data-anim="slideUp"].is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.js-anim-in[data-anim-parent].is-active [data-anim="slideUp"]:not(.js-anim-in),
.js-anim-in[data-anim-parent] .is-active[data-anim="slideUp"] {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.js-anim-in[data-anim="loadToRight"],
.js-anim-in [data-anim="loadToRight"] {
  max-width: 0;
  overflow: hidden;
  -webkit-transition: max-width 0.6s cubic-bezier(0.34, 0.14, 0.28, 1);
  transition: max-width 0.6s cubic-bezier(0.34, 0.14, 0.28, 1);
}

.js-anim-in[data-anim="loadToRight"].is-active,
.js-anim-in [data-anim="loadToRight"].is-active {
  max-width: 100%
}

.js-anim-in[data-anim-parent].is-active [data-anim="loadToRight"]:not(.js-anim-in),
.js-anim-in[data-anim-parent] .is-active[data-anim="loadToRight"] {
  max-width: 100%
}

.js-anim-in[data-anim-delay="1"],
.js-anim-in [data-anim-delay="1"] {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.js-anim-in[data-anim-delay="2"],
.js-anim-in [data-anim-delay="2"] {
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

.js-anim-in[data-anim-delay="3"],
.js-anim-in [data-anim-delay="3"] {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.js-anim-in[data-anim-delay="4"],
.js-anim-in [data-anim-delay="4"] {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.js-anim-in[data-anim-delay="5"],
.js-anim-in [data-anim-delay="5"] {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.js-anim-in[data-anim-delay="6"],
.js-anim-in [data-anim-delay="6"] {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.js-anim-in[data-anim-delay="7"],
.js-anim-in [data-anim-delay="7"] {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.js-anim-in[data-anim-delay="8"],
.js-anim-in [data-anim-delay="8"] {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

.js-anim-in[data-anim-delay="9"],
.js-anim-in [data-anim-delay="9"] {
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.js-anim-in[data-anim-delay="10"],
.js-anim-in [data-anim-delay="10"] {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}

/* add20240716 */
.term-wrap {
  width: 95%;
  max-width: 1000px;
  margin: 1.5em auto;
  border: 2px solid #ddd;
  border-radius: 6px;
}

.term {
  max-height: 200px;
  width: 100%;
  max-width: 920px;
  margin: auto;
  padding: 1em;
  overflow-y: scroll;
}

.term::-webkit-scrollbar {
  height: 15px;
  width: 15px;
}

.term::-webkit-scrollbar-thumb {
  background-color: #273e76;
  border-radius: 10px;
  height: 20px;
}

.term::-webkit-scrollbar-track {
  background-color: #ddd;
  border-radius: 10px;
}

/*FireFoxのみ適用*/
@-moz-document url-prefix() {
  .term {
    scrollbar-width: thin;
    scrollbar-color: #273e76 #ddd;
  }
}

.term h2 {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}

.term .terms-inner {
  padding-bottom: 2em;
}

.term h3 {
  font-size: 18px;
  padding-bottom: 0.5em;
  text-indent: unset;
  padding-left: unset;
  text-align: left;
  line-height: 30px;
  font-weight: bold;
}

.term .terms-inner p {
  padding-left: 1em;
  padding-bottom: 1em;
}

.term ul {
  margin-left: 2em;
}

.term ul li {
  list-style: decimal;
}

.wpcf7 {
  border: unset;
  background: unset;
}

/* add20240716end */

/* tab.css */
@media (min-width: 768px) and (max-width: 1199px) {

  /*セクション間余白-----------------------------------------------------------*/
  section {
    padding: 60px 0;
  }

  footer {
    padding: 30px 0;
  }

  /*MV----------------------------------------------------------- */
  .mv {
    padding: 33px 0 0;
    background-size: 166%;
    background-position: right -190px top;
  }

  p.mv_txt {
    width: 70%;
  }

  .mv_b ul li {
    width: 32%;
  }

  .mv_b {
    margin-top: 30px;
    background-color: rgba(39, 62, 118, .8);
    padding: 30px 0 30px;
  }

  .mv_b .font_s {
    font-size: 10px;
  }

  /*cta----------------------------------------------------------- */
  .cta {
    padding: 60px 0 30px;
  }

  .cta .box {
    background-color: #FFF;
    padding: 30px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
  }

  .cta ul li {
    margin-right: 0;
    width: 20% !important;
  }

  .cta .font_s {
    font-size: 10px;
  }

  /*sec01----------------------------------------------------------- */
  .sec01 .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .sec01 .fx-row .f_item {
    padding-right: 8px;
    padding-left: 8px;
  }

  .sec01 .txt {
    font-size: 1.6rem;
  }

  /*sec03----------------------------------------------------------- */
  .sec03 .white_box {
    padding: 30px;
  }

  /*sec04----------------------------------------------------------- */
  .sec04 h2 {
    height: 21vw;
  }

  .sec04 .white_box {
    padding: 30px;
  }

  /*sec05----------------------------------------------------------- */
  .sec05 .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .sec05 .fx-row .f_item {
    padding-left: 8px;
    padding-right: 8px;
  }

  .sec05 .txt {
    background-color: #FFF;
    padding: 30px 20px 30px;
    font-size: 21px;
  }

  /*sec06----------------------------------------------------------- */
  .sec06 .box .inner {
    padding: 0 30px;
  }

  /*sec07----------------------------------------------------------- */
  .sec07 .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .sec07 .f_item {
    padding-right: 8px;
    padding-left: 8px;
  }

  .sec07 .txt {
    background-color: #FFF;
    padding: 15px;
  }

  .qa .icon {
    width: 40px;
  }

  .qa .q .txt {
    margin-left: 15px;
    font-size: 20px;
  }

  .qa .txt {
    margin-left: 15px;
    font-size: 14px;
  }

  .qa .box .a .box_item {
    align-items: flex-start;
  }

  .qa .box:not(:last-child) {
    margin-bottom: 15px;
  }

  .form_head {
    font-size: 14px;
  }

  form>ul>li .fx-row>*:first-child {
    padding-right: 0;
  }

  .input_1col input {
    font-size: 14px;
    width: 100%;
  }

  .textarea textarea {
    /* width: 100%; */
  }

  .sbm_wrap .cta_btn {
    width: 70%;
    margin: 0 auto;
  }

  /*sec09----------------------------------------------------------- */
  .form_head {
    font-size: 14px;
  }

  .sec09 .tpl_form07 .fx-col-30-s {
    padding-right: 0;
  }
}

/* sp.css */
@media screen and (max-width: 767px) {

  /*セクション間余白----------------------------------------------------------- */
  section {
    padding: 40px 0;
  }

  footer {
    padding: 15px 0;
  }

  /*Header----------------------------------------------------------- */
  .mv_b {
    margin-top: 20px;
    padding: 20px 0 15px;
  }

  .mv_b ul {
    display: none;
  }

  header .container {
    align-items: center;
    padding: 10px 15px;
  }

  header .logo {
    height: 20px;
    padding-right: 60px;
  }

  header .logo img {
    max-height: 20px;
  }

  header .contact {
    display: flex;
    align-items: center;
    text-align: right;
    width: 50%;
  }

  /*MV----------------------------------------------------------- */
  .mv {
    padding: 0;
    background: unset;
  }

  .mv2 {
    padding: 20px 0 0;
    background-size: cover;
  }

  /*CTA----------------------------------------------------------- */
  .cta {
    padding: 50px 0 30px;
    background: url(../img/sp_cta_bg.png) no-repeat center/cover;
  }

  .cta h2 {
    padding-bottom: 15px;
  }

  .cta .box {
    background-color: #FFF;
    padding: 15px 25px;
    font-size: 12px;
    font-weight: bold;
  }

  .cta ul li {
    margin-right: 0;
    width: 33%;
    margin-bottom: 15px;
  }

  .cta ul li:nth-of-type(7),
  .cta ul li:nth-of-type(8),
  .cta ul li:nth-of-type(9) {
    margin-bottom: 0;
  }

  .cta .box .fa-check {
    color: #f06009;
    margin-right: 5px;
  }

  /*CTA2----------------------------------------------------------- */


  /*sec01----------------------------------------------------------- */
  .sec01 h2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sec01 .txt {
    padding: 15px 0 10px;
  }

  /*sec02----------------------------------------------------------- */
  .sec02 h2 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .sec02 .img01 {
    margin-left: 5px;
  }

  .sec02 .inner .left {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 35px;
    height: 2px;
    background-color: #f1cd08;
  }

  .sec02 .inner .left::after {
    content: "";
    position: absolute;
    display: flex;
    width: 2px;
    height: 35px;
    background-color: #f1cd08;
    display: block;
  }

  .sec02 .inner {
    padding: 20px;
  }

  .sec02 .inner .right::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 2px;
    height: 35px;
    background-color: #f1cd08;
    display: block;
  }

  .sec02 .inner .right {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 35px;
    height: 2px;
    background-color: #f1cd08;
  }

  .sec02 h3 {
    margin-bottom: 15px;
  }

  /*sec03----------------------------------------------------------- */
  .sec03 .arrow {
    position: absolute;
    top: -25px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 120px;
  }

  .sec03 .white_box {
    background-color: #e5e5e5;
    padding: 15px;
  }

  .sec03 .white_box .f_item {
    margin-top: 15px;
  }

  /*sec04----------------------------------------------------------- */

  .sec04 h2 {
    height: 31vw;
  }

  .sec04 h2 img {
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
  }

  .sec04 .white_box:not(:last-child) {
    margin-bottom: 15px;
  }

  .sec04 .white_box {
    border: solid 2px #273e76;
    padding: 15px;
  }

  .sec04 .white_box .font_l {
    font-size: 15px;
  }

  /*sec05----------------------------------------------------------- */
  .sec05 h2 {
    padding-bottom: 30px;
  }

  .sec05 .txt {
    font-size: 16px;
    padding: 15px;
  }

  .sec05 .box {
    margin-top: 0;
  }

  /*sec06----------------------------------------------------------- */
  .sec06 h3 {
    margin-bottom: 15px;
  }

  .sec06 .box {
    padding-bottom: 30px;
  }

  .sec06 .box:not(:last-child) {
    margin-bottom: 35px;
  }

  .sec06 .inner {
    padding-right: 15px;
    padding-left: 15px;
  }

  /*sec07----------------------------------------------------------- */
  .sec07 .txt {
    background-color: #FFF;
    padding: 15px;
  }

  .sec07 .box::after {
    position: absolute;
    content: "";
    width: 4px;
    height: calc(100% - 15px);
    background-color: #273e76;
    top: 15px;
    right: 50%;
  }

  /*sec08----------------------------------------------------------- */
  .qa .box_item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
  }

  .qa .icon {
    width: 30px;
    flex-shrink: 0;
  }

  .qa .q .txt {
    margin-left: 10px;
    font-size: 16px;
    color: #FFF;
    font-weight: bold;
    line-height: 1.3;
  }

  .qa .box .a .box_item {
    padding: 15px;
    align-items: flex-start;
  }

  .qa .txt {
    margin-left: 10px;
    font-size: 14px;
  }

  .qa .box:not(:last-child) {
    margin-bottom: 15px;
  }


  .form_wrap {
    padding: 0;
  }

  form>ul>li .fx-row>*:first-child {
    padding-top: 0;
  }

  form>ul>li {
    padding: 15px;
  }

  .form_head {
    text-align: left;
    justify-content: flex-start;
  }

  .input_adjust {
    padding: 8px 12px;
  }

  .input_2col {
    padding-right: 0px;
  }

  .input_1col {
    padding-right: 0px;
  }

  .input_pref {
    width: 80%;
  }

  .input_select select {
    padding: 8px 12px;
  }

  .radio_2col label:first-child {
    padding-right: 0px;
  }

  .date_2col {
    padding-right: 0px;
  }

  .date_2col>* {
    width: calc(50% - 8px);
  }

  .select_1col {
    padding-right: 0px;
  }

  .textarea {
    padding-right: 0px;
  }

  .sbm_wrap {
    padding: 15px;
  }

  .sbm {
    width: 100%;
  }

  .term {
    /* width: 100%; */
  }


  /*Footer----------------------------------------------------------- */
  .footer_nav1 ul {
    width: 100%;
  }

  .footer_nav1 ul li:first-child {
    border-top: 1px solid #fff;
  }

  .footer_nav1 ul li {
    width: 100%;
    display: block;
    height: 40px;
    /* line-height: 40px; */
    text-align: center;
    border-bottom: 1px solid #fff;
    margin: 0;
  }

  .footer_nav1 ul a {
    display: block;
  }

  footer .copy {
    font-size: 10px;
  }
}

/*スマホ用スタイルend*/