@charset "utf-8";

/*==========================================
 custom properties
===========================================*/

:root {
  --main-color: #0064B4; /* rgb(0,100,180) */
	--sub-color: #CCE1F1; /* rgb(204,225,241) */
  --text-color: #4B4B4B;
  --line-color: #e1e1e1; /* rgb(225,225,225) */
  --bg1-color: #f3f7fa;
  
  --bg11-color: #022873;
  --bg12-color: #034C8C;
  --bg13-color: #048ABF;
  --bg14-color: #79D0F2;
  --bg15-color: #F2F2F2;
  --bg16-color: #F4F5F7;
  
}

/*==========================================
 common
===========================================*/

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

a {
	color:#333;
	text-decoration:none;
}

a:hover {
	color:#333;
	text-decoration:underline;
}

a[href^="tel:"] {
  cursor: default;
}

.pc {
	display: none;
}

.sp {
	display: block;
}

.hidden {
  display: none;
}

@media print, screen and (min-width: 601px) {

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

}

/* reCAPTCHAの表示を消す */
.grecaptcha-badge {
	visibility: hidden !important;
}

/*==========================================
 全体
===========================================*/

html {
	font-size: 62.5%;
}

body {
	position: relative;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.4rem;
	line-height: 1.2;
  font-weight: 400;
	color: var(--text-color);
	background: #FFF;
}

#wrap {
	width: 100%;
  overflow: hidden;
	/* background: #FFF; */
}

#head_wrap {
	width: 100%;
  position: fixed;
  top: 0;
  padding: 0 10px;
  background: #fff;
  border-top: 2px solid var(--sub-color);
  border-bottom: 2px solid var(--main-color);
  z-index: 9999;
}

#head_wrap.UpMove{
  animation: UpAnime 1s forwards;
}

#head_wrap.DownMove{
  animation: DownAnime 1s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 0;
  transform: translateY(-100px);
  }
}

@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#head {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#contents_wrap {
	width: 100%;
  background: #fff;
  padding: 40px 0;
	position: relative;
	z-index: 1;
}

#contents {
	width: 100%;
  background: #fff;
  position: relative;
}

#footContact_wrap {
	width: 100%;
  background: #fff;
  position: relative;
	z-index: 1;
}

#footContact {
	width: 90%;
  padding: 40px 20px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: rgba(255, 255, 255, .8);
  border-radius: 10px;
}

#foot1_wrap {
	width: 100%;
  background: #fff;
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

#foot1 {
	width: 100%;
  padding: 0 10px;
}

#foot9_wrap {
	width: 100%;
  padding: 10px 0;
  background: var(--main-color);
  position: relative;
  z-index: 1;
}

#foot9 {
	width: 100%;
  padding: 0 10px;
  text-align: center;
  color: #fff;
}

@media print, screen and (min-width: 601px) {

  #wrap {
    width: 1200px;
    margin: 0 auto;
  }

  #head_wrap {
    width: 1200px;
    margin: 0 auto;
  }

  #head {
    width: 1180px;
    height: 76px;
    margin: 0 auto;
  }

  #contents_wrap {
   padding: 40px 0;
  }
  
  #contents {
  }

  #footContact_wrap {
  }

  #footContact {
    width: 600px;
    margin: 0 auto;
    padding: 60px 40px 40px;
  }

  #foot1_wrap {
  }

  #foot1 {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  #foot9 {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  
}

@media print, screen and (min-width: 1201px) {

  #wrap {
    width: 100%;
  }

  #head_wrap {
    width: 100%;
  }

}

/*==========================================
 ヘッダーのスタイル
===========================================*/

#head .logo {
  width: 80%;
	max-width: 200px;
}

#head .logo img {
	width: 100%;
	height: auto;
}


@media print, screen and (min-width: 601px) {

  #head .logo {
    width: 260px;
    max-width: none;
  }
  
}

/*==========================================
 gNav
===========================================*/

#gNav {
  position: fixed;
  right: -320px;
  top: 0;
  width: 300px;
  height: 100vh;
  padding-top: 60px;
  background: #fff;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto;
  border-top: 2px solid var(--line-color);
  border-bottom: 2px solid var(--line-color);
}

