@charset "utf-8";
/*****************************
    PSW official page creation
                 20240426w4403
******************************/

/* conmon css
-------------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}
ul,ol{
  padding-inline-start: 0;
  list-style-position: inside;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #fff;	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}
a:hover {
  color: orange;
  transition: all 0.3s 0.1s ease-in-out;
  filter: brightness(1.1);	/*少し明るくする*/
}
/*CSS 関数  var(--text-color) を指定
---------------------------------------------------------------------------*/
:root {
	--bg-color: #273E84;		/*テンプレートのメインとなる色*/
  --contents-bg-color: #C1CDDF;
	--text-color: #333;		/*メインの上で使うテキスト色*/
    --accent-color: #fff;		/*テンプレートのアクセントとなる色*/
    --accent-text-color: #777;		/*アクセントの上で使うテキスト色*/
}

/* page style
---------------------------------------------------------------------------*/
body {
  font-size: 1em;
  line-height: 1.7em;
}
#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  height:auto !important; /*IE6対策*/
  height: 100%; /*IE6対策*/
  min-height: 100%;
  color: #333;
  background-color: #fff;
}
header {
  width: 100%;
  margin-bottom: 50px;
}
#content {
  max-width: 1140px;
   margin: 0 auto;
}
main {
  clear: both;
}
footer {
  margin-top: 100px;
  width: 100%;
  background-color: #273E84;
  color: #fff;
}

/* page header 画像は、パージのhead内で指定 
---------------------------------------------------------------------------*/
#pageimg {
	animation: opa1 1.5s 0.5s both;	/*@keyframesのopa1を1.5秒かけて実行する。実行までの待機時間0.5秒。*/
	position: absolute;
  top: 0;
	right: 0;
	width: 100%;	/*画面の半分だけに配置 width: 70%; height: 105%; */
	height: 200px;
	clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 40% 100%);  /*台形*/
  background: url('.././images/front.JPG') no-repeat center center / cover;	/*背景画像を読み込む指定*/
}

	/*画面のアスペクト比が1:2以下の場合の追加設定*/
	@media screen and (max-aspect-ratio: 1/2) {

	#pageimg {
		width: 100%;		/*画像が細くなりすぎるので、全画面に出すように変更*/
		clip-path: none;	/*切り抜きをリセット*/
	}

	}/*追加指定ここまで*/


/*page-header
---------------------------------------------------------------------------*/
header {
  position: relative;
  height: 200px;
  background-color: #273E84;
  z-index: 20;
}

/* main-menu, h2 fadein   //border: red 1px solid;
-----------------------------------------------------------------------*/
nav.page-menu {
  padding: 10px 0 0 30px;
  z-index: 22;
}
nav.page-menu a {
  text-shadow: 1px 2px 3px #444;
}
h2 {
  margin: 30px 0 0 30px;
  padding: 20px;
  color: #fff;
  z-index: 21;
  position: relative;
}
h2 .hosoku {/*大きな装飾文字*/
  width: 600px;
	font-family: "Allura", cursive;	/*冒頭で読み込んでいるGoogle Fontsの指定*/
	font-weight: 400;
	font-size: 3em;	/*文字サイズ。３倍。*/
	display: block;
	opacity: 0.5;	/*透明度。50%色が出た状態。*/
}
h2 .text-ja {
  position: absolute;
  top: 80px; left: 300px;
}

 
/*page header menu
---------------------------------------------------------------------------*/
nav.page-menu {
  width: 100%;
  font-size: 0.9rem;
}
nav.page-menu ul {
  display: flex;
  flex-wrap: wrap;

}
nav.page-menu ul li {
  padding: 5px;
}

.ham-menu {
  display: none;
}
/*
--------------------------------------------------------------------------*/
.images-list {
  width: auto;
  margin: 0 auto;
  padding: 0 10px;
}
.images-list ul {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.images-list ul li {
  width: calc(1160px / 7);
  padding: 3px;

}


/* page main style
==============================================================*/
/* office 
---------------------------------------------------*/
.office #content {
  margin-top: 50px;
}

article.row {
  clear: both;
  display: inline-block;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 50px;
}
.left-wrap {
  width: 40%;
  float: left;
  padding-right: 25px;
}
.left-wrap h3 {
  border-bottom: #777 2px solid;
  width: 200px;
  margin-bottom: 10px;
}

.right-wrap {
  width: 60%;
  float: right;

}
.right-wrap ul {
  display: flex;
}




/* mashine
---------------------------------------------------*/
.mashine #content {
  margin-top: 50px;
}


/* co-profile
----------------------------------------------------*/
#co-profile {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.enkaku h3 {
  width: 100px;
  padding-bottom: 5px;
  border-bottom: #777 2px solid;
  margin-bottom: 10px;
}
.profile h3 {
  width: 100px;
  padding-bottom: 5px;
  border-bottom: #777 2px solid;
  margin-bottom: 10px;
}

@media screen and (max-width:800px) {	/* 横幅800px以下、SP用 */
  #co-profile {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;

  }
}
/* access
----------------------------------------------------*/
.access #content {
  margin-top: 50px;
}
.access section {
  width: 100%;
}
.acc-office {
  width: 50%;
  float: left;
}
.acc-office h3 {
  width: 100px;
  padding-bottom: 5px;
  border-bottom: #777 2px solid;
  margin-bottom: 10px;
}
.acc-office h4 {
  font-size: 1.5em;
  margin: 30px 0;
  margin-left: 15px;
}
.acc-office p {
  margin-left: 15px;
}
.qrcode {
width: 90%;
margin: 0 auto;
margin-top: 50px;
}
.qr_wrap {
  width: 50%;
  float: left;
  padding: 0 40px 30px 0;
}
img.qr_url {
  width: 100%;
}
img.qr_map {
  width: 88%;
}

.access .map {
  width: 50%;
  float: right;
}
.access .map h3 {
  width: 170px;
  padding-bottom: 5px;
  border-bottom: #777 2px solid;
  margin-bottom: 10px;
}

@media screen and (max-width:800px) {	/* 横幅800px以下、SP用 */
  .acc-office {
    width: 100%;
    float: none;
  }
  .access .map {
    width: 100%;
    float: none;
  }
}
/* product
---------------------------------------------------------*/
.product #content {
  margin-top: 50px;
}
.product main {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.product main .text {
  width: 50%;
  float: left;
}
.product .images-list{
  width: 45%;
}
.product .text .wrap {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding-bottom: 10px;
  border-bottom: #777 1px dotted;
}
.product .text .wrap .text1 {
  font-size: 1.15em;
  line-height: 1.1rem;
  font-weight: 600;
  color: orange;
  width: 50%;
  float: left;
  margin: auto 0;
}
.product .text .text3 {
  padding-top: 10px;
  line-height: 1.7em;
}