@charset "UTF-8";
/*
 * =====================================================
 *
 * ベースレイアウトCSS
 *
 * =====================================================
 */
/**
 * ---------------------------------------------------
 * Web font setting
 * ---------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*
 * =====================================================
 *
 * [variable]
 *
 * =====================================================
 */
/**
 * ---------------------------------------------------
 * reset
 * ---------------------------------------------------
 */
#okurumateikiWrapper h1,
#okurumateikiWrapper h2,
#okurumateikiWrapper h3,
#okurumateikiWrapper h4,
#okurumateikiWrapper h5,
#okurumateikiWrapper h6,
#okurumateikiWrapper p,
#okurumateikiWrapper li,
#okurumateikiWrapper dl,
#okurumateikiWrapper pre,
#okurumateikiWrapper form,
#okurumateikiWrapper blockquote,
#okurumateikiWrapper fieldset,
#okurumateikiWrapper input,
#okurumateikiWrapper address,
#okurumateikiWrapper figure,
#okurumateikiWrapper picture,
#okurumateikiWrapper figcaption,
#okurumateikiWrapper main {
  margin: 0;
  padding: 0;
}

#okurumateikiWrapper main,
#okurumateikiWrapper article,
#okurumateikiWrapper aside,
#okurumateikiWrapper details,
#okurumateikiWrapper figcaption,
#okurumateikiWrapper figure,
#okurumateikiWrapper picture,
#okurumateikiWrapper footer,
#okurumateikiWrapper header,
#okurumateikiWrapper hgroup,
#okurumateikiWrapper nav,
#okurumateikiWrapper section,
#okurumateikiWrapper summary {
  display: block;
}

#okurumateikiWrapper img {
  vertical-align: middle;
  border: none;
  width: inherit;
  height: inherit;
  max-width: 100%;
}

#okurumateikiWrapper img[src$=".svg"] {
  width: 100%;
  height: auto;
}

#okurumateikiWrapper h1,
#okurumateikiWrapper h2,
#okurumateikiWrapper h3,
#okurumateikiWrapper h4,
#okurumateikiWrapper h5,
#okurumateikiWrapper h6,
#okurumateikiWrapper caption {
  font-weight: normal;
  font-size: 100%;
}

#okurumateikiWrapper a {
  outline: none;
}

#okurumateikiWrapper address {
  font-style: normal;
}

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

#okurumateikiWrapper caption {
  text-align: left;
}

#okurumateikiWrapper figcaption {
  font-size: 1.2rem;
}

#okurumateikiWrapper fieldset {
  border: none;
}

#okurumateikiWrapper legend {
  display: none;
}

#okurumateikiWrapper input[type=radio],
#okurumateikiWrapper input[type=checkbox],
#okurumateikiWrapper select {
  vertical-align: middle;
}

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

#okurumateikiWrapper a {
  color: #f0193c;
  text-decoration: underline;
}

#okurumateikiWrapper a:link {
  color: #f0193c;
  text-decoration: underline;
}

#okurumateikiWrapper a:visited {
  color: #f0193c;
  text-decoration: underline;
}

#okurumateikiWrapper a:hover {
  color: #f0193c;
  text-decoration: none;
}

#okurumateikiWrapper a:active {
  color: #f0193c;
  text-decoration: none;
}

#okurumateikiWrapper ::selection {
  color: #fff;
  background: #f0193c;
}

#okurumateikiWrapper ::-moz-selection {
  color: #fff;
  background: #f0193c;
}

/**
 * ---------------------------------------------------
 * html
 * ---------------------------------------------------
 */
/**
 * ---------------------------------------------------
 * body
 * ---------------------------------------------------
 */
#okurumateikiWrapper {
  color: #000000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 2;
  width: 100%;
  background: #fff;
  position: relative;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/**
 * ---------------------------------------------------
 * wrapper
 * ---------------------------------------------------
 */
#okurumateikiWrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/**
 * ---------------------------------------------------
 * content
 * ---------------------------------------------------
 */
#container {
  max-width: 1000px;
  margin: 0 auto;
}

#content {
  padding: 50px;
  background: url(../../images/content/content/bg.png) repeat;
}

/**
 ****************************************************
 *
 * screens larger than {$bp}
 *
 ****************************************************
 */
/* END @media larger than 768 */
/**
 ****************************************************
 *
 * screens smaller than 768
 *
 ****************************************************
 */
@media only screen and (max-width: 767px) {
  /**
   * ---------------------------------------------------
   * body
   * ---------------------------------------------------
   */
  /**
  * ---------------------------------------------------
  * content
  * ---------------------------------------------------
  */
  #content {
    padding: 25px 0 0 0;
    background-size: 3px auto;
  }
} /* END @media smaller than $bp */
/*
 * =====================================================
 *
 * clearfix用CSS
 *
 * =====================================================
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
/**
 * Dreamweaver作業時のみ
 */
/* .clearfix { overflow:hidden; } */
/*
 * =====================================================
 *
 * 汎用要素用CSS
 *
 * =====================================================
 */
/**
 * ---------------------------------------------------
 * white-space
 * ---------------------------------------------------
 */
.wsN {
  white-space: nowrap;
}

/**
 * ---------------------------------------------------
 * word-wrap
 * ---------------------------------------------------
 */
.wrBW {
  word-wrap: break-word;
}

/**
 * ---------------------------------------------------
 * 文字色装飾
 * ---------------------------------------------------
 */
.cWhite {
  color: #FFFFFF;
}

.cBlue {
  color: #016bb5;
}

.cRed {
  color: #E4050B;
}

.cGray {
  color: #666666;
}

.cYellow {
  color: #FFFF00;
}

/**
 * ---------------------------------------------------
 * 文字装飾
 * ---------------------------------------------------
 */
.decUline {
  text-decoration: underline;
}

.decNone {
  text-decoration: none;
}

/**
 * ---------------------------------------------------
 * 文字サイズ
 * ---------------------------------------------------
 */
.s70 {
  font-size: 70%;
}

.s80 {
  font-size: 80%;
}

.s90 {
  font-size: 90%;
}

.s100 {
  font-size: 100%;
}

.s110 {
  font-size: 110%;
}

.s120 {
  font-size: 120%;
}

.s130 {
  font-size: 130%;
}

.s140 {
  font-size: 140%;
}

.s150 {
  font-size: 150%;
}

.s160 {
  font-size: 160%;
}

.s170 {
  font-size: 170%;
}

.s180 {
  font-size: 180%;
}

.s190 {
  font-size: 190%;
}

.s200 {
  font-size: 200%;
}

/**
 * ---------------------------------------------------
 * 文字の太さ
 * ---------------------------------------------------
 */
.fwN {
  font-weight: normal;
}

.fwB {
  font-weight: bold;
}

/**
 * ---------------------------------------------------
 * 文字の高さ
 * ---------------------------------------------------
 */
.lh0-5 {
  line-height: 0.5;
}