.hamburger {
  position: absolute;
  right: 0;
  top: 16px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 300;
}

.hamburger_border {
  position: absolute;
  left: 0;
  width: 28px;
  height: 4px;
  background-color: #333;
  transition: all .6s;
}

.hamburger_border_top {
  top: 0;
}

.hamburger_border_center {
  top: 10px;
}

.hamburger_border_bottom {
  top: 20px;
}

.black_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}

.nav-open #gNav {
  right: 0;
}

.nav-open .black_bg {
  opacity: .8;
  visibility: visible;
}

.nav-open .hamburger_border_top {
  transform: rotate(45deg);
  top: 10px;
}

.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_border_bottom {
  transform: rotate(-45deg);
  top: 10px;
}

.gNavList {
  margin-bottom: 40px;
  text-align: center;
}

.gNavList li {
}

.gNavList li a {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  padding: 20px 35px;
  transition: all .5s;
  position: relative;
	border-bottom: 1px solid var(--line-color);
}

#gNav .btnContact {
  width: 200px;
  margin: 0 auto;
  text-align: center;
}

#gNav .btnContact a {
  display: block;
  padding: 10px 2em;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  border-radius: 100vh;
  transition: all 0.5s;
}

#gNav .btnContact a:hover {
	color: var(--main-color);
  background: #fff;
}

@media print, screen and (min-width: 601px) {
  
  #gNav {
    position: static;
    width: auto;
    height: auto;
    padding-top: 0;
    background-color: transparent;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    border-top: none;
    border-bottom: none;
    text-align: left;
  }

  .gNavList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 0;
  }
  
  .gNavList li {
  }

  .gNavList li a {
    font-size: 1.4rem;
    border-bottom: none;
    padding: 14px 20px;
    position: relative;
    overflow: hidden;
    color: transparent;
    text-shadow: 0 2.5em 0 var(--main-color), 0 0 0 var(--text-color);
    transition: text-shadow 0.3s;
  }
  
  .gNavList li a:hover,
  .construction .gNavList li.linkConstruction a,
  .real-estate .gNavList li.linkReal-estate a,
  .company .gNavList li.linkCompany a,
  .recruit .gNavList li.linkRecruit a {
    text-shadow: 0 0 0 var(--main-color), 0 -2.5em 0 var(--text-color);
  }
  
  .gNavList li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--main-color);
    border-radius: 50%;
    transition: all .5s;
    opacity: 0;
  }

  .gNavList li a:hover::before,
  .construction .gNavList li.linkConstruction a::before,
  .real-estate .gNavList li.linkReal-estate a::before,
  .company .gNavList li.linkCompany a::before,
  .recruit .gNavList li.linkRecruit a::before {
    opacity: 1;
  }

  #gNav .btnContact {
    width: auto;
    margin: 0;
  }
  
}

/*==========================================
 ページトップへボタンのスタイル
===========================================*/

#iconPageTop {
  position: fixed;
  bottom: 80px;
  right: 10px;
	z-index: 10;
}

#iconPageTop a {
	width: 55px;
	height: 55px;
	line-height: 55px;
	background: rgba(0,100,180,0.8);
	color: #FFF;
	display: block;
	text-align: center;
	transition: all 0.5s;
  border-radius: 4px;
}

#iconPageTop a i {
  font-size: 1.8rem;
}

#iconPageTop a:hover {
	opacity: 0.8;
}

@media print, screen and (min-width: 601px) {

  #iconPageTop {
    bottom: 60px;
  }

}

/*==========================================
 フッターコンタクト
===========================================*/

.bg_contactImage {
  width: 100%;
}

.contactImage {
  position: relative;
}

.contactImage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contactImage img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: bottom center;
}

#footContact .sectionTitle1 {
  margin-bottom: 0.8em;
}

#footContact .sectionTitle1Jp {
  text-align: center;
}

#footContact .sectionTitle1En {
  left: 50%;
  transform: translateX(-50%);
}

#footContact .sectionDesc {
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}

#footContact .btnContact {
  width: 90%;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
}

#footContact .btnContact a {
  display: block;
  padding: 10px 2em;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
	color: #fff;
  background: var(--main-color);
  text-decoration: none;
  border: 1px solid var(--main-color);
  border-radius: 100vh;
  transition: all 0.5s;
}

