@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
:root {
  --sanri-main-color: #19294f;
  --sanri-blue:#0756a0;
  --title-font: serif;
}
html {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  height: 100%;
  font-size: 0.67vw;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: YuGothic, "Yu Gothic medium", 'Montserrat',"Hiragino Sans", Meiryo, sans-serif;
  color: #1e2123;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  font-feature-settings: "palt" 1;
}
@media (max-width:678px) {
  body {
    font-size: 1.3rem;
  }
}
label {
  width: auto;
  max-width: auto;
}
p {
  line-height: 1.8;
}
a {
  color: inherit;
  text-decoration: underline;
}
a:link {
  color: inherit;
  text-decoration: underline;
}
a:visited {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: rgba(71, 71, 71, 1.00);
}
a img {
  transition: 0.5s;
}
a:hover img {
  opacity: 0.8;
  transition: 0.5s;
}
@media screen and (min-width:598px) {
  a.tel_link {
    color: inherit;
    text-decoration: none;    
  }
}
.hover_img {
  overflow: hidden;
  display: block;
}
.hover_img img{
 transition:1s all;
}
.hover_img img:hover{
  transform:scale(1.04,1.04);
  transition:0.4s all;
}
/*-form
-------------------------------------------------------------------*/
 
.form_small {
  width: 5rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(247,247,247,1.00);
}
.form_middle {
  width: 1.2rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
.form_long {
  width: 26rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
input,textarea {
  box-shadow: inset 1px 4px 5px -6px rgba(0,0,0,0.5);
  border: 1px solid #ddd;
  padding: 0.5rem;
  background-color: rgba(255,255,255,1.00);
}

/*	header#globalHeader　----------------------------------------------------*/
header#globalHeader {
  background-color: var(--sanri-main-color);
  color: #ffffff;
}
ul.navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.navbar-nav li {
  list-style: none;
  display: inline;
  padding-inline: 2rem;
}
ul.navbar-nav li a {
  display: inline-block;
  padding-block: 0.5rem;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  transition: 0.6s;
}
ul.navbar-nav li a:hover {
  transition: 0.6s;
  background-image: url(../images/share/icon_nav.svg);
  background-repeat: no-repeat;
  background-position: center -5px;
}
ul.navbar-nav li.active {
  background-image: url(../images/share/icon_nav.svg);
  background-repeat: no-repeat;
  background-position: center -5px;
}
header#globalHeader.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  animation: DownAnime 1s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.navbar-brand {
  background-image: url(../images/share/bg_logo.svg);
  background-repeat: no-repeat;
  padding: 1rem 12rem;
}
.navbar-brand img {}
/*トグルボタン----------------------------------*/
.toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border-style: none;
}
.toggle:focus {
  outline: none;
}
.pc {
  display: none;
}
@media (min-width: 1260px) {
  .toggle {
    display: none;
  }
  .smp {
    display: none;
  }
  .pc {
    display: inline-block;
  }
}
@media (max-width: 1260px) {
  .navbar-collapse {
    background-color: var(--sanri-main-color);
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
  }
  .navbar-collapse:after {
    content: "";
  }
  ul.navbar-nav {
    width: 100%;
    height: calc(100vh - 60px);
    text-align: center;
    flex-flow: column;
    justify-content: center;
  }
  ul.navbar-nav li {
    display: block;
    margin-block: 2rem;
  }
  body.active {
    height: 100%;
    overflow: hidden;
  }
}
.navbar-toggle-anime, .navbar-toggle-anime span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.navbar-toggle-anime {
  position: relative;
  width: 26px;
  height: 26px;
}
.navbar-toggle-anime span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 4px;
}
.navbar-toggle-anime span:nth-of-type(1) {
  top: 0;
}
.navbar-toggle-anime span:nth-of-type(2) {
  top: 10px;
}
.navbar-toggle-anime span:nth-of-type(3) {
  bottom: 5px;
}
.navbar-toggle-anime.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.navbar-toggle-anime.active span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggle-anime.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}
@media (max-width: 698px) {
  .navbar-brand {
    background-image: url(../images/share/bg_logo-smp.svg);
    background-repeat: no-repeat;
    background-size: 95% auto;
    padding: 1.2rem 5rem 1.2rem 4rem;
  }
  .navbar-brand img {
    width: 17rem;
    height: auto;
  }
  }
