@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

body.noscroll{
  overflow: hidden;
}
.wrap {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.serif {
  font-family: 'Noto Serif JP', serif;
}
.sans {
  font-family: 'Noto Sans JP', sans-serif;
}

.kage {
  text-shadow: 3px 1px 2px rgba(0,0,0,0.5);
}

img{max-width:100%;}
/*------------------------------------------*/
/*row custom*/
/*------------------------------------------*/
.row-0{ margin-left:0px;  margin-right:0px}
.row-0 >div{ padding-right:0px;  padding-left:0px}
.row-0 >article{ padding-right:0px;  padding-left:0px}
.row-10{ margin-left:-5px;  margin-right:-5px}
.row-10 >div{ padding-right:5px;  padding-left:5px}
.row-10 >article{ padding-right:5px;  padding-left:5px}
.row-15{ margin-left:-7.5px;  margin-right:-7.5px}
.row-15 >div{ padding-right:7.5px;  padding-left:7.5px}
.row-15 >article{ padding-right:7.5px;  padding-left:7.5px}
.row-20{ margin-left:-10px;  margin-right:-10px}
.row-20 >div{ padding-right:10px;  padding-left:10px}
.row-20 >article{ padding-right:10px;  padding-left:10px}
.row-30{ margin-left:-15px;  margin-right:-15px}
.row-30 >div{ padding-right:15px;  padding-left:15px}
.row-30 >article{ padding-right:15px;  padding-left:15px}

@media (max-width: 767.888px){
	.row-20{ margin-left:-5px;  margin-right:-5px}
	.row-20 >div{ padding-right:5px;  padding-left:5px}
	.row-20 >article{ padding-right:5px;  padding-left:5px}
	.row-30{ margin-left:-5px;  margin-right:-5px}
	.row-30 >div{ padding-right:5px;  padding-left:5px}
	.row-30 >article{ padding-right:5px;  padding-left:5px}
}
@media (max-width: 575.98px) {
	.row-15{ margin-left:-5px;  margin-right:-5px}
	.row-15 >div{ padding-right:5px;  padding-left:5px}
}

/* ========================================================== 
  header
============================================================*/
header {
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  z-index: 10;
  position: absolute;
  top: 0;
  width: 100%;
}

header.fixed{
  position: fixed;
}

header.fixed.bk{
  position: fixed;
  background:rgba(19,117,195,.8)
}


.logo {
  width: 20%;
  z-index: 30;
}
.logo img {
  width: 65%;
  min-width: 177px;
}
nav {
  width: 77%;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
nav ul li {
  margin-right: 30px;
  position:relative;
}
nav ul li:nth-child(5) {
  margin-right: 30px;
}
nav ul li:nth-child(6) {
  margin-right: 0;
  width: 5%;
}
nav ul li a {
  font-size: 14px;
  color: #fff;
/*  font-family: 'Montserrat', sans-serif;*/
  font-weight: 600;
  letter-spacing: 1px;
}
nav ul li span{
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 1.8em;
}


.mail img {
  width: 65%;
  min-width: 30px;
}

/* ========================================================== 
  SP menu
============================================================*/
@media screen and (max-width: 1024px) {
  .toggle {
    display: block;
    top: 1.5%;
    right: 3%;
    width: 46px;
    height: 45px;
    cursor: pointer;
    position: fixed;
    z-index: 11111;
  }
  .toggle:before {
    content: '';
    position: absolute;
    top: 9px;
    right: 9px;
    width: 70%;
    height: 2px;
    background: #fff;
    z-index: 1111;
    transition: 0.5s;
    cursor: pointer;
  }
  .toggle:after {
    content: '';
    position: absolute;
    top: 17px;
    right: 9px;
    width: 70%;
    height: 2px;
    background: #fff;
    z-index: 1111;
    transition: 0.5s;
    cursor: pointer;
  }
  .toggle span {
    position: absolute;
    top: 30px;
    left: 6px;
    color: #fff;
    font-size: 10px;
    font-weight: 300;
    font-family: 'Noto Serif JP', serif;
  }
  .toggle span:after {
    content: "menu";
    position: absolute;
    top: -5px;
  }
  .toggle.active:before {
    transform: rotate(45deg);
    box-shadow: 0 0 0 #fff;
    transform: translateY(4px) rotate(-45deg);
  }
  .toggle.active:after {
    transform: translateY(-7px) rotate(45deg);
  }
  .toggle.active span:after {
    content: "close";
    position: absolute;
    left: 2px;
  }
  header nav {
    height: 100vh;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 20;
    width: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    visibility: hidden;
    text-align: left;
    display: inline-block;
    flex-direction: column;
    justify-content: center;
    padding: 100px 40px 50px;
    background: #1b96d2;
  }
  header nav.active {
    right: 0;
    opacity: 1;
    transform: translateX(100%);
    visibility: visible;
    position: fixed;
  }
  header nav ul {
    flex-direction: column;
    align-items: unset;
  }
  header nav li {
    margin-right: 0;
    margin-bottom: 30px;
    position: relative;
  }
  nav ul li:nth-child(5) {
    margin-right: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #fff;
  }
  header nav li a {
    font-size: 14px;
    color: #fff;
  }
  .toggle.active:before {
    transform: translateY(1px) rotate(-45deg);
  }
}

@media screen and (max-width: 420px) {
  header {
    padding: 0 10px;
    height: 50px;
  }
  .logo img {
      width: 65%;
      min-width: 130px;
  }
  .toggle {
    width: 25px;
  }
  .toggle:after {
    top: 18px;
  }
  .toggle span {
    top: 24px;
    left: -6px;
    font-size: 8px;
    font-weight: 100;
  }
}

/* ========================================================== 
  top Swiper
============================================================*/
.swiper-container {
  width: 100%;
  height: 60vw;
}
@media screen and (min-width: 768px) {
	.swiper-container {
	  margin-top:79.5px !important;
	}
}


.swiper-wrapper {
  width: 100%;
}
.swiper-slide.slide01 {
  background: url(../img/head01.jpg)no-repeat;
  background-size: cover;
  background-position: center center;
  height: 60vw;
  position: relative;
}
.swiper-slide.slide02 {
  background: url(../img/head03.jpg)no-repeat;
  background-size: cover;
  background-position: center center;
  height: 60vw;
  position: relative;
}
.swiper-slide.slide03 {
  background: url(../img/head02.jpg)no-repeat;
  background-size: cover;
  background-position: center center;
  height: 60vw;
  position: relative;
}

.copy {
  width: 96%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-weight:900;
}
.copy img {
  width: 100%;
}
.copy h1{
	color:#FFF;
	font-size:8vW;
	text-align:center;
	line-height:1.2;
}
.copy h3{
	color:#FFF;
	font-size:2.8vW;
	text-align:center;
	line-height:1.3;
	margin-top:1em;
	letter-spacing:2px;
}



@media screen and (max-width: 420px) {
  .swiper-container {
    height: 90vh;
  }
  .swiper-slide.slide01 {
    height: 90vh;
    background-position-x: 60%;
  }
  .swiper-slide.slide02 {
    height: 90vh;
  }
  .swiper-slide.slide03 {
    height: 90vh;
  }
  .copy {
	  top: 50%;
  }
}

/* ========================================================== 
  concept-01
============================================================*/
.concept-01 {
  width: 100%;
  background: url(../img/haikei01.jpg)no-repeat;
  background-size: cover;
}
.container.pad {
  padding: 70px 50px;
}
.concept-layoutBox {
  width: 100%;
  display: flex;
  align-items: center;
}
.block-left {
  width: 45%;
  margin: 0 auto;
  text-align:center;
}
.block-left img {
  width: 100%;
}
.block-right {
  width: 45%;
  margin: 0 auto;
  text-align:center;
}
.block-right img {
  width: 100%;
}
.btn {
  width:100%;
  max-width:300px;
  position: relative;
  margin: 0 auto;
  text-align: center;
  background: #1b96d2;
  margin-top: 20px;
  border-radius:5px;
}
.btn a {
  display: inline-block;
  padding: 10px 20px 12px;
  color: #fff;
  font-size: 18px;
  font-family: 'Noto Serif JP', serif;
  positition:relative;
}
.btn a::before {
  z-index: 1;
  content: "";
  line-height: 43px;
  color: #fff;
  pointer-events: none;
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid#fff;
  transform: rotate(-45deg);
  position:absolute;
  top: 24px;
  right: 1em;
}


.concept-btn a{
	font-size:16px;
}

.btn.btn-syomei{
    background: #E01A2B;
    margin: 2em auto 0;
    display: block;
    border-radius: 30px;
}

.btn-syomei a{
	padding: 2px 10px 2px  !important;
}
.btn-syomei a::before{top: 1em !important; }


@media screen and (max-width: 768px) {
  .container.pad {
    padding: 10% 20px;
  }
  .btn a {
    font-size: 16px;
  }
  .btn::before {
    left: 28%;
    width: 7px;
    height: 7px;
  }
  .serif {
    font-size: 14px;
  }
}

@media screen and (max-width: 700px) {
  .concept-layoutBox {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
  .block-left {
    width: 95%;
    margin: 0 auto 60px;
  }
  .block-right {
    width: 95%;
    margin: 0 auto;
    margin: 0 auto 20%;
  }
  .btn {
    width: 100%;
    margin-top: 40px;
  }
  .btn a {
    display: inline-block;
    padding: 15px 50px 17px;
  }
  .btn::before {
    left: 43%;
    top: 46%;
  }
  .btn a::before{
    top: 1.83em;
  }

}

@media screen and (max-width: 530px) {
  .btn::before {
      left: 40%;
  }
}

@media screen and (max-width: 420px) {
  .btn::before {
      left: 39%;
      top: 45%;
  }
}

@media screen and (max-width: 376px) {
  .btn::before {
    left: 38%;
  }
}

.syomei-left,
.syomei-right{
    width: 100%;
    text-align: center;
}
@media screen and (min-width: 768px) {
	.syomei-left{
	    width: 45%;
	}
	.syomei-right{
	    width: 45%;
	}
}
.qrsize{max-width:220px;display:inline-block}



/* ========================================================== 
  concept-02
============================================================*/
.concept-02 {
  width: 100%;
  background: url(../img/haikei02.jpg)no-repeat;
  background-size: cover;
  padding: 50px 0;
  margin-top: -6px;
}
.concept-02 .block-right {
  width: 48%;
}
.serif {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 2px;
  color: #053b61;
  font-weight: 600;
}
.pd30 {
  padding: 30px 0;
}
.concept-02 .btn a::before {
  top: 45%;
}

@media screen and (max-width: 768px) {
  .serif {
    font-size: 14px;
  }
}

@media screen and (max-width: 700px) {
  .concept-02 {
    padding: 0;
  }
  .concept-02 .concept-layoutBox {
    flex-direction: column;
  }
  .concept-02 .block-right {
    width: 95%;
  }
}

@media screen and (max-width: 420px) {
  .serif {
    font-size: 13px;
  }
}

/* ========================================================== 
  effect-01
============================================================*/
.effect-01 {
  padding: 50px 0;
  background: url(../img/haikei03.jpg)no-repeat;
  background-size: cover;
  background-position-y: 3%;
}
.effect-copy {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  padding: 0 50px;
}
.ttl {
  font-size: 42px;
  letter-spacing: 1px;
  color: #0099d7;
  font-weight: 900;
}
.effect-txt {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  color: #000005;
  letter-spacing: 1px;
  padding: 30px 0 60px;
}
.effect-layoutBox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position:relative;
  z-index: 1;
}
.effect-block-left {
  position: relative;
  z-index: 10;
  width: 50%;
}
.effect-block-left img {
  width: 100%;
}
.block-stack {
  width: 100%;
  height: 300px;
  height: 21.5vw;
  max-height: 310px;
  background: #d2eff7;
  position: absolute;
  top: 34%;
  left: 15%;
  z-index: -1;
}
.block-ttl {
  color: #1e96d3;
  font-size: 3vw;
  font-weight: 700;
}
.block-txt {
  font-size: 1.3vw;
  line-height: 1.5;
  font-weight: 400;
}
.effect-block-right {
  width: 45%;
  z-index: 20;
  margin: 0 auto;
}
.effect-block-right img {
  width: 100%;
}
.industry-btn {
  margin: 20px 0 0;
  background: #1b96d2;
  position: relative;
}

.col-red{color:#E01A2B}


@media screen and (max-width: 768px) {
  .effect-copy {
    padding: 0 20px;
  }
  .ttl {
    font-size: 32px;
  }
  .effect-txt {
    font-size: 17px;
  }
}

@media screen and (max-width: 700px) {
  .bp700-off {
    display: none;
  }
  .bp700-on {
    display: block;
  }
  .effect-copy {
    padding: 0 35px;
  }
  .ttl {
    font-size: 30px;
  }
  .effect-txt {
    font-size: 15px;
    text-align: left;
  }
  .effect-layoutBox {
    flex-direction: column;
  }
  .effect-block-left {
    width: 95%;
  }
  .block-stack {
    height: 42vw;
    max-height: 100%;
    top: 28%;
    left: 5%;
  }
  .effect-block-right {
    width: 95%;
  }
  .block-ttl {
    font-size: 28px;
  }
  .block-txt {
    font-size: 15px;
  }
  .industry-btn {
    margin-top: 30px;
  }
}

@media screen and (max-width: 420px) {
  .ttl {
    font-size: 28px;
    text-align: left;
    line-height: 1.5;
  }
  .tourism-right {
    padding-left: 0;
  }
  .industry-btn:before {
      top: 46%;
  }
}

@media screen and (max-width: 376px) {
.industry-btn:before {
    top: 46%;
  }
}

/* ========================================================== 
  effect-02
============================================================*/
.effect-02 {
  margin-top: 20px;
}
.tourism {
  flex-direction: row-reverse;
}
.tourism-stack {
  left: -50%;
}
.turquoise {
  color: #4ebac4;
}
.tourism-btn {
  background: #4cbcbe;
  margin: 20px 0 0;
}
.tourism-stack {
  background: #c5eaf3;
}
.tourism-right {
  padding-left: 20px;
}

@media screen and (max-width: 700px) {
  .effect-02 {
    margin: 40px 0;
  }
  .tourism {
    flex-direction: column;
  }
  .tourism-stack {
    left: -5%;
  }
  .tourism-btn {
    margin: 40px 0 0;
  }
}

@media screen and (max-width: 420px) {
  .tourism-right {
    padding-left: 0;
  }
.tourism-btn:before {
    left: 39%;
  }
}

@media screen and (max-width: 376px) {
  .tourism-btn:before {
    left: 38%;
  }
}

/* ========================================================== 
  effect-03
============================================================*/
.effect-03 {
  margin: 60px 0;
}
.coral {
  color: #ee85a4;
}
.disaster-stack {
  background: #fcf0fc;
}
.disaster-btn {
  margin: 20px 0 0;
  background: #ee86a7;
}

@media screen and (max-width: 700px) {
  .effect-03 {
    margin: 100px 0;
  }
  .disaster-btn {
    margin: 40px 0 0;
  }
}

@media screen and (max-width: 420px) {
  .disaster-btn:before {
    top: 46%;
  }
}

/* ========================================================== */
/* HISTORY */
/* ========================================================== */
.seireki{font-size:12px;font-weight:bold}
.seireki::before{
	content:"(";
}
.seireki::after{
	content:")";
}

.daihyo{font-size:12px;display:block}
.daihyo::before{
	margin-top:.5em;
	content:"(当時の代表幹事)";
	display:block;
}
.daihyo.last::before{
	margin-top:.5em;
	content:"(現代表幹事)";
	display:block;
}


.histable td br{
 display: block;
 content: "";
 margin: 6px 0;
}






/* ========================================================== 
  PC footer
============================================================*/
.pc-footer {
  padding: 30px 30px;
  background: #1b96d2;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  display: grid;
  justify-content: center;
}
.footer-top {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.fz17 {
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 400;
}
.fz21 {
  font-size: 21px;
  font-weight: 100;
  margin: 0 3px;
}
.fz20 {
  font-size: 20px;
  font-weight: 100;
}
.fz10 {
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 1.2;
  display: inline-block;
}
.fz16 {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.2;
  font-weight: 400;
}
.fz20.mr3 {
  margin-right: 3px;
}
.footer-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
}
.footer-bottom-02 {
  margin-left: 136px;
  position: relative;
}
.footer-bottom-02 .fz16:before {
  content:"";
  width: 1px; 
  height: 40px;
  background: #fff;
  display: block;
  position: absolute;
  top: 0px;
  left: -8px;
}
.sp-footer {
  display: none;
}
.sp-footer {
  padding: 30px 30px;
  background: #1b96d2;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 1251px) {
  .footer-top-02 {
    margin: 7px 0 2px;
  }
  .footer-bottom-01 {
    width: 100%;
    margin-bottom: 10px;
  }
  .footer-bottom-02 {
    margin-left: 0;
  }
  .footer-bottom-02 .fz16:before {
    content: none;
  }
}


/* ========================================================== 
  btnTop
============================================================*/
/* -------------------------------------------------------
  btnTop
---------------------------------------------------- */
.btnTop {
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: fixed;
  right: 30px;
  bottom: 50px;
  border-radius: 50%;
  background: rgba(77, 92, 51, 0.7);
  /* opacity: 0.5; */
  z-index: 999;
  cursor: pointer;
}
.btnTop::before {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  top: calc( 50% - 2px);
  left: calc( 50% - 3.5px);
}

@media screen and (max-width: 420px) {
  .btnTop {
    width: 25px;
    height: 25px;
    right: 15px;
    bottom: 20px;
  }
  .btnTop::before {
    width: 6px;
    height: 6px;
  }
}


/* ========================================================== 
  SP footer
============================================================*/
.sp-footer {
  padding: 30px 20px;
  position: relative;
      line-height: 1.6;
}
.sp-fz15 {
  font-size: 16px;
  /* letter-spacing: 1px; */
  font-weight: 400;
  margin-bottom: 10px;
}
.sp-fz11 {
  font-size: 11px;
  /* letter-spacing: 1px; */
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 5px;
}
.sp-footer-bottom {
  line-height: 1.3;
}
.sp-footer-bottom .sp-fz15 {
  margin: 3px 0 15px;
}

@media screen and (max-width: 768px) {
  .pc-footer {
    display: none;
  }
  .sp-footer {
    display: block;
  }
  .sp-footer-top {
    display: flex;
    flex-wrap: wrap;
  }
}






/* ========================================================== 
  Animation
============================================================*/
.fadeInUp {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: fadeInUp;
  visibility: visible !important;
}
@keyframes fadeInUp {
  0% { 
    opacity: 0; 
    transform: translateY(80px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}
.order-fade {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.5s;
}
.order-scroll {
  opacity: 1;
  transform: translateY(0);
}
.order-fade:nth-of-type(1) {
  transition-delay: 300ms;
}
.order-fade:nth-of-type(2) {
  transition-delay: 500ms;
}
