@charset "UTF-8";
/*
Theme Name: 【最新】シンプル　天野企画テーマ１
Author: amanokikaku
Author URI: http://amnk.co.jp/
Description: 2019.5.10
Version: 1.0
*/






/*--------------------reset.css--------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

html{
	width:100%;
	overflow-x:hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
	color:#595757;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs
*/
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

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

iframe {
  vertical-align: bottom;
  max-width: 100%;
}

th {
  text-align: left;
}

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

/*--------------------reset.cssここまで--------------------*/

/*--------------------form.css--------------------*/

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="range"],
input[type="color"],
input[type="radio"],
input[type="checkbox"],
input[type="submit"],
input[type="button"],
input[type="image"],
select,
button,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  font-family: "メイリオ", Meiryo, "Noto Sans JP",  sans-serif;
}

/* プレースホルダー */
::-webkit-input-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
::-ms-input-placeholder {
  color: #ccc;
}
::placeholder {
  color: #ccc;
}

/* 入力欄 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="range"] {
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  color: #666666;
}

/* 入力欄 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
textarea {
    background: #fff;
    font-size: 16px;
    border-radius: 4px;
    box-shadow: inset 1.5px 1.5px 0px #cccccc;
    border: none;
    border-bottom: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
}

/* 日付 */
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"] {
  font-size: 16px;
}

/* 数値 */
/* スピンボタン非表示*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* レンジ */
/* カラーピッカー */
select {
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  background: url(images/down-select.png) no-repeat right 1em center;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

textarea {
  width: 100%;
  /* ieでスクロールバー非表示 */
  padding: 0.5em 1em;
  overflow: hidden;
  border: 1px solid #ccc;
}

input[type="submit"],
input[type="button"],
button {
  cursor: pointer;
}

form input[type="radio"] {
  display: none;
}

form input[type="radio"] + span {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position:relative;
}

form input[type="radio"] + span:before {
  margin-right: 0.3em;
  content: "";
  width:14px;
  height:14px;
  display:inline-block;
  border-radius:10px;
  border:1px solid #cccccc;
  position:relative;
  top:2px;
}

form input[type="radio"]:checked + span:after {
  content: "";
  width:10px;
  height:10px;
    background: #02a7a3;
  display:inline-block;
  border-radius: 5px;
  position: absolute;
  left: 2px;
    top: 10px;
}

form input[type="checkbox"] {
  display: none;
}

form input[type="checkbox"] + span {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position:relative;
}

form input[type="checkbox"] + span:before {
  margin-right: 0.3em;
  content: "";
  width:14px;
  height:14px;
  display:inline-block;
  border:1px solid #cccccc;
  position:relative;
  top:2px;
}

form input[type="checkbox"]:checked + span:after {
  content: "";
  width: 14px;
  height: 10px;
  display: inline-block;
  position: absolute;
  left: 1px;
  top: 3px;
  border-bottom: 3px solid #0063b1;
  border-left: 3px solid #0063b1;
  transform: rotate(-45deg);
}

.prefbox select{
  width:100px;
  margin-bottom:0.5em;
  font-size:16px;
}

.wrap .contact-form table th,.wrap .contact-form table td {
    vertical-align: middle;
}

.contact-form button{
   display: block;
    z-index: 1;
    position: relative;
    width: 300px;
    min-width: 200px;
    margin-top: 40px;
    padding: 1em;
    background: #fff;
    text-align: center;
    transition: 0.5s;
    color: #d3ae34;
    border: 1px solid #d3ae34;
    border-radius: 4px;

    font-size: 14px;
    margin: auto;
}

.contact-form button:after {
    -webkit-transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 3px solid #d3ae34;
    border-right: 3px solid #d3ae34;
    content: "";
}

.contact-form button:hover{
	background: #d3ae34;
    color: #fff;
    opacity: 1;
}

.contact-form button:hover:after{
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;	
}


.mw_wp_form_preview .list-caution{
  display:none;
}

@media screen and (min-width: 901px) {
  select {
    width: 410px;
  }
  textarea {
    height: 210px;
	display:block;
	border: none;
    border-bottom: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
  }
}

@media screen and (max-width: 640px) {
  textarea {
    height: 60vw;
	display:block;
  }
}

/*--------------------form.cssここまで--------------------*/





body {
	font-family: "Noto Sans JP","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	font-size: min(16px, 4vw);
	letter-spacing: .05rem;
	/*font-weight: 500;*/
	text-align: justify;
    font-feature-settings: "palt";
	text-rendering: optimizeLegibility;
}

body p{
	line-height: 1.75;
}


.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.textCenter {
  text-align: center;
}

.textJustify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.weightBold {
  font-weight: bold;
}

.colorBlue {
  color: #1364b3;
}



html,
body {

}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
	color:#333;
/* 	font-family:"HGSｺﾞｼｯｸE"; */
}

p{
  word-break: break-all;
}


.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.flexCenter {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
}

