@charset "UTF-8";
/*  reset
-------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  zoom: 1;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html,
body {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

html {
  overflow-y: scroll;
  cursor: default;
}

body {
  line-height: 1em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: 700;
  line-height: 1em;
}

ol,
ul,
li {
  list-style: none;
  zoom: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

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

th {
  font-weight: normal;
}

td,
th {
  padding: 0;
}

blockquote {
  quotes: none;
}

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

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
  cursor: pointer;
}

a:active,
a:hover {
  outline-width: 0;
}

a:focus,
*:focus {
  outline: none;
}

img {
  border-style: none;
  vertical-align: bottom;
}

[type=text],
[type=tel],
[type=email],
[type=date],
[type=number],
[type=submit],
[type=button],
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input,
select {
  vertical-align: middle;
}

select {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/*  html / body
-------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.8461538462vw;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.3846153846vw;
  }
}
@media screen and (min-width: 1286px) {
  body {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 768px) {
  a.on--opa {
    transition: opacity 0.3s;
  }
  a.on--opa:hover {
    opacity: 0.8;
  }
}
/* utils
-------------------------------------------------------*/
.text p {
  line-height: 2em;
}
.text p:nth-child(n+2) {
  margin-top: 1.5em;
}

.center {
  text-align: center;
}
.center .mark-list {
  display: inline-block;
  text-align: left;
}

.switch {
  text-align: left;
}

.bold {
  font-weight: 700;
}

.red {
  color: #E60112;
}

.notes {
  padding-left: 1em;
  text-indent: -1em;
}
.notes:before {
  content: "※";
}

@media screen and (max-width: 767px) {
  .none--sp {
    display: none !important;
  }
  .br--pc {
    display: none;
  }
  .br--sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .switch {
    text-align: center;
  }
  .none--pc {
    display: none !important;
  }
  .br--pc {
    display: block;
  }
  .br--sp {
    display: none;
  }
}
.img--fit {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.img--scale {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.img--scale img {
  width: 100%;
  transition-duration: 0.3s;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.youtube,
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.youtube iframe,
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lightboxOverlay {
  width: 100% !important;
}

/*  u-animation
-------------------------------------------------------------------------------*/
.js-anim {
  opacity: 0;
}

.js-anim.is-show {
  opacity: 1;
}

/*--  fadein --*/
.js-anim--fade {
  opacity: 0;
}

.js-anim--fade.is-show {
  opacity: 1;
  transition: opacity 2s;
}

/*--  fadeup --*/
.js-anim--up {
  transform: translateY(30px);
}

.js-anim--up.is-show {
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.08, 0.92, 0.35, 1), opacity 1s;
}

/*--  fadeup & delay --*/
.js-delay-item {
  opacity: 0;
}

.js-delay-item.is-show {
  animation-name: fadeup;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
.js-fadetext {
  span {
    transition: 2s;
    opacity: 0;
  }
}

.js-fadetext.is-active {
  span {

    &.is-show {
      transition: 2s;
      opacity: 1;
    }
  }
}
*/
/*  #header
-------------------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8888;
  background: #FFF;
}

.header-top {
  position: relative;
  display: flex;
  align-items: center;
  padding: 7.1794871795vw 2.5641025641vw 4.6153846154vw 2.5641025641vw;
  height: 24.358974359vw;
  background-color: #ffffff;
}
.header-top:before {
  content: "";
  position: absolute;
  top: 2.5641025641vw;
  left: 50%;
  width: 94.8717948718vw;
  height: 2.0512820513vw;
  background-color: #E60112;
  border-radius: 2.3076923077vw;
  transform: translateX(-50%);
  z-index: 1;
}

.header-logo {
  position: relative;
  width: 35.8974358974vw;
  transition: width 0.3s ease;
}

.header-logo a {
  display: block;
}

@media screen and (max-width: 767px) {
  .header.is-open {
    top: 0 !important;
  }
  .header-navi {
    display: none !important;
  }
  .header-content .inquiry {
    display: none;
  }
  .header-inquiry {
    margin-left: 7.6923076923vw;
    width: 35.3846153846vw;
  }
  .header-inquiry .inquiry-btn a {
    height: 8.7179487179vw;
    border-radius: 4.358974359vw;
  }
  .header-inquiry-label {
    margin-bottom: 0.5128205128vw;
    font-size: 3.0769230769vw;
    font-weight: 700;
    text-align: center;
    line-height: 1.4em;
  }
}
@media screen and (min-width: 768px) {
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 4.4615384615vw 0 1.5384615385vw 0;
    width: 92.3076923077vw;
    height: 14.6153846154vw;
    transition: height 0.3s ease, box-shadow 0.3s ease;
  }
  .header-top:before {
    top: 2.3076923077vw;
    width: 100%;
    height: 0.6153846154vw;
    border-radius: 0.6923076923vw;
  }
  .header-head {
    display: flex;
    align-items: center;
  }
  .header-logo {
    width: 17.6923076923vw;
  }
  .header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header-navi {
    margin-right: 3.8461538462vw;
    text-align: right;
  }
  .header-inquiry {
    display: none;
  }
  .header.is-scroll {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
  .header.is-scroll .header-top {
    padding: 0.3846153846vw 0;
    height: 7.0769230769vw;
  }
  .header.is-scroll .header-top:before {
    content: none;
  }
  .header.is-scroll .header-logo {
    width: 13.8461538462vw;
  }
  .header.is-scroll .inquiry dt {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0.3846153846vw 0.7692307692vw;
    font-size: 1.0769230769vw;
  }
  .header.is-scroll .inquiry dt span {
    display: inline-block;
    font-size: 1.3846153846vw;
  }
  .header.is-scroll .inquiry dd {
    padding: 0.3076923077vw 0.7692307692vw;
  }
}
@media screen and (min-width: 1286px) {
  .header-top {
    padding: 58px 0 20px 0;
    width: 1200px;
    height: 190px;
  }
  .header-top:before {
    top: 30px;
    height: 8px;
    border-radius: 9px;
  }
  .header-logo {
    width: 230px;
  }
  .header-navi {
    margin-right: 50px;
  }
  .header.is-scroll .header-top {
    padding: 5px 0;
    height: 92px;
  }
  .header.is-scroll .header-logo {
    width: 180px;
  }
  .header.is-scroll .inquiry dt {
    padding: 5px 10px;
    font-size: 1.4rem;
  }
  .header.is-scroll .inquiry dt span {
    font-size: 1.8rem;
  }
  .header.is-scroll .inquiry dd {
    padding: 4px 10px;
  }
}
/*  #contents
-------------------------------------------------------------------------------*/
.main {
  position: relative;
  padding-top: 24.358974359vw;
}

@media screen and (min-width: 768px) {
  .main {
    padding-top: 14.6153846154vw;
  }
}
@media screen and (min-width: 1286px) {
  .main {
    padding-top: 190px;
  }
}
/*  container
-------------------------------------------------------------------------------*/
.container {
  position: relative;
  margin: 0 auto;
  width: 89.7435897436vw;
}

.container-side {
  margin: 17.9487179487vw auto 0 auto;
  width: 89.7435897436vw;
}
.container-side > div:nth-child(n+2) {
  margin-top: 10.2564102564vw;
}

@media screen and (min-width: 768px) {
  .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 84.6153846154vw;
  }
  .container-main {
    width: 60vw;
  }
  .container-side {
    margin: 0;
    width: 20.0769230769vw;
  }
  .container-side > div:nth-child(n+2) {
    margin-top: 3.0769230769vw;
  }
}
@media screen and (min-width: 1286px) {
  .container {
    width: 1100px;
  }
  .container-main {
    width: 780px;
  }
  .container-side {
    width: 261px;
  }
  .container-side > div:nth-child(n+2) {
    margin-top: 40px;
  }
}
/*  #footer
-------------------------------------------------------------------------------*/
.footer {
  position: relative;
  margin: 12.8205128205vw auto 0 auto;
  padding-bottom: 19.2307692308vw;
  width: 89.7435897436vw;
}
.footer:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5.1282051282vw;
  width: 89.7435897436vw;
  height: 2.0512820513vw;
  background-color: #E60112;
  border-radius: 2.3076923077vw;
  transform: translateX(-50%);
}

.footer-copy {
  margin-top: 7.6923076923vw;
  font-size: 3.0769230769vw;
}

@media screen and (min-width: 768px) {
  .footer {
    margin-top: 7.6923076923vw;
    padding-bottom: 4.2307692308vw;
    width: 92.3076923077vw;
  }
  .footer:after {
    bottom: 1.5384615385vw;
    width: 100%;
    height: 0.6153846154vw;
    border-radius: 0.6923076923vw;
  }
  .footer-copy {
    margin-top: 2.3076923077vw;
    font-size: 0.9230769231vw;
    text-align: center;
  }
}
@media screen and (min-width: 1286px) {
  .footer {
    margin-top: 100px;
    padding-bottom: 55px;
    width: 1200px;
  }
  .footer:after {
    bottom: 20px;
    height: 8px;
    border-radius: 9px;
  }
  .footer-copy {
    margin-top: 30px;
    font-size: 1.2rem;
  }
}
/* ------------------------------------------- compliance - */
.compliance {
  padding: 12.8205128205vw 5.1282051282vw;
  background-color: #F9F9F9;
  border-radius: 2.5641025641vw;
}

.compliance-ttl {
  margin-bottom: 8.9743589744vw;
  font-size: 3.8461538462vw;
  font-weight: 400;
  text-align: center;
  line-height: 1.4em;
}
.compliance-ttl span {
  display: inline-block;
  margin-top: 2.5641025641vw;
  font-size: 5.1282051282vw;
  font-weight: 700;
  line-height: 1.44em;
}

.compliance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.8461538462vw 0;
  padding: 7.6923076923vw 0 7.6923076923vw 5.1282051282vw;
  background-color: #ffffff;
  border-radius: 2.5641025641vw;
}

.compliance-list > li {
  width: 100%;
}

.compliance-list a {
  position: relative;
  display: inline;
  font-size: 3.5897435897vw;
  line-height: 1.5em;
}
.compliance-list a:after {
  content: "";
  position: relative;
  top: 0;
  right: 0;
  display: inline-block;
  margin-left: 1.5384615385vw;
  width: 2.8205128205vw;
  height: 2.8205128205vw;
  background-image: url(../img/common/external-red.svg);
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .compliance {
    padding: 3.8461538462vw;
    border-radius: 0.7692307692vw;
  }
  .compliance-ttl {
    margin-bottom: 2.3076923077vw;
    font-size: 1.1538461538vw;
  }
  .compliance-ttl span {
    margin-top: 0.7692307692vw;
    font-size: 1.9230769231vw;
  }
  .compliance-list {
    justify-content: center;
    gap: 1.5384615385vw 2.3076923077vw;
    padding: 2.3076923077vw 4.6153846154vw;
    border-radius: 0.7692307692vw;
  }
  .compliance-list > li {
    width: auto;
  }
  .compliance-list a {
    padding-right: 1.3076923077vw;
    font-size: 1.0769230769vw;
    transition: color 0.3s;
  }
  .compliance-list a:after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.8461538462vw;
    height: 0.8461538462vw;
    transition: background-image 0.3s;
    transform: translateY(-50%);
  }
  .compliance-list a:hover {
    color: #484848;
  }
  .compliance-list a:hover:after {
    background-image: url(../img/common/external-gray.svg);
  }
  ::-webkit-full-page-media,
  :future,
  :root .compliance-list a:after {
    transition: none;
  }
}
@media screen and (min-width: 1286px) {
  .compliance {
    padding: 50px;
    border-radius: 10px;
  }
  .compliance-ttl {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
  .compliance-ttl span {
    margin-top: 10px;
    font-size: 2.5rem;
  }
  .compliance-list {
    gap: 20px 30px;
    padding: 30px 60px;
    border-radius: 10px;
  }
  .compliance-list a {
    padding-right: 17px;
    font-size: 1.4rem;
  }
  .compliance-list a:after {
    width: 11px;
    height: 11px;
  }
}
/* ------------------------------------------- sitemap - */
.sitemap {
  margin-top: 12.8205128205vw;
  padding: 12.8205128205vw 5.1282051282vw 17.9487179487vw 5.1282051282vw;
  background-color: #F9F9F9;
  border-radius: 2.5641025641vw;
}

.sitemap-navi > ul {
  position: relative;
  padding: 2.0512820513vw 7.6923076923vw;
}
.sitemap-navi > ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2564102564vw;
  height: 100%;
  background-color: #DDDDDD;
}

.sitemap-navi > ul > li:nth-child(n+2) {
  margin-top: 7.6923076923vw;
}

.sitemap-navi > ul > li a {
  display: block;
}

.sitemap-navi-ttl {
  position: relative;
  padding-left: 4.358974359vw;
  font-size: 4.1025641026vw;
  font-weight: 700;
}
.sitemap-navi-ttl:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 1.7948717949vw;
  height: 3.3333333333vw;
  background-image: url(../img/common/arrow-normal-red.svg);
  background-size: contain;
  transform: translateY(-50%);
}

.sitemap-navi-child {
  margin: 3.8461538462vw 0 0 2.5641025641vw;
}

.sitemap-navi-child li a {
  font-size: 3.8461538462vw;
  line-height: 2.4em;
}

.sitemap-logo {
  margin-top: 17.9487179487vw;
}

.sitemap-catch {
  font-size: 4.1025641026vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.5em;
}

.sitemap-image {
  margin: 5.1282051282vw auto 0 auto;
  width: 62.3076923077vw;
}

.sitemap-image a {
  position: relative;
  display: block;
}

@media screen and (max-width: 767px) {
  .sitemap-navi > ul:nth-child(n+2) {
    margin-top: 7.6923076923vw;
  }
}
@media screen and (min-width: 768px) {
  .sitemap {
    margin-top: 3.8461538462vw;
    padding: 5.3846153846vw 5vw;
    border-radius: 0.7692307692vw;
  }
  .sitemap-navi {
    display: flex;
    align-items: stretch;
  }
  .sitemap-navi > ul {
    padding: 0.3846153846vw 2.3076923077vw;
    width: 21.1538461538vw;
  }
  .sitemap-navi > ul:before {
    width: 0.0769230769vw;
  }
  .sitemap-navi > ul:last-child:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0.0769230769vw;
    height: 100%;
    background-color: #DDDDDD;
  }
  .sitemap-navi > ul > li:nth-child(n+2) {
    margin-top: 2.3076923077vw;
  }
  .sitemap-navi > ul > li a {
    transition: color 0.3s;
  }
  .sitemap-navi > ul > li a:hover {
    color: #E60112;
  }
  .sitemap-navi-ttl {
    padding-left: 1.3076923077vw;
    font-size: 1.2307692308vw;
  }
  .sitemap-navi-ttl:before {
    width: 0.5384615385vw;
    height: 1vw;
  }
  .sitemap-navi-child {
    margin: 1.1538461538vw 0 0 0.7692307692vw;
  }
  .sitemap-navi-child li a {
    font-size: 1.1538461538vw;
    transition: color 0.3s;
  }
  .sitemap-navi-child li a:hover {
    color: #E60112;
  }
  .sitemap-logo {
    margin-top: 3.8461538462vw;
  }
  .sitemap-catch {
    font-size: 1.2307692308vw;
  }
  .sitemap-image {
    margin-top: 1.5384615385vw;
    width: 18.6923076923vw;
  }
}
@media screen and (min-width: 1286px) {
  .sitemap {
    margin-top: 50px;
    padding: 70px 65px;
    border-radius: 10px;
  }
  .sitemap-navi > ul {
    padding: 5px 30px;
    width: 275px;
  }
  .sitemap-navi > ul:before {
    width: 1px;
  }
  .sitemap-navi > ul:last-child:after {
    width: 1px;
  }
  .sitemap-navi > ul > li:nth-child(n+2) {
    margin-top: 30px;
  }
  .sitemap-navi > ul > li a {
    transition: color 0.3s;
  }
  .sitemap-navi > ul > li a:hover {
    color: #E60112;
  }
  .sitemap-navi-ttl {
    padding-left: 17px;
    font-size: 1.6rem;
  }
  .sitemap-navi-ttl:before {
    width: 7px;
    height: 13px;
  }
  .sitemap-navi-child {
    margin: 15px 0 0 10px;
  }
  .sitemap-navi-child li a {
    font-size: 1.5rem;
  }
  .sitemap-logo {
    margin-top: 50px;
  }
  .sitemap-catch {
    font-size: 1.6rem;
  }
  .sitemap-image {
    margin-top: 20px;
    width: 243px;
  }
}
/*  bnr
-------------------------------------------------------------------------------*/
.bnr {
  margin: 0 auto;
  width: 66.9230769231vw;
}

.bnr a {
  display: block;
  width: 100%;
  border-radius: 2.0512820513vw;
}

.bnr a:nth-child(n+2) {
  margin-top: 5.1282051282vw;
}

