@charset "UTF-8";
/* CSS Document */

/***************************************************
: style.css
***************************************************/
:root {
  --base-width: 1100px;
  --over-width-half: calc((100vw - var(--base-width)) / 2);
  --base-color: var(--black);
  --base-bg: var(--white);
  --ff: "M PLUS 1p", sans-serif;
  --webf: "Roboto Condensed", sans-serif;
  --icons: "Material Symbols Rounded";
  --transition: 0.3s;

  --black: #1e1e1e;
  --white: #fff;
  --gray: #333333;

  --color_typeB: #003e6a;
  --color_typeB-1: #2c96ea;
  --color_typeB-2: #6fd8ff;
  --color_typeB-3: #ecf4fb;
  --color_typeB-4: #2a97ef;
  --color_typeB-5: #95caf4;
  --color_typeB-6: #c1d9f9;
  --color_typeR: #960d23;
}

@media (max-width: 520px) {
  :root {
    --base-width: 100%;
    --over-width-half: 5%;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-width: var(--base-width);
  max-width: 100vw;
  margin: 0 auto;
  font-size: 16px;
  font-family: var(--ff);
  /* font-feature-settings: "palt"; */
  line-height: 1.6;
  word-break: break-all;
  color: var(--base-color);
  background-color: var(--base-bg);
}

picture {
  grid-area: pic;
}

p {
  grid-area: p;
}

.note {
  text-indent: -1em;
  padding-left: 1em;
}

.sp {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 520px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  html {
    font-size: 14px;
  }

  body {
    font-size: 1rem;
  }
}

/**================================================== 
 
================================================== **/
section {
  position: relative;
}

.sec-w_base {
  padding-left: var(--over-width-half);
  padding-right: var(--over-width-half);
}

.sec-R_base {
  padding-right: var(--over-width-half);
}

@media screen and (max-width: 520px) {
  main {
    width: 100%;
    overflow: hidden;
  }

  .sec-R_base {
    padding-right: 0;
  }
}

/**================================================== 
 横並びリスト
================================================== **/

.list-numC {
  --num: 2;
  --g: 60px;
  --w: calc((100% - var(--g) * (var(--num) - 1)) / var(--num));
  display: flex;
  flex-flow: wrap;
  gap: var(--g);
  position: relative;
  z-index: 5;
}

.list-numC>* {
  width: var(--w);

  display: flex;
  flex-flow: column;
}

/**================================================== 
 tit
================================================== **/
.sec-after {
  position: relative;
  padding-top: 50px;
}

.sec-after:after {
  position: absolute;
  right: 0;
  top: 0;
  content: attr(data-after) "";
  font-family: var(--webf);
  font-size: 120px;
  color: var(--color_typeB-3);
  z-index: 1;
}

.aqua-titA {
  position: relative;
  z-index: 5;
  color: var(--color_typeB);
  font-weight: 800;
  margin: 75px 0 35px;
  font-size: 2.5rem;
}

.aqua-titB {
  position: relative;
  z-index: 5;
  color: var(--color_typeB);
  font-weight: 800;
  font-size: 1.75rem;
  margin: 0 0 30px;
}

.aqua-titC {
  background: url(../images/clear_form/product_bg01.jpg) no-repeat center top / cover;
  min-height: 311px;

  display: flex;
  flex-flow: column;
  justify-content: center;
  color: var(--white);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.aqua-titC small {
  color: var(--color_typeB-2);
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
}

.aqua-titC h2 {
  font-size: 3.3rem;
  font-weight: 800;
}

.aqua-titC p {
  font-size: 1.1rem;
}

.aqua-titC i {
  position: absolute;
  right: 30px;
  top: 0;
  font-size: 80px;
  font-family: var(--webf);
  color: #7CCEFF;
}

.aqua-titC i:after {
  content: attr(data-after) "";
  font-size: 80px;
  z-index: 1;
  white-space: nowrap;
  margin-left: 2rem;
}

@media screen and (max-width: 520px) {
  .sec-after:after {
    font-size: 3.4rem;
  }

  .aqua-titA {
    margin: 0 0 20px;
    font-size: 1.7rem;
  }

  .aqua-titB {
    font-size: 1.2rem;
    margin: 0 0 20px;
  }

  .aqua-titC {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .aqua-titC small {
    font-size: 1.1rem;
  }

  .aqua-titC h2 {
    font-size: 1.7rem;
  }

  .aqua-titC p {
    font-size: 1rem;
  }

  .aqua-titC i {
    right: 10px;
    font-size: 1.4rem;
  }

  .aqua-titC i img {
    width: 223px;
  }

  .aqua-titC i:after {
    display: none;
  }

  section:not(.aqua-adv1) .aqua-titC i {
    display: none;
  }

  section:not(.aqua-adv1) .aqua-titC {
    min-height: 160px;
  }
}

/**================================================== 
 btn
================================================== **/
.aqua-btnA {
  width: min(90%, 500px);
  margin: 50px auto;
  padding: 15px;
  background: var(--color_typeB);
  border: 1px solid var(--color_typeB);
  color: var(--white);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  display: grid;
  grid-template-columns: 1fr 1em;
  align-items: center;
  cursor: pointer;
}

.aqua-btnA:after {
  content: "east";
  font-family: var(--icons);

  /* 以下、Safariで表示させるプロパティ */
  line-height: 1;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

.aqua-btnA:hover {
  background: var(--white);
  color: var(--color_typeB);
}

.aqua-btnB {
  width: min(90%, 500px);
  margin: 20px auto;
  padding: 20px 15px;
  background: var(--color_typeB);
  border: 1px solid var(--color_typeB);
  color: var(--white);
  text-align: center;
  font-size: 1.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.aqua-btnB svg {
  aspect-ratio: 32/21;
  width: 40px;
  height: auto;
  fill: var(--white);
}

.aqua-btnB:hover {
  background: var(--white);
  color: var(--color_typeB);
}

.aqua-btnB:hover svg {
  fill: var(--color_typeB);
}

.btn-wrap {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.aqua-back {
  width: min(90%, 500px);
  margin: 50px auto;
  padding: 15px;
  background: var(--white);
  border: 3px solid var(--color_typeB);
  color: var(--color_typeB);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  display: grid;
  grid-template-columns: 1em 1fr;
  align-items: center;
  cursor: pointer;
}

.aqua-back:before {
  content: "keyboard_backspace";
  font-family: var(--icons);
  line-height: 1;
}

.aqua-back:hover {
  background: var(--color_typeB);
  color: var(--white);
}

@media screen and (max-width: 520px) {
  .aqua-btnA {
    width: min(100%, 320px);
    margin: 30px auto;
  }

  .aqua-btnB {
    width: min(100%, 320px);
    font-size: 1.4rem;
  }

  .aqua-btnB svg {
    width: 26px;
  }
}

/**================================================== 
 header
================================================== **/

header {
  font-family: 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana,
    sans-serif;
  display: flex;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  position: sticky;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-top: 4px solid var(--color_typeB-4);
  background-color: var(--white);
  padding-left: calc((100% - 1000px) / 2);
  padding-right: calc((100% - 1000px) / 2);
  z-index: 100;
}

header h1 img {
  display: block;
  width: 270px;
  line-height: 1;
  font-size: 1rem;
}

header .gnavi {
  flex: 1;
}

header .gnavi ul {
  display: flex;
  justify-content: flex-end;
}

header .gnavi ul li+li a {
  border-left: 1px solid #dddddd;
}

header .gnavi a {
  display: block;
  text-align: center;
  color: var(--gray);
  font-weight: normal;
  font-size: 0.9rem;
  padding: 0 15px;
}

header .gnavi a .en {
  color: var(--color_typeB-4);
  font-weight: 800;
  font-size: 0.625rem;
}

#hamburger-check {
  display: none;
}

header .h-tel {
  display: none;
}

header .h-mail {
  display: none;
}

@media screen and (max-width: 1100px) {
  header {
    padding: 0;
  }
}

@media screen and (max-width: 520px) {
  header {
    height: 49px;
    padding: 0 0 0 15px;
  }

  header h1 img {
    width: 190px;
  }

  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color_typeB-4);
    width: 46px;
    height: 46px;
    position: absolute;
    top: 0;
    right: 0;
  }

  /**タップされる前 open**/
  .hamburger span,
  .hamburger span:before,
  .hamburger span:after {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    background-color: var(--white);
    position: absolute;
  }

  .hamburger span:before {
    bottom: -8px;
  }

  .hamburger span:after {
    top: -8px;
  }

  /**タップされたとき close**/
  #hamburger-check:checked~.hamburger span {
    background-color: rgba(255, 255, 255, 0);
  }

  #hamburger-check:checked~.hamburger span::before {
    width: 30px;
    bottom: 0px;
    left: -2px;
    transform: rotate(45deg);
  }

  #hamburger-check:checked~.hamburger span::after {
    width: 30px;
    top: -0px;
    left: -2px;
    transform: rotate(-45deg);
  }

  header .gnavi {
    width: 100%;
    height: calc(100% - 50px);
    overflow-y: auto;
    position: fixed;
    top: 50px;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: var(--color_typeB-4);
    color: var(--black);
    transition: var(--transition);
    /*アニメーション設定*/

    display: flex;
    font-size: 1.8rem;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
    padding: 20px 30px 30px;
    margin: 0;
  }

  header .gnavi ul {
    flex-flow: column;
    gap: 15px;
    width: 100%;
  }

  header .gnavi ul li+li a {
    border: none;
  }

  header .gnavi a {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 900;
    padding: 0 15px;
  }

  header .gnavi a .en {
    color: var(--color_typeB-5);
    font-size: 0.625rem;
  }

  header .h-tel {
    width: 100%;
    display: block;
    border: 1px solid var(--white);
    padding: 15px;
    text-align: center;
    color: var(--white);
  }

  header .h-tel a {
    font-size: 1.3rem;
  }

  header .h-tel p {
    font-size: 0.9rem;
  }

  header .h-mail {
    position: absolute;
    top: 0;
    right: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    box-shadow: 0 0 0 1px var(--color_typeB-4);
  }

  header .h-mail img {
    width: 80%;
  }

  #hamburger-check:checked~.gnavi {
    left: 0%;
    /*メニューを画面内へ*/
  }
}

