@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

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

* {
  min-height: 0vw;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(18px, 4.8vw, 19px);
  line-height: 1;
  color: var(--color_1);
}

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

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

em {
  font-style: normal;
}

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

input, select {
  vertical-align: middle;
}

img {
  display: block;
  border-style: none;
  font-size: 0;
  line-height: 0;
}

a {
  background: transparent;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}

:root {
  --con-width: 1000px;
  --border: #e0e0e0;
  --gray_back: #f1f1f1;
  --color_1: #3d3d3d;
  --color_2: #eff4f7;
  --color_neos: #00a9e0;
}

.w100 {
  max-width: 100%;
}

.bold {
  font-weight: 700;
}

.fade {
  opacity: 0;
  transition: all 0.6s ease-out;
}

.fade_on {
  opacity: 1;
}

.movexl {
  opacity: 0;
  translate: -20px 0;
  transition: all 0.4s ease-out;
}

.movexr {
  opacity: 0;
  translate: 20px 0;
  transition: all 0.4s ease-out;
}

.movexl_on,
.movexr_on {
  opacity: 1;
  translate: 0 0;
}

.movey {
  opacity: 0;
  translate: 0 20px;
  transition: all 0.4s ease-out;
}

.movey_on {
  opacity: 1;
  translate: 0 0;
}

.small {
  scale: 1.5;
  opacity: 0;
  transition: all 0.4s ease-out 0.4s;
}

.small_on {
  scale: 1;
  opacity: 1;
}

.move {
  opacity: 0;
}

.move_on {
  opacity: 1;
}

@keyframes f_a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes m_y {
  0% {
    opacity: 0;
    translate: 0 20px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

/* ===================================
ヘッダー
------------------------------------*/
header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  h1 {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 0 0 15px 0;
    display: grid;
    place-content: center;
    z-index: 1000;
  }
  @media screen and (max-width:768px) {
    h1 {
      width: 100px;
      aspect-ratio: 1 / 1;
    }
    .neos img {
      width: 70px;
    }
    .other img {
      width: 75px;
    }
  }
  @media screen and (min-width:769px) {
    padding: 8px 4% 0;
    h1 {
      top: 12px;
      left: 4%;
      width: 130px;
      height: 140px;
      place-content: center left;
    }
    h1.neos {
      img {
        width: 96px;
      }
    }
    .other img {
      width: 106px;
    }
  }
}

/* メインメニュー */
#nav_area {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4em 6%;
  background: var(--color_neos);
  overflow: auto;
  z-index: 1001;
  transition:all 0.5s linear;
  &.open {
    visibility: visible;
    opacity: 1;
  }
  li a {
    display: block;
    line-height: 1.2;
    transition: all 0.3s linear;
    color: #fff;
    &:hover {
      opacity: 0.6;
    }
  }
  .main a {
    padding: 1em 0;
  }
  .tel {
    color: #fff;
    font-weight: 700;
    font-size: 200%;
    .tel_mark {
      width: 0.9em;
      height: 0.9em;
    }
  }
  .sub {
    margin-top: 4em;
    padding-top: 4em;
    border-top: 1px dotted #fff;
    font-size: 85%;
    li {
      color: #fff;
      padding: 1em 0;
    }
    li a {
      &.tel {
        padding: 0.1em 0;
      }
    }
    :first-child {
      margin-right: auto;
    }
  }
  .l_icon {
    width: 0.8em;
    height: 0.8em;
    display: inline-block;
  }
  @media screen and (max-width:980px) {
    /* .tel {
      margin-bottom: 1em;
    } */
  }
  @media screen and (min-width:981px) {
    display: grid;
    place-content: center;
    place-items: center;  
    padding: 4em 6%;
    nav {
      max-width: 1200px;
      margin: auto;
    }
    .main {
      display: flex;
      flex-wrap: wrap;
      li {
        width: 33%;
      }
    }
    .sub {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      li {
        margin-right: 4em;
      }
    }
  }
}