#footContact .btnContact a:hover {
  background: #fff;
  color: var(--main-color);
}

@media print, screen and (min-width: 601px) {

  .contactImage img {
    height: 600px;
  }

  #footContact .sectionTitle1 {
    margin-bottom: 20px;
  }
  
  #footContact .sectionDesc {
    font-size: 1.6rem;
  }

}

/*==========================================
 フッターのスタイル
===========================================*/

#foot1 .profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

#foot1 .profile .logo {
  width: 140px;
  margin: 0 auto 20px;
}

#foot1 .profile .logo img {
  width: 100%;
  height: auto;
}

#foot1 .profile .name {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

#foot1 .profile .adrs {
  font-size: 1.2rem;
  line-height: 1.4;
}


#foot1 #fNav {
	width: 100%;
  text-align: center;
	border-top: 2px solid var(--line-color);
	border-bottom: 2px solid var(--line-color);
}

#foot1 #fNav ul {
}

#foot1 #fNav ul li {
  position: relative;
}

#foot1 #fNav ul li a {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  line-height: 50px;
  height: 50px;
  text-decoration: none;
	border-bottom: 1px solid var(--line-color);
  transition: all .3s;
}

#foot1 #fNav ul li a:hover {
  color: var(--main-color);
}

#foot9 .linkPrivacy {
  margin-bottom: 1em;
}

#foot9 .linkPrivacy a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: #fff;
  text-decoration: none;
  transition: all .5s;
}

#foot9 .linkPrivacy a:hover {
  color: var(--sub-color);
}

#foot9 .copyright {
  font-size : 1.0rem;
  line-height : 1.0;
}

@media print, screen and (min-width: 601px) {

  #foot1 .profile {
  }

  #foot1 .profile .logo {
    width: 180px;
  }

  #foot1 .profile .name {
    font-size: 1.8rem;
  }

  #foot1 .profile .adrs {
    font-size: 1.4rem;
  }

  #foot1 #fNav {
    width: auto;
    text-align: left;
    border-top: none;
    border-bottom: none;
  }

  #foot1 #fNav ul {
    display: flex;
    justify-content: center;
  }

  #foot1 #fNav ul li {
    margin-right: 40px;
  }

  #foot1 #fNav ul li:last-of-type {
    margin-right: 0;
  }

  #foot1 #fNav ul li a {
    font-size: 1.4rem;
    line-height: 1.3;
    text-decoration: none;
    border-bottom: none;
    padding: 0;
    height: auto;
  }

  #foot9 .linkPrivacy {
    margin-bottom: 0;
  }

  #foot9 .linkPrivacy a {
    font-size : 1.2rem;
  }

  #foot9 .copyright {
    font-size : 1.2rem;
  }
  
}

/*==========================================
 ページタイトルのスタイル
===========================================*/

#contentsHead_wrap {
  width: 100%;
  padding: 0 20px;
  background-image: linear-gradient(#0056A8, #092479);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(var(--bg13-color), var(--bg12-color));
}

#contentsHead {
  width: 100%;
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

#contentsHead::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 100px;
  height: 100px;
  background-image: url('../images/logo_bg.svg');
  background-size: contain;
  opacity: 0;
  animation: anim_contentsHead 2s 1.5s ease-out forwards ;
}

#contentsHead::after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 180px;
  height: 180px;
  background-image: url('../images/logo_bg.svg');
  background-size: contain;
  opacity: 0;
  animation: anim_contentsHead 2s 2.0s ease-out forwards ;
}

@keyframes anim_contentsHead {
  0% {
    transform: scaleY(3) scaleX(3) translate(-300px, -100px) rotate(0);
  }
  100% {
    opacity: .6;
    transform: scaleY(1) scaleX(1) translate(0, 0) rotate(10deg);
  }
}

#contentsHeadTitle {
  width: 100%;
  position: relative;
  z-index: 1;
}

#contentsHeadTitle .contentsTitleJp {
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: #fff;
  text-align: center;
  padding: 6px 0;
  position: relative;
  animation: anim_contentsTitleJp 1s 1s ease-out forwards;
  opacity: 0;
}

