@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em; }

html {
  font-size: 62.5%; }

body, table, input, textarea, select, option {
  font-family: 'Noto Sans JP', sans-serif; }

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

:focus {
  outline: 0; }

ins {
  text-decoration: none; }

del {
  text-decoration: line-through; }

img {
  vertical-align: top;
  max-width: 100%; }

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both; }

a {
  color: #000;
  text-decoration: none;
  transition: .3s;
  -webkit-transition: .3s; }
  a:link {
    color: #000;
    text-decoration: none; }
  a:visited {
    color: #000; }
  a:hover {
    color: #000; }
  a:active {
    color: #000; }

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
  color: #000;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background-color: #fff; }
  body.fixed {
    position: fixed;
    width: 100%;
    height: 100%; }

#container {
  padding-top: 77px;
  text-align: left; }
  @media screen and (max-width: 1000px) {
    #container {
      padding-top: 56px; } }

#main {
  margin-bottom: 150px; }

a[href^="tel:"] {
  cursor: default;
  pointer-events: none; }

@media screen and (min-width: 768px) {
  .sp {
    display: none !important; } }
@media screen and (max-width: 767px) {
  #main {
    margin-bottom: 100px; }

  a:hover, a:hover img {
    opacity: 1 !important; }

  .pc {
    display: none !important; }

  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto; } }
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100; }
  #gHeader h1 {
    margin-left: 30px; }
  #gHeader .menu {
    display: none; }
  #gHeader .custom-nav {
    width: calc(100% - 200px); }
    @media screen and (min-width: 1001px) {
      #gHeader .custom-nav {
        display: block !important; } }
    #gHeader .custom-nav nav ul {
      display: flex; }
      #gHeader .custom-nav nav ul li {
        margin: 0 35px 0 5px; }
        @media screen and (max-width: 1100px) {
          #gHeader .custom-nav nav ul li {
            margin-right: 17px; } }
        #gHeader .custom-nav nav ul li a {
          position: relative; }
          #gHeader .custom-nav nav ul li a:after {
            content: '';
            opacity: 0;
            display: inline-block;
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 3px;
            -webkit-transition: all 0.2s;
            transition: all 0.2s;
            background-color: #0055A2; }
          @media screen and (min-width: 768px) {
            #gHeader .custom-nav nav ul li a:hover:after {
              opacity: 1; } }
    #gHeader .custom-nav .custom-btn {
      margin-left: 27px;
      width: 204px; }
      #gHeader .custom-nav .custom-btn a {
        height: 77px;
        color: #fff;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #0055A2; }
        @media screen and (min-width: 768px) {
          #gHeader .custom-nav .custom-btn a:hover {
            color: #0055A2;
            background-color: #FFF60A !important; } }
  @media screen and (max-width: 1000px) {
    #gHeader {
      position: static;
      left: auto;
      top: auto; }
      #gHeader .h-box {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 56px;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 100; }
        #gHeader .h-box h1 {
          margin-left: 10px;
          width: 114px; }
        #gHeader .h-box .menu {
          width: 56px;
          height: 56px;
          display: flex;
          justify-content: center;
          align-items: center;
          cursor: pointer; }
      #gHeader .custom-nav {
        opacity: 0;
        transform: translateX(100px);
        pointer-events: none;
        visibility: hidden;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        background-color: #fff;
        transition: all 0.5s;
        z-index: 90; }
        #gHeader .custom-nav.open {
          opacity: 1;
          -webkit-transform: translateX(0);
          transform: translateX(0);
          pointer-events: all;
          visibility: visible; }
        #gHeader .custom-nav > div {
          height: 100%;
          display: block !important; }
        #gHeader .custom-nav nav ul {
          max-width: 230px;
          margin: 0 auto 30px;
          padding-top: 100px;
          display: block; }
          #gHeader .custom-nav nav ul li {
            margin: 0 0 10px;
            font-size: 1.6rem; }
            #gHeader .custom-nav nav ul li a {
              display: block; }
        #gHeader .custom-nav .custom-btn {
          margin: 0 auto 30px;
          width: 240px;
          display: block; }
          #gHeader .custom-nav .custom-btn a {
            height: 60px; } }

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter .contact-box {
  margin-bottom: 95px; }
  #gFooter .contact-box .container {
    max-width: 826px; }
  #gFooter .contact-box h3 {
    margin-bottom: 10px;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.71;
    text-align: center; }
  #gFooter .contact-box .btn {
    margin: 0 auto;
    max-width: 392px;
    padding: 0;
    display: block; }
    #gFooter .contact-box .btn a {
      height: 74px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 0.1em;
      border-radius: 37px;
      background: linear-gradient(65deg, #92539d 0%, #00a0e9 100%); }
      @media screen and (min-width: 768px) {
        #gFooter .contact-box .btn a:hover {
          color: #0055A2;
          background: #FFF60A; } }
#gFooter .f-inner {
  padding: 70px 15px 40px;
  position: relative; }
  #gFooter .f-inner .container {
    max-width: 1000px; }
  #gFooter .f-inner .f-box {
    margin-bottom: 40px;
    padding-bottom: 35px;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255, 255, 255, 0.26); }
    #gFooter .f-inner .f-box .f-logo {
      margin-top: 8px; }
    #gFooter .f-inner .f-box .f-navi {
      display: flex;
      justify-content: flex-end; }
      #gFooter .f-inner .f-box .f-navi li {
        margin-left: 13px;
        width: 190px; }
        #gFooter .f-inner .f-box .f-navi li a {
          color: #fff;
          font-weight: 400;
          line-height: 2.4; }
          #gFooter .f-inner .f-box .f-navi li a[target="_blank"] {
            padding-right: 15px;
            display: inline-block;
            background: url("/seino/ippoimg/common/icon_data.png") no-repeat right 11px/11px auto; }
          @media screen and (min-width: 768px) {
            #gFooter .f-inner .f-box .f-navi li a:hover {
              opacity: 0.7; } }
  #gFooter .f-inner address {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: center; }
  #gFooter .f-inner .page-top {
    position: absolute;
    right: 20px;
    bottom: 54px;
    transition: 0.3s; }
    @media screen and (min-width: 768px) {
      #gFooter .f-inner .page-top:hover {
        bottom: 74px; } }
    @media screen and (max-width: 1230px) {
      #gFooter .f-inner .page-top {
        bottom: 20px; } }
  @media screen and (max-width: 1230px) and (min-width: 768px) {
    #gFooter .f-inner .page-top:hover {
      bottom: 40px; } }

