@charset "utf-8";

aside{
  font-family: 'Anton', sans-serif, 'Hiragino Kaku Gothic ProN';
}

@media screen and (max-width: 1360px) {
  header {padding-left: 40px;}
  @media screen and (max-width: 767px) {
    header {padding: 0 0 0 3%;}
  }
}
@media screen and (max-width: 1152px) {
  .pc-nav {padding-left: 48px;}
  .gnav {margin-right: 32px;}
  .gnav-mega {left: -400px;}
}
@media screen and (max-width: 1024px) {
  header {width: calc(100%);}
  .pc-nav {padding-left: 24px;}
  .gnav {margin-right: 10px;}
  aside {width: 104px;}
  .side-nav li.ja-font {font-size: 1.4rem;}
  .ja-contact {max-width: 104px;}
}
/*iPad用*/
@media screen and (orientation: portrait) and (min-width: 768px) {
  .pc-nav {padding-left: 72px;}
  .gnav {margin-left: 32px;}
  .lang_nav {min-width: 104px;}
}

.header-logo {
  display: flex;
  gap: 15px;
  align-items: center;
  @media screen and (max-width: 767px) {
    width: calc(100% - 180px);
    height: 100%;
    gap: 10px;
    padding-top: 4px;
    padding-right: 8px;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
@media screen and (max-width: 767px) {
  .hd-70th {
    height: 100%;
  }
  main img {
    width: 100%;
    height: auto;
  }
}

main p, main h2 {margin: 0;}
main a {text-decoration: none;}

.pc_block {
  display: block;
  @media screen and (max-width: 767px) {
    display: none;
  }
}
.sp_block {
  display: none;
  @media screen and (max-width: 767px) {
    display: block;
  }
}

.indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.mb10 {margin-bottom: 10px!important;}
.mb20 {margin-bottom: 20px!important;}
.mb30 {margin-bottom: 30px!important;}


.mv_outer {
  position: relative;
  width: calc(100% - 128px);
  height: 756px;
  margin-top: 128px;
  background: url(../img/mv_bg.png)no-repeat top;
  background-size: cover;
  @media screen and (max-width: 767px) {
    width: 100%;
    height: auto;
    margin-top: 60px;
  }
}
.mv_inner {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}


.detail_sec {
  background: #FEEAE3;
  padding: 48px 0;
  width: calc(100% - 128px);
  @media screen and (max-width: 767px) {
    width: 100%;
    padding: 24px 0;
  }
}
.detail_inner {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  summary {
    color: #fff;
    background: #D91E26;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    &::marker {
      color: #D91E26;
    }
    &::-webkit-details-marker {
      display:none;
    }
    h2 {
      position: relative;
      font-size: 2.4rem;
      letter-spacing: 2.4px;
      display: inline-block;
      margin-left: -25px;
    }
    h2::after {
      content: '';
      position: absolute;
      background: url(../img/detail_arrow.svg)no-repeat center;
      background-size: contain;
      width: 24px;
      height: 14px;
      top: 0;
      bottom: 0;
      margin: auto;
      right: -40px;
    }
  }
  details[open] {
    summary {
      h2::after {
        transform: rotate(180deg);
      }
    }
  }
  @media screen and (max-width: 767px) {
    summary {
      position: relative;
      padding: 10px;
      text-align: left;
      &::after {
        content: '';
        position: absolute;
        background: url(../img/detail_arrow.svg)no-repeat center;
        background-size: contain;
        width: 24px;
        height: 14px;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 15px;
      }
      h2 {
        font-size: min(1.8rem, 4.5vw);
        letter-spacing: 1.8px;
        margin-left: 0px;
      }
      h2::after {
        display: none;
      }
    }
  }
  details[open] {
    summary::after {
      transform: rotate(180deg);
    }
  }
}
.d_contents {
  position: relative;
  background: #fff;
  padding: 56px 0;
  @media screen and (max-width: 767px) {
    padding: 36px 0;
  }
}
.d_contents--inner {
  width: 90%;
  margin: 0 auto;
  figure {margin: 0;text-align: center;}
}
.d_flex--list01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  li {
    width: calc(50% - 12px);
    border: 2px solid #9C9C9C;
  }
  p.list_ttl {
    color: #fff;
    background: #000;
    font-size: 2rem;
    letter-spacing: 2px;
    padding: 10px;
    padding-left: 28px;
    text-align: left;
    font-weight: bold;
  }
  p.list_ttl + div {
    padding: 10px 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    p {
      line-height: 2;
    }
  }
  li:nth-child(2) p.list_ttl + div {
    padding: 10px;
    gap: 10px;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    li {
      width: 100%;
    }
    p.list_ttl {
      font-size: 1.8rem;
      letter-spacing: 1.8px;
    }
    p.list_ttl + div img {
      height: 96px;
      object-fit: contain;
    }
    li:nth-child(2) p.list_ttl + div img {
      height: 80px;
    }
  }
}
.d_flex--list01 + h3 {
  position: relative;
  margin: 64px 0 24px;
  width: 100%;
  border: 10px solid #F00;
  padding: 40px;
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 3.6px;
  font-weight: bold;
  span {
    color: #F00;
    /* background: #E1FF00; */
    background: linear-gradient(transparent 50%, #E1FF00 50%);;
  }
  &::before {
    content: '';
    position: absolute;
    background: url(../img/arrow_red.svg)no-repeat center;
    background-size: contain;
    width: 103px;
    height: 44px;
    top: -1.7em;
    right: 0;
    left: 0;
    margin: auto;
  }
  @media screen and (max-width: 767px) {
    font-size: 2.8rem;
    letter-spacing: 2.8px;
    padding: 20px 10px;
    line-height: 1.5;
    &::before {
      top: -2.1em;
    }
  }
}
.d_flex--list02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  li {
    width: calc(50% - 10px);
  }
  p.list_ttl {
    color: #fff;
    background: #D91E26;
    font-size: 1.6rem;
    letter-spacing: 1.6px;
    padding: 8px;
    padding-left: 16px;
    margin-bottom: 16px;
    text-align: left;
    font-weight: bold;
  }
  p.list_ttl + p,
  p.list_ttl + p + figure {
    width: 95%;
    margin: 0 auto 10px;
  }

  li:nth-child(1) figure + div {
    border: 5px solid #FCE9E7;
    width: 100%;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    li {
      width: 100%;
    }
    li:nth-child(1) figure + div {
      gap: 10px;
      img {
        min-width: 100px;
        object-fit: contain;
      }
    }
  }
}
.d_flex--list02 + h4 {
  font-size: 2.4rem;
  letter-spacing: 2.4px;
  color: #000;
  border-bottom: 1px solid #F00;
  padding-bottom: 16px;
  margin: 44px 0 32px;
  @media screen and (max-width: 767px) {
    font-size: 1.8rem;
    letter-spacing: 1.8px;
    margin-top: 32px;
  }
}
.d_flex--list03 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  li {
    width: calc(50% - 10px);
  }
  li:nth-child(1) {
    border: 5px solid #535353;
  }
  li:nth-child(2) {
    border: 5px solid #D91E26;
  }
  p.list_ttl {
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    letter-spacing: 2px;
    padding: 4px;
    margin-bottom: 16px;
    text-align: center;
  }
  li:nth-child(1) p.list_ttl {
    background: #535353;
  }
  li:nth-child(2) p.list_ttl {
    background: #D91E26;
  }
  p.list_ttl + div {
    padding: 16px 20px;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    li {
      width: 100%;
    }
    p.list_ttl + div img {
      max-height: 120px;
      object-fit: contain;
    }
  }
}
.catalog_btn {
  width: 100%;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  a {
    position: relative;
    width: 100%;
    max-width: 340px;
    background: #F00;
    padding: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    &::after {
      content: '>';
      position: absolute;
      right: 10px;
      top: 0;
      bottom: 0;
      margin: auto;
      display: flex;
      align-items: center;
    }
    &:hover {
      opacity: 0.6;
    }
  }
}