#contentsHeadTitle .contentsTitleEn {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 5.0rem;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .2);
  z-index: -1;
  animation: anim_contentsTitleEn1 1s 0s ease-out forwards;
  opacity: 0;
}

@keyframes anim_contentsTitleJp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes anim_contentsTitleEn1 {
  from {
    bottom: -120px;
    opacity: 1;
  }
  to {
    bottom: -13px;
    opacity: 1;
  }
}

@keyframes anim_contentsTitleEn2 {
  from {
    bottom: -120px;
    opacity: 1;
  }
  to {
    bottom: -30px;
    opacity: 1;
  }
}

@media print, screen and (min-width: 601px) {

  #contentsHead_wrap {
  }

  #contentsHead {
    width: 1200px;
    height: 300px;
    margin: 0 auto;
    padding: 0 20px;
  }

  #contentsHead::before {
    right: -40px;
    bottom: -60px;
    width: 350px;
    height: 350px;
  }
  
  #contentsHead::after {
    left: 0;
    top: -150px;
    width: 500px;
    height: 500px;
  }

  #contentsHeadTitle {
  }

  #contentsHeadTitle .contentsTitleJp {
    padding: 14px 0;
    font-size: 3.0rem;
  }

  #contentsHeadTitle .contentsTitleEn {
    font-size: 12.0rem;
    animation: anim_contentsTitleEn2 1s 0s ease-out forwards;
  }

}

/*==========================================
 ページ概要のスタイル
===========================================*/

.contentsOverviewBlock  {
  width: 100%;
  padding: 40px 10px;
  animation: fadeUpAnime 1s .5s ease-out forwards;
  opacity: 0;
}

.contentsOverviewBlock .heading {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
  border-top: 2px solid var(--sub-color);
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 2em;
  padding: .5em .2em;
}

.contentsOverviewBlock .heading span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: .66em;
  letter-spacing: .02em;
  color: var(--main-color);
  margin-bottom: 0.2em;
}

.contentsOverviewBlock .textBlock {
  padding: 0 10px;  
}

.contentsOverviewBlock .textBlock .title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--main-color);
  text-align: center;
}

.contentsOverviewBlock .textBlock .text {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: justify;
  margin-top: 10px;
}

.contentsOverviewBlock .textBlock .desc {
  font-size: 1.3rem;
  line-height: 2.0;
  letter-spacing: .04em;
  text-align: justify;
}

.contentsOverviewBlock .textBlock .note {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 20px;
}

@media print, screen and (min-width: 601px) {

  .contentsOverviewBlock {
    width: 700px;
    margin: 0 auto;
    padding: 80px 20px;
  }

  .contentsOverviewBlock .heading {
    font-size: 2.2rem;
  }

  .contentsOverviewBlock .textBlock {
    padding: 0 20px;  
  }

  .contentsOverviewBlock .textBlock .title {
    font-size: 1.8rem;
  }

  .contentsOverviewBlock .textBlock .text {
    font-size: 1.5rem;
  }

  .contentsOverviewBlock .textBlock .desc {
    font-size: 1.6rem;
    text-align: center;
  }

  .company .contentsOverviewBlock .textBlock .desc,
  .privacy .contentsOverviewBlock .textBlock .desc {
    text-align: justify;
  }

  .contentsOverviewBlock .textBlock .note {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 80px;
  }

}

/*==========================================
 section
===========================================*/

.section_wrap {
	width: 100%;
}

.section_wrap .section {
  width: 100%;
  padding: 40px 10px;
}

.section_wrap .section .sectionHead {
  padding: 0 10px;
  margin-bottom: 40px;
}

.section_wrap .section .sectionHead .sectionTitle {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 1em;
  position: relative;
}

.section_wrap .section .sectionHead .sectionTitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--main-color);
  border-radius: 50%;
}

.section_wrap .section .sectionHead .sectionDesc {
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: center;
  margin-top: 3em;
}
  
@media print, screen and (min-width: 601px) {

  .section_wrap {
    width: 1200px;
  }

  .section_wrap .section {
    width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
  }

  .section_wrap .section .sectionHead .sectionTitle {
    font-size: 2.4rem;
  }

  .section_wrap .section .sectionHead .sectionDesc {
    font-size: 1.6rem;
  }
	
}