/**================================================== 
 footer
================================================== **/
footer {
  text-align: center;
  font-size: 14px;
  background: var(--color_typeB-3);
  padding: 100px 0 30px;
}

@media screen and (max-width: 520px) {
  footer {
    padding-top: 50px 0 30px;
  }
}

/**================================================== 
 mv
================================================== **/
.aqua-mv {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

.aqua-mv picture {
  display: block;
  background: linear-gradient(180deg, #0B74E0 0%, #34BBFF 100%);
}

.aqua-mv img {
  display: block;
  margin: 0 auto;
  position: relative;

}

.cf-mv-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 45%;
  bottom: 17%;
  left: 8.3vw;
}

.cf-mv-btns--btn {
  max-width: 400px;
  height: 66px;
  text-align: center;
  font-size: clamp(12px, 4vw, 19px);
  font-weight: 700;
  flex: 0 1 48%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(10px, 1.2vw, 34px);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) .7s;
  position: relative;
}

.cf-mv-btns--btn svg {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.cf-mv-btns--btn_first {
  background: #FFE100;
  color: #133E6A;
}

.cf-mv-btns--btn_last {
  background: #133E6A;
  color: var(--white);
}

.cf-mv-btns--btn:hover {
  transform: translateY(2px);
  opacity: .7;
}

@media screen and (max-width: 1520px) {
  .cf-mv-btns--btn {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 520px) {

  .cf-mv-btns {
    flex-flow: row wrap;
    width: 75vw;
    gap: 1rem;
    position: static;
    margin: 2rem auto 0;
  }

  .cf-mv-btns--btn {
    flex: 1 0 100%;
    height: 50px;
    font-size: 1rem;
  }

}
@media screen and (min-width: 1920px) {
  .cf-mv-btns {
    justify-content: center;
    gap: 1vw;
  }
}
@media screen and (min-width: 2100px) {
  .cf-mv-btns {
    left: 12vw;
  }
}
/**================================================== 
 works
================================================== **/
.aqua-works {
  padding-left: var(--over-width-half);
  padding-bottom: 100px;
  overflow: hidden;
}

#list-works {
  padding-bottom: 80px;
}

#list-works .splide__track {
  padding-left: 0 !important;
}