@media screen and (min-width: 768px) {
  .bnr {
    width: 20.0769230769vw;
  }
  .bnr a {
    border-radius: 0.6153846154vw;
  }
  .bnr a:nth-child(n+2) {
    margin-top: 1.5384615385vw;
  }
}
@media screen and (min-width: 1286px) {
  .bnr {
    width: 261px;
  }
  .bnr a {
    border-radius: 8px;
  }
  .bnr a:nth-child(n+2) {
    margin-top: 20px;
  }
}
/*  breadcrumb
-------------------------------------------------------------------------------*/
.breadcrumb {
  position: relative;
  margin: 0 auto 12.8205128205vw auto;
  padding: 2.5641025641vw 2.5641025641vw 0 2.5641025641vw;
  width: 94.8717948718vw;
  background-color: #F9F9F9;
  border-radius: 1.7948717949vw;
  z-index: 2;
}

.breadcrumb-list {
  position: relative;
  display: flex;
  align-items: center;
}

.breadcrumb-list li {
  position: relative;
  font-size: 4.1025641026vw;
  line-height: 1.41em;
  white-space: nowrap;
}
.breadcrumb-list li:after {
  content: "";
  position: relative;
  top: 0;
  margin: 0 2.0512820513vw 0 2.5641025641vw;
  display: inline-block;
  width: 1.5384615385vw;
  height: 2.8205128205vw;
  background-image: url(../img/common/arrow-normal-red.svg);
  background-size: contain;
}

.breadcrumb-list li:last-child:after {
  content: none;
}

.breadcrumb-list li:first-child {
  padding-left: 6.6666666667vw;
}
.breadcrumb-list li:first-child:before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  display: inline-block;
  width: 4.1025641026vw;
  height: 4.6153846154vw;
  background-image: url(../img/common/home-red.svg);
  background-size: contain;
}

.breadcrumb-list li a {
  position: relative;
  color: #E60112;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-bottom: 3.8461538462vw;
    padding: 1.1538461538vw 1.5384615385vw;
    width: 92.3076923077vw;
    border-radius: 0.5384615385vw;
  }
  .breadcrumb-list {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .breadcrumb-list li {
    font-size: 1.3846153846vw;
    white-space: normal;
  }
  .breadcrumb-list li:after {
    margin: 0 0.7692307692vw 0 0.9230769231vw;
    width: 0.6153846154vw;
    height: 1.0769230769vw;
  }
  .breadcrumb-list li:first-child {
    padding-left: 2.1538461538vw;
  }
  .breadcrumb-list li:first-child:before {
    width: 1.3846153846vw;
    height: 1.5384615385vw;
  }
  .breadcrumb-list li a {
    transition: color 0.3s;
  }
  .breadcrumb-list li a:hover {
    color: #484848;
  }
}
@media screen and (min-width: 1286px) {
  .breadcrumb {
    margin-bottom: 50px;
    padding: 15px 20px;
    width: 1200px;
    border-radius: 7px;
  }
  .breadcrumb-list li {
    font-size: 1.8rem;
  }
  .breadcrumb-list li:after {
    margin: 0 10px 0 12px;
    width: 8px;
    height: 14px;
  }
  .breadcrumb-list li:first-child {
    padding-left: 28px;
  }
  .breadcrumb-list li:first-child:before {
    width: 18px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb-list {
    padding-bottom: 2.5641025641vw;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
/*  button
-------------------------------------------------------------------------------*/
/* ------------------------------------------- more - */
.btn-more {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-right: 8.9743589744vw;
}
.btn-more span {
  position: relative;
  color: #E60112;
  font-size: 3.8461538462vw;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  line-height: 1.3em;
}
.btn-more:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 5.641025641vw;
  height: 5.641025641vw;
  background-image: url(../img/common/arrow-circle-red.svg);
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .btn-more {
    padding-right: 2.6923076923vw;
  }
  .btn-more span {
    font-size: 1.1538461538vw;
    transition: color 0.3s;
  }
  .btn-more:after {
    width: 1.6923076923vw;
    height: 1.6923076923vw;
    transition: background-image 0.3s, transform 0.3s;
  }
  .btn-more:hover span {
    color: #484848;
  }
  .btn-more:hover:after {
    background-image: url(../img/common/arrow-circle-gray.svg);
    transform: translateX(0.2em) translateY(-50%);
  }
}
@media screen and (min-width: 1286px) {
  .btn-more {
    padding-right: 35px;
  }
  .btn-more span {
    font-size: 1.5rem;
  }
  .btn-more:after {
    width: 22px;
    height: 22px;
  }
}
/* ------------------------------------------- box - */
.btn-box {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 5.1282051282vw;
  height: 15.3846153846vw;
  background-color: #ffffff;
  border-color: #E60112;
  border-style: solid;
  border-width: 0.5128205128vw;
}
.btn-box span {
  position: relative;
  padding: 0 9.2307692308vw 0.1em 4.6153846154vw;
  color: #E60112;
  font-size: 4.1025641026vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.3em;
  transition: color 0.3s;
}
.btn-box span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 5.1282051282vw;
  height: 5.1282051282vw;
  background-image: url(../img/common/arrow-circle-red.svg);
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .btn-box {
    padding: 0 3.8461538462vw;
    height: 4.6153846154vw;
    border-width: 0.1538461538vw;
    transition: background-color 0.3s;
  }
  .btn-box span {
    padding: 0 2.7692307692vw 0.1em 1.3846153846vw;
    font-size: 1.2307692308vw;
    transition: color 0.3s;
  }
  .btn-box span:after {
    width: 1.5384615385vw;
    height: 1.5384615385vw;
    transition: background-image 0.3s;
  }
  .btn-box:hover {
    background-color: #E60112;
  }
  .btn-box:hover span {
    color: #ffffff;
  }
  .btn-box:hover span:after {
    background-image: url(../img/common/arrow-circle-white.svg);
  }
}
@media screen and (min-width: 1286px) {
  .btn-box {
    padding: 0 50px;
    height: 60px;
    border-width: 2px;
  }
  .btn-box span {
    padding: 0 36px 0.1em 18px;
    font-size: 1.6rem;
  }
  .btn-box span:after {
    width: 20px;
    height: 20px;
  }
}
/* ------------------------------------------- document - */
.btn-document {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 5.1282051282vw;
  height: 15.3846153846vw;
  background-color: #ffffff;
  border-color: #E60112;
  border-style: solid;
  border-width: 0.5128205128vw;
}
.btn-document span {
  position: relative;
  padding: 0 4.6153846154vw 0.1em 9.2307692308vw;
  color: #E60112;
  font-size: 4.1025641026vw;
  font-weight: 700;
  line-height: 1.3em;
}
.btn-document span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 5.1282051282vw;
  height: 5.641025641vw;
  background-image: url(../img/common/pdf-red.svg);
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .btn-document {
    padding: 0 3.8461538462vw;
    height: 4.6153846154vw;
    border-width: 0.1538461538vw;
    transition: background-color 0.3s;
  }
  .btn-document span {
    padding: 0 1.3846153846vw 0.1em 2.7692307692vw;
    font-size: 1.2307692308vw;
    transition: color 0.3s;
  }
  .btn-document span:before {
    width: 1.5384615385vw;
    height: 1.6923076923vw;
    transition: background-image 0.3s;
  }
  .btn-document:hover {
    background-color: #E60112;
  }
  .btn-document:hover span {
    color: #ffffff;
  }
  .btn-document:hover span:before {
    background-image: url(../img/common/pdf-white.svg);
  }
}
@media screen and (min-width: 1286px) {
  .btn-document {
    padding: 0 50px;
    height: 60px;
    border-width: 2px;
  }
  .btn-document span {
    padding: 0 18px 0.1em 36px;
    font-size: 1.6rem;
  }
  .btn-document span:before {
    width: 20px;
    height: 22px;
  }
}
/* ------------------------------------------- pdf - */
.btn-pdf {
  position: relative;
  padding-left: 6.4102564103vw;
  color: #E60112;
  font-size: 4.1025641026vw;
}
.btn-pdf:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 3.8461538462vw;
  height: 4.1025641026vw;
  background-image: url(../img/common/pdf-red.svg);
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .btn-pdf {
    padding-left: 1.9230769231vw;
    font-size: 1.2307692308vw;
  }
  .btn-pdf:before {
    width: 1.1538461538vw;
    height: 1.2307692308vw;
  }
}
@media screen and (min-width: 1286px) {
  .btn-pdf {
    padding-left: 25px;
    font-size: 1.6rem;
  }
  .btn-pdf:before {
    width: 15px;
    height: 16px;
  }
}
/*  call
-------------------------------------------------------------------------------*/
.call {
  position: relative;
}

.call-time {
  margin-bottom: 2.5641025641vw;
  font-size: 3.3333333333vw;
  text-align: center;
  line-height: 1.46em;
}

.call-num {
  text-align: center;
}

.call-num a {
  position: relative;
  display: inline-block;
  padding-left: 10.2564102564vw;
  color: #E60112;
  font-family: "Montserrat", sans-serif;
  font-size: 8.7179487179vw;
  font-weight: 700;
  line-height: 1.23em;
  letter-spacing: 0.05em;
}
.call-num a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 7.1794871795vw;
  height: 4.6153846154vw;
  background-image: url(../img/common/freedial.svg);
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .call {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .call-time {
    margin: 0 1em 0 0;
    font-size: 1vw;
  }
  .call-num a {
    padding-left: 3.0769230769vw;
    font-size: 2.6153846154vw;
  }
  .call-num a:before {
    width: 2.1538461538vw;
    height: 1.3846153846vw;
  }
}
@media screen and (min-width: 1286px) {
  .call-time {
    font-size: 1.3rem;
  }
  .call-num a {
    padding-left: 40px;
    font-size: 3.4rem;
  }
  .call-num a:before {
    width: 28px;
    height: 18px;
  }
}
/*  category
-------------------------------------------------------------------------------*/
.category-ttl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 21.5384615385vw;
  background-color: #E60112;
  border-radius: 1.5384615385vw;
  overflow: hidden;
}
.category-ttl span {
  position: relative;
  color: #ffffff;
  font-size: 5.1282051282vw;
  font-weight: 700;
  z-index: 1;
}
.category-ttl:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5.1282051282vw;
  width: 96.9230769231vw;
  height: 45.641025641vw;
  background-color: #ea2a38;
  border-radius: 50%;
  transform: translateX(-50%);
}

.category-menu {
  margin-top: 6.9230769231vw;
}

.category-menu a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12.8205128205vw 0 2.5641025641vw;
  height: 14.6153846154vw;
  border-bottom-color: #F5E9E9;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
  font-size: 4.6153846154vw;
  font-weight: 700;
}
.category-menu a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5641025641vw;
  display: inline-block;
  width: 2.0512820513vw;
  height: 3.5897435897vw;
  background-image: url(../img/common/arrow-normal-red.svg);
  background-size: contain;
  transform: translateY(-50%);
}

.category-menu a:first-child {
  border-top-color: #F5E9E9;
  border-top-style: solid;
  border-top-width: 0.2564102564vw;
}

.category-menu a.is-current {
  padding-left: 7.6923076923vw;
}
.category-menu a.is-current:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.5641025641vw;
  width: 2.3076923077vw;
  height: 2.3076923077vw;
  background-color: #E60112;
  border-radius: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .category-ttl {
    height: 6.4615384615vw;
    border-radius: 0.4615384615vw;
  }
  .category-ttl span {
    font-size: 1.5384615385vw;
  }
  .category-ttl:before {
    bottom: 1.5384615385vw;
    width: 28.4615384615vw;
    height: 13.6923076923vw;
  }
  .category-menu {
    margin-top: 2.0769230769vw;
  }
  .category-menu a {
    padding: 0 2.3076923077vw 0 0.3846153846vw;
    height: 4.3846153846vw;
    border-bottom-width: 0.0769230769vw;
    font-size: 1.2307692308vw;
    transition: color 0.3s;
  }
  .category-menu a:after {
    right: 0.7692307692vw;
    width: 0.6153846154vw;
    height: 1.0769230769vw;
    transition: transform 0.3s;
  }
  .category-menu a:hover {
    color: #E60112;
  }
  .category-menu a:hover:after {
    transform: translateX(0.1em) translateY(-50%);
  }
  .category-menu a:first-child {
    border-top-width: 0.0769230769vw;
  }
  .category-menu a.is-current {
    padding-left: 2.3076923077vw;
  }
  .category-menu a.is-current:before {
    left: 0.7692307692vw;
    width: 0.6923076923vw;
    height: 0.6923076923vw;
  }
}
@media screen and (min-width: 1286px) {
  .category-ttl {
    height: 84px;
    border-radius: 6px;
  }
  .category-ttl span {
    font-size: 2rem;
  }
  .category-ttl:before {
    bottom: 20px;
    width: 370px;
    height: 178px;
  }
  .category-menu {
    margin-top: 27px;
  }
  .category-menu a {
    padding: 0 30px 0 5px;
    height: 57px;
    border-bottom-width: 1px;
    font-size: 1.6rem;
  }
  .category-menu a:after {
    right: 10px;
    width: 8px;
    height: 14px;
  }
  .category-menu a:first-child {
    border-top-width: 1px;
  }
  .category-menu a.is-current {
    padding-left: 30px;
  }
  .category-menu a.is-current:before {
    left: 10px;
    width: 9px;
    height: 9px;
  }
}
/*  content
-------------------------------------------------------------------------------*/
.content {
  position: relative;
}
.content .caption {
  margin-bottom: 7.6923076923vw;
}
.content p {
  line-height: 2em;
}

.content-mv {
  margin-bottom: 12.8205128205vw;
  border-radius: 1.5384615385vw;
  overflow: hidden;
}

.content-header {
  margin-bottom: 12.8205128205vw;
  padding: 7.6923076923vw;
  background-color: #F9F9F9;
  border-radius: 1.5384615385vw;
}

.content-header-image {
  margin: 0 auto 3.8461538462vw auto;
  width: 41.0256410256vw;
}

.content-header-ttl {
  margin-bottom: 0.7em;
  font-size: 5.1282051282vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.5em;
}

.content-header-text p {
  color: #484848;
  line-height: 1.75em;
}

.content-header-list {
  margin-top: 7.6923076923vw;
}

.content-header-list li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.4em;
}
.content-header-list li:before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background-color: #E60112;
  border-radius: 0.2em;
  color: #E60112;
}

.content-header-list li:nth-child(n+2) {
  margin-top: 1em;
}

.content-header-list li a {
  color: #E60112;
  transition: color 0.3s;
}
.content-header-list li a:hover {
  color: #888888;
}

.content-main > section:nth-child(n+2) {
  margin-top: 25.641025641vw;
}

.content-section {
  margin-top: 17.9487179487vw;
}

.content-block {
  margin-top: 7.6923076923vw;
}

.content-document {
  margin-top: 7.6923076923vw;
  text-align: center;
}

.content-btn {
  margin-top: 7.6923076923vw;
  text-align: center;
}

.content-bnr {
  margin-top: 7.6923076923vw;
}
.content-bnr a {
  display: block;
}

.content-character {
  margin: 10.2564102564vw auto;
  width: 9.2307692308vw;
}

@media screen and (min-width: 768px) {
  .content .caption {
    margin-bottom: 3.8461538462vw;
  }
  .content-mv {
    margin-bottom: 5.3846153846vw;
    border-radius: 0.4615384615vw;
  }
  .content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.8461538462vw;
    padding: 2.3076923077vw;
    border-radius: 0.4615384615vw;
  }
  .content-header-image {
    margin: 0;
    width: 13.8461538462vw;
  }
  .content-header-content {
    width: calc(100% - 16.1538461538vw);
  }
  .content-header-ttl {
    font-size: 1.7692307692vw;
    text-align: left;
  }
  .content-header-list {
    margin-top: 2.3076923077vw;
  }
  .content-main > section:nth-child(n+2) {
    margin-top: 9.2307692308vw;
  }
  .content-section {
    margin-top: 5.3846153846vw;
  }
  .content-block {
    margin-top: 3.0769230769vw;
  }
  .content-comment {
    margin-left: auto;
    margin-right: auto;
    width: 53.8461538462vw;
  }
  .content-document {
    margin-top: 2.3076923077vw;
  }
  .content-btn {
    margin-top: 2.3076923077vw;
  }
  .content-bnr {
    margin: 2.3076923077vw auto 0 auto;
    width: 53.8461538462vw;
  }
  .content-character {
    margin: 3.0769230769vw auto;
    width: 2.7692307692vw;
  }
}
@media screen and (min-width: 1286px) {
  .content .caption {
    margin-bottom: 50px;
  }
  .content-mv {
    margin-bottom: 70px;
    border-radius: 6px;
  }
  .content-header {
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 6px;
  }
  .content-header-image {
    width: 180px;
  }
  .content-header-content {
    width: calc(100% - 210px);
  }
  .content-header-ttl {
    font-size: 2.3rem;
  }
  .content-header-list {
    margin-top: 30px;
  }
  .content-main > section:nth-child(n+2) {
    margin-top: 120px;
  }
  .content-section {
    margin-top: 70px;
  }
  .content-block {
    margin-top: 40px;
  }
  .content-comment {
    width: 700px;
  }
  .content-document {
    margin-top: 30px;
  }
  .content-btn {
    margin-top: 30px;
  }
  .content-bnr {
    margin-top: 30px;
    width: 700px;
  }
  .content-character {
    margin: 40px auto;
    width: 36px;
  }
}
/*  cta
-------------------------------------------------------------------------------*/
.cta {
  position: relative;
  margin: 10.2564102564vw auto 0 auto;
  width: 100%;
}