/*	footer#globalFooter　----------------------------------------------------*/
footer#globalFooter {
	clear: both;
}
.footer {
  background-color: var(--sanri-main-color);
  padding: 4rem 4rem;
  color: #ffffff;
  display: flex;
}
.footer__address {
  margin-inline-end:5rem ;
}
.footer .flogo {
  margin-block-end: 1rem;
}
.footer p {
  line-height: 1.4;
  margin-block-end: 1rem;
}
.fnav {
  display: flex;
  padding-block-start:3rem ;
}
.footer nav ul {
	list-style: none;
	padding: 0;
	margin-inline-end: 3rem;
}
.footer nav ul li {
	list-style: none;
	margin-block-end: 1rem;
}
.footer nav ul li a {
  padding-inline-start: 1.5rem;
  background-image: url(../images/share/icon_fnav.svg);
  background-repeat: no-repeat;
  background-position: left center;
  text-decoration: none;
  transition: 0.6s;
}
.footer nav ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.6s;
}
@media (min-width:768px) {
  .tel a {
    text-decoration: none;
  }
}
.contactArea {
  background-color: #EFEFEF;
  text-align: center;
  padding-block: 5rem;
}
.contactArea i {
  display: block;
  margin-block-end:1rem;
}
.contactArea h2 {
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 400;
  color: #5C5C5C;
  margin-block-end:2rem;
}
.contactArea p {
  margin-block-end:2rem;
}
.contactArea__btn {
  margin-bottom: 0.5rem;
}
.contactArea__btn a {
  display: block;
  margin: auto;
  border: 1px solid #707070;
  width: 100%;
  max-width: 25.6rem;
  padding-block: 2rem;
  color: #707070;
  text-decoration: none;
  border-radius: 1rem;
  transition: 0.6s;
}
.contactArea__btn a:hover {
  background-color: #707070;
  color: #ffffff;
  transition: 0.6s;
}
.page-top {
  right: -50px;
  bottom: 50px;
  position: fixed;
  z-index: 999999;
}
.page-top a {
  border-radius: 10rem;
  background-color: var(--sanri-main-color);
  border: 1px solid #ffffff;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  display:block;
  position: relative;
}
.page-top a:after {
  content: "";
  display: block;
  background: #ffffff;
  height: calc(tan(60deg) * 60px / 2);
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);
}
@media (max-width:698px) {
  .footer {
    padding: 2rem 1rem;
    display: block;
    text-align: center;
  }
  .footer__address {
    margin-inline-end:0 ;
  }
  .footer .flogo {
    margin-block-end: 1rem;
  }
  .footer nav ul {
    text-align: left;
    margin-inline: 1.5rem;
  }
  .footer nav ul li {
    list-style: none;
    margin-block-end: 2rem;
  }
  .contactArea {
    padding-block: 2.5rem;
  }
  .contactArea h2 {
    font-size: 2.5rem;
    margin-block-end:1rem;
  }
  .contactArea p {
    font-size: 1.3rem;
    margin-block-end:2rem;
  }
  .contactArea__btn a {
    padding-block: 1rem;
  }
}
/* copyright　----------------------------------------------------*/
footer#globalFooter p.copyright {
	text-align: center;
  font-size: 1.2rem;
}

/*#　contents ----------------------------------------------------*/
#contents {
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-start {
	justify-content: flex-start;
}
.flex-center {
	justify-content:center;
}
.flex-end {
	justify-content:flex-end;
}
.flex-around {
	justify-content:space-around;
}
.center_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width:576px) {
	.flex {
		display: block;
	}
}
/*  ------------------------------------------------------------------------------*/
/* BUTTON */

.btn a {
  display: inline-block;
  width:100%;
  max-width: 260px;
  text-align: center;
  border: 1px solid var(--sanri-main-color);
  color: #ffffff;
  text-decoration: none!important;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 12px 0;
  border-radius: 8px;
  transition: .4s;
  background-color: var(--sanri-main-color);
}
.btn a {
  text-decoration: none;
}
.btn a:hover {
  background-color: var(--sanri-blue);
  border-color: var(--sanri-blue);
  color: #FFF;
}