#list-works .splide__slide picture {
  display: block;
  background: var(--gray);
}

#list-works .splide__slide img {
  aspect-ratio: 800/470;
  width: 100%;
  height: auto;
  object-fit: contain;
}

#list-works .splide__slide h3 {
  font-weight: 800;
  color: var(--color_typeB);
  font-size: 1.5rem;
  margin: 15px 0;
}

#list-works .splide__slide p {
  font-size: 1.1rem;
}

/**splide arrow**/

.splide-link .splide__arrows {
  position: absolute;
  right: 5%;
  bottom: 0;
  display: flex;
  gap: 20px;
}

.splide-link .splide__arrows :is(.splide__arrow--next, .splide__arrow--prev) {
  position: static;
  width: 51px;
  height: 51px;
  transform: none;
}

/**splide bar**/
.splide-link .splide__pagination {
  justify-content: flex-start;
  width: 83%;
  bottom: 40px;
}

.splide-link .splide__pagination li {
  flex: 1;
  height: 5px;
}

.splide-link .splide__pagination li .splide__pagination__page {
  background: #d7d7d7;
  border-radius: 0;
  width: 100%;
  height: 5px;
}

.splide-link .splide__pagination li .splide__pagination__page.is-active {
  background: #8f8f8f;
  transform: none;
  z-index: 1;
}

