@charset "UTF-8";
/* CSS Document */


/* FontAwesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* adobefonts */
@import url("https://use.typekit.net/pll2wdj.css");

:root {
	--primary-color: #46454d;
	--primary-inverse-color: #fff1e6;
    --secondary-color: #636269;
	--space-large: 10vw;
	--space-medium: 6vw;
	--space-small: 2vw;
}


* {
 	box-sizing: border-box;
}

body {
	margin: 0;
	padding:0;
	font-family: 'zen-old-mincho', 'Noto Serif JP', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro W3', 'HGS明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
	-webkit-text-size-adjust: none;
	background: #fff;
	color: var(--primary-color);
	line-height: 2.5;
}





/* ヘッダー
---------------------------------------------------------------------------*/

header {
	display: flex;
 	height: 5rem;
 	position: fixed;
	top: 0;
	width: 100%;
 	z-index: 10;
}

/* ロゴ */
#logo img {
	display: block;
}

#logo {
	width: 7vw;
	position: relative;
	z-index: 1;
	left: 3vw;
	top: 2vw;
}

@media screen and (max-width:900px) {
	#logo {
		left: 20px;
		width: 70px;
		top: 15px;	
	}
}


/* hero_縦タイトル・英語・日本語
---------------------------------------------------------------------------*/

.hero_text_vertical {
	bottom: 5vh;
	font-size: 2vh;
	left: 1.5%;
	letter-spacing: 0.1em;
	writing-mode: vertical-rl;
	text-orientation: upright;
	position: fixed;
	z-index: 100;
}

.hero_text_en {
	color: var(--primary-inverse-color);
	font-weight: 400;
	font-style: normal;
	font-size: 2.8vw;
    letter-spacing: .05rem;
	line-height: 1.2;
	position: absolute;
	text-align: right;
	z-index: 90;
	right: 8vw;
	top: 20vh;
	opacity: .5;
}

.hero_text_jp {
    bottom: 15vh;
	color: #000;
    font-weight: 400;
    font-style: normal;
	font-size: 5vw;
	font-feature-settings: "palt";
    left: 10%;
    letter-spacing: .2rem;
	line-height: 1.2;
    padding: 2rem 2.5rem;
	position: absolute;
    text-align: left;
	z-index: 90;
}
.hero_text_jp .tx_small {
	font-size: 2.5vw;
	line-height: 2;
}

@media screen and (max-width:900px) {
    .hero_text_jp {
		bottom: 8vh;
        font-size: 8vw;
		left: 5%;
    }
	.hero_text_en {
        font-size: 5vw;
		right: 15vw;
		top:15vh;
    }
    .hero_text_vertical {
        font-size: 1.8vh;
        top: 8rem;
        left: 3%;
    
    }
}


/* 寄付するボタン
---------------------------------------------------------------------------*/

#btn-special {
	padding: 0;
	margin: 0;
}
#btn-special a {
	display: block;
	position: fixed;
	right: 0px;
	top: 15vw;
	writing-mode: vertical-rl;
	text-orientation: upright;
	background: linear-gradient(#ffa38f, #f27966);
	color: var(--primary-inverse-color);	
	padding: 2rem .5rem;
	border-radius: 3px 0px 0px 3px;
	letter-spacing: .1em;
	z-index: 100;
}

#btn-special i {
	padding-top: 1rem;
}

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

    #btn-special a {
        padding: 1rem .3rem;
        font-size: 2.3vh;
    }

}



/* メニュー
---------------------------------------------------------------------------*/

.sm, .pc {
 	margin: 0 0 0 auto;
	padding-top: 2vh;
	width: 100%;
}

.sm ul, .pc ul {
 	display: flex;
 	list-style: none;
	justify-content: flex-end;
}
.pc ul:last-of-type {
	padding-right: 2rem;
}

.sm a, .pc a {
	display: block;
	line-height: 60px;
	padding: 0 20px;
}

