@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600&display=swap');

/*---------------------------------------------
Browser Default Initialization
---------------------------------------------*/
html {
  /* overflow-y: scroll; */

}

body,
div,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

ul {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

ul li {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
section,
nav,
article,
aside,
hgroup,
header,
address,
figure,
figcaption {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: '';
}

object,
embed {
  vertical-align: top;
}

hr,
legend {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

img,
abbr,
acronym,
fieldset {
  border: 0;
}

img {
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
  /** fade使用時のズレ対策（FF）**/
  box-shadow: #000 0 0 0;
  /** ドラッグ操作無効 **/
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}

ul li {
  list-style-type: none;
}

a,
button,
input,
textarea {
  outline: none;
}

x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0;
}

a {
  color: #171F6C;
  text-decoration: none;
}

/*--------------------------
  FONT
  ---------------------------*/
/* 文字スタイル */
.common-font {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* タイトル部 */
.common-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

/* 通常のテキスト */
.common-normal-text {
  font-size: 16px;
  font-weight: regular;
}

/* 項目名のテキスト */
.common-item-text {
  color: #747a99;
}

.common-black-text {
  color: #262D4D;
}

.common-white-text {
  color: #FFFFFF;
}

.common-red-text {
  color: #FF0100;
}

.common-blue-text {
  color: #2979FF;
}

/* 名詞 */
.common-noun {
  text-align: center;
}

/* 数値 */
.common-number {
  text-align: center;
}

/* 文章 */
.common-paragraph {
  text-align: left;
  justify-content: center;
}

.common-asterisk {
  color: #FF0100;
  font-size: 22px !important;
}

/*--------------------------
SCROLL
---------------------------*/

.common-scroll::-webkit-scrollbar,
.common-scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.common-scroll::-webkit-scrollbar-thumb,
.common-scroll::-webkit-scrollbar-thumb {
  /*#262D4D*/
  background: rgb(38, 45, 77, 0.6) 0% 0% no-repeat padding-box;
  border-radius: 4px;
}

.common-scroll::-webkit-scrollbar-thumb:hover,
.common-scroll::-webkit-scrollbar-thumb:hover {
  /*#262D4D*/
  background: rgb(38, 45, 77, 1.0) 0% 0% no-repeat padding-box;
}

/*--------------------------
TABLE
---------------------------*/
/* ヘッダ */
.common-table th {
  border: solid 1px #FFFFFF;
  background: #596180;
  color: #FFFFFF;
}

/* ボディ */
.common-table td {
  border: solid 1px #E5E7EF;
  background: #FFFFFF;
  color: #262D4D;
}

/*--------------------------
TEXT BOX
---------------------------*/
/* 共通 */
.common-input {
  font-size: 14px;
  height: 32px;
  color: #262D4D;
}

.inputed textarea,
.no_inputed textarea {
  border: 1px solid #99BEFF;
  border-radius: 4px;
  color: #262D4D;
}

.inputed select,
.no_inputed select {
  border: 1px solid #99BEFF;
  border-radius: 4px;
  background-color: #F2F7FF;
  color: #262D4D;
}

/* 値未入力 */
.no_inputed input[type="text"],
.no_inputed input[type="password"],
.no_inputed input[type="email"],
.no_inputed textarea {
  border: 1px solid #99BEFF;
  border-radius: 4px;
  background-color: #FFFFFF;
}

.no_inputed select {
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: 98%;
}

.no_inputed textarea {
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: 98%;
}

/* 値入力済 */
.inputed input[type="text"],
.inputed input[type="password"],
.inputed input[type="email"] {
  border: 1px solid #99BEFF;
  border-radius: 4px;
  background-color: #F2F7FF;
  background-image: url('/resources/indexPage/image/check_mark_icon.png');
  background-repeat: no-repeat;
  background-position: 98%;
}

.inputed select {
  background-color: #F2F7FF;
  background-repeat: no-repeat;
  background-position: 98%;
}

.inputed textarea {
  background-color: #F2F7FF;
  background-repeat: no-repeat;
  background-position: 98%;
}

/* フォーカスイン時 */
.no_inputed input[type="text"]:focus,
.no_inputed input[type="password"]:focus,
.no_inputed input[type="email"]:focus,
.inputed input[type="text"]:focus,
.inputed input[type="password"]:focus,
.inputed input[type="email"]:focus,
.no_inputed textarea:focus,
.inputed textarea:focus,
.no_inputed select:focus,
.inputed select:focus {
  background-color: #FFFFFF;
  border: 2px solid #2979FF;
  box-shadow: 0px 0px 6px #427AF680;
  background-image: none;
}

/* 入力エラー発生時 */
.inputed_error input[type="text"],
.inputed_error input[type="password"],
.inputed_error input[type="email"],
.inputed_error textarea,
.inputed_error select {
  border-width: 1px;
  border-radius: 4px;
  background-color: #FFF7F7;
  border: 1px solid #FF8E8E;
}

/*--------------------------
CHECK BOX
---------------------------*/
.common_checkbox-item label {
  display: inline-block;
  position: relative;
  line-height: 16px;
}

.common_checkbox-item label:has(> input[type="checkbox"]:not(:checked:disabled)) {
  cursor: pointer;
}

.common_checkbox-item input[type="checkbox"] {
  display: none;
  font-weight: 400;
}

.common_checkbox-item label>.checkbox__txt {
  display: block;
  position: relative;
  padding-left: 27px;
}

.common_checkbox-item input[type="checkbox"]+span::before {
  background: #DADCE6;
}

.common_checkbox-item input[type="checkbox"]:checked+span::before {
  background: #2979FF;
  border: 1px solid #2979FF
}

.common_checkbox-item label>.checkbox__txt::before {
  margin-top: -6px;
}

.common_checkbox-item label>.checkbox__txt::before {
  content: "";
  position: absolute;
  top: 41%;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #DADCE6;
  border: 1px solid #DADCE6;
  border-radius: 4px;
  box-sizing: border-box;
  transform-origin: 100% 100%;
  margin-top: -7px;
  transition: background .15s ease;
}

/* チェック時 */
.common_checkbox-item input[type="checkbox"]:checked+span::after {
  background: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210.094%22%20height%3D%227.73%22%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%206%22%20d%3D%22M10.04.905%209.215.057a.177.177%200%200%200-.131-.056.17.17%200%200%200-.131.056L3.234%205.818%201.153%203.737a.181.181%200%200%200-.262%200l-.834.834a.187.187%200%200%200%200%20.267l2.625%202.625a.83.83%200%200%200%20.548.267.87.87%200%200%200%20.544-.258l6.267-6.3a.2.2%200%200%200-.001-.267Z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E) no-repeat 50%/14px;
  background-size: 12px;
}

.common_checkbox-item label>span::after {
  content: "";
  position: absolute;
  top: 41%;
  left: 0;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 0;
  margin-top: -7px;
}

チェックボックス .common_checkbox input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0 7px 0 13px;
}

.common_checkbox input[type=checkbox]:checked {
  background-color: #2979FF;
  border: 1px solid #2979FF;
  border-color: #2979FF;
}

.common_checkbox input[type="checkbox"] {
  position: relative;
  top: 0px;
  left: 0px;
  width: 16px;
  height: 16px;
  appearance: none;
  background-color: #DADCE6;
  border-radius: 4px;
  cursor: pointer;
}

.common_checkbox input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
}