@media screen and (max-width: 520px) {
  .aqua-works {
    padding: 50px 5% 10px;
  }

  #list-works {
    padding-bottom: 50px;
  }

  #list-works .splide__slide h3 {
    font-size: 1.1rem;
    margin: 10px 0;
  }

  /**splide arrow**/

  .splide-link .splide__arrows {
    gap: 10px;
    right: 0;
  }

  .splide-link .splide__arrows :is(.splide__arrow--next, .splide__arrow--prev) {
    width: 38px;
    height: 38px;
  }

  /**splide bar**/
  .splide-link .splide__pagination {
    justify-content: flex-start;
    width: 70%;
    bottom: 20px;
  }
}

/**================================================== 
loca
================================================== **/
.aqua-loca {
  background: var(--color_typeB-3);
  padding-bottom: 60px;
}

.aqua-loca.sec-after {
  padding-top: 100px;
}

.aqua-loca.sec-after:after {
  color: var(--white);
  top: 45px;
}

.aqua-loca-copy {
  margin-bottom: 1.5rem;
}

.aqua-loca-box1 {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 1.5rem;
}

.aqua-loca-box1 dl {
  border-left: 1px solid var(--black);
  padding: 0 0 0 15px;
}

.aqua-loca-box1 dl dt {
  font-size: 1.5rem;
  margin: 0 0 10px;
  font-weight: 800;
}

.aqua-loca-box1 dl dd {
  text-indent: -1em;
  padding-left: 1em;
}

.aqua-loca-box2 {
  position: relative;
  border: 1px solid #bbc4d7;
  background: var(--white);
  padding: 30px;
  margin: 30px auto;
}

.aqua-loca-box2:after {
  position: absolute;
  right: 0;
  top: 0;
  content: attr(data-after) "";
  font-family: var(--webf);
  font-size: 120px;
  line-height: 1;
  color: var(--color_typeB-3);
  z-index: 1;
}

.youtube iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.aqua-loca-box2 a {
  text-decoration: underline;
  font-weight: 500;
  transition: .8s;
}
.aqua-loca-box2 a:hover {
  opacity: .7;
}

@media screen and (max-width: 520px) {
  .aqua-loca {
    padding-bottom: 10px;
  }

  .aqua-loca.sec-after {
    padding-top: 50px;
  }

  .aqua-loca.sec-after:after {
    color: var(--white);
    top: 0px;
  }

  .aqua-loca .aqua-titA {
    font-size: 1.4rem;
    text-align: center;
  }

  .aqua-loca-box1 {
    flex-flow: column;
    gap: 20px;
  }

  .aqua-loca-box1 dl {
    border-left: none;
    padding: 0;
  }

  .aqua-loca-box1 dl dt {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
  }

  .aqua-loca-box1 dl dt:after {
    content: "";
    flex: 1;
    display: block;
    height: 1px;
    background: var(--black);
  }

  .aqua-loca-box2 {
    position: relative;
    border: 1px solid #bbc4d7;
    background: var(--white);
    padding: 20px;
    margin: 30px auto;
  }

  .aqua-loca-box2:after {
    display: none;
  }

  .aqua-loca-box2 .aqua-titB {
    text-align: center;
  }
}