.pro_sec {
  padding: 48px 0 64px;
  width: calc(100% - 128px);
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}
.pro_inner {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  border: 2px solid #F00;
  padding: 28px 24px;
  h2 {
    width: 100%;
    background: #D91E26;
    color: #fff;
    padding: 32px 10px;
    text-align: center;
    font-size: 4rem;
    letter-spacing: 4px;
    margin-bottom: 32px;
  }
  h2 + figure {
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
  }
  @media screen and (max-width: 767px) {
    padding: 28px 5%;
    h2 {
      font-size: 2.4rem;
      letter-spacing: 2.4px;
      line-height: 1.5;
      padding: 15px 10px;
    }
  }
}
.pro_gray--txt {
  width: 100%;
  background: #D9D9D9;
  color: #000;
  padding: 20px 10px;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 20px;
  @media screen and (max-width: 767px) {
    font-size: 1.6rem;
    letter-spacing: 1.6px;
  }
}
.pro_flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 44px 28px;
  a {
    width: calc(25% - 21px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    &:hover {opacity: 0.8;}
  }
  p {
    text-align: center;
  }
  p:last-child {
    width: 100%;
    padding: 4px;
    background: #000;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 1.6px;
    font-weight: bold;
  }
  @media screen and (max-width: 767px) {
    gap: 10px;
    a {
      width: calc(50% - 5px);
    }
    p:last-child {
      font-size: 1.4rem;
      letter-spacing: 1.4px;
    }
    a:nth-child(5) p:last-child,
    a:nth-child(6) p:last-child {
      min-height: 72px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
}

.flow_sec {
  padding: 56px 0 80px;
  width: calc(100% - 128px);
  background: #F2F2F2;
  @media screen and (max-width: 767px) {
    padding: 56px 0;
    width: 100%;
  }
}
.flow_inner {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #F00;
  padding: 20px 24px 40px;
  h2 {
    width: 100%;
    background: #D91E26;
    color: #fff;
    padding: 28px 10px;
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 2.4px;
    margin-bottom: 56px;
  }
  h2 + figure {
    text-align: center;
    margin: 0;
    margin-bottom: 32px;
  }
  h3 {
    width: 95%;
    margin: 0 auto 24px;
    font-size: 2.4rem;
    letter-spacing: 2.4px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F00;
  }
  @media screen and (max-width: 767px) {
    padding: 28px 5%;
    h2 {
      padding: 15px 10px;
      font-size: 1.8rem;
      letter-spacing: 1.8px;
    }
    h3 {
      font-size: 1.8rem;
      letter-spacing: 1.8px;
      padding-bottom: 10px;
    }
  }
}
.flow_list {
  width: 95%;
  margin: 0 auto 40px;
  li {
    padding-left: 1.3em;
    text-indent: -1.3em;
  }
  & + p {
    width: 95%;
    margin: 0 auto 24px;
    a {
      width: 100%;
      max-width: 340px;
      background: #F00;
      padding: 10px;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      &:hover {opacity: 0.6;}
    }
  }
  @media screen and (max-width: 767px) {
    & + p {
      display: flex;
      justify-content: center;
    }
  }
}
.flow_address {
  width: 95%;
  margin: 0 auto;
  background: #F2F2F2;
  padding: 24px;
  p {
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 2.4px;
  }
  p:last-child {
    font-size: 1.6rem;
    letter-spacing: 3.2px;
    margin-top: 10px;
    span {display: inline-block;}
    a {color: #000;}
  }
  @media screen and (max-width: 767px) {
    padding: 15px;
    p {
      font-size: 1.8rem;
      letter-spacing: 1.8px;
    }
    p:last-child {
      text-align: left;
      font-size: min(1.4rem, 2.7vw);
      letter-spacing: 1.4px;
      span {display: none;}
    }
  }
}

.table_sec {
  padding: 64px 0;
  width: calc(100% - 128px);
  @media screen and (max-width: 767px) {
    padding: 48px 0;
    width: 100%;
  }
}
.table_inner {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  /* padding: 0 24px; */
  h2 {
    width: 100%;
    background: #D91E26;
    color: #fff;
    padding: 16px 10px;
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 2.4px;
    margin-bottom: 20px;
  }
  details {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  details[open] {
    margin-bottom: 32px;
  }
  details:last-of-type {
    margin-bottom: 0;
  }
  summary {
    position: relative;
    color: #000;
    background: #D3D3D3;
    font-weight: bold;
    font-size: 2rem;
    letter-spacing: 2px;
    padding: 16px 44px;
    text-align: left;
    cursor: pointer;
    &::marker {
      color: #D3D3D3;
    }
    &::-webkit-details-marker {
      display:none;
    }
    span {
      display: inline-block;
      margin-left: -25px;
    }
    &::after {
      content: '';
      position: absolute;
      background: url(../img/table_arrow.svg)no-repeat center;
      background-size: contain;
      width: 24px;
      height: 14px;
      top: 0;
      bottom: 0;
      margin: auto;
      right: 44px;
    }
  }
  details[open] summary {
    margin-bottom: 20px;
    &::after {
      transform: rotate(180deg);
    }
  }
  @media screen and (max-width: 767px) {
    h2 {
      font-size: 2rem;
      letter-spacing: 2px;
    }
    summary {
      padding: 10px;
      font-size: min(1.8rem, 4.5vw);
      letter-spacing: 1.8px;
      span {
        margin-left: 0px;
      }
      &::after {right: 15px;}
    }
  }
}
.table_sec--outer {
  width: 100%;
  overflow: auto;
  table {
    width: 100%;
    border: 1px solid #CBCBCB;
    border-right: none;
  }
  thead th {
    color: #fff;
    background: #D91E26;
    border-right: 1px solid #CBCBCB;
    padding: 10px;
    font-weight: normal;
    text-align: center;
  }
  thead th[colspan="2"] {
    border-bottom: 1px solid #CBCBCB;
  }
  tbody tr:nth-child(even) {
    background: #FEEAE3;
  }
  tbody td {
    color: #000;
    border-right: 1px solid #CBCBCB;
    padding: 10px;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    table {
      width: 520px;
    }
  }
}


.flow_address--outer {
  position: relative;
  background: #F2F2F2;
  width: calc(100% - 128px);
  padding: 48px 0;
  .flow_address {padding: 0;}
  @media screen and (max-width: 767px) {
    width: 100%;
    p:last-child {
      width: 100%;
      max-width: 320px;
      margin: 10px auto 0;
    }
  }
}