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

* Style Index
	#. Cores
	#. Layouts    :prefix[l-]
	#. Components :prefix[c-]
	#. Units
	#. Utilities  :prefix[u-]
	// #. Functions :prefix[js-]

------------------------------------------------ */
/* ------------------------------------------------
# Cores
------------------------------------------------ */
/*!
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

@font-face {
  font-family: "GothicB";
  src: url("../font/A-OTF Gothic MB101 Pro B.otf") format("opentype");
}
@font-face {
  font-family: "GothicDB";
  src: url("../font/A-OTF Gothic MB101 Pro DB.otf") format("opentype");
}
@font-face {
  font-family: "GothicM";
  src: url("../font/A-OTF Gothic MB101 Pro M.otf") format("opentype");
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

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

svg {
  width: auto;
  height: auto;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}

ul {
  list-style: none;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-size: 1.4rem;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro";
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
  background-color: #150201;
  color: #FFFFFF;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  display: inline-block;
  opacity: 1;
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
  border: none;
  background-color: initial;
}

/*-------------------------- SP/PC表示非表示 ------------------------------*/
.image-sp {
  display: none;
}

.content-sp {
  display: none;
}

.br-sp {
  display: none;
}

/* --------------------------------
 * smart phone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  .image-pc {
    display: none;
  }
  .content-pc {
    display: none;
  }
  .br-pc {
    display: none;
  }
  .image-sp {
    display: inline-block;
  }
  .content-sp {
    display: inline-block;
  }
  .br-sp {
    display: inline-block;
  }
}
/*-------------------------- コンテンツ幅 ------------------------------*/
.content-w {
  width: 1100px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}

.content-ws {
  width: 850px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}

/*-------------------------- 固定フォント ------------------------------*/
/* --------------------------------
 * フォントサイズ SP
 * -------------------------------- */
/* -------------------------------------------------------------------- 

   #ヘッダー

-------------------------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}
#header .header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
}
#header .header-inner .logo {
  width: 250px;
  margin-left: 30px;
}
#header .header-inner .logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
#header .header-inner .logo a:hover {
  opacity: 0.6;
}
#header .header-inner .form-button {
  font-size: 22px;
  line-height: 1em;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #E60012;
  padding: 25px 80px;
  transition: all 0.4s;
}
#header .header-inner .form-button:hover {
  background-color: #004FA2;
}

/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  #header .header-inner .logo {
    width: 150px;
    margin-left: 15px;
  }
  #header .header-inner .form-button {
    font-size: 16px;
    padding: 15px 30px;
  }
}
/* -------------------------------------------------------------------- 

   #キービジュアル

-------------------------------------------------------------------- */
#keyvicual {
  margin-top: 72px;
  overflow: hidden;
}
#keyvicual .keyvicual-wrapper {
  position: relative;
  height: calc(100vh - 72px);
  text-align: center;
}
#keyvicual .keyvicual-wrapper img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}
#keyvicual .keyvicual-wrapper .item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: calc(100vh - 72px);
}
#keyvicual .keyvicual-wrapper .item1,
#keyvicual .keyvicual-wrapper .item2,
#keyvicual .keyvicual-wrapper .item3 {
  animation-name: fadein1;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
#keyvicual .keyvicual-wrapper .item2 {
  animation-delay: 0.6s;
}
#keyvicual .keyvicual-wrapper .item3 {
  animation-delay: 1.2s;
}
#keyvicual .keyvicual-wrapper .item4,
#keyvicual .keyvicual-wrapper .item5,
#keyvicual .keyvicual-wrapper .item6 {
  animation-name: fadein2;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: scale(1.4);
}
#keyvicual .keyvicual-wrapper .item4 {
  animation-delay: 1.8s;
}
#keyvicual .keyvicual-wrapper .item5 {
  animation-delay: 2s;
}
#keyvicual .keyvicual-wrapper .item6 {
  animation-delay: 2.2s;
}