/**================================================== 
 adv1
================================================== **/
.aqua-adv1 .splide__slide img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  max-height: 100%;
}

.aqua-adv1 .aqua-titC {
  margin-bottom: 2rem;
}

/**================================================== 
 adv2
================================================== **/

.list-adv2 {
  width: var(--base-width);
  margin: 60px auto;
  --num: 3;
  --g: 20px;
}

.list-adv2 li {
  display: flex;
  flex-direction: column;
}

.list-adv2 li picture {
  text-align: center;
  margin: 0 auto;
}

.list-adv2 li img {
  object-fit: cover;
  width: 100%;
  max-height: 230px;
  width: 255px;
}

.list-adv2 li h3 {
  color: var(--color_typeB);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 15px;
  border-bottom: 1px solid #596f9e;
}

.list-adv2 li p {
  padding: 15px;
}

@media screen and (max-width: 520px) {
  .list-adv2 {
    width: 90%;
    margin: 30px auto;
    --num: 1;
  }
}


/**================================================== 
 adv3
================================================== **/
.aqua-adv3-btm_img {
  text-align: center;
}

.aqua-adv3-btm_img img {
  display: block;
  margin: 0 auto 2rem;
  max-width: var(--base-width);
  width: 90%;
}

.list-adv3 {
  width: var(--base-width);
  margin: 60px auto;
  --num: 2;
  --g: 20px;
}

.list-adv3 li {
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "pic h3"
    "pic p";
  gap: 0px 20px;
}

.list-adv3 li h3 {
  color: var(--color_typeB);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 15px;
  border-bottom: 1px solid #596f9e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.list-adv3 li p {
  padding: 15px;
}

@media screen and (max-width: 520px) {
  .list-adv3 {
    width: 90%;
    margin: 30px auto;
    --num: 1;
    --g: 20px;
  }

  .list-adv2 li,
  .list-adv3 li {
    display: grid;
    grid-template-columns: 138px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "pic h3"
      "pic p";
    align-items: start;
    gap: 0 15px;
  }

  .list-adv2 li h3,
  .list-adv3 li h3 {
    font-size: 1.1rem;
    padding: 0 0 5px 5px;
  }

  .list-adv2 li p,
  .list-adv3 li p {
    padding: 5px 0 5px 5px;
  }
}

.splide__list dt {
  text-align: center;
}

#list-adv1,
#list-adv4,
#list-adv3 {
  width: var(--base-width);
  margin: 60px auto;
}

#list-adv1 .splide__list,
#list-adv4 .splide__list,
#list-adv3 .splide__list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px 40px;
}

#list-adv1 .splide__list dl,
#list-adv3 .splide__list dl {
  width: calc((100% - 80px) / 3);
}

#list-adv4 .splide__list {
  gap: 20px;
}

#list-adv4 .splide__list dl {
  width: calc((100% - 80px) / 4);
}

#list-adv1 .splide__list dl.big,
#list-adv4 .splide__list dl.big,
#list-adv3 .splide__list dl.big {
  width: 445px;
}

#list-adv1 .splide__list dl dt,
#list-adv4 .splide__list dl dt,
#list-adv3 .splide__list dl dt {
  background: var(--color_typeB);
  border-radius: 50px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 8px;
  margin: 0 0 15px;
}

#list-adv1 .splide__list dl dt,
#list-adv4 .splide__list dl dt {
  margin: 15px 0 0;
}

#list-adv1 .splide__list dl h3,
#list-adv4 .splide__list dl h3,
#list-adv3 .splide__list dl h3 {
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 0 15px;
}

#list-adv1 .splide__list figcaption,
#list-adv4 .splide__list figcaption,
#list-adv3 .splide__list figcaption {
  display: block;
  margin: 0 0 15px;
}