.sm {
 	display: none;
}


/* ハンバーガーメニュー
---------------------------------------------------------------------------*/

@media (max-width: 900px) {

  .pc {
    display: none;
  }

  #hamburger {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    margin: 0 0 0 auto;
    height: 60px;
    width: 60px;
	z-index: 2;
  }

  .icon span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 8px;
    transition: ease 0.75s;
  }

  .icon .hum_line:nth-of-type(1) {
    top: 18px;
  }
  .icon .hum_line:nth-of-type(2) {
    top: 29px;
  }
  .icon .hum_line:nth-of-type(3) {
    bottom: 18px;
  }
	
  .close .hum_line:nth-of-type(1) {
    transform: rotate(45deg);
    top: 28px;
  }
  .close .hum_line:nth-of-type(2) {
    opacity: 0;
  }
  .close .hum_line:nth-of-type(3) {
      transform: rotate(-45deg);
      top: 29px;
  }

  .sm {
      top: 60px;
      left: 0px;
      position: absolute;
      z-index: 10;
      width: 100%;
      background-color: rgba(70, 69, 77, 0.8);
	  padding: 3rem 0;
  }

  .sm ul {
    flex-direction: column;
  }

  .sm a {
    text-align: center; color: #fff;
  }
}




/*リンク
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: .3s;
}
a:hover {
	opacity: .8;
}


/*ボタン
---------------------------------------------------------------------------*/

.btn_large_out, .btn_large_out_w {
	border: solid 1px var(--secondary-color);
	border-radius: 2rem;
	display: block;
	font-size: 1.2rem;
	padding: .5rem 3rem;
	text-align: center;
	max-width: 20rem;
	margin: 3rem auto 4rem auto;
	transition: .3s;
}
.btn_large_out_w {
    border: solid 1px var(--primary-inverse-color);
    text-align: center;
}
.btn_large_out:hover,.btn_large_out_w:hover  {
	background-color: #ffa38f;
	opacity: .8;
}
.btn_large_out_w i, .btn_large_out i {
	padding-left: 1rem;
}
i.btn_large_out {
	
}
@media (max-width: 900px) {
	.btn_large_out, .btn_large_out_w {
		font-size: 1rem;
		padding: .3rem 2rem;
		margin: 1.5rem auto 2rem auto;
	}
}


/*テキスト
---------------------------------------------------------------------------*/
p {
	font-size: 18px;
    padding-bottom: 2rem;
	text-align: justify;
}

.main_title {
	font-size: 3.5rem;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 3rem;
}
.main_title_m {
	font-size: 2.8rem;
	line-height: 1.5;
	text-align: center;
}
.sub_title {
	font-size: 1.8rem;
	line-height: 1.8;
	text-align: center;
}
.deco_text {
	font-size: 2rem;
	transform: rotate(90deg);
	position: absolute;
	left: 0;
	height: 1.5rem;
	top: 2.5rem;
}

.tx_small {
	font-size: 70%;
}
.cap {
	color: var(--primary-color);
	font-size: .8rem;
	height: auto;
	line-height: 1.3;
	text-align: center;
	margin-top: .5rem;
}


@media (max-width: 900px) {
    p {
        font-size: 14px;
        line-height: 1.9;
        padding-bottom: 1rem;
    }

    .main_title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    .main_title_m {
        font-size: 1.6rem;
    }
    .sub_title {
        font-size: 1.3rem;
    }
    .tx_small {
	font-size: 50%;
    }
	.cap {
		font-size: .7rem;
	}
}


/*全体
---------------------------------------------------------------------------*/

.container:nth-of-type(odd) {
	background-color: var(--secondary-color);
	color: var(--primary-inverse-color);
}
.container:nth-of-type(even) {
	background-color: var(--primary-inverse-color);
	color: var(--primary-color);
}