@media screen and (max-width: 767px) {
  #gFooter .contact-box {
    margin-bottom: 60px; }
    #gFooter .contact-box h3 {
      font-size: 2rem; } }
    @media screen and (max-width: 767px) and (max-width: 374px) {
      #gFooter .contact-box h3 {
        font-size: 1.8rem; } }
@media screen and (max-width: 767px) {
    #gFooter .contact-box .btn a {
      font-size: 1.5rem; }
  #gFooter .f-inner {
    padding: 40px 15px 30px; }
    #gFooter .f-inner .f-box {
      margin-bottom: 20px;
      padding-bottom: 25px;
      flex-wrap: wrap; }
      #gFooter .f-inner .f-box .f-logo {
        margin-top: 0; }
      #gFooter .f-inner .f-box .f-navi {
        margin-top: 20px;
        width: 100%;
        justify-content: space-between; }
        #gFooter .f-inner .f-box .f-navi li {
          margin-left: 0;
          width: 52%; }
          #gFooter .f-inner .f-box .f-navi li:first-child {
            width: 47%; } }
        @media screen and (max-width: 767px) and (max-width: 767px) {
          #gFooter .f-inner .f-box .f-navi li {
            font-size: 1.2rem; } }
@media screen and (max-width: 767px) {
    #gFooter .f-inner address {
      font-size: 1.1rem; } }
    @media screen and (max-width: 767px) and (max-width: 374px) {
      #gFooter .f-inner address {
        font-size: 1rem; } }
