@charset "UTF-8";
/* =============================================================================


     pallet


============================================================================= */
/* =============================================================================


     color


============================================================================= */
/* $header-width: 216px; */
body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeInAnime;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: fadeUpAnime;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */
.fadeDown {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: fadeDownAnime;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: fadeLeftAnime;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: fadeRightAnime;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: flipDownAnime;
  opacity: 0;
}

@keyframes flipDownAnime {
  from {
    opacity: 0;
    transform: perspective(2500px) rotateX(100deg);
  }
  to {
    opacity: 1;
    transform: perspective(2500px) rotateX(0);
  }
}

/* 左へ */
.flipLeft {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: flipLeftAnime;
  opacity: 0;
  perspective-origin: left center;
}

@keyframes flipLeftAnime {
  from {
    opacity: 0;
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
  }
  to {
    opacity: 1;
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  }
}

/* 左上へ */
.flipLeftTop {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: flipLeftTopAnime;
  opacity: 0;
}

@keyframes flipLeftTopAnime {
  from {
    opacity: 0;
    transform: translate(-20px, 80px) rotate(-15deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}

/* 右へ */
.flipRight {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: flipRightAnime;
  opacity: 0;
  perspective-origin: right center;
}

@keyframes flipRightAnime {
  from {
    opacity: 0;
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
  }
  to {
    opacity: 1;
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  }
}

/* 右上へ */
.flipRightTop {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: flipRightTopAnime;
  opacity: 0;
}

@keyframes flipRightTopAnime {
  from {
    opacity: 0;
    transform: translate(-20px, 80px) rotate(25deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 1) rotate(0deg);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: rotateXAnime;
}

@keyframes rotateXAnime {
  from {
    opacity: 0;
    transform: rotateX(0);
  }
  to {
    opacity: 1;
    transform: rotateX(-360deg);
  }
}

/*　Y軸（横へ） */
.rotateY {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: rotateYAnime;
}

@keyframes rotateYAnime {
  from {
    opacity: 0;
    transform: rotateY(0);
  }
  to {
    opacity: 1;
    transform: rotateY(-360deg);
  }
}

/* Z 軸（左へ） */
.rotateLeftZ {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: rotateLeftZAnime;
}

@keyframes rotateLeftZAnime {
  from {
    opacity: 0;
    transform: rotateZ(0);
  }
  to {
    opacity: 1;
    transform: rotateZ(-360deg);
  }
}

/*　Z 軸（右へ） */
.rotateRightZ {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: rotateRightZAnime;
}

@keyframes rotateRightZAnime {
  from {
    opacity: 0;
    transform: rotateZ(0);
  }
  to {
    opacity: 1;
    transform: rotateZ(360deg);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger {
  opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: zoomInAnime;
}

@keyframes zoomInAnime {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 縮小 */
.zoomOut {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: zoomOutAnime;
}

@keyframes zoomOutAnime {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: blurAnime;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  　transform-origin: left;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: smoothAnime;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0) skewY(12deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.lineTrigger {
  /* 枠線が書かれる基点*/
  opacity: 0;
  position: relative;
}

.lineTrigger.lineanime {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: lineAnimeBase;
}

@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*上下線*/
.lineTrigger::before,
.lineTrigger::after {
  background: #333;
  content: "";
  height: 1px;
  position: absolute;
  width: 0;
  /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  background: #333;
  content: "";
  height: 0;
  position: absolute;
  width: 1px;
  /* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
  left: 0;
  top: 0;
}

.lineTrigger.lineanime::before {
  animation: lineAnime 0.5s linear 0s forwards;
  /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before {
  right: 0;
  top: 0;
}

.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 0.5s linear 0.5s forwards;
  /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0;
}

.lineTrigger.lineanime::after {
  animation: lineAnime 0.5s linear 1s forwards;
  /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}

.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 0.5s linear 1.5s forwards;
  /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  animation: lineInnerAnime 0.5s linear 1.5s forwards;
  /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0;
  /*初期値を透過0にする*/
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: bgextendAnimeBase;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
  overflow: hidden;
  position: relative;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  animation-delay: 0.6s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: bgextendAnimeSecond;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から*/
.bgLRextend::before {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: bgLRextendAnime;
  background-color: #666;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

/*右から*/
.bgRLextend::before {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: bgRLextendAnime;
  background-color: #666;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
  0% {
    transform: scaleX(0);
    transform-origin: right;
  }
  50% {
    transform: scaleX(1);
    transform-origin: right;
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform: scaleX(0);
    transform-origin: left;
  }
}

/*下から*/
.bgDUextend::before {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: bgDUextendAnime;
  background-color: #666;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  /*伸びる背景色の設定*/
}

@keyframes bgDUextendAnime {
  0% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }
}

/*上から*/
.bgUDextend::before {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: bgUDextendAnime;
  background-color: #666;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  /*伸びる背景色の設定*/
}

@keyframes bgUDextendAnime {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*========= レイアウトのためのCSS ===============*/
.wrapper {
  overflow: hidden;
}

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

.box {
  background: #666;
  box-sizing: border-box;
  color: #fff;
  margin: 0 20px 20px 20px;
  padding: 20px;
  width: 220px;
}

.bgextend,
.lineTrigger {
  box-sizing: border-box;
  margin: 0 20px 20px 20px;
  padding: 20px;
  width: 220px;
}

/*==================================================
アニメーション設定
===================================*/
/* アニメーションの回数を決めるCSS*/
.count2 {
  animation-iteration-count: 2;
  /*この数字を必要回数分に変更*/
}

.countinfinite {
  animation-iteration-count: infinite;
  /*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time01 {
  animation-delay: 0.1s;
}

.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time03 {
  animation-delay: 0.3s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time04._sp {
  animation-delay: 0.4s;
}

.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time15 {
  animation-delay: 1.5s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time25 {
  animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  animation-duration: 0.5s;
}

.change-time1 {
  animation-duration: 1s;
}

.change-time15 {
  animation-duration: 1.5s;
}

.change-time2 {
  animation-duration: 2s;
}

.change-time25 {
  animation-duration: 2.5s;
}

[data-target] {
  cursor: pointer;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
  color: #000;
  font-feature-settings: "palt";
  letter-spacing: normal;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-width: 1128px;
  opacity: 0;
  overflow-wrap: break-word;
  transition: all 0.3s;
  visibility: hidden;
}

body[data-loading="true"] {
  opacity: 1;
  visibility: visible;
}

ul,
li {
  list-style: none;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

video {
  height: auto;
  max-width: 100%;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

form button {
  -webkit-appearance: none;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  margin: 0;
  padding: 0.6em 2em;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  width: auto;
}

form button:hover, form button:focus {
  outline: none;
}

form button:hover {
  opacity: 0.7;
}

form button ::-moz-focus-inner {
  border: none;
  padding: 0;
}

/* =============================================================================


     form


============================================================================= */
input,
textarea {
  -webkit-appearance: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #fff;
  background: #fff;
  background-image: none;
  border: none;
  border: none;
  border-radius: 0px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  padding: 8px;
  width: 100%;
}

input:focus {
  box-shadow: none;
  outline: none;
}

input[type="submit"], input[type="button"] {
  -webkit-appearance: none;
  background: transparent;
  background: inherit;
  background-image: none;
  border: none;
  border-radius: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: inherit;
  font-weight: normal;
  height: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: all 0.2s ease 0s;
  width: auto;
  width: 100%;
  width: 100%;
}

input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus {
  opacity: 0.7;
}

input[type="submit"] ::-moz-focus-inner, input[type="button"] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

/* **************************************


     common


***************************************/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}

input[type="checkbox"] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}

input[type="checkbox"] + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1em;
}

input[type="checkbox"]:checked + span::after {
  opacity: 1;
}

input[type="checkbox"]:checked + span::before {
  background: #000;
}

.inner {
  height: inherit;
  margin: 0 auto;
  max-width: 100%;
  min-width: 1080px;
  padding: 0;
  position: relative;
  width: 1080px;
}

/* =============================================================================


     common


============================================================================= */
.submv {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 748px;
  position: relative;
}

.submv._recruit {
  background-image: url(../images/recruit/mv.jpg);
}

.submv._company {
  background-image: url(../images/company/mv.jpg);
}

.submv._biz {
  background-image: url(../images/business/mv.jpg);
}

.submv._about {
  background-image: url(../images/about/mv.jpg);
}

.submv._contact {
  background-image: url(../images/contact/mv.jpg);
}

.submv-ttlbox {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 310px;
}

.submv-ttl {
  -ms-writing-mode: tb-rl;
  color: #fff;
  font-family: kozuka-mincho-pr6n, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-feature-settings: normal;
  font-size: 6rem;
  height: 100%;
  left: 50%;
  position: absolute;
  text-align: center;
  top: calc(50% + 130px);
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
}

.sec {
  padding: 120px 0;
  position: relative;
}

.inner-ttl {
  color: #4a81d8;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-size: 5rem;
  text-align: center;
}

.inner-ttl span {
  color: #000;
  display: block;
  font-size: 50%;
}

.contents-head-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}

.contents-head-box span {
  color: #4a81d8;
  display: block;
  font-family: acumin-pro, sans-serif;
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
}

.contents-head-box._border {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.contents-head-box._border:before, .contents-head-box._border:after {
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
  width: 50%;
}

.contents-head-box._border:before {
  background: #4a81d8;
  left: 0;
}

.contents-head-box._border:after {
  background: #000;
  right: 0;
}

.contents-head {
  color: #4a81d8;
  display: inline-block;
  font-family: kozuka-mincho-pr6n, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  padding-left: 1.5em;
  position: relative;
}

.contents-head:before {
  background-image: url(../images/common/ttl-logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1em;
  left: 0em;
  position: absolute;
  top: 0.25em;
  width: 1em;
}

/* **************************************


     head


***************************************/
.head-container {
  text-align: center;
}

.head-ttl {
  color: #4a81d8;
  font-family: kozuka-mincho-pr6n, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 4rem;
}

.head-txt {
  font-size: 2.4rem;
  line-height: 2;
  margin-top: 32px;
  text-align: center;
}

/* **************************************


     list


***************************************/
.list-container {
  margin: auto;
  max-width: 880px;
  width: 100%;
}

.inner-list {
  margin: 60px auto 0;
}

.inner-item {
  align-items: center;
  border-bottom: 1px solid #4a81d8;
  display: flex;
  justify-content: flex-start;
  padding: 1em 0;
}

.inner-item:nth-of-type(1) {
  border-top: 1px solid #4a81d8;
}

.inner-item dt {
  color: #4a81d8;
  font-size: 2.2rem;
  min-width: 10em;
  width: 10em;
}

.inner-item dd {
  font-size: 1.8rem;
  line-height: 3.33333;
}

.drawer {
  z-index: 40;
}

.drawer-close {
  background: #000;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 39;
}

.drawer-close.is-checked {
  display: block;
  opacity: 0.4;
}

.drawer-icon {
  background-color: inherit;
  border: none;
  cursor: pointer;
  display: none;
  position: relative;
  text-align: center;
  z-index: 41;
}

.drawer-icon:focus {
  outline: none;
}

.drawer-icon::after {
  color: #fff;
  content: "MENU";
  display: none;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  margin-top: 4px;
  text-align: center;
}

.drawer-icon.is-checked::after {
  content: "CLOSE";
  /*       color: #fff; */
}

.drawer-icon.is-checked + body {
  overflow: hidden;
}

.drawer-bars {
  display: inline-block;
  height: 24px;
  position: relative;
  vertical-align: bottom;
  width: 40px;
}

.drawer-bars:before {
  border-radius: 50%;
  content: "";
  height: 50px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  z-index: -1;
}

.drawer-bar {
  background: #fff;
  border-radius: 3px;
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  transition: all 0.3s linear 0s;
  width: 100%;
}

.drawer-bar:nth-of-type(1) {
  top: 0;
}

.drawer-bar:nth-of-type(2) {
  top: 10px;
}

.drawer-bar:nth-of-type(3) {
  top: 20px;
}

.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(-45deg);
  /*       background-color: #fff; */
}

.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}

.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(45deg);
  /*       background-color: #fff; */
}

.drawer-content--top {
  /*   padding: 0; */
}

.drawer-bg.is-checked {
  background: rgba(0, 0, 0, 0.4);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transition: 0.4s;
  width: 100vw;
}

.drawer-box {
  padding-top: 100px;
}

.g-nav-list {
  display: flex;
  flex-direction: row-reverse;
}

.g-nav-item {
  position: relative;
  text-align: center;
  transition: 0.2s;
}

.g-nav-item + li {
  margin-right: 40px;
}

.g-nav-icon {
  height: 30px;
  margin-bottom: 4px;
}

.g-nav-icon img {
  max-height: 30px;
}

.g-nav-item-link {
  -ms-writing-mode: tb-rl;
  color: #fff;
  font-feature-settings: normal;
  font-size: 2.2rem;
  padding-top: 1em;
  position: relative;
  transition: 0.2s;
  width: 100%;
  writing-mode: vertical-rl;
}

.g-nav-item-link:before {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  position: absolute;
  top: 0;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
}

.g-nav-item-link:hover {
  opacity: 0.7;
}

.g-nav-item-link span {
  margin: auto;
}

#dialog {
  background: rgba(0, 0, 0, 0.4);
  height: 100vh;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: 0.3s;
  visibility: hidden;
  visibility: hidden;
  width: 100vw;
  z-index: 9999999999;
}

#dialog .js-active {
  opacity: 1;
  visibility: visible;
}

#dialog .dialog-box {
  background-color: #4a81d8;
  box-shadow: 2px 2px 4px #333;
  color: #fff;
  left: 50%;
  padding: 30px 20px;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  z-index: 9999999999;
}

#dialog .dialog-text {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
}

#dialog button {
  cursor: pointer;
  display: inline-block;
  margin-top: 30px;
  padding: 10px 30px;
  position: relative;
}