#list-adv1 .splide__arrows,
#list-adv4 .splide__arrows,
#list-adv3 .splide__arrows {
  display: none;
}

#list-adv4 .splide__slide img {
  max-height: 170px;
}

@media screen and (max-width: 520px) {

  #list-adv1,
  #list-adv4,
  #list-adv3 {
    width: 90%;
    padding-bottom: 60px;
    margin: 30px auto;
  }

  #list-adv1 .splide__list,
  #list-adv4 .splide__list,
  #list-adv3 .splide__list {
    flex-flow: row nowrap;
    justify-content: normal;
    gap: 0;
  }

  #list-adv1 .splide__list dl,
  #list-adv4 .splide__list dl,
  #list-adv3 .splide__list dl {
    width: 100%;
    text-align: center;
  }

  #list-adv1 .splide__list dl.big,
  #list-adv4 .splide__list dl.big,
  #list-adv3 .splide__list dl.big {
    width: 100%;
  }

  #list-adv4 .splide__slide img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    max-height: 100%;
  }

  #list-adv1 .splide__arrows,
  #list-adv4 .splide__arrows,
  #list-adv3 .splide__arrows {
    display: flex;
  }
}

/**================================================== 
 adv4
================================================== **/
.aqua-adv4-btm_img {
  display: block;
  margin: 0 auto 2rem;
  max-width: var(--base-width);
  width: 90%;
  text-align: center;
}

.aqua-adv4-btm_img img {
  width: 100%;
  max-width: 620px;
}

/**================================================== 
 spec
================================================== **/
.aqua-spec {
  padding-top: 1px;
  padding-bottom: 1px;
  background: var(--color_typeB);
  color: var(--white);
}

.aqua-spec-box1 {
  width: var(--base-width);
  border: 1px solid var(--white);
  padding: 30px 20px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 260px 1fr 170px;
  grid-template-areas:
    "pic1 dl1 dl1"
    "dl2 dl2 pic2";
  gap: 10px 30px;
}
.aqua-spec-box1 .pic1 {
  grid-area: pic1;
}

.aqua-spec-box1 .pic2 {
  grid-area: pic2;
}

.aqua-spec-box1 .dl1 {
  grid-area: dl1;
}

.aqua-spec-box1 .dl2 {
  grid-area: dl2;
}


.aqua-spec-box1 dl dt.ttl {
  font-size: 2rem;
}

.aqua-spec-box1 dl dt {
  font-weight: 800;
  font-size: 1.25rem;
}
.aqua-spec dt.aqua-spec--aside {
  font-weight: 500;
  font-size: 1rem;
}
.aqua-spec-box1 dl dd {
  font-size: 0.9rem;
  margin: 15px 0 0;
}

.aqua-spec-box1 dl.dl2 dd {
  columns: 1;
}

.aqua-spec-box--measure ul {
  list-style: disc;
  margin-left: 2rem;
}

.aqua-spec .ttl-after {
  padding: 15px;
  background: var(--color_typeB-6);
  color: var(--color_typeB);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  position: relative;
}

.aqua-spec .ttl-after:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 15px 0 15px;
  border-color: var(--color_typeB-6) transparent transparent transparent;
}

.aqua-spec-result {
  width: var(--base-width);
  margin: 80px auto;
  text-align: center;
}

.aqua-spec-result strong {
  font-size: 4.25rem;
  line-height: 1.3;
}

.aqua-spec-result strong small {
  display: block;
  font-size: 2rem;
}