@keyframes fadein1 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein2 {
  0% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  #keyvicual {
    margin-top: 46px;
  }
  #keyvicual .keyvicual-wrapper {
    height: auto;
  }
  #keyvicual .keyvicual-wrapper img {
    height: auto;
    width: 100%;
  }
  #keyvicual .keyvicual-wrapper .item {
    height: calc(100vh - 46px);
  }
}
/* -------------------------------------------------------------------- 

   #環境

-------------------------------------------------------------------- */
#environment {
  text-align: center;
  font-family: "GothicDB";
  margin-bottom: 110px;
}
#environment h1 {
  font-size: 49px;
  line-height: 1.77em;
  margin-bottom: 10px;
}
#environment h1 span {
  display: inline-block;
  line-height: 1.77em;
  border-bottom: 3.5px solid #E60012;
}
#environment p {
  font-size: 22px;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  margin-bottom: 55px;
}
#environment .environment-step {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#environment .environment-step .step {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  padding: 0 40px 33px 0;
  text-align: left;
  position: relative;
}
#environment .environment-step .step .namber {
  width: 100px;
  margin-right: 10px;
}
#environment .environment-step .step h2,
#environment .environment-step .step h3,
#environment .environment-step .step p {
  font-size: 28px;
  line-height: 1.3em;
  margin: 0;
}
#environment .environment-step .step p {
  font-size: 20px;
}
#environment .environment-step .step h3 {
  font-size: 15px;
  line-height: 1.5em;
}
#environment .environment-step .step small {
  font-family: "GothicM";
  font-size: 12px;
  line-height: 1.5em;
}
#environment .environment-step .step .image {
  width: 158px;
  margin: 0 0 0 auto;
}
#environment .environment-step .step2 {
  padding: 0 0 33px 40px;
}
#environment .environment-step .step3 {
  padding: 33px 40px 33px 0;
}
#environment .environment-step .step4 {
  padding: 33px 0 33px 40px;
}
#environment .environment-step .step5 {
  padding: 33px 40px 0 0;
}
#environment .environment-step .step6 {
  padding: 33px 0 0 40px;
}
#environment .environment-step .step:before,
#environment .environment-step .step1::after,
#environment .environment-step .step3::after,
#environment .environment-step .step5::after {
  position: absolute;
  content: "";
  width: calc(100% - 14px);
  height: 1px;
  background-color: #FFFFFF;
  bottom: 0;
  left: 0;
}
#environment .environment-step .step2:before,
#environment .environment-step .step4:before {
  left: auto;
  right: 0;
}
#environment .environment-step .step5:before,
#environment .environment-step .step6:before {
  display: none;
}
#environment .environment-step .step1::after,
#environment .environment-step .step3::after,
#environment .environment-step .step5::after {
  width: 1px;
  height: calc(100% - 14px);
  top: 0;
  right: 0;
  left: auto;
}
#environment .environment-step .step3::after {
  height: calc(100% - 28px);
  top: 14px;
}
#environment .environment-step .step5::after {
  top: auto;
  bottom: 0;
}

/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  #environment {
    margin-bottom: 40px;
  }
  #environment h1 {
    font-size: 30px;
    margin-bottom: 7px;
  }
  #environment p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  #environment .environment-step .step {
    width: 100%;
    padding: 0 0 15px 0;
  }
  #environment .environment-step .step .namber {
    width: 40px;
    margin-right: 7px;
  }
  #environment .environment-step .step h2,
  #environment .environment-step .step h3,
  #environment .environment-step .step p {
    font-size: 18px;
  }
  #environment .environment-step .step p {
    font-size: 16px;
  }
  #environment .environment-step .step h3 {
    font-size: 12px;
    line-height: 1.5em;
  }
  #environment .environment-step .step .image {
    width: 30%;
    margin: 0 0 0 auto;
  }
  #environment .environment-step .step2,
  #environment .environment-step .step3,
  #environment .environment-step .step4,
  #environment .environment-step .step5,
  #environment .environment-step .step6 {
    padding: 15px 0;
  }
  #environment .environment-step .step:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
    bottom: 0;
    left: 0;
  }
  #environment .environment-step .step5:before,
  #environment .environment-step .step6:before {
    display: inline-block;
  }
  #environment .environment-step .step::after {
    display: none;
  }
}
/* -------------------------------------------------------------------- 

   #応募ボタン

-------------------------------------------------------------------- */
.form-button-wrapper button {
  padding: 0 5px 5px 0;
  background-image: url("../image/form_button_shadow.png");
  background-position: bottom right;
  background-size: calc(100% - 5px) auto;
  background-repeat: no-repeat;
  transition: all 0.4s;
}
.form-button-wrapper button:hover {
  padding: 0 0 0 5px;
  margin-top: 5px;
}

