/*
Theme Name: Twenty Twelve
Theme URI: https://wordpress.org/themes/twentytwelve/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 4.7
Tested up to: 6.9
Requires at least: 3.5
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, block-patterns
Text Domain: twentytwelve

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-style:normal;
font-weight: normal;
font-size: 100%;
vertical-align: baseline;
font-family:Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto ,"Yu Gothic" , "YuGothic" ,  "Hiragino Kaku Gothic Pro" , "Meiryo UI" , Meiryo , "MS PGothic" , sans-serif;
	
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
	overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea{
	margin: 0;
	padding: 0;
}

ol, ul{
	list-style:none;
}


ul.flex,.flex{
	display:-webkit-box;
	display:-ms-box;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-moz-box-lines:multiple;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

table{
	border-collapse: collapse; 
	border-spacing:0;
	width:100%;
}

caption, th{
	text-align: left;
}

a:focus {
	outline:none;
}

.clear:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

* html .clear {
	height: 1px;
}

.both{
	clear:both;
}

.inline_block {  
	display: inline-block;  
	*display: inline;  
	*zoom: 1;  
}
*{
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}
a{
	text-decoration:none;
	color:#525252;
}
p a:hover {
	color:#FFA331;
}
body {
	overflow:hidden;
	background:#fff;
}
div, a, p, h1, h2, h3, h4, h5, h6, span, th, td, li, time, footer, button, label, strong, em, b{
	color:#525252;
	font-family: 'Noto Sans JP', sans-serif;
	font-size:16px;
}
b{font-weight:bold;}
img{
	width: 100%;
	display: block;
	height: auto;
}
.grecaptcha-badge {
    position: absolute;
    z-index: -100;
    visibility: hidden;
}
.wpcf7 form .wpcf7-response-output {
    border: none!important;
}
section[class^="index_"]{
}
.width {
	width:80%;
	max-width:1200px;
	margin:0 auto;
}
p{
	margin-bottom:10px;
	letter-spacing:1px;	
}
section a, section span, section b, section strong {
	font-size:100%;
}
.mt10 {margin-top:10%!important;}
.mt8 {margin-top:8%!important;}
.mt5 {margin-top:5%!important;}
.mt3 {margin-top:3%!important;}
.mt0 {margin-top:0%!important;}
.mb0 {margin-bottom:0%!important;}
.mb3 {margin-bottom:3%!important;}
.mb5 {margin-bottom:5%!important;}
.mb8 {margin-bottom:8%!important;}
.mb10 {margin-bottom:10%!important;}

div.float {
    margin: 3% auto;
}
.float p.floatr {
    float: right;
    margin: 0 0 10px 3%;
    width: 47%;
}
.float p.floatl {
    float: left;
    margin: 0 3% 10px 0;
    width: 47%;
}

.center {
	text-align:center!important;
}
.right {
	text-align:right!important;
}
.left {
	text-align:left!important;
}
span.ib {
	display:inline-block!important;
}
span.bu {
	border-bottom:1px solid;
	font-weight:500;
	font-size:100%;
}
span.bo {
	font-size:100%;
	font-weight:600;
}
span.bbig{
	font-weight:bold!important;
	font-size:120%!important;
}
span.yb {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #FFFAC6));
    background: -o-linear-gradient(transparent 60%, #FFFAC6 0%);
    background: linear-gradient(transparent 60%, #FFFAC6 0%);
}


@-webkit-keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}
@-webkit-keyframes fadeinrl {
	from {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes fadeinrl {
	from {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes fadeinlr {
	from {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes fadeinlr {
	from {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes fadeinbt {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeinbt {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes fadeintb {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeintb {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}

.fadein{
	opacity:0;
	-webkit-transition : all 3s;
	-o-transition : all 3s;
	transition : all 3s;
}
.downup .fadein {
	opacity : 0;
	-webkit-transform : translate(0, 50px);
	    -ms-transform : translate(0, 50px);
	        transform : translate(0, 50px);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.updown .fadein {
	opacity : 0;
	-webkit-transform : translate(0, -50px);
	    -ms-transform : translate(0, -50px);
	        transform : translate(0, -50px);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadeinrl .fadein {
	opacity : 0;
	-webkit-transform : translate(80px, 0);
	    -ms-transform : translate(80px, 0);
	        transform : translate(80px, 0);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadeinlr .fadein {
	opacity : 0;
	-webkit-transform : translate(-80px, 0);
	    -ms-transform : translate(-80px, 0);
	        transform : translate(-80px, 0);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadein.scrollin {
	opacity : 1;
	-webkit-transform : translate(0, 0);
	    -ms-transform : translate(0, 0);
	        transform : translate(0, 0);
}

ul[class^="col2_"] > li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3%;
}
ul[class^="col3_"] > li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 3%;
}
ul[class^="col2_"] > li:nth-child(even), ul[class^="col3_"] > li:nth-child(3n){
    margin-right: 0;
}

/*------------------------------------*\
    ヘッダー＆フッダー00
\*------------------------------------*/