.aqua-spec-result b {
  display: block;
  padding: 15px;
  margin: 40px auto;
  font-size: 1.6rem;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

@media screen and (max-width: 520px) {
  .aqua-spec {
    padding: 1px 10px;
  }

  .aqua-spec-box1 {
    padding: 10px;
    margin: 20px auto;
    display: flex;
    flex-flow: column;
    gap: 10px;
    text-align: left;
  }

  .aqua-spec-box1 .pic1 img {
    max-height: 180px;
    width: auto;
    margin: 0 auto;
    display: block;
  }

  .aqua-spec-box1 dl dt.ttl {
    font-size: 1.7rem;
  }

  .aqua-spec-box1 dl dt {
    font-size: 1.1rem;
  }

  .aqua-spec-box1 dl dd {
    text-align: left;
    flex-flow: column;
  }

  .aqua-spec-box1 dl dd p {
    width: 100%;
  }

  .aqua-spec-box1 .pic2 {
    width: 80%;
    margin: 10px auto 0;
  }

  .aqua-spec .ttl-after {
    padding: 15px;
    font-size: 1.7rem;
  }

  .aqua-spec .ttl-after:after {
    border-width: 20px 15px 0 15px;
  }

  .aqua-spec-result {
    margin: 40px auto;
  }

  .aqua-spec-result strong {
    font-size: 2.4rem;
    line-height: 1.5;
    padding: 0 15px;
  }

  .aqua-spec-result strong small {
    display: block;
    font-size: 1.2rem;
  }

  .aqua-spec-result b {
    margin: 20px auto;
    font-size: 1.1rem;
    padding: 15px 0;
  }
}

/**================================================== 
 cta
================================================== **/

.aqua-cta {
  background: var(--color_typeB-3);
  padding-top: 50px;
  padding-bottom: 40px;
}

.aqua-cta.sec-after:after {
  color: var(--white);
}

.aqua-cta .aqua-titA {
  text-align: center;
}

.list-cta li {
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 15px 30px 30px;
  margin: 0 0 30px;
}

.list-cta li i {
  flex: none;
  width: 80px;
}

.list-cta li picture {
  flex: none;
  width: 172px;
}

.list-cta li dt {
  font-weight: 800;
  margin: 0 0 15px;
  font-size: 1.3rem;
}

.aqua-cta .ttl {
  text-align: center;
  color: var(--color_typeB);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 80px auto 40px;
}

.aqua-cta-box {
  text-align: center;
  border: 1px solid #bbc4d7;
  padding: 40px 0;
}

.aqua-cta-box h3 {
  color: var(--color_typeB);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 15px;
}

.aqua-cta-box .aqua-btnA {
  grid-template-columns: 1fr;
  font-size: 2rem;
  margin: 15px auto;
}

.aqua-cta-box .aqua-btnA:after {
  display: none;
}

@media screen and (max-width: 520px) {
  .list-cta li {
    flex-flow: column;
    gap: 5px;
    padding: 15px;
    margin: 30px 0 30px;
  }

  .list-cta li i {
    flex: none;
    width: 60px;
    margin-top: -30px;
  }

  .list-cta li dt {
    margin: 0;
    font-size: 1.3rem;
  }

  .list-cta li picture {
    flex: none;
    width: 150px;
  }

  .aqua-cta .ttl {
    font-size: 1.2rem;
    margin: 40px auto 20px;
  }

  .aqua-cta-box {
    padding: 15px;
  }

  .aqua-cta-box h3 {
    font-size: 1.1rem;
  }

  .aqua-cta-box .aqua-btnA {
    font-size: 1.4rem;
  }
}

/**================================================== 
 form
================================================== **/
select {
  -webkit-appearance: none;
  appearance: none;
}

.aqua-form {
  background: var(--color_typeB-3);
  padding-top: 50px;
  padding-bottom: 40px;
}

.aqua-form .aqua-titA {
  font-size: 40px;
}

.aqua-form .aqua-btnA {
  display: flex;
  justify-content: center;
  margin: 15px auto;
  height: 75px;
}

.aqua-form .aqua-btnA:after {
  display: none;
}

.aqua-form .aqua-btnA.tel {
  font-size: 33px;
}

.aqua-form .aqua-btnA.mail {
  font-size: 23px;
  gap: 15px;
}

.aqua-form .aqua-btnA.mail:before {
  content: "mail";
  font-family: var(--icons);
  font-size: 1.8em;
  font-weight: normal;
}

.aqua-form h2 {
  text-align: center;
  font-weight: 800;
  font-size: 1.6rem;
}

.aqua-form form {
  display: block;
  margin: 40px auto;
}

#entry form {
  display: block;
  border-top: 1px solid #8b8b8b;
}

.formTable {
  width: 100%;
}