.cta a {
  position: relative;
  display: block;
  padding: 5.1282051282vw 2.5641025641vw 5.1282051282vw 19.2307692308vw;
  background-color: #ffffff;
  border-color: #E60112;
  border-style: solid;
  border-width: 1.0256410256vw;
  text-align: center;
  pointer-events: none;
}
.cta a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.5641025641vw;
  display: inline-block;
  width: 14.1025641026vw;
  height: 25.641025641vw;
  background-image: url(../img/cta/character.png);
  background-size: contain;
  transform: translateY(-50%);
}

.cta-label {
  margin-bottom: 0.5em;
  font-size: 3.5897435897vw;
  font-weight: 700;
  line-height: 1.2em;
}

.cta-num {
  position: relative;
  display: inline-block;
  padding-left: 8.9743589744vw;
  color: #E60112;
  font-family: "Montserrat", sans-serif;
  font-size: 7.1794871795vw;
  font-weight: 700;
  line-height: 1.23em;
  letter-spacing: 0.05em;
}
.cta-num:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 7.1794871795vw;
  height: 4.6153846154vw;
  background-image: url(../img/common/freedial.svg);
  background-size: contain;
  transform: translateY(-50%);
}

.cta-time {
  margin-top: 0.5em;
  font-size: 3.5897435897vw;
}

@media screen and (min-width: 768px) {
  .cta {
    margin: 4.6153846154vw auto 0 auto;
    width: 53.8461538462vw;
  }
  .cta a {
    padding: 1.5384615385vw 1.5384615385vw 1.5384615385vw 3.0769230769vw;
    border-width: 0.3076923077vw;
  }
  .cta a:before {
    left: 3.0769230769vw;
    width: 4.2307692308vw;
    height: 7.6923076923vw;
  }
  .cta-label {
    font-size: 1.3846153846vw;
  }
  .cta-num {
    padding-left: 4.6153846154vw;
    font-size: 3.9230769231vw;
  }
  .cta-num:before {
    width: 3.2307692308vw;
    height: 2.0769230769vw;
  }
  .cta-time {
    font-size: 1.2307692308vw;
  }
}
@media screen and (min-width: 1286px) {
  .cta {
    margin: 60px auto 0 auto;
    width: 700px;
  }
  .cta a {
    padding: 20px 20px 20px 40px;
    border-style: solid;
  }
  .cta a:before {
    left: 40px;
    width: 55px;
    height: 100px;
  }
  .cta-label {
    font-size: 1.8rem;
  }
  .cta-num {
    padding-left: 60px;
    font-size: 5.1rem;
  }
  .cta-num:before {
    width: 42px;
    height: 27px;
  }
  .cta-time {
    font-size: 1.6rem;
  }
}
/*  drawer
-------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1;
  }
  .drawer.is-open {
    height: 100%;
    min-height: 100vh;
    min-height: 100svh;
    opacity: 1;
    visibility: visible;
  }
  .drawer-scroll {
    position: relative;
    padding: 2.5641025641vw 0 12.8205128205vw 0;
    height: 100%;
    overflow-x: scroll;
  }
  .drawer-scroll:before {
    content: "";
    position: absolute;
    top: 2.5641025641vw;
    left: 50%;
    width: 94.8717948718vw;
    height: 2.0512820513vw;
    background-color: #E60112;
    border-radius: 2.3076923077vw;
    transform: translateX(-50%);
    z-index: 1;
  }
  .drawer-inner {
    margin: 0 auto;
    padding-top: 4.358974359vw;
    width: 89.7435897436vw;
  }
  .drawer-menu {
    margin-bottom: 5.1282051282vw;
    width: 76.9230769231vw;
    font-size: 6.4102564103vw;
    font-weight: 700;
    line-height: 1.44em;
  }
  .drawer .bnr {
    margin-top: 12.8205128205vw;
  }
  .drawer .call {
    margin-top: 12.8205128205vw;
  }
}
@media screen and (min-width: 768px) {
  .drawer {
    display: none !important;
  }
}
/*  gnavi
-------------------------------------------------------------------------------*/
/* ------------------------------------------- navi (SP) - */
@media screen and (max-width: 767px) {
  .navi {
    margin: 7.6923076923vw 0 0 -5.1282051282vw;
    width: 100vw;
  }
  .navi > li {
    position: relative;
    border-top-color: #F5E9E9;
    border-top-style: solid;
    border-top-width: 0.2564102564vw;
  }
  .navi > li:last-child {
    border-bottom-color: #F5E9E9;
    border-bottom-style: solid;
    border-bottom-width: 0.2564102564vw;
  }
  .navi > li > div {
    position: relative;
  }
  .navi > li > div:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5.1282051282vw;
    display: inline-block;
    width: 3.3333333333vw;
    height: 3.3333333333vw;
    background-size: contain;
    background-position: center;
    transform: translateY(-50%);
    z-index: 2;
  }
  .navi-normal:after {
    background-image: url(../img/common/arrow-normal-red.svg);
  }
  .navi-parent:after {
    background-image: url(../img/header/down.svg);
  }
  .navi > li > div:not(.navi-submenu) a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .navi-menu {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 17.9487179487vw 0 5.1282051282vw;
    width: 100%;
    height: 16.4102564103vw;
    font-size: 4.6153846154vw;
    font-weight: 700;
  }
  .navi-menu a {
    pointer-events: none;
  }
  .navi-submenu {
    display: none;
    position: relative;
    padding: 0 7.6923076923vw;
    width: 100%;
    background-color: #F9F9F9;
  }
  .navi-submenu-list li {
    border-bottom-color: #F5E9E9;
    border-bottom-style: solid;
    border-bottom-width: 0.2564102564vw;
  }
  .navi-submenu-list li:last-child {
    border-bottom: none;
  }
  .navi-submenu-list a {
    position: relative;
    display: flex;
    align-items: center;
    height: 16.4102564103vw;
    font-size: 4.1025641026vw;
  }
}
/* ------------------------------------------- navi (PC) - */
@media screen and (min-width: 768px) {
  .navi {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5384615385vw;
  }
  .navi > li {
    position: relative;
    cursor: pointer;
  }
  .navi > li:hover .navi-menu {
    color: #E60112;
  }
  .navi-menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.7692307692vw;
    font-size: 1.3846153846vw;
    font-weight: 700;
    transition: color 0.3s;
  }
  /*
    .navi-parent .navi-menu {
      padding-right: vw-pc(18);
      &:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        display: inline-block;
        width: vw-pc(7);
        height: vw-pc(13);
        background-image: url(../img/common/arrow-normal-red.svg);
        background-size: contain;
        transform: translateY(-50%);
      }
  }
  */
  .navi-parent.is-current .navi-menu:after {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -0.7692307692vw;
    bottom: -0.2307692308vw;
    width: 1.5384615385vw;
    height: 0.1538461538vw;
    background-color: #E60112;
    border-radius: 0.1538461538vw;
    /*      transform: translateX(-50%); */
  }
  .navi-submenu {
    display: none !important;
  }
}
@media screen and (min-width: 1286px) {
  .navi {
    gap: 20px;
  }
  .navi-menu {
    height: 36px;
    font-size: 1.8rem;
  }
  /*
  .navi-parent .navi-menu {
    padding-right: 18px;

    &:before {
      width: 7px;
      height: 13px;
    }
  }
  */
  .navi-parent.is-current .navi-menu:after {
    bottom: -3px;
    margin-left: -10px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
  }
}
/*  heading
-------------------------------------------------------------------------------*/
/* ------------------------------------------- caption - */
.caption {
  position: relative;
}

.caption-jp {
  color: #000000;
  font-size: 6.1538461538vw;
  font-weight: 700;
  line-height: 1.46em;
}

.caption-en {
  margin-top: 0.5em;
  color: #E60112;
  font-family: "Montserrat", sans-serif;
  font-size: 3.8461538462vw;
  line-height: 1.26em;
}

@media screen and (min-width: 768px) {
  .caption-jp {
    font-size: 2.3076923077vw;
  }
  .caption-en {
    font-size: 1.1538461538vw;
  }
}
@media screen and (min-width: 1286px) {
  .caption-jp {
    font-size: 3rem;
  }
  .caption-en {
    font-size: 1.5rem;
  }
}
/* ------------------------------------------- heading - */
.heading-sty01 {
  position: relative;
  font-size: 5.1282051282vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.6em;
}

@media screen and (min-width: 768px) {
  .heading-sty01 {
    font-size: 1.8461538462vw;
  }
}
@media screen and (min-width: 1286px) {
  .heading-sty01 {
    font-size: 2.4rem;
  }
}
/* ------------------------------------------- heading （ボトム赤ライン）- */
.heading-sty02 {
  position: relative;
  margin-bottom: 10.2564102564vw;
  padding-bottom: 3.8461538462vw;
  font-size: 5.1282051282vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.6em;
}
.heading-sty02:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 9.7435897436vw;
  height: 1.0256410256vw;
  border-radius: 0.5128205128vw;
  background-color: #E60112;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .heading-sty02 {
    margin-bottom: 3.0769230769vw;
    padding-bottom: 1.1538461538vw;
    font-size: 1.8461538462vw;
  }
  .heading-sty02:after {
    width: 2.9230769231vw;
    height: 0.3076923077vw;
    border-radius: 0.1538461538vw;
  }
}
@media screen and (min-width: 1286px) {
  .heading-sty02 {
    margin-bottom: 40px;
    padding-bottom: 15px;
    font-size: 2.4rem;
  }
  .heading-sty02:after {
    width: 38px;
    height: 4px;
    border-radius: 2px;
  }
}
/* ------------------------------------------- heading（小さめ） - */
.heading-sty03 {
  position: relative;
  margin-bottom: 1em;
  font-size: 4.6153846154vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.6em;
}

@media screen and (min-width: 768px) {
  .heading-sty03 {
    font-size: 1.5384615385vw;
  }
}
@media screen and (min-width: 1286px) {
  .heading-sty03 {
    font-size: 2rem;
  }
}
/* ------------------------------------------- heading（小さめ） - */
.heading-sty04 {
  position: relative;
  margin-bottom: 1em;
  padding: 0.7em 1em;
  background-color: #E60112;
  color: #ffffff;
  font-size: 4.6153846154vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.6em;
}

@media screen and (min-width: 768px) {
  .heading-sty04 {
    font-size: 2.1538461538vw;
  }
}
@media screen and (min-width: 1286px) {
  .heading-sty04 {
    font-size: 2.8rem;
  }
}
/*  inquiry
-------------------------------------------------------------------------------*/
.inquiry {
  margin: 0 auto;
  width: 89.7435897436vw;
}
.inquiry dt {
  padding: 1.2820512821vw 2.5641025641vw;
  background-color: #E60112;
  border-radius: 1.5384615385vw 1.5384615385vw 0 0;
  color: #ffffff;
  font-size: 4.1025641026vw;
  text-align: center;
  line-height: 1.5em;
}
.inquiry dt span {
  display: block;
  font-size: 4.6153846154vw;
  font-weight: 700;
}
.inquiry dd {
  padding: 2.0512820513vw 2.5641025641vw;
  background-color: #eee;
  border-radius: 0 0 1.5384615385vw 1.5384615385vw;
}

.inquiry-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inquiry-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.1em;
  width: 41.5384615385vw;
  height: 10.2564102564vw;
  border-color: #E60112;
  border-style: solid;
  border-width: 0.2564102564vw;
  border-radius: 5.1282051282vw;
}
.inquiry-btn a span {
  position: relative;
  padding-left: 6.6666666667vw;
  font-size: 4.6153846154vw;
  font-weight: 700;
}
.inquiry-btn a span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 4.1025641026vw;
  height: 4.1025641026vw;
  background-size: contain;
  transform: translateY(-50%);
}

.inquiry-login {
  background-color: #E60112;
}
.inquiry-login span {
  color: #ffffff;
}
.inquiry-login span:before {
  background-image: url(../img/common/login-white.svg);
}

.inquiry-guide {
  background-color: #ffffff;
}
.inquiry-guide span {
  color: #E60112;
}
.inquiry-guide span:before {
  background-image: url(../img/common/note-red.svg);
}

@media screen and (min-width: 768px) {
  .inquiry {
    width: 26.9230769231vw;
  }
  .inquiry dt {
    padding: 0.3846153846vw 0.7692307692vw;
    border-radius: 0.4615384615vw 0.4615384615vw 0 0;
    font-size: 1.2307692308vw;
    transition: padding 0.3s ease;
  }
  .inquiry dt span {
    font-size: 1.3846153846vw;
  }
  .inquiry dd {
    padding: 0.6153846154vw 0.7692307692vw;
    border-radius: 0 0 0.4615384615vw 0.4615384615vw;
    transition: padding 0.3s ease;
  }
  .inquiry-btn a {
    width: 12.4615384615vw;
    height: 3.0769230769vw;
    border-width: 0.0769230769vw;
    border-radius: 1.5384615385vw;
    transition: background-color 0.3s;
  }
  .inquiry-btn a span {
    padding-left: 2vw;
    font-size: 1.3846153846vw;
    transition: color 0.3s;
  }
  .inquiry-btn a span:before {
    width: 1.2307692308vw;
    height: 1.2307692308vw;
    transition: background-image 0.3s;
  }
  ::-webkit-full-page-media,
  :future,
  :root .inquiry-btn a span:before {
    transition: none;
  }
  .inquiry-login:hover {
    background-color: #ffffff;
  }
  .inquiry-login:hover span {
    color: #E60112;
  }
  .inquiry-login:hover span:before {
    background-image: url(../img/common/login-red.svg);
  }
  .inquiry-guide:hover {
    background-color: #E60112;
  }
  .inquiry-guide:hover span {
    color: #ffffff;
  }
  .inquiry-guide:hover span:before {
    background-image: url(../img/common/note-white.svg);
  }
}
@media screen and (min-width: 1286px) {
  .inquiry {
    width: 350px;
  }
  .inquiry dt {
    padding: 5px 10px;
    border-radius: 6px 6px 0 0;
    font-size: 1.6rem;
  }
  .inquiry dt span {
    font-size: 1.8rem;
  }
  .inquiry dd {
    padding: 8px 10px;
    border-radius: 0 0 6px 6px;
  }
  .inquiry-btn a {
    width: 162px;
    height: 40px;
    border-width: 1px;
    border-radius: 20px;
  }
  .inquiry-btn a span {
    padding-left: 26px;
    font-size: 1.8rem;
  }
  .inquiry-btn a span:before {
    width: 16px;
    height: 16px;
  }
}
/*  heading
-------------------------------------------------------------------------------*/
/* ------------------------------------------- number - */
.number-list {
  counter-reset: cnt;
}

.number-list li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.75em;
}

.number-list li:before {
  counter-increment: cnt;
  content: counter(cnt, decimal) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.number-list li:nth-child(n+2) {
  margin-top: 0.75em;
}

/* ------------------------------------------- mark - */
.mark-list li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.8em;
}
.mark-list li:before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  background-color: #333333;
  border-radius: 50%;
}

.mark-list li:nth-child(n+2) {
  margin-top: 0.75em;
}

/*  menu
-------------------------------------------------------------------------------*/
.menu {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 14.1025641026vw;
  gap: 3.8461538462vw 0;
}

.menu a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 20.5128205128vw;
  border-color: #F1E4E1;
  border-style: solid;
  border-width: 1.0256410256vw;
  border-radius: 1.0256410256vw;
  font-size: 4.6153846154vw;
  font-weight: 700;
}
.menu a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4.358974359vw;
  display: inline-block;
  width: 5.641025641vw;
  height: 5.641025641vw;
  background-image: url(../img/common/arrow-circle-red.svg);
  background-size: contain;
  transform: translateY(-50%);
}

.menu--down a:after {
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (min-width: 768px) {
  .menu {
    margin-bottom: 5.3846153846vw;
    gap: 1.5384615385vw 3.0769230769vw;
  }
  .menu a {
    width: 28.4615384615vw;
    height: 6.1538461538vw;
    border-width: 0.3076923077vw;
    border-radius: 0.3076923077vw;
    font-size: 1.3846153846vw;
    transition: background-color 0.3s;
  }
  .menu a:after {
    right: 1.3076923077vw;
    width: 1.6923076923vw;
    height: 1.6923076923vw;
    transition: transform 0.3s;
  }
  .menu a:hover {
    background-color: #F1E4E1;
  }
  .menu a:hover:after {
    transform: translateX(0.1em) translateY(-50%);
  }
  .menu--down a:hover:after {
    transform: translateY(-50%) rotate(90deg) !important;
  }
}
@media screen and (min-width: 1286px) {
  .menu {
    margin-bottom: 70px;
    gap: 20px 40px;
  }
  .menu a {
    width: 370px;
    height: 80px;
    border-width: 4px;
    border-radius: 4px;
    font-size: 1.8rem;
  }
  .menu a:after {
    right: 17px;
    width: 22px;
    height: 22px;
  }
}
/*  tab
-------------------------------------------------------------------------------*/
.tab-menu {
  position: relative;
  margin-bottom: 7.6923076923vw;
  border-bottom-color: #E60112;
  border-bottom-style: solid;
  border-bottom-width: 0.7692307692vw;
}

.tab-menu ul {
  display: flex;
  justify-content: center;
  margin-left: -2.0512820513vw;
}

.tab-menu ul > li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 2.0512820513vw;
  padding-bottom: 0.1em;
  height: 12.8205128205vw;
  background-color: #FFE6E6;
  color: #E60112;
  font-weight: 700;
  text-align: center;
  line-height: 1.3em;
  transition: background-color 0.4s, color 0.4s;
  cursor: pointer;
}