.lh1 {
  line-height: 1;
}

.lh1-1 {
  line-height: 1.1;
}

.lh1-2 {
  line-height: 1.2;
}

.lh1-5 {
  line-height: 1.5;
}

.lh2 {
  line-height: 2;
}

/**
 * ---------------------------------------------------
 * レイアウト
 * ---------------------------------------------------
 */
.mA {
  margin: 0 auto !important;
}

.mLA {
  margin-left: auto !important;
}

.mRA {
  margin-right: auto !important;
}

.m0 {
  margin: 0 !important;
}

.m3 {
  margin: 3px !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.m50 {
  margin: 50px !important;
}

.mT0 {
  margin-top: 0px !important;
}

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

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

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

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

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

.mT30 {
  margin-top: 30px !important;
}

.mT35 {
  margin-top: 35px !important;
}

.mT40 {
  margin-top: 40px !important;
}

.mT45 {
  margin-top: 45px !important;
}

.mT50 {
  margin-top: 50px !important;
}

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

.mB3 {
  margin-right: 3px !important;
}

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

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

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

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

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

.mR30 {
  margin-right: 30px !important;
}

.mR35 {
  margin-right: 35px !important;
}

.mR40 {
  margin-right: 40px !important;
}

.mR45 {
  margin-right: 45px !important;
}

.mR50 {
  margin-right: 50px !important;
}

.mR60 {
  margin-right: 60px !important;
}

.mR70 {
  margin-right: 70px !important;
}

.mR100 {
  margin-right: 100px !important;
}

.mR110 {
  margin-right: 110px !important;
}

.mR120 {
  margin-right: 120px !important;
}

.mR130 {
  margin-right: 130px !important;
}

.mR140 {
  margin-right: 140px !important;
}

.mR150 {
  margin-right: 150px !important;
}

.mR160 {
  margin-right: 160px !important;
}

.mR170 {
  margin-right: 170px !important;
}

.mR180 {
  margin-right: 180px !important;
}

.mR190 {
  margin-right: 190px !important;
}

.mR200 {
  margin-right: 200px !important;
}

.mR210 {
  margin-right: 210px !important;
}

.mR220 {
  margin-right: 220px !important;
}

.mR230 {
  margin-right: 230px !important;
}

.mR240 {
  margin-right: 240px !important;
}

.mR250 {
  margin-right: 250px !important;
}

.mR260 {
  margin-right: 260px !important;
}

.mR280 {
  margin-right: 280px !important;
}

.mR300 {
  margin-right: 300px !important;
}

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

.mB3 {
  margin-bottom: 3px !important;
}

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

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

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

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

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

.mB30 {
  margin-bottom: 30px !important;
}

.mB35 {
  margin-bottom: 35px !important;
}

.mB40 {
  margin-bottom: 40px !important;
}

.mB45 {
  margin-bottom: 45px !important;
}

.mB50 {
  margin-bottom: 50px !important;
}

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

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

.mL1em {
  margin-left: 1em !important;
}

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

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

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

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

.mL30 {
  margin-left: 30px !important;
}

.mL35 {
  margin-left: 35px !important;
}

.mL40 {
  margin-left: 40px !important;
}

.mL45 {
  margin-left: 45px !important;
}

.mL50 {
  margin-left: 50px !important;
}

.mL55 {
  margin-left: 55px !important;
}

.mL60 {
  margin-left: 60px !important;
}

.mL70 {
  margin-left: 70px !important;
}

.mL80 {
  margin-left: 80px !important;
}

.mL85 {
  margin-left: 85px !important;
}

.mL105 {
  margin-left: 105px !important;
}

.mL110 {
  margin-left: 110px !important;
}

.mL115 {
  margin-left: 115px !important;
}

.mL120 {
  margin-left: 120px !important;
}

.mL130 {
  margin-left: 130px !important;
}

.mL140 {
  margin-left: 140px !important;
}

.mL150 {
  margin-left: 150px !important;
}

.mL170 {
  margin-left: 170px !important;
}

.mL200 {
  margin-left: 200px !important;
}

.mL225 {
  margin-left: 225px !important;
}

.mL270 {
  margin-left: 270px !important;
}

.p0 {
  padding: 0 !important;
}

.p3 {
  padding: 3px !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.pT0 {
  padding-top: 0px !important;
}

.pT2 {
  padding-top: 2px !important;
}

.pT3 {
  padding-top: 3px !important;
}

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

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

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

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

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

.pT30 {
  padding-top: 30px !important;
}

.pT35 {
  padding-top: 35px !important;
}

.pT40 {
  padding-top: 40px !important;
}

.pT45 {
  padding-top: 45px !important;
}

.pT50 {
  padding-top: 50px !important;
}

.pT80 {
  padding-top: 80px !important;
}

.pT100 {
  padding-top: 100px !important;
}

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

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

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

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

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

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

.pR30 {
  padding-right: 30px !important;
}

.pR35 {
  padding-right: 35px !important;
}

.pR40 {
  padding-right: 40px !important;
}

.pR45 {
  padding-right: 45px !important;
}

.pR50 {
  padding-right: 50px !important;
}

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

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

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

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

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

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

.pB30 {
  padding-bottom: 30px !important;
}

.pB35 {
  padding-bottom: 35px !important;
}

.pB40 {
  padding-bottom: 40px !important;
}

.pB45 {
  padding-bottom: 45px !important;
}

.pB50 {
  padding-bottom: 50px !important;
}

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

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

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

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

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

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

.pL30 {
  padding-left: 30px !important;
}

.pL35 {
  padding-left: 35px !important;
}

.pL40 {
  padding-left: 40px !important;
}

.pL45 {
  padding-left: 45px !important;
}

.pL50 {
  padding-left: 50px !important;
}

/**
 * ---------------------------------------------------
 * float用スタイル
 * ---------------------------------------------------
 */
.fLeft {
  float: left;
}

.fRight {
  float: right;
}

.fClear {
  clear: both;
}

.fClearL {
  clear: left;
}

.fClearR {
  clear: right;
}

.fN {
  float: none;
}

/**
 * ---------------------------------------------------
 * position用スタイル
 * ---------------------------------------------------
 */
.posRel {
  position: relative;
}

.posAbs {
  position: absolute;
}

.posT0R0 {
  right: 0px;
  top: 0px;
}

/**
 * ---------------------------------------------------
 * overflow
 * ---------------------------------------------------
 */
.ofHidden {
  overflow: hidden;
}

.ofAuto {
  overflow: auto;
}

.ofVisible {
  overflow: visible;
}

/**
 * ---------------------------------------------------
 * display用スタイル
 * ---------------------------------------------------
 */
.dspInline {
  display: inline;
}

.dspBlock {
  display: block;
}

.dspInlBlock {
  display: inline-block;
}

.dspNone {
  display: none;
}

/**
 * ---------------------------------------------------
 * 汎用行揃え用スタイル
 * ---------------------------------------------------
 */
.alignLeft {
  text-align: left !important;
}

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

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

/**
 * ---------------------------------------------------
 * 汎用縦揃え用スタイル
 * ---------------------------------------------------
 */
.valignTop {
  vertical-align: top;
}

.valignMiddle {
  vertical-align: middle;
}

.valignBottom {
  vertical-align: bottom;
}

.valignTextBottom {
  vertical-align: text-bottom;
}

.valignSuper {
  vertical-align: super;
}

/**
 * ---------------------------------------------------
 * 汎用幅指定用スタイル
 * ---------------------------------------------------
 */
.w5 {
  width: 5px;
}

.w10em {
  width: 10em;
}

.w10p {
  width: 10%;
}

.w15p {
  width: 15%;
}

.w20p {
  width: 20%;
}

.w25p {
  width: 25%;
}

.w30p {
  width: 30%;
}

.w30 {
  width: 30px;
}

.w40p {
  width: 40%;
}

.w40 {
  width: 40px;
}

.w50 {
  width: 50px;
}

.w60 {
  width: 60px;
}

.w70 {
  width: 70px;
}

.w80 {
  width: 80px;
}

.w90 {
  width: 90px;
}

.w98p {
  width: 98%;
}

.w99p {
  width: 99%;
}

.w100 {
  width: 100px;
}

.w100p {
  width: 100%;
}

/**
 * ---------------------------------------------------
 * hasLayout true
 * ---------------------------------------------------
 */
.h1p {
  height: 1%;
}

.z1 {
  zoom: 1;
}

/**
 * ---------------------------------------------------
 * リスト用スタイル
 * ---------------------------------------------------
 */
.listTypeNone {
  list-style-type: none;
}

.listInside {
  list-style-position: inside;
}

.listOutside {
  list-style-position: outside;
}

.listTypeDisc {
  list-style-type: disc;
}

.listTypeSquare {
  list-style-type: square;
}

.listTypeCircle {
  list-style-type: circle;
}

.listTypeNum {
  padding-left: 0px;
  margin-left: 0px;
  margin-top: 0px;
}

.listTypeNum li {
  list-style-type: none;
  padding: 0px 0px 0px 20px;
}

.listNumParentheses {
  list-style-type: none;
  list-style-position: inside;
}

.listNumParentheses li {
  counter-increment: cnt;
}

.listNumParentheses li:before {
  display: marker;
  content: "(" counter(cnt) ")";
}

/**
 * ---------------------------------------------------
 * 背景色用スタイル
 * ---------------------------------------------------
 */
.bgFFFFFF {
  background-color: #FFFFFF;
}

.bgE6ECE8 {
  background-color: #e6ece8;
}

.bgF0F0DC {
  background-color: #F0F0DC;
}

.bgF0EFEE {
  background-color: #F0EFEE;
}

.bgEBE6E1 {
  background-color: #EBE6E1;
}

.bgC9C9C9 {
  background-color: #C9C9C9;
}

/**
 * ---------------------------------------------------
 * ボーダー用スタイル
 * ---------------------------------------------------
 */
.bdr1s999 {
  border: 1px solid #999999;
}

.bdr1sCCC {
  border: 1px solid #CCCCCC;
}

.bdr1sBBB {
  border: 1px solid #BBBBBB;
}

.bdr1s5B5B5B {
  border: 1px solid #5B5B5B;
}

.bdr1do444444 {
  border: 1px dotted #444444;
}

.bdrTn {
  border-top: none !important;
}

.bdrRn {
  border-right: none !important;
}

.bdrBn {
  border-bottom: none !important;
}

.bdrLn {
  border-left: none !important;
}

.bdrN {
  border: none !important;
}

.bdrTop {
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
}

.bdrRight {
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
}

.bdrBottom {
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
}

.bdrLeft {
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}

/**
 * テキストインデント
 */
.tim1em {
  text-indent: -1em;
}

.ti1em {
  text-indent: 1em;
}

/**
 * カーソル
 */
.csrPtr {
  cursor: pointer;
}

/**
 * ---------------------------------------------------
 * css3 角丸ボーダー
 * ---------------------------------------------------
 */
.bdrRad3 {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.bdrRad5 {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

/**
 * ワードブレイク
 */
.wbBrkA {
  word-break: break-all;
}

/**
 * IE png support用
 */
/**
 * 高さ合わせ
 */
/**
 * ホバーフェード
 */
/**
 * ロールオーバー
 */
/**
 * ホバーフェード(画像二枚版)
 */
/**
 * スムーススクロール
 */
/**
 * png画像→gif画像へ差し替え
 */
/**
 * PC画像⇔SP画像切替え
 */
/*
 * =====================================================
 *
 * [print用CSS]
 *
 * =====================================================
 */
/*
 * =====================================================
 *
 * [common]
 *
 * =====================================================
 */
/* END body */
/**
 ****************************************************
 *
 * screens larger than $bp
 *
 ****************************************************
 */
@media only screen and (min-width: 768px) {
  /* END body */
}
/**
 ****************************************************
 *
 * screens smaller than $bp + 1
 *
 ****************************************************
 */
@media only screen and (max-width: 768px) {
  /* END body */
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  /* END body */
}
/**
 ****************************************************
 *
 * screens smaller than $bp
 *
 ****************************************************
 */
@media only screen and (max-width: 767px) {
  /* END body */
} /* END @media smaller than $bp */
/*
 * =====================================================
 *
 * [content]
 *
 * =====================================================
 */
#okurumateikiWrapper {
  /**
  * ---------------------------------------------------
  * 幅指定
  * ---------------------------------------------------
  */
  /**
  * ---------------------------------------------------
  * レイアウト
  * ---------------------------------------------------
  */
  /**
  * ---------------------------------------------------
  * 文字サイズ
  * ---------------------------------------------------
  */
  /**
  * ---------------------------------------------------
  * リスト
  * ---------------------------------------------------
  */
  /**
  * ---------------------------------------------------
  * ボタン
  * ---------------------------------------------------
  */
  /**
  * ---------------------------------------------------
  * テーブル
  * ---------------------------------------------------
  */
  /**
  * ---------------------------------------------------
  * 汎用ボックス
  * ---------------------------------------------------
  */
  /**
  * transition series
  */
  /**
  * フォーム
  */
}
#okurumateikiWrapper .w33p {
  width: 33%;
}
#okurumateikiWrapper .w48p {
  width: 48%;
}
#okurumateikiWrapper .w49p {
  width: 49%;
}
#okurumateikiWrapper .w50p {
  width: 50%;
}
#okurumateikiWrapper .w90p {
  width: 90%;
}
#okurumateikiWrapper .w50 {
  width: 50px;
}
#okurumateikiWrapper .w60 {
  width: 60px;
}
#okurumateikiWrapper .w70 {
  width: 70px;
}
#okurumateikiWrapper .w80 {
  width: 80px;
}
#okurumateikiWrapper .w90 {
  width: 90px;
}
#okurumateikiWrapper .w100 {
  width: 100px;
}
#okurumateikiWrapper .w110 {
  width: 110px;
}
#okurumateikiWrapper .w120 {
  width: 120px;
}
#okurumateikiWrapper .w130 {
  width: 130px;
}
#okurumateikiWrapper .w140 {
  width: 140px;
}
#okurumateikiWrapper .w150 {
  width: 150px;
}
#okurumateikiWrapper .w160 {
  width: 160px;
}
#okurumateikiWrapper .w170 {
  width: 170px;
}
#okurumateikiWrapper .w180 {
  width: 180px;
}
#okurumateikiWrapper .w190 {
  width: 190px;
}
#okurumateikiWrapper .w200 {
  width: 200px;
}
#okurumateikiWrapper .w210 {
  width: 210px;
}
#okurumateikiWrapper .w220 {
  width: 220px;
}
#okurumateikiWrapper .w230 {
  width: 230px;
}
#okurumateikiWrapper .w240 {
  width: 240px;
}
#okurumateikiWrapper .w250 {
  width: 250px;
}
#okurumateikiWrapper .w260 {
  width: 260px;
}
#okurumateikiWrapper .w270 {
  width: 270px;
}
#okurumateikiWrapper .w280 {
  width: 280px;
}
#okurumateikiWrapper .w290 {
  width: 290px;
}
#okurumateikiWrapper .w300 {
  width: 300px;
}
#okurumateikiWrapper .w310 {
  width: 310px;
}
#okurumateikiWrapper .w320 {
  width: 320px;
}
#okurumateikiWrapper .w330 {
  width: 330px;
}
#okurumateikiWrapper .w340 {
  width: 340px;
}
#okurumateikiWrapper .w350 {
  width: 350px;
}
#okurumateikiWrapper .w360 {
  width: 360px;
}
#okurumateikiWrapper .w370 {
  width: 370px;
}
#okurumateikiWrapper .w380 {
  width: 380px;
}
#okurumateikiWrapper .w390 {
  width: 390px;
}
#okurumateikiWrapper .w400 {
  width: 400px;
}
#okurumateikiWrapper .w410 {
  width: 410px;
}
#okurumateikiWrapper .w420 {
  width: 420px;
}
#okurumateikiWrapper .w430 {
  width: 430px;
}
#okurumateikiWrapper .w440 {
  width: 440px;
}
#okurumateikiWrapper .w450 {
  width: 450px;
}
#okurumateikiWrapper .w460 {
  width: 460px;
}
#okurumateikiWrapper .w470 {
  width: 470px;
}
#okurumateikiWrapper .w480 {
  width: 480px;
}
#okurumateikiWrapper .w490 {
  width: 490px;
}
#okurumateikiWrapper .w500 {
  width: 500px;
}
#okurumateikiWrapper .w1em {
  width: 1em;
}
#okurumateikiWrapper .w2em {
  width: 2em;
}
#okurumateikiWrapper .w3em {
  width: 3em;
}
#okurumateikiWrapper .w4em {
  width: 4em;
}
#okurumateikiWrapper .w5em {
  width: 5em;
}
#okurumateikiWrapper .w6em {
  width: 6em;
}
#okurumateikiWrapper .w7em {
  width: 7em;
}
#okurumateikiWrapper .w8em {
  width: 8em;
}
#okurumateikiWrapper .w9em {
  width: 9em;
}
#okurumateikiWrapper .w10em {
  width: 10em;
}
#okurumateikiWrapper .w11em {
  width: 11em;
}
#okurumateikiWrapper .w12em {
  width: 12em;
}
#okurumateikiWrapper .w13em {
  width: 13em;
}
#okurumateikiWrapper .w14em {
  width: 14em;
}
#okurumateikiWrapper .w15em {
  width: 15em;
}
#okurumateikiWrapper .w16em {
  width: 16em;
}
#okurumateikiWrapper .w17em {
  width: 17em;
}
#okurumateikiWrapper .w18em {
  width: 18em;
}
#okurumateikiWrapper .w19em {
  width: 19em;
}
#okurumateikiWrapper .w20em {
  width: 20em;
}
#okurumateikiWrapper .contentWidth {
  width: 1000px;
  margin: 0 auto;
}
#okurumateikiWrapper .mL1hem {
  margin-left: 1.5em;
}
#okurumateikiWrapper .mL2em {
  margin-left: 2em;
}
#okurumateikiWrapper .mL2hem {
  margin-left: 2.5em;
}
#okurumateikiWrapper .mL3em {
  margin-left: 3em;
}
#okurumateikiWrapper .mL3hem {
  margin-left: 3.5em;
}
#okurumateikiWrapper .mL4em {
  margin-left: 4em;
}
#okurumateikiWrapper .mL4hem {
  margin-left: 4.5em;
}
#okurumateikiWrapper .mL5em {
  margin-left: 5em;
}
#okurumateikiWrapper .mL6em {
  margin-left: 6em;
}
#okurumateikiWrapper .mL7em {
  margin-left: 7em;
}
#okurumateikiWrapper .mL8em {
  margin-left: 8em;
}
#okurumateikiWrapper .mB60 {
  margin-bottom: 60px;
}
#okurumateikiWrapper .mB70 {
  margin-bottom: 70px;
}
#okurumateikiWrapper .mB80 {
  margin-bottom: 80px;
}
#okurumateikiWrapper .s0-8r {
  font-size: 0.8rem;
}
#okurumateikiWrapper .s1-0r {
  font-size: 1rem;
}
#okurumateikiWrapper .s1-1r {
  font-size: 1.1rem;
}
#okurumateikiWrapper .s1-2r {
  font-size: 1.2rem;
}
#okurumateikiWrapper .s1-3r {
  font-size: 1.3rem;
}
#okurumateikiWrapper .s1-4r {
  font-size: 1.4rem;
}
#okurumateikiWrapper .s1-5r {
  font-size: 1.5rem;
}
#okurumateikiWrapper .s1-6r {
  font-size: 1.6rem;
}
#okurumateikiWrapper .s1-7r {
  font-size: 1.7rem;
}
#okurumateikiWrapper .s1-8r {
  font-size: 1.8rem;
}
#okurumateikiWrapper .s1-9r {
  font-size: 1.9rem;
}
#okurumateikiWrapper .s2-0r {
  font-size: 2rem;
}
#okurumateikiWrapper .s2-1r {
  font-size: 2.1rem;
}
#okurumateikiWrapper .s2-2r {
  font-size: 2.2rem;
}
#okurumateikiWrapper .s2-3r {
  font-size: 2.3rem;
}
#okurumateikiWrapper .s2-4r {
  font-size: 2.4rem;
}
#okurumateikiWrapper .s2-5r {
  font-size: 2.5rem;
}
#okurumateikiWrapper .s2-6r {
  font-size: 2.6rem;
}
#okurumateikiWrapper .s2-8r {
  font-size: 2.8rem;
}
#okurumateikiWrapper .s2-9r {
  font-size: 2.9rem;
}
#okurumateikiWrapper .s3-0r {
  font-size: 3rem;
}
#okurumateikiWrapper .s3-4r {
  font-size: 3.4rem;
}
#okurumateikiWrapper .s3-5r {
  font-size: 3.5rem;
}
#okurumateikiWrapper .s3-8r {
  font-size: 3.8rem;
}
#okurumateikiWrapper .s4-0r {
  font-size: 4rem;
}
#okurumateikiWrapper .s5-0r {
  font-size: 5rem;
}
#okurumateikiWrapper .note {
  font-size: 1.2rem;
}
#okurumateikiWrapper .fwSB {
  font-weight: 600;
}
#okurumateikiWrapper .cRed {
  color: #f0193c !important;
}
#okurumateikiWrapper .listStyle01 {
  list-style-type: disc;
  padding: 0 0 0 20px;
  margin: 0;
}
#okurumateikiWrapper .listStyle02 {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#okurumateikiWrapper .listStyle03 {
  list-style-type: decimal;
  padding: 0 0 0 2em;
  margin: 0;
}
#okurumateikiWrapper .btnStyle01 > .in,
#okurumateikiWrapper .btnStyle01 > a {
  transition: opacity 0.2s ease-in 0s;
  display: block;
  color: #000000;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  padding: 12px 30px;
  background-color: #fff;
  border: 1px solid #f0193c;
  border-radius: 5px;
  position: relative;
}
#okurumateikiWrapper .btnStyle01 > .in:hover,
#okurumateikiWrapper .btnStyle01 > a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  #okurumateikiWrapper .btnStyle01 > .in,
  #okurumateikiWrapper .btnStyle01 > a {
    transition: none;
  }
  #okurumateikiWrapper .btnStyle01 > .in:hover,
  #okurumateikiWrapper .btnStyle01 > a:hover {
    opacity: 1;
  }
}
#okurumateikiWrapper .btnStyle01 > .in::after,
#okurumateikiWrapper .btnStyle01 > a::after {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../../images/content/content/ico_arrow.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
#okurumateikiWrapper .tableTransparent > thead > tr > th,
#okurumateikiWrapper .tableTransparent > tbody > tr > th,
#okurumateikiWrapper .tableTransparent > tr > th,
#okurumateikiWrapper .tableTransparent > thead > tr > td,
#okurumateikiWrapper .tableTransparent > tbody > tr > td,
#okurumateikiWrapper .tableTransparent > tr > td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  border: none;
  padding: 0;
}
#okurumateikiWrapper .tableTransparent > thead > tr > th,
#okurumateikiWrapper .tableTransparent > tbody > tr > th,
#okurumateikiWrapper .tableTransparent > tr > th {
  white-space: nowrap;
  padding-right: 15px;
}
#okurumateikiWrapper .sectionVox {
  background-color: #fff;
}
#okurumateikiWrapper .sectionVox:not(:last-child) {
  margin-bottom: 60px;
}
#okurumateikiWrapper .sectionVox header {
  text-align: center;
  margin-bottom: 20px;
}
#okurumateikiWrapper .sectionVox footer {
  text-align: center;
}
#okurumateikiWrapper .trOp01 {
  transition: opacity 0.2s linear;
}
#okurumateikiWrapper .trOp01:hover, #okurumateikiWrapper .trOp01.active {
  opacity: 0.6;
}
#okurumateikiWrapper .trScl01 {
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#okurumateikiWrapper .trScl01:hover, #okurumateikiWrapper .trScl01.active {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  z-index: 1;
}
#okurumateikiWrapper .formErrVox {
  display: none;
  border: 10px solid #ffdada;
  padding: 10px;
  color: #c00000 !important;
}
#okurumateikiWrapper body.error .formErrVox {
  display: block;
}
#okurumateikiWrapper .caution {
  margin-top: 5px;
  color: #c00000;
}

