@charset "UTF-8";
/* Body */
body {
	font-family:  "Osaka-mono", "MS Gothic" , sans-serif ;
	margin: 0;
}
.f {
	font-family: "Arial";
	pointer-events: none
}

/* Container */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
}
/* Header */
header {
	width: 100%;
	height: 8%;
}
.hero_header {
	color: #FFFFFF;
	text-align: center;
	margin: 0;
	letter-spacing: 4px;
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 4px;
  background-color: #333;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}
.hamburger__line:nth-of-type(2) {
  top: 23px;
}
.hamburger__line:nth-of-type(3) {
  top: 32px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 4px rgba(0,0,0,.1);
  transform: translateX(-100%);
  transition: transform .4s;
  z-index: 90;
}
.nav.active {
  transform: translateX(0);
}

.nav__item a {
  text-decoration: none;
}

.nav__list {
  margin: 0;
  padding: 100px 0 0;
  list-style: none;
}

.nav__item {
  padding: 0 20px;
}

.nav__link {
  display: block;
  padding: 15px 0;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}	

div.animation_box {
  padding: 10px;
  animation: fadeIn 5s ease 3s 1 normal backwards;
}

.animation_box .catchphrase {
	font-size: 190px;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1.1;
	color: #009345;
	font-family:  "Osaka-mono", "MS Gothic", "monospace";
	margin-bottom: 50px;
}

.rogo {
	font-size: 38px;
	text-align: right;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #009345;
	font-family:  "Osaka-mono", "MS Gothic", "monospace";
	margin-bottom: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-text {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeInOut 6s forwards; /* 3秒のアニメーション */
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1; /* 20%で表示 */
  }
  80% {
    opacity: 1; /* 80%まで表示 */
  }
  100% {
    opacity: 0; /* 100%で非表示 */
  }
}

.logo_fadein{
	background: #FFF5E5;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
}
.logo_fadein p {
	position: fixed;
	left: 40%;
	top: 40%;
	transform: translate(-40%, -40%);
	display: none;
	z-index: 9999;
	color: #828282;
	font-family:  "Osaka-mono", "MS Gothic", "monospace";
	font-size:  6vmax;
	letter-spacing: 0.10em;
		line-height: 1.6;
	writing-mode: vertical-rl;
-ms-writing-mode: tb-rl;
}

.char {
  display: inline-block;
  transform: translateY(var(--y, 110%));
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.04s * var(--char-index));
}