.tab-menu--2 ul > li {
  width: calc(50% - 2.0512820513vw);
  font-size: 4.6153846154vw;
}

.tab-menu--3 ul > li {
  width: calc(33.33333% - 2.0512820513vw);
  font-size: 3.5897435897vw;
}

.tab-menu ul > li.is-active {
  background-color: #E60112;
  color: #ffffff;
}

.tab-content > div {
  display: none;
}

.tab-content > div.is-active {
  display: block;
}

.tab-ttl {
  margin-bottom: 1.5em;
  font-size: 6.1538461538vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.6em;
}

@media screen and (min-width: 768px) {
  .tab-menu {
    margin-bottom: 3.8461538462vw;
    border-bottom-width: 0.2307692308vw;
  }
  .tab-menu ul {
    margin-left: -1.5384615385vw;
  }
  .tab-menu ul > li {
    margin-left: 1.5384615385vw;
    height: 5.3846153846vw;
  }
  .tab-menu--2 ul > li {
    width: calc(50% - 1.5384615385vw);
    font-size: 1.8461538462vw;
  }
  .tab-menu--3 ul > li {
    width: calc(33.33333% - 1.5384615385vw);
    font-size: 1.3846153846vw;
  }
  .tab-ttl {
    font-size: 2.1538461538vw;
  }
}
@media screen and (min-width: 1286px) {
  .tab-menu {
    margin-bottom: 50px;
    border-bottom-width: 3px;
  }
  .tab-menu ul {
    margin-left: -20px;
  }
  .tab-menu ul > li {
    margin-left: 20px;
    height: 70px;
  }
  .tab-menu--2 ul > li {
    width: calc(50% - 20px);
    font-size: 2.4rem;
  }
  .tab-menu--3 ul > li {
    width: calc(33.33333% - 20px);
    font-size: 2rem;
  }
  .tab-ttl {
    font-size: 2.8rem;
  }
}
/* title
-------------------------------------------------------------------------------*/
.title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 7.6923076923vw;
  height: 22.3076923077vw;
  background-color: #F9F9F9;
  border-radius: 1.5384615385vw;
}
.title:before, .title:after {
  content: "";
  position: absolute;
  display: inline-block;
  background-size: contain;
}
.title:before {
  top: 0;
  left: 0;
  width: 28.9743589744vw;
  height: 22.3076923077vw;
  background-image: url(../img/lower/mark_sp.png);
}
.title:after {
  right: 3.8461538462vw;
  bottom: -1.2820512821vw;
  width: 16.1538461538vw;
  height: 26.4102564103vw;
  background-image: url(../img/lower/character.png);
  z-index: 1;
}

.title-name {
  position: relative;
  padding-right: 7.6923076923vw;
  font-size: 5.1282051282vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.5em;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .title {
    margin-bottom: 3.8461538462vw;
    height: 9vw;
    border-radius: 0.4615384615vw;
  }
  .title:before {
    width: 33.9230769231vw;
    height: 9vw;
    background-image: url(../img/lower/mark.png);
  }
  .title:after {
    right: 2.4615384615vw;
    bottom: -2vw;
    width: 8.4615384615vw;
    height: 13.9230769231vw;
  }
  .title-name {
    padding: 0;
    font-size: 2.6923076923vw;
    line-height: 1.6em;
  }
}
@media screen and (min-width: 1286px) {
  .title {
    margin-bottom: 50px;
    height: 117px;
    border-radius: 6px;
  }
  .title:before {
    width: 441px;
    height: 117px;
  }
  .title:after {
    right: 32px;
    bottom: -26px;
    width: 110px;
    height: 181px;
  }
  .title-name {
    font-size: 3.5rem;
  }
}
/*  table
-------------------------------------------------------------------------------*/
.table {
  position: relative;
}

@media screen and (max-width: 767px) {
  .table > div {
    position: relative;
    padding-bottom: 3.8461538462vw;
    overflow-x: scroll;
  }
  .table > div > table {
    width: 200vw;
  }
  .table > div .scroll-hint-icon {
    position: absolute;
    top: 50%;
    left: 33.3333333333vw;
    padding: 0;
    width: 23.0769230769vw;
    height: 23.0769230769vw;
    border-radius: 2.5641025641vw;
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%);
    z-index: 1;
  }
  .table > div .scroll-hint-text {
    display: none;
  }
  .table > div .scroll-hint-icon:before {
    content: none;
  }
  .table > div .scroll-hint-icon:after {
    position: absolute;
    top: 50% !important;
    left: 50%;
    margin: 0;
    width: 12.8205128205vw;
    height: 12.8205128205vw;
    background-image: url(../img/scrollhint/scroll.svg);
    background-size: contain;
    transform: translate(-50%, -50%);
    transition-delay: 0.4s;
  }
}
/*  pagenation
-------------------------------------------------------------------------------*/
.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.0769230769vw;
  margin-top: 17.9487179487vw;
}

.pagenation li:not(.pagenation-prev):not(.pagenation-next) {
  width: 11.5384615385vw;
}

.pagenation li div,
.pagenation li:not(.pagenation-prev):not(.pagenation-next) a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.1em;
  width: 11.5384615385vw;
  height: 11.5384615385vw;
  background-color: #ffffff;
  border-color: #E60112;
  border-style: solid;
  border-width: 0.2564102564vw;
  border-radius: 50%;
  color: #E60112;
  font-size: 4.6153846154vw;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0;
}

.pagenation li.is-current > div {
  background-color: #E60112;
  color: #ffffff;
}

.pagenation-prev,
.pagenation-next {
  width: 4.358974359vw;
  height: 4.358974359vw;
}

.pagenation-prev a,
.pagenation-next a {
  position: relative;
  display: block;
  width: 100%;
  height: 4.358974359vw;
  background-size: contain;
  background-position: center;
}

.pagenation-prev a {
  background-image: url(../img/pagenation/prev-red.svg);
}

.pagenation-next a {
  background-image: url(../img/pagenation/next-red.svg);
}

@media screen and (min-width: 768px) {
  .pagenation {
    gap: 0.9230769231vw;
    margin-top: 5.3846153846vw;
  }
  .pagenation li:not(.pagenation-prev):not(.pagenation-next) {
    width: 3.4615384615vw;
  }
  .pagenation li div,
  .pagenation li:not(.pagenation-prev):not(.pagenation-next) a {
    width: 3.4615384615vw;
    height: 3.4615384615vw;
    border-width: 0.0769230769vw;
    font-size: 1.3846153846vw;
  }
  .pagenation li:not(.pagenation-prev):not(.pagenation-next) a {
    transition: background-color 0.3s, color 0.3s;
  }
  .pagenation li:not(.pagenation-prev):not(.pagenation-next) a:hover {
    background-color: #E60112;
    color: #ffffff;
  }
  .pagenation-prev,
  .pagenation-next {
    width: 1.3076923077vw;
    height: 1.3076923077vw;
  }
  .pagenation-prev a,
  .pagenation-next a {
    height: 1.3076923077vw;
    transition: background-image 0.3s;
  }
  .pagenation-prev a:hover {
    background-image: url(../img/pagenation/prev-gray.svg);
  }
  .pagenation-next a:hover {
    background-image: url(../img/pagenation/next-gray.svg);
  }
  ::-webkit-full-page-media,
  :future,
  :root .pagenation-prev a {
    transition: none;
  }
  ::-webkit-full-page-media,
  :future,
  :root .pagenation-next a {
    transition: none;
  }
}
@media screen and (min-width: 1286px) {
  .pagenation {
    gap: 12px;
    margin-top: 70px;
  }
  .pagenation li:not(.pagenation-prev):not(.pagenation-next) {
    width: 45px;
  }
  .pagenation li div,
  .pagenation li:not(.pagenation-prev):not(.pagenation-next) a {
    width: 45px;
    height: 45px;
    border-width: 1px;
    font-size: 1.8rem;
  }
  .pagenation-prev,
  .pagenation-next {
    width: 17px;
    height: 17px;
  }
  .pagenation-prev a,
  .pagenation-next a {
    height: 17px;
  }
}
/*  pagetop
-------------------------------------------------------------------------------*/
.pagetop {
  position: fixed;
  right: 5.1282051282vw;
  bottom: 10.2564102564vw;
  padding-top: 25.641025641vw;
  z-index: 7777;
  cursor: pointer;
}
.pagetop:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4.4871794872vw;
  display: inline-block;
  width: 16.4102564103vw;
  height: 25.641025641vw;
  background-image: url(../img/footer/character.png);
  background-size: contain;
}

.pagetop-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27.6923076923vw;
  height: 7.1794871795vw;
  background-color: #ffffff;
  border-color: #E60112;
  border-style: solid;
  border-width: 0.2564102564vw;
  border-radius: 3.5897435897vw;
  color: #E60112;
  font-size: 2.8205128205vw;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .pagetop {
    right: 3.2307692308vw;
    bottom: 3.4615384615vw;
    padding-top: 7.6923076923vw;
  }
  .pagetop:after {
    left: 1.3461538462vw;
    width: 4.9230769231vw;
    height: 7.6923076923vw;
  }
  .pagetop-label {
    width: 8.3076923077vw;
    height: 2.1538461538vw;
    border-width: 0.0769230769vw;
    border-radius: 1.0769230769vw;
    font-size: 0.8461538462vw;
    transition: background-color 0.3s, color 0.3s;
  }
  .pagetop:hover .pagetop-label {
    background-color: #E60112;
    color: #ffffff;
  }
}
@media screen and (min-width: 1286px) {
  .pagetop {
    right: 42px;
    bottom: 45px;
    padding-top: 100px;
  }
  .pagetop:after {
    left: 17.5px;
    width: 64px;
    height: 100px;
  }
  .pagetop-label {
    width: 108px;
    height: 28px;
    border-width: 1px;
    border-radius: 14px;
    font-size: 1.1rem;
  }
}
/*  #pickup
-------------------------------------------------------------------------------*/
.pickup {
  display: flex;
  flex-wrap: wrap;
  gap: 5.1282051282vw;
  margin: 7.6923076923vw auto 0 auto;
  width: 66.9230769231vw;
}

.pickup a {
  display: block;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .pickup {
    display: flex;
    gap: 1.3846153846vw;
    margin: 3.8461538462vw auto 0 auto;
    width: 84.4615384615vw;
  }
  .pickup a {
    width: 20.0769230769vw;
  }
}
@media screen and (min-width: 1286px) {
  .pickup {
    gap: 18px;
    margin: 50px auto 0 auto;
    width: 1098px;
  }
  .pickup a {
    width: 261px;
  }
}
/*  post
-------------------------------------------------------------------------------*/
.post-head {
  position: relative;
  margin-bottom: 7.6923076923vw;
  padding-bottom: 5.1282051282vw;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
}

.post-ttl {
  font-size: 6.1538461538vw;
  font-weight: 700;
  line-height: 1.5em;
}

.post-data {
  margin-top: 2.5641025641vw;
  display: flex;
  align-items: center;
}

.post-date {
  font-size: 3.5897435897vw;
}

.post-cat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 5.641025641vw;
  padding: 0 1.5em;
  background-color: #FFE6E6;
  height: 6.1538461538vw;
  border-radius: 3.0769230769vw;
  color: #E60112;
  font-size: 3.0769230769vw;
}

.editor h2 {
  position: relative;
  margin: 12.8205128205vw 0 7.6923076923vw 0;
  font-size: 7.1794871795vw;
  font-weight: 700;
  line-height: 1.5em;
}
.editor h3 {
  position: relative;
  margin: 12.8205128205vw 0 7.6923076923vw 0;
  padding-bottom: 3.8461538462vw;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
  font-size: 6.1538461538vw;
  font-weight: 700;
  line-height: 1.75em;
}
.editor h4,
.editor h5,
.editor h6 {
  position: relative;
  margin: 12.8205128205vw 0 5.1282051282vw 0;
  font-size: 5.1282051282vw;
  font-weight: 700;
  line-height: 1.75em;
}
.editor p {
  line-height: 2em;
}
.editor strong {
  font-weight: 700;
}
.editor .aligncenter {
  margin: 10.2564102564vw 0;
}
.editor .aligncenter,
.editor img {
  max-width: 100%;
  height: auto;
}
.editor .alignleft {
  display: block;
}
.editor .alignright {
  display: block;
}
.editor .aligncenter {
  display: block;
  margin-top: 1.5em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}
.editor .wp-caption-text {
  margin-top: 2.5641025641vw;
  font-size: 3.0769230769vw;
  text-align: center;
  line-height: 1.75em;
}
.editor iframe {
  max-width: 100%;
}
.editor .iframe-wrap {
  position: relative;
  margin: 1.5em 0;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.editor .iframe-wrap iframe,
.editor .iframe-wrap object,
.editor .iframe-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.editor a {
  position: relative;
}
.editor a:not(.editor-lightbox):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 0.2564102564vw;
  background-color: #E60112;
}

@media screen and (max-width: 767px) {
  .editor p {
    font-size: 4.6153846154vw;
  }
  .editor .alignleft,
  .editor .alignright {
    margin: 10.2564102564vw auto;
  }
}
@media screen and (min-width: 768px) {
  .post-head {
    margin-bottom: 3.8461538462vw;
    padding-bottom: 1.5384615385vw;
    border-bottom-width: 0.0769230769vw;
  }
  .post-ttl {
    font-size: 1.8461538462vw;
  }
  .post-data {
    margin-top: 0.7692307692vw;
  }
  .post-date {
    font-size: 1.0769230769vw;
  }
  .post-cat {
    margin-left: 1.6923076923vw;
    height: 1.8461538462vw;
    border-radius: 0.9230769231vw;
    font-size: 0.9230769231vw;
  }
  .editor h2 {
    margin: 6.1538461538vw 0 2.3076923077vw 0;
    font-size: 2.1538461538vw;
  }
  .editor h3 {
    margin: 6.1538461538vw 0 2.3076923077vw 0;
    padding-bottom: 1.1538461538vw;
    border-bottom-width: 0.0769230769vw;
    font-size: 1.8461538462vw;
  }
  .editor h4,
  .editor h5,
  .editor h6 {
    margin: 6.1538461538vw 0 1.5384615385vw 0;
    font-size: 1.5384615385vw;
  }
  .editor .aligncenter {
    margin: 3.8461538462vw 0;
  }
  .editor .alignleft {
    display: inline;
    margin-top: 1em;
    margin-right: 1em;
    margin-bottom: 1em;
    float: left;
  }
  .editor .alignright {
    display: inline;
    margin-top: 1em;
    margin-left: 1em;
    margin-bottom: 1em;
    float: right;
  }
  .editor .wp-caption-text {
    margin-top: 0.7692307692vw;
    font-size: 0.9230769231vw;
  }
  .editor a {
    transition: opacity 0.3s;
  }
  .editor a:hover {
    opacity: 0.8;
  }
  .editor a:not(.editor-lightbox):after {
    height: 0.0769230769vw;
  }
}
@media screen and (min-width: 1286px) {
  .post-head {
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom-width: 1px;
  }
  .post-ttl {
    font-size: 2.4rem;
  }
  .post-data {
    margin-top: 10px;
  }
  .post-date {
    font-size: 1.4rem;
  }
  .post-cat {
    margin-left: 22px;
    height: 24px;
    border-radius: 12px;
    font-size: 1.2rem;
  }
  .editor h2 {
    margin: 80px 0 30px 0;
    font-size: 2.8rem;
  }
  .editor h3 {
    margin: 80px 0 30px 0;
    padding-bottom: 15px;
    border-bottom-width: 1px;
    font-size: 2.4rem;
  }
  .editor h4,
  .editor h5,
  .editor h6 {
    margin: 80px 0 20px 0;
    font-size: 2rem;
  }
  .editor .aligncenter {
    margin: 50px 0;
  }
  .editor .wp-caption-text {
    margin-top: 10px;
    font-size: 1.2rem;
  }
  .editor a:not(.editor-lightbox):after {
    height: 1px;
  }
}
/*  toggle
-------------------------------------------------------------------------------*/
.toggle {
  position: absolute;
  top: 10.2564102564vw;
  right: 5.641025641vw;
  width: 8.2051282051vw;
  height: 10.2564102564vw;
  z-index: 7777;
  cursor: pointer;
}

.header.is-open .toggle,
.header.is-scroll .toggle {
  position: fixed;
}

.toggle span {
  position: absolute;
  left: 50%;
  width: 8.2051282051vw;
  height: 0.2564102564vw;
  background-color: #E60112;
  transition: transform 0.3s;
  transform: translateX(-50%);
  z-index: 2;
}