@media screen and (max-width: 767px) {
    #gFooter .f-inner .page-top {
      width: 60px;
      right: 10px;
      bottom: 10px; } }
    @media screen and (max-width: 767px) and (max-width: 374px) {
      #gFooter .f-inner .page-top {
        width: 50px; } }

/*------------------------------------------------------------
	common
------------------------------------------------------------*/
/* fade-up */
.fade-up {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: opacity 1.0s, -webkit-transform 1.0s;
  transition: opacity 1.0s, -webkit-transform 1.0s;
  transition: opacity 1.0s, transform 1.0s;
  transition: opacity 1.0s, transform 1.0s, -webkit-transform 1.0s; }

.fade-up.on {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0); }

/* en */
.en {
  font-family: 'Lato', sans-serif; }

/* custom-h2 */
.custom-h2 {
  margin: 80px 0 18px;
  color: #0055A2;
  font-size: 4rem;
  font-weight: 300; }
  @media screen and (max-width: 767px) {
    .custom-h2 {
      margin-top: 50px;
      font-size: 3.25rem; } }

.heading01 {
  padding-bottom: 45px;
  margin-bottom: 45px;
  position: relative;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center; }
  .heading01:after {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 52px;
    height: 4px;
    background: linear-gradient(45deg, #92539d 0%, #00a0e9 100%);
    content: ""; }
  .heading01 small {
    margin-bottom: 15px;
    display: block;
    color: #0055A2;
    font-size: 1.8rem;
    font-weight: 300; }
  @media screen and (max-width: 767px) {
    .heading01 {
      padding-bottom: 30px;
      margin-bottom: 30px;
      font-size: 2.2rem; }
      .heading01:after {
        width: 30px;
        height: 2px; }
      .heading01 small {
        margin-bottom: 10px;
        font-size: 1.6rem; } }

/* container */
.container {
  max-width: 854px; }

.custom-text-blue {
  color: #0055A2; }

.custom-bg-blue {
  background-color: #0055A2; }

/* index */
#main.index {
  margin-bottom: 90px; }
  @media screen and (max-width: 767px) {
    #main.index {
      margin-bottom: 50px; } }
  #main.index .main-visual {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(65deg, #92539d 0%, #00a0e9 100%); }
    @media screen and (max-width: 767px) {
      #main.index .main-visual {
        padding: 0 29px;
        height: 375px;
        background: linear-gradient(45deg, #92539d 0%, #00a0e9 100%); } }
  #main.index .container {
    max-width: 1030px; }
  #main.index .txt-line {
    font-weight: bold;
    background: url("/seino/ippo/img/index/txt_bg.png") repeat-x left bottom; }
  #main.index .mid-txt {
    margin-bottom: 56px;
    line-height: 1.71;
    text-align: center; }
    #main.index .mid-txt:last-child {
      margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      #main.index .mid-txt {
        margin-bottom: 30px; } }
  #main.index .about {
    padding: 60px 0 52px;
    position: relative;
    z-index: 1;
    background: url("/seino/ippo/img/index/about_bg.png") no-repeat center bottom/cover; }
    #main.index .about .movie {
      margin-bottom: 41px; }
    #main.index .about .info-box {
      margin-bottom: 65px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      #main.index .about .info-box .txt-box {
        margin-top: 60px;
        width: calc(100% - 500px); }
        #main.index .about .info-box .txt-box h2 {
          margin-bottom: 40px;
          padding-bottom: 30px;
          font-size: 2.8rem;
          font-weight: 700;
          line-height: 1.71;
          text-align: left; }
          #main.index .about .info-box .txt-box h2:after {
            left: 0;
            transform: none; }
        #main.index .about .info-box .txt-box p {
          font-size: 1.6rem;
          line-height: 1.875; }
          #main.index .about .info-box .txt-box p strong {
            font-weight: 700; }
      #main.index .about .info-box .about-img {
        width: 500px; }
    #main.index .about h3 {
      margin-bottom: 37px;
      color: #0055A2;
      font-size: 2.8rem;
      line-height: 1.5;
      font-weight: 700;
      text-align: center; }
    #main.index .about .mid-img {
      margin-left: -19px; }
      @media screen and (max-width: 1060px) {
        #main.index .about .mid-img {
          margin-left: 0; } }
    @media screen and (max-width: 1060px) {
      #main.index .about .info-box {
        display: block; }
        #main.index .about .info-box .txt-box {
          width: auto; }
        #main.index .about .info-box .about-img {
          margin: 0 auto; } }
    @media screen and (max-width: 767px) {
      #main.index .about {
        padding: 30px 0 25px; }
        #main.index .about .info-box .txt-box {
          margin-top: 0; }
          #main.index .about .info-box .txt-box h2 {
            margin-bottom: 20px;
            padding-bottom: 15px;
            font-size: 2rem; }
          #main.index .about .info-box .txt-box p {
            font-size: 1.4rem; }
        #main.index .about .info-box .about-img {
          margin-top: 25px;
          width: 75%; }
        #main.index .about h3 {
          margin-bottom: 25px;
          font-size: 2rem; } }
  #main.index .feature {
    padding: 84px 0 97px;
    position: relative;
    overflow: hidden; }
    #main.index .feature:before {
      position: absolute;
      left: 0;
      top: 336px;
      width: 100%;
      height: calc(100% - 336px);
      background: linear-gradient(45deg, #92539d 0%, #00a0e9 100%);
      content: ""; }
    #main.index .feature .container {
      position: relative;
      z-index: 1; }
    #main.index .feature .point-list {
      padding: 41px 43px 47px;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0px 0px 20px rgba(191, 203, 224, 0.3);
      justify-content: space-between; }
      @media screen and (max-width: 1060px) {
        #main.index .feature .point-list {
          padding: 41px 25px 47px; } }
      #main.index .feature .point-list > li {
        margin-bottom: 56px; }
        #main.index .feature .point-list > li:last-child {
          margin-bottom: 0; }
        #main.index .feature .point-list > li h3 {
          margin-bottom: 32px;
          font-size: 2.4rem;
          line-height: 1.42;
          font-weight: bold;
          text-align: center; }
          #main.index .feature .point-list > li h3 .en {
            margin-bottom: 5px;
            display: block;
            color: #0055A2;
            font-size: 1.4rem;
            font-weight: 300;
            letter-spacing: 0.1em; }
            #main.index .feature .point-list > li h3 .en span {
              margin-top: 3px;
              display: block;
              font-size: 3.6rem;
              font-weight: 700;
              line-height: 1;
              letter-spacing: 0; }
        #main.index .feature .point-list > li .bg-box {
          text-align: center; }
    @media screen and (max-width: 767px) {
      #main.index .feature {
        padding: 40px 0 50px; }
        #main.index .feature:before {
          top: 200px;
          height: calc(100% - 200px); }
        #main.index .feature .point-list > li {
          margin-bottom: 40px; }
          #main.index .feature .point-list > li h3 {
            margin-bottom: 20px;
            font-size: 1.8rem;
            line-height: 1.5; }
            #main.index .feature .point-list > li h3 .en span {
              font-size: 2.6rem; } }
  #main.index .strength {
    padding: 84px 0 85px;
    background-color: #F2F4F9; }
    #main.index .strength .heading01 {
      margin-bottom: 31px; }
    #main.index .strength .mid-txt {
      margin-bottom: 35px;
      font-size: 2.4rem;
      font-weight: 700; }
    #main.index .strength .tab-box {
      margin: 0 -11px; }
      #main.index .strength .tab-box table.pc {
        width: 100%;
        border-collapse: separate;
        border-spacing: 11px; }
        #main.index .strength .tab-box table.pc th, #main.index .strength .tab-box table.pc td {
          padding: 14px 10px;
          line-height: 1.43;
          text-align: center;
          vertical-align: middle;
          background-color: #fff; }
          #main.index .strength .tab-box table.pc th.bg-yellow, #main.index .strength .tab-box table.pc td.bg-yellow {
            color: #0055A2;
            background-color: #FFF60A; }
          #main.index .strength .tab-box table.pc th.height, #main.index .strength .tab-box table.pc td.height {
            padding-top: 4px;
            height: 114px; }
        #main.index .strength .tab-box table.pc th {
          font-weight: 300;
          background-color: #D9D9D9; }
        #main.index .strength .tab-box table.pc thead th {
          padding: 17px 0 0;
          border-radius: 10px 10px 0px 0px;
          background: none; }
          #main.index .strength .tab-box table.pc thead th span {
            padding: 16px 10px;
            display: block;
            background-color: rgba(0, 85, 162, 0.21);
            border-radius: 10px 10px 0px 0px; }
          #main.index .strength .tab-box table.pc thead th:first-child {
            background: none; }
          #main.index .strength .tab-box table.pc thead th:last-child {
            padding: 11px 10px 16px;
            position: relative;
            color: #FFF60A;
            font-size: 3rem;
            font-weight: bold;
            line-height: 1.2;
            background: linear-gradient(65deg, #92539d 0%, #298bd4 72.2%, #00a0e9 100%); }
            #main.index .strength .tab-box table.pc thead th:last-child:after {
              position: absolute;
              left: 0;
              bottom: -11px;
              width: 100%;
              height: 11px;
              background-color: #FFF60A;
              content: ""; }
        #main.index .strength .tab-box table.pc tbody tr:first-child th {
          width: 19.6%;
          border-radius: 10px 0px 0px 0px; }
        #main.index .strength .tab-box table.pc tbody tr:last-child th {
          border-radius: 0 0px 0px 10px; }
        #main.index .strength .tab-box table.pc td:last-child {
          position: relative;
          width: 40.8%;
          font-size: 1.8rem;
          font-weight: bold;
          line-height: 1.3;
          border-left: 3px solid #0055A2;
          border-right: 3px solid #0055A2; }
          #main.index .strength .tab-box table.pc td:last-child:before, #main.index .strength .tab-box table.pc td:last-child:after {
            position: absolute;
            left: -3px;
            top: -11px;
            width: 3px;
            height: calc(100% + 22px);
            background-color: #0055A2;
            content: ""; }
          #main.index .strength .tab-box table.pc td:last-child:after {
            left: auto;
            right: -3px; }
        #main.index .strength .tab-box table.pc tr:last-child td:last-child {
          border-bottom: 3px solid #0055A2; }
          #main.index .strength .tab-box table.pc tr:last-child td:last-child:before, #main.index .strength .tab-box table.pc tr:last-child td:last-child:after {
            height: calc(100% + 11px); }
    @media screen and (max-width: 767px) {
      #main.index .strength {
        padding: 55px 0 60px; }
        #main.index .strength .heading01 {
          margin-bottom: 30px; }
        #main.index .strength .mid-txt {
          margin-bottom: 25px;
          font-size: 1.8rem; }
        #main.index .strength .tab-box {
          margin: 0 -5px;
          overflow-x: auto; }
          #main.index .strength .tab-box table.sp {
            width: 960px;
            border-collapse: separate;
            border-spacing: 5px; }
            #main.index .strength .tab-box table.sp th, #main.index .strength .tab-box table.sp td {
              padding: 7px 5px;
              font-size: 1.3rem;
              line-height: 1.43;
              text-align: center;
              vertical-align: middle;
              background-color: #fff; }
              #main.index .strength .tab-box table.sp th.bg-yellow, #main.index .strength .tab-box table.sp td.bg-yellow {
                background-color: #FFF60A; }
            #main.index .strength .tab-box table.sp th {
              font-weight: 300;
              background-color: #D9D9D9; }
            #main.index .strength .tab-box table.sp tbody th {
              position: sticky;
              position: -webkit-sticky;
              left: 0;
              z-index: 10;
              padding: 0;
              border-radius: 10px 0 0px 10px;
              background: none; }
              #main.index .strength .tab-box table.sp tbody th span {
                height: 88px;
                padding: 10px 5px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #BED2E7;
                border-radius: 10px 0 0px 10px;
                box-sizing: border-box; }
            #main.index .strength .tab-box table.sp tbody tr:last-child th {
              padding: 13px 10px 16px;
              color: #FFF60A;
              font-size: 2.6rem;
              font-weight: bold;
              line-height: 1.2;
              background-color: #BED2E7;
              background: linear-gradient(65deg, #92539d 0%, #298bd4 72.2%, #00a0e9 100%); }
              #main.index .strength .tab-box table.sp tbody tr:last-child th:before, #main.index .strength .tab-box table.sp tbody tr:last-child th:after {
                width: 10px;
                height: 10px;
                position: absolute;
                left: -1px;
                top: -1px;
                background: url("/seino/ippo/img/index/icon01.png") no-repeat left top/11px auto;
                content: ''; }
              #main.index .strength .tab-box table.sp tbody tr:last-child th:after {
                top: auto;
                bottom: 0;
                background-image: url("/seino/ippo/img/index/icon02.png"); }
            #main.index .strength .tab-box table.sp thead th {
              width: 13%; }
              #main.index .strength .tab-box table.sp thead th:first-child {
                background: none; }
              #main.index .strength .tab-box table.sp thead th:nth-child(2) {
                width: auto;
                border-radius: 10px 0 0px 0px; }
              #main.index .strength .tab-box table.sp thead th:nth-child(5) {
                width: 15%; }
              #main.index .strength .tab-box table.sp thead th:last-child {
                border-radius: 0 10px 0px 0px; }
            #main.index .strength .tab-box table.sp tr:last-child td {
              position: relative;
              color: #0055A2;
              font-size: 1.6rem;
              font-weight: bold;
              line-height: 1.3; }
              #main.index .strength .tab-box table.sp tr:last-child td:before, #main.index .strength .tab-box table.sp tr:last-child td:after {
                position: absolute;
                left: -5px;
                top: 0;
                width: calc(100% + 10px);
                height: 2px;
                background-color: #0055A2;
                content: ""; }
              #main.index .strength .tab-box table.sp tr:last-child td:after {
                top: auto;
                bottom: 0; }
            #main.index .strength .tab-box table.sp tr:last-child td:last-child {
              border-right: 2px solid #0055A2; }
              #main.index .strength .tab-box table.sp tr:last-child td:last-child:before, #main.index .strength .tab-box table.sp tr:last-child td:last-child:after {
                width: calc(100% + 5px); } }