/*--------------------------
RADIO BUTTON
---------------------------*/
/* 共通 */
.common-radioButton {
  position: relative;
  cursor: pointer;
  padding-left: 40px;
}

.common-radioButton::before,
.common-radioButton::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

/* OFF時 */
.common-radioButton::before {
  background-color: #DADCE6;
  border: 1px solid #DADCE6;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 0;
}

/* ON時 */
.common-radioButton::after {
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  border: 6px solid #2979FF;
  opacity: 0;
  transition: opacity 0.3s;
}

/*--------------------------
SELECT BOX
---------------------------*/
/* 共通 */
.common-select {
  font-size: 14px;
  height: 32px;
  background-color: #FFFFFF;
  border: 1px solid #99BEFF;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #262D4D;
}

/* 値入力済時 */
/* フォーカスイン時 */
/* 入力エラー時 */
/* TEXT BOXを参照  */

/*--------------------------
DIALOG
---------------------------*/
/* 共通 */
.common-dialog {
  border-radius: 12px;
  box-shadow: 0px 3px 6px #00000029;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* オーバーレイ */
.common-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.55;
  z-index: 1000;
}

/* ボタン */
.common-dialog button {
  margin: 0 auto;
  display: block;
}

/* メイン画面でのスクロール無効化 */
body.no-scroll {
  overflow: hidden;
}

