@charset "UTF-8";
/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
 * Variables
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
/*
 * Function
 */
/*
* mixins
*/
/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * reset
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
}

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif, "sans-serif";
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

h1 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #262626;
}

h2 {
  font-size: 5.6rem;
}

h3 {
  font-size: 2.2rem;
}

.block-margins {
  margin: 1em 0;
}

.unordered-list {
  list-style-type: disc;
}

.ordered-list {
  list-style: decimal;
}

/* Components - Re-usable site elements.
========================================================================== */
a {
  color: #383838;
  text-decoration: none;
}
a:visited {
  color: #383838;
  text-decoration: none;
}
a:hover,
a:visited:hover {
  color: #203b96;
  text-decoration: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 700;
}

.more {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}

.slider {
  position: relative;
}
.slider .slick-arrow {
  width: 2.9rem;
  height: 7.6rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-indent: -9999px;
  position: absolute;
  top: 7rem;
  z-index: 9;
}
.slider .slick-prev {
  background-image: url("../images/arow-left.png");
  left: -7rem;
}
.slider .slick-next {
  background-image: url("../images/arow-right.png");
  right: -7rem;
}
.slider .slick-dots {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 2rem;
}
.slider .slick-dots li {
  padding: 0 0.4rem;
}
.slider .slick-dots li button {
  text-indent: -9999px;
  min-width: 1.6rem;
  max-width: 1.6rem;
  height: 1.6rem;
  background: #fff;
  border-radius: 100%;
  padding: 0;
}
.slider .slick-dots li.slick-active button {
  background: #003379;
}
.slider .slick-list {
  padding-bottom: 1rem !important;
}

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif, "sans-serif";
  color: #262626;
  font-size: 1.8rem;
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 500;
  letter-spacing: 0;
  width: 100%;
}

hr {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #000 -moz-use-text-color -moz-use-text-color;
  -o-border-image: none;
  border-image: none;
  border-style: solid none none;
  border-width: 0.2em 0 0 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 103rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}

p {
  margin-bottom: 1.5rem;
}

input:focus {
  outline: none;
}

a > img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
a > img:hover {
  opacity: 0.7;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.thumb-box a {
  display: block;
}

.thumb-box img {
  width: 100%;
  height: auto;
}

.img-cover figure {
  display: block;
  width: 100%;
  height: 100%;
}

.img-cover img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.thumb-over figure {
  display: block;
  position: relative;
  overflow: hidden;
}
.thumb-over figure::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.thumb-over figure img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.thumb-over:hover figure::before {
  background: rgba(0, 0, 0, 0.5);
}

.thumb-over:hover figure img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.error {
  font-size: 1.2rem;
  color: #ff0000;
}

#result input.error {
  border-color: #e41919;
}

#result div.error {
  margin-top: 20px;
  padding: 13px 20px;
  text-align: center;
  background: rgba(228, 25, 25, 0.75);
  color: #fff;
}

#result div.success {
  margin-top: 20px;
  padding: 13px 20px;
  text-align: center;
  background: rgba(50, 178, 95, 0.75);
  color: #fff;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-image: url("../images/header-bg.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.header .container {
  max-width: 100%;
  padding: 0;
}
.header__top {
  padding: 0 3.5rem;
  background: #048bfe;
}
.header__top h1 {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 2.6rem;
}
.header__main {
  padding: 1.5rem 3.5rem;
}
.header__main .logo {
  width: 31.2rem;
}
.header__main .more-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__main .more-box .more-phone {
  width: 27.3rem;
}
.header__main .more-box .more-tel {
  width: 25.3rem;
  margin-left: 2rem;
}