.tow-track {
  padding-bottom: 970px;
  background-image: url("../image/tow_track.png");
  background-repeat: no-repeat;
  background-size: auto 1067px;
  background-position: bottom center;
}

/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  .form-button-wrapper button {
    background-image: url("../image/form_shadow_sp.png");
  }
  .tow-track {
    padding-bottom: 320px;
    background-size: auto 350px;
  }
}
/* -------------------------------------------------------------------- 

   #仕事内容

-------------------------------------------------------------------- */
#work {
  text-align: center;
  font-family: "GothicDB";
  margin-top: -140px;
  padding-bottom: 160px;
  background-image: url("../image/track_one.png");
  background-repeat: no-repeat;
  background-size: auto 1290px;
  background-position: bottom left;
}
#work h1 {
  font-size: 49px;
  line-height: 1.77em;
  margin-bottom: 10px;
}
#work h1 span {
  display: inline-block;
  line-height: 1.77em;
  border-bottom: 3.5px solid #E60012;
}
#work p {
  font-size: 22px;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  margin-bottom: 55px;
}
#work .work-content {
  width: 850px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 110px;
}
#work .work-content .item {
  width: 190px;
}
#work .senior {
  width: 590px;
  max-width: 100%;
  margin: 127px 0 0 auto;
  padding-left: 34px;
  border-left: 3.5px solid #E60012;
  position: relative;
}
#work .senior h1 {
  font-size: 49px;
  line-height: 1em;
  margin-bottom: 20px;
}
#work .senior h2 {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro";
  font-size: 21px;
  font-size: 700;
  letter-spacing: 0.025px;
  margin-bottom: 30px;
}
#work .senior .img {
  width: 200px;
  margin: 0 auto 40px auto;
}
#work .senior p {
  text-align: left;
  font-family: "GothicM";
  font-size: 20px;
  line-height: 1.7em;
  margin-bottom: 0;
}
#work .senior::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 3.5px;
  background-color: #E60012;
  top: 0;
  left: -10.5px;
}

/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  #work {
    margin-top: -30px;
    padding-bottom: 30px;
    background-size: auto 500px;
    margin-bottom: 40px;
  }
  #work h1 {
    font-size: 29px;
    margin-bottom: 7px;
  }
  #work p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  #work .work-content {
    gap: 10px 2%;
    margin-bottom: 40px;
  }
  #work .work-content .item {
    width: 32%;
  }
  #work .senior {
    margin: 70px 0 0 auto;
    padding-left: 0;
    border-left: none;
  }
  #work .senior h1 {
    font-size: 29px;
    margin-bottom: 15px;
  }
  #work .senior h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  #work .senior .img {
    width: 100px;
    margin: 0 auto 20px auto;
  }
  #work .senior p {
    font-size: 16px;
    margin-bottom: 0;
  }
  #work .senior::before {
    display: none;
  }
}
/* -------------------------------------------------------------------- 

   #募集要項

-------------------------------------------------------------------- */
#recruit {
  margin-top: -25px;
  text-align: center;
  font-family: "GothicDB";
  margin-bottom: 130px;
}
#recruit h1 {
  font-size: 49px;
  line-height: 1.77em;
}
#recruit h1 span {
  display: inline-block;
  line-height: 1.77em;
  border-bottom: 3.5px solid #E60012;
}
#recruit .recruit-content h1 {
  margin-bottom: 40px;
}
#recruit .recruit-content .table {
  border: 1px solid #231815;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 130px;
  background-color: #FFFFFF;
  color: #231815;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro";
}
#recruit .recruit-content .table th,
#recruit .recruit-content .table td {
  padding: 20px 40px;
  border: 1px solid #231815;
  font-size: 15px;
  line-height: 1.66em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