.toggle span:nth-of-type(1) {
  top: 2.3076923077vw;
}

.toggle span:nth-of-type(2) {
  top: 4.358974359vw;
}

.toggle.is-active span:nth-of-type(1) {
  top: 3.3333333333vw;
  transform: translateX(-50%) rotate(25deg);
}

.toggle.is-active span:nth-of-type(2) {
  top: 3.3333333333vw;
  transform: translateX(-50%) rotate(-25deg);
}

.toggle-text {
  position: absolute;
  left: 50%;
  bottom: 1.2820512821vw;
  color: #E60112;
  font-size: 2.8205128205vw;
  font-weight: 700;
  text-align: center;
  line-height: 1em;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .toggle {
    display: none;
  }
}
/*  #fv
-------------------------------------------------------------------------------*/
.fv {
  margin: 0 auto 6.4102564103vw auto;
  width: 94.8717948718vw;
}

.fv-slide {
  position: relative;
}

.fv-slide .swiper-slide a {
  display: block;
  border-radius: 7.6923076923vw;
  overflow: hidden;
}

.fv-pagination {
  bottom: auto !important;
  display: flex;
  align-items: center;
  gap: 2.5641025641vw;
  margin: 5.1282051282vw auto 0 auto;
  width: 84.6153846154vw !important;
}

.fv-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 2.5641025641vw;
  height: 2.5641025641vw;
  background-color: #CCCCCC;
  border-radius: 0.5128205128vw;
  transition: background-color 0.3s;
  opacity: 1;
}

.fv-pagination .swiper-pagination-bullet-active {
  background-color: #E60112;
  border-radius: 50% !important;
}

.fv-prev,
.fv-next {
  position: absolute;
  top: 50%;
  display: none;
  width: 20.5128205128vw;
  height: 20.5128205128vw;
  background-image: url(../img/fv/arrow-red.svg);
  background-size: contain;
  z-index: 2;
  cursor: pointer;
}

.fv-prev {
  transform: translateY(-50%) rotateY(180deg);
}

.fv-next {
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .fv {
    margin: 0 auto 1.5384615385vw auto;
    width: 92.3076923077vw;
  }
  .fv-slide .swiper-slide a {
    border-radius: 2.3076923077vw;
  }
  .fv-pagination {
    gap: 0.7692307692vw;
    margin-top: 1.5384615385vw;
    width: 89.8461538462vw !important;
  }
  .fv-pagination .swiper-pagination-bullet {
    width: 0.7692307692vw;
    height: 0.7692307692vw;
    border-radius: 0.1538461538vw;
  }
  .fv-prev,
  .fv-next {
    display: block;
    width: 2.4615384615vw;
    height: 2.4615384615vw;
    transition: background-image 0.3s;
  }
  .fv-prev:hover,
  .fv-next:hover {
    background-image: url(../img/fv/arrow-gray.svg);
  }
  .fv-prev {
    left: -1.2307692308vw;
  }
  .fv-next {
    right: -1.2307692308vw;
  }
  ::-webkit-full-page-media,
  :future,
  :root .fv-prev {
    transition: none;
  }
  ::-webkit-full-page-media,
  :future,
  :root .fv-next {
    transition: none;
  }
}
@media screen and (min-width: 1286px) {
  .fv {
    margin: 0 auto 20px auto;
    width: 1200px;
  }
  .fv-slide .swiper-slide a {
    border-radius: 30px;
  }
  .fv-pagination {
    gap: 10px;
    margin-top: 20px;
    width: 1168px !important;
  }
  .fv-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 2px;
  }
  .fv-prev,
  .fv-next {
    width: 32px;
    height: 32px;
  }
  .fv-prev {
    left: -16px;
  }
  .fv-next {
    right: -16px;
  }
}
/*  #news
-------------------------------------------------------------------------------*/
.news {
  position: relative;
  margin-top: 5.1282051282vw;
  padding: 12.8205128205vw 0;
}

.news-inner {
  margin: 0 auto;
  width: 89.7435897436vw;
}

.news-head {
  margin-bottom: 10.2564102564vw;
}

.news-menu {
  position: relative;
  display: flex;
  gap: 0 2.5641025641vw;
  margin-bottom: 8.9743589744vw;
}

.news-menu > li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5em 0.1em 1.5em;
  min-width: 22.0512820513vw;
  height: 10.2564102564vw;
  background-color: #FFE6E6;
  border-radius: 5.1282051282vw;
  color: #E60112;
  font-size: 4.1025641026vw;
  cursor: pointer;
  z-index: 1;
}

.news-menu > li.is-active {
  background-color: #E60112;
  color: #ffffff;
  font-weight: 700;
}

.news-tabcontent > div {
  display: none;
}

.news-tabcontent > div.is-active {
  display: block;
}

@media screen and (max-width: 767px) {
  .news-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .news-menu {
    padding: 2.5641025641vw 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .news-menu li {
    flex: 0 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .news {
    position: relative;
    margin-top: 4.6153846154vw;
    padding: 6.9230769231vw 0;
  }
  .news-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 84.6153846154vw;
  }
  .news-head {
    margin: 0;
    width: 15.3846153846vw;
  }
  .news-content {
    width: 58.4615384615vw;
  }
  .news-menu {
    flex-wrap: wrap;
    gap: 0.7692307692vw;
    margin-bottom: 3.0769230769vw;
  }
  .news-menu > li {
    min-width: 6.6153846154vw;
    height: 3.0769230769vw;
    border-radius: 1.5384615385vw;
    font-size: 1.2307692308vw;
    transition: background-color 0.3s, color 0.3s;
  }
  .news-menu > li:hover {
    background-color: #484848;
    color: #ffffff;
  }
  .news-btn {
    margin-top: 3.8461538462vw;
  }
}
@media screen and (min-width: 1286px) {
  .news {
    margin-top: 60px;
    padding: 90px 0;
  }
  .news-inner {
    width: 1100px;
  }
  .news-head {
    width: 200px;
  }
  .news-content {
    width: 760px;
  }
  .news-menu {
    gap: 10px;
    margin-bottom: 40px;
  }
  .news-menu > li {
    min-width: 86px;
    height: 40px;
    border-radius: 20px;
    font-size: 1.6rem;
  }
  .news-btn {
    margin-top: 50px;
  }
}
/*  #product
-------------------------------------------------------------------------------*/
.product {
  position: relative;
  margin-top: 7.6923076923vw;
  padding: 12.8205128205vw 0;
}
.product .caption {
  margin-bottom: 7.6923076923vw;
  text-align: center;
}

.product-inner {
  margin: 0 auto;
  width: 89.7435897436vw;
}

.product-menu {
  position: relative;
}

.product-menu a {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 15.3846153846vw;
  height: 17.9487179487vw;
}
.product-menu a span {
  font-size: 4.6153846154vw;
  font-weight: 700;
  line-height: 1.45em;
}
.product-menu a:before, .product-menu a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0.2564102564vw;
}
.product-menu a:before {
  width: 100%;
  background-color: #DDDDDD;
}
.product-menu a:after {
  width: 12.8205128205vw;
  background-color: #E60112;
  z-index: 1;
}

.product-menu-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 5.641025641vw;
  height: 5.641025641vw;
  background-image: url(../img/common/arrow-circle-red.svg);
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .product {
    margin-top: 2.3076923077vw;
    padding: 3.8461538462vw 0;
  }
  .product .caption {
    margin-bottom: 3.8461538462vw;
  }
  .product-inner {
    width: 84.6153846154vw;
  }
  .product-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7692307692vw 1.9230769231vw;
    padding-bottom: 1.5384615385vw;
    border-bottom-color: #DDDDDD;
    border-bottom-style: solid;
    border-bottom-width: 0.0769230769vw;
  }
  .product-menu a {
    padding-right: 4.6153846154vw;
    width: 26.9230769231vw;
    height: 5.3846153846vw;
  }
  .product-menu a span {
    font-size: 1.5384615385vw;
  }
  .product-menu a:before, .product-menu a:after {
    height: 0.0769230769vw;
  }
  .product-menu a:after {
    width: 3.8461538462vw;
    transition: width 0.3s;
  }
  .product-menu-arrow {
    width: 1.6923076923vw;
    height: 1.6923076923vw;
    transition: background-image 0.3s;
  }
  .product-menu a:hover:after {
    width: 100%;
  }
  .product-menu a:hover .product-menu-arrow {
    background-image: url(../img/common/arrow-circle-gray.svg);
  }
  ::-webkit-full-page-media,
  :future,
  :root .product-menu-arrow {
    transition: none;
  }
}
@media screen and (min-width: 1286px) {
  .product {
    margin-top: 50px;
    padding: 50px 0;
  }
  .product:after {
    right: 50px;
    width: 499px;
    height: 155px;
  }
  .product .caption {
    margin-bottom: 50px;
  }
  .product-inner {
    width: 1100px;
  }
  .product-menu {
    gap: 10px 25px;
    padding-bottom: 20px;
    border-bottom-width: 1px;
  }
  .product-menu a {
    padding-right: 60px;
    width: 350px;
    height: 70px;
  }
  .product-menu a span {
    font-size: 2rem;
  }
  .product-menu a:before, .product-menu a:after {
    height: 1px;
  }
  .product-menu a:after {
    width: 50px;
  }
  .product-menu-arrow {
    width: 22px;
    height: 22px;
  }
}
/*  #recruit
-------------------------------------------------------------------------------*/
.recruit-bnr {
  margin: 0 auto;
  width: 89.7435897436vw;
}

.recruit-bnr a {
  display: block;
}

@media screen and (min-width: 768px) {
  .recruit-bnr {
    width: 76.9230769231vw;
  }
}
@media screen and (min-width: 1286px) {
  .recruit-bnr {
    width: 1000px;
  }
}
/*  #shop
-------------------------------------------------------------------------------*/
.shop {
  position: relative;
  margin: 7.6923076923vw auto 0 auto;
  padding: 12.8205128205vw 0 41.0256410256vw 0;
  width: 100%;
  background-color: #F9F9F9;
  border-radius: 2.5641025641vw;
}
.shop:after {
  content: "";
  position: absolute;
  right: 5.1282051282vw;
  bottom: 0;
  display: inline-block;
  width: 89.7435897436vw;
  height: 27.9487179487vw;
  background-image: url(../img/shop/balloon.png);
  background-size: contain;
}
.shop .caption {
  margin-bottom: 12.8205128205vw;
  text-align: center;
}

.shop-inner {
  margin: 0 auto;
  width: 89.7435897436vw;
}

.shop-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 5.1282051282vw 0;
}

.shop-list a {
  position: relative;
  display: block;
  padding: 5.1282051282vw 5.641025641vw 11.5384615385vw 5.641025641vw;
  width: 100%;
  background-color: #ffffff;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 0.2564102564vw;
  border-radius: 2.5641025641vw;
}
.shop-list a:after {
  content: "";
  position: absolute;
  right: 2.5641025641vw;
  bottom: 2.5641025641vw;
  display: inline-block;
  width: 8.7179487179vw;
  height: 8.7179487179vw;
  background-image: url(../img/common/arrow-circle-red.svg);
  background-size: contain;
}

.shop-list-name {
  margin-bottom: 0.5em;
  font-size: 5.1282051282vw;
  font-weight: 700;
  line-height: 1.5em;
}

.shop-list-add {
  position: relative;
  padding-left: 5.1282051282vw;
  font-size: 3.5897435897vw;
  line-height: 1.5em;
}
.shop-list-add:before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  display: inline-block;
  width: 3.3333333333vw;
  height: 4.6153846154vw;
  background-image: url(../img/shop/pin.svg);
  background-size: contain;
}

.shop-list-tel {
  position: relative;
  margin-top: 2.5641025641vw;
  padding-left: 5.1282051282vw;
  font-family: "Montserrat", sans-serif;
  font-size: 3.5897435897vw;
  font-weight: 700;
  line-height: 1.64em;
}
.shop-list-tel:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 3.0769230769vw;
  height: 3.8461538462vw;
  background-image: url(../img/shop/tel.svg);
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .shop {
    margin-top: 3.8461538462vw;
    padding: 5.3846153846vw 0 14.6153846154vw 0;
    width: 92.3076923077vw;
    border-radius: 0.7692307692vw;
  }
  .shop:after {
    right: 3.8461538462vw;
    width: 38.3846153846vw;
    height: 11.9230769231vw;
    background-image: url(../img/shop/balloon.png);
  }
  .shop .caption {
    margin-bottom: 3.8461538462vw;
  }
  .shop-inner {
    width: 84.6153846154vw;
  }
  .shop-list {
    gap: 2.3076923077vw 0.9230769231vw;
  }
  .shop-list a {
    padding: 1.5384615385vw 1.5384615385vw 5.3846153846vw 1.5384615385vw;
    width: 20.4615384615vw;
    border-width: 0.0769230769vw;
    border-radius: 0.7692307692vw;
    transition: background-color 0.3s;
  }
  .shop-list a:after {
    right: 0.7692307692vw;
    bottom: 0.7692307692vw;
    width: 2.6153846154vw;
    height: 2.6153846154vw;
    transition: background-image 0.3s, transform 0.3s;
  }
  .shop-list a:hover {
    background-color: rgba(255, 230, 230, 0.5);
  }
  .shop-list a:hover:after {
    background-image: url(../img/common/arrow-circle-gray.svg);
    transform: translateX(0.1em);
  }
  ::-webkit-full-page-media,
  :future,
  :root .shop-list a:after {
    transition: transform 0.3s;
  }
  .shop-list-name {
    font-size: 1.8461538462vw;
  }
  .shop-list-add {
    padding-left: 1.3846153846vw;
    font-size: 1.0769230769vw;
  }
  .shop-list-add:before {
    width: 1vw;
    height: 1.3846153846vw;
  }
  .shop-list-tel {
    margin-top: 0.7692307692vw;
    padding-left: 1.3846153846vw;
    font-size: 1.0769230769vw;
  }
  .shop-list-tel:before {
    width: 0.9230769231vw;
    height: 1.1538461538vw;
  }
}
@media screen and (min-width: 1286px) {
  .shop {
    margin-top: 50px;
    padding: 70px 0 190px 0;
    width: 1200px;
    border-radius: 10px;
  }
  .shop:after {
    right: 50px;
    width: 499px;
    height: 155px;
  }
  .shop .caption {
    margin-bottom: 50px;
  }
  .shop-inner {
    width: 1100px;
  }
  .shop-list {
    gap: 30px 12px;
  }
  .shop-list a {
    padding: 20px 20px 70px 20px;
    width: 266px;
    border-width: 1px;
    border-radius: 10px;
  }
  .shop-list a:after {
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
  }
  .shop-list-name {
    font-size: 2.4rem;
  }
  .shop-list-add {
    padding-left: 18px;
    font-size: 1.4rem;
  }
  .shop-list-add:before {
    width: 13px;
    height: 18px;
  }
  .shop-list-tel {
    margin-top: 10px;
    padding-left: 18px;
    font-size: 1.4rem;
  }
  .shop-list-tel:before {
    width: 12px;
    height: 15px;
  }
}
/*  #update
-------------------------------------------------------------------------------*/
.update {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 2.5641025641vw 5.1282051282vw 2.5641025641vw 2.5641025641vw;
  width: 94.8717948718vw;
  border-color: #FF7F00;
  border-style: solid;
  border-width: 0.2564102564vw;
  border-radius: 2.5641025641vw;
}

.update-ttl {
  position: relative;
  margin-bottom: 2.0512820513vw;
  padding-left: 11.0256410256vw;
  width: 30.7692307692vw;
  color: #FF7F00;
  font-size: 3.5897435897vw;
  font-weight: 700;
}
.update-ttl:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 8.7179487179vw;
  height: 8.7179487179vw;
  background-image: url(../img/update/icon.svg);
  background-size: contain;
  transform: translateY(-50%);
}

.update-list {
  width: 57.6923076923vw;
}

.update-list li a {
  position: relative;
  display: inline-block;
  text-decoration: underline;
}

.update-list-ttl {
  position: relative;
  height: 2.92em;
  font-size: 3.3333333333vw;
  font-weight: 400;
  line-height: 1.46em;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 768px) {
  .update {
    padding: 0 2.3076923077vw 0 0.6153846154vw;
    width: 61.5384615385vw;
    height: 3.4615384615vw;
    border-width: 0.0769230769vw;
    border-radius: 1.7692307692vw;
  }
  .update-ttl {
    margin: 0;
    padding-left: 3.3076923077vw;
    width: 12.6923076923vw;
    font-size: 1.3846153846vw;
  }
  .update-ttl:before {
    width: 2.6153846154vw;
    height: 2.6153846154vw;
  }
  .update-list {
    width: calc(100% - 12.6923076923vw);
  }
  .update-list li a {
    transition: color 0.3s;
  }
  .update-list li a:hover {
    color: #FF7F00;
  }
  .update-list-ttl {
    height: 1.46em;
    font-size: 1.2307692308vw;
    -webkit-line-clamp: 1;
  }
}
@media screen and (min-width: 1286px) {
  .update {
    padding: 0 30px 0 8px;
    width: 800px;
    height: 45px;
    border-width: 1px;
    border-radius: 23px;
  }
  .update-ttl {
    margin: 0;
    padding-left: 43px;
    width: 165px;
    font-size: 1.8rem;
  }
  .update-ttl:before {
    width: 34px;
    height: 34px;
  }
  .update-list {
    width: calc(100% - 165px);
  }
  .update-list-ttl {
    font-size: 1.6rem;
  }
}
/* lower --> account
-------------------------------------------------------------------------------*/
/* ------------------------------------------- open - */
.accout-open {
  margin-top: 12.8205128205vw;
}

