/*
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.1
Tested up to: 6.4
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&family=Noto+Serif+JP:wght@600;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{
	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: center;
	-ms-flex-pack: center;
	justify-content: center;
}

table{
	border-collapse: collapse; 
	border-spacing:0;
}

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;  
}

a{
	text-decoration:none;
	color:#525252;
}
a:hover {
	color:#F01C1C;
}
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;
}
.serif {
	font-family: 'Noto Serif JP', serif;
	font-weight:600;
}
b{font-weight:bold;}
.bold500 {
	font-weight: 500;
}
.bold700 {
	font-weight: 700;
}
img{
	width: 100%;
	display: block;
	height:auto;
}
.width {
	width:80%;
	max-width:1200px;
	margin:0 auto;
}
.width p{
	margin-bottom:10px;
	line-height:28px;
	letter-spacing:1px;	
}
.mb15 {margin-bottom:15%;}

@-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);
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}


/*------------------------------------*\
    ヘッダー＆フッダー
\*------------------------------------*/
header#top {
    position: absolute;
    width: 100%;
    background: #000000a6;
    font-size: 0;
    z-index: 10;
}
header#top hgroup {
    display: inline-block;
    width: 114px;
    vertical-align: top;
}
header#top hgroup a {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 7px 15px;
    -webkit-filter: drop-shadow(0px 0px 4px #000);
    filter: drop-shadow(0px 0px 4px #000);
}
.menu {
    display: inline-block;
    width: calc(100% - 124px);
    text-align: right;
    font-size: 0;
}
.menu li {
    display: inline-block;
}
.menu li a {
    color: #fff;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 28px 14px;
    letter-spacing: 1px;
}
.menu li a:hover {
    color: #F01C1C;
}
.menur {
    display: none;
}
div.sns {
    position: absolute;
    right: 0;
    top: 95px;
}
div.sns ul {
	font-size:0;
}
div.sns li {
    display: inline-block;
    margin-right: 15px;
    width: 50px;
}
div.sns li a {
    display: block;
}
div.sns li a:hover {
    opacity: 0.8;
}


section.footer {
    margin: 10% auto 0;
}
div.top-access iframe {
    height: 450px;
    width: 100%;
    margin-bottom: 30px;
}
section.footer div.width {
    font-size: 0;
}
section.footer div.width table {
    display: inline-block;
    width: calc(95% - 500px);
    margin-right: 5%;
    min-width: 50%;
}
section.footer div.width table tbody {
    display: block;
}
section.footer div.width table tr {
    border-bottom: 1px solid;
    display: block;
}
section.footer div.width table th {
    width: 130px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}
section.footer div.width table td {
    font-size: 18px;
    padding: 15px;
}
section.footer div.width table td a {
    display: inline-block;
    font-size: 18px;
}
section.footer div.fbfeed {
    display: inline-block;
	width:500px;
    max-width: 45%;
}
section.footer div.sitemap {
    width: 100%;
    margin: 8% auto 0;
}
section.footer div.sitemap > p {
    font-size: 30px;
    margin-bottom: 3%;
    text-align: center;
}
section.footer div.sitemap ul:nth-of-type(1) {
	margin-bottom:3%;
	text-align: center;
}
section.footer div.sitemap ul:nth-of-type(1) li {
    display: inline-block;
}
section.footer div.sitemap ul:nth-of-type(1) li a {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    font-size: 18px;
}
section.footer ul.link1 li img {
    max-width: 50px;
}
footer#colophon {
    margin-top: 5%;
    background: #F01C1C;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    letter-spacing: 3px;
}


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