@media print, screen and (min-width: 1201px) {

  .section_wrap {
    width: 100%;
  }

}

/*------------------------------------------------
   コンテンツナビ
------------------------------------------------*/

.contentsNavText {
}

.contentsNavText .contentsNavTitle {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-top: 2px solid var(--sub-color);
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 1em;
  padding: .5em .2em;
}

.contentsNavText .contentsNavTitle span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: .66em;
  letter-spacing: .02em;
  color: var(--main-color);
  margin-bottom: 0.2em;
}

.contentsNavText .contentsNavDesc {
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: justify;
}

.contentsNavText .contentsNavBtn {
  margin-top: 1em;
}

@media print, screen and (min-width: 601px) {

  .contentsNavText {
  }

  .contentsNavText .contentsNavTitle {
    font-size: 2.0rem;
  }

  .contentsNavText .contentsNavDesc {
    font-size: 1.5rem;
  }
  
  .contentsNavText .contentsNavBtn {
  }

}

/*==========================================
 共通部品
===========================================*/

.sectionTitle1 {
  position: relative;
  z-index: 0;
}

.sectionTitle1 .sectionTitle1Jp {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
}

.sectionTitle1.col1 .sectionTitle1Jp {
  color: var(--main-color);
}

.sectionTitle1.col2 .sectionTitle1Jp {
  color: #fff;
}

.sectionTitle1 .sectionTitle1En {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 4.6rem;
  position: absolute;
  top: -0.52em;
  z-index: -1;
  
  clip-path: inset(0 100% 0 0);
  display: inline-block;
}

.sectionTitle1.col1 .sectionTitle1En {
  color: var(--sub-color);
}

.sectionTitle1.col2 .sectionTitle1En {
  color: rgba(255,255,255,.2);
}

.sectionTitle1.scrollin .sectionTitle1En {
    animation: textAnimation 1s .5s forwards;
}

@keyframes textAnimation {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0);
    }
}

@media print, screen and (min-width: 601px) {

  .sectionTitle1 .sectionTitle1Jp {
    font-size: 2.4rem;
  }

  .sectionTitle1 .sectionTitle1En {
    font-size: 6.4rem;
  }

}

/* moreBtn */

.moreBtn {
	position: relative;
  display: inline-block;
	padding: 0 0 0 1em;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6rem;
	line-height: 40px;
  letter-spacing: .04em;
  text-decoration: none;
  outline: none;
  z-index: 0;
}

.moreBtn.col1 {
  color: var(--main-color);
}

.moreBtn.col2 {
  color: #fff;
}

.moreBtn::before{
	content: '';
	position: absolute;
	left: 0;
	z-index: -1;
	width: 40px;
	height: 40px;
	border-radius: 20px;
  transition: .3s ease-out;
}

.moreBtn.col1::before{
	background: var(--sub-color);
}

.moreBtn.col2::before{
	background: rgba(255, 255, 255, .2);
}

a:hover .moreBtn::before{
	width: 130px;
}

.moreBtn::after{
	position: absolute;
  content: '';
  top: 1em;
  right: -15px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
}

.moreBtn.col1::after{
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
}