.account-step > li:nth-child(n+2) {
  margin-top: 12.8205128205vw;
}

.account-step-head {
  margin-bottom: 5.1282051282vw;
}

.account-step-icon {
  margin: 0 auto 2.5641025641vw auto;
  width: 10.2564102564vw;
}

.account-step-ttl {
  font-size: 4.6153846154vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.5em;
}

.account-required > li {
  padding-left: 1em;
  font-size: 3.8461538462vw;
  text-indent: -1em;
  line-height: 1.75em;
}
.account-required > li:before {
  content: "・";
}

.account-required > li:nth-child(n+2) {
  margin-top: 0.75em;
}

.account-step .desc {
  font-size: 3.8461538462vw;
  font-weight: 700;
}

.accout-open-image {
  margin-top: 7.6923076923vw;
}

@media screen and (min-width: 768px) {
  .accout-open {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 3.8461538462vw;
  }
  .accout-open-content {
    width: 41.5384615385vw;
  }
  .account-step > li:nth-child(n+2) {
    margin-top: 3.8461538462vw;
  }
  .account-step-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5384615385vw;
  }
  .account-step-icon {
    margin: 0;
    width: 3.0769230769vw;
  }
  .account-step-ttl {
    width: calc(100% - 4.6153846154vw);
    font-size: 1.3846153846vw;
    text-align: left;
  }
  .account-required > li {
    font-size: 1.2307692308vw;
  }
  .account-required > li:nth-child(n+2) {
    margin-top: 0.75em;
  }
  .account-step .desc {
    font-size: 1.2307692308vw;
  }
  .accout-open-image {
    margin: 0;
    width: 15.3846153846vw;
  }
}
@media screen and (min-width: 1286px) {
  .accout-open {
    margin-top: 50px;
  }
  .accout-open-content {
    width: 540px;
  }
  .account-step > li:nth-child(n+2) {
    margin-top: 50px;
  }
  .account-step-head {
    margin-bottom: 20px;
  }
  .account-step-icon {
    width: 40px;
  }
  .account-step-ttl {
    width: calc(100% - 60px);
    font-size: 1.8rem;
  }
  .account-required > li {
    font-size: 1.6rem;
  }
  .account-step .desc {
    font-size: 1.6rem;
  }
  .accout-open-image {
    width: 200px;
  }
}
/* ------------------------------------------- type - */
.accout-type > li:nth-child(n+2) {
  margin-top: 12.8205128205vw;
}

.accout-type-notes {
  margin-top: 7.6923076923vw;
  padding: 5.1282051282vw;
  background-color: #F9F9F9;
  border-radius: 1.5384615385vw;
}

.accout-type-notes > li {
  padding-left: 1em;
  font-size: 3.8461538462vw;
  font-weight: 700;
  text-indent: -1em;
  line-height: 2em;
}
.accout-type-notes > li:before {
  content: "※";
}

.accout-type-notes > li:nth-child(n+2) {
  margin-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .accout-type > li:nth-child(n+2) {
    margin-top: 3.8461538462vw;
  }
  .accout-type-notes {
    margin-top: 2.3076923077vw;
    padding: 2.3076923077vw;
    border-radius: 0.4615384615vw;
  }
  .accout-type-notes > li {
    font-size: 1.2307692308vw;
  }
}
@media screen and (min-width: 1286px) {
  .accout-type > li:nth-child(n+2) {
    margin-top: 50px;
  }
  .accout-type-notes {
    margin-top: 30px;
    padding: 30px;
    border-radius: 6px;
  }
  .accout-type-notes > li {
    font-size: 1.6rem;
  }
}
/* lower --> active_investment
-------------------------------------------------------------------------------*/
.investment-merit {
  margin-top: 12.8205128205vw;
}
.investment-merit > div:nth-child(n+2) {
  margin-top: 25.641025641vw;
}

.investment-dollcost .heading-sty01 {
  margin-bottom: 1em;
}

.investment-image {
  margin: 7.6923076923vw auto 0 auto;
  width: 100%;
}

.investment-handling {
  margin: 7.6923076923vw auto 0 auto;
  width: 100%;
}
.investment-handling dl:nth-child(n+2) {
  margin-top: 1em;
}
.investment-handling dt {
  padding: 0.5em 1em;
  width: 100%;
  background-color: #E60112;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.75em;
}
.investment-handling dd {
  padding: 0.5em 1em;
  width: 100%;
  line-height: 1.75em;
}

@media screen and (min-width: 768px) {
  .investment-merit {
    margin-top: 3.8461538462vw;
  }
  .investment-merit > div:nth-child(n+2) {
    margin-top: 7.6923076923vw;
  }
  .investment-image {
    margin: 2.3076923077vw auto 0 auto;
    width: 50vw;
  }
  .investment-handling {
    margin: 2.3076923077vw auto 0 auto;
    width: 46.1538461538vw;
    border-color: #333333;
    border-style: solid;
    border-width: 0.0769230769vw;
  }
  .investment-handling dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom-color: #333333;
    border-bottom-style: solid;
    border-bottom-width: 0.0769230769vw;
  }
  .investment-handling dl:nth-child(n+2) {
    margin-top: 0;
  }
  .investment-handling dl:last-child {
    border-bottom: none;
  }
  .investment-handling dt {
    margin: 0;
    width: 10.7692307692vw;
  }
  .investment-handling dd {
    width: calc(100% - 10.7692307692vw);
    border-left-color: #333333;
    border-left-style: solid;
    border-left-width: 0.0769230769vw;
  }
}
@media screen and (min-width: 1286px) {
  .investment-merit {
    margin-top: 50px;
  }
  .investment-merit > div:nth-child(n+2) {
    margin-top: 100px;
  }
  .investment-image {
    margin: 30px auto 0 auto;
    width: 650px;
  }
  .investment-handling {
    margin: 30px auto 0 auto;
    width: 600px;
    border-width: 1px;
  }
  .investment-handling dl {
    border-bottom-width: 1px;
  }
  .investment-handling dt {
    width: 140px;
  }
  .investment-handling dd {
    width: calc(100% - 140px);
    border-left-width: 1px;
  }
}
/* lower --> bonds
-------------------------------------------------------------------------------*/
/* ------------------------------------------- merit - */
.bonds-merit-image {
  margin: 0 auto 3.8461538462vw auto;
  width: 76.9230769231vw;
}

@media screen and (min-width: 768px) {
  .bonds-merit {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .bonds-merit-image {
    margin: 0;
    width: 23.0769230769vw;
  }
  .bonds-merit-content {
    width: 36.9230769231vw;
  }
}
@media screen and (min-width: 1286px) {
  .bonds-merit-image {
    width: 300px;
  }
  .bonds-merit-content {
    width: 480px;
  }
}
/* ------------------------------------------- tax - */
.bonds-tax > div {
  padding: 5.1282051282vw;
  background-color: #F9F9F9;
  border-radius: 1.5384615385vw;
}

.bonds-tax > div:nth-child(n+2) {
  margin-top: 3.8461538462vw;
}

@media screen and (min-width: 768px) {
  .bonds-tax > div {
    padding: 1.9230769231vw 1.5384615385vw;
    border-radius: 0.4615384615vw;
  }
  .bonds-tax > div:nth-child(n+2) {
    margin-top: 2.3076923077vw;
  }
}
@media screen and (min-width: 1286px) {
  .bonds-tax > div {
    padding: 25px 20px;
    border-radius: 6px;
  }
  .bonds-tax > div:nth-child(n+2) {
    margin-top: 30px;
  }
}
/* lower --> business_plan
-------------------------------------------------------------------------------*/
.business-plan-ttl {
  margin-bottom: 12.8205128205vw;
}

@media screen and (min-width: 768px) {
  .business-plan-ttl {
    margin-bottom: 3.8461538462vw;
  }
}
@media screen and (min-width: 1286px) {
  .business-plan-ttl {
    margin-bottom: 50px;
  }
}
/* lower --> contract_notes
-------------------------------------------------------------------------------*/
.issuance-document .table {
  margin-top: 7.6923076923vw;
}

.document-table {
  width: 100%;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 0.2564102564vw;
}

.document-table th,
.document-table td {
  padding: 1em;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 0.2564102564vw;
  font-size: 4.1025641026vw;
  text-align: left;
  line-height: 1.75em;
}

.document-table thead th {
  background-color: #F9F9F9;
  font-weight: 700;
}

.document-table-label {
  width: 97.4358974359vw;
}

.document-table-content {
  width: calc(100% - 92.3076923077vw);
}

@media screen and (max-width: 767px) {
  .document-table {
    width: 174.358974359vw !important;
  }
}
@media screen and (min-width: 768px) {
  .issuance-document .table {
    margin-top: 2.3076923077vw;
  }
  .document-table {
    border-width: 0.0769230769vw;
  }
  .document-table th,
  .document-table td {
    border-width: 0.0769230769vw;
    font-size: 1.2307692308vw;
  }
  .document-table-label {
    width: 30.7692307692vw;
  }
  .document-table-content {
    width: calc(100% - 30.7692307692vw);
  }
  .document-table-content a {
    transition: color 0.3s;
  }
  .document-table-content a:hover {
    color: #E60112;
  }
}
@media screen and (min-width: 1286px) {
  .issuance-document .table {
    margin-top: 30px;
  }
  .document-table {
    border-width: 1px;
  }
  .document-table th,
  .document-table td {
    border-width: 1px;
    font-size: 1.6rem;
  }
  .document-table-label {
    width: 400px;
  }
  .document-table-content {
    width: calc(100% - 400px);
  }
}
/* lower --> first_qa
-------------------------------------------------------------------------------*/
.qa-item {
  position: relative;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
}

.qa-item dt {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5.8974358974vw 5.1282051282vw 5.8974358974vw 11.5384615385vw;
  font-size: 4.6153846154vw;
  font-weight: 700;
  line-height: 1.35em;
}

.qa-item dt:hover {
  cursor: pointer;
}

.qa-item dt:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 3.8461538462vw;
  height: 2.0512820513vw;
  background-image: url(../img/common/down-red.svg);
  background-size: 100%;
  background-position: center;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.qa-item dt.is-open:after {
  transform: translateY(-50%) rotateX(180deg);
}

.qa-item dd {
  display: none;
  position: relative;
  margin-bottom: 1em;
  padding: 5.8974358974vw 0 5.8974358974vw 11.5384615385vw;
  font-size: 4.1025641026vw;
  line-height: 1.75em;
}
.qa-item dd:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.2564102564vw;
  background-color: #DDDDDD;
}

.qa-item.is-open .qa-item dd {
  display: block;
}

.qa-item dt:before,
.qa-item dd:before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  width: 7.6923076923vw;
  height: 7.6923076923vw;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 4.1025641026vw;
  font-weight: 700;
  letter-spacing: 0;
  z-index: 1;
}

.qa-item dt:before {
  content: "Q";
  top: 3.8461538462vw;
  background-color: #E60112;
  color: #ffffff;
}

.qa-item dd:before {
  content: "A";
  top: 4.358974359vw;
  background-color: #565656;
  color: #ffffff;
}

.qa-btn {
  margin-top: 7.6923076923vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5641025641vw 0;
}

.qa-bnr {
  margin: 7.6923076923vw auto 0 auto;
  width: 66.9230769231vw;
}

@media screen and (max-width: 767px) {
  .qa-btn .btn-box {
    display: flex;
    padding: 0 2.5641025641vw 0 0;
    width: 100%;
  }
  .qa-btn .btn-box:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.5641025641vw;
    display: inline-block;
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    background-image: url(../img/common/arrow-circle-red.svg);
    background-size: contain;
    transform: translateY(-50%);
  }
  .qa-btn .btn-box span {
    padding: 0 0 0.1em 0;
  }
  .qa-btn .btn-box span:after {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .qa-item {
    border-bottom-width: 0.0769230769vw;
  }
  .qa-item dt {
    display: flex;
    align-items: center;
    padding: 1.7692307692vw 5vw 1.7692307692vw 5.3846153846vw;
    font-size: 1.3846153846vw;
    line-height: 1.66em;
  }
  .qa-item dt:before {
    top: 1.1538461538vw;
  }
  .qa-item dt:after {
    right: 1.5384615385vw;
    width: 1.1538461538vw;
    height: 0.6153846154vw;
  }
  .qa-item dd {
    padding: 1.7692307692vw 2.3076923077vw 1.7692307692vw 5.3846153846vw;
    font-size: 1.2307692308vw;
  }
  .qa-item dd:after {
    height: 0.0769230769vw;
  }
  .qa-item dt:before,
  .qa-item dd:before {
    left: 1.1538461538vw;
    width: 3.0769230769vw;
    height: 3.0769230769vw;
    font-size: 1.5384615385vw;
  }
  .qa-item dd:before {
    top: 1.3076923077vw;
  }
  .qa-btn {
    margin-top: 2.3076923077vw;
    gap: 0.7692307692vw 1.1538461538vw;
  }
  .qa-bnr {
    margin: 2.3076923077vw auto 0 auto;
    width: 20vw;
  }
}
@media screen and (min-width: 1286px) {
  .qa-item {
    border-bottom-width: 1px;
  }
  .qa-item dt {
    padding: 23px 65px 23px 70px;
    font-size: 1.8rem;
  }
  .qa-item dt:before {
    top: 15px;
  }
  .qa-item dt:after {
    right: 20px;
    width: 15px;
    height: 8px;
  }
  .qa-item dd {
    padding: 23px 30px 23px 70px;
    font-size: 1.6rem;
  }
  .qa-item dd:after {
    height: 1px;
  }
  .qa-item dt:before,
  .qa-item dd:before {
    left: 15px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  .qa-item dd:before {
    top: 17px;
  }
  .qa-btn {
    margin-top: 30px;
    gap: 10px 15px;
  }
  .qa-btn .btn-box {
    padding: 0 20px;
  }
  .qa-bnr {
    margin: 30px auto 0 auto;
    width: 261px;
  }
}
/* lower --> first_toushi
-------------------------------------------------------------------------------*/
.first-toushi .heading-sty01 {
  margin: 2.5em 0 1.5em 0;
}
.first-toushi .pickup {
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

/* lower --> history
-------------------------------------------------------------------------------*/
.history dl {
  padding: 1em 0;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
}
.history dl:first-child {
  border-top-color: #DDDDDD;
  border-top-style: solid;
  border-top-width: 0.2564102564vw;
}
.history dt {
  margin-bottom: 0.5em;
  width: 100%;
  font-weight: 700;
  line-height: 1.75em;
}
.history dd {
  width: 100%;
  line-height: 1.75em;
}

@media screen and (min-width: 768px) {
  .history dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1em 0;
    border-bottom-width: 0.0769230769vw;
  }
  .history dl:first-child {
    border-top-width: 0.0769230769vw;
  }
  .history dt {
    margin: 0;
    padding: 0 1em;
    width: 19.2307692308vw;
    line-height: 2em;
  }
  .history dd {
    width: calc(100% - 22.3076923077vw);
    line-height: 2em;
  }
}
@media screen and (min-width: 1286px) {
  .history dl {
    border-bottom-width: 1px;
  }
  .history dl:first-child {
    border-top-width: 1px;
  }
  .history dt {
    width: 250px;
  }
  .history dd {
    width: calc(100% - 290px);
  }
}
/* lower --> investment_trust
-------------------------------------------------------------------------------*/
.nomuramrf > div:nth-child(n+2) {
  margin-top: 12.8205128205vw;
}
.nomuramrf .heading-sty01 {
  margin-bottom: 1em;
}

.nomuramrf-ttl {
  margin-bottom: 1em;
  color: #888888;
  font-size: 5.1282051282vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.46em;
}

.nomuramrf-feature {
  margin-bottom: 7.6923076923vw;
}

.nomuramrf-feature > li {
  position: relative;
  padding-left: 1.5em;
  color: #484848;
  font-weight: 700;
  line-height: 1.8em;
}
.nomuramrf-feature > li:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background-color: #484848;
  border-radius: 3px;
}

.nomuramrf-feature > li:nth-child(n+2) {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .nomuramrf > div:nth-child(n+2) {
    margin-top: 7.6923076923vw;
  }
  .nomuramrf-ttl {
    font-size: 1.5384615385vw;
  }
  .nomuramrf-feature {
    margin-bottom: 2.3076923077vw;
  }
  .nomuramrf-feature > li:before {
    border-radius: 0.2307692308vw;
  }
}
@media screen and (min-width: 1286px) {
  .nomuramrf > div:nth-child(n+2) {
    margin-top: 100px;
  }
  .nomuramrf-ttl {
    font-size: 2rem;
  }
  .nomuramrf-feature {
    margin-bottom: 30px;
  }
  .nomuramrf-feature > li:before {
    border-radius: 3px;
  }
}
/* lower --> life_stage
-------------------------------------------------------------------------------*/
.lifestage {
  margin-top: 12.8205128205vw;
}