#recruit .recruit-content .table th {
  text-align: left;
  font-weight: 600;
  background-color: #E6EBEE;
  width: 18%;
  padding: 20px 18px;
  vertical-align: middle;
}
#recruit .recruit-content .table td {
  font-size: 15px;
  width: 82%;
  text-align: left;
}
#recruit .recruit-content .table td span {
  font-size: 12px;
}
#recruit .location h1 {
  margin-bottom: 60px;
}
#recruit .location h2 {
  font-size: 31px;
  margin-bottom: 50px;
}
#recruit .location .map {
  height: 440px;
  margin-bottom: 140px;
}

/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  #recruit {
    margin-top: -10px;
    margin-bottom: 70px;
  }
  #recruit h1 {
    font-size: 30px;
  }
  #recruit .recruit-content h1 {
    margin-bottom: 30px;
  }
  #recruit .recruit-content .table {
    margin-bottom: 50px;
  }
  #recruit .recruit-content .table th,
  #recruit .recruit-content .table td {
    padding: 10px 10px;
    font-size: 14px;
  }
  #recruit .recruit-content .table th {
    width: 30%;
    padding: 10px 10px;
  }
  #recruit .recruit-content .table td {
    font-size: 15px;
    width: 70%;
  }
  #recruit .recruit-content .table td span {
    font-size: 12px;
  }
  #recruit .location h1 {
    margin-bottom: 20px;
  }
  #recruit .location h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  #recruit .location .map {
    height: 350px;
    margin-bottom: 50px;
  }
}
/* -------------------------------------------------------------------- 

   #流れ

-------------------------------------------------------------------- */
#flow {
  font-family: "GothicDB";
}
#flow h1 {
  font-size: 49px;
  line-height: 1.77em;
  text-align: center;
  margin-bottom: 80px;
}
#flow h1 span {
  display: inline-block;
  line-height: 1.77em;
  border-bottom: 3.5px solid #E60012;
}
#flow .flow-content {
  display: flex;
  margin-bottom: 135px;
}
#flow .flow-content .item {
  width: 20%;
  text-align: center;
  position: relative;
}
#flow .flow-content .item .img {
  height: 90px;
  margin: 0 auto 30px auto;
}
#flow .flow-content .item .img img {
  height: 100%;
  width: auto;
}
#flow .flow-content .item h2 {
  font-size: 28px;
  line-height: 1em;
  text-align: center;
  display: inline-block;
  margin: 0 auto 20px auto;
  padding-bottom: 18px;
  border-bottom: 10px solid #E60012;
}
#flow .flow-content .item p {
  font-size: 19px;
  line-height: 1.6em;
}
#flow .flow-content .item p small {
  font-size: 12px;
}
#flow .flow-content .item::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 40px;
  top: 0;
  right: -20px;
  background-image: url("../image/slash.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  #flow h1 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  #flow .flow-content {
    display: flex;
    flex-flow: column;
    margin-bottom: 70px;
  }
  #flow .flow-content .item {
    width: 100%;
    text-align: left;
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #FFFFFF;
  }
  #flow .flow-content .item .img {
    margin: 0 20px 0 0;
  }
  #flow .flow-content .item h2 {
    font-size: 18px;
    margin: 0 auto 10px auto;
    padding-bottom: 9px;
    border-bottom: 5px solid #E60012;
  }
  #flow .flow-content .item p {
    font-size: 16px;
  }
  #flow .flow-content .item::before {
    display: none;
  }
}
/* -------------------------------------------------------------------- 

   #よくある質問

-------------------------------------------------------------------- */
#question {
  font-family: "GothicDB";
}
#question .question-wrapper {
  width: 860px;
}
#question .question-wrapper .question-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 160px;
}
#question .question-wrapper .question-content .item {
  width: 50%;
  min-height: 320px;
}
#question .question-wrapper .question-content .item1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#question .question-wrapper .question-content .item1 .title-img {
  width: 60px;
  margin-right: 20px;
}
#question .question-wrapper .question-content .item1 h1 {
  font-size: 49px;
  line-height: 1.77em;
  text-align: center;
}
#question .question-wrapper .question-content .item1 h1 span {
  display: inline-block;
  line-height: 1.77em;
  border-bottom: 3.5px solid #E60012;
}
#question .question-wrapper .question-content .item2,
#question .question-wrapper .question-content .item3,
#question .question-wrapper .question-content .item4,
#question .question-wrapper .question-content .item5,
#question .question-wrapper .question-content .item6 {
  border: 5px solid #FFFFFF;
  padding: 40px;
}
#question .question-wrapper .question-content .item2 .q,
#question .question-wrapper .question-content .item2 .a,
#question .question-wrapper .question-content .item3 .q,
#question .question-wrapper .question-content .item3 .a,
#question .question-wrapper .question-content .item4 .q,
#question .question-wrapper .question-content .item4 .a,
#question .question-wrapper .question-content .item5 .q,
#question .question-wrapper .question-content .item5 .a,
#question .question-wrapper .question-content .item6 .q,
#question .question-wrapper .question-content .item6 .a {
  display: flex;
  justify-content: flex-start;
}
#question .question-wrapper .question-content .item2 .q .img,
#question .question-wrapper .question-content .item2 .a .img,
#question .question-wrapper .question-content .item3 .q .img,
#question .question-wrapper .question-content .item3 .a .img,
#question .question-wrapper .question-content .item4 .q .img,
#question .question-wrapper .question-content .item4 .a .img,
#question .question-wrapper .question-content .item5 .q .img,
#question .question-wrapper .question-content .item5 .a .img,
#question .question-wrapper .question-content .item6 .q .img,
#question .question-wrapper .question-content .item6 .a .img {
  width: 27px;
  margin-right: 15px;
}
#question .question-wrapper .question-content .item2 .q p,
#question .question-wrapper .question-content .item2 .a p,
#question .question-wrapper .question-content .item3 .q p,
#question .question-wrapper .question-content .item3 .a p,
#question .question-wrapper .question-content .item4 .q p,
#question .question-wrapper .question-content .item4 .a p,
#question .question-wrapper .question-content .item5 .q p,
#question .question-wrapper .question-content .item5 .a p,
#question .question-wrapper .question-content .item6 .q p,
#question .question-wrapper .question-content .item6 .a p {
  width: calc(100% - 42px);
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55em;
}
#question .question-wrapper .question-content .item2 .q,
#question .question-wrapper .question-content .item3 .q,
#question .question-wrapper .question-content .item4 .q,
#question .question-wrapper .question-content .item5 .q,
#question .question-wrapper .question-content .item6 .q {
  margin-bottom: 35px;
}
#question .question-wrapper .question-content .item3,
#question .question-wrapper .question-content .item5 {
  border-right: none;
}
#question .question-wrapper .question-content .item2,
#question .question-wrapper .question-content .item3,
#question .question-wrapper .question-content .item4 {
  border-bottom: none;
}