.moreBtn.col2::after{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media print, screen and (min-width: 601px) {

}

/* btnBanner */

.btnBanner {
  width: 100%;
  border: 5px solid var(--sub-color);
}

.btnBanner a {
  text-decoration: none;
  display: flex;
  flex-direction: column-reverse;
  transition: all 0.5s;
}

.btnBanner .textBlock {
  text-align: center;
  color: #fff;
  background: var(--main-color);
  padding: 2em 0;
  margin-top: 2px;
}

.btnBanner .textBlock .bannerTitle {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  margin-bottom: 15px;
}

.btnBanner .textBlock .bannerDesc {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.btnBanner .textBlock .bannerBtn {
  width: 200px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 2em;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--main-color);
  background: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.btnBanner .image {
  width: 100%;
  height: auto;
}

.btnBanner .image img {
  width: 100%;
  height: auto;
}

.btnBanner a:hover {
  opacity: 0.8;
}

@media print, screen and (min-width: 601px) {

  .btnBanner {
  }

  .btnBanner a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .btnBanner .textBlock {
    width: 302px;
    padding: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .btnBanner .textBlock .bannerTitle {
    font-size: 2.2rem;
  }
  
  .btnBanner .textBlock .bannerDesc {
    font-size: 1.5rem;
  }

  .btnBanner .image {
    width: 524px;
  }
  
}

/* postNav */

.postNavi {
  display: flex;
  justify-content: center;
  align-items: center;
}

.postNavi .prev,
.postNavi .next {
}

.postNavi .linkArchive {
  margin: 0 40px;
}

.postNavi .prev a,
.postNavi .next a,
.postNavi .linkArchive a {
  font-size : 1.5rem;
  font-weight: 500;
  letter-spacing : 0.1em;
  text-decoration: none;
  transition: all 0.5s;
}

.postNavi .prev a i,
.postNavi .next a i {
  font-size: 1.5em;
  vertical-align: middle;
}

.postNavi .prev a:hover,
.postNavi .next a:hover,
.postNavi .linkArchive a:hover {
  color: var(--main-color);
}

@media print, screen and (min-width: 601px) {
  
}

/* wp-pagenavi */

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size : 1.7rem;
	margin: 0 6px;
  transition: all 0.5s;
	text-decoration: none;
}

.wp-pagenavi a i {
  font-size: 1.5em;
}

.wp-pagenavi a:hover {
  color: var(--sub-color);
}

.wp-pagenavi span.current{
  color: var(--sub-color);
}

@media print, screen and (min-width: 601px) {
  
}

/* ctgrySelect */

#ctgrySelect {
	margin-bottom: 40px;
}

#ctgryMenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#ctgryMenu li.cat-item-all,
#ctgryMenu li.cat-item {
	width: calc((100% - 10px) / 2);
  margin-bottom: 10px;
}

#ctgryMenu li:not(:nth-child(2n)) {
  margin-right: 10px;
}

#ctgryMenu li a {
  display: block;
  padding: 6px 0;
	font-size: 1.2rem;
	line-height: 1.5;
  text-align: center;
  color: var(--main-color);
  border: 1px solid var(--sub-color);
  text-decoration: none;
  background: #fff;
	transition: all 0.5s;
}

.post-type-archive #ctgryMenu li.cat-item-all a,
#ctgryMenu li.current-cat a {
  color: var(--main-color);
  background: var(--sub-color);
  pointer-events: none;
}

#ctgryMenu li a:hover {
  color: var(--main-color);
  background: var(--sub-color);
}

@media print, screen and (min-width: 601px) {

  #ctgrySelect {
    margin-bottom: 0;
  }

  #ctgryMenu {
    justify-content: center;
  }

  #ctgryMenu li.cat-item-all,
  #ctgryMenu li.cat-item {
    width: 148px;
  }

  #ctgryMenu li:not(:nth-child(2n)) {
    margin-right: 0;
  }

  #ctgryMenu li:not(:nth-child(5n)) {
    margin-right: 10px;
  }

  #ctgryMenu li a {
    font-size: 1.5rem;
  }

}

/*==========================================
 animation
===========================================*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.fadeIn{
  animation-name: fadeInAnime;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
}

.fadeDown{
  animation-name:fadeDownAnime;
  animation-duration: 1.0s;
  animation-fill-mode:forwards;
  animation-timing-function: ease-out;
  opacity:0;
}

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration: 1.0s;
  animation-fill-mode:forwards;
  animation-timing-function: ease-out;
  opacity:0;
}

.fadeRight{
  animation-name:fadeRightAnime;
  animation-duration: 1.0s;
  animation-fill-mode:forwards;
  animation-timing-function: ease-out;
  opacity:0;
}


.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

.delay10 {
  animation-delay: 1.0s;
}

.delay20 {
  animation-delay: 2.0s;
}

.delay30 {
  animation-delay: 3.0s;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-50px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-50px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(50px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 印刷 */

@media print{

  body {
    width: 1200px;
  }

  #head_wrap {
    position: relative;
  }

  #btnPageTop {
    display: none;
  }
  
  .fadeInTrigger,
  .fadeUpTrigger,
  .fadeDownTrigger,
  .fadeLeftTrigger,
  .fadeRightTrigger {
    opacity: 1;
  }

}