/* home ------------------------------------------------------------------------------*/
.slider {
  position: relative;
  overflow: hidden;
  margin-block-end: 6rem;
}
.mc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mc .bg {
  margin-left: 6.4rem;
}
.mc__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.title {
  font-family: var(--title-font);
  padding-left: 5rem;
  background-image: url(../images/share/icon_title.svg);
  background-repeat: no-repeat;
  background-position: center left;
  font-size: 3rem;
  font-weight: 400;
  margin-block-end: 4rem;
}
.homeAbout {
  position: relative;
  margin-block-end: 7vw;
}
.homeAbout__content {
  position: relative;
  z-index: 10;
  margin-block-start: 25%;
}
.homeAbout__content p {
  margin-block-end: 4vw;
}
.homeAbout__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  z-index: 0;
}

.homeNews {
  position: relative;
  margin-block-end: 7vw;
}
.homeNews_image {
  position: relative;
  width: 60%;
  z-index: 0;
}
.homeNews__title {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  padding-inline-end: 10rem;
}
.homeNews__title .title {
  margin-block-end: 0;

}
.homeNews__content {
  width: 100%;
  position: relative;
  z-index: 10;
  background-image: url(../images/home/bg-news.svg);
  background-repeat: no-repeat;
  background-position: center top;
  padding: 3rem;
}
.homeNews__wrap-inner {
  margin-block-start: -35rem;
}
ul.homeNews__list {
  padding: 2rem 15rem 0;
  list-style: none;

}
ul.homeNews__list li {
  margin-block-start: -1px;
  padding: 2rem;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
ul.homeNews__list li a {
  text-decoration: none;
}
ul.homeNews__list li a .date {
  margin-inline-end: 4rem;
  font-weight: 600;
}
.homeNews__content .more {
  text-align: right;
  margin-inline-end: 14rem;
}
.homeNews__content .more a {
  font-size: 1.3rem;
  text-decoration: none;
}
.homeNews__content .more a i {
  margin-inline-start:0.6rem;
}
.homeNews__content .more a i img {
  margin-block-start: -0.7rem;
}
.homeStock {
  position: relative;
  margin-block-end: 15vw;
}
.homeStock__content {
  position: relative;
  z-index: 10;
  margin-block-start: 25%;
}
.homeStock__content p {
  margin-block-end: 4vw;
}
.homeStock__bg {
  position: absolute;
  right: -4vw;
  top: 0;
  width: 60%;
  z-index: 0;
}

/* page common */
main,footer {
  position: relative;
  z-index: 10;
}
header {
  position: relative;
  z-index: 11;
}
.page_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
.pageTItle__wrap {
  height: 18rem;
  border-bottom: 1px solid #E0E0E0;
  margin-block-end: 0.5rem;
}
.pageTItle__wrap .container {
  width: 100%;
  height: 100%;
  position: relative;
}
.pageTItle__wrap h1 {
  font-family: var(--title-font);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.pageTItle__wrap span {
  font-family: var(--title-font);
  font-size: 12rem;
  font-weight: 400;
  color: #E3E3E3;
  line-height: 1;
  position: absolute;
  bottom: -2rem;
  right: 0;
  z-index: 0;
}
.pageTitle .breadNav {
  padding-block-end: 12rem;
}
.pageTitle .breadNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.pageTitle .breadNav ul li {
  font-size: 1.2rem;
}
.pageTitle .breadNav ul li a {
  display: block;
  text-decoration: none;
  position: relative;
  padding-inline-end: 10px;
  margin-inline-end: 10px;
}
.pageTitle .breadNav ul li a:before {
  content: "-";
  position: absolute;
  right: -5px;
  top: 0px;
}
.pageTitle .breadNav ul li:last-child a:before {
  display: none;
}
.pageTitle .breadNav ul li a:hover {
  text-decoration: underline;
}

/* 事業紹介 ------------------------------*/
.serviceTitle {
  position: relative;
  margin-block-end: 4rem;
}
.serviceTitle h2 {
  font-family: var(--title-font);
  font-size: 9rem;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  bottom: 0rem;
  left: 2rem;
  z-index: 1;
}
.serviceTitle span {
  font-family: var(--title-font);
  font-size: 12rem;
  font-weight: 100;
  color: #E3E3E3;
  line-height: 1;
  position: relative;
  z-index: 0;
}
.serviceContents01 {
  margin-block-end: 6rem;
}
.serviceContents01 p {
  padding-block-end: 4rem;
}
.serviceContents02 {
  margin-block-end: 6rem;
}
.serviceContents02__wrap {
  display: flex;
}
.serviceContents02__wrap-inner {
  width: 75%;
}
.serviceContents02__wrap-image {
  width: 25%;
}
.serviceContents02__wrap-inner {
  padding-inline-end: 1rem;
}
.serviceContents02__wrap-inner table {
  width: 100%;
  border-top: 1px solid #666666;
}
.serviceContents02__wrap-inner table th {
  border-bottom: 1px solid #666666 ;
  padding: 2rem 1rem;
  font-weight: 400;
}
.serviceContents02__wrap-inner table td {
  border-bottom: 1px solid #666666;
  border-left: 1px solid #666666;
  padding: 2rem 1rem;
}
.serviceContents02__wrap-image img {
  margin-block-end: 1rem;
}
.flow {
  padding-block-end: 6rem;
}
.flow__wrap ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flow__wrap ul li {
  width: 24%;
  background-color: #ffffff;
  position: relative;
  margin-block-end: 2rem;
  box-shadow: 0 0 3px 3px rgba(00,00,00,0.05);
}
.flow__wrap-box {
  width: 100%;
  display: flex;
 }
.flow__wrap ul:after {
  content: "";
  width: 24%;
  display: block;
}
.flow__wrap ul li .step {
  background-color: #004594;
  width: 35%;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.flow__wrap ul li .step span {
  font-size: 2rem;
}
.flow__wrap ul li .flow__wrap-inner {
  text-align: center;
  width: 65%;
  padding: 1rem;
}
.flow__wrap ul li .flow__wrap-inner h3 {
  font-family: var(--title-font);
  font-weight: 400;
  font-size: 2rem;
}
.flow__wrap ul li .flow__wrap-inner .img {
  height: 80px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.flow__wrap ul li .flow__wrap-inner p {
  font-size: 1.3rem;
  line-height: 1.4;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 36px;
}
.faq {
  padding-block-end: 6rem;
}
.faq__wrap {
  padding-block-end: 6rem;
}
.faq__wrap i {
  margin-inline-end: 2rem;
  width: 2.8rem;
}
.faq__wrap i img {
  margin-block-start: -0.5rem;
}
.faq__wrap dl {
  padding-block-end: 1.5rem;
  font-size: 2rem;
  border-bottom: 1px solid #333333;
}
.faq__wrap dl dt {
  padding-block-start: 1.5rem;
  position: relative;
  cursor: pointer;
}
.faq__wrap dl dd {
  padding-block-start: 1.5rem;
  display: none;
  position: relative;
}
.faq__wrap dl dd .inner {
  display: flex;
}
.faq__wrap dl dt:after {
  content: "";
  background-image: url(../images/service/icon_faq.svg);
  background-size: 21px 11px;
  position: absolute;
  right: 0;
  top: 60%;
  transform: translateY(-50%) rotate(180deg);
  width: 21px;
  height: 11px;
  transition: 0.6s;
}
.faq__wrap dl dt.open:after {
  transform: translateY(-50%);
  transition: 0.6s;
}
.serviceContents02__wrap-inner {
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
}
.scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: none;
  animation: scroll-hint-animation 2s infinite ease;
}
@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
.scroll-hint--show {
  display: block;
}

/************
 * 会社案内
****************/
.outline {
  margin-block-end: 12rem;
}

.outline__wrap {
  display: flex;
  align-items: flex-end;
}
.outline__wrap p {
  margin-block-end: 2.5rem;
}
.outline__wrap picture {
  display: block;
  margin-block: 1rem 3rem;
}
.outline__wrap-inner {
  margin-block-end: 3rem;
}
.outline__wrap-image {
  margin-block-end: 3rem;
}
.outline__wrap-inner {
  padding-inline-end: 2rem;
}
.outline__wrap-inner table {
  width: 100%;
}
.outline__wrap-inner table th {
  border-bottom: 1px solid #afafaf ;
  padding: 2rem 1rem;
  font-weight: 400;
}
.outline__wrap-inner table td {
  border-bottom: 1px solid #afafaf;
  padding: 2rem 1rem;
}
.outline__wrap-image img {
}
.history {
  margin-block-end: 12rem;
}
.history__wrap {
  display: flex;
  align-items: flex-end;
  margin-block-end: 3rem;
}
.history__wrap-inner {
  width: 100%;
}
.history__wrap-inner {

}
.history__wrap-inner table {
  width: 100%;
}
.history__wrap-inner table td {
  padding: 2rem 0;
}
.history__wrap-inner table tr.sanri {
  background-color: #F2F3F5;
  padding: 3rem;
}
.history__wrap-inner table tr.sanri th {
  font-weight: 400;
  padding-left:2rem;
  width: 60px;
}
.history__wrap-inner table td.year {
  width: 75px;
}
.history__wrap-inner table td.center {
  position: relative;
  width: 60px;
}
.history__wrap-inner table td.center:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #18294F;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 100px;
}
.history__wrap-inner table td.center:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #18294F;
  width: 1px;
  height: 100%;
}
.history__wrap-inner table td.center.first:after {
  top: 50%;
  height: 50%;
}
.history__wrap-inner table td.center.last:after {
  height: 50%;
}
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 90%;
  margin-block-end: 3rem;
}
 
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access {
  margin-block-end: 12rem;
}
.access picture {
  margin-block-end: 2rem;
  display: block;
}
.access p {
  padding-block-end: 2rem;
}