/*--------------------------
MODAL
---------------------------*/
/* 共通 */
.common-modal {
  border-radius: 12px;
  box-shadow: 0px 3px 6px #00000029;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* オーバーレイ */
.common-modal-overlay {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.55;
  z-index: 999;
}

/* メイン画面でのスクロール無効化 */
body.no-scroll {
  overflow: hidden;
}

/*--------------------------
TAB
---------------------------*/
/* 共通 */
.common-tab {
  height: 48px;
  font-size: 16px;
  border-radius: 6px 6px 0px 0px;
  background-color: #E5E5E5;
  cursor: pointer;
}

/* アクティブ時 */
.common-tab.active {
  background-color: #262D4D;
}

/* 2行表示の場合 */
.common-tab.two-line {
  height: 72px;
  font-size: 16px;
  border-radius: 6px 6px 0px 0px;
  background-color: #E5E5E5;
  cursor: pointer;
}

/*--------------------------
BUTTON
---------------------------*/
/* 共通 */
.common-button {
  font-size: 16px;
  height: 48px;
  border-radius: 28px;
  cursor: pointer;
}

/* 画面遷移系 */
.common-button.transition {
  background-color: #FFFFFF;
  border: 1px solid #2979FF;
  color: #2979FF;
}

.common-button.transition:hover {
  background-color: #F0F8FF;
  text-decoration: none;
}

.common-button.transition:active {
  transform: scale(0.9);
  transform-origin: center;
}

/* 実行系 */
.common-button.action {
  background-color: #2979FF;
  border: 1px solid #2979FF;
  color: white
}

.common-button.action:hover {
  background-color: #0045b4;
  text-decoration: none;
}

.common-button.action:active {
  transform: scale(0.9);
  transform-origin: center;
}

/* 実行系 赤色ボ */
.common-button.action-red {
  background-color: #DC1E36;
  border: 1px solid #DC1E36;
  color: white
}

.common-button.action-red:hover {
  background-color: #9f0000;
  text-decoration: none;
}

.common-button.action-red:active {
  transform: scale(0.9);
  transform-origin: center;
}


/* 取り消し系 */
.common-button.cancel {
  background-color: #FFFFFF;
  border: 1px solid #2979FF;
  color: #2979FF;
}

.common-button.cancel:hover {
  background-color: #F0F8FF;
  text-decoration: none;
}

.common-button.cancel:active {
  transform: scale(0.9);
  transform-origin: center;
}

/*非活性*/
.common-button.button_disable {
  background: #c6c6c6;
  pointer-events: none;
  border: 1px solid #c6c6c6;
}

/*注意・警告系 */
.common-button.notice {
  background-color: #FF3D00;
  border: 1px solid #FF3D00;
  color: #FFFFFF;
}

.common-button.notice:hover {
  background-color: #AC2900;
  text-decoration: none;
}

.common-button.notice:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  transform: scale(0.9);
  transform-origin: center;
}