/**
* ---------------------------------------------------
* popup
* ---------------------------------------------------
*/
#alphaBg {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
  background: #000000;
  display: none;
  zoom: 1;
  min-height: 100%;
}

.popupWrapper {
  display: none;
  width: 800px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2100;
}
.popupWrapper .closeVox {
  height: 50px;
}
.popupWrapper .popupCloseBt {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
}
.popupWrapper .popupCloseBt span {
  width: 50px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -25px;
}
.popupWrapper .popupCloseBt span:nth-child(1) {
  transform: rotate(-45deg);
}
.popupWrapper .popupCloseBt span:nth-child(2) {
  transform: rotate(45deg);
}
#popupContents {
  display: none;
}

/**
 ****************************************************
 *
 * screens larger than $bp
 *
 ****************************************************
 */
@media only screen and (min-width: 768px) {
  .pcDspNone {
    display: none;
  }
} /*  @media END */
/**
 ****************************************************
 *
 * screens smaller than $bp
 *
 ****************************************************
 */
@media only screen and (max-width: 767px) {
  .spDspNone {
    display: none;
  }
  #okurumateikiWrapper {
    /**
    * ---------------------------------------------------
    * 文字サイズ
    * ---------------------------------------------------
    */
    /**
    * ---------------------------------------------------
    * ボタン
    * ---------------------------------------------------
    */
    /**
    * ---------------------------------------------------
    * テーブル
    * ---------------------------------------------------
    */
    /**
    * ---------------------------------------------------
    * 汎用ボックス
    * ---------------------------------------------------
    */
    /**
    * ---------------------------------------------------
    * iOSボタンデザインのリセット
    * ---------------------------------------------------
    */
    /**
    * ---------------------------------------------------
    * スクロールボックス
    * ---------------------------------------------------
    */
    /**
    * transition series
    */
  }
  #okurumateikiWrapper .contentWidth {
    width: auto;
    padding: 0 20px;
  }
  #okurumateikiWrapper .fitImg {
    max-width: 100%;
  }
  #okurumateikiWrapper .s0-8r {
    font-size: 0.6rem;
  }
  #okurumateikiWrapper .s1-0r {
    font-size: 1rem;
  }
  #okurumateikiWrapper .s1-1r {
    font-size: 1.1rem;
  }
  #okurumateikiWrapper .s1-2r {
    font-size: 1.1rem;
  }
  #okurumateikiWrapper .s1-3r {
    font-size: 1.1rem;
  }
  #okurumateikiWrapper .s1-4r {
    font-size: 1.2rem;
  }
  #okurumateikiWrapper .s1-5r {
    font-size: 1.2rem;
  }
  #okurumateikiWrapper .s1-6r {
    font-size: 1.2rem;
  }
  #okurumateikiWrapper .s1-7r {
    font-size: 1.3rem;
  }
  #okurumateikiWrapper .s1-8r {
    font-size: 1.3rem;
  }
  #okurumateikiWrapper .s1-9r {
    font-size: 1.3rem;
  }
  #okurumateikiWrapper .s2-0r {
    font-size: 1.4rem;
  }
  #okurumateikiWrapper .s2-1r {
    font-size: 1.4rem;
  }
  #okurumateikiWrapper .s2-2r {
    font-size: 1.4rem;
  }
  #okurumateikiWrapper .s2-3r {
    font-size: 1.5rem;
  }
  #okurumateikiWrapper .s2-4r {
    font-size: 1.5rem;
  }
  #okurumateikiWrapper .s2-5r {
    font-size: 1.5rem;
  }
  #okurumateikiWrapper .s2-6r {
    font-size: 1.6rem;
  }
  #okurumateikiWrapper .s2-8r {
    font-size: 1.6rem;
  }
  #okurumateikiWrapper .s2-9r {
    font-size: 1.6rem;
  }
  #okurumateikiWrapper .s3-0r {
    font-size: 1.7rem;
  }
  #okurumateikiWrapper .s3-4r {
    font-size: 1.7rem;
  }
  #okurumateikiWrapper .s3-5r {
    font-size: 1.7rem;
  }
  #okurumateikiWrapper .s3-8r {
    font-size: 1.8rem;
  }
  #okurumateikiWrapper .s4-0r {
    font-size: 3rem;
  }
  #okurumateikiWrapper .s5-0r {
    font-size: 3.5rem;
  }
  #okurumateikiWrapper .note {
    font-size: 1.2rem;
  }
  #okurumateikiWrapper .copyTxt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  #okurumateikiWrapper .btnStyle01 > .in,
  #okurumateikiWrapper .btnStyle01 > a {
    line-height: 1.3;
    padding: 10px 20px 10px 10px;
  }
  #okurumateikiWrapper .btnStyle01 > .in::after,
  #okurumateikiWrapper .btnStyle01 > a::after {
    right: 5px;
  }
  #okurumateikiWrapper .tableA colgroup col {
    width: auto;
  }
  #okurumateikiWrapper table.vertical:not(.spDspNone),
  #okurumateikiWrapper table.vertical > caption:not(.spDspNone),
  #okurumateikiWrapper table.vertical > thead:not(.spDspNone),
  #okurumateikiWrapper table.vertical > tbody:not(.spDspNone),
  #okurumateikiWrapper table.vertical > thead > tr:not(.spDspNone),
  #okurumateikiWrapper table.vertical > tbody > tr:not(.spDspNone),
  #okurumateikiWrapper table.vertical > tr:not(.spDspNone),
  #okurumateikiWrapper table.vertical > thead > tr > th:not(.spDspNone),
  #okurumateikiWrapper table.vertical > tbody > tr > th:not(.spDspNone),
  #okurumateikiWrapper table.vertical > tr > th:not(.spDspNone),
  #okurumateikiWrapper table.vertical > thead > tr > td:not(.spDspNone),
  #okurumateikiWrapper table.vertical > tbody > tr > td:not(.spDspNone),
  #okurumateikiWrapper table.vertical > tr > td:not(.spDspNone) {
    display: block;
    width: 100%;
  }
  #okurumateikiWrapper .sectionVox {
    margin-left: 25px;
    margin-right: 25px;
  }
  #okurumateikiWrapper .sectionVox:not(:last-child) {
    margin-bottom: 40px;
  }
  #okurumateikiWrapper .sectionVox header {
    margin-bottom: 25px;
  }
  #okurumateikiWrapper input[type=submit],
  #okurumateikiWrapper input[type=button] {
    cursor: pointer;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    border-radius: 0;
  }
  #okurumateikiWrapper input[type=submit]::-webkit-search-decoration,
  #okurumateikiWrapper input[type=button]::-webkit-search-decoration {
    display: none;
  }
  #okurumateikiWrapper input[type=submit]:focus,
  #okurumateikiWrapper input[type=button]:focus {
    outline-offset: -2px;
  }
  #okurumateikiWrapper .scrollVox {
    padding-bottom: 10px;
    overflow-x: auto;
  }
  #okurumateikiWrapper .scrollVox::-webkit-scrollbar {
    height: 10px;
  }
  #okurumateikiWrapper .scrollVox::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
  }
  #okurumateikiWrapper .scrollVox::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px;
  }
  #okurumateikiWrapper .scrollVox table {
    width: 600px !important;
  }
  #okurumateikiWrapper .trOp01 {
    transition: none;
  }
  #okurumateikiWrapper .trOp01:hover {
    opacity: 1;
  }
  #okurumateikiWrapper .trScl01 {
    transition: none;
  }
  #okurumateikiWrapper .trScl01:hover {
    transform: scale(1);
  }
  /**
  * ---------------------------------------------------
  * popup
  * ---------------------------------------------------
  */
  .popupWrapper {
    width: 86.6666666667vw;
  }
  .popupWrapper .closeVox {
    height: 50px;
  }
  .popupWrapper .popupCloseBt {
    height: 50px;
  }
  .popupWrapper .popupCloseBt span {
    width: 50px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -1px 0 0 -25px;
  }
  .popupWrapper .popupCloseBt span:nth-child(1) {
    transform: rotate(-45deg);
  }
  .popupWrapper .popupCloseBt span:nth-child(2) {
    transform: rotate(45deg);
  }
} /*  @media END */
@keyframes interviewSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*
 * =====================================================
 *
 * [home]
 *
 * =====================================================
 */