/**********
 * 在庫
 * *******/
.title_wrap {
  display: flex;
  justify-content: space-between;
}
.title_wrap .pdf {
  padding-block-start: 1rem;
}
.title_wrap .pdf a {
  text-decoration: none;
}
.title_wrap .pdf a:hover {
  text-decoration: underline;
}
.title_wrap .pdf i {
  margin-inline-end: 1rem;
}
.title_wrap .pdf i img {
  margin-block-start: -0.5rem;
}
.stock-image {
  margin-block-end: 3rem;
}
.stock {
  margin-block-end: 6rem;
}
.stock table {
  width: 100%;
  text-align: center;
  border: 1px solid #666666;
}
.stock table th,
.stock table td {
  padding-block:0.5rem ;
  border: 1px solid #666666;
  font-weight: 400;
}
.stock table td {}
.green {
  background-color:#38A044 ;
}
.yellow {
  background-color:#FBC500 ;
}
.pink {
  background-color:#DA2A80 ;
}
.green2 {
  background-color:#CBE2C2 ;
}
.yellow2 {
  background-color:#FFEEBC ;
}
.pink2 {
  background-color:#F6D3E4;
}

/***********
 * お問い合わせ
 * *********/
.contact {
  padding-block-end: 12rem;
}
.contact__mc {
  text-align: center;
  border-bottom: 1px solid #939393;
  padding-bottom: 10rem;
}
.contact_tel {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 7rem;
  border-bottom: 1px solid #939393;
}
.contact_tel .tel {
  font-family: "Arial";
  padding-block: 0;
  font-size: 4rem;
  font-weight: 700 !important;
  color: #18294F;
}
.contact_tel .tel i {
  margin-inline-end: 1rem;
}
.contact_tel .tel i img {
  margin-block-start: -0.8rem;
}
.form {
  padding-top: 9rem;
}
.form h2 {
  text-align: center;
}
.form p {
  text-align: center;
}
.form__inner {
  padding-top: 7rem;
  padding-bottom: 18rem;
  width: 100%;
  max-width: 73rem;
  margin-right: auto;
  margin-left: auto;
}
.form__inner dl {
  display: flex;
  margin-bottom: 2.3rem;
  text-align: left;
}
.form__inner dl dt {
  width: 25%;
  font-size: 1.3rem;
}
.form__inner dl dt sup {
  color: red;
}
.form__inner dl dd {
  width: 75%;
}
.form__inner dl dd #preview {
  width: 100%;
  height: auto;
}
.form__inner dl dd a {
  text-decoration: underline;
}