#dialog button:hover {
  opacity: 0.7;
}

/* =============================================================================


     floating


============================================================================= */
.floating {
  background: rgba(74, 129, 216, 0.8);
  bottom: 20px;
  opacity: 0;
  position: fixed;
  right: 0px;
  transition: 0.3s;
  visibility: hidden;
  z-index: 10;
}

.floating a {
  display: inline-block;
  height: 143px;
  padding: 35px 48px 10px;
  transition: 0.2s;
  width: 143px;
}

.floating a:hover {
  opacity: 0.7;
}

.floating a span {
  background-image: url(../images/common/floating.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 100%;
  width: 100%;
}

[data-scroll="true"] .floating {
  opacity: 1;
  visibility: visible;
}

/* =============================================================================


     footer


============================================================================= */
footer {
  background: rgba(74, 129, 216, 0.3);
  border-bottom: 20px solid #4a81d8;
  padding: 80px 0;
  position: relative;
}

.footer-logo {
  font-size: 5.6rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4em;
}

.footer-item {
  font-size: 2rem;
}

.footer-item + li {
  margin-top: 1.5em;
}

.footer-link {
  padding-left: 1em;
  position: relative;
  transition: 0.2s;
}

.footer-link:before {
  content: ">";
}

.footer-link:hover {
  opacity: 0.7;
}

.copy {
  color: #666;
  font-family: acumin-pro, sans-serif;
  margin-top: 100px;
  text-align: center;
}

/* =============================================================================


     header


============================================================================= */
header {
  background: rgba(74, 129, 216, 0.8);
  height: 260px;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.2s;
  width: 100%;
  z-index: 20;
}

header._index {
  background: transparent;
}

.header-contents {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
  justify-content: space-between;
  transition: 0.2s;
  width: 100%;
  z-index: 2;
}

.header-contents._index {
  display: none;
}

.header-logo {
  display: inline-block;
}

.header-logo a {
  display: inline-block;
  position: relative;
  transition: 0.2s;
  width: 208px;
}

.header-logo a:hover {
  opacity: 0.7;
}

.header-nav-container {
  margin-left: 32px;
}

/* =============================================================================


     sf


============================================================================= */
.sf {
  background: #e6e6e6;
  padding: 80px 0;
}

.sf-flex {
  align-items: center;
  display: flex;
  justify-content: center;
}

.sf-img {
  max-width: 430px;
  width: 430px;
}

.sf-img + figure {
  margin-left: 80px;
}

.sf-img img {
  width: 100%;
}

.sf-img a {
  transition: 0.2s;
}

.sf-img a:hover {
  opacity: 0.7;
}

.pc-dis {
  display: none;
}

.tab-none {
  display: block;
}

.tab-dis {
  display: none;
}

.sp-none {
  display: block;
}

.sp-dis {
  display: none;
}

@media (max-width: 1366px){
  .pc-dis {
    display: block;
  }
}

@media (max-width: 1128px){
  .inner {
    max-width: 1080px;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
  }
  .tab-none {
    display: none;
  }
  .tab-dis {
    display: block;
  }
}

@media (max-width: 1014px){
  #dialog .dialog-text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@media (max-width: 767px){
  .delay-time01 {
    animation-delay: 0s;
  }
  .delay-time02 {
    animation-delay: 0s;
  }
  .delay-time04 {
    animation-delay: 0s;
  }
  body {
    font-size: 1.4rem;
    min-width: unset;
  }
  input[type="checkbox"] + span {
    display: block;
  }
  .inner {
    min-width: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .submv {
    height: 340px;
  }
  .submv-ttlbox {
    width: 180px;
  }
  .submv-ttl {
    font-size: 3rem;
    top: calc(50% + 40px);
  }
  .sec {
    padding: 60px 0 80px;
  }
  .inner-ttl {
    font-size: 2.6rem;
  }
  .contents-head-box {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .contents-head-box span {
    font-size: 1.6rem;
  }
  .contents-head-box._border {
    flex-direction: column;
  }
  .contents-head {
    font-size: 2.6rem;
  }
  .head-ttl {
    font-size: 2.6rem;
  }
  .head-txt {
    font-size: 1.8rem;
    margin-top: 24px;
    text-align: left;
  }
  .inner-list {
    margin-top: 40px;
  }
  .inner-item dt {
    font-size: 1.8rem;
    min-width: 7em;
    width: 7em;
  }
  .inner-item dd {
    font-size: 1.4rem;
    line-height: 2.14286;
  }
  .drawer {
    width: 40px;
  }
  .drawer-icon {
    display: inline-block;
  }
  .drawer-icon::after {
    font-size: 1rem;
  }
  .drawer-bars {
    height: 20px;
    width: 30px;
  }
  .drawer-bar:nth-of-type(2) {
    top: 8px;
  }
  .drawer-bar:nth-of-type(3) {
    top: 16px;
  }
  .drawer-content {
    background: #4a81d8;
    bottom: auto;
    color: translate;
    height: 100%;
    left: auto;
    max-width: 90%;
    overflow: auto;
    padding: 0;
    position: fixed;
    right: 0;
    text-align: left;
    top: 0;
    transform: translateX(105%);
    transition: all 0.5s ease 0s;
    width: 240px;
  }
  .drawer-content.is-checked {
    top: 0px;
    transform: translateX(0);
  }
  .drawer-content {
    min-width: unset;
  }
  .drawer-content--left {
    left: 0;
    right: auto;
    transform: translateX(-105%);
  }
  .drawer-content--top {
    bottom: auto;
    height: 100vh;
    max-width: 100%;
    min-width: 100%;
    min-width: auto;
    top: 0px;
    transform: translateY(-105%);
    width: 100%;
  }
  .drawer-box {
    padding-top: 80px;
  }
  .g-nav {
    margin-top: 80px;
  }
  .g-nav-list {
    flex-direction: column;
  }
  .g-nav-item {
    font-size: 1.6rem;
    margin: auto;
  }
  .g-nav-item + li {
    margin: 2em auto 0;
  }
  .g-nav-item-link {
    -ms-writing-mode: inherit;
    font-feature-settings: "palt";
    writing-mode: inherit;
  }
  #dialog .dialog-box {
    min-width: 250px;
  }
  .floating a {
    height: 70px;
    padding: 24px 24px 5px;
    width: 70px;
  }
  footer {
    padding: 60px 0;
  }
  .footer-logo {
    font-size: 4rem;
    left: auto;
    margin: 40px auto 0;
    position: relative;
    top: auto;
    transform: none;
  }
  .footer-item {
    font-size: 1.6rem;
  }
  .copy {
    font-size: 1rem;
    margin-top: 40px;
  }
  header {
    box-shadow: 3px 3px 3px 5px rgba(0, 0, 0, 0.2);
    height: 80px;
    left: 0;
    min-width: unset;
    position: fixed;
    top: 0;
  }
  header._index {
    background: rgba(74, 129, 216, 0.8);
    height: 80px;
  }
  .header-contents._index {
    display: flex;
  }
  .header-contents {
    flex-direction: row;
    justify-content: space-between;
  }
  .header-logo a {
    width: 40px;
  }
  .header-nav-container {
    margin-left: 0;
  }
  .sf {
    padding: 60px 0;
  }
  .sf-flex {
    flex-direction: column;
  }
  .sf-img {
    max-width: 300px;
    width: 80%;
  }
  .sf-img + figure {
    margin: 24px auto 0;
  }
  .sp-none {
    display: none;
  }
  .sp-dis {
    display: block;
  }
}


/*# sourceMappingURL=common.css.map*/