/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  #question .question-wrapper .question-content {
    flex-flow: column;
    margin-bottom: 70px;
  }
  #question .question-wrapper .question-content .item {
    width: 100%;
    min-height: auto;
  }
  #question .question-wrapper .question-content .item1 {
    margin-bottom: 40px;
  }
  #question .question-wrapper .question-content .item1 .title-img {
    width: 30px;
    margin-right: 10px;
  }
  #question .question-wrapper .question-content .item1 h1 {
    font-size: 30px;
  }
  #question .question-wrapper .question-content .item2,
  #question .question-wrapper .question-content .item3,
  #question .question-wrapper .question-content .item4,
  #question .question-wrapper .question-content .item5,
  #question .question-wrapper .question-content .item6 {
    border: 2.5px solid #FFFFFF;
    padding: 20px;
  }
  #question .question-wrapper .question-content .item2 .q .img,
  #question .question-wrapper .question-content .item2 .a .img,
  #question .question-wrapper .question-content .item3 .q .img,
  #question .question-wrapper .question-content .item3 .a .img,
  #question .question-wrapper .question-content .item4 .q .img,
  #question .question-wrapper .question-content .item4 .a .img,
  #question .question-wrapper .question-content .item5 .q .img,
  #question .question-wrapper .question-content .item5 .a .img,
  #question .question-wrapper .question-content .item6 .q .img,
  #question .question-wrapper .question-content .item6 .a .img {
    width: 18px;
    margin-right: 8px;
  }
  #question .question-wrapper .question-content .item2 .q p,
  #question .question-wrapper .question-content .item2 .a p,
  #question .question-wrapper .question-content .item3 .q p,
  #question .question-wrapper .question-content .item3 .a p,
  #question .question-wrapper .question-content .item4 .q p,
  #question .question-wrapper .question-content .item4 .a p,
  #question .question-wrapper .question-content .item5 .q p,
  #question .question-wrapper .question-content .item5 .a p,
  #question .question-wrapper .question-content .item6 .q p,
  #question .question-wrapper .question-content .item6 .a p {
    width: calc(100% - 26px);
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.55em;
  }
  #question .question-wrapper .question-content .item2 .q,
  #question .question-wrapper .question-content .item3 .q,
  #question .question-wrapper .question-content .item4 .q,
  #question .question-wrapper .question-content .item5 .q,
  #question .question-wrapper .question-content .item6 .q {
    margin-bottom: 15px;
  }
  #question .question-wrapper .question-content .item3,
  #question .question-wrapper .question-content .item5 {
    border-right: 2.5px solid #FFFFFF;
  }
  #question .question-wrapper .question-content .item2,
  #question .question-wrapper .question-content .item3,
  #question .question-wrapper .question-content .item4,
  #question .question-wrapper .question-content .item5 {
    border-bottom: none;
  }
}
/* -------------------------------------------------------------------- 

   #サポート

-------------------------------------------------------------------- */
#support .support-wrapper {
  width: 860px;
  margin-bottom: 140px;
}
#support .support-wrapper h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.8em;
  margin-bottom: 40px;
  color: #004FA2;
}
#support .support-wrapper h1 span {
  display: inline-block;
  line-height: 1.2em;
  padding: 0 15px;
  background-color: #FFFFFF;
}
#support .support-wrapper h1 span.content-sp {
  display: none;
}
#support .support-wrapper .support-content {
  display: flex;
  justify-content: space-between;
}
#support .support-wrapper .support-content .txt {
  width: calc(100% - 280px);
}
#support .support-wrapper .support-content .txt p {
  font-size: 22px;
  line-height: 1.9em;
  font-weight: 600;
  letter-spacing: 0.025em;
}
#support .support-wrapper .support-content .img {
  width: 260px;
  display: flex;
  flex-flow: column;
  gap: 15px;
}

