@charset "UTF-8";
/* CSS Document */
.pc {
  display: block
}
.sp {
  display: none
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none
  }
  .sp {
    display: block
  }
}
html {
  scroll-behavior: smooth
}
a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease
}
a:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.8
}
img{
	max-width: 100%;
	height: auto;
/*     aspect-ratio: attr(width) / attr(height); */	
}
body {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2.0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  /*text-align: justify*/
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 14px;
    letter-spacing: 0.02em;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
  background: rgba(255, 255, 255, 0.5)
}
@media only screen and (max-width: 768px) {
  header {
    align-items: flex-start;
    padding: 20px 10px 12px;
  }
}
header .header__logo {
  margin-left: 10vw
}
@media only screen and (max-width: 768px) {
  header .header__logo {
    margin-left: 10vw;
    width: 50vw;
  }
  header .header__logo img {
    width: 100%;
  }
}
header .gnav {
  text-align: right
}
@media only screen and (max-width: 768px) {
  header .gnav {
    display: none
  }
}
header .gnav .gnav__inner {
  display: flex
}
header .gnav .gnav__inner a {
  margin-left: 15px
}
.contact {
  color: #fff;
  width: 280px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 85px;
  right: 0;
  z-index: 100;
  background: linear-gradient(#0b6cfa, #015696)
}
@media only screen and (max-width: 768px) {
  .contact {
    display: none
  }
}
#contact h3 {
  font-size: 1.6vw;
  font-weight: bold;
  color: #04528e;
  border: #04528e solid 2px;
  margin: 6vw 0 2vw;
  padding: 0 1vw
}
@media only screen and (max-width: 768px) {
#contact h3 {
  font-size: 3.6vw;
}
}
.contact img {
  margin-right: 10px
}
#contact .formwrap {
  width: 100%;
  background: #e5e6e8;
  padding: 20px 40px 60px;
  margin-top: 2vw;
}
@media only screen and (max-width: 768px) {
  #contact .formwrap {
    padding: 10px 20px 60px;
  }
}
#contact .formwrap table {
  width: 100%;
}
#contact .formwrap tr {
  width: 100%;
  padding: 20px 0;
  display: flex;
/*   align-items: center; */
}
@media only screen and (max-width: 768px) {
  #contact .formwrap tr {
    align-items: flex-start;
    flex-direction: column;
  }
}
#contact .formwrap th {
  width: 30%;
  border-left: 4px solid #04528e;
  padding-left: 15px;
}
@media only screen and (max-width: 768px) {
  #contact .formwrap th {
    width: 100%;
  }
}
#contact .formwrap th span.red-b {
  color: #d80c18;
  margin-left: 15px;
  font-weight: bold;
}
#contact .formwrap th span.red-n {
  color: #d80c18;
  margin-left: 15px;
  font-weight: normal;
}
#contact .formwrap th span.bk {
  color: #000;
  margin-left: 15px;
  font-weight: normal;
}
#contact .formwrap td {
  width: 70%;
}
@media only screen and (max-width: 768px) {
  #contact .formwrap td {
    width: 100%;
    margin-top: 20px;
  }
}
#contact .formwrap td input {
  background: #fff;
  padding: 0 10px;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  #contact .formwrap td input {
    padding: 10px 10px;
  }
}
#contact .formwrap td label {
  margin: 0 20px 0 5px;
}
#contact .formwrap td input.size__full {
  width: 100%;
}
#contact .formwrap td input.size__middle {
  width: 70%;
}
#contact .formwrap td input.hope_btn {
  margin-left: 20px;
}
#contact .formwrap td textarea {
  width: 100%;
  background: #fff;
  padding: 0 10px;
  border-radius: 5px;
}
#contact .formwrap input[type=checkbox] {
  transform: scale(1.6);
  margin: 0 0 3px;
}
#contact .formwrap input[type=radio] {
  transform: scale(1.6);
  margin: 0 0 3px;
}
#contact .formwrap .form__check {
  margin: 60px 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #contact .formwrap .form__check {
    text-align: left;
  }
}
#contact .formwrap .form__check2 {
  margin: 60px 0;
  text-align: center;
    font-size: 0.8vw;
}
@media only screen and (max-width: 768px) {
  #contact .formwrap .form__check2 {
    text-align: left;
    font-size: 3.0vw;
  }
}
#contact .formwrap .form_btn02 {
  width: 160px;
  background: linear-gradient(#d7cbc7, #7e7b7f);
  color: #fff;
  padding: 10px 0;
  margin: 0 10px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #contact .formwrap .form_btn02 {
    margin-top: 20px;
  }
}
textarea:focus {
  outline-color: #1e90ff;
}

