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



/* ====================
 *  all
 * ==================== */
*{
	font-family: "游明朝" , 'Yu Mincho', 'Hiragino Mincho ProN', 'serif';
}

h1 {
	font-size: 1.5em;
    letter-spacing: 0.2rem;
}

h2 {
	font-size: 1.3em;
    letter-spacing: 0.2rem;
}

h {
	letter-spacing: 0.2rem;
}


img {
	display: block;
}

body {
	overflow-x: hidden;
	-webkit-overflow-x: hidden;
	-moz-overflow-x: hidden;
	color: #444;
	margin: 0;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

p {
    letter-spacing: 0.2em;
    line-height: 1.3rem;
    font-size: 15px;
}

p,a {
    color: rgba(89,87,87,1.00);
}




@media screen and (max-width: 767px) {
	
	.pc {
		display: none !important;
	}
	
}


/* ====================
 *  first view
 * ==================== */

.lead-copy {
    /* 縦書きにする設定 */
    writing-mode: vertical-rl;
    
    /* その他の既存設定 */
    position: absolute;
    left: 27px;
    bottom: 70px;
    z-index: 2;
    font-size: 42px;
    letter-spacing: 10px; /* 縦書きだと文字間が少し広い方が綺麗だよ */
    line-height: 1.2;     /* 縦書きの時はremより数値指定が扱いやすいかも */
    
    /* アニメーションの指定 */
    animation: fadeAndColorChange 10s ease-in-out infinite;
}

@keyframes fadeAndColorChange {
    0% {
        opacity: 0;
        color: #272727;
    }
    10% {
        opacity: 1; /* 10%の地点で完全に姿を現す */
        color: #272727;
    }
    50% {
        color: #fff; /* 50%（2枚目の画像あたり）で白に変化 */
    }
    90% {
        opacity: 1;
        color: #272727; /* また暗い色に戻る */
    }
    100% {
        opacity: 0; /* 最後はまた消える（ループ用） */
    }
}
	
.scrolldown01 {
	position:absolute;
	left:50%;
	bottom:10px;
	height:50px;
	z-index: 2;
}
	
.scrolldown01 span {
	position: absolute;
	left: -27px;
	top: -27px;
	color: #eee;
	font-size: 1.2rem;
	letter-spacing: 0.08em;
}

.scrolldown01::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 45px;
	background: #eee;
	animation: falldown 1.4s ease-in-out infinite;
	opacity:0;
}

@keyframes falldown {
	0% {
		height:0;
		top:0;
		opacity: 0;
	}
	
	30% {
		height:50px;
		opacity: 1;
	}
	
	100% {
		height:0;
		top:50px;
		opacity: 0;
	}
}


.fv {
    width: 100%;
}

.fv_slider {
	height: 100vh;
	overflow: hidden;
	position: relative;
}

.fv_item {
	z-index: -99;
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-animation: anime 40s 0s infinite;
    animation: anime 40s 0s infinite;
}

.fv_item:nth-of-type(2) {
	 -webkit-animation-delay: 8s;
	 animation-delay: 8s;
}
.fv_item:nth-of-type(3) {
      -webkit-animation-delay: 16s;
      animation-delay: 16s; }

.fv_item:nth-of-type(4) {
      -webkit-animation-delay: 24s;
      animation-delay: 24s; }

.fv_item:nth-of-type(5) {
      -webkit-animation-delay: 32s;
      animation-delay: 32s; }

.fv_item:nth-of-type(6) {
      -webkit-animation-delay: 40s;
      animation-delay: 40s;
}

@keyframes anime {
  0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% { 
		opacity: 0 
	}
}

.backblack {
	background-color: #2B2B2B;
}


/* ====================
 *  nav
 * ==================== */

.drawer_hidden {
	display: none;
}

.drawer_open {
	display: flex;
	position: absolute;
	height: 66px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 100;
	cursor: pointer;
	top: -4.5px;
	right: 10px;
	color: #fff;
}

.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 40px;
	background: #fff;
	transition: 0.5s;
	position: absolute;
}



.drawer_open span:before {
	bottom: 12px;
}

.drawer_open span:after {
	top: 12px;
}

#drawer_input:checked ~ .drawer_open span {
	background: rgba(255, 255, 255, 0);
}
#drawer_input:checked ~ .drawer_open span::before {
	bottom: 0;
	transform: rotate(45deg);
	background: #2f2f2f;
}
#drawer_input:checked ~ .drawer_open span::after {
	top: 0;
	transform: rotate(-45deg);
	background: #2f2f2f;
}

#drawer_input.active span::after {
    transform: translateY(0) rotate(-45deg);
	background: #2f2f2f;
}

#h-text.active {
	color: #2f2f2f;
}

#h-text {
    font-size: 10px;
    display: block;
    color: #fff;
    bottom: 0;
    position: absolute;
    margin: 0;
	padding-left: 4px;
}

.nav_content {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #fff;
	line-height: 40px;
	letter-spacing: 0.3rem;
	transition: 0.4s;
	visibility: collapse;
	opacity: 0;
	z-index: 99;
}