.confirm .form__inner dl {
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
.form.confirm p {
text-align: left;
}
.grecaptcha-badge { visibility: hidden; }

.form.finish p {
 margin-block-end: 3rem;
}

.confirm .btn p {
  display: flex;
  justify-content: center;

}
.form__inner .btn {
  padding-top: 8rem;
}
.form__inner .btn input {
  background-color: #18294F;
  width: 26rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 0.2rem;
  border-radius: 0.6rem;
  margin-block-end: 2rem;
}
input[type="text"],input[type="tel"],input[type="email"],input[type="submit"],textarea {
  width: 100%;
  box-shadow: none;
  border: 1px solid #F4F4F4;
  background-color: #F4F4F4;
  border-radius: 0;
  padding:1.5rem 1.5rem;
}
.finish__inner {
  text-align: left;
}
.finish__inner h2 {
  font-family: var(--title-font);
  font-size: 2.4rem;
  margin-block-end: 4rem;
  text-align: center;
}
.finish__inner p {
  margin-block-end: 2rem;
}
#formWrap {}
#formWrap dl {
 border-bottom: 1px solid #cccccc;
}
#formWrap dt {
  width: 28%;
}
#formWrap dd {
  width: 72%;
}
/***********
 * privacy
 * *********/
.privacy {
  padding-block-end: 12rem;
}
.privacy__mc {}
.privacy__mc h2 {
  font-size: 2.4rem;
  font-family: var(--title-font);
  text-align: center;
  margin-block-end: 3rem;
}
.privacy__mc h3 {
  font-size: 1.8rem;
  font-family: var(--title-font);
  margin-block: 4rem 1rem;
}
.privacy__mc p {
  margin-block-end: 1rem;
}
.privacy__mc ul {}
.privacy__mc ol {
  padding-inline-start: 3rem;
}
.privacy__mc ol li ol {
  margin-block-start: 1rem;
}
.privacy__mc li {
  margin-block-end: 0.6rem;
}
.cookie__block {
  padding-block: 5rem;
}
.cookie__block h2 {
  border-bottom: 1px solid #cccccc;
  padding-block-end: 2rem;
}
.cookie__block p {
  margin-block-end: 3rem;
}