/* ドロワーボタン */
#nav_btn {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  padding: 19px 10px;
  cursor: pointer;
  z-index: 1002;
  span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color_neos);
    transition: all 0.3s ease;
    &:nth-of-type(2) {
      margin-top: 9px;
    }
    &:nth-of-type(3) {
      margin-top: 9px;
    }
  }
  &.btn_close span {
    &:nth-of-type(1) {
      rotate: -315deg;
      translate: 0 9px;
      transform-origin: center;
      background: #fff;
    }
    &:nth-of-type(2) {
      opacity: 0;
    }
    &:nth-of-type(3) {
      rotate: 315deg;
      translate: 0 -9px;
      transform-origin: center;
      background: #fff;
    }
  }
  @media screen and (min-width:769px) {
    padding: 19px 0px 19px 20px;
  }
}

.fixed,
.fixed body {
  height: 100%;
  overflow: hidden;
}


/* ===================================
コンテンツ
------------------------------------*/
main {
  overflow: hidden;
}

.inner {
  padding: 0 6%;
  @media screen and (min-width:769px) {
    padding: 0 4%;
  }
}

.table_wrap {
  overflow-x: auto;
  padding: 0 4% 10px;
  @media screen and (max-width:768px) {
    padding: 0 6% 4%;
    &::-webkit-scrollbar {
      height: 10px;
    }
    &::-webkit-scrollbar-track {
      border-radius: 5px;
      background: #eee;
    }
    &::-webkit-scrollbar-thumb {
      border-radius: 5px;
      background: #aaa;
    }
  }
}

/* topページ */
.mv {
  position: relative;
  .mt {
    position: absolute;
    bottom: -0.1em;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: clamp(53px, 14vw, 100px);
    font-weight: 900;
    text-align: center;
    color: #fff;
  }
  .slider {
    overflow: hidden;
    height: 120%;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    div {
      width: 100%;
      height: 100%;
    }
    p {
      position: absolute;
      bottom: 5.3em;
      left: 50%;
      transform: translateX(-50%);
      width: 96%;
      color: #fff;
      font-weight: 700;
      font-size: clamp(20px, 5.333vw, 40px);
      text-align: center;
    }
    .slide-animation {
      img {
        animation: fadeScale 2s 0s forwards;
      }
    }
    .text-animation {
      p {
        animation: m_y 2s 2s both;
      }
    }
  }  
  @media screen and (min-width:769px) {
    padding: 0 4%;
    .mt {
      font-size: clamp(60px, 8vw, 140px);
    }
    .slider {
      height: calc(100svh - 80px);
      border-radius: 0 0 30px 30px;
      p {
        font-size: clamp(25px, 3.333vw, 50px);
        bottom: 2.2em;
      }
    }
  }
}

.about {
  padding: min(6.66%, 34px) 4% 0;
  h2 {
    color: var(--color_neos);
    text-align: center;
    font-size: clamp(32px, 8.53vw, 48px);
    font-weight: 700;
    font-feature-settings: "palt";
    img {
      display: block;
      width: min(4.347%, 20px);
    }
  }
  p {
    margin: min(8%, 32px) 0 min(6.8%, 20px);
    line-height: 1.8;
  }
  img {
    margin-inline: auto;
  }
  @media screen and (max-width:768px) {
    padding: min(6.66%, 34px) 6% 0;
  }
  @media screen and (min-width:769px) {
    p {
      text-align: center;
    }
  }
}