/* form */
#form .contact-box {
  display: none; }

.mail-form p {
  margin-bottom: 87px;
  color: #333;
  line-height: 2.1; }
.mail-form .bg-box {
  margin: -38px auto 83px;
  padding: 40px 35px;
  width: 594px;
  border-radius: 10px;
  background: #f2f5f9;
  box-sizing: border-box; }
  @media screen and (max-width: 1220px) {
    .mail-form .bg-box {
      width: 83.333333%;
      padding: 40px 20px; } }
  .mail-form .bg-box .text-md-right {
    margin-top: 4px; }
  .mail-form .bg-box p {
    font-size: 1.2rem;
    line-height: 1.5; }
  .mail-form .bg-box .custom-text-blue {
    font-size: 1.4rem;
    line-height: 1.4; }
.mail-form dt {
  margin-bottom: 8px !important;
  font-size: 1.8rem; }
  .mail-form dt span {
    margin-left: 8px !important;
    padding: 0 9px 1px !important;
    font-size: 1.2rem;
    font-weight: normal;
    border-radius: 2px;
    vertical-align: 1px; }
  .mail-form dt .custom-check-free {
    background-color: #E6E6E6; }
.mail-form dd {
  margin-bottom: 40px; }
  .mail-form dd .input-item, .mail-form dd select, .mail-form dd textarea {
    padding: 10px 24px;
    width: 100%;
    height: 50px;
    font-size: 1.6rem;
    box-sizing: border-box;
    border: 1px solid rgba(0, 85, 162, 0.3);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none; }
    .mail-form dd .input-item::-ms-input-placeholder, .mail-form dd select::-ms-input-placeholder, .mail-form dd textarea::-ms-input-placeholder {
      color: rgba(34, 34, 34, 0.2);
      opacity: 1; }
    .mail-form dd .input-item:-ms-input-placeholder, .mail-form dd select:-ms-input-placeholder, .mail-form dd textarea:-ms-input-placeholder {
      color: rgba(34, 34, 34, 0.2);
      opacity: 1; }
    .mail-form dd .input-item::-moz-placeholder, .mail-form dd select::-moz-placeholder, .mail-form dd textarea::-moz-placeholder {
      color: rgba(34, 34, 34, 0.2);
      opacity: 1; }
    .mail-form dd .input-item::-webkit-input-placeholder, .mail-form dd select::-webkit-input-placeholder, .mail-form dd textarea::-webkit-input-placeholder {
      color: rgba(34, 34, 34, 0.2);
      opacity: 1; }
    .mail-form dd .input-item.wid-short, .mail-form dd select.wid-short, .mail-form dd textarea.wid-short {
      width: 184px; }
    .mail-form dd .input-item.wid-short02, .mail-form dd select.wid-short02, .mail-form dd textarea.wid-short02 {
      width: 221px; }
  .mail-form dd select {
    background: url("/seino/ippo/img/common/select_bg.png") no-repeat right 20px center/11px auto; }
  .mail-form dd select::-ms-expand {
    display: none; }
  .mail-form dd textarea {
    height: 266px; }
  .mail-form dd placeholder-shown {
    color: rgba(34, 34, 34, 0.2); }
  .mail-form dd .line {
    margin: 0 12px;
    color: #222;
    font-size: 1.6rem;
    font-weight: 500; }
  .mail-form dd .custom-btn {
    margin-left: 28px;
    padding: 9px;
    width: 122px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    display: inline-block;
    text-align: center;
    border-radius: 21px;
    text-decoration: none;
    cursor: pointer; }
    @media screen and (min-width: 768px) {
      .mail-form dd .custom-btn:hover {
        color: #0055A2;
        background-color: #FFF60A; } }
  .mail-form dd.dd-style {
    margin-bottom: 58px; }
.mail-form .custom-agree {
  margin: 90px 0 30px; }
  .mail-form .custom-agree .custom-check-box {
    margin: 6px 9px 0 0; }
    .mail-form .custom-agree .custom-check-box input {
      display: none; }
    .mail-form .custom-agree .custom-check-box span {
      width: 26px;
      height: 26px;
      display: inline-block;
      background: url("/seino/ippo/img/common/check_bg.png") no-repeat left top/26px auto; }
    .mail-form .custom-agree .custom-check-box input[type="checkbox"]:checked + span {
      background-image: url("/seino/ippo/img/common/check_on_bg.png"); }
  .mail-form .custom-agree .custom-icon {
    display: inline-block;
    color: #222;
    font-size: 1.6rem; }
    .mail-form .custom-agree .custom-icon:after {
      margin-left: 10px;
      line-height: 0;
      font-size: 0;
      display: inline-block;
      width: 12px;
      height: 12px;
      background: url("/seino/ippo/img/common/icon_data_black.png") no-repeat right top/12px auto;
      content: ""; }
  .mail-form .custom-agree a {
    color: #222;
    font-size: 1.6rem;
    text-decoration: underline; }
    @media screen and (min-width: 768px) {
      .mail-form .custom-agree a:hover {
        text-decoration: none; } }
.mail-form .custom-btn-submit input {
  margin: 0 auto;
  display: flex;
  width: 392px;
  height: 74px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #0055A2;
  transition: all 0.3s;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 37px; }
  @media screen and (min-width: 768px) {
    .mail-form .custom-btn-submit input:hover {
      color: #0055A2;
      background-color: #FFF60A !important; } }
  .mail-form .custom-btn-submit input:disabled {
    background: #ccc; }
    @media screen and (min-width: 768px) {
      .mail-form .custom-btn-submit input:disabled:hover {
        color: #fff;
        background-color: #ccc !important; } }
@media screen and (max-width: 767px) {
  .mail-form {
    max-width: 540px; }
    .mail-form .col-12 {
      padding: 0; }
    .mail-form p {
      margin-bottom: 55px; }
    .mail-form .bg-box {
      margin: -20px auto 50px;
      width: auto; }
      .mail-form .bg-box .custom-text-blue {
        font-size: 1.6rem; }
    .mail-form dt {
      margin-bottom: 3px !important;
      font-size: 1.6rem; }
    .mail-form dd {
      margin-bottom: 50px; }
      .mail-form dd .input-item, .mail-form dd select, .mail-form dd textarea {
        padding: 10px; }
        .mail-form dd .input-item.wid-short, .mail-form dd select.wid-short, .mail-form dd textarea.wid-short {
          width: calc(50% - 43px); }
        .mail-form dd .input-item.wid-short02, .mail-form dd select.wid-short02, .mail-form dd textarea.wid-short02 {
          width: 50%; }
      .mail-form dd .line {
        margin: 0 8px; }
      .mail-form dd .custom-btn {
        margin: 10px 0 0; }
    .mail-form .custom-agree {
      margin: 50px 0 20px; }
      .mail-form .custom-agree .custom-icon {
        display: block; }
    .mail-form .custom-btn-submit input {
      width: 100%;
      height: 64px; } }

.confirm h2 {
  margin-bottom: 95px; }
.confirm .custom-form {
  margin: 0 auto 94px;
  max-width: 595px; }
  .confirm .custom-form > div {
    margin-bottom: 54px !important;
    display: flex; }
    .confirm .custom-form > div dt {
      width: 201px; }
    .confirm .custom-form > div dd {
      margin-bottom: 0;
      flex: 1;
      color: #333;
      font-size: 1.8rem;
      line-height: 1.67; }
.confirm .txt-link {
  margin-top: 23px;
  text-align: center; }
  .confirm .txt-link a {
    font-size: 1.6rem;
    text-decoration: underline; }
    @media screen and (min-width: 768px) {
      .confirm .txt-link a:hover {
        text-decoration: none; } }
@media screen and (max-width: 767px) {
  .confirm h2 {
    margin-bottom: 55px;
    font-size: 2.9rem; } }
  @media screen and (max-width: 767px) and (max-width: 374px) {
    .confirm h2 {
      font-size: 2.6rem; } }
@media screen and (max-width: 767px) {
  .confirm .custom-form {
    margin-bottom: 50px; }
    .confirm .custom-form > div {
      margin-bottom: 30px !important;
      display: block; }
      .confirm .custom-form > div dt {
        width: auto; }
      .confirm .custom-form > div dd {
        font-size: 1.6rem; } }

.thankyou {
  min-height: calc(100vh - 613px); }
  .thankyou h2 {
    margin-bottom: 52px;
    font-size: 3rem;
    line-height: 1.47; }
  .thankyou p {
    color: #333;
    font-size: 1.6rem;
    line-height: 1.875; }
  .thankyou .btn {
    margin: 0 auto;
    padding: 0;
    display: block;
    width: 392px; }
    .thankyou .btn a {
      display: flex;
      height: 74px;
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 0.1em;
      justify-content: center;
      align-items: center;
      color: #fff;
      background: #0055A2;
      border-radius: 50px; }
      @media screen and (min-width: 768px) {
        .thankyou .btn a:hover {
          color: #0055A2;
          background-color: #FFF60A !important; } }
  @media screen and (max-width: 767px) {
    .thankyou {
      min-height: inherit; }
      .thankyou h2 {
        margin-bottom: 30px;
        font-size: 2.6rem; }
      .thankyou p {
        font-size: 1.4rem; } }
    @media screen and (max-width: 767px) and (max-width: 374px) {
      .thankyou p {
        font-size: 1.3rem; } }
  @media screen and (max-width: 767px) {
      .thankyou .btn {
        max-width: 540px;
        width: 100%; }
        .thankyou .btn a {
          height: 64px;
          font-size: 1.8rem; } }