/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  #support .support-wrapper {
    margin-bottom: 70px;
  }
  #support .support-wrapper h1 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.5em;
  }
  #support .support-wrapper h1 span {
    display: inline-block;
    line-height: 1.2em;
    padding: 0 5px;
    background-color: #FFFFFF;
  }
  #support .support-wrapper h1 span.content-pc {
    display: none;
  }
  #support .support-wrapper h1 span.content-sp {
    display: inline-block;
  }
  #support .support-wrapper .support-content {
    flex-flow: column;
  }
  #support .support-wrapper .support-content .txt {
    width: 100%;
  }
  #support .support-wrapper .support-content .txt p {
    font-size: 16px;
    line-height: 1.8em;
    margin-bottom: 20px;
  }
  #support .support-wrapper .support-content .img {
    width: 100%;
    display: flex;
    flex-flow: initial;
    justify-content: space-between;
  }
  #support .support-wrapper .support-content .img img {
    width: 49%;
  }
}
/* -------------------------------------------------------------------- 

   #アバウト

-------------------------------------------------------------------- */
#about {
  padding-bottom: 110px;
}
#about .about-wrapper {
  width: 860px;
}
#about .about-wrapper h1 {
  font-family: "GothicDB";
  font-size: 49px;
  line-height: 1.77em;
  text-align: center;
  margin-bottom: 60px;
}
#about .about-wrapper h1 span {
  display: inline-block;
  line-height: 1.77em;
  border-bottom: 3.5px solid #E60012;
}
#about .about-wrapper .about-content {
  padding-bottom: 65px;
}
#about .about-wrapper .about-content .item {
  background-color: #FFFFFF;
  padding: 25px 40px;
  margin-bottom: 43px;
}
#about .about-wrapper .about-content .item h2 {
  font-size: 26px;
  line-height: 43px;
  background-color: #004FA2;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}