.contents {
	padding: 6% 8% 8% 8%;
	position: relative;
}
.contents p:first-of-type {
    margin-top: 2rem;
}

.col1 {
	padding: 10% 15% 15% 15%;
}
.col2 {
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 10% 8% 15% 8%;
}
.col2 > div {
	flex-basis: 50%;
}

@media (max-width: 900px) {
    
    .contents {
        padding: 9% 12% 10% 12%;
        position: relative;
    }
    .col2 > div {
	    flex-basis: 100%;
    }
    .contents p:first-of-type {
        margin-top: 1rem;
    }

}



/* 背景画像
---------------------------------------------------------------------------*/
.image_box {
	background-repeat: no-repeat;
}


/* 表
---------------------------------------------------------------------------*/
.table, .table2 {
	display: flex;
	flex-direction: column;
}

.table .line {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	padding: .5rem 0;
}
.table div:first-of-type {
	border: solid 1px var(--secondary-color);
	border-radius: 30px;
	flex-basis: 20%;
	padding: 0 1.5rem;
	text-align: center;	
}
.table div:last-of-type {
	padding-left: 4rem;
    font-size: 1.5rem;
}
.table p {
	margin-top: 2rem;
}


.table2 {
	text-align: center;
	padding: 4rem 2rem 5rem 2rem;
}
.table2 .line_title {
	border-radius: 5px;
	background-color: var(--secondary-color);
	color: var(--primary-inverse-color);
	font-size: 1.5rem;
	line-height: 1.8;
	margin: 2rem 0;
}
.table2 .line {
	align-items: center;
	padding: .5rem 0;
}
.table2 .line div:first-of-type  {
	background-color: var(--secondary-color);
	border-radius: 30px;
	color: var(--primary-inverse-color);
	display: inline;
	flex-basis: 20%;
	padding: 6px 15px;
	text-align: center;
}
.table2 .line div:last-of-type {
    font-size: 1.5rem;
}
.table2 p {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: solid 1px var(--secondary-color);
	line-height: 1.8;
}

@media (max-width: 900px) {
	.table div:first-of-type {
		padding: 0 1rem;
		font-size: .9rem;
	}
    .table .line {
        flex-direction: column;
    }
    .table2 .line_title {
        font-size: 1.2rem;
    }
    .table .line div:first-of-type {
        padding: 0 20px;
		margin-bottom: .5rem;
    }
    .table .line div:last-of-type {
        font-size: 1.1rem;
        padding-left: 0;
		line-height: 1.7;
    }
    .table2 .line div:last-of-type {
        font-size: 1rem;
        line-height: 1.5;
    }

}







/* セクション
---------------------------------------------------------------------------*/

/* about */

#about .col2 {
	padding: 0;
}
#about .image_box {
	background-image: url("../img/5.jpg");
	background-position: center;
	background-size: cover;
}
#about .main_title {
	text-align: left;
}
#about p:last-of-type {
    text-align: right;
}

@media (max-width: 900px) {
    #about .image_box {
        height: 400px;
        background-position: top center;
    }
}


/* organize */


.organize .sub_title {
	text-align: center;
	margin-top: 3rem;
}
.organize .image_box {
	background-size: cover;
	background-position: center;
	height: 50vh;
}
.organize .contents:first-of-type .image_box{
	background-image: url("../img/6.jpg");
}
.organize .contents:last-of-type .image_box {
	background-image: url("../img/7.jpg");
}
.organize .contents {
    padding-bottom: 0;
    padding-top: 0;
}
	

@media (max-width: 900px) {
    
    .organize .sub_title {
        margin-top: 1.5rem;
    }
    .organize .image_box {
        height: 25vh;
        background-size: contain;
        margin-top: 3rem;
    }
    
}



/* map */

.map .image_box {
	background-image: url("../img/map.png");
	background-position: center center;
	background-size: 65%;
	height: 600px;	
}

@media (max-width: 900px) {
    .map .image_box {
        height: 300px;
        background-size: 100%;
    }
}