/*--------------------------
ICON
---------------------------*/
/* アイコンのみの場合 */
.common-icon-only {
  justify-content: center;
  align-items: center;
}

/* アイコンと文字の場合 */
.common-icon-with-text {
  align-items: center;
}

/*--------------------------
MOUSE POINTER
---------------------------*/
/* 対象項目がクリックできない場合 */
.no-click {
  cursor: not-allowed;
}

/* 対象項目がクリックできる場合 */
.clickable {
  cursor: pointer;
}

/*---------------------------------------------
FontSize Initialization
---------------------------------------------*/
html {
  font-family: 'Noto Sans JP', メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 62.5%;
  line-height: 1.231;
}

body {
  font-family: 'Noto Sans JP', メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 1.0rem;
  letter-spacing: -0.001em;
  -webkit-text-size-adjust: 100%;
}

select,
input,
button,
textarea,
table {
  font-family: 'Noto Sans JP', メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 1.0rem;
}

pre,
code,
kbd,
samp,
tt {
  font-family: 'Noto Sans JP', メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  line-height: 1;
}

/*---------------------------------------------
Utility
---------------------------------------------*/
/* Clearfix */
.cf:after,
.sec:after,
.section:after {
  visibility: hidden;
  display: block;
  content: " ";
  clear: both;
  height: 0;
}

#wrap * {
  box-sizing: border-box;
}

.serif {
  font-family: 'Noto Sans JP', メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

/*--------------------------
ViewColumnsModal内要素
---------------------------*/
/* ボタン  */
.viewColumnsBtn {
  display: flex;
  align-items: center;
  color: #596180;
  width: 164px;
  height: 32px;
  border: 1px solid #DADCE6;
  border-radius: 4px;
  opacity: 1;
  position: relative;
  letter-spacing: 0.6px;
  cursor: pointer;
  text-decoration: none !important;
  background-color: white;
  box-sizing: border-box;
}

.viewColumnsBtn .is-icon {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/resources/indexPage/image/visibility.png) no-repeat center/contain;
  display: block;
  position: absolute;
  margin-left: 5px;
}

.viewColumnsBtn .is-txt {
  margin-left: 29px;
  font-size: 12px;
  font-weight: 400;
}

.viewColumnsBtn:hover {
  background: #F0F8FF;
}

.viewColumnsBtn:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  transform: scale(0.9);
}

/* モーダル */
#viewColModal-overlay {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
}

#viewColModalWindow {
  max-width: 312px;
  position: fixed;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 1);
  display: none;
  margin: auto;
  height: 80%;
  max-height: 702px;
  z-index: +100;
}

#viewColModal-buttonDiv {
  position: absolute;
  right: 16px;
  top: -16px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: +2;
}

#viewColModal-btn-close {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: +2;
}

#viewColModal-scroll {
  overflow: auto;
  overflow-x: hidden;
  height: calc(100% - 52px);
  user-select: none;
}

#viewColModal-selectItem {
  margin: 34px 60px 40px 60px;
  font-size: 16px;
  font-weight: 400;
}

#viewColModal-title {
  font-size: 18px;
  height: 52px;
  padding-left: 24px;
  color: white;
  background-color: #384067;
  border-radius: 12px 12px 0 0;
  align-content: center;
}

.viewCol-item-set input {
  padding-left: 1vw;
}

.viewCol-item-set>* {
  display: flex;
  margin: 10px 0;
}

.viewCol-item-set .common_checkbox-item:not(.first) {
  padding-top: 5px;
}