#word-count {
  margin: 0.5vw 5px 0;
    text-align: right;
    font-size: 0.8vw;
}
@media only screen and (max-width: 768px) {
#word-count {
    font-size: 3.0vw;
}
}
.hope_request {
    font-weight: bold;
    color: #d80c18;
        .wpcf7-list-item-label{
	    color: #000;
    }
}
#contact{
	
	@media(max-width:768px){
		padding: 0;
	}	
	.formwrap td input[type=text],
	.formwrap td textarea,
	.formwrap td input.size__middle,
	.formwrap td input.size__full {
		@media(max-width:567px){
			 width: 100%;
		}
	   
	}
	.formwrap .form__check {
	@media(max-width:567px){
    	margin: 0;
    }

}
    .submit-btn{
	@media(max-width:567px){
    	width: 90%;
    }	    
    }
.formwrap .form__check2{
	@media(max-width:567px){
	margin: 0;
	}
}    
.inquiry-q-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inquiry-q-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px dashed #aaa;
   padding-bottom: 17px;
}
.inquiry-q-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.inquiry-q-inline-space {
  display: inline-block;
  width: 40px;
}

/* テキスト入力のサイズ調整 */
.size__inline input.wpcf7-form-control {
  width: 360px;
  display: inline-block;
}
.size__inline-sm input.wpcf7-form-control {
  width: 240px;
  display: inline-block;
}

/* SP対応 */
@media (max-width: 768px) {
  .inquiry-q-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .size__inline input.wpcf7-form-control,
  .size__inline-sm input.wpcf7-form-control {
    width: 100%;
  }
  .inquiry-q-inline-space {
    display: none;
  }
}	
}

.breadcrumb {
  font-size: 70%;
  width: calc(100% - 300px);
  position: absolute;
  top: 105px;
  height: 30px;
  background: #e5e6e8;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: calc(10vw + 30px)
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    width: 100%;
    top: 60px;
    height: 30px;
    padding-left: calc(10vw + 10px)
  }
}
.breadcrumb a {
  margin-right: 10px;
}
.breadcrumb a:hover {
  color: #04528e;
  text-decoration: underline
}
nav {
  width: 90vw;
  margin: 0 5vw;
  position: absolute;
  top: 420px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
    flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  nav {
    top: 225px;
    justify-content: flex-start;
      align-items: stretch;
  }
}
nav a {
  border: 1px solid #04528e;
  background: #fff;
  width: 15vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  margin-left: 20px;
  color: #04528e;
  font-size: 1.2vw;
  line-height: 1.6vw;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  nav a {
    border: 1px solid #04528e;
    background: #fff;
    width: 27vw;
    display: flex;
    justify-content: center;
    align-items: center;
  height: 40px;
    padding: 10px 0;
    margin-left: 3vw;
    margin-bottom: 3vw;
    color: #04528e;
    font-size: 3.0vw;
  line-height: 3.8vw;
    font-weight: bold;
  }
}
nav a:hover {
  background: #dff2fc
}
.mvis .mvis__bg {
  width: 80vw;
  height: 90vh;
  background: linear-gradient(#0b6cfa, #015696)
}
.mvis .mvis__img {
  position: absolute;
  top: 0;
  width: 90vw;
  height: 100vh;
  margin-left: 10vw;
  z-index: 1
}
.mvis .mvis__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2
}
.mvis .mvis__copy {
  position: absolute;
  top: 70vh;
  right: 5vw;
  width: 60vw;
  z-index: 3
}
@media only screen and (max-width: 768px) {
  .mvis .mvis__copy {
    width: 75vw;
  }
}
.mvis .mvis__copy img {
  width: 100%
}
.mvis .scroll {
  position: absolute;
  top: 60vh;
  left: 2vw;
  width: 22px;
  z-index: 3
}
@media only screen and (max-width: 768px) {
  .mvis .scroll {
    width: 18px;
  }
}
.mvis .scroll img {
  width: 100%
}