@media (max-width: 768px) {
  .header__top h1 {
    text-align: center;
    line-height: 1.8rem;
  }
  .header__main {
    padding: 1rem 1.5rem;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .header__main .logo {
    width: 24.5rem;
  }
  .header__main .more-box {
    display: none;
  }
}

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

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

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

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

.banner {
  margin-top: 11rem;
}

.coronavirus-box {
  padding: 4.5rem 0;
}
.coronavirus-box__main {
  border: 3px solid #ff7100;
}
.coronavirus-box__main .head {
  text-align: center;
  background: #ff7100;
  padding: 2.3rem 1.5rem 2.6rem;
  background: #ff7100;
}
.coronavirus-box__main .head h2 {
  font-size: 2.6rem;
  line-height: 3.7rem;
  font-weight: 900;
  margin-bottom: 1.4rem;
}
.coronavirus-box__main .head p {
  margin-bottom: 0;
  color: #fff;
}
.coronavirus-box__main .main-box {
  padding: 2.5rem 1.5rem;
  position: relative;
}
.coronavirus-box__main .main-box h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #262626;
  margin-bottom: 1.5rem;
  text-align: center;
}
.coronavirus-box__main .main-box ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 62rem;
}
.coronavirus-box__main .main-box ul li {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.8rem;
}
.coronavirus-box__main .main-box ul li::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #ff7100;
  margin-right: 0.5rem;
}
.coronavirus-box__main .main-box .img-box {
  position: absolute;
  top: 2rem;
  right: 1.7rem;
  width: 12.4rem;
}