.formTable tr {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
  padding: 30px 20px;
  border-bottom: 1px solid #8b8b8b;
}

.formTable th {
  width: 300px;
  font-weight: 800;
  font-size: 1.125em;
  text-align: left;
}

#entry .form-agree label span,
.formTable th span {
  display: block;
  width: fit-content;
  color: var(--black);
  background-color: #cdcdcd;
  font-size: 0.6em;
  padding: 4px 8px;
  font-weight: normal;
  margin: 8px 0;
}

#entry .form-agree label span.require,
.formTable th span.require {
  background-color: var(--color_typeR);
  color: var(--white);
}

.formTable td {
  text-align: left;
  flex: 1;
}

.formTable td h3 {
  font-size: 16px;
}

.formTable td input+h3 {
  margin-top: 20px;
}

.formTable td input[type="text"] {
  font-size: 1.1rem;
  width: 100%;
  margin-right: 10px;
  padding: 10px;
}

.formTable td textarea {
  font-size: 1.1rem;
  width: 100%;
  padding: 10px;
}

.formTable td select {
  font-size: 1.1rem;
  min-width: 15em;
  display: block;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #767676;
  background: #fff;
}

.formTable td label {
  display: block;
  margin: 0 0 8px;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.formTable td input[type="text"].size02 {
  width: 10em;
  margin: 0 0 0 10px;
}

#entry .form-agree {
  border: 1px solid #8b8b8b;
  padding: 30px;
  margin: 40px auto;
}

#entry .form-agree h3 {
  color: var(--color_typeB);
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 15px;
}

#entry .form-agree label {
  display: block;
  margin: 30px auto 0;
  text-align: center;
  font-weight: 800;
}

#entry .form-agree label span.require {
  display: inline-block;
}

#entry .form-agree a {
  text-decoration: underline;
}

#entry .form-agree a:hover {
  text-decoration: none;
}

#entry .mada {
  color: var(--color_typeR);
  font-weight: 800;
  font-size: 40px;
  text-align: center;
  margin: 0 0 20px;
}

#entry .error_messe {
  color: var(--color_typeR);
}

@media screen and (max-width: 520px) {
  .aqua-form {
    padding-top: 0;
    padding-bottom: 1px;
  }

  .aqua-form .aqua-titA {
    font-size: 22px;
    padding-top: 20px;
  }

  .aqua-form .aqua-btnA {
    height: 55px;
  }

  .aqua-form .aqua-titB {
    padding-top: 60px;
  }

  .aqua-form .aqua-btnA.tel {
    font-size: 20px;
  }

  .aqua-form .aqua-btnA.mail {
    font-size: 15px;
    gap: 10px;
  }

  .aqua-form .aqua-btnA.mail:before {
    content: "mail";
    font-family: var(--icons);
    font-size: 1.8em;
    font-weight: normal;
  }

  .aqua-form h2 {
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
  }

  .aqua-form form {
    display: block;
    margin: 40px auto;
  }

  .formTable tr {
    flex-wrap: column;
    gap: 15px;
    padding: 15px 0;
  }

  .formTable th {
    width: 100%;
  }

  .formTable td h3 {
    font-size: 16px;
  }

  #entry .form-agree {
    padding: 15px;
  }

  #entry .form-agree h3 {
    color: var(--color_typeB);
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 15px;
  }

  #entry .mada {
    color: var(--color_typeR);
    font-weight: 800;
    font-size: 40px;
    text-align: center;
    margin: 0 0 20px;
  }

  #entry .error_messe {
    color: var(--color_typeR);
  }
}


/* 追加CSS */
.works--list {
  max-width: var(--base-width);
  width: 90%;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.works--list_item {
  flex: 0 1 45%;
  max-width: 340px;
}

.works--list_item img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.works--list_item h3 {
  background: var(--color_typeB);
  border-radius: 50px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 8px;
  margin: 0 0 15px;
}

@media screen and (max-width: 520px) {
  .works--list {
    flex-direction: column;
  }

  .works--list_item {
    max-width: 100%;
  }

  .works--list_item img {
    margin-bottom: 0.5rem;
  }

  .works--list_item h3 {
    margin-bottom: 0.5rem;
  }
}