.product {
  padding: min(21.739%, 186px) 0 0;
  h2 {
    color: var(--color_neos);
    text-align: center;
    font-size: clamp(32px, 8.53vw, 48px);
    font-weight: 700;
    font-feature-settings: "palt";
  }
  h3 {
    margin: min(13.3%, 100px) 0 min(4.9%, 24px);
    text-align: center;
    font-size: clamp(20px, 5.333vw, 28px);
    font-weight: 700;
  }
  h2 + h3 {
    margin-top: min(7.971%, 55px);
  }
  .matrix {
    @media screen and (min-width:769px) {
      padding: 0 min(4%, 30px);
    }
  }
  .pc_matrix {
    max-width: 1060px;
    margin-inline: auto;
    th {
      padding: 20px;
      text-align: center;
      vertical-align: middle;
      font-weight: 700;
      line-height: 1.2;
    }
    .th_1 {
      background: #66cbec;
      border-right: 1px solid #fff;
    }
    .th_2 {
      background: #99ddf3;
      border-right: 1px solid #fff;
    }
    .th_3,
    .th_6 {
      background: #cceef9;
    }
    .th_4 {
      background: #66cbec;
      border-bottom: 1px solid #fff;
    }
    .th_5 {
      background: #99ddf3;
      border-bottom: 1px solid #fff;
    }
    td {
      padding: 14px;
      border: 1px solid var(--border);
      vertical-align: top;
    }
    ul {
      display: flex;
      align-items: center;
    }
    li + li {
      margin-left: 14px;
    }
    .mt {
      margin-top: 14px;
    }
    @media screen and (min-width:769px) and ( max-width:1120px) {
      li + li {
        margin-left: 10px;
      }
      td {
        padding: 10px;
      }
      .th_4,
      .th_5,
      .th_6 {
        writing-mode: vertical-lr;
      }
      font-size: 17px;
    }
  }
  .sp_matrix {
    dt {
      position: relative;
      margin-top: 2%;
      padding: 1.4em;
      text-align: center;
      font-weight: 700;
      cursor: pointer;
      &::before {
        position: absolute;
        top: 50%;
        right: 35px;
        width: 1px;
        height: 20px;
        content: '';
        margin-top: -10px;
        background: #000;
        transition: all 0.3s linear;
      }
      &::after {
        position: absolute;
        top: 50%;
        right: 25px;
        width: 20px;
        height: 1px;
        content: '';
        background: #000;
        transition: all 0.3s linear;
      }
      &.active::before {
        rotate: 90deg;
        opacity: 0;
      }
    }
    dd {
      padding: 4%;
      background: #e5f6fc;
    }
    .th_1 {
      background: #66cbec;
    }
    .th_2 {
      background: #99ddf3;
    }
    .th_3 {
      background: #cceef9;
    }
    table {
      width: 100%;
      background: #fff;
    }
    tr + tr {
      border-top: 2px solid #e5f6fc;

    }
    th {
      width: 10%;
      padding: 0.8em 0;
      vertical-align: middle;
      font-size: 16px;
      span {
        white-space: pre;
        writing-mode: vertical-rl;
        display: inline-block;
      }
    }
    td {
      padding: 2%;
      vertical-align: middle;
      text-align: center;
      ul {
        width: 32%;
        display: inline-block;
      }
      &.jusleft {
        text-align: left;
      }
    }
    li + li {
      margin-top: 4%;
    }
  }
  img {
    width: 100%;
    max-width: 142px;
    transition: all 0.3s linear;
  }
  .vs {
    margin: auto;
  }
  a:hover img {
    scale: 1.1;
  }
  .coating {
    display: flex;
    flex-wrap: wrap;
    li {
      height: 5em;
      border: 1px solid var(--color_neos);
      border-radius: 5px;
      place-content: center;
      text-align: center;
      color: var(--color_neos);
      line-height: 1.2;
    }
    @media screen and (max-width:768px) {
      justify-content: space-between;
      li {
        width: 49%;
        &:last-child {
          width: 100%;
        }
        margin: 1% 0;
      }
    }
    @media screen and (min-width:769px) {
      justify-content: center;
      max-width: 1000px;
      margin: auto;
      li {
        width: 240px;
        margin: 5px;
        font-size: 20px;
      }
    }
  }
  .btn {
    display: block;
    width: min(80%, 320px);
    margin: min(5.797%, 40px) auto 0;
    padding: 1em;
    border-radius: 5px;
    background: var(--color_neos) url(../img/btn_arrow.png) center right 4% no-repeat;
    background-size: 41px auto;
    text-align: center;
    color: #fff;
    transition: all 0.3s linear;
    &:hover {
      background: #37ceff url(../img/btn_arrow.png) center right 2% no-repeat;
      background-size: 41px auto;
    }
  }
}

.btn_pdf {
  margin: min(6%, 30px) auto 0;
  padding: 0 4%;
  text-align: center;
  line-height: 1.4;
  a {
    color: #4681d3;
    text-decoration: underline;
    &:hover img {
      scale: 1;
    }
  }
  img {
    position: relative;
    display: inline;
    width: 19px;
    margin-left: 4px;
    vertical-align: top;
    top: 4px;
  }
}

