@charset "UTF-8";
/*
Theme Name: sanctuary-theme
Theme URI: 
Description: huevo　汎用テーマ
Version: 1.0
Author: huevo
*/
/*////////////////////////////////////////////////////////////

Foundation

////////////////////////////////////////////////////////////*/
/**
/* Base
============================================================*/
:root {
  /* bodyの背景色 */
  --body-bg-color: #fff;
  /* メインのフォントファミリー */
  --main-font: "Noto Serif JP", sans-serif;
  --main-font-en: "Bellefair", serif;
  /* 使用カラー */
  --main-color: #C5A882;
  --sub-color: #faf7f3;
  /* メインのフォントカラー */
  --main-font-color: #333;
  --link-color: #333;
  /* h2~h5タグまでのフォントウェイト */
  --h-tag-weight: bold;
}

/**
* box-sizing
*
* padding、borderをwidthに含める
--------------------------------------------------*/
html {
  box-sizing: border-box;
}

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

/**
* フォントの基本設定
--------------------------------------------------*/
html {
  font-size: 10px;
  line-height: 1.8;
  font-family: var(--main-font);
  letter-spacing: 0.02em;
}

body {
  font-size: 1.6rem;
  color: var(--main-font-color);
  background-color: #EFEFEF;
}

/**
* 斜体をリセット
- - - - - - - - - - - - - - - - - - - - */
i,
cite,
em,
address,
dfn {
  font-style: normal;
}

/**
* 見出しの基本設定
- - - - - - - - - - - - - - - - - - - - */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  color: inherit;
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: 0.2rem;
}

p {
  text-align: justify;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.6rem;
}

/**
* reset margin and padding
--------------------------------------------------*/
/**
* 見出し
- - - - - - - - - - - - - - - - - - - - */
html, body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
ul, ol, dl,
blockquote, p, address,
hr,
table,
fieldset, figure,
pre {
  margin-top: 0;
  margin-bottom: 0;
}

/**
* list
- - - - - - - - - - - - - - - - - - - - */
li > ul, li > li {
  margin-left: 0;
}

/**
* dd
- - - - - - - - - - - - - - - - - - - - */
dd {
  margin-left: 0;
}

/**
* table
--------------------------------------------------*/
table {
  width: 100%;
}
table th {
  text-align: left;
}

/**
* img
--------------------------------------------------*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/**
* リンクの基本設定
--------------------------------------------------*/
a {
  color: var(--link-color);
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: underline;
}

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

Layout

////////////////////////////////////////////////////////////*/
/*
/* Layout - body
============================================================*/
body {
  padding: 0;
}

/**
/* Layout - wrapper
============================================================*/
.l-wrapper {
  width: 100%;
  overflow: hidden;
}