.ldk-box {
  padding: 4rem 0;
  background-image: url("../images/ldk-bg.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.ldk-box__main {
  text-align: center;
}
.ldk-box__main img {
  max-width: 66.8rem;
}

.honest-box {
  padding: 4.5rem 0 0;
  background-image: url("../images/honest-bg.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.honest-box::after {
  content: "";
  width: 21.3rem;
  height: 7.1rem;
  background-image: url("../images/arow.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.free-box {
  background-image: url("../images/free-bg.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 1.5rem;
}
.free-box__main {
  text-align: center;
}
.free-box__main img {
  width: 100%;
  max-width: 79.2rem;
}

.point-box {
  background: #d6efff;
  padding: 3.5rem 0 6rem;
}
.point-box__main .items {
  margin-top: -1rem;
}
.point-box__main .items:first-child {
  margin-top: 0;
}
.point-box__thumb {
  padding-top: 5rem;
}
.point-box__thumb .head {
  width: 100%;
  max-width: 93.6rem;
  height: 22.1rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 4.2rem;
  position: relative;
  z-index: 9;
  background-image: url("../images/point-bg.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.point-box__thumb .head h3 {
  font-size: 3.4rem;
  line-height: 4.6rem;
  color: #004bb1;
}
.point-box__thumb .thumb-box {
  margin-top: -11.2rem;
}

.collection-box {
  padding: 0 0 6.5rem;
  overflow: hidden;
  background-image: url("../images/collection-bg.png");
  background-position: 0 0;
  background-repeat: repeat;
}
.collection-box .head {
  text-align: center;
  margin-bottom: 5rem;
  background: -o-linear-gradient(91.5deg, #003a89 50%, #022e6a 50%);
  background: linear-gradient(-1.5deg, #003a89 50%, #022e6a 50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 14.4rem;
}
.collection-box .head img {
  width: 100%;
  max-width: 71.2rem;
}
.collection-box__main .d-flex {
  margin: 0 -2.5rem;
}
.collection-box__main .d-flex .items {
  width: 33.333333333%;
  padding: 0 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
.collection-box__main .d-flex .items h3 {
  font-size: 2.1rem;
  line-height: 5.9rem;
  background: #262626;
}
.collection-box__des {
  margin-top: 1rem;
  border-top: 3px solid #01439d;
  border-bottom: 3px solid #01439d;
  padding: 2.5rem 0;
}
.collection-box__des p {
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 900;
  color: #01439d;
  text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff,
    -1px 1px 0 #fff;
}
.collection-box__des p span {
  background: #fde105;
}
.collection-box__des p b {
  color: #e24e00;
}
.collection-box__des p:last-child {
  margin-bottom: 0;
}

.coating-box {
  padding-bottom: 7.5rem;
  background-image: url("../images/bg1.png");
  background-position: 0 0;
  background-repeat: repeat;
}
.coating-box .head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.coating-box .head img {
  width: 100%;
  max-width: 66.2rem;
}
.coating-box__main {
  text-align: center;
}
.coating-box__main img {
  width: 100%;
  max-width: 68.8rem;
}

.contact-box {
  padding: 4rem 0;
  background-image: url("../images/contact-bg.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-box__main {
  position: relative;
}
.contact-box__main img {
  width: 100%;
  vertical-align: middle;
  opacity: 1 !important;
}
.contact-box__main .text-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 61.9rem;
  padding-right: 2.6rem;
  padding-left: 2.6rem;
  padding-bottom: 3.5rem;
}
.contact-box__main .text-box a {
  display: block;
}
.contact-box__main .text-box .more-gr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact-box__main .text-box .more-gr a {
  width: 27.9rem;
  margin-right: 0.75rem;
}
.contact-box__main .text-box .more-tel {
  margin-bottom: 1.5rem;
  width: 43.9rem;
}

.menu-box {
  padding-top: 5.6rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-image: url("../images/bg2.png");
  background-position: 0 0;
  background-repeat: repeat;
}
.menu-box .head {
  text-align: center;
  margin-bottom: 8rem;
}
.menu-box .head img {
  width: 100%;
  max-width: 55rem;
}
.menu-box__main .d-flex {
  margin: 0 -3rem;
}
.menu-box__main .items {
  width: 50%;
  padding: 0 3rem;
  margin-bottom: 5.5rem;
}
.menu-box__main .items main {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
  border: 3px solid #01439d;
  text-align: center;
  padding: 4.5rem 2rem 3rem;
}
.menu-box__main .items .labels {
  display: inline-block;
  background: #01439d;
  padding: 0 1.5rem;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 5.2rem;
  position: absolute;
  left: -1.5rem;
  top: -2.7rem;
}
.menu-box__main .items h3 {
  margin-bottom: 2.5rem;
  line-height: 3.2rem;
  color: #262626;
  position: relative;
  z-index: 9;
}
.menu-box__main .items h3 span {
  position: relative;
}
.menu-box__main .items h3 span::after {
  content: "";
  width: 100%;
  height: 0.8rem;
  background: #fde105;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.menu-box__main .items .main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.menu-box__main .items .main .main-items {
  width: 33.3333333%;
  margin-bottom: 0.75rem;
  padding: 0 0.375rem;
}
.menu-box__main .items .main .main-items span {
  display: block;
  line-height: 3.5rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  background-image: -webkit-gradient(linear, left top, right top, from(#01439d), to(#2471d9));
  background-image: -o-linear-gradient(left, #01439d, #2471d9);
  background-image: linear-gradient(to right, #01439d, #2471d9);
}

.construction-box {
  padding: 7rem 0;
  background-image: url("../images/bg3.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.construction-box .container {
  max-width: 121.5rem;
}
.construction-box .head {
  margin-bottom: 2.5rem;
  text-align: center;
}
.construction-box .head img {
  width: 100%;
  max-width: 21.2rem;
}
.construction-box .slider .items {
  padding: 0 0.8rem;
}

.accept-box {
  padding: 5rem 0 8rem;
}
.accept-box .head {
  margin-bottom: 4rem;
  text-align: center;
}
.accept-box .head img {
  width: 56.5rem;
}

.faq-box {
  background: #31a3ed;
  padding: 5.5rem 0 7.5rem;
}
.faq-box .head {
  margin-bottom: 4rem;
  text-align: center;
}
.faq-box .head img {
  width: 39.2rem;
}
.faq-box__main .items {
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 1rem;
}
.faq-box__main .items .q {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #262626;
  padding: 1.3rem 7rem 1.3rem 3.2rem;
  cursor: pointer;
  position: relative;
}
.faq-box__main .items .q::before {
  content: "";
  width: 3.7rem;
  height: 3.7rem;
  background-image: url("../images/icon-a.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 1.5rem;
}
.faq-box__main .items .q::after {
  content: "";
  display: block;
  width: 3.3rem;
  height: 3.3rem;
  background-image: url("../images/icon-plush.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  right: 2.8rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.faq-box__main .items .q.is_active::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.faq-box__main .items .a {
  padding: 2rem 3.2rem;
  display: none;
}
.faq-box__main .items .a .main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.faq-box__main .items .a .main::before {
  content: "";
  width: 3.7rem;
  min-width: 3.7rem;
  height: 3.7rem;
  background-image: url("../images/icon-q.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 1.5rem;
}

.inquiry-box {
  padding-bottom: 7rem;
}
.inquiry-box .head {
  background: #01439d;
  padding: 1.5rem 0 2.5rem;
  text-align: center;
  margin-bottom: 7.2rem;
}
.inquiry-box .head img {
  width: 100%;
  max-width: 33.6rem;
}
.inquiry-box .head-box {
  text-align: center;
  margin-bottom: 5.5rem;
}
.inquiry-box .head-box p {
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 0;
}
.inquiry-box .head-box a {
  display: inline-block;
  width: 100%;
  max-width: 60.9rem;
}
.inquiry-box__main {
  border: 2px solid #0869ec;
  border-radius: 1rem;
  padding: 6rem;
}
.inquiry-box__thanks {
  background: #fff;
  padding: 4rem 1rem;
  text-align: center;
}
.inquiry-box__thanks .more-box {
  padding-top: 5rem;
}

.contact-form .form-group {
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}
.contact-form .form-group .labels {
  width: 34.5%;
  padding-right: 3.5rem;
  font-weight: 700;
  font-size: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contact-form .form-group .input {
  width: 65.5%;
  font-size: 1.8rem;
}
.contact-form .form-group select,
.contact-form .form-group textarea,
.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"] {
  width: 100%;
  max-width: 100%;
  height: 5.5rem;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  background: #f5f5f5;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  padding: 0 2.5rem;
}
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="email"]:focus {
  outline: none;
  outline: 0;
}
.contact-form .form-group select::-webkit-input-placeholder,
.contact-form .form-group textarea::-webkit-input-placeholder,
.contact-form .form-group input[type="text"]::-webkit-input-placeholder,
.contact-form .form-group input[type="email"]::-webkit-input-placeholder {
  font-size: 16px;
  color: #717171;
  opacity: 0.57;
}
.contact-form .form-group select::-moz-placeholder,
.contact-form .form-group textarea::-moz-placeholder,
.contact-form .form-group input[type="text"]::-moz-placeholder,
.contact-form .form-group input[type="email"]::-moz-placeholder {
  font-size: 16px;
  color: #717171;
  opacity: 0.57;
}
.contact-form .form-group select:-ms-input-placeholder,
.contact-form .form-group textarea:-ms-input-placeholder,
.contact-form .form-group input[type="text"]:-ms-input-placeholder,
.contact-form .form-group input[type="email"]:-ms-input-placeholder {
  font-size: 16px;
  color: #717171;
  opacity: 0.57;
}
.contact-form .form-group select::-ms-input-placeholder,
.contact-form .form-group textarea::-ms-input-placeholder,
.contact-form .form-group input[type="text"]::-ms-input-placeholder,
.contact-form .form-group input[type="email"]::-ms-input-placeholder {
  font-size: 16px;
  color: #717171;
  opacity: 0.57;
}
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder,
.contact-form .form-group input[type="text"]::placeholder,
.contact-form .form-group input[type="email"]::placeholder {
  font-size: 16px;
  color: #717171;
  opacity: 0.57;
}
.contact-form .form-group label {
  margin-right: 2rem;
}
.contact-form .form-group textarea {
  min-height: 25rem;
  padding: 1.5rem 2.5rem;
}
.contact-form .form-group.required .labels::after {
  content: "必須";
  background: #ff7100;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2.3rem;
  padding: 0;
  text-align: center;
  width: 4.7rem;
  font-weight: 500;
}
.contact-form .form-group.form-group-textarea {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: none;
}
.contact-form .form-group.form-group-textarea .labels {
  padding-top: 2rem;
}

.contact-form .contact-information {
  width: 100%;
  max-width: 87rem;
  margin: 0 auto 2.5rem;
  padding: 2.5rem 3.5rem;
  overflow-y: scroll;
  height: 30rem;
  border: 1.5rem solid #dddddd;
}
.contact-form .contact-information p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.contact-form .more-box {
  text-align: center;
}
.contact-form .more-box button {
  width: 100%;
  max-width: 45rem;
  cursor: pointer;
}
.contact-form .more-box button:hover {
  opacity: 0.7;
}

.contact-form .cf-box {
  display: none;
}

.contact-form .sm-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-form .more-back {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1rem;
}

.thanks-box {
  padding: 20rem 0 20rem;
  text-align: center;
}
.thanks-box__main h2 {
  margin-bottom: 5rem;
  font-size: 4.8rem;
  color: #262626;
}
.thanks-box__main p {
  margin-bottom: 5rem;
}
.thanks-box__main .more-box a {
  display: block;
  width: 44.9rem;
  margin: 0 auto 2rem;
}

.banner-bottom {
  display: none;
  background: #fffa84;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  padding: 0.7rem 0.5rem;
}
.banner-bottom .d-flex {
  margin: 0 -0.35rem;
}
.banner-bottom .items {
  width: 33.333333333%;
  padding: 0 0.35rem;
}
.banner-bottom .items a {
  display: block;
}

.footer {
  padding: 4.2rem 0 1.5rem;
  background: #31a3ed;
}
.footer__main {
  text-align: center;
}
.footer__main .logo {
  margin-bottom: 2rem;
}
.footer__main .logo a {
  display: inline-block;
  width: 37.2rem;
}
.footer .info {
  margin-bottom: 5rem;
}
.footer .info p {
  margin-bottom: 1.2rem;
  font-size: 2rem;
  color: #fff;
}
.footer .copyright p {
  margin-bottom: 0;
  font-size: 1.6rem;
  color: #fff;
}

@media (max-width: 768px) {
  .footer {
    padding: 3.2rem 0 1.2rem;
    margin-bottom: 8.3rem;
  }
  .footer__main .logo {
    margin-bottom: 1.5rem;
  }
  .footer__main .logo a {
    width: 16.2rem;
  }
  .footer .info {
    margin-bottom: 4rem;
  }
  .footer .info p {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  .footer .copyright p {
    font-size: 1.2rem;
  }
}
.slider-mv .items .sp {
  display: none;
}
/* layout - Responsive .
========================================================================== */
.sp {
  display: none;
}

@media (max-width: 1030px) {
  html {
    font-size: 0.9vw;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 8px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 10px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  body {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .banner {
    margin-top: 5.8rem;
  }
  .banner .container {
	padding: 0;
    }
  .banner__main {
    padding-top: 0;
  }
  .coronavirus-box {
    padding: 2.5rem 0;
  }
  .coronavirus-box__main .head {
    padding: 2rem 1.5rem;
  }
  .coronavirus-box__main .head h2 {
    font-size: 2.2rem;
    line-height: 3.2rem;
    margin-bottom: 0.7rem;
  }
  .coronavirus-box__main .main-box {
    padding: 1.5rem 2rem;
  }
  .coronavirus-box__main .main-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  .coronavirus-box__main .main-box ul {
    max-width: 100%;
  }
  .coronavirus-box__main .main-box ul li {
    width: 100%;
  }
  .coronavirus-box__main .main-box ul li::before {
    content: "";
    width: 1rem;
    height: 1rem;
  }
  .coronavirus-box__main .main-box .img-box {
    top: 5rem;
    right: 1rem;
    min-width: 12.4rem;
  }
  .ldk-box {
    padding: 3rem 0;
  }
  .ldk-box__main {
    text-align: center;
  }
  .ldk-box__main img {
    max-width: 100%;
  }
  .honest-box {
    padding: 0;
  }
  .honest-box .container {
    padding: 0;
  }
  .honest-box::after {
    width: 11.7rem;
    height: 3.9rem;
    bottom: -1rem;
  }
  .free-box .container {
    padding: 0;
  }
  .point-box {
    padding: 1.5rem 0 2.5rem;
  }
  .point-box__thumb {
    padding-top: 3.5rem;
  }
  .point-box__thumb .head {
    max-width: 35.9rem;
    height: 8.5rem;
    padding-top: 1rem;
    background-image: url("../images/point-bg-sp.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .point-box__thumb .head h3 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .point-box__thumb .thumb-box {
    margin-top: -4.2rem;
  }
  .collection-box {
    padding: 0 0 2.5rem;
  }
  .collection-box .head {
    height: auto;
    padding: 0;
    margin-bottom: 2.5rem;
  }
  .collection-box .head img {
    max-width: 100%;
  }
  .collection-box__main .d-flex {
    margin: 0 -0.5rem;
  }
  .collection-box__main .d-flex .items {
    width: 50%;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }
  .collection-box__main .d-flex .items h3 {
    font-size: 1.4rem;
    line-height: 3.7rem;
  }
  .collection-box__des {
    margin-top: 1.5rem;
  }
  .collection-box__des p {
    font-size: 1.6rem;
  }
  .coating-box {
    padding-bottom: 4rem;
    background-image: url("../images/bg1.png");
    background-position: 0 0;
    background-repeat: repeat;
  }
  .coating-box .head {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .coating-box .head img {
    width: 100%;
    max-width: 66.2rem;
  }
  .coating-box__main {
    text-align: center;
  }
  .coating-box__main img {
    width: 100%;
    max-width: 68.8rem;
  }
  .contact-box {
    padding: 0;
  }
  .contact-box .container {
    max-width: 100%;
    padding: 0;
  }
  .contact-box__main .text-box {
    width: 100%;
    padding: 0 3rem 5.5rem;
  }
  .contact-box__main .text-box .more-gr {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contact-box__main .text-box .more-gr a {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .contact-box__main .text-box .more-tel {
    margin-bottom: 0.5rem;
    width: 100%;
  }
  .menu-box {
    padding-top: 2.5rem;
    padding-bottom: 4.5rem;
  }
  .menu-box .head {
    text-align: center;
    margin-bottom: 5rem;
  }
  .menu-box .head img {
    width: 100%;
    max-width: 35rem;
  }
  .menu-box__main .d-flex {
    margin: 0;
  }
  .menu-box__main .items {
    width: 100%;
    padding: 0;
    margin-bottom: 4rem;
    padding-left: 1.5rem;
  }
  .menu-box__main .items main {
    padding: 3.5rem 1.5rem 3rem;
  }
  .menu-box__main .items .labels {
    padding: 0 1.2rem;
    font-size: 2rem;
    line-height: 4.2rem;
    left: -1.5rem;
    top: -2.4rem;
  }
  .menu-box__main .items h3 {
    margin-bottom: 1.5rem;
    line-height: 2.6rem;
  }
  .menu-box__main .items h3 span {
    position: relative;
  }
  .menu-box__main .items h3 span::after {
    height: 0.7rem;
  }
  .menu-box__main .items .main .main-items {
    width: 33.3333333%;
    margin-bottom: 0.5rem;
    padding: 0 0.25rem;
  }
  .menu-box__main .items .main .main-items span {
    line-height: 2.8rem;
    font-size: 1.4rem;
  }
  .construction-box {
    padding: 3.5rem 0;
  }
  .construction-box .head {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .construction-box .head img {
    max-width: 14.4rem;
  }
  .construction-box .slider .items {
    padding: 0 1.5rem;
  }
  .construction-box .slider .slick-arrow {
    width: 1.4rem;
    height: 3.7rem;
    top: 8rem;
  }
  .construction-box .slider .slick-prev {
    left: -0.5rem;
  }
  .construction-box .slider .slick-next {
    right: -0.5rem;
  }
  .accept-box {
    padding: 2.5rem 0 3.5rem;
  }
  .accept-box .head {
    margin-bottom: 2rem;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .accept-box .head img {
    width: 29.8rem;
  }
  .faq-box {
    padding: 2rem 0 2.5rem;
  }
  .faq-box .head {
    margin-bottom: 2.5rem;
    text-align: center;
  }
  .faq-box .head img {
    width: 22.4rem;
  }
  .faq-box__main .items {
    margin-bottom: 1rem;
  }
  .faq-box__main .items .q {
    font-size: 1.6rem;
    padding: 1rem 3rem 1rem 1.5rem;
  }
  .faq-box__main .items .q::before {
    width: 2.8rem;
    min-width: 2.8rem;
    height: 2.8rem;
    margin-right: 1rem;
  }
  .faq-box__main .items .q::after {
    width: 1.8rem;
    height: 1.8rem;
    right: 0.5rem;
  }
  .faq-box__main .items .a {
    padding: 1.2rem 1.5rem;
  }
  .faq-box__main .items .a .main::before {
    width: 2.8rem;
    min-width: 2.8rem;
    height: 2.8rem;
    margin-right: 1rem;
  }
  .inquiry-box {
    padding-bottom: 4rem;
  }
  .inquiry-box .head {
    background: #01439d;
    padding: 1.5rem 0 2rem;
    margin-bottom: 1.5rem;
  }
  .inquiry-box .head img {
    max-width: 19.2rem;
  }
  .inquiry-box .head-box {
    margin-bottom: 2.5rem;
  }
  .inquiry-box .head-box p {
    font-size: 1.8rem;
    margin-bottom: 0.5;
  }
  .inquiry-box .head-box a {
    max-width: 30.7rem;
  }
  .inquiry-box__main {
    padding: 3rem 1.5rem;
  }
  .inquiry-box__thanks {
    background: #fff;
    padding: 4rem 1rem;
    text-align: center;
  }
  .inquiry-box__thanks .more-box {
    padding-top: 5rem;
  }
  .contact-form .form-group {
    margin-bottom: 1.5rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contact-form .form-group .labels {
    width: 100%;
    padding-right: 0;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .contact-form .form-group .input {
    width: 100%;
    font-size: 1.4rem;
  }
  .contact-form .form-group select,
  .contact-form .form-group textarea,
  .contact-form .form-group input[type="text"],
  .contact-form .form-group input[type="email"] {
    height: 3.8rem;
    padding: 0 1.5rem;
  }
  .contact-form .form-group label {
    margin-right: 0.5rem;
  }
  .contact-form .form-group textarea {
    min-height: 30rem;
    padding: 1.5rem;
  }
  .contact-form .form-group.required .labels::after {
    font-size: 1.2rem;
    line-height: 2rem;
    width: 4rem;
    margin-left: 0.5rem;
  }
  .contact-form .form-group.form-group-textarea .labels {
    padding-top: 0;
  }
  .contact-form .contact-information {
    margin: 0 auto 3.2rem;
    padding: 1rem 1.5rem;
    height: 26rem;
  }
  .contact-form .more-box button {
    max-width: 29rem;
  }
  .contact-form .cf-box {
    display: none;
  }
  .contact-form .sm-input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contact-form .more-back {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1rem;
  }
  .thanks-box {
    padding: 16rem 0 7rem;
    text-align: center;
  }
  .thanks-box__main h2 {
    margin-bottom: 3rem;
    font-size: 3.2rem;
  }
  .thanks-box__main p {
    font-size: 1.6rem;
  }
  .thanks-box__main .more-box a {
    width: 31.5rem;
  }
  .banner-bottom {
    display: block;
  }
  .slider-mv .items .sp {
    display: block;
  }
  .slider-mv .items .pc {
    display: none;
  }
}

/* ipad Portrait */
/* ipad Landscape */