body.home #okurumateikiWrapper #mainVisualWrapper {
  text-align: center;
  margin-bottom: 20px;
}
body.home #okurumateikiWrapper #mainVisualWrapper img {
  width: 100%;
}
body.home #okurumateikiWrapper .introVox {
  text-align: center;
  margin-bottom: 50px;
}
body.home #okurumateikiWrapper .introVox .img {
  margin-bottom: 30px;
}
body.home #okurumateikiWrapper .introVox .copy {
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  padding: 15px;
  margin-bottom: 45px;
  background-color: #ff5078;
}
body.home #okurumateikiWrapper .introVox .copy span {
  color: #fff58c;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox {
  display: inline-block;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .title {
  display: inline-block;
  color: #283c78;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  min-width: 460px;
  padding: 8px;
  margin-bottom: 20px;
  background-color: #d1f0f0;
  border-bottom: 1px solid #00aaaa;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list {
  display: grid;
  gap: 5px 40px;
  list-style-type: none;
  width: auto;
  padding: 0;
  margin: 0 auto;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li {
  color: #283c78;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: left;
  padding-left: 55px;
  position: relative;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li .icon {
  width: 46px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li .icon img {
  width: 100%;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(1) {
  grid-row: 1/2;
  grid-column: 1/2;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(2) {
  grid-row: 1/2;
  grid-column: 2/3;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(3) {
  grid-row: 1/2;
  grid-column: 3/4;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(4) {
  grid-row: 2/3;
  grid-column: 1/2;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(5) {
  grid-row: 2/3;
  grid-column: 2/3;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(6) {
  grid-row: 2/3;
  grid-column: 3/4;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(7) {
  grid-row: 3/4;
  grid-column: 1/2;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(8) {
  grid-row: 3/4;
  grid-column: 2/3;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(9) {
  grid-row: 3/4;
  grid-column: 3/4;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(10) {
  grid-row: 4/5;
  grid-column: 1/2;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(11) {
  grid-row: 4/5;
  grid-column: 2/3;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(12) {
  grid-row: 4/5;
  grid-column: 3/4;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(13) {
  grid-row: 5/6;
  grid-column: 1/2;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(14) {
  grid-row: 5/6;
  grid-column: 2/3;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(15) {
  grid-row: 5/6;
  grid-column: 3/4;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(16) {
  grid-row: 6/7;
  grid-column: 1/2;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(17) {
  grid-row: 6/7;
  grid-column: 2/3;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(18) {
  grid-row: 6/7;
  grid-column: 3/4;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(19) {
  grid-row: 7/8;
  grid-column: 1/2;
}
body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li:nth-of-type(20) {
  grid-row: 7/8;
  grid-column: 2/3;
}
body.home #okurumateikiWrapper .pointWrap:not(:last-child) {
  margin-bottom: 50px;
}
body.home #okurumateikiWrapper .pointWrap .header {
  text-align: center;
  margin-bottom: 35px;
}
body.home #okurumateikiWrapper .pointWrap .pointVox {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
body.home #okurumateikiWrapper .pointWrap .pointVox > .item {
  text-align: center;
  width: calc(50% - 25px);
}
body.home #okurumateikiWrapper .pointWrap .pointVox > .item .title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #33bbbb;
}
body.home #okurumateikiWrapper .pointWrap .pointVox > .item img {
  width: 356px;
}
body.home #okurumateikiWrapper #maintenance {
  padding: 30px;
}
body.home #okurumateikiWrapper #maintenance .maintenanceVox {
  display: flex;
  justify-content: space-between;
  gap: 0 12px;
}
body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item {
  text-align: center;
  width: 270px;
  background-color: #cceeee;
}
body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item .title {
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  text-align: left;
  min-height: 32px;
  padding: 5px 10px 5px 60px;
  margin-bottom: 15px;
  background-color: #33bbbb;
  position: relative;
}
body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item .title::before {
  display: block;
  content: "";
  width: 50px;
  height: 32px;
  background: no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item:nth-of-type(1) .title::before {
  background-image: url("../../images/content/content/step01.svg");
}
body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item:nth-of-type(2) .title::before {
  background-image: url("../../images/content/content/step02.svg");
}
body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item:nth-of-type(3) .title::before {
  background-image: url("../../images/content/content/step03.svg");
}
body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item .img img {
  width: 144px;
}
body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item .txt {
  color: #283c78;
  font-size: 1.3rem;
  line-height: 1.3;
  padding: 0 20px 20px 20px;
  margin-top: 15px;
}
body.home #okurumateikiWrapper #qa {
  padding: 30px 30px 65px 30px;
  margin-bottom: 0;
}
body.home #okurumateikiWrapper #qa .qaVox {
  padding: 10px 85px 0 85px;
}
body.home #okurumateikiWrapper #qa .qaVox > .item:not(:last-child) {
  margin-bottom: 30px;
}
body.home #okurumateikiWrapper #qa .qaVox > .item .title {
  display: flex;
  justify-content: start;
  align-items: end;
  color: #00aaaa;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  min-height: 60px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #00aaaa;
  position: relative;
}
body.home #okurumateikiWrapper #qa .qaVox > .item .title::before {
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background: url(../../images/content/content/question.svg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: -65px;
}
body.home #okurumateikiWrapper #qa .qaVox > .item .answer {
  font-size: 1.6rem;
  text-align: right;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 1px solid #ff5078;
  position: relative;
}
body.home #okurumateikiWrapper #qa .qaVox > .item .answer::after {
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background: url(../../images/content/content/answer.svg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  right: -65px;
}
body.home #okurumateikiWrapper #download {
  text-align: center;
  padding: 8px 30px 20px 30px;
  background-color: #00aaaa;
}
body.home #okurumateikiWrapper #download .header {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  min-height: 50px;
  padding: 5px 0 5px 35px;
  margin-bottom: 10px;
  position: relative;
}
body.home #okurumateikiWrapper #download .header::before {
  display: block;
  content: "";
  width: 28px;
  height: 48px;
  background: url(../../images/content/content/ico_appli.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
body.home #okurumateikiWrapper #download .downloadVox {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
}
body.home #okurumateikiWrapper #download .downloadVox > .item {
  width: calc(50% - 20px);
  padding: 10px 40px 20px 40px;
  background-color: #fff;
}
body.home #okurumateikiWrapper #download .downloadVox > .item .title {
  display: inline-block;
  color: #00aaaa;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 0 30px;
  margin-bottom: 15px;
  position: relative;
}
body.home #okurumateikiWrapper #download .downloadVox > .item .title::before, body.home #okurumateikiWrapper #download .downloadVox > .item .title::after {
  display: block;
  content: "";
  width: 14px;
  height: 22px;
  background: url(../../images/content/content/ico_balloon.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
body.home #okurumateikiWrapper #download .downloadVox > .item .title::before {
  left: 0;
}
body.home #okurumateikiWrapper #download .downloadVox > .item .title::after {
  right: 0;
  transform: translateY(-50%) scale(-1, 1);
}
body.home #okurumateikiWrapper #download .btns .btnStyle01:not(:last-child) {
  margin-bottom: 20px;
}
body.home #okurumateikiWrapper #download .appliVox {
  display: flex;
  justify-content: space-between;
}
body.home #okurumateikiWrapper #download .appliVox > .appli {
  text-align: center;
  width: 50%;
}
body.home #okurumateikiWrapper #download .appliVox > .appli .bnr {
  height: 40px;
  margin-bottom: 10px;
}
body.home #okurumateikiWrapper #download .appliVox > .appli .bnr img {
  height: 100%;
}
body.home .appMordal {
  background-color: #fff;
}
body.home .appMordalTitle {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  padding: 15px 0;
  background-color: #fdb813;
}
body.home .appMordalTitle > span {
  font-size: 2.2rem;
}

/* END body */
/**
 ****************************************************
 *
 * screens larger than $bp
 *
 ****************************************************
 */
@media only screen and (min-width: 768px) {
  /* END body */
}
/**
 ****************************************************
 *
 * screens smaller than $bp + 1
 *
 ****************************************************
 */
@media only screen and (max-width: 768px) {
  /* END body */
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  /* END body */
}
/**
 ****************************************************
 *
 * screens smaller than $bp
 *
 ****************************************************
 */
@media only screen and (max-width: 767px) {
  body.home #okurumateikiWrapper .introVox {
    margin-bottom: 30px;
  }
  body.home #okurumateikiWrapper .introVox .img {
    padding: 0 25px;
    margin-bottom: 20px;
  }
  body.home #okurumateikiWrapper .introVox .copy {
    font-size: 2.1rem;
    margin-bottom: 35px;
  }
  body.home #okurumateikiWrapper .introVox .maintenanceVox {
    display: block;
    padding: 0 25px;
  }
  body.home #okurumateikiWrapper .introVox .maintenanceVox .title {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: initial;
    margin-bottom: 15px;
  }
  body.home #okurumateikiWrapper .introVox .maintenanceVox .list {
    display: inline-block;
  }
  body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li {
    font-size: 1.6rem;
    padding-left: 38px;
  }
  body.home #okurumateikiWrapper .introVox .maintenanceVox .list > li .icon {
    width: 33px;
  }
  body.home #okurumateikiWrapper .pointWrap:not(:last-child) {
    margin-bottom: 45px;
  }
  body.home #okurumateikiWrapper .pointWrap .header {
    padding: 0 15px;
    margin-bottom: 20px;
  }
  body.home #okurumateikiWrapper .pointWrap .pointVox {
    display: block;
    padding: 0 15px;
  }
  body.home #okurumateikiWrapper .pointWrap .pointVox > .item {
    width: auto;
  }
  body.home #okurumateikiWrapper .pointWrap .pointVox > .item:not(:last-child) {
    margin-bottom: 45px;
  }
  body.home #okurumateikiWrapper .pointWrap .pointVox > .item .title {
    font-size: 1.7rem;
    padding: 8px;
  }
  body.home #okurumateikiWrapper #maintenance {
    padding: 15px;
  }
  body.home #okurumateikiWrapper #maintenance .maintenanceVox {
    display: block;
  }
  body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item {
    width: auto;
  }
  body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item:not(:last-child) {
    margin-bottom: 25px;
  }
  body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item .title {
    font-size: 2.3rem;
    min-height: 32px;
    padding: 3px 10px 3px 70px;
    margin-bottom: 15px;
  }
  body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item .title::before {
    width: 61px;
    height: 39px;
  }
  body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item .img img {
    width: 167px;
  }
  body.home #okurumateikiWrapper #maintenance .maintenanceVox > .item .txt {
    font-size: 1.5rem;
  }
  body.home #okurumateikiWrapper #qa {
    padding: 15px 15px 40px 15px;
    margin-bottom: 40px;
  }
  body.home #okurumateikiWrapper #qa .qaVox {
    padding: 0 50px;
  }
  body.home #okurumateikiWrapper #qa .qaVox > .item:not(:last-child) {
    margin-bottom: 20px;
  }
  body.home #okurumateikiWrapper #qa .qaVox > .item .title {
    font-size: 1.3rem;
    min-height: 47px;
    padding-bottom: 5px;
  }
  body.home #okurumateikiWrapper #qa .qaVox > .item .title::before {
    width: 47px;
    height: 47px;
    left: -50px;
  }
  body.home #okurumateikiWrapper #qa .qaVox > .item .answer {
    font-size: 1.3rem;
    text-align: left;
    padding-bottom: 5px;
  }
  body.home #okurumateikiWrapper #qa .qaVox > .item .answer::after {
    width: 47px;
    height: 47px;
    right: -50px;
  }
  body.home #okurumateikiWrapper #download {
    padding: 5px 25px 20px 25px;
  }
  body.home #okurumateikiWrapper #download .header {
    font-size: 1.6rem;
    padding: 13px 0 0 35px;
    margin-bottom: 10px;
  }
  body.home #okurumateikiWrapper #download .downloadVox {
    display: block;
  }
  body.home #okurumateikiWrapper #download .downloadVox > .item {
    width: auto;
    padding: 10px 15px 20px 15px;
  }
  body.home #okurumateikiWrapper #download .downloadVox > .item:not(:last-child) {
    margin-bottom: 20px;
  }
  body.home #okurumateikiWrapper #download .downloadVox > .item .title {
    font-size: 1.7rem;
    padding: 0 25px;
  }
  body.home #okurumateikiWrapper #download .downloadVox > .item .title::before, body.home #okurumateikiWrapper #download .downloadVox > .item .title::after {
    width: 12px;
    height: 19px;
  }
  body.home #okurumateikiWrapper #download .btns {
    display: flex;
    justify-content: space-between;
  }
  body.home #okurumateikiWrapper #download .btns .btnStyle01 {
    width: 47.5%;
  }
  body.home #okurumateikiWrapper #download .btns .btnStyle01:not(:last-child) {
    margin-bottom: 0;
  }
  body.home #okurumateikiWrapper #download .appliVox > .appli {
    width: 50%;
  }
  body.home #okurumateikiWrapper #download .appliVox > .appli .bnr {
    height: 45px;
    margin-bottom: 0;
  }
  body.home #okurumateikiWrapper #download .appliVox > .appli .qr {
    display: none;
  }
  body.home .appMordal {
    opacity: 0;
    transition: opacity 0.5s;
  }
  body.home .appMordal.is-active {
    opacity: 1;
  }
  body.home .appMordalTitle {
    font-size: 4.8vw;
  }
  body.home .appMordalTitle > span {
    font-size: 4.2666666667vw;
  }
  body.home .appMordalInner {
    position: relative;
  }
  body.home .appMordalInner .swiper-wrapper {
    align-items: stretch;
  }
  body.home .appMordalInner .swiper-wrapper .swiper-slide {
    height: auto;
  }
  body.home .appMordalInner .navigation .btn {
    width: 7.4667vw;
    height: 7.4667vw;
    position: absolute;
    top: 50%;
    z-index: 100;
    transform: translateY(-50%);
  }
  body.home .appMordalInner .navigation .btn > span {
    display: block;
    text-indent: -9999px;
    height: 100%;
    background: no-repeat center center/cover;
  }
  body.home .appMordalInner .navigation .btn.swiper-button-disabled {
    display: none;
  }
  body.home .appMordalInner .navigation .btnPrev {
    left: 4.6667vw;
  }
  body.home .appMordalInner .navigation .btnPrev > span {
    background-image: url("../../images/content/content/arw_slide_left.png");
  }
  body.home .appMordalInner .navigation .btnNext {
    right: 4.6667vw;
  }
  body.home .appMordalInner .navigation .btnNext > span {
    background-image: url("../../images/content/content/arw_slide_right.png");
  }
  /* END body */
} /* END @media smaller than $bp */
/*
 * =====================================================
 *
 * [Standard css]
 *
 * - base.css 		: ベースレイアウト
 * - common.css 	: 要素用
 * - clear.css 		: clearfix用css
 *
 * =====================================================
 *//*# sourceMappingURL=import.min.css.map */