/**********
 * お知らせ
 * *********/
.news {
  padding-block-end: 12rem;
}
.news__mc {}
.news__mc h2 {
  border-bottom: 1px solid #cccccc;
  padding-block-end: 0.5rem;
  margin-block-end: 2rem;
  font-size: 2.4rem;
  color: #666666;
  font-weight: 400;
}
.news_content {}
.news_content .day {
  margin-block-end: 3rem;
}
.news_content p {
  margin-block-end: 2rem;
}
.news_nav {
  margin-block-start: 5rem;
}
.news_nav ul {
  list-style: none;
  padding: 0;
}
.news_nav li {}
.news_nav li a {
  text-decoration: none;
}.news_nav li i {
  margin-inline-end: 1rem;
}
.news_nav li i img {
  transform: scale(-1, 1);
}
.news_nav li a:hover {
  color: #666666;
}
.cat {
  margin-block: 3rem;
  display: flex;
}
.cat ul {
  list-style: none;
  padding: 0;
}
#MediaQueries--------------------------------------------------------------------------------------- {}
@media (max-width:1280px) {}
@media (max-width:1120px) {}
@media (max-width:1024px) {}
@media (max-width:768px) {

  .sm_mc {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
  }
  .slider {
    position: relative;
    overflow: hidden;
    margin-block-end: 6rem;
  }
  .mc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .mc .bg {
    margin-left: 6.4rem;
  }
  .mc__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .title {
    padding-left: 5rem;
    font-size: 2.4rem;
    margin-block-end: 2rem;
  }
  .homeAbout {
    margin-block-end: 5rem;
  }
  .homeAbout__content {
    position: relative;
    z-index: 10;
    margin: 0 auto 0;
    width: 90%;
  }
  .homeAbout__content p {
    margin-block-end: 4vw;
  }
  .homeAbout .col-sm-6 {
    order: 2;
  }
  .homeAbout__bg {
    order: 1;
    position: static;
    right: auto;
    top: auto;
    width: 90%;
    z-index: 0;
    margin:0 auto 0rem;
  }
  .homeNews {
    margin-block-end: 7vw;
  }
  .homeNews_image {
    width: 80%;
  }
  .homeNews__title {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    padding-inline-end: 0rem;
  }
  .homeNews__title .title {
    margin-block-end: 0;
  }
  .homeNews__content {
    width: 100%;
    padding: 0;
    background-color: #f2f2f2;
  }
  .homeNews__wrap-inner {
    margin-block-start: -14rem;
  }
  ul.homeNews__list {
    padding: 4rem 0 0.5rem  ;
    list-style: none;

  }
  ul.homeNews__list li {
    margin-block-start: -1px;
    padding: 2rem;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
  }
  ul.homeNews__list li a {
    text-decoration: none;
  }
  ul.homeNews__list li a .date {
    margin-inline-end: 0;
    font-weight: 600;
    display: block;
  }
  .homeNews__content .more {
    text-align: right;
    margin-inline-end: 0;
    padding-block-end: 3rem;
  }
  .homeNews__content .more a {
    font-size: 1.3rem;
    text-decoration: none;
  }
  .homeNews__content .more a i {
    margin-inline-start:0.6rem;
  }
  .homeNews__content .more a i img {
    margin-block-start: -0.7rem;
  }
  .homeStock {
    position: relative;
    margin-block-end: 15vw;
  }
  .homeStock__content {
    position: relative;
    z-index: 10;
    width: 90%;
    margin: 0 auto 5%;
  }
  .homeStock__content p {
    margin-block-end: 4vw;
  }
  .homeStock .col-sm-6 {
    order: 2;
  }
  .homeStock__bg {
    order: 1;
    position: static;
    right:auto;
    top: auto;
    width: 80%;
    z-index: 0;
    margin:2rem auto 0;
  }
  .pageTItle__wrap {
    height: 12rem;
  }
  .pageTItle__wrap h1 {
    font-size: 2rem;
  }
  .pageTItle__wrap span {
    font-size: 8rem;
    bottom: -1rem;
  }
  .pageTitle .breadNav {
    padding-block-end: 4rem;
  }
  .pageTitle .breadNav ul li {
    font-size: 1rem;
  }
  .pageTitle .breadNav ul li a {
    padding-inline-end: 7px;
    margin-inline-end: 7px;
  }
  .pageTitle .breadNav ul li a:before {
    right: -2.5px;
  }

  /* 事業紹介 ------------------------------*/
  .serviceTitle h2 {
    font-size: 4.5rem;
    left: 2rem;
  }
  .serviceTitle span {
    font-size: 8rem;
  }
  .serviceContents01 {
    margin-block-end: 4rem;
  }
  .serviceContents01 p {
    padding-block-end: 2rem;
  }
  .serviceContents02 {
    margin-block-end: 4rem;
  }
  .serviceContents02__wrap {
    display: block;
  }
  .serviceContents02__wrap-inner {
    width: 100%;
  }
  .serviceContents02__wrap-image {
    padding-block: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .serviceContents02__wrap-inner {
    padding-inline-end: 0;
  }
  .serviceContents02__wrap-inner table th {
    padding: 2rem 1rem;
    font-size: 1.3rem;
  }
  .serviceContents02__wrap-inner table td {
    padding: 2rem 1rem;
    font-size: 1.3rem;
  }
  .serviceContents02__wrap-image img {
    width: 48%;
    margin-block-end: 0;
  }
  .flow {
    padding-block-end: 4rem;
  }
  .flow__wrap ul li {
    width: 32%;
  }
  .flow__wrap ul li .flow__wrap-inner h3 {
    font-size: 1.7rem;
  }
  .flow__wrap ul li .flow__wrap-inner .img {
    height: 80px;
  }
  .flow__wrap ul li .flow__wrap-inner p {
    font-size: 1.1rem;
  }
  .faq {
    padding-block-end: 4rem;
  }
  .faq__wrap {
    padding-block-end: 0rem;
  }
  .faq__wrap dl {
    font-size: 1.6rem;
  }
}
@media (max-width:698px) {
  .page_bg img {
    zoom: 0.43;
  }
  .pageTitle {
    padding-inline: 1rem;
  }
  /* 事業紹介 ------------------------------*/
  .serviceTitle h2 {
    font-size: 4rem;
    left: 1rem;
  }
  .serviceTitle span {
    font-size: 4rem;
  }
  .serviceContents01 {
    margin-block-end: 4rem;
  }
  .serviceContents01 p {
    padding-block-end: 2rem;
  }
  .serviceContents02 {
    margin-block-end: 4rem;
  }
  .flow__wrap ul li {
    width: 48%;
  }
  .flow__wrap ul li .step {
    width: 25%;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .flow__wrap ul li .step span {
    font-size: 1.6rem;
  }
  .flow__wrap ul li .flow__wrap-inner {
    width: 75%;
    padding: 0.5rem;
  }
  .flow__wrap ul li .flow__wrap-inner h3 {
    font-size: 1.5rem;
  }
  .flow__wrap ul li .flow__wrap-inner .img {
    height: 70px;
    zoom: 0.6;
  }
  .flow__wrap ul li .flow__wrap-inner p {
    font-size: 1rem;
  }
  .flow__wrap ul li .flow__wrap-inner p br {
    display: none;
  }
  .faq {
    padding-block-end: 3rem;
  }
  .faq__wrap {
    padding-block-end: 0;
  }
  .faq__wrap i {
    margin-inline-end: 1rem;
    width: 1.8rem;
  }
  .faq__wrap i img {
    zoom: 0.7;
    margin-block-start: -0.5rem;
  }
  .faq__wrap dl {
    padding-block-end: 1rem;
    font-size: 1.3rem;
  }
  .faq__wrap dl dt {
    padding-block-start: 1rem;
  }
  .faq__wrap dl dd {
    padding-block-start: 1.5rem;
    font-size: 1.3rem;
  }
  .faq__wrap dl dt:after {
    background-size: 15px auto;
    top: 60%;
    width: 15px;
    height: 10px;
  }
  .outline {
    margin-block-end: 6rem;
  }

  .history {
    margin-block-end: 6rem;
  }
  .history__wrap {
    margin-block-end: 0rem;
  }
  .history__wrap-inner {
    width: 100%;
  }
  .history__wrap-inner table tr.sanri th {
    padding-left: 1.5rem;
    width: 40px;
    font-size: 1rem;
  }
  .history__wrap-inner table td {
    padding: 1rem 0;
    font-size: 1.2rem;
  }
  .history__wrap-inner table td.center {
    width: 30px;
  }
  .contact__page {
    padding-top: 3rem;
  }
  .contact__mc {
    padding-bottom: 5rem;
  }
  .contact_tel {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .form {
    padding-top: 5rem;
  }
  .form__inner {
    padding-top: 6rem;
    padding-bottom: 10rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .contact__page h2 {
    margin-bottom: 2rem;
  }
  .contact__page .form h2 {
    margin-bottom: 1rem;
  }
  .form__inner dl {
    display: block;
    margin-bottom: 2rem;
  }
  .form__inner dl dt {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .form__inner dl dt sup {
    color: red;
  }
  .form__inner dl dd {
    width: 100%;
  }
  .form__inner dl dd.file {
    text-align: center;
    padding-top: 3rem;
  }
  .form__inner dl dd #preview {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
  .form__inner .btn {
    padding-top: 4rem;
  }
  #formWrap dt {
    width: 100%;
    text-align: left;
  }
  #formWrap dd {
    width: 100%;
  }
  /**********
 * 在庫
 * *******/
  .title_wrap {
    display: block;
  }
  .title_wrap .pdf {
    padding-block-start: 0rem;
    padding-block-end: 1rem;
    text-align: right;
  }
  .title_wrap .pdf a {
    text-decoration: none;
  }
  .title_wrap .pdf a:hover {
    text-decoration: underline;
  }
  .title_wrap .pdf i {
    margin-inline-end: 1rem;
  }
  .title_wrap .pdf i img {
    margin-block-start: -0.5rem;
  }
  .stock-image {
    margin-block-end: 1rem;
  }
  .stock {
    margin-block-end: 2rem;
  }
  .stock table {
    font-size: 1rem;
  }
  .stock table th,
  .stock table td {
    padding-block:0.2rem ;
    border: 1px solid #666666;
    font-weight: 700;
  }
  .stock table td {
    letter-spacing: -0.01rem;
  }

}
@media (max-width:414px) {}
@media (max-width:320px) {}