@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: #1F2C3F;
  font-family: "Zen Kaku Gothic Antique", YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  text-decoration: none;
  opacity: 0.75;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

@useurl ('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique&display=swap');
 /***************************

layout/_header.scss

***************************/
header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
header.is-show {
  box-shadow: -2px 2px 10px -4px rgba(0, 0, 0, 0.4);
}

.header__logo {
  font-size: 0;
  padding: 0;
}

.header__ttl-sub {
  font-size: .9rem;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 10px 40px;
  }

  .header__nav__item {
    font-size: 1.5rem;
    font-weight: bold;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding: 15px 20px;
  }

  .header__logo {
    width: 140px;
  }

  .header__ttl-sub {
    display: none;
  }
}
/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

@media screen and (min-width: 769px) {
  .gnav {
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .gnav {
    display: none;
  }
}
 /***************************

layout/_footer.scss

***************************/
footer {
  text-align: center;
  padding: 60px 0 30px;
}
footer small {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: .9rem;
}

footer .toTop {
  border-top: 1px solid #211F1F;
  border-bottom: 1px solid #211F1F;
  margin-bottom: 55px;
}

footer .toTop a {
  display: block;
  padding: 20px 0;
}

footer .toTop span {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  display: block;
  font-weight: 800;
}

.footer__fixedLink {
  position: fixed;
  z-index: 9998;
  display: none;
}

.footer__fixedLink__sodan,
.footer__fixedLink__contact {
  display: block;
  font-weight: bold;
  padding: 15px 15px;
  background: #fff;
}

.footer__fixedLink__sodan {
  background: linear-gradient(to bottom, #097ACE, #00A8EA, #8AD3EC);
  color: #fff;
}

@media screen and (min-width: 451px) {
  .footer__fixedLink {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer__fixedLink__sodan,
  .footer__fixedLink__contact {
    writing-mode: vertical-rl;
    padding: 25px 15px;
    border-radius: 3px 0 0 3px;
    box-shadow: -2px 2px 10px -4px rgba(0, 0, 0, 0.4);
  }

  .footer__fixedLink__sodan {
    margin-bottom: 3px;
    padding: 70px 15px;
  }
}
@media screen and (max-width: 450px) {
  .footer__fixedLink {
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: -2px -1px 10px -4px rgba(0, 0, 0, 0.4);
  }

  .footer__fixedLink__sodan,
  .footer__fixedLink__contact {
    flex: 1 1 auto;
  }

  .footer__fixedLink__inner {
    display: flex;
  }
}
/***************************

object/component/_heading.scss

***************************/
 /***************************

object/component/_box.scss

***************************/
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_s {
  max-width: 1090px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 1224px) and (min-width: 451px) {
  .container,
  .container_s {
    padding-right: 60px;
  }
}
/***************************

object/component/_button.scss

***************************/
/***************************

object/component/_form.scss

***************************/
/***************************

object/object/project/_home.scss

***************************/
.wetarea-mv {
  padding: 145px 0 0;
}
.wetarea-mv img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .wetarea-mv {
    padding-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .wetarea-mv {
    padding-top: 60px;
  }
}

.wetarea01 {
  padding: 80px 0 40px;
}
@media screen and (max-width: 450px) {
  .wetarea01 {
    padding-top: 40px;
  }
}

.wetarea01__hdgSub {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 450px) {
  .wetarea01__hdgSub {
    font-size: 1.6rem;
  }
}

.wetarea01__hdg {
  text-align: center;
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 35px;
}
@media screen and (max-width: 450px) {
  .wetarea01__hdg {
    font-size: 3rem;
  }
}

.wetarea01__guarantee {
  background: #E4F8FC;
  border-radius: 4px;
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.3;
  padding: 7px 15px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 450px) {
  .wetarea01__guarantee {
    font-size: 1.5rem;
  }
}

.wetarea01__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.wetarea01__list__item {
  width: 100%;
  border: 1px solid #CACAD9;
  border-radius: 5px;
}
.wetarea01__list__item.--osusume {
  border: 3px solid #097ACE;
  border-radius: 9px;
}
.wetarea01__list__item.--osusume .wetarea01__list__hdgWrap {
  background: radial-gradient(#8ad3ec, #00a8ea, #097ace);
  min-height: 86px;
}
.wetarea01__list__item.--premium .wetarea01__list__hdgWrap {
  background: radial-gradient(#255a97, #1c2537);
}
@media screen and (min-width: 671px) {
  .wetarea01__list__item {
    width: calc((100% - 40px) / 3);
    min-width: 300px;
  }
}

.wetarea01__list__hdgWrap {
  background: radial-gradient(#ade1fa, #81affc);
  text-align: center;
  color: #fff;
  font-size: 2.1rem;
  position: relative;
  border-radius: 4px 4px 0 0;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wetarea01__list__balloon {
  width: fit-content;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.25;
  color: #1F2C3F;
  text-align: center;
  background: #FCEB76;
  border-radius: 9999px;
  padding: 0 29px;
  position: relative;
  margin: -40px 0 0;
}
.wetarea01__list__balloon:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 6px solid #fceb76;
  border-bottom: 0;
  position: absolute;
  bottom: -6px;
  left: calc(50% - 4px);
}

.wetarea01__list__contents {
  background: #fff;
  border-radius: 0 0 4px 4px;
  padding: 20px 17px;
}

.wetarea01__list__note {
  text-align: center;
  line-height: 1.1;
}

.wetarea01__list__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  line-height: 1.4;
  color: #1F2E3F;
}
.wetarea01__list__price.--red {
  color: #F74870;
}
.wetarea01__list__price.--red .wetarea01__list__price__about,
.wetarea01__list__price.--red .wetarea01__list__price__unit {
  font-size: 3.2rem;
}
.wetarea01__list__price.--red .wetarea01__list__price__num {
  font-size: 7.2rem;
}
.wetarea01__list__price.--red .wetarea01__list__price__tax {
  font-size: 1.6rem;
}

.wetarea01__list__price__about {
  font-size: 2.4rem;
  font-weight: bold;
}

.wetarea01__list__price__num {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 4.8rem;
  line-height: .8;
}

.wetarea01__list__price__unit {
  font-size: 2.1rem;
  text-align: right;
  font-weight: bold;
}

.wetarea01__list__price__tax {
  font-size: 1.4rem;
  display: block;
  line-height: 1;
}

.wetarea01__list__arrow {
  text-align: center;
  padding: 7px 0;
}

.wetarea01__list__box {
  line-height: 1.4;
  background: #F4F4F9;
  border-radius: 4px;
  padding: 15px;
}

.wetarea01__list__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #5E8FBC;
  color: #fff;
  border: 1px solid #5E8FBC;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: bold;
  min-height: 57px;
  padding: 10px 15px 10px 30px;
  transition: .3s;
}
.wetarea01__list__btn:after {
  content: "";
  display: block;
  width: 27px;
  aspect-ratio: 1 / 1;
  background: url(../img/equipment/btn_arrow.png) no-repeat center/9px 5px;
  background-color: #fff;
  border: 1px solid #5E8FBC;
  border-radius: 50%;
}
.wetarea01__list__btn:hover {
  background-color: #fff;
  color: #5E8FBC;
  opacity: 1;
}

.wetarea02 {
  padding: 40px 0;
  background: linear-gradient(to bottom, #fff, #E4F8FC 183px);
}

.wetarea02__pack + .wetarea02__pack {
  margin-top: 60px;
}

.wetarea02__pack__hdgWrap {
  min-height: 145px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: radial-gradient(#ade1fa, #81affc);
  color: #fff;
  line-height: 1.3;
  border-radius: 5px 5px 0 0;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 2px 2px 10px -4px rgba(0, 0, 0, 0.4);
}
.wetarea02__pack__hdgWrap:after {
  content: "";
  display: block;
  width: 44px;
  aspect-ratio: 1 / 1;
  background: url(../img/equipment/pack_arrow.png) no-repeat center/14px 8px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 22px);
  right: 48px;
  transition: .3s;
}
.wetarea02__pack__hdgWrap.--close {
  border-radius: 5px;
}
.wetarea02__pack__hdgWrap.--close:after {
  transform: rotate(180deg);
}
.wetarea02__pack.--osusume .wetarea02__pack__hdgWrap {
  background: radial-gradient(#8ad3ec, #00a8ea, #097ace);
}
.wetarea02__pack.--premium .wetarea02__pack__hdgWrap {
  background: radial-gradient(#255a97, #1c2537);
}
@media screen and (max-width: 450px) {
  .wetarea02__pack__hdgWrap {
    padding-right: 50px;
    min-height: 120px;
  }
  .wetarea02__pack__hdgWrap:after {
    width: 32px;
    right: 12px;
    background-size: 10px 6px;
  }
}

.wetarea02__pack__hdg {
  font-size: 3.6rem;
  font-weight: bold;
}
@media screen and (max-width: 450px) {
  .wetarea02__pack__hdg {
    font-size: 2.6rem;
  }
}

.wetarea02__pack__hdgSub {
  color: #54ACDF;
  background: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 4px 15px;
}
@media screen and (max-width: 450px) {
  .wetarea02__pack__hdgSub {
    font-size: 1.3rem;
    padding: 4px 7px;
  }
}

.wetarea02__pack__contents {
  background: #fff;
  padding: 20px 65px 40px;
  border-radius: 0 0 5px 5px;
  box-shadow: 2px 2px 10px -4px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .wetarea02__pack__contents {
    padding: 20px 20px 40px;
  }
}

.wetarea02__pack__text {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.wetarea02__pack__text span {
  vertical-align: text-top;
}
@media screen and (max-width: 450px) {
  .wetarea02__pack__text {
    font-size: 1.6rem;
  }
}

.wetarea02__pack__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 35px 0;
}

.wetarea02__pack__list__item {
  width: calc(50% - 12px);
  max-width: 454px;
}

.wetarea02__pack__list__hdg {
  background: #1F2F3F;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 15px;
}
@media screen and (max-width: 450px) {
  .wetarea02__pack__list__hdg {
    font-size: 2rem;
  }
}

.wetarea02__pack__list__model {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.wetarea02__pack__list__image {
  margin-bottom: 10px;
}

.wetarea02__pack__list__hdg02 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: normal;
}
.wetarea02__pack__list__hdg02::after {
  content: "";
  background: #34535F;
  height: 1px;
  flex: 1 1 auto;
}

.wetarea02__pack__list__spec {
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
}

@media screen and (max-width: 768px) {
  .wetarea02__pack__list__item {
    width: 100%;
  }
}
.wetarea02__priceBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  margin-top: 35px;
  padding-top: 35px;
  border-top: 2px dotted #CDD5D7;
}

.wetarea02__priceArrow {
  width: 118px;
  height: 92px;
  text-align: center;
  background: url(../img/equipment/price_arrow_bg.png) no-repeat center/contain;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .wetarea02__priceBox {
    flex-direction: column;
  }

  .wetarea02__priceArrow {
    width: 118px;
    height: 92px;
    background: url(../img/equipment/price_arrow_bg_sp.png) no-repeat center/100% 100%;
  }
}
.wetarea03 {
  padding: 55px 0 105px;
}

.wetarea04 {
  background: url(../img/equipment/maintenance_bg.jpg) no-repeat top/100% auto;
  background-color: #e2f3fd;
  padding: 145px 0;
}
@media screen and (max-width: 450px) {
  .wetarea04 {
    padding-top: 80px;
  }
}

.wetarea04__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px 0;
  margin-top: 45px;
}

.wetarea04__list__item {
  width: calc(50% - 12px);
  background: #fff;
  padding: 40px 37px 40px 42px;
}

.wetarea04__list__hdg {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #4F719E;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.6;
}

.wetarea04__list__hdg__ico {
  background: #8ED3F4;
  width: 82px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .wetarea04__list__item {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .wetarea04__list {
    gap: 15px;
  }

  .wetarea04__list__item {
    padding: 20px;
  }

  .wetarea04__list__hdg {
    gap: 10px;
  }

  .wetarea04__list__hdg__ico {
    width: 70px;
  }
}
.wetarea05 {
  padding: 45px 0;
}

.wetarea05__hdg {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .wetarea05__hdg {
    font-size: 1.8rem;
  }
}

.wetarea05__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(to right, #097ACE, #00A8EA, #8AD3EC);
  color: #fff;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 4px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 2px 2px 10px -4px rgba(0, 0, 0, 0.4);
}
.wetarea05__btn:before {
  content: "";
  width: 44px;
  aspect-ratio: 1 / 1;
  display: block;
  background: url(../img/equipment/ico_mail@2x.png) no-repeat center/17px 16px;
  background-color: #E9F5FA;
  border-radius: 50%;
}

.p-country-name {
  display: none;
}

.form-notice {
  color: red;
  font-weight: bold;
}

.main.subpage.equipment {
  margin-top: 0;
}

.wetarea06 .hdg_box {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.wetarea06 .hdg_box span {
  background-color: #131312;
  color: white;
  padding: 10px 30px;
}
.wetarea06 .tel_box {
  display: flex;
  max-width: 1000px;
  width: 100%;
  margin: 40px auto 50px;
}
@media screen and (max-width: 600px) {
  .wetarea06 .tel_box {
    flex-wrap: wrap;
  }
}
.wetarea06 .tel_box > li {
  width: calc(100% / 2);
  text-align: center;
  border-left: 1px dotted #1F1F1F;
}
.wetarea06 .tel_box > li > h3 {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}
.wetarea06 .tel_box > li:first-child {
  border-left: 0;
}
@media screen and (max-width: 768px) {
  .wetarea06 .tel_box > li {
    border-left: 0;
    margin-top: 20px;
  }
  .wetarea06 .tel_box > li::before {
    content: "";
    display: inline-block;
    padding-top: 10px;
    max-width: 400px;
    width: 100%;
    height: 1px;
    border-top: 1px dotted #1F1F1F;
  }
  .wetarea06 .tel_box > li:last-child {
    border-left: 0;
  }
  .wetarea06 .tel_box > li:first-child {
    border-left: 0;
    margin-top: 0;
  }
  .wetarea06 .tel_box > li:first-child::before {
    content: none;
  }
}
@media screen and (max-width: 600px) {
  .wetarea06 .tel_box > li {
    width: 100%;
  }
}
.wetarea06 .tel_box .tel {
  margin-top: 5px;
}
.wetarea06 .tel_box .tel a {
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1;
  font-size: 24px;
}
.wetarea06 .tel_box .tel a::before {
  content: url(../img/equipment/common/icn_phone.png);
  display: inline-block;
  margin-right: 7px;
  vertical-align: top;
}

.soudan button {
  outline: none;
  border: none;
}
.soudan table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}
.soudan input[type=text],
.soudan input[type=tel],
.soudan select {
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-size: 1.6rem;
  background: #EBEBEB;
  color: #000;
  margin: 2px;
  outline: none;
  padding: 10px;
  width: 100%;
}
.soudan input[type=text]:focus,
.soudan select:focus {
  border-color: #1f1f1f;
}
.soudan select {
  padding: 0 10px;
  width: inherit;
  min-width: 7em;
  height: 38px;
}
.soudan textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #EBEBEB;
  border: none;
  padding: 10px;
  outline: none;
  resize: vertical;
  width: 100%;
}
.soudan textarea:focus {
  border-color: #1f1f1f;
}
.soudan input[type=checkbox],
.soudan input[type=radio] {
  background: #EBEBEB;
  cursor: pointer;
  margin-right: .5em;
}
.soudan textarea::placeholder,
.soudan input::placeholder {
  font-size: 1.4rem;
  color: #777777;
}

.form_box {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.form_box .req {
  color: #FF0000;
}

.form_box .note {
  margin-bottom: 30px;
}

.form_box .note,
.form_box th {
  font-weight: bold;
  text-align: left;
  padding-left: 30px;
}

.form_box .other {
  vertical-align: top;
}

.form_box th {
  white-space: nowrap;
  width: 180px;
}

.form_box input,
.form_box textarea {
  max-width: 550px;
  width: 100%;
}

.form_box th,
.form_box td {
  padding: 15px 0 15px 30px;
}

.form_box tr,
.form_box table {
  background-image: linear-gradient(to right, #959595, #959595 1px, transparent 1px, transparent 4px);
  background-size: 4px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
}

.form_box table {
  background-position: top;
}

.form_box .wrap-btn01 {
  margin: 30px auto 0;
  display: block;
  background: transparent;
  padding: 0;
}

.form .outer_box {
  border-top: 3px solid #1F1F1F;
  border-bottom: 3px solid #1F1F1F;
  padding: 3px 0;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 50px;
}

.form .outer_box ul {
  border-top: 1px solid #1F1F1F;
  border-bottom: 1px solid #1F1F1F;
  padding: 15px 20px;
}

.form .outer_box .txt {
  max-width: 512px;
  width: 100%;
  margin-right: 15px;
  line-height: 1.8;
}

.form .outer_box .img {
  display: flex;
}

.form .outer_box .img img {
  display: inline-block;
  margin-right: 20px;
}

@media screen and (max-width: 880px) {
  .form .outer_box ul {
    flex-wrap: wrap-reverse;
    justify-content: center;
  }

  .form .outer_box .txt {
    max-width: 100%;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .form_box table th,
  .form_box table td {
    display: block;
    width: 100%;
  }

  .form_box .note,
  .form_box th, .form_box td {
    padding-left: 0;
  }

  .form_box th {
    padding-bottom: 0;
  }

  .form_box input,
  .form_box textarea {
    max-width: 100%;
  }
}
.wrap-btn01 {
  position: relative;
  width: 100%;
  max-width: 250px;
}

.wrap-btn01.long {
  max-width: 500px;
}

.wrap-btn01 a {
  display: block;
}

.wrap-btn01::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  display: inline-block;
  transition: .3s;
}

.wrap-btn01::before {
  display: none;
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  display: inline-block;
  transition: .3s;
  background-color: #000;
}

.wrap-btn01:hover::after {
  right: 15px;
  border-color: #000;
}

.wrap-btn01:hover::before {
  display: block;
}

.btn01 {
  padding: 17px 15px;
  text-align: center;
  width: 250px;
  cursor: pointer;
  color: #FFF;
  transition: all 0.3s;
  position: relative;
  background-color: #201F1F;
  font-size: 1.6rem;
}

.btn01 span {
  transition: all 0.3s;
}

.btn01::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(0, 0, 0, 0.5);
  transform: scale(0.1, 1);
}

.btn01::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.1);
}

.btn01:hover span {
  letter-spacing: 2px;
}

.btn01:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.btn01:hover {
  background-color: transparent;
  opacity: 1;
}

.btn01:hover::after {
  opacity: 0;
  transform: scale(0.1, 1);
}

.btn01:hover span {
  color: #000;
}

.long .btn01 {
  width: 100%;
  max-width: 500px;
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-item0 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
 /***************************

object/utility/_background.scss

***************************/
 /***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

 /***************************

object/utility/_text.scss

***************************/
.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }

  .t-left_pc {
    text-align: left;
  }

  .t-right_pc {
    text-align: right;
  }
}
.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.fs-31 {
  font-size: 31px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--white {
  color: #fff;
}

.fc--black {
  color: #1F2C3F;
}

.fc--red {
  color: #E93961;
}

.txtdeco-none {
  text-decoration: none;
}

 /***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}
