/* ================================================================================

  [pc] 共通

================================================================================ */

/*-------------------------*/
/* +RESETS                 */
/*-------------------------*/
*, *:after, *:before {
  box-sizing: border-box;
}

html, body, blockquote, form, figure {
  margin: 0;
  padding: 0;
}

blockquote, code, embed, iframe,
img, input, object, pre,
table, td, textarea, video {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

p {
  margin: 0;
}

a img, form, fieldset {
  border: none;
}

input, button, select {
  vertical-align: middle;
}

textarea {
  vertical-align: top;
}

abbr {
  cursor: help;
  border-bottom: 1px dotted #bbb;
}

blockquote p, button, input,
li h1, li h2, li h3, li h4,
li h5, li h6, li li, li p,
select, td p, th p {
  font-size: 100%;
}

/*-------------------------*/
/* +NORMALIZE              */
/*-------------------------*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption,
figure, footer, header, hgroup, main,
menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  appearance: button;
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  appearance: textfield;
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.1280px;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

/*-------------------------*/
/* +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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.fx-row-reverse-s {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.fx-row-reverse-m {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.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%;
}

.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-40-s {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  max-width: 40%;
}
.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%;
}

.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%;
}

.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;
}

.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;
}

.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;
}

.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;
}





/*デバイス共通----------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Arial", "Yu Gothic Medium", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-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;
}

#wrap {
  min-width: 1000px;
  width: 100%;
  min-height: 101vh;
  margin: 0 auto;
}

a, a img {transition: all .3s;}
a: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;
}

/*テキスト関連----------------------------------------------------------- */
.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;}
.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;
}

/*余白&幅調整----------------------------------------------------------- */
.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;}

/*見出し----------------------------------------------------------- */
h1, h2, h3 {
  line-height: 1.4;
}

h3 {
  margin: 0;
  padding: 0;
}

/*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;
}

/*ページ下部固定部分----------------------------------------------------------- */
.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;
}

/*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;
}

/*背景左右はみだし----------------------------------------------------------- */
.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;
  }
}

/*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;
}

/*inner / Break----------------------------------------------------------- */
.inner {
  width: 960px;
  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;
}


/*Header----------------------------------------------------------- */
.c-header {
  display: flex;
  padding: 0 calc(50% - 517.5px);
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid #e6e6e6;
  min-height: 62px;
  font-family: "Arial", "Yu Gothic Medium", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
#site_index .c-header_logo a {
  pointer-events: none;
}
.c-header_tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 40px;
  pointer-events: none;
}
.c-header_tel_number {
  position: relative;
  padding-left: 22px;
  font-weight: bold;
  font-size: 23px;
  color: #505050;
  letter-spacing: -0.03em;
  line-height: 1;
}
.c-header_tel_number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../img/pc/icon_tel_head.svg) no-repeat top;
  background-size: 18px 18px;
}
.c-header_tel_text {
  color: #eb2e11;
  font-size: 15px;
  font-weight: bold;
  padding-left: 26px;
  line-height: 1;
}


/*Footer----------------------------------------------------------- */
.c-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: #505050;
  padding: 32px 16px;
  font-family: "Arial", "Yu Gothic Medium", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1;
}

.c-footer_list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
}
#site_form1 .c-footer_list {
  display: none;
}

.c-footer_item {
  position: relative
}
.c-footer_item+.c-footer_item::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 3px;
  background: #8c8c8c;
  height: 12px;
  width: 1px
}
.c-footer_item_link {
  color: #fff;
  font-size: 15px
}
.c-footer_copylight {
  color: #bfbfbf;
  font-size: 15px;
  line-height: 1.2;
  text-align: center
}