.flexLeft {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.flexRight {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fullWidth {
  width: 100%;
}

.wp-block-image figcaption{
  text-align:center;
  margin:15px 0 0;
  font-size:14px;
}

.company .wrap-main {
  background: url(images/bg-company-top.png) no-repeat center center;
}

.works .wrap-main {
  background: url(images/bg-works-top.png) no-repeat center center;
}

.recruit .wrap-main {
  background: url(images/bg-recruit-top.png) no-repeat center center;
}

.inner-main {
  color: #fff;
}

.inner-main h1 {
  margin-bottom: 1em;
}

.inner-main p {
  letter-spacing: 0.1em;
  line-height: 1.75;
}


.wrap-2column .list-post{
  margin-top:-20px;
}


.box-post-text {
  border-bottom: 1px solid #ccc;
}

.box-post-text a {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  position: relative;
}


.main-column .box-post-text a:after {
    -webkit-transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1.5em;
    /* bottom: 0; */
    width: 10px;
    height: 10px;
    margin: auto;
    transform: rotate(45deg) translateY(-50%);
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
}


.box-post-text a > * {
  display: block;
  margin: 5px 0;
  line-height: 20px;
}

.box-post-text time {
  margin-right: 10px;
  font-size: 14px;
}

.main-column > p{
  text-align: justify;
  line-height:2.3;
	letter-spacing:.05em;
}


.main-column .has-text-align-right{
	text-align:right;
}

.main-column .has-text-align-center{
	text-align:center;
}

.main-column ul{
	margin-top:1em;
}

.main-column ol {
    counter-reset: ol-count;
}


.main-column ul li,.main-column ol li{
    line-height: 1.25;
    padding-left: 21px;
	position:relative;
    transform: rotate(0.03deg);
}

.main-column ul li:not(:last-of-type){
	margin-bottom:10px;
}

.main-column ol li:before {
    counter-increment: ol-count;
    content: counter(ol-count)".";
    color: #0063b1;
    font-weight: bold;
}


.main-columnc .is-style-outline .wp-block-button__link {
    background-color: transparent;
	text-decoration:none;
	
}
.is-style-outline .wp-block-button__link:after{
	-webkit-transform: rotate(45deg);
    display: inline-block;
    top: 0;
    right: 1em;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto;
	margin-left:10px;
    transform: rotate(45deg);
    border-top: 2px solid #1364b3;
    border-right: 2px solid #1364b3;
    content: "";
	
	
}

.main-column ul li:before{
  content:"";
  display:block;
  height:10px;
  width:10px;
  background:#02a7a3;
  border-radius:5px;
	position:absolute;
	left:0;
	top:9px;
}

.main-column pre{
  max-width:100%;
  font-size: 14px;
  text-align: justify;
  line-height: 1.7;
  white-space: pre-wrap ;
}

.main-column table{
  margin:32px 0;
  width:100%;
}

.main-column table th,
.main-column table td{
   line-height: 1.75;
}

.main-column table th{
  padding: 1em 1em;
  vertical-align: top;

}


.main-column table td{
  padding: 1em 1em;
  vertical-align: top;
}

.kaisyagaiyo td{border:1px solid #ccc;}
.kaisyagaiyo td:first-child {
  width: 20%;
}

.kaisyagaiyo td:nth-child(2) {
  width: 80%;
}

.main-column .box-post-text h3 {
  width: calc(100% - 180px);
  margin:0;
  padding:0;
  border:none;
  font-size: 16px;
  line-height:32px;
  position:relative;
}


.wrap-post-img-text {
  display: flex;
  flex-flow: row wrap;
}

.box-post-img-text {
  width: calc((100% - 70px) / 3);
  display: flex;
  flex-flow: column;
}

.box-post-img-text:not(:nth-of-type(3n)){
	margin-right: 35px;
}


.box-post-img-text:nth-of-type(n + 4){
	margin-top: 40px;
}


.box-post-img-text a {
  display: block;
}


.box-post-img-text a > *:nth-child(1),.box-post-img-text  >img {
    margin-bottom: 15px;
}

.box-post-img-text a > *:nth-child(2) {
    margin-bottom: 5px;
    position: relative;
    display: flex;
    align-items: center;
	justify-content: space-between;
}


.box-post-img-text time {
    display: block;
    font-size: 14px;
    margin-right: 5px;;
}


.main-column .box-post-img-text h3,.wrap-1column .box-post-img-text h3 {
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size:16px;
  margin: 0;
  padding: 0;
  border: none;
}

.wrap-1column .box-post-img-text .btn-flex{
    display: flex;
    flex-flow: column;
    justify-content: space-between;	
	height: 100%;
}

.wrap-1column .box-post-img-text .btn-flex .btn-archive{
	margin-top: min(20px,3vw);
	padding: 0.75em;
}

.wrap-1column .box-post-img-text h3[subtxt] {
	display: flex;
    flex-flow: column;
    align-items: baseline;
}

.wrap-1column .box-post-img-text h3[subtxt]:after {
    content: attr(subtxt);
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #0063b1;
}


.box-post-img-text p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}


.related .box-post-img-text{margin-right:20px;}
.related .box-post-img-text:not(:nth-of-type(3n)) {margin-right:0px;
}
.wrap-2column .wrap-post-archive{
  margin-top:max(-20px, -8vw);
}

.wrap-post-archive h3{
	text-align:left;
}

.box-post-archive:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}

.box-post-archive a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.wrap-1column .box-post-archive a {
  padding: min(40px,8vw) 0;
}

.wrap-1column .box-post-archive:first-of-type a {
    padding-top: 0;
}

.box-post-archive a:after {
    content: "";
    content: "続きを読む";
    padding-right: 20px;
	display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    height: 14px;
    background: url(images/triangle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    margin-top: 15px;
    position: absolute;
	bottom: 20px;
	right: 0;
}

.wrap-1column .box-post-archive a:after {
	bottom: min(40px,8vw);
}


.box-post-archive a > div:nth-child(1) {
  width: 250px;
  margin-right: 20px;
}

.box-post-archive a > div:nth-child(2) {
    position: relative;
    width: calc(100% - 270px);
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    height: 100%;
}


.box-post-archive a > div:nth-child(2) >div {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
}


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

.box-post-archive time {
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.box-post-archive time:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(images/date.svg);
  background-size: cover;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.main-column .box-post-archive h3,.wrap-1column .box-post-archive h3 {
  width: 100%;
line-height: 1.5;
  font-size:20px;
  margin:0;
  padding:0;
  border:none;
  font-weight: bold;
margin-top:15px;
margin-bottom:15px;
}

.box-post-archive p {
  width: 100%;
  line-height: 1.5;
  font-size:14px;
  margin-top:5px;
  position:relative;
  text-align: justify;
  
}

.box-post-archive-side a {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.box-post-archive-side a > div:nth-child(1) {
  width: 75px;
  margin-right:10px;
}

.box-post-archive-side a > div:nth-child(2) {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: calc(100% - 96px);
}

.box-post-archive-side img {
  width: 100%;
	height:75px!important;
  height: auto;
}

.box-post-archive-side time {
display: block;
font-size: 10px;
line-height:10px;
margin-bottom:4px;
}

.box-post-archive-side h3 {
  width: 100%;
  line-height: 1.35;
}

.box-post-archive-side .category-post {
  display:none;
  width: 70px;
  padding:0 5px;
  height: 14px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wrap-post-archive-side{
	margin-top:12px;
}

.wrap-post-archive-side .box-post-archive-side:not(:last-child){
	margin-bottom:15px;
}

.category-post {
  display: inline-block;
  width: 80px;
  height: 20px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.box-post-text .category-post {
  margin-right: 10px;
}

.header {
	background:#fff;
    z-index: 6;
    position: relative;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.header.over {
  position: fixed;
  left: 0;
}

.header.over.active {
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s 0.5s;
}

.inner-header {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px;
}

.wrap-logo {
  display: flex;
  align-items: center;
}

.wrap-logo .logo {
  display: block;
}

.wrap-logo .logo:hover {
  opacity:1;
}

.wrap-logo .logo img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 30px;
}

.head-header {
    margin-left: 4.5em;
    line-height: 1.25;
    margin-top: 0px;
    font-size: 14px;
}
.head-header > *{
	font-weight: 500;
	line-height: 1;
	color: #353535;
    transform: rotate(0.03deg);
}

.wrap-tel-header p {
  font-size: 14px;
  text-align: right;
	margin-top:14px;
	margin-right:50px;
	    word-break: keep-all;
    white-space: nowrap;
}

.tel {
  font-size: 28px;
  position:relative;
	top:8px;
font-family: 'Fjalla One', sans-serif;
}

.tel:before {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.list-sp-menu {
  display: none;
}

.list-sp-menu li {
    width: 40px;
}

.sp-menu {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  text-align: center;
}

.sp-menu span {
  -webkit-transform: scale(0.8, 0.8);
  display: block;
  padding-top: 0.5em;
          transform: scale(0.8, 0.8);
  font-size: 10px;
  letter-spacing: 0;
	color:#fff;
}

.sp-menu:before {
  color: #1364b3;
  font-size: 24px;
}

.nav-open {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}

/* .nav-open:after {
  -webkit-transform: scale(0.8, 0.8);
          transform: scale(0.8, 0.8);
  font-size: 10px;
  text-align: center;
  content: "MENU";
	color:#fff;
} */

.footer {
  position:relative;
  margin-top:auto;
}

.footer-contact {
  padding: 50px 0;
  border-bottom: 1px solid #ccc;
}

.footer-contact * {
  text-align: center;
}

.footer-contact h3 {
  margin-bottom: 2em;
  padding: 0.5em 0;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
  line-height: 1.5;
}

.footer-top {
    padding: 75px 0;
}

.inner-footer-top {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.box-info-footer {
    margin-top: auto;
}

.box-info-footer .logo {
  display: block;
  margin-bottom:0.5em;
}

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

.box-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 115px;
}

.info-footer {
	line-height: 1.5;
    transform: rotate(0.03deg);
   
    font-size: min(4vw,14px);
}

.list-contact li:not(:last-child) {
  margin-bottom: 0.75em;
}

.btn-number {
  display: block;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: bold;
}

.btn-number:before {
  width: 3em;
  margin-right: 0.5em;
  background: #999999;
  color:#ffffff;
  font-size: 45%;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  vertical-align: bottom;
  border-radius:5px;
}

.btn-contact {
  display: block;
  position: relative;
  padding: 1em;
  border-radius: 3px;
  text-align: center;
}

.btn-contact:after {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
          transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

.footer-contents{
  width:840px;
  display:flex;
	justify-content:space-between;
}

.wrap-footer-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.wrap-footer-nav .footer-nav li a span{
  display:none;
}

.wrap-footer-nav .footer-nav{
  width:calc((100% - 40px) / 3);
  border-bottom:1px solid #cccccc;
}

.wrap-footer-nav .footer-nav li a{
  border-top:1px solid #cccccc;
  padding:0.5em 0;
  display:block;
}

.footer-facebook{
  width: calc((100% - 40px) / 3);
}

.footer-twitter{
  width: calc((100% - 40px) / 3);
}

.copyright {
  padding: 0.5em 0;
	font-size:12px;
	color:#ffffff;
	text-align:center;
}

.sidebar img {
  max-width: 100%;
  height: auto;
}

.widget_nav_menu,
.box-side {

}

.widget_nav_menu:not(:last-child),
.box-side:not(:last-child) {
  margin-bottom: 30px;
}

.widget_nav_menu h3,
.head-side {
  position: relative;
  padding:9px 0;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #eeeeee;
  margin-bottom:15px;
  line-height: 1;
}

.widget_nav_menu h3:before,.head-side:before,.widget_nav_menu h3:after,.head-side:after {
  display: block;
  content:none;
  height: 16px;
  background-color: #eeeeee;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  min-width: 20px;
}

.widget_nav_menu h3:before,.head-side:before{
  margin-right:0.5em;
}

.widget_nav_menu h3:after,.head-side:after {
  margin-left:0.5em;
}



.widget_nav_menu .menu > li{
  position:relative;
}

.widget_nav_menu .menu > li,.list-side > li:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}

.widget_nav_menu .menu > li a,
.list-side > li a {
  display: block;
  position: relative;
  padding: 0.75em 0;
  background: #fff;
  line-height: 1.25;
}

.widget_nav_menu .menu > li a:after{
	-webkit-transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
}

.widget_nav_menu ul > li > ul.sub-menu{
  visibility:hidden;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  opacity:0;
  transition:0.5s;
}

.widget_nav_menu ul > li:hover > ul.sub-menu{
  visibility:visible;
  z-index:10;
  opacity:1;

}

.widget_nav_menu ul > li > ul.sub-menu > li:nth-child(1):before{
  content: "";
  height: 15px;
  width: 15px;
  display: block;
  background: #0063b1;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -8px;
  margin: auto 0;
  z-index: -1;
}

.widget_nav_menu ul > li > ul.sub-menu > li > ul > li:nth-child(1):before{
 background: #104f82;
}

.widget_nav_menu ul > li > ul.sub-menu > li:not(:last-child) {
  border-bottom: 1px solid #c9caca;
}


.widget_nav_menu ul > li > ul.sub-menu > li{
  position:relative;
}

.widget_nav_menu ul > li > ul.sub-menu > li a{
  background:#0063b1;
  padding:0.75em 1em;
  color:#ffffff;
  z-index:1;
}

.widget_nav_menu ul > li > ul.sub-menu > li a:hover{
  opacity:1;
  background:#3b80b7;
}

.widget_nav_menu ul > li > ul.sub-menu > li > ul  > li > a{
  background:#104f82;
}

.wp-caption-text{
  font-size: 15px;
  line-height: 1.75;
  margin-top: 0.5em;
  width: 300px;
  text-align: justify;
  letter-spacing: 0.05em;
}

.list-side2 {
  margin-bottom: 1em;
}

.list-side2 li:not(:first-child) {
  margin-top: 15px;
}

.list-side2 a {
  display: flex;
}

.list-side2 a div:nth-child(1) {
  width: 90px;
  margin-right: 10px;
}

.list-side2 a div:nth-child(2) {
  width: 200px;
}

.box-side2 .list-side2 img {
  width: 100%;
  height: 90px!important;
}

.list-side2 time {
  display: block;
  margin-bottom: 0.5em;
  font-size: 12px;
}

.list-side2 span {
  font-size: 14px;
  line-height: 1.5;
}

.side-compnay {
  line-height: 1.5;
}

.side-compnay picture{
  margin-top:12px;
}

.side-compnay img {
  margin-bottom: 1em;
}

.side-address-compnay {
  margin-bottom: 1em;
}

.side-address-compnay p:before{
  content:"";
  display:inline-block;
  width:14px;
  height:14px;
  margin-right:5px;
  background-size:cover;
  position: relative;
  top: 2px;
}

.company_name:before{
  background:url(images/company.svg);
}

.company_zipcode:before{
  background:url(images/zip.svg);
}

.company_pref:before{
  background:url(images/pref.svg);
}

.company_tel:before{
  background:url(images/tel2.svg);
}

.company_fax:before{
  background:url(images/fax.svg);
}

.side-list-compnay {
  display: flex;
  justify-content: space-between;
}

.side-list-compnay li{
  width:48%;
}

.side-list-compnay a {
  display: block;
  padding: 0.5em 1em;
  border: 1px solid #aaaaaa;
  font-size: 12px;
  text-align: center;
}

.side-access:before {
  margin-right: 0.5em;
  color: #dc4b3e;
}

.side-company:after {
  margin-left: 1em;
}

.box-search {
  display: flex;
  padding-top:12px;
}

.box-search input[type="text"] {
  width: 85%;
  padding: 7px 14px 6px;
  border-radius: 4px 0 0 4px;
}

.box-search button[type="submit"] {
  width: 15%;
}

.box-search .fa-search {
  display: block;
  background: #666666;
  height: 39px;
  border-radius: 0 4px 4px 0;
  position:relative;
}

.box-search .fa-search:before {
  content:"";
  background:url(images/search.svg);
  background-size:cover;
  display:block;
  height:20px;
  width:20px;
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  margin:auto;
}

.check {
  display: none;
}

.check + .parent {
  display: flex;
  justify-content: space-between;
  padding: 0.75em 1em;
  background: #1364b3;
  color: #fff;
  line-height: 1.25;
  cursor: pointer;
}

.check + .parent:after {
  content: "▼";
}

.check + .parent + ul {
  display: none;
}

.check:checked + .parent:after {
  content: "▲";
}

.check:checked + .parent + ul {
  display: block;
}

.breadcrumb {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 2em;
  padding: 1em 0 0.5em;
}

.breadcrumb li:nth-child(1){
  padding-left:26px;
  position:relative;
}

.breadcrumb li:nth-child(1) a:before{
  content:"";
  width:18px;
  height:15px;
  display:inline-block;
  background:url(images/home.svg);
  background-size:cover;
  margin-right:5px;
  position:absolute;
  left:0;
  top:-2px;

}

.breadcrumb li:not(:first-child):before {
  margin: 0 0.5em 0 1em;
  font-size: 12px;
  content: "/";
}

.breadcrumb a,
.breadcrumb span {
  font-size: 12px;
}

.breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.interval5em > *:not(:last-child) {
  margin-bottom: 0.5em;
}

.interval10em > *:not(:last-child) {
  margin-bottom: 1em;
}

.interval15em > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.interval20em > *:not(:last-child) {
  margin-bottom: 2em;
}

.interval25em > *:not(:last-child) {
  margin-bottom: 2.5em;
}

.interval30em > *:not(:last-child) {
  margin-bottom: 3em;
}

.interval35em > *:not(:last-child) {
  margin-bottom: 3.5em;
}

.interval40em > *:not(:last-child) {
  margin-bottom: 4em;
}

.interval45em > *:not(:last-child) {
  margin-bottom: 4.5em;
}

.interval50em > *:not(:last-child) {
  margin-bottom: 5em;
}

.main-visual {
  position:relative;
}


/* .main-visual .noslide {
    width: 1920px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
} */

body:not(.index):not(.btob) .main-visual {
  display: flex;
  align-items: center;
  height: 150px;
    background: #f1f1f1;
  background-size: cover;
  background-blend-mode: multiply;
}

.main-visual picture {
  display: block;
}

.main-visual img {
  width: 100%;
  height: auto;
}


.wrap-1column .photo-img p + img{
	margin-top: min(28px, 4vw);
}

.wrap-1column .photo-img img + p{
	margin-top: min(28px, 4vw);
}

.fullvw-width{
	width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: unset;
}

.consept-block{
    background: url(https://amnk2019.xsrv.jp/wp-content/uploads/1920x1080x600a4221bb921f5c82bf55.jpg.webp) 50% 50% , #ffffff99;
    background-blend-mode: overlay;
    padding: 70px 0;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.main-column .consept-block h3{
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
	border: none;
	
}

.head-page {
  color: #3d3d3d;
  font-size: 28px;
  letter-spacing: 0.3em;
  text-align: center;
  text-indent: 0.3em;
font-weight:normal;
}

.head-page:after {
  margin-top: 0.5em;
  font-size: 16px;
}

.wrap-slider {
  position: relative;
  width: 1920px;
  left: -360px;
}

.wrap-slider .slider {
  position: relative;
  width: 100%;
  height: 600px;
}

.wrap-slider .slider li {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode: backwards;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
          animation-name: fade;
          animation-duration: 15s;
          animation-fill-mode: backwards;
          animation-iteration-count: infinite;
}

.wrap-slider .slider li:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.wrap-slider .slider li:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.wrap-slider .slider li:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

@-webkit-keyframes fade {
  0% {
    display: none;
    opacity: 0;
  }
  10% {
    display: block;
    opacity: 1;
  }
  33% {
    display: block;
    opacity: 1;
  }
  45% {
    display: none;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    display: none;
    opacity: 0;
  }
  10% {
    display: block;
    opacity: 1;
  }
  33% {
    display: block;
    opacity: 1;
  }
  45% {
    display: none;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

.wrap-head-common {
  margin-bottom: 30px;
}

.head-common {
  line-height: 1.5;
}




 .main-column h2 {
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-start;
    line-height: 1.75;
    margin-bottom: 28px;
    margin-top: min(80px, 20vw);
    font-size: 22px;
    padding: 12px;
    background: #fff;
    font-weight: bold;
	padding:0;
}

.main-column h2 + p{
	line-height: 2.1;
    letter-spacing: 0.1em;
}

.wrap-1column .main-column h2 {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
/*     letter-spacing: 0.12em; */
	letter-spacing: 0;
/*     font-size: min(40px, 12vw); */
	font-size: min(9vw,28px);
	margin-bottom: min(55px, 8vw);
	 background: none;
	 margin-top: 0;
	font-style:normal;
    font-weight: normal;
    line-height: 1.25;
}

.single-post .head-common {
  font-size: 36px;
  border-bottom:1px solid #999999;
  padding-bottom: 13px;
}

a:hover {
  opacity: 0.7;
  transition: 0.2s;
}

.hover-opacity1 a:hover {
  opacity: 1;
}

.wrap-btn {
  display: flex;
}

.section-about .wrap-btn {
  justify-content: center;;
}

.btn-archive {
display: block;
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 300px;
    margin-top: 40px;
    padding: 1em;
    background: #fff;
    text-align: center;
    transition: 0.5s;
    color: #02a7a3;
    border: 1px solid #02a7a3;
    border-radius: 4px;
    filter: drop-shadow(1px 1px 0px #ccc);
    transform: rotate(0.03deg);
}

.footer-contact .btn-archive {
  min-width: 350px;
  margin: 2em 0;
  box-shadow: 0 0 3px 1px #ccc;
}

.telp{font-family: 'Fjalla One', sans-serif;
font-size:40px!important;}

.sidebar .btn-archive {
  margin-top: 15px;
  padding: 0.75em;
}

.section-about .btn-archive {
  width:100%;
  min-width:100px;
}

.btn-archive:hover {
  background: #02a7a3;
  color: #fff;
  opacity: 1;
}

.btn-archive:after {
    -webkit-transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 3px solid #02a7a3;
    border-right: 3px solid #02a7a3;
    content: "";
}

.btn-archive:hover:after{
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;	
}

.btn-form,
button.btn-form {
  border: 1px solid #1364b3;
  background: #1364b3;
  color: #fff;
  text-align: center;
}

.btn-form:hover,
button.btn-form:hover {
  background: #fff;
  color: #1364b3;
  opacity: 1;
}

.global-nav {
  display: flex;
  z-index: 2;
  width: 100%;
}

.global-nav > li {
  position: relative;
}

.global-nav > li > a {
  display: block;
  padding:0.5em 0;
  text-align: center;
  position:relative;
	font-weight:bold;
font-family: 'Zen Maru Gothic', sans-serif;
}

.global-nav > li > a span{
  display:block;
  font-size:10px;
  margin-top:4px;
  margin-bottom:-4px;
}

.global-nav > li:before {
  content: none;
  display: block;
  height: 1px;
  width:0;
  background: #0063b1;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition:0.5s;
}

.global-nav > li:hover:before {
  width: 80%;
}

.global-nav > li > ul {
  z-index: 2;
  position: absolute;
  top: calc(100% + 0px);
  left: -10%;
  width: 200%;
  height:auto;
  opacity: 0;
  transition:0.5s;
  visibility: hidden;
}

.global-nav > li:hover > ul{
  height:auto;
  opacity:1;
  transition:0.5s;
  top: calc(100% + 15px);
  visibility: visible;
}

.global-nav > li:hover > ul:before{
  content:"";
  display:block;
  height:15px;
  width:100%;
  position:absolute;
  top:-15px;
  right:0;
  left:0;
  margin:0 auto;
}

.global-nav > li:hover > ul:after{
  content:"";
  height:0;
  width:0;
  display:block;
  border-color: transparent transparent #eee;
  border-style: solid;
  border-width: 0 10px 10px;
  position:absolute;
  top:-10px;
  right:0;
  left:0;
  margin:0 auto;
  z-index:-1;
}

.global-nav > li > ul.sub-menu > li > ul > li{
	position:relative;
}

.global-nav > li > ul.sub-menu > li > ul > li:nth-child(1):before{
  content: "";
  height: 0;
  width: 0;
  display: block;
  border-color: transparent transparent #104f82;
  border-style: solid;
  border-width: 10px 10px 10px;
  position:absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  margin: auto 0;
  z-index:2;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.global-nav > li:last-child > ul.sub-menu > li > ul > li:nth-child(1):before{
  left:initial;
  right: -20px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}



.global-nav > li > ul.sub-menu > li a:hover{
  background:#efefef;
  opacity:1;
color:#333;
}

.global-nav > li > ul > li{
  position:relative;
  transition:0.5s;
}

.global-nav > li > ul > li > ul{
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  opacity:0;
  visibility:hidden;
  transition:0.5s;
  z-index:1;
}

.global-nav > li > ul > li:hover > ul{
  opacity:1;
  visibility:visible;
  transition:0.5s;

}


.global-nav > li:last-child > ul > li > ul{
  right:100%;
  left:initial;
}

.global-nav > li > ul > li > ul > li{
  opacity:0;
  visibility:hidden;
}

.global-nav > li > ul > li:hover > ul > li{
  opacity:1;
  visibility:visible;
}

.global-nav > li > ul.sub-menu > li > ul > li > a{
  background:#dcdde1;
}

.global-nav .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #c9caca;
}

.global-nav .sub-menu a {
  display: block;
  padding: 0.7em;
  text-align: center;background:#eee;
color:#333;
}

.global-nav li > ul > li > a{
	z-index:10;
}

.drawer-nav > li,.drawer-nav > li > ul > li,.drawer-nav > li > ul > li > ul >li {
  position: relative;
  border-bottom: 1px solid #ccc;
  line-height: 1.75;
}

.drawer-nav > li > ul > li:last-child,.drawer-nav > li > ul > li > ul >li:last-child {
  border-bottom: none;
}

 .drawer-nav > li > a,.drawer-nav > li > ul > li > a,.drawer-nav > li > ul > li > ul > li > a {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
}

.drawer-nav > li > ul > li > a {
	background:#eeeeee;
}

.drawer-nav li a span{
  display:none;
}

.drawer-nav .sub-menu {
  display: none;
  border-top: 1px solid #ccc;
}

.drawer-nav a {
  display: block;
  padding: 0.5em 1em;
  position: relative;
}


.drawer-nav a:after {
    content: "";
    border-top: 3px solid #999;
    border-right: 3px solid #999;
    height: 9px;
    width: 9px;
    transform: rotate( 45deg );
}


.drawer-nav .btn-sub + a:after {
	content:none;
}

.drawer-nav .btn-sub {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    width: 43px;
    height: 50px;
    margin: auto;
    color: #999999;
}

.drawer-nav .fa-angle-down:before{
    content: "";
    border-top: 3px solid #999;
    border-right: 3px solid #999;
    height: 9px;
    width: 9px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(75%,-50%) rotate( 135deg );
}

.drawer-nav .fa-angle-up:before{
    content: "";
    border-top: 3px solid #999;
    border-right: 3px solid #999;
    height: 9px;
    width: 9px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(75%,-50%) rotate( -45deg );
}

.footer-nav > li {
  line-height: 1.75;
}

.footer-nav > li > a {
  position: relative;
}

.footer-nav a:before {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5em;
          transform: rotate(45deg);
  border-top: 2px solid #131313;
  border-right: 2px solid #131313;
  vertical-align: 5%;
  content: "";
}

.footer-nav .sub-menu li a{
  padding-left: 1em;
}

.footer-nav .sub-menu li ul li a{
  padding-left: 2em;
}

.pagination {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  color: #1364b3;
}

.main-column .pagination li {
  margin: 0 5px;
}

.main-column .pagination li:before{
	content: none;
}

.pagination .pager {
  display: inline-block;
  min-width: 40px;
  border-radius: 50%;
  background: #999;
  color: #fff;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

.pagination .pager i {
  vertical-align: bottom;
}

.pagination .pager i:before {
  display: block;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.pagination .pager:hover,
.pagination .pager.current {
  background: #1364b3;
  opacity: 1;
}

.pagetop {
    display: flex;
    z-index: 5;
    position: fixed;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1364b3;
    color: #fff;
    text-align: center;
    right: 20px;
    transition: 0.2s;
    opacity: 0;
}

.pagetop span {
  -webkit-transform: rotate(-45deg);
  display: block;
  width: 25%;
  height: 25%;
  margin-top: 5px;
          transform: rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.loading {
  z-index: 10100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
}

.loading img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  margin: auto;
}

.bg-loading img {
  background: #aaa url(images/bg-loading.svg) no-repeat center center;
  background-size: 50px;
}

.stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.dot-pulse {
  -webkit-animation: dotPulse 1.5s infinite linear;
  -webkit-animation-delay: 0.25s;
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #1364b3;
  box-shadow: 9999px 0 0 -5px #00529c;
  color: #00529c;
          animation: dotPulse 1.5s infinite linear;
          animation-delay: 0.25s;
}

.dot-pulse::before, .dot-pulse::after {
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #00529c;
  color: #00529c;
  content: "";
}

.dot-pulse::before {
  -webkit-animation: dotPulseBefore 1.5s infinite linear;
  -webkit-animation-delay: 0s;
  box-shadow: 9984px 0 0 -5px #00529c;
          animation: dotPulseBefore 1.5s infinite linear;
          animation-delay: 0s;
}

.dot-pulse::after {
  -webkit-animation: dotPulseAfter 1.5s infinite linear;
  -webkit-animation-delay: 0.5s;
  box-shadow: 10014px 0 0 -5px #00529c;
          animation: dotPulseAfter 1.5s infinite linear;
          animation-delay: 0.5s;
}

@-webkit-keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9984px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9984px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
}

@-webkit-keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9999px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9999px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
}

@-webkit-keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 10014px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 10014px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
}

.main-column  .nav-link {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
	margin: 15px auto;
}

.main-column .okuric li{line-height:14px;}

.link-prev,
.link-next,
.link-archive {
position: relative;
}

.link-prev a,
.link-next a,
.link-archive a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    color: #1364b3;
    text-align: center;
    font-weight: bold;
    border: 1px solid #1364b3;
    filter: drop-shadow();
    font-size: 14px;
}

.main-column  .pageokuri li {
    width: 25%;
    margin-left: 0px;
}


.link-prev a:hover, .link-next a:hover, .link-archive a:hover{
	background: #1364b3;
	color: #fff;
	opacity: 1;
}



.link-prev a:before, .link-prev a:after,
.link-next a:before,
.link-next a:after,
.link-archive a:before,
.link-archive a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.link-archive {
  order: 2;
}



.link-prev a:before {
    -webkit-transform: rotate(225deg);
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    transform: rotate(225deg);
    border-top: 2px solid #1364b3;
    border-right: 2px solid #1364b3;
    content: "";
}

.link-next {
  order: 3;
  text-align: right;
}


.link-next a:after {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  transform: rotate(45deg);
  border-top: 2px solid #1364b3;
  border-right: 2px solid #1364b3;
  content: "";
}

.link-prev a:hover:before,.link-next a:hover:after{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.icon-phone:before {
  content: "\f095";
}

.icon-access:before {
  content: "\f1ac";
}

.icon-mail:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f0e0";
}

.icon-question:before,
.icon-tel:before {
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: -10%;
  content: "";
}

.icon-question:before {
  background: url(images/icon-question.png) no-repeat center center;
  background-size: contain;
}

.icon-tel:before {
  background: url(images/icon-tel.png) no-repeat center center;
  background-size: contain;
}

.bg-blue {
  background: #1364b3;
}

.bg-stripe-blue {
  background-image: linear-gradient(90deg, #1364b3 0, #1364b3 3%, transparent 3%, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat;
  background-size: 18px 18px;
}

.index .overlay {
  position: relative;
}

.list-num > li {
  list-style-position: inside;
  counter-increment: cnt;
}

.list-num > li:before {
  display: inline-block;
  content: counter(cnt);
}

.main-column ul.list-caution{
  margin:0.5em 0 0;
}


ul.list-caution li{
  font-size:12px;
  line-height:16px;
}


ul.list-caution li:before {
  content: "※";
  height:initial;
  width:initial;
  background:none;
    top: 1px;
}

.list-circle > li {
  margin-left: 1em;
  text-indent: -1em;
}

.list-circle > li:before {
  content: "●";
}

.list-circle-border > li {
  margin-left: 1em;
  text-indent: -1em;
}

.list-circle-border > li:before {
  content: "○";
}

.list-dot > li {
  margin-left: 1em;
  text-indent: -1em;
}

.list-dot > li:before {
  content: "・";
}

.imgFullWidth {
  display: block;
  width: 100%;
  height: auto;
}

/*
* object-fitのclassとie対応（ofi.js必要）
*/
.ofi-cover {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.ofi-contain {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.wrap-zoom {
  overflow: hidden;
}

.wrap-zoom > img {
  transition: 0.5s;
}

.wrap-zoom > img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*　疑似要素テキスト　*/
.attrTextLeft:before,
.attrTextTop:before,
.attrTextBottom:after,
.attrTextRight:after {
  content: attr(data-text);
}

.attrTextLeft:before,
.attrTextRight:after {
  display: inline-block;
}

.attrTextTop:before,
.attrTextBottom:after {
  display: block;
}

/*　疑似要素テキスト　*/
/*　疑似要素アイコン　*/
.attrIconLeft:before,
.attrIconTop:before,
.attrIconBottom:after,
.attrIconRight:after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #0063b1;
  position: absolute;
  left: -36px;
  top: -2px;
  border-radius:5px;
}

.attrIconLeft:after{
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background:url(images/tel.svg);
  background-size:cover;
  position: absolute;
  left: -36px;
  top: -2px;
  border-radius:5px;
  margin:5px;
}

.attrIconTop:before,
.attrIconBottom:after {
  display: block;
}

.attrIconLeft:before,
.attrIconRight:after {
  display: inline-block;
}

/*　疑似要素アイコン　*/
#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

#nav-open {
  z-index: 10000;
  position: absolute;
/*   top: 10px; */
/*   right: 10px; */
    top: 19px;
    right: 22px;
  width: 35px;
/*   height: 40px; */
	height: 25px;
  margin: auto;
  vertical-align: middle;
}

#nav-open:hover {
  cursor: pointer;
}

#nav-open span {
  position: absolute;
  right: 0;
  left: 0;
  width: 80%;
/*   height: 3px; */
    height: 1px;
  margin: auto;
    background: #333;
  transition: all 0.5s;
}

#nav-open span:nth-of-type(1) {
  top: 2px;
}

#nav-open span:nth-of-type(2) {
  top: 11px;
}

#nav-open span:nth-of-type(3) {
  top: 20px;
}

/*閉じる用の薄黒カバー*/

.btn-close {
    margin: 40px;
    padding: 1em;
    text-align: center;
    cursor: pointer;
    border: #666666 1px solid;
}

.btn-close:before {
	content:"×";
}

#nav-input:checked ~ #nav-open span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
  transition: all 0.5s;
}

#nav-input:checked ~ #nav-open span:nth-of-type(2) {
  opacity: 0;
}

#nav-input:checked ~ #nav-open span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
  transition: all 0.5s;
}

.table-common {
  width: 100%;
}

.table-common th {
  letter-spacing: 0.2em;
  line-height: 2;
}

.table-common td {
  letter-spacing: 0.1em;
  line-height: 2;
}

.table-common a {
  text-decoration: underline;
}

.table-contact {
  width: 100%;
  border-top: 1px solid #ccc;
}

.table-contact th {
  position: relative;
}

.table-contact th.required:after {
  position: absolute;
  right: 0;
  height: 1.5em;
  padding: 0 1em;
  background: #e60012;
  color: #fff;
  line-height: 1.5;
  content: "必須";
}

.table-contact td {
  border-bottom: 1px solid #ccc;
}

.wrap-about {
  display: flex;
  flex-flow: row-reverse nowrap;
  width: 100%;
}

.wrap-about img{
  height:100%;
}

.wrap-about > div:nth-child(1) {
  margin-left: 25px;
}

.wrap-about > div:nth-child(2) {
  width: calc(100% - 256px - 25px);
}

.wrap-message {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 25px;
  border: 1px solid #ccc;
}

.wrap-message > div {

}

.wrap .wrap-message h3{
  margin-top:0;
  width: 100%;
  display: block;

}

.wrap-message > div:nth-child(2) {
  text-align: left;
  width:75%;
  margin-right:2%;
}


.wrap-message > div:nth-child(3) {
  text-align: center;
  width: 23%;

}

.wrap-message > div:nth-child(2) img{
  text-align: center;
  width: 68%;
}

.top-message {
  margin-bottom: 0.5em;
  font-family: "リュウミン M-KL", "Ryumin Medium KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 48px;
  line-height: 1.25;
}

.single-post {
margin-bottom: 50px;
}

.single-header {
  margin-bottom: 1em;
  display:flex;
  justify-content:space-between;
}

.single-header time {
  margin-right: 2em;
  font-size: 14px;
}

.single-header time:before {
  content:"";
  display:inline-block;
  width:14px;
  height:14px;
  background:url(images/date.svg);
  background-size:cover;
  margin-right:5px;
  position:relative;
  top:2px;
}

.single-contents > *:not(:last-child) {
  margin-bottom: 1em;
}

.single-contents strong{
background: #ffffab;
    padding: 3px 5px;
}

.single-contents a{text-decoration:underline;color:#1A0DAB;}





.main-column > *:nth-child(1){
  margin-top:0;
}



.main-column h3 {
    margin: 1em 0;
    padding: 0.5em 0;
    font-size: 20px;
    line-height: 1.25;
    border-bottom: 1px solid #ccc;
}


.wrap-message p{
  text-align:justify;
}

.president{
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-top:1em;
  font-weight: bold;
  color: #000000;
  font-size: 14px;
	line-height:1.5;
  width: 100%;
text-align: right;

}

.president span{
	display:inline;
}

.main-column h3 + p{
  margin-top:-10px;
}

.main-column .box-post-img-text h3 + p,.main-column .box-post-archive p{
  margin-top:5px;
  text-align: justify;
}

.main-column h4 {
    margin: 2em 0 0.5em;
    padding-left: 1em;
    font-size: 18px;
    line-height: 1.25;
    border-left: 4px solid #1364b3;
}


.main-column h5{
    margin: 0 0 0.5em;
}


.single-contents p {
  line-height: 2;
}

.single-contents img {
  max-width: 100%;
  height: auto;
}

.single-contents iframe {
  max-width: 100%;
}

.single-contents table {
  width: 100%;
}

.single-contents table th,
.single-contents table td {
  padding: 0.5em 1em;
  line-height: 1.5;
}

.single-contents strong {
  font-weight: bold;
}

.related{
  margin-top:50px;
}

.wp-block-media-text{
  margin:32px 0;
}

.wp-block-media-text{
  align-items:flex-start;
}

.wp-block-media-text > *:nth-child(1){
  margin-right:32px;
}

.wp-block-media-text.has-media-on-the-right > *:nth-child(1){
  margin-right:0px;
}

.wp-block-media-text.has-media-on-the-right > *:nth-child(2){
  margin-right:32px;
}

.wp-block-media-text .wp-block-media-text__content{
  padding:0;
}


.wp-block-columns{
  margin:20px 0;
}

.wp-block-column .wp-block-image{
  margin-bottom:0;
}

.wp-block-button{
  margin:15px 0 32px;
}

.wp-block-cover{
  margin:32px 0;
}

.main-column ul.nav-link li:before{
  content:none;
}


.main-column ul.nav-link li.link-archive:nth-child(1){
	margin:0 auto;
}

.has-very-dark-gray-background-color.has-very-dark-gray-background-color {
  background-color: #0063b1;
}


.main-column .sitemap > li{
  border-top:1px solid #cccccc;
}

.main-column .sitemap > li > a{
    padding: 10px 0;
    display: block;
    font-weight: bold;
    font-size: 16px;
}

.main-column .sitemap > li:last-child{
	border-bottom:1px solid #cccccc;
}



.main-column .sitemap li a span{
  display:none;
}


.main-column .sitemap .sub-menu{
	margin:0;
}

.main-column .sitemap > li > .sub-menu {
    border-top: 1px solid #cccccc;
    margin-bottom: 10px;
}

.main-column .sitemap > li > ul > li{
    margin-top: 10px;
    line-height: 2;
}

.main-column .sitemap > li > ul > li > a{
    display: inline-block;
    font-weight: bold;
}

.main-column .sitemap > li > ul > li > ul > li{
    margin: 0px 0 0 20px;
    line-height: 2;
}


.main-column .sitemap > li > ul > li > ul > li > a{
    display: inline-block;
}




.main-column .sitemap li:before{
  content:none;
}

.main-column .contact-form table th{
  padding: 15px 15px 15px 0;
  min-width:250px;
}

.main-column .contact-form table td{
  padding: 15px 0 15px 15px;
  width: calc(100% - 250px);
}

.section-about h2{
  margin-bottom:15px;
}

.section-about .btn-archive{
  margin-top:15px;
}

#nav-content .logo {
    display: block;
    margin: 1.5em 4em;
    overflow: hidden;
}

.mobile-header-banner {
    margin: 30px 20px 0;
}

.mobile-header-banner li{
	position: relative;
	top: unset;
}

.mobile-header-banner li:not(:first-child) {
    margin-top: 10px;
}

.mobile-header-banner li> *{
	font-family: "Noto Sans JP","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
}

.mobile-header-banner a {
    display: block;
	display: flex;
	align-items: center;
    position: relative;
    padding: 15px;
    font-size: 12px;
    background: #02a7a3;
    color: #fff;
}

.mobile-header-banner li.contact a:before{
    content: "";
    height: 20px;
    width: 20px;
    margin-right: 10px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="white" d="M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z" /></svg>') no-repeat center center;
	background-size: cover;
	fill: #fff;
}

.mobile-header-banner li.tel a:before{
    content: "";
    height: 20px;
    width: 20px;
    margin-right: 10px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="white" d="M15,12H17A5,5 0 0,0 12,7V9A3,3 0 0,1 15,12M19,12H21C21,7 16.97,3 12,3V5C15.86,5 19,8.13 19,12M20,15.5C18.75,15.5 17.55,15.3 16.43,14.93C16.08,14.82 15.69,14.9 15.41,15.18L13.21,17.38C10.38,15.94 8.06,13.62 6.62,10.79L8.82,8.59C9.1,8.31 9.18,7.92 9.07,7.57C8.7,6.45 8.5,5.25 8.5,4A1,1 0 0,0 7.5,3H4A1,1 0 0,0 3,4A17,17 0 0,0 20,21A1,1 0 0,0 21,20V16.5A1,1 0 0,0 20,15.5Z" /></svg>') no-repeat center center;
	background-size: cover;
	fill: #fff;	
}

.mw_wp_form_input .mw-input-page {
    display: block;
}

.mw_wp_form p {
    font-size: 16px;
    line-height: 1.7em;
}

.mw_wp_form_input .mw-check-page {
    display: none;
}

.mw_wp_form_preview .mw-input-page {
    display: none;
}

.mw-btn {
    background: #02a7a3;
    display: block;
    text-align: center;
    color: #ffffff;
    padding: 1em;
    transform: rotate(0.03deg);
}
/* シンプルフッター */

.simple-footer-nav {
    display: flex;
    justify-content: center;
    margin-bottom: -30px;
}

.simple-footer-nav li a {
    padding: 0 1em;
    border-right: 1px solid #666666;
    color: #666666;
    font-size: 12px;
}

.simple-footer-nav li ul{
	display:none;
}

.contact-box h2 {
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    letter-spacing: 0.12em;
    font-size: min(40px,12vw);
    margin-bottom: min(55px, 8vw);
    font-weight: bold;
font-style: italic;
    font-weight: normal;
    line-height: 1.25;
}

.contact-box p {
    text-align: center;
	line-height:1.25;
    color: #ffffff;
}

.contact-box .telp{
	line-height: 1;
	margin-top: 20px;
}

.contact-btn-box {
    width: 700px;
    margin: 30px auto 10px;
    display: flex;
    justify-content: space-between;
}


.contact-btn-box a {
    display: block;
    padding: 18px 0 15px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    background: #444444;
    width: calc((100% - 30px) / 2);
    font-size: 24px;
    border-radius: 4px;
}

.contact-btn-box a:nth-child(1) {
    background: #4a9c54;
    border-bottom: 2px solid #306537;
    border-right: 2px solid #306537;
}

.contact-btn-box a:nth-child(2) {
    background: #d63e43;
    border-bottom: 2px solid #8d282b;
    border-right: 2px solid #8d282b;
}

.contact-tel {
    color: #ffffff;
}

.contact-tel:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(images/tel.svg)no-repeat;
    background-size: cover;
    margin-right: 5px;
    position: relative;
    top: 2px;
}


/* Edge */
@supports (-ms-ime-align: auto) {
  .wp-block-image img{
    width: 100%;
  }
}


/* IE10以降 */
@media all and (-ms-high-contrast: none) { /* ハイコントラストモードが「オフ」の場合 */
  .wp-block-image img{
    width: 100%;
  }
}




@media screen and (min-width: 1241px) {
.single-wrap{
    padding: 52px;
    border: 1px solid #ccc;
}

.contents {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
	
.has-large-font-size{
  font-size:42px;
}

.wrap-2column .main-column {
  width: 840px;
}


.wrap-1column-narrow .main-column {
  width: 940px;
  margin:0 auto;
}



.wp-block-cover__inner-container p{
  color:#ffffff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.wrap-message > div:nth-child(1) {
  width: calc(100% - 222px - 50px);
}



}




@media screen and (min-width: 901px) and (max-width:1240px) {
  .contents {
  width: calc(100% - 80px);
  margin-right: auto;
  margin-left: auto;
  }

  .wrap-2column .main-column {
    width:calc(100% - 340px);
  }

  .footer-contents {
    width:calc(100% - 340px);
  }

	.footer-contents .footer-nav a{
    font-size:1.2vw;
  }

	.wrap-message{
    flex-flow:wrap;
	}

	.wrap-message > div:nth-child(1){
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 25px;
	}

/* 	.main-visual .noslide{
	width:calc((100% - 80px) * 1.6);
	} */

}



@media screen and (min-width: 901px) {
  .tb {
    display: none;
  }
  .sp {
    display: none;
  }
  body.over {
    padding-top: 101px;
  }

  .wrap-2column {
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
  }

  .wrap-2column .sidebar {
    width: 300px;
  }

  body:not(.index):not(.btob) .wrap {
    padding: 0 0 150px;
  }
  .inner {
    padding: 0 50px;
  }
  .wrap-section-interval > *:not(:last-child) {
    margin-bottom: 90px;
  }
  .wrap-section-padding > * {
    padding: 60px 0;
  }
  .wrap-2column .section-common:nth-child(1) h2{
    margin-top: 0px;
  }
  .wrap-1column .section-common {
    padding: 145px 0 150px;
  }

.wrap-1column .box-post-img-text {
	width: calc((100% - 75px) / 3);
}
	
  .wrap-main {
    display: flex;
    position: absolute;
    top: -25px;
    left: -450px;
    align-items: center;
    justify-content: flex-end;
    width: 898px;
    height: 305px;
    padding: 50px;
  }
  .inner-main {
    width: 250px;
  }
  .inner-main h1 {
    font-size: 26px;
  }
  .inner-main p {
    font-size: 14px;
  }

  .header.over {
    top: -101px;
  }

  .wrap-tel-header {
    display: flex;
    flex-wrap: nowrap;
  }

  a[href^="tel:"] {
    pointer-events: none;
	word-break: keep-all;
    white-space: nowrap;
  }
  .btn-form,
  button.btn-form {
    width: 250px;
    padding: 1em;
    font-size: 15px;
  }
  .drawer-nav {
    display: none;
  }

  .pagetop.active {
  opacity:0.7;

  }
	.pagetop.active:hover {
  opacity:1;
  }

  .icon-question:before,
  .icon-tel:before {
  width: 15px;
  height: 15px;
  }
  .bg-footer {
    background: url(images/bg-footer.jpg) no-repeat center top -1px;
    background-size: 2001px 273px;
  }
  .index .overlay:before {
    z-index: 4;
    position: absolute;
    top: -40px;
    left: -450px;
    width: 480px;
    height: 743px;
    background: rgba(0, 155, 219, 0.6);
    content: "";
  }
  .index1:after {
    z-index: 1;
    position: absolute;
    top: -160px;
    left: -450px;
    width: 898px;
    height: 864px;
    background: url(images/index1.png) no-repeat center center;
    content: "";
  }
  .bg-company {
    background: url(images/bg-works.png) no-repeat center top;
  }
  .bg-outline {
    background: url(images/bg-outline.jpg) no-repeat center top;
  }
  .bg-history {
    background: url(images/bg-history.jpg) no-repeat center top;
  }
  .bg-access {
    background: url(images/bg-access.jpg) no-repeat center top;
  }

  .table-common th {
    width: 180px;
    padding: 0.5em 1em;
    vertical-align: top;
  }
  .table-common td {
    padding: 0.5em 1em;
    vertical-align: top;
  }
  .table-contact {
    margin-bottom: 60px;
  }
  .table-contact th {
    width: 230px;
    padding: 2em 0 0 1em;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    vertical-align: middle;
    vertical-align: top;
  }
  .table-contact th.required:after {
    top: 2.5em;
    font-size: 11px;
  }
  .table-contact td {
    padding: 1em 2em;
  }
  .confirm .table-contact td {
    height: 72px;
    line-height: 40px;
  }

  .wrap-1column .box-post-archive a > div:nth-child(1) {
    width: 300px;
    margin-right: 40px;
  }

  .wrap-1column .box-post-archive a > div:nth-child(2) {
    width: calc(100% - 300px);
  }


}


@media screen and (min-width: 641px) and (max-width:900px){
.single-wrap{
    padding: 0px;
    border: 0px solid #ccc;
    box-shadow: 0px 0px 0px #eee;
}
  .wrap-1column .box-post-archive a > div:nth-child(1) {
    width: 240px;
    margin-right: 40px;
  }

  .wrap-1column .box-post-archive a > div:nth-child(2) {
    width: calc(100% - 280px);
  }

	.wrap-message > div:nth-child(1){
   width:calc(70% - 40px);
	}

	.wrap-message > div:nth-child(2){
    width:75%;
	margin-right: 2%;
	}

	.wrap-message > div:nth-child(2) .btn-archive{
    min-width:100%;

	}

/* 	.main-visual .noslide{
	width:calc(92% * 1.6);
	} */
	
	
	.widget_media_image figure{
	width:100%!important;
	display:flex;
	flex-direction:row;
	}

	.widget_media_image figure a{
		max-width:300px;
		margin-right:2%;
	}
	
	.widget_media_image figcaption{
		margin-top:0;
		width:calc(100% - (300px + 2%));
	}

}




@media screen and (max-width: 1240px) {


}


@media screen and (max-width: 900px) {
.textCenter{
	text-align: unset;	
}
	
.consept-block h3{
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.consept-block p{margin-bottom: 12px;
	
	}

.single-wrap{
    padding: 0px;
    border: 0px solid #ccc;
    box-shadow: 0px 0px 0px #eee;
}
  .pc {
    display: none;
  }
  .sp {
    display:block;
  }
  body.over {
    padding-top: 80px;
  }
  .tb-contents {
    width: 100%;
  padding-right: 4%;
  padding-left: 4%;
  }

	.footer-top {
		padding:50px 0 0;
	}
	
  .footer-top .tb-contents {
    width: 100%;
  padding-right: 0;
  padding-left: 0;
  }	
	
  .simple-footer-nav{
	flex-wrap:wrap;	
  }

	
  .simple-footer-nav li{
    width: 100%;
    text-align: center;
    border-top: 1px solid #999999;

  }
	
	.simple-footer-nav li a{
	border-right:none;	
	width: 100%;
		padding: 15px 0;
	display:block;
	}
	
  .sp-contents {
    width: 100%;
  padding-right: 4%;
  padding-left: 4%;
  }
  .wrap-2column .main-column {
    margin-bottom: 10vw;
  }

  .wrap-2column .section-common:nth-child(1) h2 {
    margin-top: 0px;
  }
	
  body:not(.index):not(.btob) .wrap {
    padding: 0 0 20vw;
  }
  .wrap-section-interval > *:not(:last-child) {
    margin-bottom: 15vw;
  }
  .wrap-section-padding > * {
    padding: 10vw 0;
  }
  .wrap-2column .section-common:not(:last-child) {
    margin-bottom: 10vw;
  }
  .wrap-1column .section-common {
    padding: 15vw 0;
  }
  .box-post-text a {
    flex-flow: row wrap;
    padding:10px 0;
  }
  .header.over {
    top: -80px;
  }
	
  .wrap-tel-header {
    display: none;
  }
  .inner-footer-top {
    justify-content: center;
  }
  .inner-footer-top > div {
	margin-bottom: 2.5em;
  }
  .box-info-footer {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }

	.wrap-footer-nav .footer-nav li a {
	font-size:1.6vw;

	}

  .sidebar {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .sidebar > * {
    width: 100%;
  }

  .sidebar .widget_nav_menu {
    display:none;
  }

  .sidebar img {
    width: 100%;
  }
  .list-side2 a div:nth-child(1) {
    width: 40%;
    margin-right: 5%;
  }
  .list-side2 a div:nth-child(2) {
    width: 55%;
  }
  .side-list-compnay {
    justify-content: flex-start;
  }
  .side-list-compnay li:nth-child(1) {
    margin-right: 1em;
  }

  .global-nav {
    display: none;
  }
  .footer-nav {
    align-items: center;
  }

  .footer-contents {
	  width:100%;
  }

  .pagetop {
    right: 3vw;
    bottom: -60px;
  }
  .pagetop.active {
    bottom: 3vw;
	  opacity:0.9;
  }
	.pagetop:hover{
		 opacity:1;
	}

  .top-message {
    font-size: 30px;
  }

  .side-compnay{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
  }

  .side-compnay h3{
    width:100%;
  }

  .side-compnay picture{
    width:100%;
  }

  .side-address-compnay-box{
    width:100%;
  }

  .company-photo{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
  }

  .sidebar .company-photo > div{
    width:48%;
    margin-bottom: 4vw;
    }
	
  .contact-box .contents {
    padding: 0 6vw;
    }

  .contact-box h2 + p{
    text-align: justify;
    }
	
  .contact-btn-box {
    flex-direction: column;
    }
	
  .contact-btn-box {
    width: 100%;
    }
	
  .contact-btn-box a {
    width: 100%;
    }
	
  .contact-btn-box a:nth-child(1) {
    margin-bottom: 20px;
    }	

    body .telp {
    text-align: center;
    font-size: 3.5vw;
    }
	
	.single-post .head-common{
	font-size:4vw;
	}
	
	.wrap .wrap-message h3{
    margin: 0 2.5vw;
	}
	
	.contact-tel{
    font-size: 6vw;
    display: block;
    margin: 4vw 0 0;
	}
	

}


@media screen and (max-width: 640px) {
	
	
	.kaisyagaiyo td{border:1px solid #ccc;}
.kaisyagaiyo td:first-child {
  width: 30%;padding:10px;
}

.kaisyagaiyo td:nth-child(2) {
  width: 70%;padding:10px;
}
	
	
.tb-contents {
    width: 100%;
    padding-right: 4%;
    padding-left: 4%;
}	
	
.main-column h2 + p {
    letter-spacing: 0;
}	
	
.single-wrap{
    padding: 0px;
    border: 0px solid #ccc;
    box-shadow: 0px 0px 0px #eee;
}
  body.over {
    padding-top: 83px;
  }
  .spFullWidth {
    width: 100%;
    height: auto;
  }
  .wrap-main {
    width: 100%;
    padding: 10vw 5vw;
  }
  .inner-main h1 {
    font-size: 6vw;
  }
  .box-post-text time {
    min-width: 6em;
    margin-right: 10px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .main-column .box-post-text h3,.wrap-1column  .box-post-text h3{
    width: 100%;
    font-size: 16px;
    line-height: 16px;
	padding-right: 25px;
  }

	.wrap-post-img-text{
		justify-content: space-between;
	}	
	
  .box-post-img-text {
    width: 47%;
  }
	
	.box-post-img-text:not(:nth-of-type(3n)){
		margin-right: unset;
	}	
	
	.box-post-img-text:nth-of-type(n + 3){
		margin-top: 6vw;
	}
	
.main-column .box-post-img-text h3, .wrap-1column .box-post-img-text h3 {
    margin-bottom: 5px;
	line-height: 1.25;
}
	
  .box-post-img-text p {
    font-size: 13px;
  }
	
	.box-post-archive a{
		flex-flow: wrap;
	}
	
	.box-post-archive a:after{
		position: unset;
		bottom: none;
		right: none;
		width: 100%;
	}	
	
	
  .box-post-archive a > div:nth-child(1) {
    width: 25vw;
  }
  .box-post-archive a > div:nth-child(2) {
    width: calc(100% - 25vw - 20px);
  }
	
.main-column .box-post-archive h3, .wrap-1column .box-post-archive h3 {
    margin: 5px 0;
    letter-spacing: 0.1em;
    line-height: 1.25;
    font-size: 16px;
}
	
  .category-post {
    width: 6em;
    font-size: 12px;
  }
  .box-post-text .category-post {
    margin-right: 5px;
  }
  .header.over {
/*     top: -83px; */
    top: -75px;
  }
  .inner-header {
/*     height: 80px; */
    height: 75px;
/*     padding: 25px 0 5px; */
    padding: 23px 0 5px;
  }
  .wrap-logo {
    margin-left: 0;
  }
  .wrap-logo .logo {
    width: 180px;
/*     margin-left: 10px; */
	margin-left: 25px;
    position: relative;
    top: -2px;
  }
.wrap-logo .logo img {
    max-height: 40px;
}
  .head-header {
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0;
    background: #fff;
    line-height: 15px;
  }
  .head-header > * {
color: #888888;
    font-size: 8px;
    text-align: center;
	line-height:0;
  }
  .list-sp-menu {
    display: flex;
    position: absolute;
	top: 50px;  
	right: 50px;
  }
	
	.head-header h1,.head-header p {position: relative;
    top: 46px;
    font-size: 14px;
}




	/*spアイコンの色を変えるならfill内を"23"から初めて16進数のカラーコードで記述をする事*/
	
  .sp-header-tel:before{
    content:"";
    display:inline-block;
    height:25px;
    width:25px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%23ffffff" d="M15,12H17A5,5 0 0,0 12,7V9A3,3 0 0,1 15,12M19,12H21C21,7 16.97,3 12,3V5C15.86,5 19,8.13 19,12M20,15.5C18.75,15.5 17.55,15.3 16.43,14.93C16.08,14.82 15.69,14.9 15.41,15.18L13.21,17.38C10.38,15.94 8.06,13.62 6.62,10.79L8.82,8.59C9.1,8.31 9.18,7.92 9.07,7.57C8.7,6.45 8.5,5.25 8.5,4A1,1 0 0,0 7.5,3H4A1,1 0 0,0 3,4A17,17 0 0,0 20,21A1,1 0 0,0 21,20V16.5A1,1 0 0,0 20,15.5Z" /></svg>') no-repeat center center;
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
	/*top:-5px;*/
  }

  .sp-header-contact:before{
    content:"";
    display:inline-block;
    height: 25px;
    width: 25px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%23ffffff" d="M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z" /></svg>') no-repeat center center;
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
  }

  .sp-header-access:before{
    content:"";
    display:inline-block;
    height:25px;
    width:25px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%23ffffff" d="M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z" /></svg>') no-repeat center center;
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
  }

  .inner-footer-top > div {
    padding: 0 6vw;
    margin-bottom: 1.5em;
  }
  .box-footer-top {
    padding: 10vw 10vw 7.5vw;
    text-align: center;
  }
  .wrap-footer-nav {
    display: none;
  }
  .copyright {
    font-size: 3vw;
  }
  .sidebar {
    display: block;
  }
  .sidebar > * {
    width: auto;
  }
  .widget_nav_menu:not(:last-child),
  .box-side:not(:last-child) {
    margin-bottom: 10vw;
  }
  .list-side2 a div:nth-child(1) {
    width: 30%;
  }
  .list-side2 a div:nth-child(2) {
    width: 65%;
  }
	
  .breadcrumb{
	margin-bottom:5px;	
  }

  .index .main-visual {
    width: 100%;
	margin-bottom:0;
  }
	
  .head-page {
    padding-top: 0.5em;
    font-size: 25px;
  }
  .head-page:after {
    font-size: 12px;
  }
  .wrap-slider .slider {
    height: 75vw;
  }
  .wrap-slider .slider img {
    height: 75vw;
  }
  .section-about .wrap-btn {
    justify-content: center;
  }
  .btn-form,
  button.btn-form {
    width: 65vw;
    padding: 1em;
  }

  .pagination .pager {
    min-width: 7.5vw;
    height: 7.5vw;
    font-size: 4vw;
    line-height: 7.5vw;
  }
  .pagination .pager i:before {
    min-width: 7.5vw;
    height: 7.5vw;
    font-size: 4vw;
    line-height: 7.5vw;
  }
  .nav-link {
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .link-prev,
  .link-next,
  .link-archive {
    flex: 1;
    width: auto;
    height: 100%;
  }
  .link-prev a,
  .link-next a,
  .link-archive a {
    height: 100%;
    font-size: 12px;
  }
  .icon-question:before,
  .icon-tel:before {
    width: 4vw;
    height: 4vw;
  }
  .bg-footer {
    background: url(images/bg-footer@2x.jpg) no-repeat center top;
    background-size: 100% 55.5vw;
  }
  .bg-company {
    background: url(images/bg-works.png) no-repeat right 40% bottom;
    background-size: cover;
  }
  .bg-outline {
    background: url(images/bg-outline.jpg) no-repeat center top;
    background-size: cover;
  }
  .bg-history {
    background: url(images/bg-history.jpg) no-repeat center top;
    background-size: cover;
  }
  .bg-access {
    background: url(images/bg-access.jpg) no-repeat center top;
    background-size: cover;
  }
  .spImgFullWidth {
    display: block;
    width: 100%;
    height: auto;
  }
  #nav-open {
    top: 32px;
    right: 20px;
  }
  .table-common > tbody > tr, .table-contact > tbody > tr {
    display: flex;
	flex-flow: wrap;
    align-items: center;
    width: 100%;
  }
	
  .table-common > tbody > tr th, .table-contact > tbody > tr th,
  .table-common > tbody > tr td,
  .table-contact > tbody > tr td {
	 min-width: 8em;
    list-style-type: none;
	width: 100%;
  }
   .main-column .contact-form table th,.main-column .contact-form table td	{
		width: 100%;
		padding-left: 0;
	   background : none;
	}
	.contact table{
		margin-bottom: 1em;
	}
	form input[type="radio"]:checked + span:after{
	top: 8px;
	}
	
   .main-column .contact-form table td{
		padding-top: 0;
	}
	
  .table-common th {
    padding: 1em 0 0.5em;
  }
  .table-common tr:not(:last-of-type) > td {
    padding: 0 0 1em;
    border-bottom: 1px solid #eee;
  }
  .table-contact {
    margin-bottom: 5vw;
  }
  .table-contact th {
    padding: 1.5em 1em 0.5em;
  }
  .table-contact th.required:after {
    top: 1.5em;
    margin-right: 1em;
    font-size: 2.7vw;
  }
  .table-contact td {
    padding: 0.5em 1em 1.5em;
  }
	
  .main-column table th{
	border-bottom:none;	
    border-top:none;	
	background: #f3f3f3;
  }
	

	
  .wrap-about {
    flex-flow: row wrap;
    justify-content: center;
  }
  .wrap-about > div:nth-child(1) {
    margin-right: 0;
    margin-bottom: 3vw;
    margin-left:0;
    width:100%;
  }

	.wrap-about > div:nth-child(1) img {
    width:100%;
	}

  .wrap-about > div:nth-child(2) {
    width: 100%;
  }
  .wrap-message {
    flex-flow: row-reverse wrap;
    justify-content: center;
    padding: 5vw 2.5vw;
  }
  .wrap-message > div {
    margin: 2.5vw;
  }
  .wrap-message > div:nth-child(1) {
    width: 100%;
  }

	.main-visual .noslide{
    width: 100%;
    left: 0;
    transform: unset;
	}

	.wrap-message > div:nth-child(2){
		width: 100%;
	}
	
	.wrap-message > div:nth-child(3){
    width: 100%;
    padding:0 15%;

	}
	
	.wrap-message p{
		text-align: center;
	}
	
	.widget_media_image figure{
		width:100%!important;
	}
	
	.widget_media_image figcaption{
		width:100%;		
	}
	
	.single-post .head-common{
		font-size:6vw;
	}
	
	.mobile-tel-header a{
    letter-spacing: -0.02em;
	}



}




/*--------------------common.css--------------------*/

/*ブルースカイス入れ込みのみ用*/

.wp-block-column{
	position: relative;
}

.wp-block-column >*:first-child{
	margin-top: 0;
}

.wp-block-buttons{
	margin-top: 60px;
    position: absolute;
    bottom: 0;
    width: 100%;
}


.wp-block-button__link {
    width: 100%;
    max-width: 360px;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

.wp-block-column .wp-block-image{
  margin-bottom:20px;
}

@media screen and (max-width: 600px){
	.wp-block-column:not(:first-of-type){
	    margin-top: 0.7em;
	}
	
	.wp-block-buttons{
		margin-top: 20px;
	}
	
	.wp-block-buttons .wp-block-button{
		display: initial;
		margin: 0;
	}
	
	.main-columnc .is-style-outline .wp-block-button__link{
	    position: relative;
        max-width: unset;
        display: block;
        left: unset;
        transform: unset;
        bottom: unset;	
	}
	
}



/*ブルースカイス入れ込みのみ用ここまで*/






/* ////////////////////////////////////////
PC,SP共通
//////////////////////////////////////// */
/* 共通色指定
*************************** */
.global-nav .sub-menu > li > a,
.copyright,
.btn-contact,
.pagetop,
.category-post,
.slick-dots li.slick-active button:before,
.sp-nav,
.wpcf7-submit {
    background: #eee;
  color: #666;font-size:16px;
}

.main-slider .slick-prev:before,
.main-slider .slick-next:before {
  color: #fff;
}

.footer {
  background: #efefef;
}

/*　フッター　*/
/* カテゴリ表示の背景色 */
.bg-cate-1 {
  background: #ffae5e;
}

.bg-cate-2 {
  background: #7a5b44;
}

.bg-cate-3 {
  background: #57b7e8;
}

.bg-cate-4 {
  background: #8fc31f;
}

.bg-cate-5 {
  background: #7e2a00;
}

.bg-cate-6 {
  background: #00a29a;
}

.bg-cate-7 {
  background: #f29c97;
}

.bg-cate-8 {
  background: #9082a4;
}

.bg-cate-9 {
  background: #e6001b;
}

.bg-cate-10 {
  background: #0047cf;
}

/* カテゴリ表示の背景色 */
/* 共通色指定
*************************** */
/* ウィジェット
*************************** */
.widget_nav_menu li > a {
  padding: 1em 1em;
}

#gallery-1 .gallery-item,
#gallery-2 .gallery-item {
  margin-top: 0 !important;
  margin-bottom: 0.5em;
}

#gallery-1 .gallery-caption,
#gallery-2 .gallery-caption {
  padding: 0.5em 0;
  line-height: 1.25;
}

/* ウィジェット
*************************** */
/* 固定ページ
*************************** */
/* 見出し */
.contents-page h2,
.contents-page h3,
.contents-page h4 {
  margin-bottom: 28px;
  line-height: 1.5;
}

.contents-page h2 {
  padding: 0.5em;
  font-size: 22px;
  font-weight: bold;
}

.contents-page h3 {
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
}

.contents-page h4 {
  padding: 0.5em;
  font-size: 18px;
  font-weight: bold;
}

.contents-page h2 .mincho {
  font-size: 24px;
}

/* 見出し */
.contents-page p,
.contents-page span {
  line-height: 1.75;
}

.contents-page img {
  max-width: 100%;
  height: auto;
}

/* 固定ページ
*************************** */
/* 会社概要　
*************************** */
.gmap {
height: 0;
overflow: hidden;
    padding-bottom: 40%;
position: relative;
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}

table.table-company th {

  border:none;
}

table.table-company td {
  border:none;
}

.company-access h3{
  margin-top: 0;
}



.history {
    overflow: visible;
}

.history table tr {
    display: flex;
    line-height: 1.5;
}


.history table tr td:nth-of-type(1) {
    position: relative;
    font-weight: bold;
    min-width: 110px;
    padding: 0 1em;
}

.history table tr td:nth-of-type(2) {
    padding: 0px 1em 2em;
    position: relative;
    border-left: 1px solid #0054aa;
}

.history table tr td:nth-of-type(2):before {
    content: "";
    height: 11px;
    width: 11px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: -6px;
    background: #0054aa;
}



/* 会社概要
*************************** */
/* お問い合わせ　
*************************** */

.main-column .contact-tell{
    padding: 2em;
    border: 1px solid #ccc;
    margin-bottom: 2em;
}

.main-column .contact-tell a{
	font-size: 24px;
	font-weight: bold;
}

.main-column .contact-tell span{
    font-size: 14px;
    display: block;
	line-height: 1;
}



.contact table {
  width: 100%;
}

.contact table th,
.contact table td {
  line-height: 1.75;
}


.table-common th span{
    background: #990000;
    margin-left: 10px;
    color: #ffffff;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 5px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mw_wp_form .error {
    color: #990000;
    background: none;
    margin-left: 0;
	display: initial;
	font-size: 12px;
}


.contact-flex div{
  display: flex;
  align-items: center;
  flex-flow: column;
  margin: 80px 0;	
}

.contact-flex a{
  font-size: 32px;
  line-height: 1;
  display: block;
  margin: 15px 0;
}


/* お問い合わせ　
*************************** */
/* ////////////////////////////////////////
PC,SP共通
//////////////////////////////////////// */
/* ////////////////////////////////////////
PCのみ
//////////////////////////////////////// */

/* ////////////////////////////////////////
PCのみ
//////////////////////////////////////// */
/* ////////////////////////////////////////
SPのみ
//////////////////////////////////////// */
@media screen and (max-width: 900px), print {
.main-column .contact-tell span{
    line-height: 1.5;
}
}


@media screen and (max-width: 640px), print {

.main-column .contact-tell{
	line-height: 1.5;
    padding: 1.5em;
}

.main-column .contact-tell a {
    margin-top: 3vw;
    display: inline-block;
}	

.main-column .contact-tell span{
    margin-top: 0.5em	
}
	
}





/* ////////////////////////////////////////
SPのみ
//////////////////////////////////////// */
@media screen and (min-width: 641px), print {
  /* 会社概要　テーブル
	*************************** */

table.table-company tr:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
  }

table.table-company th {
    width: 20%;
  }
  /* 会社概要　テーブル
	*************************** */
  /* お問い合わせ　テーブル
	*************************** */
  .contact table tr {
	display: flex;
    flex-flow: wrap;
  }

  .contact table th {
    width: 20%;
    line-height: 42px;
  }
  /* お問い合わせ　テーブル
	*************************** */
}
@media screen and (min-width: 901px) {
  .nav {

    color: #666;

  }

	.nav > .contents{
		padding:5px 0;
	}


}

@media screen and (max-width: 640px){
	.h2h2{font-size:26px!important;line-height:1.5!important;}
	
/*会社概要*/

	
    .access-code > div{
        flex-flow: column-reverse;
    }
	
	.access-code > div img{
		width: 100%;
	}

    .access-code-company{
	    margin-left: 0;
	    margin-bottom: 20px;
    }
	
/*会社概要*/

/*お問い合わせ*/	
	
  .contact-flex a {
      font-size: 24px;
      padding: 0.5em 0.75em;
      border-radius: 100px;
      background: #1364b3;
      color: #fff;
      line-height: 1;
      display: block;
      margin:20px 0;
  }

/*お問い合わせ*/	
	
}

/*--------------------common.cssここまで--------------------*/
.main-column ul li{line-height:1.75;margin-bottom:28px!important;}
.h2h2{text-align:center;line-height:1.7;margin-top:56px;}
.main-column ul{margin-bottom:100px;}
.centerimg{text-align:center;margin-bottom:100px;}
.centerimg img{width:100%;max-width:600px;}
.shopbtn{margin:30px auto;}
.shopbtn a{display:block;text-align:center;letter-spacing:0.1px;
padding:15px;border:1px solid #ccc;border-radius:200px;width:300px;margin:0 auto;}

#how-to-use{background:#f7f7f9}

img{border-radius:5px;}
.icon-mail svg { fill: #ccc; }



/* ====== Front-only Transition ====== */
/* 初期：オーバーレイ（不透明な白）でページを隠し、ロゴはふわっとIN */
#page-transition{
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background:#fff;
}
#page-transition .pt-inner{ display:grid; place-items:center; }
#page-transition .pt-logo{
  width: 180px; height:auto;
  animation: pt-pop .45s ease both;  /* ふわっと現れる */
}

/* ロゴだけを1秒でふわっとOUT（背景は白のまま） */
#page-transition.pt-leave .pt-logo{
  animation: pt-fadeout 1s ease forwards;
}

/* オーバーレイ終了（瞬時に消す） */
#page-transition.pt-done{ display:none; }

/* サイト本体のフェードIN（オーバーレイが消えた後に効く） */
body.front-transition > *:not(#page-transition):not(#wpadminbar){
  opacity:0; transition: opacity .6s ease;
}
body.front-transition.site-reveal > *:not(#page-transition):not(#wpadminbar){
  opacity:1;
}

/* Keyframes */
@keyframes pt-pop{
  0%{ opacity:0; transform:scale(.96); }
  100%{ opacity:1; transform:scale(1); }
}
@keyframes pt-fadeout{
  0%{ opacity:1; transform:none; }
100%{ opacity:0; transform:translateY(0px); }
}

/* 動きを減らす設定の端末には即時表示 */
@media (prefers-reduced-motion: reduce){
  #page-transition .pt-logo{ animation:none !important; }
  #page-transition.pt-leave .pt-logo{ animation:none !important; }
  body.front-transition > *:not(#page-transition):not(#wpadminbar){ transition:none; }
}