@keyframes Grad {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.sp_br {
  display: none; 
}

.cp_arrows {
  position: relative;
  display: flex;
  height: 250px;/*画面いっぱいにする場合100vh*/
  justify-content: center;
  align-items: center;
  margin-top:  -140px;
}

.cp_arrows .cp_arrow {/*矢印を配置するベースの設定*/
  position: absolute;
  top: 50%;/*着地点(cp_arrowsの高さの50%)*/
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 10px;
  opacity: 0;
}
.cp_arrows .cp_arrow:first-child {
  animation: arrow-move08 2s ease-in-out infinite;
}
.cp_arrows .cp_arrow:nth-child(2)  {
  animation: arrow-move08 2s 1s ease-in-out infinite;
}
.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {/*矢印全体の設定*/
  position: absolute;
  content: '';
  top: 0;
  width: 30px;
  height: 3px;
  background: #f39800;
}
.cp_arrows .cp_arrow:before {/*矢印左の線の位置と傾斜*/
  left: 3px;
  transform: rotate(30deg);
}
.cp_arrows .cp_arrow:after {/*矢印左の線の位置と傾斜*/
  right: 3px;
  transform: rotate(-30deg);
}
@keyframes arrow-move08 {
    0% { opacity: 0; top: 40%;/*スタート地点(cp_arrowsの高さの40%)*/}
   70% { opacity: 1;}
  100% { opacity: 0;}
}

.box-009 {
    max-width: 400px;
    margin: 0 auto;
    border: 2px solid #86d67c;
    border-radius: 5px;
    color: #333333;
	font-size: 19px;
}

.box-009 div {
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    position: relative;
    top: -13px;
    left: 10px;
    margin: 0 7px;
    padding: 0 8px;
    background: #fff;
    color: #86d67c;
    font-weight: 600;
    vertical-align: top;
}

.box-009 div::before {
    width: 15px;
    height: 7.5px;
    border-bottom: 3px solid #86d67c;
    border-left: 3px solid #86d67c;
    transform: rotate(-45deg) translate(2px, -2px);
    content: '';
}

.box-009 p {
    margin: 0;
    padding: 0 1.5em 1em;
	text-align: center;
}

.heading-1 {
  position: relative;
  margin: 0 0 25px 9px;
  padding: .5em .8em;
  display:inline-block;
  display: flex;
  background: linear-gradient(270deg,#FFEBD8,  #FFA958);
  background-size: 100%;
  animation: Grad 3s ease infinite;
  align-items: center;
  color: #fff;
}

.heading-1::before {
    position: absolute;
    top: 0;
    left: -9px;
    z-index: 1;
    width: 5px;
    height: 135%;
    border-radius: 3px;
    background-color: #600;
    content: '';
}

.heading-1 span::before,
.heading-1 span::after {
    position: absolute;
    left: -9px;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background-color: #c99;
    content: '';
}

.heading-1 span::before {
    top: 44%;
    transform: rotate(-25deg);
}

.heading-1 span::after {
    top: 54%;
    transform: rotate(25deg);
}

.balloon3-right {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 0.5em 0;
  padding: 0 5px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  color: #FFF;
  font-size: 28px;
  font-weight: bold;
  background: #FFA500;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon3-right:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #FFA500;
  z-index: 0;
}

.balloon3-left {
  position: relative;
  display: inline-block;
  margin: 0.5em 0 1.5em 15px;
  padding: 0 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #FFF;
  font-size: 32px;
  font-weight: bold;
  background: #FFA07A;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon3-left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #FFA07A;
  z-index: 0;
}

/* About Section */
.text_column {
	width: 90%;
	text-align: left;
	font-weight: lighter;
	line-height: 25px;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	color: #000;
}
.gallery {
	clear: both;
	display: inline-block;
	width: 100%;
	background-color: #FFFFFF;
	/* [disabled]min-width: 400px;*/
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -10px;
	margin-bottom: 20px;
}
.gallery01 {
	clear: both;
	display: inline-block;
	width: 98%;
	background-color: #FFFFFF;
	/* [disabled]min-width: 400px;*/
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -5px;
	margin-bottom: 20px;
	margin-left: 1%;
}

.gallery00 {
	clear: both;
	display: inline-block;
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -5px;
	margin-left: 32%;
	margin-right: auto;
}

.thumbnail {
	width: 48%;
	text-align: center;
	float: left;
	margin-top: 35px;
	background-color: #F8F8F8;
	padding-bottom: 20px;
	margin-left: 1%;
	margin-right: 1%;
	border-radius: 3px;
	padding-top: 20px;
	border-bottom: 4px solid #009345;
}

.thumbnail02 {
	width: 98%;
	text-align: center;
	float: left;
	margin-top: 35px;
	background-color: #F9F9F9;
	padding-bottom: 20px;
	margin-left: 1%;
	margin-right: 1%;
	border-radius: 3px;
	padding-top: 20px;
}


.gallery .thumbnail h3 {
	font-size: 32px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #5D5E5D;
	text-align: right;
	padding-left: 20px;
	padding-right: 20px;
}
.gallery .thumbnail h4 {
	font-size: 32px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #009345;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
}
.gallery .thumbnail02 h4 {
	font-size: 32px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #009345;
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
}

.gallery .thumbnail p {
	margin: 0;
	color: #B3B3B3;
	text-align: left;
	padding-left: 20px;
}

.thumbnail_01 {
	width: 31%;
	text-align: center;
	float: left;
	margin-top: 35px;
	background-color: #F8F8F8;
	padding-bottom: 20px;
	margin-left: 1%;
	margin-right: 1%;
	border-radius: 3px;
	padding-top: 20px;
	border-bottom: 4px solid #6DC7D0;
}

.gallery .thumbnail_01 h4 {
	margin-top: 5px;
	margin-bottom: 5px;
	color: #52BAD5;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
}
.gallery .thumbnail_01 p {
	margin: 0;
	color: #B3B3B3;
	text-align: left;
	padding-left: 20px;
}

.thumbnail_03 {
	width: 95%;
	text-align: center;
	float: left;
	margin-top: 35px;
	padding-bottom: 20px;
	margin-left: 1%;
	margin-right: 1%;
	border-radius: 3px;
	padding-top: 20px;
	border-bottom: 4px solid #009345;
}

.gallery .thumbnail_03 .rogo {
	font-size: 38px;
	text-align: left;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #009345;
	font-family:  "Osaka-mono", "MS Gothic", "monospace";
	margin-bottom: 20px;
}

.gallery .thumbnail_03 p {
	margin: 0;
	color: #B3B3B3;
	text-align: left;
	padding-left: 20px;
}
.gallery .thumbnail_03 .tag {
	font-size: 24px;
	color: #333;
	padding-bottom: 4px;
	padding-top: 4px;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
}
.mozig {
	font-color: #009345;
}

.thumbnail_04 {
	width: 48%;
	text-align: left;
	float: left;
	margin-top: 35px;
	padding-bottom: 20px;
	margin-left: 1%;
	margin-right: 1%;
	border-radius: 3px;
	padding-top: 20px;
	background-color: #F8F8F8;
	border-bottom: 4px solid #385EAC;
}
.gallery .thumbnail_04 h4 {
	font-size: 26px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #385EAC;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
}

.gallery .thumbnail_04 p {
	margin: 0;
	color: #333;
	font-size: 18px;
	text-align: left;
	padding-left: 20px;
}
.gallery .thumbnail_04 .tag {
	font-size: 24px;
	color: #333;
	padding-bottom: 14px;
	padding-top: 20px;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
}
/* More info */
.intro {
	margin-top: -60px;
	background-color: #FFFFFF;
	padding-left: 6%;
	padding-bottom: 160px;
	display: inline-block;
    background-image: repeating-linear-gradient(135deg, currentColor 0, currentColor 1px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    color: rgba(000,000,000, 0.05) !important;
}

.column {
	width: 50%;
	text-align: center;
	padding-top: 30px;
	float: left;
}
.intro .column h3 {
	color: #FFFFFF;
	text-align: center;
}
.intro .column p {
	color: #FFFFFF;
}
.cards {
	width: 100%;
	height: auto;
	margin: 10px;
	max-width: 320px;
	max-height: 200px;
	opacity: 0.8;
}
.intro .column p {
	padding-left: 30px;
	padding-right: 30px;
	text-align: justify;
	line-height: 25px;
	font-weight: lighter;
	margin-left: 20px;
	margin-right: 20px;
	width: 80%;
	margin-top: 4%;
}
.button {
	width: 200px;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
	transition: all 0.3s linear;
}
.button:hover {
	background-color: #86d67c;
	color: #FFFFFF;
	cursor: pointer;
}
a {
  text-decoration: none;
}
a,a:hover,a:visited{
    color: inherit;
}
.copyright {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #717070;
	font-size: 10px;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
}
footer {
	background-color: #B3B3B3;
	padding-top: 60px;
	padding-bottom: 60PX;
}
.profile {
	width: 50%;
}
.gallery .thumbnail .tag {
	font-size: 24px;
	color: #5D5E5D;
	padding-bottom: 4px;
	padding-top: 4px;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
}
.gallery .thumbnail02 .tag {
	font-size: 24px;
	color: #5D5E5D;
	padding-bottom: 4px;
	padding-top: 4px;
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
}
.gallery .thumbnail02 .tag2 {
	font-size: 18px;
	padding-bottom: 1px;
	padding-top: 1px;
	padding-left: 100px;
	padding-right: 100px;
	letter-spacing: 2px;
}
.gallery .thumbnail02 .tag3 {
	font-size: 18px;
	padding-bottom: 1px;
	padding-top: 1px;
	padding-left: 100px;
	padding-right: 100px;
	letter-spacing: 2px;
	text-align: left;
}

.table_design {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
}
.table_design th, .table_design td {
  border: 2px solid #fff;
  background-color: #e1ffef;
  border-radius: 0 15px 15px 0;
  padding: 1em;
  font-size: 22px;
  text-align: center;
}
.table_design th {
  background-color: #009345;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 15px 0 0 15px;
  width: 20%;
  min-width: 4em;
  position: relative;
}
.table_design th::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #009345;
  z-index: 2;
}
.table_design th::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 2px);
  transform: translateY(-50%);
  border: 12px solid transparent;
  border-left: 12px solid #fff;
  z-index: 1;
}