.top__philosophy {
  width: 100vw;
  margin: 16vw auto 0;
  padding-left: 10vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
.top__philosophy {
  margin: 30vw auto 0;
    flex-wrap: wrap;
}
}
.top__philosophy img {
  width: 100%;
}
.top__philosophy .__txt-ttl {
    width: 7vw;
}
@media only screen and (max-width: 768px) {
.top__philosophy .__txt-ttl {
    width: 10vw;
}
}
.top__philosophy .__txt-area {
    width: 33vw;
}
@media only screen and (max-width: 768px) {
.top__philosophy .__txt-area {
    width: 60vw;
    margin-right: 10vw;
}
}
.top__philosophy .__txt-area h2 {
    font-size: 2.0vw;
    line-height: 3.0vw;
    font-weight: bold;
    border-bottom: solid 3px #000;
    padding-bottom: 1.4vw;
    margin-bottom: 1.4vw;
}
@media only screen and (max-width: 768px) {
.top__philosophy .__txt-area h2 {
    font-size: 4.0vw;
    line-height: 6.4vw;
    padding-bottom: 2.4vw;
    margin-bottom: 2.4vw;
}
}
.top__philosophy .__txt-area p {
    font-size: 1.1vw;
    line-height: 2.4vw;
}
@media only screen and (max-width: 768px) {
.top__philosophy .__txt-area p {
    font-size: 3.0vw;
    line-height: 6.2vw;
}
}
.top__philosophy .__txt-area a {
    font-size: 1.2vw;
    font-weight: bold;
    margin-top: 1.8vw;
    display: block;
    border-bottom: solid 3px #000;
    float: left;
}
@media only screen and (max-width: 768px) {
.top__philosophy .__txt-area a {
    font-size: 3.6vw;
    margin: 3vw 0 6vw;
}
}
.top__philosophy .__vis {
    width: 40vw;
}
@media only screen and (max-width: 768px) {
.top__philosophy .__vis {
    width: 80vw;
}
}
.top__business {
  width: 90vw;
  margin: 10vw 10vw 0 0 ;
}
.top__business h2 {
    font-size: 1.6vw;
  margin: 3vw 0 0 10vw;
    font-weight: bold;
    color: #04528e;    
}
@media only screen and (max-width: 768px) {
.top__business h2 {
    font-size: 4.0vw;
}
}
.top__business .__vis {
  width: 100%;
}
.top__business .__vis img {
  width: 100%;
}
.top__business .__txt-ttl {
  width: 36vw;
  margin: -2vw 0 0 10vw;
}
@media only screen and (max-width: 768px) {
.top__business .__txt-ttl {
  width: 53vw;
  margin: -4vw 0 6vw 10vw;
}
}
.top__business .__txt-ttl img {
  width: 100%;
}
.top__business .__txt-area {
  margin: 3vw 0 0 10vw;
    font-size: 1.1vw;
    line-height: 2.4vw;
}
@media only screen and (max-width: 768px) {
.top__business .__txt-area {
  margin: 3vw 0 6vw 10vw;
    font-size: 3.0vw;
    line-height: 6.2vw;
}
}
.top__business .top__manufacturer {
  display: flex;
    align-items: stretch;
  margin: 1vw 0 0 10vw;
}
.top__business .top__manufacturer .__logo {
  width: 75%;
  display: flex;
    flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
.top__business .top__manufacturer .__logo {
  width: 66%;
}
}
.top__business .top__manufacturer .__logo img {
  width: 33.3333333333333%;
    border: 1px solid #bfc2c6;
}
@media only screen and (max-width: 768px) {
.top__business .top__manufacturer .__logo img {
  width: 50%;
}
}
.top__business .top__manufacturer .__more {
  width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #bfc2c6;
    font-size: 1.2vw;
    font-weight: bold;
    background: #fff;
}
@media only screen and (max-width: 768px) {
.top__business .top__manufacturer .__more {
  width: 34%;
    font-size: 3.0vw;
}
}
.top__business .top__manufacturer .__more img {
  width: 5vw;
    margin-bottom: 2vw;
}
.top__business .top__merchandise {
  display: flex;
    align-items: stretch;
  margin: 1vw 0 0 10vw;
}
.top__business .top__merchandise .__category {
  width: 75%;
  display: flex;
    flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
.top__business .top__merchandise .__category {
  width: 66%;
}
}
.top__business .top__merchandise .__category .__vis {
  width: 33.3333333333333%;
    border: 1px solid #bfc2c6;
}
@media only screen and (max-width: 768px) {
.top__business .top__merchandise .__category .__vis {
  width: 50%;
}
}
.top__business .top__merchandise .__category .__vis img {
  width: 100%;
}
.top__business .top__merchandise .__category .__vis h3 {
    position: absolute;
    font-size: 1.6vw;
  margin: -19.5vw 0 0 1vw;
    font-weight: bold;
    color: #04528e;    
}
@media only screen and (max-width: 768px) {
.top__business .top__merchandise .__category .__vis h3 {
    font-size: 3.2vw;
  margin: -25.5vw 0 0 2vw;
}
}
.top__business .top__merchandise .__more {
  width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #bfc2c6;
    font-size: 1.2vw;
    font-weight: bold;
    background: #fff;
}
@media only screen and (max-width: 768px) {
.top__business .top__merchandise .__more {
  width: 34%;
    font-size: 3.0vw;
}
}
.top__business .top__merchandise .__more img {
  width: 5vw;
    margin-bottom: 2vw;
}
.top__topics {
  width: 100vw;
  margin: -3vw 0 0 0 ;
    background: linear-gradient(#0b6cfa, #015696);
    padding: 10vw;
    color: #fff;
}
@media only screen and (max-width: 768px) {
.top__topics {
  margin: -5vw 0 0 0 ;
    background: linear-gradient(#0b6cfa, #015696);
    padding: 20vw 10vw 25vw;
    color: #fff;
}
}
.top__topics .__txt-ttl {
  display: flex;
    justify-content: flex-end;
}
.top__topics img {
  width: 20vw;
}
@media only screen and (max-width: 768px) {
.top__topics img {
  width: 26vw;
}
}
.top__topics .topics__area {
  border-top: 1px solid #fff;
    margin-top: 3vw;
}
.top__topics .topics__area .topics {
  display: flex;
  border-bottom: 1px solid #fff;
    padding: 1.5vw 0;
    font-size: 1.2vw;
}
@media only screen and (max-width: 768px) {
.top__topics .topics__area .topics {
  display: block;
    font-size: 3.6vw;
    padding: 6.0vw 0;
}
}
.top__topics .topics__area .topics .topics__date {
  width: 20%;
  font-weight: bold;
  padding-left: 5%;
}
@media only screen and (max-width: 768px) {
.top__topics .topics__area .topics .topics__date {
  width: 100%;
  padding-left: 5%;
}
}
.top__topics .topics__area .topics .topics__txt {
  width: 75%;
}
@media only screen and (max-width: 768px) {
.top__topics .topics__area .topics .topics__txt {
  width: 100%;
  padding-left: 5%;
}
}
.top__topics .topics__area .__more {
    font-size: 1.2vw;
    font-weight: bold;
    margin-top: 1.8vw;
    display: block;
    border-bottom: solid 3px #fff;
    float: right;
}
@media only screen and (max-width: 768px) {
.top__topics .topics__area .__more {
    font-size: 3.6vw;
    margin-top: 6vw;
}
}

.cvis {
  width: 70vw;
  position: absolute;
  top: 150px;
  height: 320px;
  object-fit: cover;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  .cvis {
    width: 100vw;
    top: 90px;
    height: 160px;
  }
}
.cvis img {
  height: 100%;
  max-width: none;
}
section {
  width: 90vw;
  margin: 16vw auto 0;
  padding-left: 10vw
}
@media only screen and (max-width: 768px) {
  section {
    margin: 30vw auto 0;
  }
}
section.bottom {
  margin-top: 600px;
}
@media only screen and (max-width: 768px) {
  section.bottom {
    margin-top: 90vw;
  }
}
section h2 {
  font-size: 3.0vw;
  font-weight: bold;
  color: #04528e;
  margin: 6vw 0 2vw
}
@media only screen and (max-width: 768px) {
  section h2 {
    font-size: 6.0vw;
    margin-left: 0;
    line-height: 7.0vw;
    margin-top: 20vw;
  }
}
section h2 span {
  font-size: 1.4vw;
  margin-left: 2vw
}
@media only screen and (max-width: 768px) {
  section h2 span {
    font-size: 3.0vw;
  }
}

section .add_cap {
  font-size: 1.0vw;
}
@media only screen and (max-width: 768px) {
  section .add_cap {
    font-size: 1.8vw;
  }
}

section .csr h4 {
  font-weight: bold;
  color: #04528e;
  border: #04528e solid 2px;
  margin: 3vw 0 2vw;
  padding: 0 1vw
}
section .group h4 {
  font-weight: bold;
  color: #fff;
  background: #04528e;
  margin: 3vw 0 2vw;
  padding: 0 1vw
}
section p a {
  color: #04528e;
  margin: 0 1.5vw;
  background: url("../img/common/outlink.svg") no-repeat;
  background-position: right center;
  background-size: contain;
  padding-right: 33px;
}
section p a:hover {
  text-decoration: underline;
}
section#company .map__pin {
  background: url("../img/common/map__pin.svg") no-repeat;
  background-position: left center;
  background-size: contain;
  padding-left: 22px;
  margin-left: 20px;
  color: #04528e;
  font-weight: bold;
}
section#company table td.table__txt a {
  color: #04528e;
  margin: 0 1.5vw 0 0;
  background: url("../img/common/outlink.svg") no-repeat;
  background-position: right center;
  background-size: contain;
  padding-right: 33px;
}
section#company table td.table__txt a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  section#company .map__pin {
    margin-left: 0;
  }
}
section#company table {
  width: 100%;
  margin-top: 2vw
}
@media only screen and (max-width: 768px) {
  section#company table {
    margin-top: 6vw
  }
}
section#company table tr {
  border-top: 1px solid #04528e
}
section#company table td {
  padding: 1vw
}
@media only screen and (max-width: 768px) {
  section#company table td {
    display: block;
  }
}
section#company table td.table__ttl {
  width: 20%;
  color: #04528e;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  section#company table td.table__ttl {
    width: 100%;
  }
}
section#company table td.table__txt {
  width: 80%;
}
@media only screen and (max-width: 768px) {
  section#company table td.table__txt {
    width: 100%;
    margin-bottom: 3vw
  }
}
section#company .access h3 {
  font-weight: bold;
  color: #04528e;
}
section#company .access {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  section#company .access {
    display: block;
  }
}
section#company .access .access__box {
  width: 48%
}
@media only screen and (max-width: 768px) {
  section#company .access .access__box {
    width: 100%
  }
}
section#company .access .access__box iframe {
  margin-top: 2vw
}
@media only screen and (max-width: 768px) {
  section#company .access .access__box iframe {
    margin-bottom: 5vw
  }
}
section#company .group .group__area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
section#company .group .group__area .group__block {
  width: 48%;
  margin-bottom: 5vw;
}
@media only screen and (max-width: 768px) {
  section#company .group .group__area .group__block {
    width: 100%;
    margin-bottom: 10vw;
  }
}
section#company .group .group__area .group__block h5 {
  font-size: 1.5vw;
  line-height: 2.6vw;
  color: #04528e;
  font-weight: bold;
  border-bottom: 1px solid #04528e;
  padding-bottom: 1vw;
  margin-bottom: 1vw;
}
@media only screen and (max-width: 768px) {
  section#company .group .group__area .group__block h5 {
    font-size: 5.4vw;
    line-height: 6.2vw;
    margin-top: 5vw;
  }
}
section#company .group .group__area .group__block h5 a {
  margin: 0;
  display: inline-block;
}
section#company .group .group__area .group__block h5 a:hover {
  color: #d70e1e;
}
section#company .group .group__area .group__block h5 span {
  font-size: 1.4vw;
}
@media only screen and (max-width: 768px) {
  section#company .group .group__area .group__block h5 span {
    font-size: 4.4vw;
  }
}
section#company .group .group__area .group__block a {
  display: block;
  margin: 2vw 0 0;
}
@media only screen and (max-width: 768px) {
  section#company .group .group__area .group__block a img {
    width: 60%;
  }
}
.csr__img {
  margin-top: 2vw;
}
@media only screen and (max-width: 768px) {
  .csr__img {
    width: 50%;
  }
  .csr__img img {
    width: 100%;
  }
}
section#contact h2 {
  border-bottom: 1px solid #04528e;
}
section#contact .contact__tel {
  font-size: 2.0vw;
  color: #04528e;
}
@media only screen and (max-width: 768px) {
  section#contact .contact__tel {
    font-size: 6.0vw;
  }
}
section#contact .contact__form {
  font-size: 1.6vw;
  color: #04528e;
  border: 2px solid #04528e;
  display: block;
  margin-top: 2vw;
  width: 50%;
  padding: 20px
}
@media only screen and (max-width: 768px) {
  section#contact .contact__form {
    font-size: 4.8vw;
    margin-top: 6vw;
    width: 100%;
  }
}
section#contact .contact__form:hover {
  background: #dff2fc
}
section#contact .contact__num {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  section#contact .contact__num {
    display: block;
    justify-content: flex-start;
    align-items: center;
  }
}
section#contact .contact__num a {
  margin-left: 40px;
}
section#contact .contact__num a span {
  font-size: 1.6vw;
  margin-right: 20px;
  border-bottom: 1px solid #04528e;
}
@media only screen and (max-width: 768px) {
  section#contact .contact__num a span {
    font-size: 4.6vw;
  }
}
section#contact .contact__att {
  margin-top: 30px;
  color: #d80c18;
}
section#contact .form__att {
  color: #777;
}
section#strengths .message {
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}
@media only screen and (max-width: 768px) {
  section#strengths .message {
    display: block;
  }
}
section#strengths .message .message__name img {
  width: 100%;
  padding-bottom: 3%;
  margin-top: -10%;
}
@media only screen and (max-width: 768px) {
section#strengths .message .message__name img {
  width: 100%;
  padding: 0 15% 3%;
  margin-top: 0;
}
}
section#strengths .message .message__name {
  width: 20%;
  font-size: 1.4vw;
  font-weight: bold;
  padding-left: 5%;
}
@media only screen and (max-width: 768px) {
  section#strengths .message .message__name {
    width: 100%;
    font-size: 3.0vw;
    font-weight: bold;
    padding-left: 0;
    margin-bottom: 3vw;
  }
}
section#strengths .message .message__name span {
  font-size: 1.8vw;
}
@media only screen and (max-width: 768px) {
  section#strengths .message .message__name span {
    font-size: 3.6vw;
  }
}
section#strengths .message .message__txt {
  width: 75%;
}
@media only screen and (max-width: 768px) {
  section#strengths .message .message__txt {
    width: 100%;
  }
}
section#strengths .vision__txt {
  width: 95%;
  margin-left: 5%
}
@media only screen and (max-width: 768px) {
  section#strengths .vision__txt {
    font-size: 100%;
    width: 100%;
    margin-left: 0
  }
}
section#strengths .topics {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
    margin-bottom: 2vw;
}
@media only screen and (max-width: 768px) {
  section#strengths .topics {
    display: block;
  }
}
section#strengths .topics .topics__date {
  width: 20%;
  font-weight: bold;
  padding-left: 5%;
  color: #04528e;
}
@media only screen and (max-width: 768px) {
  section#strengths .topics .topics__date {
    width: 100%;
    padding-left: 0;
  }
}
section#strengths .topics .topics__txt {
  width: 75%;
}
@media only screen and (max-width: 768px) {
  section#strengths .topics .topics__txt {
    width: 100%;
  }
}
section#merchandise .logo__area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid #04528e;
    border-left: 1px solid #04528e;
}
section#merchandise .logo__area::after {
    width: 50%;
    content: "";
    display: block;
}
@media only screen and (max-width: 768px) {
section#merchandise .logo__area::after {
    width: 33.333333333333%;
}
}