#drawer_input:checked ~ .nav_content {
	visibility: visible;
	opacity: 1;
}



.list_wrap {
	padding-left: 10px;
}

.nav_list {
	padding-top: 30px;
	padding-left: 15px;
}

.nav_list li {
	border-bottom: 1px gray solid;
	width: 230px;
	text-align: center;
}

.nav_box {
	padding-left: 15px;
}

.change_header {
    display: flex;
    position: fixed;
    top: -98px;
    transition: .5s;
    width: 100%;
	height: 68px;
	z-index: 98;
}
.change_header.show{
    bottom: 0;
}
.change_header.nav_item a{
    color: rgba(43,47,102,1.00);
}

.head_logo {
	width: 70px;
	padding-left: 20px;
	padding-top: 13px;
}



/*ヘッダー変更後のidの重複対応他*/
.drawer_hidden02 {
	display: none;
}

.drawer_open02 {
	display: flex;
	position: absolute;
	height: 66px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 100;
	cursor: pointer;
	top: -4.5px;
	right: 10px;
	color: #fff;
}

.drawer_open02 span,
.drawer_open02 span:before,
.drawer_open02 span:after {
	content: '';
	display: block;
	height: 3px;
	width: 40px;
	background: #2f2f2f;
	transition: 0.5s;
	position: absolute;
}
.drawer_open02 span:last-child {
	content: 'MENU';
}

.drawer_open02 span:before {
	bottom: 12px;
}

.drawer_open02 span:after {
	top: 12px;
}

#drawer_input02:checked ~ .drawer_open02 span {
	background: rgba(255, 255, 255, 0);
}
#drawer_input02:checked ~ .drawer_open02 span::before {
	bottom: 0;
	transform: rotate(45deg);
	background: #2f2f2f;
}
#drawer_input02:checked ~ .drawer_open02 span::after {
	top: 0;
	transform: rotate(-45deg);
	background: #2f2f2f;
}

#drawer_input02.active span::after {
    transform: translateY(0) rotate(-45deg);
	background: #2f2f2f;
}

#h-text02.active {
	color: #2f2f2f;
}

#h-text02 {
    font-size: 10px;
    display: block;
    color: #2f2f2f;
    bottom: 0;
    position: absolute;
    margin: 0;
	padding-left: 4px;
}

.nav_content02 {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #fff;
	line-height: 40px;
	letter-spacing: 0.3rem;
	transition: 0.5s;
	visibility: collapse;
	opacity: 0;
}

#drawer_input02:checked ~ .nav_content02 {
	visibility: visible;
	opacity: 1;
}


/* ====================
 *  parallax
 * ==================== */


.white_bg {
	background: #fff;
	z-index: 10;
	position: relative;
}

.bgfix {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.bg_item {
    width: 100%;
    height: 100vh;
    position: absolute;
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
}

.bg_item.is-opacity {
	opacity: 1;
}

.par01 {
  min-height: 400px;
}


/* ====================
 *  animetion
 * ==================== */
	

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

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

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



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

section {
	padding-top: 50px;
}

.section_topics {
	text-align: center;
	position: relative;
}

.backtopics {
	font-size: 36px;
	color: #f7ebd9;
	letter-spacing: 0.5rem;
}

.backtopics02 {
	font-size: 26px;
	color: #f7ebd9;
	letter-spacing: 0.3rem;
}

.ontopics {
	letter-spacing: 0.3rem;
	position: absolute;
	left: 0;
	right: 0;
	top: -1px;
	z-index: 1;
}

.subtopics {
	width: 80%;
	display: block;
	margin: 0 auto;
	padding-bottom: 70px;
	line-height: 1.7rem;
}

.subtopics span {
	background: #f7ebd9;
	padding: 5px 3px;
}


/* ====================
 *  one
 * ==================== */


.one img {
	width: 100%;
}


/* ====================
 *  two
 * ==================== */


.two_inner {
	width: 90%;
	margin: 0 auto;
}
.two_title {
	background-color: #f7ebd9;
	padding: 20px 11%;
	text-align: center;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
	letter-spacing: 0.2rem;
	margin: 10px 0 0 ;
}
.two_inner:nth-of-type(2).two_title {
    background-color: #ff9a05;
}
.two_inner:nth-of-type(3).two_title {
    background-color: #1c85d8;
}
.two_inner.two_title:hover {
	opacity: .8;
}
.two_inner.two_title.i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 5%;
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	margin-top: -20px;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
}
.two_title.i_box.one_i {
	display: block;
	width: 18px;
	height: 18px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
	position: relative;
}
.two_title.open .i_box {
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}
.two_title.i_box .one_i:before, .two_title.i_box .one_i:after {
	display: flex;
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 4px;
	position: absolute;
	top: 7px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.two_title.i_box .one_i:before {
	width: 4px;
	height: 18px;
	top: 0;
	left: 7px;
}
.two_title.open .i_box .one_i:before {
	content: none;
}
.two_title.open .i_box .one_i:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.two_box {
	display: none;
	padding: 20px 20px;
	background: #fff9f0;
	box-sizing: border-box;
}

.two_box p {
	font-size: 14px;
}

.two_sample p {
	text-align: center;
}

.two_box span {
	display: inline-block;
	background: #f7ebd9;
	width: 10px;
	height: 10px;
	margin-right: 5px;
}

.two_spread {
	margin: 20px 0 0;
	border-bottom: 1px solid #e0c09d;
}

.two_box p.txt_a_ac {
	margin: 0;
}
.two_box.closeArea {
	width: 180px;
	margin: 0 auto;
}
.two_box.closeArea.close_box a.close_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #db0f2f;
	padding: 15px 15px 15px 20px;
	text-decoration: none;
	line-height: 1.3;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	cursor: pointer;
	transition-duration: 0.2s;
}