/**
/* Layout - header
============================================================*/
/* header
- - - - - - - - - - - - - - - - - - */
.l-header {
  padding: 40px 50px 0;
  width: 100%;
  min-width: 1280px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-header .header-logo {
  margin-bottom: 10px;
}
.l-header .header-logo a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.l-header .header-logo a img {
  margin-right: 10px;
  width: 40px;
  height: auto;
  display: block;
}
.l-header .header-logo a span {
  font-size: 2.8rem;
  font-family: var(--main-font);
  color: #000;
  line-height: 1;
  font-weight: 500;
}
.l-header .header-logo-sp {
  display: none;
}
.l-header .header-address {
  font-size: 1.2rem;
  color: #000;
  line-height: 1;
}
.l-header .header-menu {
  padding-top: 5px;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-header .header-menu > ul {
  list-style-type: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.l-header .header-menu > ul > li {
  padding: 0 15px;
}
.l-header .header-menu > ul > li:not(.l-header .header-menu > ul > li:first-of-type) {
  position: relative;
}
.l-header .header-menu > ul > li:not(.l-header .header-menu > ul > li:first-of-type)::before {
  content: "/";
  color: #000;
  position: absolute;
  left: -4px;
  top: 0;
}
.l-header .header-menu > ul > li > a {
  color: #000;
}
.l-header.is-home .header-logo a span {
  color: #fff;
}
.l-header.is-home .header-address {
  color: #fff;
}
.l-header.is-home .header-menu > ul > li:not(.l-header.is-home .header-menu > ul > li:first-of-type)::before {
  color: #fff;
}
.l-header.is-home .header-menu > ul > li > a {
  color: #fff;
}

@media only screen and (max-width: 1600px) {
  .l-header {
    padding: 20px 20px 0;
  }
  .l-header .header-logo a img {
    width: 30px;
  }
  .l-header .header-logo a span {
    font-size: 2rem;
  }
  .l-header .header-menu ul li a {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 430px) {
  .l-header {
    padding: 15px 20px 0;
    min-width: auto;
    z-index: 10;
  }
  .l-header .header-logo {
    margin-bottom: 10px;
  }
  .l-header .header-logo a {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  .l-header .header-logo a img {
    margin-right: 10px;
    width: 25px;
    height: auto;
    display: block;
  }
  .l-header .header-logo a span {
    font-size: 1.2rem;
    font-family: var(--main-font);
    line-height: 1;
    font-weight: 500;
  }
  .l-header .header-logo-sp {
    display: block;
  }
  .l-header .header-logo-sp img {
    margin: 0 auto;
    width: 60px;
  }
  .l-header .header-logo-sp span {
    padding-top: 10px;
    text-align: center;
    display: block;
  }
  .l-header .header-address {
    display: none;
  }
  .l-header .header-menu {
    padding: 70px 0 0;
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
  }
  .l-header .header-menu > ul {
    list-style-type: none;
    padding: 0;
    margin-top: 50px;
    display: block;
  }
  .l-header .header-menu > ul > li {
    padding: 8px 15px;
    text-align: center;
  }
  .l-header .header-menu > ul > li:not(.l-header .header-menu > ul > li:first-of-type)::before {
    display: none;
  }
  .l-header .header-menu > ul > li > a {
    font-size: 1.6rem;
    color: #000;
  }
}
/* sp menu button
- - - - - - - - - - - - - - - - - - */
.sp-menu {
  display: none;
}

@media only screen and (max-width: 430px) {
  .sp-menu {
    padding: 10px;
    width: 50px;
    height: 50px;
    display: block;
    position: fixed;
    top: 4px;
    right: 10px;
    z-index: 11;
  }
  .sp-menu span {
    width: 20px;
    height: 2px;
    background-color: #000;
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 15px;
    transform-origin: center center;
  }
  .sp-menu span:nth-of-type(1) {
    top: 15px;
  }
  .sp-menu span:nth-of-type(2) {
    top: 24px;
  }
  .sp-menu span:nth-of-type(3) {
    bottom: 15px;
  }
  .sp-menu.is-active span {
    background-color: #000;
  }
  .sp-menu.is-active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .sp-menu.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-menu.is-active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  .sp-menu.is-home span {
    background-color: #fff;
  }
}
.fixed-btn {
  height: 100px;
  background: linear-gradient(180deg, #045FC1 0%, #04326A 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.fixed-btn .btn-tel {
  padding: 0 30px;
  font-size: 2rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.fixed-btn .btn-tel::before {
  content: "";
  margin-right: 10px;
  aspect-ratio: 1/1;
  width: 38px;
  background-image: url(assets/images/common/icon_tel.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
}
.fixed-btn .btn-mail {
  aspect-ratio: 1/1;
  width: 100px;
  border-left: 1px solid #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.fixed-btn .btn-mail img {
  width: 30px;
}

@media only screen and (max-width: 430px) {
  .fixed-btn {
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, #045FC1 0%, #04326A 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 2;
  }
  .fixed-btn .btn-tel {
    padding: 0 30px;
    width: calc(100% - 60px);
    font-size: 2rem;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .fixed-btn .btn-tel::before {
    content: "";
    margin-right: 10px;
    aspect-ratio: 1/1;
    width: 38px;
    background-image: url(assets/images/common/icon_tel.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
  }
  .fixed-btn .btn-mail {
    aspect-ratio: 1/1;
    width: 60px;
    border-left: 1px solid #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .fixed-btn .btn-mail img {
    width: 30px;
  }
}
/**
/* Layout - contents
============================================================*/
.l-contents {
  padding-bottom: 100px;
  width: 100%;
}
@media only screen and (max-width: 822px) {
  .l-contents {
    padding-bottom: 60px;
  }
}

/**
/* Layout - inner
============================================================*/
.l-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 1120px;
}
@media only screen and (max-width: 430px) {
  .l-inner {
    width: 100%;
  }
}

/**
/* Layout - sidebar items
============================================================*/
.l-sidebar {
  align-self: stretch;
}

/**
/* Layout - footer
============================================================*/
.footer-contact {
  padding-bottom: 100px;
}
.footer-contact .contact-card {
  padding: 60px 30px 30px;
  background-image: url(assets/images/common/footer_contact_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.footer-contact .contact-card .card-ttl {
  position: relative;
}
.footer-contact .contact-card .card-ttl::after {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.footer-contact .contact-card .card-ttl .en,
.footer-contact .contact-card .card-ttl .ja {
  color: #fff;
  text-align: center;
  display: block;
}
.footer-contact .contact-card .card-ttl .en {
  padding-top: 10px;
  font-size: 6rem;
  font-family: var(--main-font-en);
  text-transform: uppercase;
}
.footer-contact .contact-card .card-ttl .ja {
  padding-top: 5px;
  font-size: 2.2rem;
}
.footer-contact .contact-card .card-text {
  margin-top: 80px;
  line-height: 3.4rem;
  color: #fff;
  text-align: center;
}
.footer-contact .contact-card .card-btns {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
.footer-contact .contact-card .card-btns .btn {
  width: calc(50% - 10px);
}
.footer-contact .contact-card .card-btns .btn:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer-contact .contact-card .card-btns .btn:nth-of-type(2)::before {
  content: "";
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-image: url(assets/images/common/icon_tel.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
}

@media only screen and (max-width: 430px) {
  .footer-contact {
    padding-bottom: 60px;
  }
  .footer-contact .contact-card {
    padding: 40px 20px 20px;
  }
  .footer-contact .contact-card .card-ttl {
    position: relative;
  }
  .footer-contact .contact-card .card-ttl::after {
    bottom: -30px;
  }
  .footer-contact .contact-card .card-ttl .en,
  .footer-contact .contact-card .card-ttl .ja {
    color: #fff;
    text-align: center;
    display: block;
  }
  .footer-contact .contact-card .card-ttl .en {
    font-size: 4.5rem;
  }
  .footer-contact .contact-card .card-ttl .ja {
    font-size: 1.8rem;
  }
  .footer-contact .contact-card .card-text {
    margin-top: 70px;
    font-size: 1.5rem;
    line-height: 3rem;
  }
  .footer-contact .contact-card .card-btns {
    display: block;
  }
  .footer-contact .contact-card .card-btns .btn {
    width: 100%;
  }
  .footer-contact .contact-card .card-btns .btn:nth-of-type(2) {
    margin-top: 10px;
  }
}
.l-footer {
  padding: 60px 0 120px;
  width: 100%;
  background-color: #000;
}
.l-footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-footer .footer-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.l-footer .footer-logo a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.l-footer .footer-logo img {
  margin-right: 10px;
  width: 40px;
}
.l-footer .footer-logo span {
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}
.l-footer .footer-instagram {
  margin-left: 10px;
}
.l-footer .footer-instagram img {
  width: 30px;
  height: 30px;
}
.l-footer .footer-address {
  margin-top: 25px;
  color: #fff;
  line-height: 3.4rem;
}
.l-footer .footer-menu {
  width: 37.037037037%;
  position: relative;
}
.l-footer .footer-menu ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-footer .footer-menu ul li {
  width: 50%;
}
.l-footer .footer-menu ul li:nth-of-type(n + 3) {
  padding-top: 15px;
}
.l-footer .footer-menu ul li a {
  font-size: 1.6rem;
  color: #fff;
}
.l-footer .footer-copy {
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #707070;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 430px) {
  .l-footer {
    padding: 60px 0 80px;
    width: 100%;
  }
  .l-footer .footer-inner {
    display: block;
  }
  .l-footer .footer-logo a img {
    margin-right: 10px;
    width: 30px;
  }
  .l-footer .footer-logo a span {
    font-size: 1.6rem;
  }
  .l-footer .footer-instagram {
    width: 25px;
    height: 25px;
    margin-left: 10px;
    align-items: flex-start;
  }
  .l-footer .footer-instagram img {
    width: 25px;
    height: 25px;
  }
  .l-footer .footer-address {
    font-size: 1.5rem;
    color: #fff;
  }
  .l-footer .footer-menu {
    margin-top: 60px;
    width: 100%;
    position: static;
  }
  .l-footer .footer-menu ul li {
    width: 50%;
  }
  .l-footer .footer-menu ul li:nth-of-type(n + 3) {
    padding-top: 10px;
  }
  .l-footer .footer-menu ul li a {
    font-size: 1.4rem;
    color: #fff;
  }
  .l-footer .footer-copy {
    padding-top: 30px;
    text-align: center;
    position: static;
  }
}
/*////////////////////////////////////////////////////////////

Object - Component

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

Object - Project

////////////////////////////////////////////////////////////*/
/**
/* page common
============================================================*/
section {
  padding-top: 100px;
}
@media only screen and (max-width: 430px) {
  section {
    padding-top: 60px;
  }
}

.btn {
  font-size: 1.6rem;
  color: #fff;
  line-height: 5rem;
  text-align: center;
  background: linear-gradient(180deg, #045FC1 0%, #04326A 100%);
  display: block;
  position: relative;
}
.btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}

.comingsoon {
  padding: 300px 0 150px;
}
.comingsoon h2 {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
}
.comingsoon p {
  text-align: center;
}

@media only screen and (max-width: 430px) {
  .comingsoon {
    padding: 150px 0 100px;
  }
  .comingsoon h2 {
    font-size: 3rem;
  }
  .comingsoon p {
    padding-top: 10px;
    font-size: 1.4rem;
  }
}
/**
/* Project - global
============================================================*/
.p-global {
  width: 60%;
}
.p-global > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-global > ul > li > a {
  padding: 20px 0;
  display: block;
}
.p-global-has-sub {
  position: relative;
}
.p-global-sub {
  padding: 0;
  list-style-type: none;
  background-color: #fff;
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 2;
}
.p-global-sub > li > a {
  padding: 0 10px;
  display: block;
}
.p-global__button--toggle {
  display: none;
}
.p-global__button--close {
  display: none;
}

/* 
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 822px) {
  .p-global {
    padding-top: 60px;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
  }
  .p-global > ul {
    display: block;
  }
  .p-global > ul > li > a {
    padding: 15px 0;
    text-align: center;
  }
  .p-global-sub {
    position: static;
  }
  .p-global-sub > li > a {
    text-align: center;
  }
  .p-global__button--toggle, .p-global__button--close {
    aspect-ratio: 1/1;
    width: 40px;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
}
/**
/* Project - header items
============================================================*/
.p-header {
  height: 60px;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}
.p-header__inner {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.p-header__logo a {
  width: 75px;
  height: auto;
  display: block;
}
.p-header__logo a img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 822px) {
  .p-header__logo a {
    margin: 0;
  }
}
.p-header__logo--sp {
  margin-bottom: 20px;
}
@media only screen and (max-width: 822px) {
  .p-header__logo--sp {
    display: none;
  }
}
.p-header__logo--sp a {
  margin: 0 auto;
}

.p-header {
  background-color: #fff;
}
.p-header__inner {
  min-height: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.p-header__logo a {
  width: 75px;
  height: auto;
  display: block;
}
.p-header__logo a img {
  width: 100%;
  height: auto;
  display: block;
}
.p-header__logo--sp {
  width: 75px;
  display: none;
}
@media only screen and (max-width: 822px) {
  .p-header__logo--sp {
    margin: 0 auto 40px;
    display: block;
  }
}

/* max768px
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 822px) {
  .p-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .p-header__logo--sp {
    margin: 0 auto 40px;
    display: block;
  }
}
/**
/* Project - footer items
============================================================*/
/* totop
------------------------------------------------------------*/
.p-footer__address {
  padding: 20px 0;
  font-size: 1.6rem;
}
.p-footer__map {
  width: 100%;
}
.p-footer__map iframe {
  width: 100%;
  height: 400px;
}
.p-footer__global ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-footer__global ul li {
  padding: 0 15px;
}
.p-footer__copy {
  padding: 15px 0;
  font-size: 12px;
  text-align: center;
}

@media only screen and (max-width: 822px) {
  .p-footer__address {
    padding: 20px 0;
    font-size: 1.6rem;
  }
  .p-footer__map {
    width: 100%;
  }
  .p-footer__map iframe {
    width: 100%;
    height: 400px;
  }
  .p-footer__global ul {
    display: none;
  }
}
/**
/* project - sidebar items
============================================================*/
.p-sidebar {
  width: 100%;
}
@media only screen and (max-width: 430px) {
  .p-sidebar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 822px) {
  .p-sidebar {
    width: 28%;
    display: block;
  }
}
.p-sidebar img {
  max-width: 100%;
}
.p-sidebar__item {
  margin-bottom: 50px;
}
@media only screen and (max-width: 430px) {
  .p-sidebar__item {
    width: 48%;
  }
}
@media only screen and (max-width: 1064px) {
  .p-sidebar__item {
    width: 100%;
  }
}
.p-sidebar__heading {
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
  font-size: 16px;
  font-size: _set_vw(16, _remove-unit(375px));
  line-height: 1.875;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media only screen and (max-width: 430px) {
  .p-sidebar__heading {
    font-size: 16px;
    font-size: _set_vw(16, _remove-unit(1064px));
    line-height: 1.875;
  }
}
@media only screen and (max-width: 1064px) {
  .p-sidebar__heading {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}

/**
/* Project - form
============================================================*/
.p-form {
  width: 100%;
}
@media only screen and (max-width: 822px) {
  .p-form {
    margin: 0 auto;
    max-width: 600px;
  }
}

/* フォームレイアウト 
------------------------------------------------------------*/
.p-form__lead {
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}
@media only screen and (max-width: 822px) {
  .p-form__lead {
    margin-bottom: 50px;
    font-size: 1.6rem;
    line-height: 1.875;
    text-align: center;
  }
}
.p-form__lead-confirm {
  display: none;
}
.p-form__required {
  padding: 2px 0;
  display: inline-block;
}
.p-form__required::before {
  content: "";
  margin-right: 10px;
  width: 13px;
  height: 15px;
  background-image: url(assets/images/contact/contact_bullet.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
  position: relative;
}
.p-form__item {
  padding: 15px 0;
  font-size: 1.6rem;
  line-height: 1;
}
.p-form__label {
  margin-bottom: 10px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  align-self: center;
}
@media only screen and (max-width: 822px) {
  .p-form__label {
    margin-bottom: 20px;
    width: 25%;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}
.p-form__input {
  margin-bottom: 10px;
}
@media only screen and (max-width: 822px) {
  .p-form__input {
    margin-bottom: 0;
    width: 100%;
  }
}
.p-form__buttons {
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-form__button-confirm, .p-form__button-back, .p-form__button-submit {
  outline: none;
  font-size: 1.4rem;
  line-height: 3.5714285714;
  cursor: pointer;
}
.p-form__button-confirm {
  margin: auto;
  width: 100%;
  background-color: #505050;
  border: none;
  font-size: 1.4rem;
  line-height: 3.5714285714;
  color: #fff;
  display: block;
  position: relative;
}
@media only screen and (max-width: 822px) {
  .p-form__button-confirm {
    width: 300px;
  }
}
.p-form__button-confirm::before {
  content: "";
  margin-top: -7px;
  width: 8px;
  height: 15px;
  background-image: url(assets/images/common/arrow_chevron_right.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 25px;
}
.p-form__button-back {
  width: 45%;
  background-color: #fff;
  border: 3px solid #505050;
  display: block;
}
.p-form__button-submit {
  width: 53%;
  background-color: #505050;
  border: none;
  color: #fff;
  display: block;
}

/* input要素 
------------------------------------------------------------*/
.p-form input:focus, .p-form textarea:focus {
  outline: none;
}
.p-form input:focus::placeholder, .p-form textarea:focus::placeholder {
  color: transparent;
}
.p-form input[type=text],
.p-form input[type=email] {
  padding: 0 10px;
  background-color: #e8e8e8;
  border: none;
  font-size: 1.6rem;
  line-height: 3.125;
  width: 100%;
}
.p-form textarea {
  padding: 10px;
  width: 100%;
  height: 180px;
  background-color: #e8e8e8;
  border: none;
  resize: vertical;
}
.p-form select {
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 10px 15px;
  width: 100%;
  background: #e9ecef url(assets/images/common/select_arrow_10x7_down.png) no-repeat right 50%;
  background-size: 30px 7px;
  border: none;
  border-radius: 0;
  font-size: 1.6rem;
  line-height: 1.625;
  position: relative;
}
@media only screen and (max-width: 822px) {
  .p-form select {
    text-align: left;
    margin: 0;
  }
}
.p-form label {
  margin-bottom: 10px !important;
  padding: 0 15px 0 0;
  display: inline-block;
  line-height: 21px;
  color: #333;
  text-align: left !important;
}
.p-form input[type=radio] {
  display: none;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}
.p-form .mwform-radio-field .horizontal-item {
  margin-right: 0;
}
.p-form span.mwform-radio-field-text {
  font-size: 1.4rem;
  line-height: 1.2857142857;
}
.p-form input[type=radio] + span.mwform-radio-field-text:before,
.p-form input[type=radio]:checked + span.mwform-radio-field-text:before {
  content: "";
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  top: 2px;
}
.p-form input[type=radio] + span.mwform-radio-field-text:before {
  background-image: url(assets/images/contact/input_radio_off.png);
}
.p-form input[type=radio]:checked + span.mwform-radio-field-text:before {
  background-image: url(assets/images/contact/input_radio_on.png);
}
.p-form .mwform-checkbox-field .horizontal-item {
  margin-right: 0 !important;
}
.p-form input[type=checkbox] {
  display: none;
}
.p-form input[type=checkbox] + .mwform-checkbox-field-text {
  position: relative;
}
.p-form .mwform-checkbox-field-text {
  font-size: 1.4rem;
  line-height: 1.2857142857;
}
.p-form input[type=checkbox] + .mwform-checkbox-field-text:before,
.p-form input[type=checkbox]:checked + .mwform-checkbox-field-text:before {
  content: "";
  margin-right: 8px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
  position: relative;
  top: 2px;
}
.p-form input[type=checkbox] + .mwform-checkbox-field-text:before {
  background-image: url(assets/images/contact/input_check_off.png);
}
.p-form input[type=checkbox]:checked + .mwform-checkbox-field-text:before {
  background-image: url(assets/images/contact/input_check_on.png);
}

/* placeholder
- - - - - - - - - - - - - - - - - - */
.p-form :placeholder-shown {
  color: 0;
}
.p-form ::-webkit-input-placeholder {
  color: #a0a0a0;
}
.p-form :-moz-placeholder {
  color: #a0a0a0;
  opacity: 1;
}
.p-form ::-moz-placeholder {
  color: #a0a0a0;
  opacity: 1;
}
.p-form :-ms-input-placeholder {
  color: #a0a0a0;
}

/* mw wp form
------------------------------------------------------------*/
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.mw_wp_form .error {
  margin: 10px 0 5px;
  color: #ff0000;
}

.mw_wp_form_preview .p-form__lead-start {
  display: none !important;
}
.mw_wp_form_preview .p-form__lead-confirm {
  display: block !important;
}

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

Object - page

////////////////////////////////////////////////////////////*/
/**
/* page - index
============================================================*/
/* index common
------------------------------------------------------------*/
.index-ttl {
  padding-left: 40px;
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.index-ttl .en,
.index-ttl .ja {
  color: #fff;
  line-height: 6rem;
  display: inline-block;
}
.index-ttl .en {
  font-size: 2.6rem;
  text-transform: uppercase;
}
.index-ttl .ja {
  padding-left: 10px;
  font-size: 1.4rem;
  position: relative;
  top: 1px;
}
.index-ttl .ja::before {
  margin-right: 5px;
  content: "/";
}

@media only screen and (max-width: 430px) {
  .index-ttl {
    padding-left: 20px;
  }
  .index-ttl .en,
  .index-ttl .ja {
    color: #fff;
    line-height: 5rem;
    display: inline-block;
  }
  .index-ttl .en {
    font-size: 2.2rem;
    text-transform: uppercase;
  }
  .index-ttl .ja {
    padding-left: 10px;
    font-size: 1.2rem;
    position: relative;
  }
  .index-ttl .ja::before {
    margin-right: 5px;
    content: "/";
  }
}
/* key visual
------------------------------------------------------------*/
.index-kv {
  width: 100%;
  height: 100vh;
  position: relative;
}
.index-kv-img {
  height: 100%;
  object-fit: cover;
}
.index-kv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.index-kv-text .large, .index-kv-text .small {
  line-height: 1;
  text-align: center;
  color: #fff;
}
.index-kv-text .large {
  font-size: 12rem;
  font-family: var(--main-font-en);
  text-align: center;
  color: #fff;
}
.index-kv-text .small {
  padding-top: 40px;
  font-size: 3.2rem;
  color: #fff;
}

@media only screen and (max-width: 430px) {
  .index-kv {
    position: relative;
  }
  .index-kv-img {
    height: 100%;
    object-fit: cover;
  }
  .index-kv-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .index-kv-text .large, .index-kv-text .small {
    line-height: 1;
    text-align: center;
    color: #fff;
  }
  .index-kv-text .large {
    font-size: 5rem;
  }
  .index-kv-text .small {
    padding-top: 20px;
    font-size: 2rem;
    color: #fff;
  }
}
/* slick slide
- - - - - - - - - - - - - - - - - - */
.index-kv ul {
  list-style-type: none;
  padding-left: 0;
  width: 100%;
  height: 100vh;
}
.index-kv ul li {
  width: 100%;
  height: 100vh;
  outline: none;
}
.index-kv ul li img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.add-anime {
  animation: kv-zoom 10s linear 0s normal both;
}

@keyframes kv-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/* index - message
------------------------------------------------------------*/
.index-sec1 {
  padding-bottom: 100px;
  background-image: url(assets/images/index/index_sec1_bg.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: auto 710px;
}
.index-sec1-text {
  margin-top: 58px;
  font-size: 1.8rem;
  line-height: 4.4rem;
}

@media only screen and (max-width: 430px) {
  .index-sec1 {
    padding-bottom: 60px;
  }
  .index-sec1-text {
    margin-top: 30px;
    font-size: 1.6rem;
    line-height: 3.6rem;
  }
}
/* index - news
------------------------------------------------------------*/
.index-sec2-card {
  padding: 40px 60px;
  background-color: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.08);
}
.index-sec2-card .card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-sec2-card .card-list:not(.index-sec2-card .card-list:first-of-type) {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #EFEFEF;
}
.index-sec2-card .card-list dt {
  width: 12.5%;
}
.index-sec2-card .card-list dd {
  width: 87.5%;
}
.index-sec2-card .card-list .list-ttl {
  font-size: 1.8rem;
  text-align: justify;
}
.index-sec2-card .card-list .list-text {
  margin-top: 10px;
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media only screen and (max-width: 430px) {
  .index-sec2-card {
    padding: 30px 20px;
  }
  .index-sec2-card .card-list {
    display: block;
  }
  .index-sec2-card .card-list:not(.index-sec2-card .card-list:first-of-type) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #EFEFEF;
  }
  .index-sec2-card .card-list dt {
    width: 100%;
  }
  .index-sec2-card .card-list dd {
    margin-top: 10px;
    width: 100%;
  }
  .index-sec2-card .card-list .list-ttl {
    font-size: 1.6rem;
  }
  .index-sec2-card .card-list .list-text {
    margin-top: 10px;
    font-size: 1.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
/* index - service
------------------------------------------------------------*/
.index-sec3 {
  padding-bottom: 100px;
}
.index-sec3-row {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-sec3-col {
  padding-bottom: 90px;
  width: 48.1481481481%;
  position: relative;
}
.index-sec3-col .col-ttl {
  margin-top: 40px;
  position: relative;
}
.index-sec3-col .col-ttl::after {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #000;
  display: block;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
}
.index-sec3-col .col-ttl .en,
.index-sec3-col .col-ttl .ja {
  text-align: center;
  display: block;
}
.index-sec3-col .col-ttl .en {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.index-sec3-col .col-ttl .ja {
  padding-top: 5px;
  font-size: 2.6rem;
}
.index-sec3-col .col-text {
  margin-top: 76px;
  padding: 0 50px;
}
.index-sec3-col .col-btn {
  width: calc(100% - 20px);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 430px) {
  .index-sec3 {
    padding-bottom: 60px;
  }
  .index-sec3-row {
    margin-top: 40px;
    display: block;
  }
  .index-sec3-col {
    padding-bottom: 80px;
    width: 100%;
  }
  .index-sec3-col:not(.index-sec3-col:first-of-type) {
    margin-top: 50px;
  }
  .index-sec3-col .col-ttl {
    margin-top: 30px;
  }
  .index-sec3-col .col-ttl::after {
    bottom: -23px;
  }
  .index-sec3-col .col-ttl .en,
  .index-sec3-col .col-ttl .ja {
    text-align: center;
    display: block;
  }
  .index-sec3-col .col-ttl .en {
    font-size: 1.4rem;
    text-transform: uppercase;
  }
  .index-sec3-col .col-ttl .ja {
    padding-top: 5px;
    font-size: 2.6rem;
  }
  .index-sec3-col .col-text {
    margin-top: 50px;
    padding: 0;
  }
  .index-sec3-col .col-btn {
    width: calc(100% - 20px);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* index - service
------------------------------------------------------------*/
.index-sec4 {
  padding-bottom: 100px;
  background-color: #71624E;
}
.index-sec4-row {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-sec4-col {
  width: calc(25% - 15px);
  display: block;
}
.index-sec4-col .col-ttl {
  margin-top: 15px;
  font-size: 1.6rem;
  color: #fff;
}
.index-sec4-btns {
  margin-top: 40px;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-sec4-btns .btn {
  width: calc(50% - 10px);
}

@media only screen and (max-width: 430px) {
  .index-sec4 {
    padding-bottom: 60px;
  }
  .index-sec4-row {
    margin-top: 40px;
    gap: 0 15px;
  }
  .index-sec4-col {
    width: calc(50% - 7.5px);
  }
  .index-sec4-col:nth-of-type(n + 3) {
    margin-top: 30px;
  }
  .index-sec4-col .col-ttl {
    margin-top: 15px;
    font-size: 1.6rem;
    color: #fff;
  }
  .index-sec4-btns {
    padding: 0;
    display: block;
  }
  .index-sec4-btns .btn {
    margin: 0 auto;
    width: calc(100% - 20px);
  }
  .index-sec4-btns .btn:last-of-type {
    margin-top: 10px;
  }
}
/*////////////////////////////////////////////////////////////

Object - Utility

////////////////////////////////////////////////////////////*/
/**
/* utilities - float and cleafix 
============================================================*/
/* float
------------------------------------------------------------*/
.u-fl-l {
  float: left !important;
}

.u-fl-r {
  float: right !important;
}

/* clearfix 
------------------------------------------------------------*/
.u-clx:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.u-clx {
  min-height: 1px;
}

* html .u-clx {
  height: 1px;
}

/*
  The following classes are left for compatibility
  以下ののクラスは互換性を保つために残しています
*/
.cf:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  min-height: 1px;
}

* html .cf {
  height: 1px;
}

.clear {
  clear: both;
}

/**
/* utility - position
============================================================*/
.u-poss {
  position: static !important;
}

.u-posr {
  position: relative !important;
}

.u-posa {
  position: absolute !important;
}

.u-posf {
  position: fixed !important;
}

.u-post {
  position: sticky !important;
}

/**
/* utility - z-index
============================================================*/
.u-zm1 {
  z-index: -1 !important;
}

.u-z0 {
  z-index: 0 !important;
}

.u-z1 {
  z-index: 1 !important;
}

.u-z2 {
  z-index: 2 !important;
}

.u-z3 {
  z-index: 3 !important;
}

.u-z4 {
  z-index: 4 !important;
}

.u-z5 {
  z-index: 5 !important;
}

.u-z6 {
  z-index: 6 !important;
}

.u-z7 {
  z-index: 7 !important;
}

.u-z8 {
  z-index: 8 !important;
}

.u-z9 {
  z-index: 9 !important;
}

.u-z10 {
  z-index: 10 !important;
}

/**
/* utility - display control
============================================================*/
.u-di {
  display: inline !important;
}

.u-dn {
  display: none !important;
}

.u-db {
  display: block !important;
}

.u-dib {
  display: inline-block !important;
}

.u-dfx {
  display: flex !important;
}

.u-difx {
  display: inline-flex !important;
}

.u-dtb {
  display: table !important;
}

.u-ditb {
  display: inline-table !important;
}

.u-dtbhg {
  display: table-header-group !important;
}

.u-dtbfg {
  display: table-footer-group !important;
}

.u-dtbrg {
  display: table-row-group !important;
}

.u-dtbr {
  display: table-row !important;
}

.u-dtbc {
  display: table-cell !important;
}

.u-dli {
  display: list-item !important;
}

.u-dih {
  display: inherit !important;
}

.u-dc {
  display: contents !important;
}

/* responsive Display control
------------------------------------------------------------*/
/* display block
- - - - - - - - - - - - - - - - - - */
.u-dbxl {
  display: block;
}
@media only screen and (max-width: 1280px) {
  .u-dbxl {
    display: none;
  }
}

.u-dbl {
  display: block;
}
@media only screen and (max-width: 1064px) {
  .u-dbl {
    display: none;
  }
}

.u-dbm {
  display: block;
}
@media only screen and (max-width: 822px) {
  .u-dbm {
    display: none;
  }
}

.u-dbs {
  display: block;
}
@media only screen and (max-width: 430px) {
  .u-dbs {
    display: none;
  }
}

.u-dbxs {
  display: block;
}
@media only screen and (max-width: 375px) {
  .u-dbxs {
    display: none;
  }
}
@media only screen and (max-width: XS) {
  .u-dbxs {
    display: none;
  }
}

.u-dnxs {
  display: none;
}
@media only screen and (max-width: 375px) {
  .u-dnxs {
    display: block;
  }
}
@media only screen and (max-width: XS) {
  .u-dnxs {
    display: block;
  }
}

.u-dns {
  display: none;
}
@media only screen and (max-width: 430px) {
  .u-dns {
    display: block;
  }
}

.u-dnm {
  display: none;
}
@media only screen and (max-width: 822px) {
  .u-dnm {
    display: block;
  }
}

.u-dnl {
  display: none;
}
@media only screen and (max-width: 1064px) {
  .u-dnl {
    display: block;
  }
}

.u-dnxl {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .u-dnxl {
    display: inline;
  }
}

/* display inline
- - - - - - - - - - - - - - - - - - */
.u-dixs {
  display: none;
}
@media only screen and (max-width: 375px) {
  .u-dixs {
    display: inline;
  }
}
@media only screen and (max-width: XS) {
  .u-dixs {
    display: inline;
  }
}

.u-dis {
  display: none;
}
@media only screen and (max-width: 430px) {
  .u-dis {
    display: inline;
  }
}

.u-dim {
  display: none;
}
@media only screen and (max-width: 822px) {
  .u-dim {
    display: inline;
  }
}

.u-dil {
  display: none;
}
@media only screen and (max-width: 1064px) {
  .u-dil {
    display: inline;
  }
}

.u-dixl {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .u-dixl {
    display: inline;
  }
}

/* display inlineblock
- - - - - - - - - - - - - - - - - - */
.u-dibxs {
  display: none;
}
@media only screen and (max-width: 375px) {
  .u-dibxs {
    display: inline-block;
  }
}
@media only screen and (max-width: XS) {
  .u-dibxs {
    display: inline-block;
  }
}

.u-dibs {
  display: none;
}
@media only screen and (max-width: 430px) {
  .u-dibs {
    display: inline-block;
  }
}

.u-dibm {
  display: none;
}
@media only screen and (max-width: 822px) {
  .u-dibm {
    display: inline-block;
  }
}

.u-dibal {
  display: none;
}
@media only screen and (max-width: 1064px) {
  .u-dibal {
    display: inline-block;
  }
}

.u-dibxl {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .u-dibxl {
    display: inline-block;
  }
}

/* display flex
- - - - - - - - - - - - - - - - - - */
.u-dfxs {
  display: none;
}
@media only screen and (max-width: 375px) {
  .u-dfxs {
    display: flex;
  }
}
@media only screen and (max-width: XS) {
  .u-dfxs {
    display: flex;
  }
}

.u-dfs {
  display: none;
}
@media only screen and (max-width: 430px) {
  .u-dfs {
    display: flex;
  }
}

.u-dfm {
  display: none;
}
@media only screen and (max-width: 822px) {
  .u-dfm {
    display: flex;
  }
}

.u-dfl {
  display: none;
}
@media only screen and (max-width: 1064px) {
  .u-dfl {
    display: flex;
  }
}

.u-dfxl {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .u-dfxl {
    display: flex;
  }
}

/* paersentage width
-------------------------------------------------------------*/
/* base
- - - - - - - - - - - - - - - - - - */
.u-w0p {
  width: 0% !important;
}

.u-w5p {
  width: 5% !important;
}

.u-w10p {
  width: 10% !important;
}

.u-w15p {
  width: 15% !important;
}

.u-w20p {
  width: 20% !important;
}

.u-w25p {
  width: 25% !important;
}

.u-w30p {
  width: 30% !important;
}

.u-w35p {
  width: 35% !important;
}

.u-w40p {
  width: 40% !important;
}

.u-w45p {
  width: 45% !important;
}

.u-w50p {
  width: 50% !important;
}

.u-w55p {
  width: 55% !important;
}

.u-w60p {
  width: 60% !important;
}

.u-w65p {
  width: 65% !important;
}

.u-w70p {
  width: 70% !important;
}

.u-w75p {
  width: 75% !important;
}

.u-w80p {
  width: 80% !important;
}

.u-w85p {
  width: 85% !important;
}

.u-w90p {
  width: 90% !important;
}

.u-w95p {
  width: 95% !important;
}

.u-w100p {
  width: 100% !important;
}

/* screen size XS
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 375px) {
  .u-wxs0p {
    width: 0% !important;
  }
  .u-wxs5p {
    width: 5% !important;
  }
  .u-wxs10p {
    width: 10% !important;
  }
  .u-wxs15p {
    width: 15% !important;
  }
  .u-wxs20p {
    width: 20% !important;
  }
  .u-wxs25p {
    width: 25% !important;
  }
  .u-wxs30p {
    width: 30% !important;
  }
  .u-wxs35p {
    width: 35% !important;
  }
  .u-wxs40p {
    width: 40% !important;
  }
  .u-wxs45p {
    width: 45% !important;
  }
  .u-wxs50p {
    width: 50% !important;
  }
  .u-wxs55p {
    width: 55% !important;
  }
  .u-wxs60p {
    width: 60% !important;
  }
  .u-wxs65p {
    width: 65% !important;
  }
  .u-wxs70p {
    width: 70% !important;
  }
  .u-wxs75p {
    width: 75% !important;
  }
  .u-wxs80p {
    width: 80% !important;
  }
  .u-wxs85p {
    width: 85% !important;
  }
  .u-wxs90p {
    width: 90% !important;
  }
  .u-wxs95p {
    width: 95% !important;
  }
  .u-wxs100p {
    width: 100% !important;
  }
}
@media only screen and (max-width: XS) {
  .u-wxs0p {
    width: 0% !important;
  }
  .u-wxs5p {
    width: 5% !important;
  }
  .u-wxs10p {
    width: 10% !important;
  }
  .u-wxs15p {
    width: 15% !important;
  }
  .u-wxs20p {
    width: 20% !important;
  }
  .u-wxs25p {
    width: 25% !important;
  }
  .u-wxs30p {
    width: 30% !important;
  }
  .u-wxs35p {
    width: 35% !important;
  }
  .u-wxs40p {
    width: 40% !important;
  }
  .u-wxs45p {
    width: 45% !important;
  }
  .u-wxs50p {
    width: 50% !important;
  }
  .u-wxs55p {
    width: 55% !important;
  }
  .u-wxs60p {
    width: 60% !important;
  }
  .u-wxs65p {
    width: 65% !important;
  }
  .u-wxs70p {
    width: 70% !important;
  }
  .u-wxs75p {
    width: 75% !important;
  }
  .u-wxs80p {
    width: 80% !important;
  }
  .u-wxs85p {
    width: 85% !important;
  }
  .u-wxs90p {
    width: 90% !important;
  }
  .u-wxs95p {
    width: 95% !important;
  }
  .u-wxs100p {
    width: 100% !important;
  }
}
/* screen size S
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 430px) {
  .u-ws0p {
    width: 0% !important;
  }
  .u-ws5p {
    width: 5% !important;
  }
  .u-ws10p {
    width: 10% !important;
  }
  .u-ws15p {
    width: 15% !important;
  }
  .u-ws20p {
    width: 20% !important;
  }
  .u-ws25p {
    width: 25% !important;
  }
  .u-ws30p {
    width: 30% !important;
  }
  .u-ws35p {
    width: 35% !important;
  }
  .u-ws40p {
    width: 40% !important;
  }
  .u-ws45p {
    width: 45% !important;
  }
  .u-ws50p {
    width: 50% !important;
  }
  .u-ws55p {
    width: 55% !important;
  }
  .u-ws60p {
    width: 60% !important;
  }
  .u-ws65p {
    width: 65% !important;
  }
  .u-ws70p {
    width: 70% !important;
  }
  .u-ws75p {
    width: 75% !important;
  }
  .u-ws80p {
    width: 80% !important;
  }
  .u-ws85p {
    width: 85% !important;
  }
  .u-ws90p {
    width: 90% !important;
  }
  .u-ws95p {
    width: 95% !important;
  }
  .u-ws100p {
    width: 100% !important;
  }
}
/* screen size M
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 822px) {
  .u-wm0p {
    width: 0% !important;
  }
  .u-wm5p {
    width: 5% !important;
  }
  .u-wm10p {
    width: 10% !important;
  }
  .u-wm15p {
    width: 15% !important;
  }
  .u-wm20p {
    width: 20% !important;
  }
  .u-wm25p {
    width: 25% !important;
  }
  .u-wm30p {
    width: 30% !important;
  }
  .u-wm35p {
    width: 35% !important;
  }
  .u-wm40p {
    width: 40% !important;
  }
  .u-wm45p {
    width: 45% !important;
  }
  .u-wm50p {
    width: 50% !important;
  }
  .u-wm55p {
    width: 55% !important;
  }
  .u-wm60p {
    width: 60% !important;
  }
  .u-wm65p {
    width: 65% !important;
  }
  .u-wm70p {
    width: 70% !important;
  }
  .u-wm75p {
    width: 75% !important;
  }
  .u-wm80p {
    width: 80% !important;
  }
  .u-wm85p {
    width: 85% !important;
  }
  .u-wm90p {
    width: 90% !important;
  }
  .u-wm95p {
    width: 95% !important;
  }
  .u-wm100p {
    width: 100% !important;
  }
}
/* screen size L
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 1064px) {
  .u-wl0p {
    width: 0% !important;
  }
  .u-wl5p {
    width: 5% !important;
  }
  .u-wl10p {
    width: 10% !important;
  }
  .u-wl15p {
    width: 15% !important;
  }
  .u-wl20p {
    width: 20% !important;
  }
  .u-wl25p {
    width: 25% !important;
  }
  .u-wl30p {
    width: 30% !important;
  }
  .u-wl35p {
    width: 35% !important;
  }
  .u-wl40p {
    width: 40% !important;
  }
  .u-wl45p {
    width: 45% !important;
  }
  .u-wl50p {
    width: 50% !important;
  }
  .u-wl55p {
    width: 55% !important;
  }
  .u-wl60p {
    width: 60% !important;
  }
  .u-wl65p {
    width: 65% !important;
  }
  .u-wl70p {
    width: 70% !important;
  }
  .u-wl75p {
    width: 75% !important;
  }
  .u-wl80p {
    width: 80% !important;
  }
  .u-wl85p {
    width: 85% !important;
  }
  .u-wl90p {
    width: 90% !important;
  }
  .u-wl95p {
    width: 95% !important;
  }
  .u-wl100p {
    width: 100% !important;
  }
}
/* screen size XL
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 1280px) {
  .u-wxl0p {
    width: 0% !important;
  }
  .u-wxl5p {
    width: 5% !important;
  }
  .u-wxl10p {
    width: 10% !important;
  }
  .u-wxl15p {
    width: 15% !important;
  }
  .u-wxl20p {
    width: 20% !important;
  }
  .u-wxl25p {
    width: 25% !important;
  }
  .u-wxl30p {
    width: 30% !important;
  }
  .u-wxl35p {
    width: 35% !important;
  }
  .u-wxl40p {
    width: 40% !important;
  }
  .u-wxl45p {
    width: 45% !important;
  }
  .u-wxl50p {
    width: 50% !important;
  }
  .u-wxl55p {
    width: 55% !important;
  }
  .u-wxl60p {
    width: 60% !important;
  }
  .u-wxl65p {
    width: 65% !important;
  }
  .u-wxl70p {
    width: 70% !important;
  }
  .u-wxl75p {
    width: 75% !important;
  }
  .u-wxl80p {
    width: 80% !important;
  }
  .u-wxl85p {
    width: 85% !important;
  }
  .u-wxl90p {
    width: 90% !important;
  }
  .u-wxl95p {
    width: 95% !important;
  }
  .u-wxl100p {
    width: 100% !important;
  }
}
/* border display controls
------------------------------------------------------------*/
.u-bdn {
  border: none !important;
}

.u-bdtn {
  border-top: none !important;
}

.u-bdrn {
  border-right: none !important;
}

.u-bdbn {
  border-bottom: none !important;
}

.u-bdln {
  border-left: none !important;
}

/* background
------------------------------------------------------------*/
.u-bgn {
  background: none !important;
}

.u-bgin {
  background-image: none !important;
}

.u-bgct {
  background-color: transparent !important;
}

/**
/* utility - text align
============================================================*/
/* base
- - - - - - - - - - - - - - - - - - */
.u-tal {
  text-align: left !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

.u-taj {
  text-align: justify !important;
}

/* screen size XS
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 375px) {
  .u-talxs {
    text-align: left !important;
  }
  .u-tacxs {
    text-align: center !important;
  }
  .u-tarxs {
    text-align: right !important;
  }
  .u-tajxs {
    text-align: justify !important;
  }
}
@media only screen and (max-width: XS) {
  .u-talxs {
    text-align: left !important;
  }
  .u-tacxs {
    text-align: center !important;
  }
  .u-tarxs {
    text-align: right !important;
  }
  .u-tajxs {
    text-align: justify !important;
  }
}
/* screen size S
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 430px) {
  .u-tals {
    text-align: left !important;
  }
  .u-tacs {
    text-align: center !important;
  }
  .u-tars {
    text-align: right !important;
  }
  .u-tajs {
    text-align: justify !important;
  }
}
/* screen size M
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 822px) {
  .u-talm {
    text-align: left !important;
  }
  .u-tacm {
    text-align: center !important;
  }
  .u-tarm {
    text-align: right !important;
  }
  .u-tajm {
    text-align: justify !important;
  }
}
/* screen size L
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 1064px) {
  .u-tall {
    text-align: left !important;
  }
  .u-tacl {
    text-align: center !important;
  }
  .u-tarl {
    text-align: right !important;
  }
  .u-tajl {
    text-align: justify !important;
  }
}
/* screen size XL
- - - - - - - - - - - - - - - - - - */
@media only screen and (max-width: 1280px) {
  .u-talxl {
    text-align: left !important;
  }
  .u-tacxl {
    text-align: center !important;
  }
  .u-tarxl {
    text-align: right !important;
  }
  .u-tajxl {
    text-align: justify !important;
  }
}
/* font weight
------------------------------------------------------------*/
.u-fwn {
  font-weight: normal !important;
}

.u-fwb {
  font-weight: bold !important;
}

/* font style
------------------------------------------------------------*/
.u-fsn {
  font-style: normal !important;
}

.u-fsi {
  font-style: italic !important;
}

/* hover with hilight
------------------------------------------------------------*/
.u-hlt {
  transition: opacity 0.2s linear;
}
.u-hlt:hover {
  opacity: 0.6;
  text-decoration: none !important;
}
.u-hlt5:hover {
  transition: opacity 0.2s linear;
  opacity: 0.5;
  text-decoration: none !important;
}
.u-hlt6 {
  transition: opacity 0.2s linear;
}
.u-hlt6:hover {
  opacity: 0.6;
  text-decoration: none !important;
}
.u-hlt7 {
  transition: opacity 0.2s linear;
}
.u-hlt7:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.u-hlt8 {
  transition: opacity 0.2s linear;
}
.u-hlt8:hover {
  opacity: 0.8;
  text-decoration: none !important;
}
.u-hlt9 {
  transition: opacity 0.2s linear;
}
.u-hlt9:hover {
  opacity: 0.9;
  text-decoration: none !important;
}