section#merchandise .logo__area a {
    width: 25%;
    border-right: 1px solid #04528e;
    border-bottom: 1px solid #04528e;
}
@media only screen and (max-width: 768px) {
section#merchandise .logo__area a {
    width: 33.333333333333%;
}
}
section#merchandise .logo__area a img {
    width: 100%;
}
section#merchandise .merchandaise__area {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
section#merchandise .merchandaise__area::after {
    width: 30%;
    content: "";
    display: block;
}
@media only screen and (max-width: 768px) {
section#merchandise .merchandaise__area::after {
    width: 45%;
}
}
section#merchandise .merchandaise__area a {
    width: 30%;
    margin-top: 4vw;
}
@media only screen and (max-width: 768px) {
section#merchandise .merchandaise__area a {
    width: 45%;
}
}
section#merchandise .merchandaise__area a img {
    width: 100%;
}
section#merchandise .merchandaise__area a .index__bg {
    position: absolute;
    width: 24%;
}
@media only screen and (max-width: 768px) {
section#merchandise .merchandaise__area a .index__bg {
    width: 36%;
}
}
section#merchandise .merchandaise__area a .index__flame {
    position: absolute;
    width: 24%;
}
@media only screen and (max-width: 768px) {
section#merchandise .merchandaise__area a .index__flame {
    width: 36%;
}
}
section#merchandise .merchandaise__area a h3 {
    position: relative;
    top: 1.5vw;
    left: 2vw;
    font-size: 1.7vw;
    font-weight: bold;
    color: #04528e;
}
@media only screen and (max-width: 768px) {
section#merchandise .merchandaise__area a h3 {
    position: relative;
    top: 2vw;
    left: 2vw;
    font-size: 3.0vw;
    line-height: 3.6vw;
    font-weight: bold;
    color: #04528e;
}
}
section#merchandise .merchandaise__area a p {
    position: relative;
    margin-top: 22vw;
    line-height: 1.8vw;
}
@media only screen and (max-width: 768px) {
section#merchandise .merchandaise__area a p {
    font-size: 3.0vw;
    margin-top: 36vw;
    line-height: 4.0vw;
    text-align: left;
}
}
section#merchandise .merchandise__att {
    font-size: 0.8vw;
    line-height: 1.0vw;
    margin-top: 1vw !important;
}
@media only screen and (max-width: 768px) {
section#merchandise .merchandise__att {
    margin-top: 10vw;
    font-size: 2.0vw !important;
    line-height: 3.0vw !important;
}
}
.__att {
    font-size: 0.8vw;
    line-height: 1.0vw;
    margin-top: 1vw !important;
}
@media only screen and (max-width: 768px) {
.__att {
    margin-top: 15vw !important;
    font-size: 2.0vw !important;
    line-height: 3.0vw !important;
}
}
section#merchandise_detail .__cvis {
    width: 100vw;
    margin-left: -15vw;
    height: 200px;
    overflow-y: hidden;
}
section#merchandise_detail .__cvis img {
    width: 100%;
}
section#merchandise_detail h4 {
  font-size: 3.0vw;
  font-weight: bold;
  color: #04528e;
  margin: 6vw 0 2vw
}
@media only screen and (max-width: 768px) {
section#merchandise_detail h4 {
  font-size: 6.0vw;
  margin: -14vw 0 2vw
}
}
section#merchandise_detail  .merchandaise__area {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
section#merchandise_detail  .merchandaise__area::after {
    width: 30%;
    content: "";
    display: block;
}
section#merchandise_detail .merchandaise__area a {
    width: 30%;
    margin-top: 4vw;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail .merchandaise__area a {
    width: 45%;
    font-size: 3.0vw;
    line-height: 4.2vw;
}
}
section#merchandise_detail .merchandaise__area a img {
    width: 100%;
}
section#merchandise_detail .merchandaise__area a .index__bg {
    position: absolute;
    width: 24%;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail .merchandaise__area a .index__bg {
    width: 36%;
}
}
section#merchandise_detail .merchandaise__area a .index__flame {
    position: absolute;
    width: 24%;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail .merchandaise__area a .index__flame {
    width: 36%;
}
}
section#merchandise_detail .merchandaise__area a h3 {
    position: relative;
    font-size: 1.4vw;
    line-height: 1.8vw;
    font-weight: bold;
    color: #04528e;
    margin-top: 16vw;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail .merchandaise__area a h3 {
    font-size: 3.0vw;
    line-height: 4.2vw;
    margin-top: 25vw;
    text-align: left;
}
}
section#merchandise_detail .merchandaise__area a p {
    position: relative;
    line-height: 1.8vw;
    margin-top: 1vw;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail .merchandaise__area a p {
    line-height: 4.8vw;
    margin-top: 3vw;
}
}
section#merchandise_detail h5 {
    width: 100%;
    background: #04528e;
    color: #fff;
    font-size: 2.0vw;
    line-height: 2.4vw;
    padding: 1vw 1vw;
    margin-bottom: 2vw;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail h5 {
    font-size: 4.2vw;
    line-height: 5.2vw;
    padding: 3vw 3vw;
    margin-bottom: 3vw;
}
}
section#merchandise_detail h6 {
    width: 100%;
    background: #cddce6;
    color: #04528e;
    font-size: 1.6vw;
    line-height: 2.0vw;
    padding: 1vw 1vw;
    margin: 2vw 0;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail h6 {
    font-size: 4.2vw;
    line-height: 5.2vw;
    padding: 3vw 3vw;
    margin-bottom: 3vw;
}
}
section#merchandise_detail .__vis {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
section#merchandise_detail .__vis::after {
    width: 30%;
    content: "";
    display: block;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail .__vis::after {
    width: 47%;
}
}
section#merchandise_detail .__vis .__part {
    width: 30%;
    display: flex;
    flex-direction: column;
    font-size: 1.0vw;
    line-height: 1.4vw;
    margin-top: 3.0vw;
    margin-bottom: 3.0vw;
    font-weight: bold;
    text-align: center;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail .__vis .__part {
    width: 47%;
    display: flex;
    flex-direction: column;
    font-size: 3.0vw;
    line-height: 4.6vw;
    margin-top: 6.0vw;
    margin-bottom: 6.0vw;
    font-weight: bold;
    text-align: center;
}
}
section#merchandise_detail .__vis .__part img {
    margin-bottom: 1.0vw;
}
section#merchandise_detail .__detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 3vw;
}
section#merchandise_detail .__detail .__part {
    width: 47.5%;
    display: flex;
    flex-direction: column;
    font-size: 1.0vw;
    line-height: 1.4vw;
    margin-top: 3.0vw;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail .__detail .__part {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 3.0vw;
    line-height: 5.0vw;
    margin-top: 3.0vw;
}
}
section#merchandise_detail .__detail .__part h7 {
    width: 100%;
    color: #04528e;
    font-weight: bold;
    font-size: 1.4vw;
    line-height: 1.8vw;
    border-left: 2px solid #04528e;
    border-bottom: 2px solid #04528e;
    padding: 0.5vw 0.5vw;
    margin-bottom: 1vw;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail .__detail .__part h7 {
    font-size: 3.0vw;
    line-height: 3.6vw;

    padding: 2vw 2vw;
    margin-bottom: 3vw;
}
}
section#merchandise_detail .__btn .__part {
    width: 35vw;
    background: #04528e;
    font-weight: bold;
    color: #fff;
    font-size: 1.4vw;
    line-height: 1.8vw;
    border-radius: 5px;
    padding: 0.5vw 0;
    margin-bottom: 1vw;
    text-align: center;
    display: block;
}
@media only screen and (max-width: 768px) {
section#merchandise_detail .__btn .__part {
    width: 72vw;
    font-size: 3.0vw;
    line-height: 4.2vw;
    border-radius: 10px;
    padding: 2vw 0;
}
}