header.head1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
header.head1 hgroup {
    width: 230px;
}
header.head1 hgroup a {
    display: block;
    padding: 10px;
}
.menu1 {
    width: auto;
    text-align: right;
}
.menu1 li {
    display: inline-block;
}
.menu1 li a {
    display: block;
    padding: 28.5px 20px;
}
.menur {
    display: none;
}



/*------------------------------------*\
    共通_00
\*------------------------------------*/

.ttl1 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    position: relative;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    color: #fff;
    padding: 2% 0;
    margin: 5% auto;
}
.ttl1::before {
    content: "";
    width: 100vw;
    height: 150%;
    background: #5b9bd5;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
}
.ttl1 span {
    display: block;
    color: #fff;
    font-size: 20px;
}
.ttl2 {
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 5%;
    position: relative;
    font-size: 50px;
	font-weight: 600;
    border-bottom: 3px solid #5b9bd5;
    padding: 0 5%;
}
.ttl2::before {
    content: "";
    width: 3px;
    height: 150%;
    background: #5b9bd5;
    position: absolute;
    right: 5%;
    bottom: 0;
    top: 0;
    margin: auto;
}
.ttl2::after {
    content: "\025c6";
    color: #ecf6fe;
    position: absolute;
    font-size: 600%;
    left: 0;
    bottom: -100%;
    z-index: -1;
}
.ttl2 span, .ttl3 span {
    display: block;
    font-weight: bold;
    color: #5b9bd5;
    font-size: 80%;
}
.ttl3 {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
	border-bottom: 3px solid #5b9bd5;
	margin-bottom:5%;
}
.ttl4 {
    font-size: 20px;
    font-weight: 600;
	margin-bottom:3%;
}
.ttl4 span {
    display: block;
    font-weight: bold;
    color: #ffd43b;
}
.ttl5 {}
.ttl6 {}