/* meaning */

.container#meaning {
	background-color: #fff6f0;
	color: var(--primary-color)
}
#meaning .image_box {
	background-image: url("../img/yoteichi_full2.jpg");
	background-position: center center;
	background-size: cover;
	height: 600px;	
}
#meaning .contents {
	background-repeat: no-repeat;
	background-size: 40%;
	background-position: top center;
	justify-content: center;
}
#meaning .contents {
    padding-bottom: 0;
}

#meaning .contents:nth-of-type(1) {
	background-image: url("../img/n1.svg") ;
}
#meaning .contents:nth-of-type(2) {
	background-image: url("../img/n2.svg") ;
}
#meaning .contents:nth-of-type(3) {
	background-image: url("../img/n3.svg") ;
}
#meaning .contents:nth-of-type(4) {
	background-image: url("../img/n4.svg") ;
}

@media (max-width: 900px) {
    #meaning .image_box {
        height: 300px;
        background-size: 120%;
    }
        
}


/* about tancho */


.tancyo .col2 {
	padding: 0;
}
.tancyo .image_box {
	background-image: url("../img/A73I1959.jpg");
	background-position: center;
	background-size: cover;
}

@media (max-width: 900px) {
    .tancyo .image_box {
        height: 400px;
    }
}


/* project */

#project .col1:first-of-type {
	padding-bottom: 0;
}

.account .table2{
	background-color: #fff;
	border: solid 1px var(--secondary-color);
}



/* about_nt */

#about_nt .image_box {
	background-image: url("../img/8.jpg");
	background-position: center center;
	background-size: cover;
	height: 600px;
}
#about_nt .cap {
	color: var(--primary-inverse-color);
}


.nt_jp1 .sub_title {
	text-align: center;
	margin-top: 3rem;
}
.nt_jp1 .image_box, .nt_jp2 .image_box {
	background-size: cover;
	height: 50vh;
}
.nt_jp1 .image_box {
	background-image: url("../img/shiraho.jpg");
    background-position: center;
}
.container.nt_jp2 {
	background-color: var(--primary-inverse-color);
	color:  var(--primarye-color);
}
.nt_jp2 .image_box {
	background-image: url("../img/utasai.jpg");
}
.organize .container {
    padding-bottom: 0;
    padding-top: 0;
}




/* フッター
---------------------------------------------------------------------------*/
.footer {
	color: var(--primary-inverse-color);
	background-color: #46454d;
	position: relative;
}
.footer .sub_title {
    text-align: left;
}
.footer p {
    letter-spacing: .1rem;
    line-height: 1.5;    
}
.footer .icons {
	display: flex;
}
.footer .icons a {
	padding-right: 1rem;
}

.footer_logo {
	bottom: 5rem;
	position: absolute;
	right: 3rem;
	
	width: 7vw;
}
.footer .copy {
	text-align: right;
	padding-right: 2rem;
	letter-spacing: .05rem;
	
}



/* アニメーション
---------------------------------------------------------------------------*/


.fadeIn {
animation: fadeIn 0.7s ease 0s 1 normal;
}

/* fadeIn */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
  }
}


/* スライドイン */

.fadein_animation_start{
  /* キーフレームアニメーションを指定 */
  animation-name: fadein_animation;
  /* アニメーションの開始時間の遅延 */
  animation-delay: 0.3s;
  /* アニメーションの時間を指定 */
  animation-duration: 1s;
  /* アニメーション再生後のスタイルを指定 */
  animation-fill-mode: both;
}
@keyframes fadein_animation {
  0% {
    opacity: 0;
  }
  100%{
    opacity: 1;
    transform: translate(0);
  }
}
.slideup {
  transform: translateY(80px);
}
.slidedown {
  transform: translateY(-80px);
}
.slideright {
  transform: translateX(80px);
}
.slideleft {
  transform: translateX(-80px);
}