/* 製品ページ */
.products_mv {
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media screen and (min-width:1201px) {
    height: clamp(240px, 20vw, 340px);
  }
  @media screen and (max-width:1200px) {
    height: clamp(182px, 48.533vw, 240px);
  }
  @media screen and (min-width:769px) {
    padding: 0 4%;
    img {
      border-radius: 0 0 30px 30px;
    }
  }
}

.p_wrap {
  padding: 0 6%;
  @media screen and (min-width:769px) {
    max-width: calc(1000px + 8%);
    margin: auto;
    padding: 0 4%;
  }
  .title1 {
    margin-bottom: 1em;
    font-size: clamp(26px, 6.933vw, 30px);
    line-height: 1.4;
  }
  .title2 {
    position: relative;
    max-width: 1000px;
    margin: 3.5em auto 1em;
    font-size: clamp(24px, 6.4vw, 28px);
    font-weight: 700;
    span {
      position: relative;
      display: inline-block;
      padding-right: 1em;
      background: #fff;
      z-index: 2;
    }
    &::after {
      position: absolute;
      content: '';
      right: 0;
      top: 50%;
      width: 100%;
      height: 1px;
      background: var(--color_1);
    }
  }
  .title3 {
    margin: 2em 0 1em;
    font-size: clamp(20px, 5.333vw, 24px);
    font-weight: 700;
    span {
      color: var(--color_neos);
    }
  }
  .title4 {
    text-align: center;
     span {
      position: relative;
      display: inline-block;
      max-width: calc(100% - 2em);
      padding: 0.4em 1.5em;
      background: var(--color_neos);
      border-radius: 1em;
      color: #fff;
      font-size: clamp(19px, 5vw, 24px);
      font-weight: 700;
      line-height: 1.2;
      &::after {
        content: "";
        position: absolute;
        width: calc(100% + 2em);
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid var(--color_neos);
        border-radius: 1em;
        background: #fff;
        z-index: -1;
      }
      &::before {
        content: "";
        position: absolute;
        width: calc(100% + 1em);
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid var(--color_neos);
        border-radius: 1em;
      }
    }
  }
  h5 {
    margin: 1em 0 0.5em;
    font-size: clamp(18px, 4.8vw, 19px);
    font-weight: 700;
  }
  p {
    line-height: 1.8;
    &.note {
      font-size: clamp(16px, 4.26vw, 17px);
    }
  }
  .res {
    display: flex;
    li {
      width: min(32%, 200px);
      margin-right: 0.3em;
      padding: 1.2em;
      background: var(--color_2);
      text-align: center;
    }
  }
  .table_note {
    margin-top: 1em;
    font-size: clamp(15px, 4vw, 16px);
  }
  .column {
    position: relative;
    margin-top: 5em;
    padding: 0 min(6%, 60px) min(6%, 60px);
    border: 1px solid var(--color_neos);
    border-radius: 30px;
    z-index: 1;
    h3 {
      margin: -1em 0 1.5em;
    }
    h4 {
      margin: 1em 0;
      font-size: clamp(19px, 5vw, 22px);
      color: var(--color_neos);
      line-height: 1.6;
      font-weight: 700;
    }
    p {
      position: relative;
      margin: 1em 0;
      line-height: 1.8;
      z-index: 1;
      &.note {
        margin: 0.6em 0;
        padding-left: 2.5em;
        text-indent: -2.5em;
        font-size: 73.7%;
      }
      &.note2 {
        margin: 0.6em 0 0;
        font-size: 73.7%;
      }
    }
    sup {
      font-size: 70%;
    }
    ul {
      margin-top: 2em;
      padding: 6%;
      background: var(--gray_back);
      li + li {
        margin: 6% 0 0;
      }
    }
    img {
      margin: auto;
    }
    @media screen and (max-width:768px) {
      border-radius: 15px;
    }
    @media screen and (min-width:769px) {
      .t_center {
        text-align: center;
      }
      ul {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 4%;
        li + li {
          margin: 0 0 0 4%;
        }
      }
    }
  }
  .slide_btn {
    display: inline-block;
    margin-top: 2em;
    padding: 0.5em 1em;
    border: 1px solid var(--border);
    background: var(--gray_back);
    border-radius: 5px;
    font-size: 85%;
    color: #838383;
  }
  .lens_wrap {
    margin-top: min(4%, 40px);
    overflow-x: auto;
    .table {
      width: 100%;
    }
    .lens_inner {
      position: relative;
      display: inline-block;
      width: max-content;
    }
    .point {
      position: absolute;
      top: 4px;
      display: block;
      right: 4px;
      width: max(6.3%, 48px);
      transition: all 0.3s linear;
      &:hover {
        scale: 1.1;
      }
    }
    @media screen and (max-width:768px) {
      .table {
        width: 780px;
      }
      &::-webkit-scrollbar {
        height: 10px;
      }
      &::-webkit-scrollbar-track {
        border-radius: 5px;
        background: #eee;
      }
      &::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: #aaa;
      }
    }
  }
  .lens_title {
    margin: min(14%, 113px) 0 0.8em;
    padding-bottom: 0.2em;
    border-bottom: 1px solid var(--color_neos);
    font-size: clamp(23px, 6.1vw, 34px);
    color: var(--color_neos);
    font-weight: 700;
  }
  .lens_box1 {
    margin-bottom: 2em;
    img {
      width: 136px;
    }
    p {
      margin: 1em 0 0;
    }
    .note {
      font-size: 73.7%;
    }
    @media screen and (min-width:769px) {
      display: flex;
      align-items: center;
      p {
        margin: 0 0 0 1.2em;
      }
    }
  }
  .lens_mt {
    margin-top: 4em;
  }
  .movie_wrap {
    width: 100%;
    margin-top: min(4%, 24px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    iframe {
      width: 100%;
      height: 100%;
    }
  }
}