.lifestage > li:nth-child(n+2) {
  margin-top: 15.3846153846vw;
}

.lifestage-voice-icon {
  margin: 0 auto 3.8461538462vw auto;
  width: 23.0769230769vw;
}

.lifestage-head {
  margin-bottom: 3.8461538462vw;
  padding-bottom: 2.5641025641vw;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
  text-align: center;
}

.lifestage-num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.7em;
  padding: 0 1em;
  height: 7.6923076923vw;
  background-color: #E60112;
  border-radius: 3.8461538462vw;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 4.1025641026vw;
  font-weight: 700;
  line-height: 1em;
}

.lifestage-ttl {
  margin-bottom: 0.3em;
  font-size: 5.1282051282vw;
  font-weight: 700;
  line-height: 1.6em;
}

.lifestage-data {
  color: #888888;
  font-weight: 700;
}

.lifestage-recommend {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 7.6923076923vw;
  padding: 5.1282051282vw 5.1282051282vw 5.1282051282vw 17.9487179487vw;
  min-height: 130px;
  background-color: #F9F9F9;
  border-radius: 1.5384615385vw;
}
.lifestage-recommend p a {
  color: #E60112;
  text-decoration: underline;
  transition: color 0.3s;
}
.lifestage-recommend p a:hover {
  color: #484848;
}
.lifestage-recommend:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  margin-bottom: 1.2820512821vw;
  width: 17.9487179487vw;
  height: 17.9487179487vw;
  background-image: url(../img/life_stage/icon.webp);
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .lifestage {
    margin-top: 5.3846153846vw;
  }
  .lifestage > li:nth-child(n+2) {
    margin-top: 6.1538461538vw;
  }
  .lifestage-voice {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .lifestage-voice-icon {
    margin: 0;
    width: 6.9230769231vw;
  }
  .lifestage-voice-content {
    width: 50.7692307692vw;
  }
  .lifestage-head {
    margin-bottom: 1.1538461538vw;
    padding-bottom: 0.7692307692vw;
    border-bottom-width: 0.0769230769vw;
    text-align: left;
  }
  .lifestage-num {
    height: 2.3076923077vw;
    border-radius: 1.1538461538vw;
    font-size: 1.2307692308vw;
  }
  .lifestage-ttl {
    font-size: 1.8461538462vw;
  }
  .lifestage-recommend {
    margin-top: 2.3076923077vw;
    padding: 1.1538461538vw 2.3076923077vw 1.1538461538vw 8.8461538462vw;
    min-height: 10vw;
    border-radius: 0.4615384615vw;
  }
  .lifestage-recommend p a {
    transition: color 0.3s;
  }
  .lifestage-recommend p a:hover {
    color: #484848;
  }
  .lifestage-recommend:before {
    left: 0.7692307692vw;
    margin-bottom: 0.3846153846vw;
    width: 6.9230769231vw;
    height: 6.9230769231vw;
  }
}
@media screen and (min-width: 1286px) {
  .lifestage {
    margin-top: 70px;
  }
  .lifestage > li:nth-child(n+2) {
    margin-top: 80px;
  }
  .lifestage-voice-icon {
    width: 90px;
  }
  .lifestage-voice-content {
    width: 660px;
  }
  .lifestage-head {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom-width: 1px;
  }
  .lifestage-num {
    height: 30px;
    border-radius: 15px;
    font-size: 1.6rem;
  }
  .lifestage-ttl {
    font-size: 2.4rem;
  }
  .lifestage-recommend {
    margin-top: 30px;
    padding: 15px 30px 15px 115px;
    min-height: 130px;
    border-radius: 6px;
  }
  .lifestage-recommend:before {
    left: 10px;
    margin-bottom: 5px;
    width: 90px;
    height: 90px;
  }
}
/* lower --> message
-------------------------------------------------------------------------------*/
.message-ceo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12.8205128205vw 0 0 auto;
  width: 100%;
}

.message-ceo-content {
  width: 51.2820512821vw;
  text-align: right;
}
.message-ceo-content p:nth-child(n+2) {
  margin-top: 1em;
}

.message-ceo-image {
  margin-left: 7.6923076923vw;
  width: 41.0256410256vw;
}

@media screen and (min-width: 768px) {
  .message-ceo {
    margin-top: 3.8461538462vw;
    width: 30.7692307692vw;
  }
  .message-ceo-content {
    width: 15.3846153846vw;
  }
  .message-ceo-image {
    margin-left: 3.0769230769vw;
    width: 12.3076923077vw;
  }
}
@media screen and (min-width: 1286px) {
  .message-ceo {
    margin-top: 50px;
    width: 400px;
  }
  .message-ceo-content {
    width: 200px;
  }
  .message-ceo-image {
    margin-left: 40px;
    width: 160px;
  }
}
/* lower --> price
-------------------------------------------------------------------------------*/
/* ------------------------------------------- mv - */
.price-mv {
  margin-bottom: 12.8205128205vw;
  background-image: url(../img/price/bg.webp);
  background-size: cover;
  background-position: center;
  border-radius: 1.5384615385vw;
}

@media screen and (min-width: 768px) {
  .price-mv {
    margin-bottom: 3.8461538462vw;
    padding: 1.5384615385vw 0 0 1.5384615385vw;
    border-radius: 0.4615384615vw;
  }
}
@media screen and (min-width: 1286px) {
  .price-mv {
    margin-bottom: 50px;
    padding: 20px 0 0 20px;
    border-radius: 6px;
  }
}
/* ------------------------------------------- menu - */
.price-menu {
  display: flex;
  justify-content: space-between;
  margin: 10.2564102564vw auto 0 auto;
  width: 100%;
}

.price-menu a {
  display: block;
  width: 43.5897435897vw;
}

@media screen and (min-width: 768px) {
  .price-menu {
    margin-top: 4.6153846154vw;
    width: 43.0769230769vw;
  }
  .price-menu a {
    width: 20vw;
  }
  .price-menu a img {
    transform: scale(1);
    transition: 0.3s ease-in-out;
  }
}
@media screen and (min-width: 1286px) {
  .price-menu {
    margin-top: 60px;
    width: 560px;
  }
  .price-menu a {
    width: 260px;
  }
  .price-menu a:hover img {
    transform: scale(1.05);
  }
}
/* ------------------------------------------- point - */
.price-point-head {
  margin-bottom: 3.8461538462vw;
}

.price-point-ttl {
  margin: 0 auto;
  width: 51.2820512821vw;
}

.price-desc {
  position: relative;
  padding: 5.1282051282vw;
  background-color: #F9F9F9;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 0.2564102564vw;
  border-top: none;
}
.price-desc:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.2820512821vw;
  background-color: #E60112;
}
.price-desc p {
  color: #E60112;
  text-align: center;
  font-weight: 700;
}

.price-outline {
  margin: 3.8461538462vw 0;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 0.2564102564vw;
}
.price-outline dl {
  background-color: #ffffff;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
}
.price-outline dl:last-child {
  border-bottom: none;
}
.price-outline dt {
  padding: 0.5em 1em;
  width: 100%;
  background-color: #eee;
  font-weight: 700;
  line-height: 1.75em;
}
.price-outline dd {
  padding: 0.7em 1em;
  width: 100%;
  line-height: 1.75em;
}
.price-outline dd ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.price-outline dd ul li:before {
  content: "・";
}
.price-outline dd ul li:nth-child(n+2) {
  margin-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .price-point-head {
    margin-bottom: 2.3076923077vw;
  }
  .price-point-ttl {
    width: 20vw;
  }
  .price-desc {
    padding: 1.9230769231vw 1.5384615385vw;
    border-width: 0.0769230769vw;
  }
  .price-desc:before {
    height: 0.3846153846vw;
  }
  .price-outline {
    margin: 1.5384615385vw 0;
    border-width: 0.0769230769vw;
  }
  .price-outline dl {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-bottom-width: 0.0769230769vw;
  }
  .price-outline dt {
    display: flex;
    align-items: center;
    padding: 1em;
    width: 12.3076923077vw;
    font-size: 1.2307692308vw;
  }
  .price-outline dd {
    padding: 1em 2em;
    width: calc(100% - 20vw);
    border-left-color: #DDDDDD;
    border-left-style: solid;
    border-left-width: 0.0769230769vw;
    font-size: 1.2307692308vw;
  }
}
@media screen and (min-width: 1286px) {
  .price-point-head {
    margin-bottom: 30px;
  }
  .price-point-ttl {
    width: 260px;
  }
  .price-desc {
    padding: 25px 20px;
    border-width: 1px;
  }
  .price-desc:before {
    height: 5px;
  }
  .price-outline {
    margin: 20px 0;
    border-width: 1px;
  }
  .price-outline dl {
    border-bottom-width: 1px;
  }
  .price-outline dt {
    width: 160px;
    font-size: 1.6rem;
  }
  .price-outline dd {
    width: calc(100% - 160px);
    border-left-width: 1px;
    font-size: 1.6rem;
  }
}
/* lower --> profile
-------------------------------------------------------------------------------*/
.profile dl {
  padding: 1em 0;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
}
.profile dl:first-child {
  border-top-color: #DDDDDD;
  border-top-style: solid;
  border-top-width: 0.2564102564vw;
}
.profile dt {
  margin-bottom: 0.5em;
  width: 100%;
  font-weight: 700;
  line-height: 1.75em;
}
.profile dd {
  width: 100%;
  line-height: 1.75em;
}

@media screen and (min-width: 768px) {
  .profile dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1em 0;
    border-bottom-width: 0.0769230769vw;
  }
  .profile dl:first-child {
    border-top-width: 0.0769230769vw;
  }
  .profile dt {
    margin: 0;
    padding: 0 1em;
    width: 13.8461538462vw;
    line-height: 2em;
  }
  .profile dd {
    width: calc(100% - 16.9230769231vw);
    line-height: 2em;
  }
}
@media screen and (min-width: 1286px) {
  .profile dl {
    border-bottom-width: 1px;
  }
  .profile dl:first-child {
    border-top-width: 1px;
  }
  .profile dt {
    width: 180px;
  }
  .profile dd {
    width: calc(100% - 220px);
  }
}
/* lower --> shop_list
-------------------------------------------------------------------------------*/
.shoplist-image {
  margin-bottom: 7.6923076923vw;
  border-radius: 1.5384615385vw;
  overflow: hidden;
}

.shoplist-ttl {
  margin-bottom: 0.7em;
  font-size: 6.1538461538vw;
  font-weight: 700;
  line-height: 1.75em;
}

.shoplist-data > dl {
  padding: 1em;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
}
.shoplist-data > dl > dt {
  margin-bottom: 0.5em;
  width: 100%;
  font-weight: 700;
  line-height: 1.75em;
}
.shoplist-data > dl > dd {
  width: 100%;
  line-height: 1.75em;
}
.shoplist-data > dl > dd > dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5em;
  padding: 0.2em 1em;
  width: 100%;
  font-weight: 700;
  background-color: #F9F9F9;
  border-radius: 0.5128205128vw;
  line-height: 1.75em;
}
.shoplist-data > dl > dd > dl dd {
  width: 100%;
  line-height: 1.75em;
}
.shoplist-data > dl > dd > dl:nth-child(n+2) {
  margin-top: 1em;
}
.shoplist-data > dl:first-child {
  border-top-color: #DDDDDD;
  border-top-style: solid;
  border-top-width: 0.2564102564vw;
}

.shoplist-map {
  margin-top: 7.6923076923vw;
}
.shoplist-map .ggmap {
  padding-bottom: 60%;
}

.shoplist-sub {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20.5128205128vw;
  gap: 20.5128205128vw 0;
}
.shoplist-sub > li {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .shoplist-image {
    margin-bottom: 2.3076923077vw;
    border-radius: 0.4615384615vw;
  }
  .shoplist-ttl {
    font-size: 1.8461538462vw;
  }
  .shoplist-data > dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1em;
    border-bottom-width: 0.0769230769vw;
  }
  .shoplist-data > dl > dt {
    margin: 0;
    width: 10vw;
  }
  .shoplist-data > dl > dd {
    width: calc(100% - 13.0769230769vw);
  }
  .shoplist-data > dl > dd > dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .shoplist-data > dl > dd > dl dt {
    margin: 0;
    width: 6em;
    border-radius: 0.1538461538vw;
  }
  .shoplist-data > dl > dd > dl dd {
    width: calc(100% - 7em);
  }
  .shoplist-data > dl > dd > dl:nth-child(n+2) {
    margin-top: 0.5em;
  }
  .shoplist-data > dl:first-child {
    border-top-width: 0.0769230769vw;
  }
  .shoplist-map {
    margin-top: 2.3076923077vw;
  }
  .shoplist-map .ggmap {
    padding-bottom: 35%;
  }
  .shoplist-sub {
    margin-top: 6.1538461538vw;
    gap: 6.1538461538vw 3.0769230769vw;
  }
  .shoplist-sub > li {
    width: 28.4615384615vw;
  }
  .shoplist-sub .shoplist-data dl {
    display: block;
    padding: 0.5em 1em;
  }
  .shoplist-sub .shoplist-data dt {
    margin-bottom: 0.3em;
    width: 100%;
  }
  .shoplist-sub .shoplist-data dd {
    width: 100%;
  }
  .shoplist-sub .ggmap {
    padding-bottom: 60%;
  }
}
@media screen and (min-width: 1286px) {
  .shoplist-image {
    margin-bottom: 30px;
    border-radius: 6px;
  }
  .shoplist-ttl {
    font-size: 2.4rem;
  }
  .shoplist-data > dl {
    border-bottom-width: 1px;
  }
  .shoplist-data > dl > dt {
    width: 130px;
  }
  .shoplist-data > dl > dd {
    width: calc(100% - 170px);
  }
  .shoplist-data > dl > dd > dl dt {
    border-radius: 2px;
  }
  .shoplist-data > dl:first-child {
    border-top-width: 1px;
  }
  .shoplist-map {
    margin-top: 30px;
  }
  .shoplist-sub {
    margin-top: 80px;
    gap: 80px 40px;
  }
  .shoplist-sub > li {
    width: 370px;
  }
}
/* lower --> sozoku_zoyo
-------------------------------------------------------------------------------*/
.sozoku-flow > li {
  padding: 7.6923076923vw;
  background-color: #F9F9F9;
  border-radius: 1.5384615385vw;
}

.sozoku-flow > li:nth-child(n+2) {
  margin-top: 12.8205128205vw;
}

.sozoku-flow-head {
  margin-bottom: 3.8461538462vw;
}

.sozoku-flow-num {
  margin: 0 auto 2.5641025641vw auto;
  width: 12.8205128205vw;
}

.sozoku-flow-ttl {
  font-size: 5.641025641vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.46em;
}

.sozoku-flow-image {
  margin: 0 auto 3.8461538462vw auto;
  width: 59.7435897436vw;
}

@media screen and (min-width: 768px) {
  .sozoku-flow > li {
    padding: 1.5384615385vw 2.3076923077vw 2.3076923077vw 2.3076923077vw;
    border-radius: 0.4615384615vw;
  }
  .sozoku-flow > li:nth-child(n+2) {
    margin-top: 3.8461538462vw;
  }
  .sozoku-flow-head {
    display: flex;
    align-items: center;
    margin-bottom: 1.1538461538vw;
  }
  .sozoku-flow-num {
    margin: 0 1.5384615385vw 0 0;
    width: 3.8461538462vw;
  }
  .sozoku-flow-ttl {
    font-size: 1.8461538462vw;
    text-align: left;
  }
  .sozoku-flow-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sozoku-flow-image {
    margin: 0;
    width: 17.9230769231vw;
  }
  .sozoku-flow-content {
    width: 35.3846153846vw;
  }
}
@media screen and (min-width: 1286px) {
  .sozoku-flow > li {
    padding: 20px 30px 30px 30px;
    border-radius: 6px;
  }
  .sozoku-flow > li:nth-child(n+2) {
    margin-top: 50px;
  }
  .sozoku-flow-head {
    margin-bottom: 15px;
  }
  .sozoku-flow-num {
    margin-right: 20px;
    width: 50px;
  }
  .sozoku-flow-ttl {
    font-size: 2.4rem;
  }
  .sozoku-flow-image {
    width: 233px;
  }
  .sozoku-flow-content {
    width: 460px;
  }
}
/* lower --> stock
-------------------------------------------------------------------------------*/
.stock {
  margin-top: 12.8205128205vw;
}

.stock-box {
  padding: 7.6923076923vw 5.1282051282vw;
  background-color: #F9F9F9;
  border-radius: 1.5384615385vw;
}

.stock .stock-box:nth-child(n+2) {
  margin-top: 12.8205128205vw;
}

.stock-box-num {
  margin-bottom: 0.3em;
  color: #E60112;
  font-family: "Montserrat", sans-serif;
  font-size: 6.1538461538vw;
  font-weight: 700;
  text-align: center;
}