.viewCol-item-set span {
  box-sizing: border-box;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.viewCol-item-set:not(#item-head-selectAll) {
  padding-left: 22px;
  margin-left: auto;
  margin-right: auto;
}

/* 下線(二重線) */
.viewCol-item-set .viewCol-separate-line {
  width: 100%;
  border-bottom: 5px double #cccccc;
  margin: 10px 0;
  box-sizing: border-box;
}

/*--------------------------
Title
---------------------------*/
.heading {
  position: relative;
  padding: 45px 0px 0px 0px;
  box-sizing: border-box;
  background: none;
}

.heading-ttl {
  box-sizing: border-box;
  background: none;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  color: #262D4D;
}

@media all and (max-width: 767px) {
  .pc {
    display: none;
  }

  #wrap {
    font-size: 1.5rem;
    width: 100%;
    overflow: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  input[type="button"],
  input[type="submit"] {
    -webkit-appearance: none;
    /*border-radius: 0;*/
  }

  a:hover {
    text-decoration: none;
  }

  /*--------------------------
  Header
  ---------------------------*/
  header {
    position: relative;
    display: block;
    width: 100%;
    z-index: +1;
  }

  .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: relative;
  }

  .logo {
    line-height: initial;
    padding: 0 0 0 3%;
    margin: 19px 0 15px 10px;
    position: relative;
    z-index: 99;
    max-width: 269px;
    width: 42%;
  }

  .logo a {
    line-height: 1;
    display: block;
  }

  .sp-logo {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    width: 12%;
  }

  .pnav-list--about {
    text-align: center;
    margin: 0 0 15px;
  }

  .pnav-list--about a {
    color: #dc1e37;
    font-size: 1.6rem;
    font-weight: 600;
  }

  .pnav-list--global {
    display: none;
  }

  .pnav-list--login a {
    background: #2d72ed;
    color: #fff;
    font-size: 1.4rem;
    padding: 9px 12px 12px;
    border-radius: 6px;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto 40px;
  }

  .sp-global {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }

  .sp-global__list {
    width: 45%;
    border: #fff 1px solid;
    text-align: center;
    background: rgba(0, 0, 0, 0.34);
  }

  .sp-global__list a {
    display: block;
    font-size: 1.8rem;
    color: #fff;
    width: 100%;
    padding: 10px 0;
  }

  .gnav-wrap {
    background: #424242;
    border-top: 1px solid #424242;
    position: relative;
  }

  .gnav {
    width: 98%;
    max-width: 775px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0 7px;
  }

  .gnav-list {
    width: 50%;
    text-align: center;
  }

  .gnav-list a {
    font-size: 1.4rem;
    color: #fff;
    transition: .5s ease;
  }

  /*--------------------------
  Hamburger menu
  ---------------------------
  .hamburger {
    width: 55px !important;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 201;
    cursor: pointer;
    transition: all .3s ease;
  }

  .hamburger.anime.open {
    background: #dc1e37;
  }

  .hamburger i {
    display: none;
  }

  .hamburger span {
    width: 32px;
    height: 2px;
    display: block;
    background: #434343;
    position: absolute;
    left: 13px;
    top: 44%;
  }

  .hamburger.anime.open span {
    background: #fff;
  }

  .hamburger.anime span {
    transition: all 0.3s;
  }

  .hamburger.anime span:nth-of-type(1) {
    transform: translateY(-10px) scale(1);
  }

  .hamburger.anime span:nth-of-type(2) {
    background: none;
    position: relative;
  }

  .hamburger.anime span:nth-of-type(2):before,
  .hamburger.anime span:nth-of-type(2):after {
    transition: all 0.3s;
    content: "";
    width: 32px;
    height: 2px;
    background: #434343;
    display: block;
    transform: rotate(0deg);
    position: absolute;
  }

  .hamburger.anime.open span:nth-of-type(2):before,
  .hamburger.anime.open span:nth-of-type(2):after {
    background: #fff;
  }

  .hamburger.anime span:nth-of-type(3) {
    transform: translateY(10px) scale(1);
  }

  .hamburger.anime.open span:nth-of-type(1),
  .hamburger.anime.open span:nth-of-type(3) {
    transform: translateY(0px) scale(0);
  }

  .hamburger.anime.open span:nth-of-type(2):before {
    transform: rotate(45deg);
  }

  .hamburger.anime.open span:nth-of-type(2):after {
    transform: rotate(-45deg);
  }
  */

  /*--------------------------
  Gnav
  ---------------------------*/
  /*--------------------------
  Contents
  ---------------------------*/
  /*--------------------------
  Footer
  ---------------------------*/
  .footer-top-pagetop {
    position: fixed;
    right: 2vw;
    bottom: 100px;
    height: 40px;
    -webkit-transition: background-color 0.2s linear, bottom 0.3s ease-out;
    transition: background-color 0.2s linear, bottom 0.3s ease-out;
    width: 40px;
    z-index: 200;
    opacity: 0;
  }

  .footer-top-pagetop.show {
    bottom: 90px;
    opacity: 1;
  }

  .footer-top-pagetop a {
    display: block;
    height: 100%;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    width: 100%;
    color: #fff;
    padding: 13px 0 0;
    text-align: center;
    position: relative;
    font-size: 1.1rem;
  }

  .footer-top-footer {
    background: url(/resources/indexPage/img/top/bg-pattern.png), #333;
    font-size: 1.3rem;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    font-weight: 100;
    padding: 57px 0;
    letter-spacing: 0.2px;
  }
}