.product_title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: min(12.6%, 86px) 0 min(12.1%, 80px);
  .name {
    font-size: clamp(34px, 9vw, 38px);
    color: var(--color_neos);
    font-weight: 700;
  }
  .grade {
    position: relative;
    padding: 0.3em 1em 0.3em 0.3em;
    background: var(--color_neos);
    color: #fff;
    font-size: clamp(18px, 4.8vw, 20px);
  }
  .sub {
    display: block;
    width: 100%;
    margin-top: 1em;
    color: var(--color_neos);
    font-size: 16px;
    font-size: clamp(14px, 3.733vw, 16px);
  }
  @media screen and (min-width:821px) {
    .grade {
      margin-left: 2.5em;
    }
    .grade::after {
      position: absolute;
      content: '';
      top: 0;
      left: -1.38em;
      width: 1.4em;
      height: 100%;
      clip-path: polygon(0 100%,100% 0,100% 100%);
      background: var(--color_neos);
    }
  }
  @media screen and (max-width:820px) {
    .name {
      display: block;
      width: 100%;
    }
    .grade {
      margin-top: 0.5em;
      padding: 0.3em 0.3em 0.3em 0.6em;
    }
    .grade::after {
      position: absolute;
      content: '';
      top: 0;
      right: -1.18em;
      width: 1.2em;
      height: 100%;
      clip-path: polygon(0 0,100% 0,0 100%);
      background: var(--color_neos);
    }
  }
}