section.main {
    position: relative;
    overflow: hidden;
    max-height: 90vh;
}
section.main div {
    position: absolute;
    left: 5%;
    top: 20%;
}
section.main div h1 {
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    padding-left: 15px;
}
section.main div p {
    font-size: 20px;
    font-family: 'Noto Serif JP', serif;
    background: #fff;
    margin-bottom: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8px 15px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    letter-spacing: 3px;
}
section.main div p:last-child {
    background: none;
    padding: 0;
    letter-spacing: 1px;
}
section.main div p strong {
    font-family: 'Noto Serif JP', serif;
    font-size: 40px;
}
section.main div p a {
    background: #F01C1C;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 7px 20px;
    border-radius: 50px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
section.main div p a:hover {
    background: #000;
}
section.main p.japan {
    position: absolute;
    width: 40%;
    right: 5%;
    top: 130px;
}
section.main p.ptp {
    position: absolute;
    width: 35%;
    right: 10%;
    top: 130px;
}
section.main div p a img {
    display: inline-block;
    width: 50px;
    margin-right: 7px;
    vertical-align: middle;
}
section.main div p a span {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}
section.index1 li {
    width: 50%;
    text-align: center;
    padding: 3%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
section.index1 li:nth-child(1) {
    background: url(https://tsu-nagu.com/wp-content/uploads/2022/06/img1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
section.index1 li:nth-child(1)::before {
    content: "";
    background: #000000a6;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}
section.index1 li:nth-child(2) {
    background: #525252;
}
section.index1 li:nth-child(3) {
    background: #797979;
}
section.index1 li:nth-child(4) {
    background: #a4a4a4;
}
section.index1 li h2 {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    bottom: 0;
    top: 0;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
    font-weight: 700;
    left: 0;
    letter-spacing: 3px;
}
section.index1 li h2 span {
    display: block;
    font-family: 'Noto Serif JP', serif;
    color: #F01C1C;
    font-size: 20px;
    margin-top: 10px;
    letter-spacing: 1px;
}
section.index1 li h3 {
    color: #fff;
    font-size: 25px;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 15px;
    letter-spacing: 3px;
}
section.index1 li p {
    color: #fff;
    text-align: justify;
    line-height: 28px;
    letter-spacing: 0.5px;
}
section.index1 li p a {
    display: block;
    text-align: center;
    width: 200px;
    margin: 15px auto 0;
    background: #fff;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8px 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
section.index1 li p a:hover {
    background: #F01C1C;
    color: #fff;
}
section.index2 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}
section.index2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
}
section.index2 ul:first-child {
    -webkit-animation: loop 50s -25s linear infinite;
    animation: loop 50s -25s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
section.index2 ul + ul {
    -webkit-animation: loop2 50s linear infinite;
    animation: loop2 50s linear infinite;
}
section.index2 ul li {
    display: inline-block;
    width: calc(100vw / 5);
    list-style: none;
    text-align: center;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
section.index2 ul li::before {
    content: "";
    padding-top: 100%;
    display: block;
}
section.index2 ul li img {
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
section.index2 ul li.gallery {
    background: #f01c1c;
}
section.index2 ul li.gallery::after {
    content: "";
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    position: absolute;
    border: 1px solid #fff;
    left: 20px;
    top: 20px;
}
section.index2 ul li h2,section.index2 ul li p {
    position: absolute;
    top: 0;
    bottom: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    text-align: center;
    margin: auto;
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
}
section.index2 ul li h2 span,section.index2 ul li p span {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
    color: #fff;
}

.title1 {
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    padding-top: 8%;
    font-size: 50px;
    letter-spacing: 5px;
    margin-bottom: 5%;
    font-weight: 700;
}
.title1 span {
    font-family: 'Noto Serif JP', serif;
    display: block;
    letter-spacing: 1px;
    font-size: 20px;
    color: #F01C1C;
}
.title2 {
    position: relative;
    text-align: center;
    font-size: 30px;
    font-family: 'Noto Serif JP', serif;
    padding-top: 60px;
    margin: 8% auto;
    font-weight: 700;
}
.title2 span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    color: #ddd;
    font-size: 100px;
    font-weight: 700;
    z-index: 0;
    font-family: 'Noto Serif JP', serif;
    z-index: -1;
}
section.index3,section.index4 {
    position: relative;
	margin-bottom:10%;
}
section.index3 > div > ul, section.index4 > div > ul {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
section.index3 > div > ul > li, section.index4 > div > ul > li {
    width: 38%;
}
section.index3 > div > ul > li:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 55%;
    margin-left: 7%;
}
section.index4 > div > ul > li:nth-child(1) {
	width: 55%;
    margin-right: 7%;
}
section.index3 > p {
    position: absolute;
    left: -20%;
    top: -10%;
    width: 100%;
    z-index: -1;
}
section.index4 > p {
    position: absolute;
    right: -20%;
    top: -10%;
    width: 100%;
    z-index: -1;
}
ul.list1 li {
    background: #ffffffb8;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3%;
    margin-bottom: 5%;
}
ul.list1 li:last-child {
    margin-bottom: 0;
}
ul.list1 li h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
ul.list1 li h3 span {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 40px;
    font-weight: 700;
}
ul.link1 {
    font-size: 0;
    text-align: center;
}
ul.link1 li {
    display: inline-block;
    width: 47%;
    margin-right:6%;
    max-width: 170px;
}
ul.link1 li:last-child {
	margin-right:0;
}
ul.link1 li a {
    display: block;
    text-align: center;
    background: #525252;
    border-radius: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px 0;
    -webkit-box-shadow: 0px 0px 16px 5px #070707 inset;
            box-shadow: 0px 0px 16px 5px #070707 inset;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.link1 li a img {
    width: 50%;
    margin: 0 auto;
    max-width: 80px;
}
ul.link1 li a span {
    color: #fff;
    margin-top: 3px;
    display: block;
    font-family: 'Noto Serif JP', serif;
}
ul.link1 li a:hover {
    background: #f01c1c;
    -webkit-box-shadow: 0px 0px 16px 5px #7b1d1d inset;
            box-shadow: 0px 0px 16px 5px #7b1d1d inset;
}
.pay {
    width: 100%;
    max-width: 500px;
    margin: 8% auto 0;
    text-align: center;
    background: #ffffffb8;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3%;
}

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

.back1 {
    background: url(https://tsu-nagu.com/wp-content/uploads/2022/06/back1.png);
    background-size: contain;
    background-repeat: no-repeat;
}
section.archive {
    margin: 8% auto 0;
    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;
}
div.col1 {
    width: calc(97% - 250px);
    margin-right: 3%;
}
div.col2 {
    width: 250px;
    background: #ddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 3px;
}
ul.works {
}
ul.works li {
    background: #ffffffb8;
    margin-bottom: 3%;
}
ul.works li a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3%;
    display: block;
    font-size: 0;
}
ul.works li a > p {
    display: inline-block;
    background: #f01c1c;
    text-align: center;
    margin: 0 10px 0 0;
    width: 130px;
    height: 130px;
    padding-top: 35px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.works li a > p span {
    display: block;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
}
ul.works li a:hover > p {
    background: #525252;
}
ul.works li a > div {
    display: inline-block;
    width: calc(100% - 140px);
    vertical-align: top;
}
ul.works li a > div h2 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 23px;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 3px;
    padding-top: 5px;
    letter-spacing: 1px;
}
ul.works li a > div p:nth-of-type(1) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 0 auto 5px;
    height: 3.5rem;
}
ul.works li a > div p:last-child {
    margin: 0;
    text-align: right;
    font-size: 14px;
    color: #f01c1c;
}
nav.works-nav ul {
    margin: 8% auto 0;
    font-size: 0;
}
nav.works-nav ul li {
    display: inline-block;
    width: 50%;
}
nav.works-nav ul li:last-child {
    text-align: right;
}
nav.works-nav ul li a {
    display: inline-block;
    width: 100px;
    background: #525252;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 0;
    letter-spacing: 5px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
nav.works-nav ul li:last-child a {
    padding: 10px 0 10px 5px;
}
nav.works-nav ul li a:hover {
    background: #f01c1c;
}
div.col2 h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    background: #fff;
    padding: 1px 10px 2px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
div.col2 ul {
    margin-bottom: 15px;
}
div.col2 li {
    margin-bottom: 5px;
}
div.col2 ul.wp-block-latest-posts__list.wp-block-latest-posts li:nth-child(n+4) {
    display: none;
}
div.col2 li a {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 10px 0 15px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}
section.articlebody {
    background: #ffffffb8;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3%;
}
section.articlebody h1 {
    font-size: 28px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 2px;
    border-bottom: 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 5px;
}
section.articlebody p.date {
    text-align: right;
    margin-bottom: 15px;
    color: #f01c1c;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 5px;
}
section.articlebody p img.float {
    width: 47%;
    float: left;
    margin: 0 3% 10px 0;
}
nav.single-nav {
    margin: 8% auto 0;
}
nav.single-nav ul {
    font-size: 0;
}
nav.single-nav ul li {
    display: inline-block;
    width: 50%;
}
nav.single-nav ul li:last-child {
    text-align: right;
}
nav.single-nav ul li a {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 90%;
    position: relative;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 10%;
}
nav.single-nav ul li:last-child a {
    padding: 10px 20px 10px 10px;
}
nav.single-nav ul li a span {
    font-size: 100%;
}
nav.single-nav ul li:last-child a span {
    position: absolute;
    right: 10px;
    top: 10px;
}
p.tolink1 {
    text-align: center;
}
p.tolink1 a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    background: #525252;
    color: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 25px;
    border-radius: 50px;
    letter-spacing: 2px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
p.tolink1 a:hover {
    background: #f01c1c;
}

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

section.page-head {
    position: relative;
}
section.page-head h1, section.page-head p.title {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    left: 0;
    right: 0;
    bottom: 10%;
    margin: auto;
    z-index: 1;
    background: #000000a6;
    color: #fff;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 50px;
    letter-spacing: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2% 8%;
}
section.page-head h1 span, section.page-head p.title span {
    display: block;
    color: #fff;
    font-size: 50%;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 1px;
}
section.page-head > p {
    height: 80.39px;
    overflow: hidden;
}
section.page-head section.index2:hover ul {
    -webkit-animation-play-state: unset;
            animation-play-state: unset;
}
section.message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 8%;
}
section.message > p {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 30%;
    margin: 0 0 0 -10%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    max-width: 280px;
}
section.message > p::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}
section.message > p img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
}
section.message > div {
    width: 80%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3% 13% 3% 3%;
    -webkit-box-shadow: 4px 4px 12px 0px rgb(0 0 0 / 23%);
    box-shadow: 4px 4px 12px 0px rgb(0 0 0 / 23%);
}
section.message > div p:last-child {
    margin-bottom: 0;
}
.floatl1 p.float {
    width: 35%;
    float: left;
    max-width: 300px;
    margin: 0 5% 10px 0;
}
table.company {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
table.company tr {
    border-top: 1px solid;
}
table.company tr:last-child {
    border-bottom: 1px solid;
}
table.company th {
    background: #F01C1C;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px 0;
    width: 200px;
    border-bottom: 1px solid;
    font-size: 18px;
    border-left: 1px solid #525252;
    text-align: center;
    letter-spacing: 5px;
    vertical-align: top;
    border-right: 1px solid #525252;
}
table.company tr:last-child th {
    border-bottom: unset;
}
table.company td {
    padding: 30px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    letter-spacing: 1.5px;
    border-right: 1px solid;
    line-height: 30px;
}
table.company td a {
    font-size: 18px;
    display: inline-block;
}
table.company td a:hover {
    color: #F01C1C;
}
section.top-access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
section.top-access div {
    width: 50%;
    position: relative;
}
section.top-access iframe {
    height: 100%;
    width: 100%;
}
section.top-access div > span {
    position: absolute;
    background: #ffffffab;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
    display: block;
    padding: 10px 0;
}
section.top-access div > span span {
    display: block;
    color: #f01c1c;
}
ul.sitemap {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
ul.sitemap > li {
    width: 38%;
}
ul.sitemap > li:first-child {
    width: 55%;
    margin-right: 7%;
}
ul.sitemap-in li {
    display: block;
    border-bottom: 1px solid #f01c1c;
}
ul.sitemap-in li a {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
}
ul.sitemap-in li a:hover {
    color: #F01C1C;
}
section.form {
    margin: 8% auto 0;
    max-width: 1000px;
}
section.form table {
    width: 100%;
}
section.form table tr {
    border-bottom: 15px solid #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
section.form table th {
    background: #ddd;
    vertical-align: top;
    width: 230px;
    text-align: center;
    padding: 20px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
}
section.form table th span {
    color: #F01C1C;
    font-size: 14px;
    padding-left: 5px;
}
section.form table td {
    padding: 1px 0 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
section.form table td.td {
    padding: 20px 0 20px 20px;
    vertical-align: middle;
}
section.form table td span {
	font-size:18px;
}
section.form table td span.rei {
    display: block;
    margin-top: 3px;
    font-size: 15px;
}
section.form table td span.wpcf7-list-item {
    margin: 0 1em 0 0;
    line-height: 28px;
    letter-spacing: 1px;
}
div.wpcf7 td span.wpcf7-list-item-label {
    cursor: pointer;
}
section.form table td span.acceptance-001 span.wpcf7-list-item {
	margin:0;
}
section.form table td span.wpcf7-form-control-wrap {
    display: block;
}
section.form table td input.wpcf7-text, section.form table td textarea.wpcf7-textarea {
    border: 1px solid #b6b6b6;
    background: #f5f5f5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
section.form table td input.wpcf7-text {
    width: 80%;
    max-width: 400px;
    height: 35px;
}
section.form table td textarea.wpcf7-textarea {
    width: 100%;
}
section.form p span.wpcf7-spinner {
    vertical-align: sub;
}
section.form p input.wpcf7-form-control.wpcf7-submit {
    padding: 10px 30px;
    background: #ddd;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    margin-top: 50px;
    margin-left: 72px;
    color: #707070;
}
section.form p input.wpcf7-form-control.wpcf7-submit:hover {
    background: #F01C1C;
    color: #fff;
}
section.form form > p {
    text-align: center;
}
.wpcf7 form .wpcf7-response-output {
    border: none!important;
}

ul.service {
}
ul.service li {
    font-size: 0;
}
ul.service li h2 {
    font-family: 'Noto Serif JP', serif;
    padding-top: 10%;
    position: relative;
    font-size: 50px;
}
ul.service li:nth-child(even) h2 {
    text-align: right;
}
ul.service li h2 span {
    font-family: 'Noto Serif JP', serif;
    display: block;
    position: absolute;
    left: 0;
    bottom: -50px;
    color: #F01C1C;
    font-size: 30px;
    font-weight: bold;
}
ul.service li:nth-child(even) h2 span {
    left: auto;
    right: 0;
}
ul.service li > p {
    width: 50%;
    margin: 0 0 0 auto;
}
ul.service li:nth-child(even) > p {
    margin: 0 auto 0 0;
}
ul.service li > div {
    width: 70%;
    margin: -15% auto 0 0;
    background: #ffffffcf;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3%;
    -webkit-box-shadow: 4px 4px 12px 0px rgb(0 0 0 / 23%);
    box-shadow: 4px 4px 12px 0px rgb(0 0 0 / 23%);
    position: relative;
}
ul.service li:nth-child(even) > div {
    margin: -15% 0 0 auto;
}
ul.flow {
    margin: 8% auto 15%;
}
ul.flow li {
    background: #ddd;
    margin-bottom: 5%;
    position: relative;
    font-size: 0;
}
ul.flow li::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 50px solid #F01C1C;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -25px;
}
ul.flow li:last-child::after {
	display:none;
}
ul.flow li div:first-child {
    width: 30%;
    display: inline-block;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3%;
}
ul.flow li div:first-child img:nth-child(2) {
    position: absolute;
    right: -5%;
    top: -5%;
    width: 100px;
}
ul.flow li div:nth-child(2) {
    display: inline-block;
    width: 70%;
    vertical-align: top;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3%;
}
ul.flow li div h2 {
    font-size: 30px;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 3%;
}
ul.flow li div h2 span {
    font-family: 'Noto Serif JP', serif;
    display: block;
    color: #fff;
    font-size: 30px;
}

section.online {
    padding-top: 8%;
}












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

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

header#top hgroup {
    width: 100%;
}
header#top hgroup a {
    width: 104px;
    padding: 7px 10px;
}
.menu {
    display: none;
}
.menur {
    display: block;
    position: relative;
}
.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: 90;
    background-color: #F01C1C;
    border-radius: 3px;
}
.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 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: left;
    margin: 0 auto 0;
    background: #000000cf;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 73%);
    box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 73%);
    z-index: 10;
}
.hidden_show ul.nav1-a {
    height: 0;
    padding: 0;
    overflow: hidden;
    width: calc(100% - 70px);
}
.hidden_box input:checked ~ .hidden_show {
    padding: 10px;
    height: auto;
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 100%;
    overflow: scroll;
}
.hidden_box input:checked ~ .hidden_show ul.nav1-a {
    opacity: 1;
    height: auto;
}
.hidden_show ul.nav1-a li {
    border-bottom: 1px solid #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 0;
}
.hidden_show ul.nav1-a li:last-child {
    border: unset;
}
.hidden_show ul.nav1-a li a {
    display: block;
    padding: 9px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    font-size: 15px;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
}
.hidden_show > p a {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 7px 10px;
    -webkit-filter: drop-shadow(0px 0px 4px #000);
    filter: drop-shadow(0px 0px 4px #000);
    width: 104px;
    margin: -10px 0 0 -10px;
}
div.sns {
    top: 19px;
    right: 70px;
}
div.sns li {
    width: 43px;
    right: 10px;
}

section.footer div.width table th {
    font-size: 16px;
    padding: 10px;
    width: 110px;
}
section.footer div.width table td {
    font-size: 16px;
    padding: 10px;
    letter-spacing: 0.5px;
}
section.footer div.width table td a {
    font-size: 16px;
}
section.footer div.sitemap ul:nth-of-type(1) li a {
    padding: 0 10px 18px;
    font-size: 16px;
}





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

section.main div p strong {
    font-size: 35px;
}
section.main div p a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
section.main p.japan {
    top: auto;
    bottom: 0;
}
section.main p.ptp {
    top: auto;
    bottom: 5%;
    right: 5%;
}
section.index1 li h2 {
    font-size: 25px;
}
section.index1 li h3 {
    font-size: 23px;
    margin-bottom: 10px;
}
section.index1 li p {
    font-size: 15.5px;
    line-height: 27px;
}
section.index1 li p a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    font-size: 15px;
    width: 160px;
    letter-spacing: 0;
}
section.index2 ul li {
    width: calc(100vw / 4);
}
section.index2 ul li:first-child {
    display: none;
}
section.index2 ul li.gallery::after {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    left: 14px;
    top: 14px;
}
section.index2 ul li h2, section.index2 ul li p {
    font-size: 18px;
}
section.index2 ul li h2 span, section.index2 ul li p span {
    font-size: 28px;
}
.title1 {
    font-size: 40px;
}
ul.list1 li h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
ul.list1 li h3 span {
    font-size: 30px;
}
ul.link1 li {
    width: 48%;
    margin-right: 4%;
}
ul.link1 li a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
ul.link1 li a span {
    font-size: 15px;
}



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

div.col1 {
    width: calc(97% - 200px);
}
div.col2 {
    width: 200px;
}
ul.works li a > p {
    width: 110px;
    height: 115px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    padding-top: 28px;
}
ul.works li a > p span {
    font-size: 12px;
}
ul.works li a > div {
    width: calc(100% - 120px);
}
ul.works li a > div h2 {
    font-size: 20px;
    padding: 0;
}
ul.works li a > div p:nth-of-type(1) {
    margin: 0 auto;
}
nav.works-nav ul li a {
    font-size: 15px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
div.col2 h2 {
    font-size: 17px;
}
div.col2 li a {
    font-size: 15.5px;
}
section.articlebody h1 {
    font-size: 25px;
}
section.articlebody p img.float {
    float: unset;
    width: 100%;
    margin: 0 auto 10px;
    max-width: 500px;
}
p.tolink1 a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}


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

section.page-head h1, section.page-head p.title {
    font-size: 45px;
}
table.company th {
    font-size: 16px;
    line-height: 28px;
    width: 180px;
	padding: 20px 0;
}
table.company td {
    font-size: 16px;
    line-height: 28px;
	padding: 20px;
}
table.company td a {
    font-size: 16px;
    line-height: 28px;
}
section.top-access div > span {
    font-size: 20px;
}
section.top-access div > span span {
    font-size: 70%;
}
section.form table tr {
    border-bottom: 10px solid #fff;
}
section.form table th {
    padding: 15px 0;
    width: 180px;
    font-size: 16px;
}
section.form table td {
    padding: 5px 0px 0 15px;
}
section.form table td.td {
    padding: 15px 0 15px 15px;
}
section.form table td span {
    font-size: 16px;
}
section.form p input.wpcf7-form-control.wpcf7-submit {
    margin-top: 30px;
    font-size: 16px;
	-webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}

ul.service li h2 {
    font-size: 40px;
    margin-bottom: 10px;
}
ul.service li h2 span {
    bottom: -35px;
    font-size: 25px;
}

ul.flow li::after {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #F01C1C;
    bottom: -18px;
}
ul.flow li div:first-child img:nth-child(2) {
    width: 80px;
}
ul.flow li div h2 {
    font-size: 25px;
}
ul.flow li div h2 span {
    font-size: 90%;
}




	
	




}

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

.width {
	width:96%;
}
.width p {
	font-size:15px;
	letter-spacing:0.5px;
	line-height:26px;
	margin-bottom:5px;
}
a, span, b {
	font-size:15px;
}

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

div.top-access iframe {
    height: 300px;
    margin-bottom: 10px;
}
section.footer div.width table {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
section.footer div.fbfeed {
    max-width: 100%;
    width: 100%;
    text-align: center;
}
section.footer div.sitemap {
    display: block;
    width: 100%;
}
section.footer div.sitemap > p {
    font-size: 20px;
    margin-bottom: 20px;
}
section.footer ul.link1 li {
    width: 40%;
    max-width: 120px;
}
section.footer ul.link1 li a {
    padding: 10px 0;
}
footer#colophon {
    margin-top: 10%;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 10px 0;
}



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

section.main {
    max-height: 450px;
}
section.main p:last-child {
    width: 200%;
}
section.main div {
    width: 96%;
    top: 100px;
    left: 2%;
    z-index: 1;
}
section.main div h1 {
    font-size: 16px;
    padding-left: 10px;
}
section.main div p {
    font-size: 16px;
    letter-spacing: 0px;
    padding: 6px 8px;
    margin-bottom: 10px;
}
section.main div p strong {
    font-size: 20px;
}
section.main div p a {
    padding: 9px 10px;
}
section.main div p a img {
    width: 35px;
}
section.main div p a span {
    letter-spacing: 0;
    padding-right: 5px;
}
section.main p.japan {
    top: auto;
    bottom: 0;
    right: 1%;
}
section.main p.ptp {
    right: 1%;
    width: 38%;
}
section.index1 li {
    width: 100%;
    padding: 15px 2%;
}
section.index1 li h2 {
    position: relative;
    font-size: 20px;
    padding: 10px 0;
}
section.index1 li h2 span {
    font-size: 16px;
    margin-top: 3px;
}
section.index1 li h3 {
    font-size: 18px;
    margin-bottom: 7px;
}
section.index1 li p {
    font-size: 15px;
    line-height: 26px;
}
section.index1 li p a {
    width: 140px;
    font-size: 14px;
}
section.index2 ul li {
    width: calc(100vw / 3);
}
section.index2 ul li:nth-child(2) {
    display: none;
}
section.index2 ul li.gallery::after {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    left: 9px;
    top: 9px;
}
section.index2 ul li h2, section.index2 ul li p {
    font-size: 14px;
}
section.index2 ul li h2 span, section.index2 ul li p span {
    font-size: 18px;
}
.title1 {
    font-size: 28px;
}
.title1 span {
    font-size: 16px;
}
.title2 {
    font-size: 25px;
    padding-top: 40px;
}
.title2 span {
    font-size: 60px;
}
section.index3 > div > ul > li, section.index4 > div > ul > li {
    width: 100%;
}
section.index3 > div > ul > li:nth-child(1) {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 100%;
    margin: 0 auto 5%;
}
section.index4 > div > ul > li:nth-child(1) {
    width: 100%;
    margin: 0 auto 5%;
}
ul.list1 li h3 {
    font-size: 16px;
}
ul.list1 li h3 span {
    font-size: 23px;
}
ul.link1 li a img {
    width: 30%;
}
ul.link1 li a span {
	font-size:14px;
}
section.index3 > p {
    width: 200%;
    left: -50%;
    top: 0;
}
section.index4 > p {
    width: 200%;
    top: 0;
    right: -50%;
}
.pay > p {
    font-size: 75%;
    line-height: normal;
    margin-bottom: 10px;
}


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

.back1 {
    background-size: cover;
}
div.col1,div.col2 {
    width: 100%;
    margin: 0 auto;
}
ul.works li a > p {
    display: block;
    width: 100%;
    height: auto;
    padding: 3px 0;
    margin-bottom: 5px;
}
ul.works li a > p span {
    display: inline-block;
    padding: 0 5px;
    font-size: 14px;
}
ul.works li a > div {
    width: 100%;
    display: block;
}
ul.works li a > div h2 {
    font-size: 18px;
}
ul.works li a > div p:last-child {
    font-size: 12px;
    line-height: normal;
}
nav.works-nav ul li a {
    width: 85px;
    margin-bottom: 20%;
}
div.col2 h2 {
    font-size: 16px;
    margin-bottom: 8px;
}
div.col2 li a {
    font-size: 15px;
}
section.articlebody h1 {
    font-size: 20px;
}
section.articlebody p.date {
    font-size: 14px;
    margin-bottom: 5px;
}
p.tolink1 {
    margin: 0 auto 10%;
}




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

section.page-head h1, section.page-head p.title {
    font-size: 29px;
}
table.company tr, table.company tr:last-child {
    border: unset;
}
table.company th {
    display: block;
    width: 100%;
    padding: 8px 0;
    border: unset;
    letter-spacing: 3px;
}
table.company td {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: unset;
    line-height: normal;
    background:#ddd;
}
table.company td a {
    font-size: 15px;
    line-height: normal;
}
section.top-access div {
    width: 100%;
}
section.top-access iframe {
    height: 300px;
}
ul.sitemap > li {
    width: 100%;
}
ul.sitemap > li:first-child {
    width: 100%;
    margin: 0 auto 5%;
}
section.form table tr {
    border-bottom: none;
    display: block;
}
section.form table th {
    display: block;
    width: 100%;
    padding: 10px 0;
}
section.form table td {
    padding: 5px 0 10px;
    width: 100%;
    display: block;
}
section.form table td.td {
    padding: 10px;
}
section.form table td span.wpcf7-list-item span {
    font-size: 15px;
    letter-spacing: 0.5px;
}
section.form table td input.wpcf7-text {
    width: 100%;
}
section.form table td div.schedule p span.rei {
    padding: 0;
    margin-top: 0;
}
section.form p input.wpcf7-form-control.wpcf7-submit {
    margin-top: 15px;
    padding: 10px 25px;
}
section.message > p {
    order: 0;
    margin: 0 auto -10%;
    width: 35%;
}
section.message > div {
    width: 100%;
    padding: 14% 3% 3% 3%;
}

ul.service li h2,ul.service li:nth-child(even) h2 {
    text-align: center;
    font-size: 25px;
}
ul.service li h2 span,ul.service li:nth-child(even) h2 span {
    position: unset;
    font-size: 16px;
}
ul.service li > p {
    width: 100%;
}
ul.service li > div,ul.service li:nth-child(even) > div {
    width: 90%;
    margin: -30% auto 0;
}

ul.flow li {
    margin-bottom: 30px;
}
ul.flow li div:first-child {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 10%;
}
ul.flow li div:first-child img:nth-child(2) {
    right: 2%;
    width: 30%;
    max-width: 100px;
}
ul.flow li div:nth-child(2) {
    width: 100%;
    padding: 0 3% 20px;
}
ul.flow li div h2 {
    font-size: 20px;
}




}