.breadcrumb-002 {
    display: flex;
    gap: 0 9px;
    list-style: none;
    padding: 0;
    font-size: .75em;
	width: 414px;
	margin: 0 auto;
	pading: 10px 0;
}

.breadcrumb-002 li {
    display: flex;
    align-items: center;
}

.breadcrumb-002 li:first-child::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%2343a879'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}

.breadcrumb-002 li:not(:last-child)::after {
    display: inline-block;
    margin-left: 15px;
    color: #43a879;
    content: '/';
}

.breadcrumb-002 a {
    color: #333333;
    text-decoration: none;
}
.opa {
 opacity: 0.5;
	}

.box-009 {
    max-width: 400px;
    margin: 30px auto;
    border: 2px solid #86d67c;
    border-radius: 5px;
    color: #333333;
	background: #FFF;
}

.box-009 div {
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    position: relative;
    top: -17px;
    left: -25px;
    margin: 0 7px;
    padding: 0 8px;
    color: #86d67c;
    font-weight: 600;
    vertical-align: top;
}

.box-009 div::before {
    width: 15px;
    height: 7.5px;
    border-bottom: 3px solid #86d67c;
    border-left: 3px solid #86d67c;
    transform: rotate(-45deg) translate(2px, -2px);
    content: '';
}