/* ================================================================================

  [pc] トップページ

================================================================================ */
.top_area {
  position: absolute;
  color: #004A9F;
  font-size: 30px;
  font-weight: 700;
  top: 8px;
  left: 50%;
  margin-left: -446px;
  z-index: 1;
  text-shadow:
    -2px -2px 0px #fff,
    2px -2px 0px #fff,
    2px 2px 0px #fff,
    -2px 2px 0px #fff,
    -2px 0px 0px #fff,
    2px 0px 0px #fff,
    0px -2px 0px #fff,
    0px 2px 0px #fff,
    0 0 20px #fff;
}

.top_area > span {
  font-size: 0.7em;
  color: #000000;
}


/*色関連----------------------------------------------------------- */
.bg_cl1 {
  background-color: #eeeef5;
}

.bg_cl2 {
  background-color: #f3f2f2;
}

.cl_base {
  color: #06356c;
}

.cl_main {
  color: #ff3f3f;
}

.cl_accent {
  color: #4265a1;
}

.cl_other1 {
  color: #4265a1;
}

.cl_other2 {
  color: #4265a1;
}

/*テキスト関連----------------------------------------------------------- */
.highlight {
  background: -webkit-linear-gradient(transparent 50%, #ffea00 50%);
  background: -o-linear-gradient(transparent 50%, #ffea00 50%);
  background: linear-gradient(transparent 50%, #ffea00 50%);
  font-weight: bold;
}

/*リンク色----------------------------------------------------------- */
a:link,
a:visited {
  /* color: #000; */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*はみ出し画像中央----------------------------------------------------------- */
.wic_wrap {
  overflow-x: hidden;
}

/* wicを使ったセクションのsectionタグに対して.wic_wrapのクラスをつける事 */
.wic img {
  width: auto;
  max-width: unset;
}

/* 中央に表示したいものにwicとwic1をつける */
.wic1 {
  margin-left: calc(50% - 1000px);
}

/*pxの部分を画像の半分の幅に変えてね！*/
.wic1 img {
  width: 2000px;
  max-width: 2000px;
}

.wic2 {
  margin-left: calc(50% - 600px);
}

.wic2 img {
  width: 1200px;
  max-width: 1200px;
}

.wic3 {
  margin-left: calc(50% - 800px);
}

.wic3 img {
  width: 1600px;
  max-width: 1600px;
}

/*Page Top----------------------------------------------------------- */
.pagetop a {
  background-color: #003b7e;
}

/*MV----------------------------------------------------------- */
.mv {
  position: relative;
  background: url(../img/pc/pc_mv_bg.jpg) center top / auto auto no-repeat;
  padding: 0;
}

.mv .mv_txt img {
  max-width: none;
}

.mv .mv_btm {
  background-color: #003b7e;
  padding: 20px 0 15px;
}

/*CTA----------------------------------------------------------- */
.cta {
  background-color: #fff8da;
  padding-bottom: 0;
  padding-top: 50px;
}

.cta .img01 img {
  max-width: none;
  position: relative;
  right: 100px;
}

.tel_pc_bl {
  position: absolute;
  left: 12%;
  bottom: 47%;
  color: #003b7e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 62px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.tel span {
  font-size: 30px;
  color: #003b7e;
  font-weight: bold;
  position: absolute;
  left: 14%;
  top: 44%;
}

/*CTA2----------------------------------------------------------- */
.cta2 {
  background: rgb(20, 67, 160);
  background: linear-gradient(23deg, rgba(20, 67, 160, 1) 0%, rgba(12, 133, 194, 1) 100%);
  padding: 75px 0;
}

.cta2 .white_box {
  padding: 30px;
}

.cta2 .fx-col-40-m {
  flex-basis: 48%;
  max-width: 48%;
}

.cta2 .fx-col-60-m {
  flex-basis: 52%;
  max-width: 52%;
}

.cta2 .fx-col-30-m {
  flex-basis: 35%;
  max-width: 35%;
}

.cta2 .fx-col-70-m {
  flex-basis: 65%;
  max-width: 65%;
}

.cta2 .box {
  background-color: #f4f4f4;
  padding: 30px 20px;
  margin-top: 30px;
  position: relative;
}

/*sec01----------------------------------------------------------- */
.sec01 {
  background-color: #374a50;
  padding: 100px 0;
}

.sec01 .white_box {
  padding: 60px 45px;
}

.sec01 .fx-col-30-s {
  flex-basis: 35%;
  max-width: 35%;
}

.sec01 .fx-col-70-s {
  flex-basis: 65%;
  max-width: 65%;
}

.sec01 h2 {
  padding-bottom: 50px;
}

/*sec02----------------------------------------------------------- */
.sec02 {
  background-color: #d9ecf3;
  padding: 100px 0;
}

.sec02 h2 {
  padding-bottom: 20px;
}

.sec02 .box {
  border-radius: 10px;
  background-color: #FFF;
  height: 100%;
}

.sec02 .box h3 {
  border-radius: 10px 10px 0 0;
  background-color: #2789d4;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  padding: 10px;
}

.sec02 .txt_box {
  padding: 26px;
  font-size: 17px;
  font-weight: bold;
}

.sec02 ul li {
  display: flex;
  align-items: center;
}

.sec02 ul li span {
  width: calc(100% - 1em + 5px);
}

.sec02 ul li:before {
  content: "";
  display: inline-block;
  margin-right: 5px;

  background-color: #2789d4;
  width: 17px;
  height: 17px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>') no-repeat center / contain;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>') no-repeat center / contain;
}

.sec02 .f_item:nth-of-type(1) .box .txt_box {
  background: url(../img/pc/pc_sec02_deco01.png) no-repeat;
  background-position: right 15px top 10px;
}

.sec02 .f_item:nth-of-type(2) .box .txt_box {
  background: url(../img/pc/pc_sec02_deco02.png) no-repeat;
  background-position: right 25px bottom 10px;
}

.sec02 .f_item:nth-of-type(3) .box .txt_box {
  background: url(../img/pc/pc_sec02_deco03.png) no-repeat;
  background-position: right 15px top -4px;
}

.sec02 .f_item:nth-of-type(4) .box .txt_box {
  background: url(../img/pc/pc_sec02_deco04.png) no-repeat;
  background-position: right 15px top -4px;
}

.sec02 .f_item:nth-of-type(5) .box .txt_box {
  background: url(../img/pc/pc_sec02_deco05.png) no-repeat;
  background-position: right 25px top 20px;
}

.sec02 .f_item:nth-of-type(6) .box .txt_box {
  background: url(../img/pc/pc_sec02_deco06.png) no-repeat;
  background-position: right 15px top 10px;
}

.sec02 .f_item:nth-of-type(7) .box .txt_box {
  background: url(../img/pc/pc_sec02_deco07.png) no-repeat;
  background-position: right 15px bottom 10px;
}

.sec02 .f_item:nth-of-type(8) .box .txt_box {
  background: url(../img/pc/pc_sec02_deco08.png) no-repeat;
  background-position: right 15px top -3px;
}

.sec02 .fx-row {
  margin-left: -8px;
  margin-right: -8px;
}

.sec02 .f_item {
  padding-right: 8px;
  padding-left: 8px;
  margin-top: 40px;
}

/*sec03----------------------------------------------------------- */
.sec03 {
  background: url(../img/pc/pc_sec03_bg.png) no-repeat center/cover;
  padding: 100px 0;
}

.sec03 h2 {
  margin-bottom: 60px;
}

/*sec04----------------------------------------------------------- */
.sec04 {
  background: url(../img/pc/pc_sec04_bg.jpg) no-repeat center/cover;
  padding: 60px 0 100px;
}

.sec04 h2 {
  margin-bottom: 60px;
}

.sec04 .white_box {
  border: solid 6px #002f68;
  padding: 0;
}

.sec04 .white_box h3 {
  background-color: #06356c;
  padding: 20px 20px 25px;
}

.sec04 .txt_box {
  padding: 45px;
}

.sec04 .img01 {
  position: relative;
  margin-top: -15px;
}

.sec04 .inner_box {
  position: relative;
  background-color: #fff6f5;
  border: solid 5px #fee4e1;
  margin-top: 45px;
}

.sec04 .img02 {
  position: absolute;
  bottom: -5px;
  left: 50px;
}

.sec04 .inner_box .txt {
  padding: 30px 30px 20px 280px;
}

.sec04 p.tac {
  color: #39ae89;
  font-size: 20px;
  margin-top: 30px;
}

.sec04 table {
  width: 100%;
  position: relative;
  margin-top: 30px;
}

.sec04 table:after {
  content: "";
  width: 260px;
  height: calc(100% + 12px);
  display: block;
  border: solid 7px #fb5721;
  position: absolute;
  top: -6px;
  left: 184px;
}

.sec04 table th,
.sec04 table td {
  border: solid 1px #000;
  font-weight: bold;
  text-align: center;
  padding: 20px;
}

.sec04 table th.b_none {
  border: none;
}

.sec04 table td {
  text-align: center;
}

.sec04 .bg02 {
  background-color: #d4eee9;
  width: 190px;
}

.sec04 .td01 {
  vertical-align: middle;
  line-height: 1;
}

.sec04 .font_l {
  font-size: 30px;
}

.sec04 .b_01 {
  background-color: #fff7f1;
  width: 250px;
}

.sec04 .js-scrollable {
  padding: 10px 0;
}

.sec04 .box {
  border: solid 10px #e2e2e2;
  background-color: #FFF;
}

.sec04 .box .inner {
  display: flex;
  justify-content: flex-start;
  width: auto;
  padding: 0;
}

.sec04 .box h3 {
  margin: 5px;
  width: 280px;
  color: #FFF;
  background-color: #002f68;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sec04 .txt {
  padding: 40px 45px;
}

/*sec05----------------------------------------------------------- */
.sec05 {
  background-color: #c1e8f7;
  padding: 100px 0;
}

.sec05 h2 {
  padding-bottom: 40px;
}

.sec05 .fx-col-30-s {
  flex-basis: 37%;
  max-width: 37%;
}

.sec05 .fx-col-70-s {
  flex-basis: 63%;
  max-width: 63%;
}

.sec05 h3 {
  margin-bottom: 30px;
}

/*sec06----------------------------------------------------------- */
.sec06 {
  padding: 50px 0 30px;
}

.sec06 .img01 img {
  max-width: none;
}

/*sec07----------------------------------------------------------- */
.sec07 {
  background-color: #e3e6ec;
  padding: 100px 0;
}

.sec07 h2 {
  margin-bottom: 60px;
}

.sec07 h3 {
  font-size: 24px;
  border-radius: 10px 10px 0 0;
  background-color: #003b7e;
  color: #FFF;
  padding: 15px;
}

.sec07 .white_box {
  border-radius: 0 0 10px 10px;
}

.sec07 ul {
  display: flex;
  flex-wrap: wrap;
}

.sec07 ul li {
  width: 30%;
}

/*sec08----------------------------------------------------------- */
.sec08 {
  background-color: #fffbe7;
  padding: 100px 0;
}

.sec08 h2 {
  padding-bottom: 45px;
}

.sec08 .white_box {
  border-radius: 10px;
  height: 100%;
}

.sec08 .white_box .tit {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.sec08 .white_box .tit .img {
  width: 127px;
  margin-right: 20px;
}

.sec08 .white_box .tit .txt {
  width: calc(100% - 127px + 20px);
}

.sec08 .white_box h3 {
  margin-bottom: 15px;
}

.sec08 .white_box h4 {
  font-weight: bold;
  font-size: 21px;
}

.sec08 .white_box h4 {
  font-weight: bold;
  font-size: 21px;
}

.sec08 .f_item {
  margin-top: 30px;
}

/*sec09----------------------------------------------------------- */
.sec09 {
  background-color: #c1e8f7;
  padding: 100px 0;
}

.sec09 h2 {
  margin-bottom: 60px;
}

.sec09 h3 {
  color: #003b7e;
  font-size: 22px;
  height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec09 .f_item {
  position: relative;
  font-size: 16px;
}

.sec09 .arrow {
  position: absolute;
  right: 0;
  top: 50%;
}

.sec09 .fx-row {
  justify-content: space-between;
}

.sec09 .arrow {
  position: absolute;
  right: -40px;
  top: 36%;
}

/*sec10----------------------------------------------------------- */
.sec10 {
  padding: 100px 0 60px;
}

.sec10 h2 {
  margin-bottom: 60px;
}

.sec10 a:link,
.sec10 a:visited {
  text-decoration: underline;
}

.qa .q .txt {
  margin-left: 20px;
  font-size: 24px;
}

.qa .q {
  background-color: #003b7e;
  color: #FFF;
  font-weight: bold;
  padding: 15px 30px;
}

.qa .a {
  margin-bottom: 30px;
  padding: 15px 30px;
  font-size: 16px;
}

.qa .a:last-of-type {
  margin-bottom: 0;
}

.qa .txt {
  margin-left: 20px;
}

.qa .a .txt {
  margin-top: 5px;
}

.qa .box:not(:last-child) {
  margin-bottom: 10px;
}

.qa .box_item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 0;
}

.qa .q .box_item {
  align-items: center;
}

.qa .qq .txt {
  margin: 0 auto;
}

.qa .icon {
  width: 50px;
  flex-shrink: 0;
}

.btm_fix .inner {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
}

.btm_fix .contact {
  display: flex;
  align-items: center;
  text-align: right;
}

.btm_fix .tel {
  margin-right: 15px;
}

.btm_fix {
  background: rgba(13, 125, 190, 0.7);
}





/* ================================================================================

  [pc] 各ページ

================================================================================ */
.content {
  width: 960px;
  padding: 0 10px;
  margin: 40px auto;
  text-align: left;
}
.content .center {
  margin-top: 20px;
}
.content h2 {
  border-radius: 5px;
  color: #000;
  padding: 10px !important;
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 !important;
  box-shadow: 1px 1px #999;
  border-left: solid 10px #47A447;
  background: #f2f2f2;
  text-align: left;
}
.content h3 {
  font-size: 18px;
}
.content dl {
  margin-top: 40px;
}
.content dt {
  font-weight: 700;
}
.content p {
  margin-top: 10px;
}
.content p.mgt20 {
  margin-top: 20px;
}
.content p.mgb20 {
  margin-bottom: 20px;
}

/* 会社概要
-------------------------------------------------------------------- */
.company_info {
  width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
}
.company_info table {
  width: 100%;
}
.company_info table th,
.company_info table td {
  padding: 14px 10px 10px;
  border-bottom: 1px solid #cccccc;
}
.company_info table th {
  font-weight: 700;
  width: 140px;
}

.company_info_detail {
  width: 780px;
  margin: 15px auto 20px;
  font-size: 0.85em;
  color: #666;
}

/* プライバシーポリシー */
.privacy_policy {
  width: 800px;
  margin: 0 auto;
  font-size: 16px;
  text-align: justify;
  word-break: break-all;
}
.privacypolicy-detail-list {
  margin: 10px 0 0 10px;
}
.privacypolicy-detail-list.privacypolicy-detail-list-number {
  margin: 10px 0 0 0px;
}
.privacypolicy-detail-list>li {
  padding-left: 15px;
  position: relative;
  font-size: 16px;
  line-height: 2;
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li {
  padding-left: 30px;
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0px;
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li:nth-of-type(1)::before {
  content: '(1)';
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li:nth-of-type(2)::before {
  content: '(2)';
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li:nth-of-type(3)::before {
  content: '(3)';
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li:nth-of-type(4)::before {
  content: '(4)';
}