.stock-box-ttl {
  margin-bottom: 1em;
  color: #888888;
  font-size: 4.1025641026vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.45em;
}
.stock-box-ttl span {
  display: inline-block;
  margin-bottom: 0.5em;
  color: #333333;
  font-size: 6.1538461538vw;
}

.stock-data {
  margin-top: 12.8205128205vw;
}
.stock-data dl {
  padding: 1em 0;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
}
.stock-data dl:first-child {
  border-top-color: #DDDDDD;
  border-top-style: solid;
  border-top-width: 0.2564102564vw;
}
.stock-data dt {
  margin-bottom: 0.5em;
  width: 100%;
  font-weight: 700;
  line-height: 1.75em;
}
.stock-data dd {
  width: 100%;
  line-height: 1.75em;
}

@media screen and (min-width: 768px) {
  .stock {
    margin-top: 3.8461538462vw;
  }
  .stock-box {
    padding: 2.3076923077vw 3.8461538462vw;
    border-radius: 0.4615384615vw;
  }
  .stock .stock-box:nth-child(n+2) {
    margin-top: 3.8461538462vw;
  }
  .stock-box-num {
    font-size: 1.8461538462vw;
  }
  .stock-box-ttl {
    font-size: 1.3846153846vw;
  }
  .stock-box-ttl span {
    font-size: 1.8461538462vw;
  }
  .stock-data {
    margin-top: 3.8461538462vw;
  }
  .stock-data dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom-width: 0.0769230769vw;
  }
  .stock-data dl:first-child {
    border-top-width: 0.0769230769vw;
  }
  .stock-data dt {
    margin: 0;
    width: 10.7692307692vw;
  }
  .stock-data dd {
    width: calc(100% - 13.0769230769vw);
  }
}
@media screen and (min-width: 1286px) {
  .stock {
    margin-top: 50px;
  }
  .stock-box {
    padding: 30px 50px;
    border-radius: 6px;
  }
  .stock .stock-box:nth-child(n+2) {
    margin-top: 50px;
  }
  .stock-box-num {
    font-size: 2.4rem;
  }
  .stock-box-ttl {
    font-size: 1.8rem;
  }
  .stock-box-ttl span {
    font-size: 2.4rem;
  }
  .stock-data {
    margin-top: 50px;
  }
  .stock-data dl {
    border-bottom-width: 1px;
  }
  .stock-data dl:first-child {
    border-top-width: 1px;
  }
  .stock-data dt {
    width: 140px;
  }
  .stock-data dd {
    width: calc(100% - 170px);
  }
}
/* lower --> unlisted_stock
-------------------------------------------------------------------------------*/
.stock-handled {
  width: 100%;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 0.2564102564vw;
}

.stock-handled th,
.stock-handled td {
  padding: 1em;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 0.2564102564vw;
  font-size: 4.1025641026vw;
  text-align: left;
  line-height: 1.75em;
}

.stock-handled thead th {
  background-color: #F9F9F9;
}

.stock-handled th {
  font-weight: 700;
}

.stock-handled-label {
  width: 80.7692307692vw;
}

.stock-handled-content {
  width: calc(100% - 80.7692307692vw);
}

@media screen and (min-width: 768px) {
  .stock-handled {
    border-width: 0.0769230769vw;
  }
  .stock-handled th,
  .stock-handled td {
    border-width: 0.0769230769vw;
    font-size: 1.2307692308vw;
  }
  .stock-handled-label {
    width: 24.2307692308vw;
  }
  .stock-handled-content {
    width: calc(100% - 24.2307692308vw);
  }
  .stock-handled-content a {
    transition: color 0.3s;
  }
  .stock-handled-content a:hover {
    color: #E60112;
  }
}
@media screen and (min-width: 1286px) {
  .stock-handled {
    border-width: 1px;
  }
  .stock-handled th,
  .stock-handled td {
    border-width: 1px;
    font-size: 1.6rem;
  }
  .stock-handled-label {
    width: 315px;
  }
  .stock-handled-content {
    width: calc(100% - 315px);
  }
}
/* lower --> vision
-------------------------------------------------------------------------------*/
.vision-philosophy-text,
.vision-policy-text {
  position: relative;
  text-align: center;
}
.vision-philosophy-text p,
.vision-policy-text p {
  position: relative;
  display: inline-block;
  padding: 0 2em;
  line-height: 2em;
}
.vision-philosophy-text p:before, .vision-philosophy-text p:after,
.vision-policy-text p:before,
.vision-policy-text p:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1em;
  height: 0.2564102564vw;
  background-color: #333333;
  transform: translateY(-50%);
}
.vision-philosophy-text p:before,
.vision-policy-text p:before {
  left: 0;
}
.vision-philosophy-text p:after,
.vision-policy-text p:after {
  right: 0;
}

.vision-philosophy-text {
  margin-top: 7.6923076923vw;
}

.vision-policy-text {
  margin-top: 12.8205128205vw;
}

@media screen and (min-width: 768px) {
  .vision-philosophy-text p,
  .vision-policy-text p {
    padding: 0 1.5em;
  }
  .vision-philosophy-text p:before, .vision-philosophy-text p:after,
  .vision-policy-text p:before,
  .vision-policy-text p:after {
    height: 0.0769230769vw;
  }
  .vision-philosophy-text {
    margin-top: 2.3076923077vw;
  }
  .vision-policy-text {
    margin-top: 3.8461538462vw;
    text-align: right;
  }
}
@media screen and (min-width: 1286px) {
  .vision-philosophy-text p:before, .vision-philosophy-text p:after,
  .vision-policy-text p:before,
  .vision-policy-text p:after {
    height: 1px;
  }
  .vision-philosophy-text {
    margin-top: 30px;
  }
  .vision-policy-text {
    margin-top: 50px;
  }
}
/* lower --> recruit
-------------------------------------------------------------------------------*/
/* ------------------------------------------- step - */
.recruit-step {
  margin-top: 17.9487179487vw;
}

.recruit-step > li {
  position: relative;
  padding: 10.2564102564vw 5.1282051282vw 5.1282051282vw 5.1282051282vw;
  background-color: #F9F9F9;
  border-radius: 1.5384615385vw;
}

.recruit-step > li:nth-child(n+2) {
  margin-top: 15.3846153846vw;
}

.recruit-step-num {
  position: absolute;
  top: -5.1282051282vw;
  left: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5em;
  padding: 0 1em;
  height: 10.2564102564vw;
  background-color: #E60112;
  border-radius: 5.1282051282vw;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transform: translateX(-50%);
}

.recruit-step-text p {
  line-height: 1.75em;
}
.recruit-step-text p:nth-child(n+2) {
  margin-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .recruit-step {
    margin-top: 5.3846153846vw;
  }
  .recruit-step > li {
    padding: 3.0769230769vw 1.5384615385vw 1.5384615385vw 1.5384615385vw;
    border-radius: 0.4615384615vw;
    text-align: center;
  }
  .recruit-step > li:nth-child(n+2) {
    margin-top: 3.8461538462vw;
  }
  .recruit-step-num {
    top: -1.5384615385vw;
    height: 3.0769230769vw;
    border-radius: 1.5384615385vw;
  }
}
@media screen and (min-width: 1286px) {
  .recruit-step {
    margin-top: 70px;
  }
  .recruit-step > li {
    padding: 40px 20px 20px 20px;
    border-radius: 6px;
  }
  .recruit-step > li:nth-child(n+2) {
    margin-top: 50px;
  }
  .recruit-step-num {
    top: -20px;
    height: 40px;
    border-radius: 20px;
  }
}
/* ------------------------------------------- job - */
.recruit-Job > dl {
  padding: 1em 0;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
}
.recruit-Job > dl > dt {
  margin-bottom: 0.5em;
  width: 100%;
  font-weight: 700;
  line-height: 1.75em;
}
.recruit-Job > dl > dd {
  width: 100%;
  line-height: 1.75em;
}
.recruit-Job > dl > dd p {
  line-height: 1.75em;
}
.recruit-Job > dl > dd dl dt {
  display: inline-block;
  margin-bottom: 0.2em;
  padding: 0.4em 1em 0.5em 1em;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 1px;
  background-color: #F9F9F9;
  border-radius: 0.2em;
  font-weight: 700;
  line-height: 1em;
}
.recruit-Job > dl:first-child {
  border-top-color: #DDDDDD;
  border-top-style: solid;
  border-top-width: 0.2564102564vw;
}
.recruit-Job ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.recruit-Job ul li:before {
  content: "・";
}

.recruit-Job-block {
  margin-top: 1em;
}

.recruit-Job-block > dl:nth-child(n+2) {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .recruit-Job > dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1em 0;
    border-bottom-width: 0.0769230769vw;
  }
  .recruit-Job > dl > dt {
    margin: 0;
    padding: 0 1em;
    width: 13.8461538462vw;
  }
  .recruit-Job > dl > dd {
    width: calc(100% - 16.9230769231vw);
  }
  .recruit-Job dl:first-child {
    border-top-width: 0.0769230769vw;
  }
}
@media screen and (min-width: 1286px) {
  .recruit-Job > dl {
    border-bottom-width: 1px;
  }
  .recruit-Job > dl > dt {
    width: 140px;
  }
  .recruit-Job > dl > dd {
    width: calc(100% - 180px);
  }
  .recruit-Job dl:first-child {
    border-top-width: 1px;
  }
}
/* ------------------------------------------- result - */
.recruit-result {
  margin-top: 3.8461538462vw;
  width: 100%;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 0.2564102564vw;
}

.recruit-result th,
.recruit-result td {
  padding: 0.5em 1em 0.6em 1em;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 0.2564102564vw;
  text-align: center;
  line-height: 1em;
}

.recruit-result thead {
  background-color: #F9F9F9;
  font-weight: 700;
}

.recruit-result-label {
  width: 30.7692307692vw;
}

.recruit-result-content {
  width: calc((100% - 30.7692307692vw) / 2);
}

@media screen and (min-width: 768px) {
  .recruit-result {
    margin-top: 1.1538461538vw;
    border-width: 0.0769230769vw;
  }
  .recruit-result th,
  .recruit-result td {
    border-width: 0.0769230769vw;
  }
  .recruit-result-label {
    width: 15.3846153846vw;
  }
  .recruit-result-content {
    width: calc((100% - 15.3846153846vw) / 2);
  }
}
@media screen and (min-width: 1286px) {
  .recruit-result {
    margin-top: 15px;
    border-width: 1px;
  }
  .recruit-result th,
  .recruit-result td {
    border-width: 1px;
  }
  .recruit-result-label {
    width: 200px;
  }
  .recruit-result-content {
    width: calc((100% - 200px) / 2);
  }
}
/* ------------------------------------------- apply - */
.recruit-apply {
  text-align: center;
}
.recruit-apply p:nth-child(2) {
  margin-top: 1em;
}
.recruit-apply a {
  display: inline-block;
  color: #E60112;
}

@media screen and (min-width: 768px) {
  .recruit-apply a {
    transition: color 0.3s;
  }
  .recruit-apply a:hover {
    color: #484848;
  }
  .recruit-apply-tel {
    pointer-events: none;
  }
}
/* lower --> ikan
-------------------------------------------------------------------------------*/
/* -------------------------------------------  - */
.ikan-step {
  margin-top: 12.8205128205vw;
}

.ikan-step > li {
  position: relative;
  padding: 12.8205128205vw 5.1282051282vw 5.1282051282vw 5.1282051282vw;
  background-color: #F9F9F9;
}

.ikan-step > li:nth-child(n+2) {
  margin-top: 12.8205128205vw;
}

.ikan-step-num {
  position: absolute;
  top: -7.6923076923vw;
  left: 50%;
  width: 12.8205128205vw;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .ikan-step {
    margin-top: 5.3846153846vw;
  }
  .ikan-step > li {
    padding: 3.8461538462vw 2.3076923077vw 2.3076923077vw 2.3076923077vw;
  }
  .ikan-step > li:nth-child(n+2) {
    margin-top: 3.8461538462vw;
  }
  .ikan-step-num {
    top: -2.3076923077vw;
    width: 3.8461538462vw;
  }
}
@media screen and (min-width: 1286px) {
  .ikan-step {
    margin-top: 70px;
  }
  .ikan-step > li {
    padding: 50px 30px 30px 30px;
  }
  .ikan-step > li:nth-child(n+2) {
    margin-top: 50px;
  }
  .ikan-step-num {
    top: -30px;
    width: 50px;
  }
}
/* ------------------------------------------- data - */
.ikan-data {
  margin: 3.8461538462vw 0;
  border-color: #DDDDDD;
  border-style: solid;
  border-width: 0.2564102564vw;
}
.ikan-data dl {
  background-color: #ffffff;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
}
.ikan-data dl:last-child {
  border-bottom: none;
}
.ikan-data dt {
  padding: 0.5em 1em;
  width: 100%;
  background-color: #eee;
  font-weight: 700;
  line-height: 1.75em;
}
.ikan-data dd {
  padding: 0.7em 1em;
  width: 100%;
  line-height: 1.75em;
}

@media screen and (min-width: 768px) {
  .ikan-data {
    margin: 1.5384615385vw 0;
    border-width: 0.0769230769vw;
  }
  .ikan-data dl {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-bottom-width: 0.0769230769vw;
  }
  .ikan-data dt {
    display: flex;
    align-items: center;
    padding: 1em;
    width: 17.6923076923vw;
    font-size: 1.2307692308vw;
  }
  .ikan-data dd {
    padding: 1em 2em;
    width: calc(100% - 17.6923076923vw);
    border-left-color: #DDDDDD;
    border-left-style: solid;
    border-left-width: 0.0769230769vw;
    font-size: 1.2307692308vw;
  }
}
@media screen and (min-width: 1286px) {
  .ikan-data {
    margin: 20px 0;
    border-width: 1px;
  }
  .ikan-data dl {
    border-bottom-width: 1px;
  }
  .ikan-data dt {
    width: 230px;
    font-size: 1.6rem;
  }
  .ikan-data dd {
    width: calc(100% - 230px);
    border-left-width: 1px;
    font-size: 1.6rem;
  }
}
/*  news
-------------------------------------------------------------------------------*/
.news-post .c-news:first-child {
  border-top-color: #DDDDDD;
  border-top-style: solid;
  border-top-width: 0.2564102564vw;
}

.c-news {
  position: relative;
  border-bottom-color: #DDDDDD;
  border-bottom-style: solid;
  border-bottom-width: 0.2564102564vw;
}

.c-news a {
  position: relative;
  display: block;
  padding: 6.4102564103vw 11.5384615385vw 6.4102564103vw 0;
}
.c-news a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 5.641025641vw;
  height: 5.641025641vw;
  background-image: url(../img/common/arrow-circle-red.svg);
  background-size: contain;
  transform: translateY(-50%);
}

.c-news-head {
  display: flex;
  align-items: center;
  margin-bottom: 2.5641025641vw;
}

.c-news-date {
  font-size: 3.5897435897vw;
}

.c-news-cat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 6.1538461538vw;
  padding: 0 1.5em;
  background-color: #FFE6E6;
  height: 6.1538461538vw;
  border-radius: 3.0769230769vw;
  color: #E60112;
  font-size: 3.0769230769vw;
}

.c-news-ttl {
  max-height: 3em;
  font-size: 3.5897435897vw;
  font-weight: 700;
  line-height: 1.5em;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 768px) {
  .news-post .c-news:first-child {
    border-top-width: 0.0769230769vw;
  }
  .c-news {
    border-bottom-width: 0.0769230769vw;
  }
  .c-news a {
    padding: 1.5384615385vw 5.3846153846vw 1.5384615385vw 0;
  }
  .c-news a:after {
    width: 1.6923076923vw;
    height: 1.6923076923vw;
    transition: background-image 0.3s;
  }
  .c-news a:hover:after {
    background-image: url(../img/common/arrow-circle-gray.svg);
  }
  ::-webkit-full-page-media,
  :future,
  :root .c-news a:after {
    transition: none;
  }
  .c-news-head {
    margin-bottom: 0.9230769231vw;
  }
  .c-news-date {
    font-size: 1.0769230769vw;
  }
  .c-news-cat {
    margin-left: 1.5384615385vw;
    height: 1.8461538462vw;
    border-radius: 0.9230769231vw;
    font-size: 0.9230769231vw;
  }
  .c-news-ttl {
    max-height: 1.5em;
    font-size: 1.2307692308vw;
    -webkit-line-clamp: 1;
  }
}
@media screen and (min-width: 1286px) {
  .news-post .c-news:first-child {
    border-top-width: 1px;
  }
  .c-news {
    border-bottom-width: 1px;
  }
  .c-news a {
    padding: 20px 70px 20px 0;
  }
  .c-news a:after {
    width: 22px;
    height: 22px;
  }
  .c-news-head {
    margin-bottom: 12px;
  }
  .c-news-date {
    font-size: 1.4rem;
  }
  .c-news-cat {
    margin-left: 20px;
    height: 24px;
    border-radius: 12px;
    font-size: 1.2rem;
  }
  .c-news-ttl {
    font-size: 1.6rem;
  }
}

/*# sourceMappingURL=style.css.map */