section.cta1 {
    background: -o-linear-gradient(40deg, #5b9bd530, #5b9bd5, #5b9bd530);
    background: linear-gradient(50deg, #5b9bd530, #5b9bd5, #5b9bd530);
    padding: 3% 0;
    text-align: center;
}
section.cta1 div.width > p {
    font-size: 30px;
    font-weight: bold;
    color: #ffd43b;
}
section.cta1 div.width > p span {
    font-size: 110%;
    font-weight: bold;
    color: #ffd43b;
}
section.cta1 div.width > p:nth-of-type(2) {
    color: #fff;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px auto 0;
}
section.cta1 div.width > p:nth-of-type(2)::before {
    content: "";
    width: 3px;
    height: 100%;
    background: #fff;
    position: absolute;
    -webkit-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
            transform: rotate(-25deg);
    right: 105%;
    top: 0;
}
section.cta1 div.width > p:nth-of-type(2)::after {
    content: "";
    width: 3px;
    height: 100%;
    background: #fff;
    position: absolute;
    -webkit-transform: rotate(25deg);
        -ms-transform: rotate(25deg);
            transform: rotate(25deg);
    left: 105%;
}
section.cta1 div.width ul li {
    display: inline-block;
    border: 2px solid #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 20px;
    margin: 0 0.5%;
    color: #fff;
    font-weight: 500;
}
section.cta1 div.width > div a {
    position: relative;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 3% auto 0;
    -webkit-box-align: anchor-center;
        -ms-flex-align: anchor-center;
            align-items: anchor-center;
    padding: 10px 20px 10px 200px;
    border-radius: 10px;
    border: 5px ridge #fff;
}
section.cta1 div.width > div a img {
    width: 170px;
    position: absolute;
    left: 10px;
    bottom: 0px;
}
section.cta1 div.width > div a > span {
    font-size: 40px;
    font-weight: bold;
    color: #5b9bd5;
}
section.cta1 div.width > div a span span {
    display: block;
    font-size: 16px;
}
section.cta1 div.width > div a i {
    font-size: 30px;
    margin-left: 20px;
}
section.cta1 div.width > div a:hover {
    background: #ffd43b;
}
section.cta1 div.width > div a:hover span, section.cta1 div.width > div a:hover i {
    color: #fff;
}


/*====================================================================
slider
====================================================================*/
.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sliderArea.w300 {
  max-width: 300px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-slide {
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.thumb .slick-slide:hover {
  opacity: .7;
}
.full-screen .slick-list {
  overflow: visible;
  padding: 0!important;
}
.full-screen.slider {
  max-width: 750px;
  margin: 0 auto;
}
section.mv .sliderArea {
    padding: 0;
    width: 96%;
}
section.mv button.slick-prev {
    left: 30px;
    transform: scale(2.5);
}
section.mv button.slick-next {
    right: 30px;
    transform: scale(2.5);
}

section.dc-slide2 .slick-slide a {
    display: block;
    padding: 3%;
}
section.dc-slide2 .slick-prev {
    left: -10px;
}
section.dc-slide2 .slick-next {
    right: -10px;
}
section.dc-slide2 .slick-slide a > div {
    background: #ecf6fe;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1rem;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
section.dc-slide2 .slick-slide a > div h3 {
    font-size: 25px;
    font-weight: 500;
    margin-inline: auto;
    inline-size: -webkit-fit-content;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
}
section.dc-slide2 .slick-slide a > div h3 span {
	font-weight: 500;
	font-size: 100%;
	color: #5b9bd5;
}
section.dc-slide2 .slick-slide a:hover > div {
    background:#5b9bd5;
}
section.dc-slide2 .slick-slide a:hover > div h3, section.dc-slide2 .slick-slide a:hover > div h3 span {
    color:#fff;
}

ul.col2-slide {
    margin-bottom: 10px;
}
ul.col2-slide li {
    width: 49.5%;
    border: 2px solid #ddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
ul.col2-slide li:first-child {
	margin-right:1%;
}
ul.col2-slide li::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}
ul.col2-slide li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
}
ul.col2-slide li > span:first-child {
    position: absolute;
    z-index: 1;
    top: 0px;
    width: 100%;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    background: #ffd43b;
    color: #fff;
    font-size: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3px 0;
    text-transform: uppercase;
}
ul.col2-slide li:nth-child(2) > span:first-child {
	background:#ff9a3b;
}
span.pricedown {
    position: absolute;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 130%;
    padding: 5px 12px;
    top: 40px;
    left: 5px;
    -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
            transform: rotate(-15deg);
}
span.pricedown span {
    display: block;
    color: #fff;
    font-size: 150%;
}

/*====================================================================
 slider end
====================================================================*/



/*------------------------------------*\
    トップページ00
\*------------------------------------*/

section.mv {
    position: relative;
}

.form_attention_txt {
    text-align: center;
}
.form_attention_txt img {
    max-width: 900px;
    margin: 0 auto 3%;
}
.form_attention_txt h3 {
    font-size: 30px;
    font-weight: bold;
}
.form_attention_txt h3 span {
    font-size: 110%;
    font-weight: bold;
    color: #c14e4e;
}
.form_attention_txt h3 span:nth-of-type(2) {
    color: #5b9bd5;
}
.form_attention_txt p:last-child {
    background: red;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px auto;
    padding: 3px 10px;
}

ul.img-txt-grade {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
ul.img-txt-grade > li {
    width: 48%;
    margin-bottom: 4%;
    position: relative;
    padding: 3%;
    background: -webkit-gradient(linear, left bottom, left top, from(#ffffffd6), color-stop(50%, #ffffffd6), to(#ffffff00));
    background: -o-linear-gradient(bottom, #ffffffd6, #ffffffd6 50%, #ffffff00);
    background: linear-gradient(0deg, #ffffffd6, #ffffffd6 50%, #ffffff00);
    padding-top: 15%;
}
ul.img-txt-grade > li::before {
    content:"";
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 1px solid #fff;
    position: absolute;
    top: 19px;
    left: 19px;
}
ul.img-txt-grade > li p.img {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    width: 100%;
    height: 100%;
}
ul.img-txt-grade > li p.img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

section.back_check {
    position: relative;
    padding: 3% 0;
}
section.back_check::before {
    content:"";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: #eaf6fb;
  background-image:
    -o-linear-gradient(#ffffff 1px, transparent 1px),
    -o-linear-gradient(left, #ffffff 1px, transparent 1px);
  background-image:
    linear-gradient(#ffffff 1px, transparent 1px),
    linear-gradient(90deg, #ffffff 1px, transparent 1px);
  background-size: 20px 20px;
}


/*------------------------------------*\
    アーカイブ00
\*------------------------------------*/





/*------------------------------------*\
    下層ページ00
\*------------------------------------*/







@media screen and (max-width: 1000px) {
.width {
	width:90%;
}
p {
	font-size:15.5px;
	margin-bottom:8px;
}

/*------------------------------------*\
    ヘッダー＆フッダー1000
\*------------------------------------*/
div.menu1 {
	display:none;
}
div.menur {
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
}
.r-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    width: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10000;
    background-color: #2f3f55;
}
.r-btn span,
.r-btn span:before,
.r-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.r-btn span:before {
    bottom: 8px;
}
.r-btn span:after {
    top: 8px;
}
#label1:checked ~ .r-btn span {
    background-color: #fff0;
}
#label1:checked ~ .r-btn span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
#label1:checked ~ .r-btn span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
#label1 {
    display: none;
}
.hidden_box .hidden_show {
    height: 0;
    padding: 0 80px 0 10px;
    overflow: hidden;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    text-align: center;
    -webkit-box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
    box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
    max-height: 100vh;
}
.hidden_show > p {
	opacity:0;
	width: 70%;
	margin:0 auto 5%;
	max-width: 300px;
}
.hidden_show ul.nav1 {
    height: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    max-width: 600px;
}
.hidden_box input:checked ~ .hidden_show {
    padding: 20px 80px 30px 10px;
    height: auto;
    opacity: 1;
    margin: 0 auto;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-box-sizing:border-box;
    box-sizing:
    border-box;
    overflow: scroll;
    background: #ddd;
}
.hidden_box input:checked ~ .hidden_show > p {
	opacity:1;
}
.hidden_box input:checked ~ .hidden_show ul.nav1 {
	opacity: 1;
	height: auto;
}
.hidden_show ul.nav1 > li{
    border-bottom: 1px solid #fff;
}
.hidden_show ul.nav1 > li:last-child{
    border-bottom: unset;
}
.hidden_show ul.nav1 > li > a {
    padding: 10px 0;
    display: block;
    font-size: 110%;
}


/*------------------------------------*\
    共通_1000
\*------------------------------------*/

.ttl1 {}
.ttl2 {}
.ttl3 {}
.ttl4 {}
.ttl5 {}
.ttl6 {}




/*------------------------------------*\
    トップページ1000
\*------------------------------------*/





/*------------------------------------*\
    アーカイブ1000
\*------------------------------------*/





/*------------------------------------*\
    下層ページ1000
\*------------------------------------*/

}





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

.width {
	width:96%;
}
p {
	font-size:15px;
	letter-spacing:0.5px;
	margin-bottom:5px;
}
.float p.floatr,.float p.floatl {
	float:unset;
	width:100%;
	margin:0 auto 10px;
}



/*------------------------------------*\
    ヘッダー＆フッダー700
\*------------------------------------*/




/*------------------------------------*\
    共通_700
\*------------------------------------*/

.ttl1 {}
.ttl2 {}
.ttl3 {}
.ttl4 {}
.ttl5 {}
.ttl6 {}

section.bread li {
    font-size: 12px;
}
section.bread li a {
    padding: 13px 0;
}





/*------------------------------------*\
    トップページ700
\*------------------------------------*/





/*------------------------------------*\
    アーカイブ700
\*------------------------------------*/





/*------------------------------------*\
    下層ページ700
\*------------------------------------*/

}




/*------------------------------------*\
    リプレ株式会社
\*------------------------------------*/
div#repre header.head1 hgroup a {
	-webkit-filter:drop-shadow(4px 0px 2px #fff);
	        filter:drop-shadow(4px 0px 2px #fff);
}
div#repre .menu1 a {
	color:#fff;
}
div#repre section.mv::before {
    content: "";
    background: url(https://www.repre-reform.com/wp-content/uploads/2022/04/back1.jpg)no-repeat center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -50%;
    z-index: -3;
}

@media screen and (max-width: 1000px) {
div#repre .r-btn {
    background: #fff;
}
div#repre .r-btn span,
div#repre .r-btn span:before,
div#repre .r-btn span:after {
    background: #36a574;
}
div#repre .hidden_box input:checked ~ .hidden_show {
    background: #dcf7da;
}

}