.box-009 p {
    margin: 0;
    padding: 0 1.5em 1em;
}

.box-017 {
    max-width: 400px;
    margin: 0 auto;
    padding: .5em 1.5em 1em;
    border-top: 5px solid #009345;
    border-radius: 3px;
    background-color: #fff;
}

.box-017 > div {
    margin-bottom: .5em;
    color: #009345;
    font-weight: 600;
    font-size: 38px;
}

.box-017 > p {
    margin: 0;
    color: #333;
	font-size: 24px;
}

.box-017 .fontbig {
	font-size: 50px;
	text-align: center;
	color: #A3A3A3;
}
.kotob {
		width: 30%;
		height: auto;
	}	
.riyouki {
	font-size: 14px;
	text-align: center; 
	color: #B0B0B0;
	margin-bottom: 60px;
}
/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
.animation_box .catchphrase {
	font-size: 120px;
}
.text_column {
	width: 100%;
}
.thumbnail {
	width: 48%;
}
	
.text_column {
	width: 90%;
	margin: 0;
	padding: 20px;
}
.intro .column p {
	width: 80%;
}	

.gallery .thumbnail h3 {
	font-size: 26px;
}
.gallery .thumbnail h4 {
	font-size: 26px;
}
.gallery00 {
	margin-left: 20%;
}
	
}