.forte {
  max-width: 92%;
  margin: min(24%, 74px) auto 0;
  padding: min(20%, 86px) 4%;
  background: var(--color_2);
  @media screen and (min-width:769px) {
    border-radius: 30px;
  }
  @media screen and (max-width:768px) {
    max-width: 100%;
    padding: min(20%, 86px) 6%;
  }
  h3 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 1em;
    font-size: clamp(24px, 6.4vw, 28px);
    font-weight: 700;
    span {
      position: relative;
      display: inline-block;
      padding-right: 1em;
      background: var(--color_2);
      z-index: 2;
    }
    &::after {
      position: absolute;
      content: '';
      right: 0;
      top: 50%;
      width: 100%;
      height: 1px;
      background: var(--color_1);
    }
  }
  .b_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
    /* 製品ごと色分け */
    &.idealhd div {
      background: #b8bef2;
    }
    &.ideal div {
      background: #dd9ed1;
    }
    &.avail div {
      background: #f4abc5;
    }
    &.style div {
      background: #ade2aa;
    }
    &.element div {
      background: #c0f28f;
    }
    &.standard div {
      background: #fee080;
    }
    &.deskaccess div {
      background: #99ddf7;
    }
  }
  .box {
    width: 49%;
    margin-top: min(5%, 20px);
    padding: 4%;
    background: #fff;
    h4 {
      font-size: clamp(16px, 4.266vw, 22px);
      font-weight: 700;
      span {
        display: block;
        margin-bottom: 0.3em;
        color: var(--color_neos);
        font-size: clamp(28px, 7.466vw, 34px);
      }
    }
    p {
      margin: 1em 0 1.4em;
      line-height: 1.4;
      mark {
        background: linear-gradient(transparent 60%, #fdff4f 30%);
      }
    }
    @media screen and (max-width:960px) {
      width: 100%;
      padding: 8% 4%;
    }
  }
  .graph {
    li {
      display: flex;
      align-items: center;
      margin-bottom: 0.5em;
      div {
        height: 2em;
        margin-left: 0.4em;
      }
      &:nth-child(2) div {
        opacity: 0.85;
      }
      &:nth-child(3) div {
        opacity: 0.7;
      }
      .w1 {
        width: calc((100% - 2.5em) / 5);
      }
      .w2 {
        width: calc((100% - 2.5em) / 5 * 2);
      }
      .w3 {
        width: calc((100% - 2.5em) / 5 * 3);
      }
      .w4 {
        width: calc((100% - 2.5em) / 5 * 4);
      }
      .wmax {
        width: calc((100% - 2.5em));
      }
      .w2_6 {
        width: calc((100% - 2.5em) / 6 * 2);
      }
    }
    
  }
  .rec {
    dt {
      margin: 2em 0 1em;
      padding: 0.5em 0;
      border-top: 1px dotted var(--color_neos);
      border-bottom: 1px dotted var(--color_neos);
      color: var(--color_neos);
    }
    dd {
      margin: 0.8em 0 0;
      padding-left: 1.5em;
      background: url(../img/checbox.svg) left center no-repeat;
      background-size: 1em auto;
      line-height: 1.4;
    }
  }
  > p {
    max-width: 1000px;
    margin: 1.6em auto 0;
    line-height: 1.6;
  }
  .vsneo {
    max-width: 1000px;
    margin: 2.5em auto 0;
    padding: min(8%, 66px) min(6%, 74px);
    background: #fff;
    h4 {
      margin: 0 auto min(6%, 60px);
      color: var(--color_neos);
      font-size: clamp(23px, 5.866vw, 34px);
      line-height: 1.6;
      font-weight: 700;
    }
    p {
      margin: min(6%, 48px) 0;
      line-height: 1.8;
    }
    .vs_box {
      padding: min(8%, 66px) min(6%, 60px);
      border: 1px solid var(--color_neos);
      border-radius: 10px;
      li + li {
        margin: 10% 0 0;
      }
      img {
        margin: auto;
      }
      @media screen and (min-width:769px) {
        display: flex;
        align-items: center;
        li + li {
          margin: 0 0 0 47px;
        }
      }
    }
  }
}

.spec {
  width: clamp(640px, 100%, 1000px);
  margin: auto;
  text-align: center;
  font-size: 16px;
  th {
    padding: 0.8em;
    border: 1px solid var(--border);
    background: var(--color_2);
    line-height: 1.2;
    vertical-align: middle;
    font-weight: 400;
    &.tl {
      text-align: left;
    }
  }
  td {
    padding: 0.8em;
    border: 1px solid var(--border);
    vertical-align: middle;
  }
  @media screen and (min-width:769px) {
    font-size: 19px;
  }
}