#about .about-wrapper .about-content .item .item-wrapper {
  display: flex;
}
#about .about-wrapper .about-content .item .item-wrapper .img {
  width: 120px;
  margin-right: 45px;
}
#about .about-wrapper .about-content .item .item-wrapper p {
  width: calc(100% - 165px);
  color: #231815;
  font-size: 18px;
  line-height: 1.7em;
  font-weight: 300;
  letter-spacing: 0.025em;
}

/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  #about {
    padding-bottom: 70px;
  }
  #about .about-wrapper h1 {
    font-size: 29px;
    margin-bottom: 40px;
  }
  #about .about-wrapper .about-content {
    padding-bottom: 20px;
  }
  #about .about-wrapper .about-content .item {
    padding: 15px 15px;
    margin-bottom: 20px;
  }
  #about .about-wrapper .about-content .item h2 {
    font-size: 18px;
    line-height: 2em;
    margin-bottom: 15px;
  }
  #about .about-wrapper .about-content .item .item-wrapper {
    flex-flow: column-reverse;
  }
  #about .about-wrapper .about-content .item .item-wrapper .img {
    margin: 15px auto 0 auto;
  }
  #about .about-wrapper .about-content .item .item-wrapper p {
    width: 100%;
    color: #231815;
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 300;
    letter-spacing: 0.025em;
  }
}
/* -------------------------------------------------------------------- 

   #フッター

-------------------------------------------------------------------- */
footer {
  background-color: #FFFFFF;
  padding: 40px 0 25px;
  text-align: center;
}
footer .logo {
  width: 250px;
  margin: 0 auto 20px auto;
}
footer .logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
footer small {
  font-size: 14px;
  font-weight: 300;
  line-height: 1em;
  color: #231815;
}

/* --------------------------------
 * iphone
 * -------------------------------- */
@media screen and (max-width: 959px) {
  footer {
    padding: 20px 0;
  }
  footer .logo {
    width: 200px;
    margin: 0 auto 5px auto;
  }
  footer small {
    font-size: 10px;
  }
}
/* -------------------------------------------------------------------- 

   #アニメーション

-------------------------------------------------------------------- */
.fade-up {
  transition: all 1s;
  opacity: 0;
  transform: translate(0, 20px);
}

.fade-up.active {
  opacity: 1;
  transform: translate(0, 0);
}

h1.fade-up span {
  position: relative;
}
h1.fade-up span:before {
  position: absolute;
  content: "";
  width: 110%;
  height: 4px;
  background-color: #150201;
  bottom: -3.5px;
  right: -5%;
  transition: all 0.5s;
}

h1.fade-up.active span:before {
  width: 0;
}/*# sourceMappingURL=styles.css.map */