.two_inner:nth-of-type(2) .two_box.closeArea.close_box a.close_btn {
    background-color: #ff9a05;
}
.two_inner:nth-of-type(3) .two_box.closeArea.close_box a.close_btn {
    background-color: #1c85d8;
}
.two_box.closeArea.close_box a .close_btn:hover {
	opacity: .8;
}
.two_box.closeArea.close_box a .close_btn .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 10%;
	width: 30px;
	height: 30px;
	margin-top: -15px;
}
.two_box.closeArea.close_box a .close_btn .i_box .i_box .one_i {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 18px;
	height: 18px;
}
.two_box.closeArea.close_box a .close_btn .i_box .i_box .one_i:before, .two_box.closeArea.close_box a .close_btn .i_box .i_box .one_i:after {
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 4px;
	position: absolute;
	top: 7px;
	left: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(45deg);
	transform-origin: center center;
}
.two_box.closeArea.close_box a .close_btn .i_box .i_box .one_i:before {
	width: 4px;
	height: 18px;
	top: 0;
	left: 7px;
}

.two_sample {
	border: 1px solid #e0c09d;
}


/* ====================
 *  three
 * ==================== */

.three_inner {
	width: 90%;
	margin: 0 auto;
}

.three_box {
	display: flex;
	justify-content: center;
}

.three_item {
	background: #f7ebd9;
	width: 100%;
	margin: 5px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.three_item:first-child {
	margin-right: 5px;
}

.three_item:last-child {
	padding: 10px 0;
}

.three_item img {
	height: 50px;
	width: auto;
}



/* ====================
 *  four
 * ==================== */

.four_inner {
	width: 90%;
	margin: 0 auto;
	display: flex;
	text-align: center;
}

.four_box {
	background: #f7ebd9;
	width: 50%;
	margin-right: 5px;
}

.four_box:nth-child(2) {
	margin: 0;
}



/* ====================
 *  five
 * ==================== */

.five_box {
	margin: 0 auto;
	width: 90%;
}

.five_box p {
	padding-top: 14px;
	padding-bottom: 14px;
	padding-left: 30px;
	background: #f7ebd9;
	letter-spacing: 1.5px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin: 0;
	margin-bottom: -10px;
}

.five_box p:hover {
	background-color: rgba(224,192,157,1.00);
	color: #fff;
}

.five_box span {
	padding-left: 20px;
}

.hide-area {
	display: none;
}

.five_box img {
	width: 100%;
}

.five_item {
	line-height: 1.3;
	border-bottom: 1px solid #e0c09d;
	padding-bottom: 10px;
}



/* ====================
 *  Six
 * ==================== */

.six_inner {
	width: 90%;
	margin: 0 auto;
	background: #f7ebd9;
	height: 280px;
}

.six_inner img {
	height: 250px;
	width: auto;
	margin: 0 auto;
}

.six_content {
	background: #f7ebd9;
	width: 100%;
	margin: 0 auto;
	height: 280px;
}


/* ====================
 *  Seven
 * ==================== */

.seven_inner {
	width: 90%;
	margin: 0 auto;
}

.seven_inner img {
	width: 90%;
}

.seven_box {
	background: #f7ebd9;
}



/* ====================
 *  FOOTER
 * ==================== */

.last_content {
	width: 100%;
	height: 500px;
	position: relative;
}

.name {
	width: 100%;
	height: 108px;
	background: url("https://read62.com/img/footor_bg.jpg");
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
}

.copy {
	background: #fff;
}

.name_item {
	height: 68px;
	width: auto;
	margin: 0 auto;
	padding: 20px;
}

.copy_item {
	margin: 0 auto;
	width: 60%;
	padding: 20px;
}



/* ====================
 *  TOP_btn
 * ==================== */

#page_top {
    position: fixed;
    bottom: 60px;
    left: 20px;
	z-index: 88;
}

#page_top a {
    background-color: #f7ebd9;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 20px 20px;
	opacity: 0.7;
	border-radius: 2rem;
}

#page_top a:hover {
    background-color: #e0c09d;
    text-decoration: none;
}