/* 規約等ページ */
.o_wrap {
  padding: min(20%, 120px) 4% 0;
  @media screen and (min-width:769px) {
    max-width: calc(1000px + 8%);
    margin: auto;
 }
  .other_title {
    margin: 0 0 2em;
    font-size: clamp(34px, 9vw, 38px);
    color: var(--color_neos);
    font-weight: 700;
  }
  h3 {
    margin: 3em 0 1em;
    color: var(--color_neos);
    font-size: 110%;
    font-weight: 700;
    line-height: 1.6;
  }
  h4 {
    margin: 1em 0 0.5em;
    font-size: 100%;
    font-weight: 700;
    line-height: 1.6;
  }
  p {
    line-height: 1.8;
  }
  p + p,
  ul + p {
    margin-top: 1.5em;
  }
  ul {
    margin-top: 1em;
  }
  li {
    padding-left: 1.4em;
    text-indent: -1.4em;
    list-style-type: disc;
    list-style-position: inside;
    line-height: 1.8;
  }
  li + li {
    margin-top: 0.5em;
  }
}

/* ===================================
フッター
------------------------------------*/
.contact {
  margin-top: min(30%, 142px);
  padding: min(18.666%, 110px) 4%;
  background: #e5f6fc;
  text-align: center;
  h2 {
    color: var(--color_neos);
    font-size: clamp(32px, 8.53vw, 48px);
    font-weight: 700;
    font-feature-settings: "palt";
    img {
      display: block;
      width: min(18.933%, 142px);
      margin: 0 auto 10px;
    }
  }
  .name {
    margin: min(8.666%, 46px) 0 min(4%, 20px);
    text-align: center;
    font-size: clamp(18px, 4.8vw, 20px);
    font-weight: 700;
    line-height: 1.4;
  }
  .tel {
    padding-left: 1.2em;
    font-size: clamp(40px, 5.333vw, 48px);
    background: url(../img/tel_mark.svg) left center no-repeat;
    background-size: 1em auto;
    color: var(--color_1);
    font-weight: 700;
  }
  .time {
    margin-top: 1em;
    font-size: 16px;
  }
}

footer {
  overflow: hidden;
  .wrap {
    padding: min(22.266%, 56px) 0 min(4%, 28px);
    font-size: 18px;
    span {
      font-size: 14px;
    }
  }
  .footer_logo {
    width: 107px;
  }
  a {
    color: var(--color_1);
    transition: all 0.3s linear;
    &:hover {
      color: var(--color_neos);
      fill: var(--color_neos);
    }
  }
  .note {
    font-size: 12px;
  }
  .c_name {
    margin: min(32%, 170px) 0 min(5.866%, 20px);
    text-align: center;
    font-weight: 700;
    font-size: clamp(24px, 6.4vw, 28px);
  }
  .sub {
    display: flex;
    justify-content: center;
    font-size: clamp(15px, 4vw, 16px);
    li + li {
      margin-left: 2em;
    }
  }
  .l_icon {
    width: 0.8em;
    height: 0.8em;
    display: inline-block;
  }
  small {
    display: block;
    margin-top: 2em;
    padding: 1em 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: #888;
    font-size: clamp(10px, 2.666vw, 12px);
  }
  @media screen and (min-width:769px) {
    .wrap {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1000px;
      margin: auto;
      ul {
        display: flex;
        flex-wrap: wrap;
        margin-left: 86px;
      }
      li {
        margin-bottom: 1.2em;
      }
    }
    .note {
      max-width: 1000px;
      margin: auto;
      text-align: right;
    }
  }
  @media screen and (min-width:1040px) {
    .wrap {
      li {
        width: 33%;
      }
      li:nth-child(3n+1) {
        width: 40%;
      }
      li:nth-child(3n) {
        width: 27%;
      }
    }
  }
  @media screen and (min-width:769px) and ( max-width:1039px) {
    .wrap {
      padding: min(22.266%, 56px) 20px min(4%, 28px);
      li {
        width: 50%;
      }
    }
    .note {
      padding: 0 20px;
    }
  }
  @media screen and (max-width:768px) {
    .footer_logo {
      margin: 0 auto 6%;
    }
    .wrap {
      ul + ul {
        border-bottom: 1px solid var(--border);
      }
      li {
        padding: 1.2em 1em;
        border-top: 1px solid var(--border);
        
      }
      div a {
        display: block;
        width: 100%;
      }
    }
    .note {
      padding: 0 4%;
    }
  }
}