@media all and (min-width: 768px) {
  .sp {
    display: none;
  }

  #wrap {
    font-size: 1.6rem;
    width: 100%;
  }

  a:hover {
    text-decoration: underline;
  }

  /*--------------------------
  Header
  ---------------------------*/
  header {
    position: relative;
    z-index: +1;
    background: #fff;
  }

  .header-row {
    width: 98%;
    /*HISYS コメントアウト
    margin: 0 auto;
    */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 5px;
    background: #fff;
  }

  .logo a {
    line-height: 1;
    display: block;
  }

  .pnav {
    display: flex;
    align-items: center;
  }

  .pnav-list--logo {
    margin: 0;
  }

  .pnav-list--login a {
    background: #2d72ed;
    color: #fff;
    font-size: 1.6rem;
    padding: 6px 36px 10px;
    border-radius: 6px;
  }

  .pnav-list--login a:hover {
    text-decoration: none;
  }

  .gnav-wrap {
    background: #424242;
    border-top: 1px solid #424242;
  }

  .gnav {
    width: 98%;
    max-width: 775px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0 7px;
  }

  .gnav-list {
    width: 50%;
    text-align: center;
  }

  .gnav-list a {
    font-size: 1.6rem;
    color: #fff;
    transition: .5s ease;
  }

  .gnav-list a:hover {
    text-decoration: none;
    border-bottom: 1px solid #808080;
  }

  /*--------------------------
  Gnav
  ---------------------------*/
  /*--------------------------
  Contents
  ---------------------------*/
  /*--------------------------
  Footer
  ---------------------------*/
  .footer-top-pagetop {
    position: fixed;
    right: 4.5vw;
    bottom: -80px;
    height: 70px;
    -webkit-transition: background-color 0.2s linear, bottom 0.3s ease-out;
    transition: background-color 0.2s linear, bottom 0.3s ease-out;
    width: 70px;
    z-index: 102;
  }

  .footer-top-pagetop a {
    display: block;
    height: 100%;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    width: 100%;
    text-align: center;
    position: relative;
  }

  .footer-top-pagetop.show {
    bottom: 50px;
  }

  .footer-top-pagetop.show.bottom {
    bottom: 80px;
  }

  .footer-top-footer {
    background: url(/resources/indexPage/img/top/bg-pattern.png), #252525;
    font-size: 1.55rem;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    font-weight: 100;
    padding: 107px 0;
    letter-spacing: 0.2px;
  }
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  font-size: 20px;
}