footer {
  font-size: 80%;
  width: 100vw;
  padding: 20vw 30px 100px;
    text-align: center;
}
@media only screen and (max-width: 768px) {
footer {
  font-size: 60%;
  width: 100vw;
  padding: 20vw 30px 80px;
}
}
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 768px) {
  .pagetop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
.pagetop img {
  width: 100%;
}
.cp_fullscreenmenu {
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
}
/*menuコンテンツ*/
.cp_fullscreenmenu .menu {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  align-items: center;
  justify-content: center;
}
.cp_fullscreenmenu .menu > div {
  display: flex;
  overflow: hidden;
  width: 200vw;
  height: 200vw;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  text-align: center;
  color: #fefefe;
  border-radius: 50%;
  background: linear-gradient(#0b6cfa, #015696);
  flex: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  align-items: center;
  justify-content: center;
}
.cp_fullscreenmenu .menu > div > ul {
  display: block;
  max-height: 100vh;
  margin: 0;
  padding: 0 1em;
  list-style: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.cp_fullscreenmenu .menu > div > ul > li {
  font-size: 24px;
  display: block;
  margin: 1em;
  padding: 0;
}
.cp_fullscreenmenu .menu > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.4s ease;
}
.cp_fullscreenmenu .menu > div > ul > li > a:hover {
  color: #e5e5e5;
}
.cp_fullscreenmenu .menu > div > ul > li > a:hover:after {
  width: 100%;
}
.cp_fullscreenmenu .menu > div > ul > li > a:after {
  position: absolute;
  z-index: 998;
  bottom: -0.15em;
  right: 0;
  width: 0;
  height: 2px;
  content: '';
  transition: width 0.4s ease;
  background: #e5e5e5;
}
/*クリックしたらメニューが開閉の動作*/
.cp_fullscreenmenu .toggle {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  opacity: 0;
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span:before, .cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
  top: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
  opacity: 0;
}
.cp_fullscreenmenu .toggle:checked ~ .menu {
  visibility: visible;
  pointer-events: auto;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div {
  transition-duration: 0.75s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul {
  opacity: 1;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(1) {
  transition-delay: 0.4s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(2) {
  transition-delay: 0.6s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(3) {
  transition-delay: 0.8s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(4) {
  transition-delay: 1.0s;
}
.cp_fullscreenmenu .toggle:hover + .hamburger {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.cp_fullscreenmenu .toggle:checked:hover + .hamburger > span {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
/*ハンバーガー*/
.cp_fullscreenmenu .hamburger {
  position: absolute;
  z-index: 998;
  top: 0;
  right: 0;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0.5em 1em;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  border-radius: 0 0.12em 0.12em 0;
  background: linear-gradient(#0b6cfa, #015696);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cp_fullscreenmenu .hamburger > span {
  position: relative;
  top: 50%;
  display: block;
  width: 100%;
  height: 2px;
  transition: all 0.4s ease;
  background: #fefefe;
}
.cp_fullscreenmenu .hamburger > span:before, .cp_fullscreenmenu .hamburger > span:after {
  position: absolute;
  z-index: 998;
  top: -10px;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: '';
  transition: all 0.4s ease;
  background: inherit;
}
.cp_fullscreenmenu .hamburger > span:after {
  top: 10px;
}


/* スライダー全体 */
.slider{
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background-color: #000;
}

/* スライダー画像 */
.slider .image{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
	.slider .image{
		
	}	
}

/*
  ①スライド画像
  表示する画像を定義
*/
.slider .image:nth-of-type(1){
  background-image: url("../img/top/mvis.webp");
}
.slider .image:nth-of-type(2){
  animation-delay: 5s;
  background-image: url("../img/top/mvis2.webp");
}
.slider .image:nth-of-type(3){
  animation-delay: 10s;
  background-image: url("../img/top/mvis3.webp");
}
@media only screen and (max-width: 768px) {
.slider .image:nth-of-type(1){
  background-image: url("../img/top/mvis_sp.webp");
}
.slider .image:nth-of-type(2){
  animation-delay: 5s;
  background-image: url("../img/top/mvis2_sp.webp");
}
.slider .image:nth-of-type(3){
  animation-delay: 10s;
  background-image: url("../img/top/mvis3_sp.webp");
}	
.slider .image:nth-of-type(3){
    background-position: left;
}
}

/*
  ②アニメーション設定
  animation-durationのみ変更
*/
.slider .image{
  animation-name: anime;
  animation-delay: 0;
  animation-iteration-count: infinite;
  animation-duration: 15s;  /* ①で設定したanimation-delayを合計を挿入 */
}

/* アニメーション定義 */
@keyframes anime {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}


/* 送信ボタン */
.submit-btn {
  /* buttonタグのリセットCSS */
  width: 160px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;

  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  margin: 0 10px;
  background-color: #015696;
  cursor: pointer; /* ポインターカーソルを表示 */
}

.submit-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
}




#message, #philosophy, #business, #main-manufacturer, #main-merchandise, #profile, #history, #access, #csr, #group {
    padding-top: 16vw;
    margin-top: -10vw;
}

.contact__request {
    width: 100%;
    position: fixed;
    z-index: 0;
    bottom: 0;
    background: rgba(0,160,223,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-weight: bold;
    color: #fff;
}
@media only screen and (max-width: 768px) {
.contact__request {
    font-size: 3.0vw;
    justify-content:flex-start ;
    padding-left: 10vw;
}
}


.thanks{
	padding-top: 50px;	
	@media only screen and (max-width: 768px) {
		padding-top: 20px;
	}	
.thank-you-wrap {
  max-width: 680px;
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: center;
}
.thank-you-wrap .ty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: #2b6cb0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-you-wrap .ty-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.thank-you-wrap h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.thank-you-wrap .ty-message {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5568;
  margin-bottom: 40px;
}
.thank-you-wrap .ty-divider {
  width: 48px;
  height: 2px;
  background: #2b6cb0;
  margin: 0 auto 40px;
}
.thank-you-wrap .ty-info {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px 28px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 40px;
}
.thank-you-wrap .ty-info p {
  margin: 0 0 8px;
}
.thank-you-wrap .ty-info p:last-child {
  margin-bottom: 0;
}
.thank-you-wrap .ty-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #2b6cb0;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.3s ease;
}
.thank-you-wrap .ty-btn:hover {
  background: #2c5282;
}
@media (max-width: 480px) {
  .thank-you-wrap {
    margin: 40px auto 60px;
  }
  .thank-you-wrap h1 {
    font-size: 22px;
  }
}	
}