﻿@charset "UTF-8";

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

:root {
  --site-width:1240px;
  --color_main_rgb:223 205 149;
	--color_sub: #707070;
  --color_sub_rgb: 67 68 68;
  --bg-color:#f5f5f5; /* グレー */
  --bg-color02:#fafafa; /* 薄いグレー */
	--radius: 10px;
  --radius02: 6px;
	--gap: clamp(20px, 3vw, 50px);
	--gap_s: clamp(10px, 2vw, 25px);
  --box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 4px 4px -4px rgba(0, 0, 0, 0.7);
}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: container */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
  overflow-x: hidden;
}
article {
	width: 100%;
	max-width: var(--site-width);
	margin: 0 auto;
	padding: 20px 30px 60px;
}
                      @media screen and (max-width: 814px) {
                        article {
                            padding: 10px 20px 20px;
                          }
                           }

.containerInner_default article {
	max-width: 1280px;
}
.breadCrumb ul {
	max-width: 1230px;
}

.container {
  font-size: 1.1em;
}
                      @media screen and (max-width: 950px) {
                        .container {
                            font-size: 1em;
                          }
                          }

.con {
  padding-bottom:60px;
}
                      @media screen and (max-width: 814px) {
                        .con {
                           padding-bottom:30px;
                          }
                           }


/*--------------------------------------- header */

header {
	position: fixed;
	background-color: transparent;
  z-index: 2;
  width: 100%;
  font-weight:600;
}
@media screen and (max-width:719px) {
	header {
		position:relative;
	}
}

header #header_inner {
	max-width: 100%;/* ヘッダ幅100% */
	/* max-width: 1078px; ヘッダ最大幅1078px */
	margin:0 auto;
	padding: 5px 10px 5px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
  z-index: 9;
  position: relative;
}

header #header_logo {
	flex-basis: 380px;/* ロゴの幅 */
	margin: 0;
	padding: 0;
	line-height: 0;
	vertical-align: middle;
}
                            @media screen and (max-width:908px) {
                            header #header_logo {
                                flex-basis: 330px;
                            }  
                            }
                            @media screen and (max-width:750px) {
                            header #header_logo {
                                text-align: left;
                                width: 100%;
                                padding: 7px 0 3px 0;
                            }  
                            }
                            @media screen and (max-width:719px) {
                            header #header_logo {
                                flex-basis: auto;
                            }  
                            }

header #header_contents {
	padding: 0 20px 0 0;
  width: 60%;
}
                            @media screen and (max-width:1060px) {
                            header #header_contents {
                                padding: 0;
                            }  
                            }
                            @media screen and (max-width:719px) {
                            header #header_contents {
                                display:none;
                            }  
                            }


header #header_logo a {
	display: inline-block;
	padding: 0;
}
header #header_logo img {
	width:100%;
	vertical-align: middle;
  max-width: 380px;
}

                            @media screen and (max-width:938px) {
                            header #header_logo img {
                                max-width: 330px;
                            }  
                            }
                            @media screen and (max-width:400px) {
                            header #header_logo img {
                                max-width: calc(100% - 75px);
                            }  
                            }

/* header_contents */
#header_menu_upper{
	float:right;
	margin-right:5px;
	margin-left:15px;
}
#header_menu_lower{
	float:right;
}
#header_menu_upper ul,
#header_menu_lower ul{
	margin: 0;
	padding: 0;
	font-size: 1.1em;
	line-height: 1;
	display:inline-block;
}
#header_menu_upper li,
#header_menu_lower li{
	padding:5px 0;
	height:100%;
	display:inline-block;
}
#header_menu_upper li a,
#header_menu_lower li a {
	padding:10px 10px;
	height:100%;
	display:inline-block;
	text-decoration:none;
  color: #222;
}
                      @media screen and (max-width:1020px) {
                        #header_menu_upper li a,
                        #header_menu_lower li a {
                            padding:10px 7px;
                          }
                          }
                      @media screen and (max-width:985px) {
                        #header_menu_upper li a,
                        #header_menu_lower li a {
                            font-size: 0.9em;
                          }
                          }

.body_common #header_menu_upper li a,
.body_common #header_menu_lower li a{
  color: #FFF;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.8);
}


#header_menu_upper li a {
	border-radius: var(--radius);
	min-width: 9em;
	text-align: center;
}
#header_menu_upper li a:hover{
	opacity:0.9;
}
#header_menu_upper li:first-child a{
	color:#FFFFFF;
	background-color:#333333;
}
#header_menu_upper li:nth-child(2) a{
	color:#FFFFFF;
	background-color:var(--color_main);
}

@media screen and (max-width:719px) {
	#header_menu_upper,
	#header_menu_lower{
		display: none;
	}
}
/*--------------------------------------- footer */
.footerInfo {
  background-color: #f7fbf8;
  padding: 40px 20px;
  display: flex;
  gap: 20px;
  margin:0 auto;
}
                      @media screen and (max-width: 950px) {
                        .footerInfo {
                            display: block;
                            padding:20px 15px;
                          }
                          }


.footerInfo dl {
  width: calc(50% - 10px);
  text-align: center;
  padding: 30px 50px;
}
                      @media screen and (max-width: 950px) {
                        .footerInfo dl {
                              width: 100%;
                              padding: 10px 0;
                          }
                          }

.footerInfo dl:first-of-type {
    border-right: dotted 1px #ccc;
}
                      @media screen and (max-width: 950px) {
                        .footerInfo dl:first-of-type {
                              border-right: none;
                              padding: 0;
                          }
                        .footerInfo dl:last-of-type {
                              display:none;
                          }
                          }

.footerInfo dt {
  font-size: 2em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 40px;
}
                      @media screen and (max-width: 950px) {
                        .footerInfo dt {
                              font-size: 1.1em;
                              margin-bottom: 20px;
                          }
                          }
.footerInfo dt span {
  display: block;
  font-size: 0.5em;
  text-transform: uppercase;
  color: var(--color_main);
}
.footerInfo dd {
  margin: 0;
  line-height: 1.5;
}
                      @media screen and (max-width: 950px) {
                        .footerInfo dd {
                              font-size: 1em;
                          }
                          }

.footerInfo a {
  position: relative;
  background-color:#FFF;
  border:solid 1px #ccc;
  border-radius:6px;
  text-decoration: none;
  color: var(--base-fontcolor);
  font-size:1em;
  font-weight: 600;
  display: block;
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  padding: 14px 10px;
  transition: 0.5s;
}
                      @media screen and (max-width: 814px) {
                        .footerInfo li a {
                              padding:20px 8px;
                          }
                          }

.footerInfo a:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: var(--color_main);
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  right: 20px;
  top:calc(50% - 0.5em);
  transition: 0.5s;
}

.footerInfo a:after {
  content: '';
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.2em 0.31177em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  right: calc(20px + 0.4em);
  top:calc(50% - 0.145em);
  margin: auto;
  transition: 0.5s;
}
.footerInfo a:hover {
  color: var(--color_main);
}
.footerInfo a:hover:before,
.footerInfo a:hover:after {
	right: 16px;
  transition: 0.5s;
}
.footerInfo a:hover:after {
	right: calc(16px + 0.4em);
  transition: 0.5s;
}



footer {
  position:relative;
	clear:both;
	max-width: 100%;
	line-height:1.5;
  padding: 80px 60px 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
                      @media screen and (max-width: 814px) {
                        footer {
                              padding: 30px 20px 50px;
                          }
                          }

footer:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.58);
    position: absolute;
    top: 0;
    left: 0;
}

footer article {
  border-bottom: solid 1px #ccc;
  padding: 60px 58px 60px;
  display: flex;
  background-color: rgba(255, 255, 255, 0.88);
  max-width: inherit;
  border-radius: 50px 50px 0 50px;
  position: relative;
  z-index: 1;
}
                      @media screen and (max-width: 1140px) {
                        footer article {
                              padding: 40px 50px 40px;
                          }
                          }
                      @media screen and (max-width: 860px) {
                        footer article {
                              padding: 20px 20px 40px;
                          }
                          }
                      @media screen and (max-width: 719px) {
                        footer article {
                              display: block;
                          }
                          }

footer article > div {
  width: 21%;
}
                      @media screen and (max-width: 1320px) {
                        footer article > div {
                              width: 37%;
                          }
                          }
                      @media screen and (max-width: 719px) {
                        footer article > div {
                              width: 100%;
                          }
                          }

footer .footer_logo {
	margin: 20px auto 10px;
}
footer .footer_logo a {
	display: inline-block;
	text-decoration: none;
}
footer .footer_logo a img{
  width: 100%;
	max-width:330px;
}

footer address {
  font-style: normal;
}

/* sns navi */
.snsList {
  padding: 10px 0 0;
}
.snsList li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
}
.snsList li img {
  max-width:30px;
}

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

  .snsList li img {
    max-width: 33px;
}
}


footer ul.fNavi {
  width: 75%;
	list-style:none;
	margin: 35px 0 0 auto;
	padding-left:1.5em;
  display: flex;
  padding: 0;
  gap: 3%;
  flex-wrap: wrap;
  justify-content: space-between;
}
                      @media screen and (max-width: 1320px) {
                        footer ul.fNavi {
                              width: 59%;
                          }
                          }
                      @media screen and (max-width: 1000px) {
                        footer ul.fNavi {
                              width: 40%;
                              flex-wrap: wrap;
                              margin: 20px auto 0;
                          }
                          }
                      @media screen and (max-width: 719px) {
                        footer ul.fNavi {
                              width: 100%;
                          }
                          }

footer ul.fNavi li {
  margin-bottom:12px;
  list-style: none;
  width: calc(94% / 3);
  display: flex;
  flex-direction: column;
}
                      @media screen and (max-width: 1320px) {
                        footer ul.fNavi li {
                              width: calc(96% / 2);
                          }
                          }
                      @media screen and (max-width: 1000px) {
                        footer ul.fNavi li {
                              width: 100%;
                          }
                          }


footer ul.fNavi li a {
  text-decoration: none;
  display: block;
}
footer ul.fNavi li >a {
  border-bottom: solid 3px var(--color_main);
  padding: 0 0 8px;
  font-weight: 600;
  color: var(--base-fontcolor);
}
footer ul.fNavi li ul {
  margin: 15px 0 20px;
  padding: 0;
}
                      @media screen and (max-width: 860px) {
                        footer ul.fNavi li li {
                              width: 100%;
                          }
                          }

footer ul.fNavi li ul li {
  width:100%;
}
footer ul.fNavi li ul a {
  position: relative;
  border-bottom: none;
  margin: 7px 0 0;
  padding: 0;
  color: #727272;
  text-align: left;
  font-size: 0.87em;
  display: flex;
  align-items: center;
  gap: calc(7 / 20 * 1vw);
  transition: color .3s;
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1.3;
}
footer ul.fNavi li ul a::before {
  content: '';
    display: grid;
    width: calc(5 / 12 * 1vw);
    height: 1px;
    background-color: #222;
}
                      @media screen and (max-width: 860px) {
                        footer ul.fNavi li ul a::before {
                              width: calc(5 / 12 * 3vw);
                          }
                          }

footer ul.fNavi li ul a[target=_blank]:after {
  font-family: 'Font Awesome 5 Free';
    content: '\f35d';
    font-size: 0.1em;
    display: inline-block;
    font-weight: bold;
    vertical-align: middle;
  color: var(--color_main);
}

footer .copyright {
	font-size: 0.75em;
  padding: 30px 0 50px;
  margin: 0 auto;
}




/*--------------------------------------- sp_menu */

.sp_menu{
	overflow-y: scroll;
	max-height: 100vh;
}
@media screen and (min-width: 720px), print {
	.sp_menu_btn,
	.sp_menu {
		display: none;
		/*display: inline-block;
		box-sizing: border-box;*/
	}
}
@media screen and (max-width:719px) {
	.sp_menu_btn,
	.sp_menu_btn span {
		display: inline-block;
		box-sizing: border-box;
	}
}
.sp_menu_btn {
  position: fixed;
	width: 56px;
	height: 56px;
	padding:14px;
	background-color:var(--color_main);
  border-radius: 100%;
	top: 12px;
	right: 16px;
	z-index: 1000;
  box-shadow: var(--box-shadow);
}
.sp_menu_btn.close{
	background-color:transparent;
  box-shadow: none;
}
.sp_menu_btn span {
	position: absolute;
	width: 5px;
	height: 5px;
	background-color: #FFF;
	border-radius: 10px;
	transition: transform 0.1s;
  top: 27px;
}
.sp_menu_btn span:nth-of-type(1) {
	left: 16px;
}
.sp_menu_btn span:nth-of-type(2) {
	left: 26px;
}
.sp_menu_btn span:nth-of-type(3) {
	left: 36px;
}
.sp_menu_btn.close span {
	background-color: var(--color_main);
}
.sp_menu_btn.close span:nth-of-type(1) {
	-webkit-transform: translateY(5px) rotate(-45deg);
	transform: translateY(5px) rotate(-45deg);
  width: 32px;
  height:3px;
  left: 17px;
}
.sp_menu_btn.close span:nth-of-type(2) {
	opacity: 0;
}
.sp_menu_btn.close span:nth-of-type(3) {
	-webkit-transform: translateY(-15px) rotate(45deg);
	transform: translateY(-13px) rotate(45deg);
  width: 32px;
  height:3px;
  top: 45px;
  left: 18px;
}

.sp_menu {
	position: fixed;
	z-index: 135;
	right: -100%;
	top: 0;
	width: 100%;
	max-width: 330px;
	height: 100vh;
	padding: 60px 0px;
	background-color: #f7f5f5;
	box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.2);
	overflow-y: auto;
	opacity:0;
	transition: right 0.2s;
}
.sp_menu.menu_fixed {
	right: 0;
	opacity: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp_menu .spLogo {
  padding: 0 20px;
}
.sp_menu .spLogo a {
  padding: 0;
}
.sp_menu ul{
	list-style:none;
	margin:0;
	padding:0 5%;
}
.sp_menu li{
	border-top:1px solid #FFFFFF;
	padding:0;
}
.sp_menu a{
	display:inline-block;
	width:100%;
	height:100%;
	padding:7px 0 7px 15px;
	color:#222222;
	text-decoration:none;
}
.sp_menu_bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
}
.sp_menu_bg.bg_fixed {
	display: block;
	background-color: transparent;
}


/*--------------------------------------- columnBox */

.columnBox .column {
	padding:0 30px 1em 0;
}
                      @media screen and (max-width: 814px) {
                        .columnBox .column {
                              padding:0 0 1em 0;
                          }
                          }
.columnBox .column_side {
		padding:1em 0 1em 0;
	}

@media screen and (min-width: 720px), print {
	.columnBox {
		display: table;
		table-layout: fixed;
		width: 100%;
    padding:0;
	}
	.columnBox .column {
		display: table-cell;
		vertical-align: top;
	}
}


#side {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: var(--radius02);
	background-color: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	position: -webkit-sticky;
	/*Safari*/
	position: sticky;
	top: 100px;
}
#side .menu_title {
	font-size: 1.1em;
	padding: 0.2em 10px 0.5em;
	word-wrap: break-word;
	overflow-wrap: break-word;
	box-sizing: border-box;
  font-weight: 600;
  font-family: var(--sub-font);
}
#side ul {
	list-style: none;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
  margin: 0 0 10px;
}
#side ul li {
	border-top: 1px solid #dddddd;
	position: relative;
}
#side li a {
	color: #333;
	text-decoration: none;
	display: block;
	padding: 0.8em 0.5em 0.8em 2em;
	transition: color 0.2s, background-position 0.2s;
	background-image: url(./img/icon_right_arrow.png);
	background-repeat: no-repeat;
	background-position: 0.5em center;
	background-size: 1em;
  font-size: 0.9em;
  line-height: 1.5;
}
#side li a:hover {
	color: #777;
	background-position: 0.8em center;
	background-color: #eeeeee;
}
#side li.current a {
	color: #fff;
	background-color: var(--color_main);
	background-image: url(./img/icon_right_arrow_white.png);
}
@media screen and (min-width:720px) {
	.columnBox .column_side {
		width:280px;
	}
}
@media screen and (max-width: 719px) {
	.columnBox .column_side {
		padding: 1em 0 0;
	}
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: common_setting */

img {
	max-width: 100%;
	height: auto !important;
	width /***/: auto;
}
table td img{
	max-width: 100%;
	height:auto !important;
}
iframe{
	max-width:100%;
}

@media screen and (min-width:720px) {
	.only_pc{
		display:block;
	}
	.only_sp{
		display:none;
	}
}
@media screen and (max-width:719px) {
	.only_pc{
		display:none;
	}
	.only_sp{
		display:block;
	}
}

/*--------------------------------------- font */

html {
	font-size: 62.5%;
}
body {
	/* ゴシック体 */
	font-family: var(--base-font);
	/* 明朝体
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;*/
	color: var(--base-fontcolor);
	font-size: 1.5em;
	line-height: 2;
	letter-spacing: 0.05rem;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
  overflow-wrap: anywhere;
}
@media screen and (max-width:719px) {
	html,body {
		-webkit-text-size-adjust: 100%;
		-webkit-overflow-scrolling: touch;
	}
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
	position: relative;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	text-decoration: none;
}
.lower h1 {
	font-size: clamp(20px, 5vw, 33px);
	font-weight: normal;
	padding: 0.5em 0;
	max-width: 1200px;
	margin: 80px auto 50px;
  font-family: var(--sub-font);
  text-align: center;
  line-height: 1.4;
}
                      @media screen and (max-width: 719px) {
                        .lower h1 {
                              margin: 0 auto 10px;
                          }
                          }

.lower h1 span {
  display: block;
  font-size: 0.46em;
  color: var(--color_main);
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--base-font);
}

h2 {
  font-size: clamp(20px, 4vw, 30px);
  margin: 1rem 0 4.8rem;
  color: var(--color_main);
  font-weight: 600;
  letter-spacing: 0.09em;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4.8rem;
}
                      @media screen and (max-width: 814px) {
                        h2 {
                              margin: 0 0 20px;
                              gap: 2.8rem;
                              font-size: 1.2em;
                          }
                          }

h2:after {
  content: "";
        width: 3.6rem;
        height: 1px;
        background-color: var(--color_main);
        display: inline-block;
        opacity: .5;
}

/* h:変更した場合はstyle_editor.cssにも反映すること */
h3 {
	font-size: clamp(18px, 2vw, 24px);
	position: relative;
	padding-bottom: .3em;
	margin-top:30px;
	margin-bottom: 30px;
	font-weight:normal;
	border-bottom: 1px solid #ccc;
}
                      @media screen and (max-width: 814px) {
                        h3 {
                              margin-bottom: 10px;
                              font-size: 1.1em;
                          }
                          }

h4 {
	font-size: clamp(15px, 2vw, 21px);
	clear: both;
	font-weight: bold;
	line-height: 1.5;
	margin: 1em 0;
	padding: 0 15px;
	border-left: 4px solid var(--color_main);
}
h5 {
	font-size: 1.1em;
	color: var(--color_main);
	clear: both;
	font-weight: bold;
	margin: 0.5em 0 1em;
	line-height: 1.5;
	padding: 10px 0;
	border-top: 2px solid var(--color_main);
	border-bottom: 1px solid rgb(var(--color_sub_rgb) / 0.3);
}
h6 {
	font-size: 1em;
	color: var(--color_main);
	clear: both;
	line-height: 1.5;
	font-weight: bold;
	margin: 0.5em 0 1em;
}
.bold {
	font-weight: bold;
}

/*--------------------------------------- color */

a {
	color: var(--link-color);
  transition : all 0.5s;
}
a:hover {
	color: #522c15;
}
a:hover img{
	opacity: 0.8;
}
.white{color:#FFFFFF;}
.black{color:#000000;}
.red{color:#d2202f;}
.blue{color:#40559F;}
.bg_white{background-color:#FFFFFF;}
.bg_black{background-color:#000000;}
.bg_lightgrey{background-color:#F9F9F9;}
.bg_grey{background-color:#EFEFEF;}
.bg_blue{background-color:#014B9C;color:#FFFFFF;}
.bg_lightblue{background-color:#F0FCFF;}
.bg_red{background-color:#d2202f;color:#FFFFFF;}
.bg_lightred{background-color:#FFD9DE;}
.bg_pink{background-color:#f7d8ea;}
.bg_yellow{background-color:#FFF599;}
.bg_green{background-color:#60D795;color:#FFFFFF;}
.bg_lightgreen{background-color:#C5FFDF;}
.bg_cream{background-color:#FFFFFA;}
.bg_ivory{background-color:#F9F8F0;}
.bg_beige{background-color:#E1DCD8;}

/*--------------------------------------- btn */
.btn {
  text-align: right;
}
.btn a {
	position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding-right: calc(30px + 0.8em) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.5em;
  text-underline-offset: 0.5em;
  color:var(--base-fontcolor);
}

.btn a:before {
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    background: var(--base-fontcolor);
    border-radius: 100%;
    transition: .2s;
    transform-origin: center;
}
.btn a:hover::before {
    scale: 1.1;
  }

.btn a:after {
    position: absolute;
    top: 50%;
    right: calc(30px / 2 - 2px * 2 + 2px);
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    rotate: 45deg;
    translate: 0 -50%;
}

/* btn02 */
.btn02 {
	font-size: 1.05em;
	text-align: center;
	max-width: 290px;
	margin: 60px auto 20px;
  position: relative;
}
.btn02.short {
	max-width: 190px;
  font-size: 0.9em;
}
.btn02.left {
	margin: 60px auto 20px 0;
}
                      @media screen and (max-width: 814px) {
                        .btn02.left {
                            margin: 20px auto 20px 0;
                          }
                           }

.btn02 a {
	color: #fff;
  background-color: var(--color_main);
	display: inline-block;
  border-radius: 50px 50px 0 50px;
	width: 100%;
	height: 100%;
	padding: 20px;
	box-sizing: border-box;
  text-decoration: none;
  font-weight:600;
  text-align: center;
}
.btn02.short a {
  border-radius: 50px 36px 0 50px;
  padding: 18px;
}
.btn02 a:hover {
	background-color:#087a3d;
}

/* CMSエディター：ボタン */
.editor-style-btn1 {
	display: inline-block;
	margin: 0.5em 20px;
	padding: 0.8em 2em;
	color: #FFFFFF;
	border-radius: var(--radius);
	background-color: #414D99;
	transition: background-color linear 0.2s;
}
.editor-style-btn1:hover {
	background-color: #1d86ed;
}

.editor-style-btn1 a {
	color: #FFFFFF;
	text-decoration: none;
}

.editor-style-text1 {
	color: #ffffff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3),-1px -1px 5px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------- table */

table {
	border-collapse: collapse;
  width:100%;
}
table th,
table td {
	border: 1px solid #CCCCCC;
  padding:5px 11px;
}
table th {
	background: #eeeeee;
}
table tr:nth-child(even){
	background: #f7f7f7;
}
table[border="0"],
table[border="0"] th,
table[border="0"] td {
	border: none;
}
table[border="1"],
table[border="1"] th,
table[border="1"] td {
	border: 1px solid #CCCCCC;
}
table[border="1"] th table[border="0"] td,
table[border="1"] td table[border="0"] td {
	border: none;
}

@media screen and (max-width:719px) {
	table th {
		width: auto !important;
	}
	.sp_table td,
	.sp_table th,
	.sp_table tr{
		display: block;
		width: 100%!important;
	}
}
table.responsive,
table.responsive2c {
	border-collapse: collapse;
	font-size: 0.95em;
}
table.responsive[border="0"],
table.responsive[border="0"] th,
table.responsive[border="0"] td,
table.responsive2c[border="0"],
table.responsive2c[border="0"] th,
table.responsive2c[border="0"] td {
	border: none;
}
@media screen and (max-width: 719px) {
	table.responsive,
	table.responsive2c {
		max-width:100%;
	}
	table.responsive td,
	table.responsive th{
		display: block;
		width: 100% !important;
	}
	table.responsive2c td,
	table.responsive2c th{
		float:left;
		width: 50% !important;
	}
	table.responsive td img,
	table.responsive2c td img {
		max-width:100%;
		height:auto;
	}

}
table.responsive[border="0"] td table:not([border="0"]) th,
table.responsive[border="0"] td table:not([border="0"]) td,
table.responsive2c[border="0"] td table:not([border="0"]) th,
table.responsive2c[border="0"] td table:not([border="0"]) td{
	border: 1px solid #dddddd;
}
@media screen and (max-width: 480px) {
    table.responsive {
    border-top: 1px solid #CCCCCC;
  }
	.sp_table[border="0"] td table:not([border="0"]) th,
	.sp_table[border="0"] td table:not([border="0"]) td{
		display: table-cell;
		width: auto !important;
		border-left:none;
		border-top:none;
	}
	table.responsive2c td,
	table.responsive2c th{
		width: 100% !important;
	}
  table.responsive td, table.responsive th {
    border-bottom: none;
    border-top: none;
  }
  table.responsive tr {
    border-bottom: 1px solid #dddddd;
  }
}

.td_title {
  background-color:var(--color_main);
  color: #fff;
  text-align: center;
}
/*--------------------------------------- list_text */

.list_text,
.list_text li {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}
.list_text {
	padding: 1em 0;
}

.list_text li a {
	text-decoration:none;
	display: block;
	color: #777;
}
.list_text li a:hover {
	background-color: #f4f4f4;
}
.list_text li .listBox {
	width: 100%;
}
.list_text li .date {
	font-size: 0.9em;
	width: 8em;
}
.list_text li .new {
	font-size: 0.82em;
	color: #D2202F;
	padding: 0 0.5em;
	border: 1px solid;
	border-radius: 5px;
	margin: 0 10px 0 0;
	display: inline-block;
	vertical-align: middle;
  line-height: 2;
}
@media screen and (min-width: 481px), print {
	.list_text li .listBox {
		display: table;
	}
	.list_text li .listBox .date,
	.list_text li .listBox .text {
		display: table-cell;
		vertical-align: middle;
		padding: 10px 20px;
	}
}
@media screen and (max-width: 480px) {
	.list_text li .listBox {
		padding: 10px 20px;
		display: block;
	}
	.list_text li .listBox .date,
	.list_text li .listBox .text {
		padding: 5px 0;
		display: block;
	}
}

/*--------------------------------------- list_pickup */

.list_pickup {
	width:100%;
	padding: 1em 0;
	margin: 0;
	display: grid;
}
.list_pickup li{
	display: inline-block;
	vertical-align: top;
	margin: 0;
}
.list_pickup li a {
	display: block;
	text-decoration: none;
}
.list_pickup .listBox {
	display: block;
	padding: 0 clamp(10px, 2vw, 15px) clamp(20px, 2vw, 30px);
	position: relative;
}
.list_pickup .thumbnail {
	display: block;
	overflow: hidden;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	border-radius: var(--radius);
}
.list_pickup .thumbnail span{
	padding: 30% 0;
	display: block;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: all 0.5s ease-out;
}
.list_pickup li a:hover .thumbnail span{
	transform: scale(1.1);
	box-shadow: none;
}
.list_pickup .dateBox {
	display: block;
	padding: 0;
	font-size: 0.8em;
	color: var(--color_sub);
}
.list_pickup .date,
.list_pickup .new {
	margin: 5px;
	display: inline-block;
	vertical-align: middle;
}
.list_pickup .date {
	padding: 0.1em 0;
}
.list_pickup .new {
	color: #414D99;
	padding: 0.01em 0.5em;
	border: 1px solid;
	border-radius: 100em;
}
.list_pickup .title {
	display: block;
	padding: 0.5em 0 1em;
	line-height: 1.4;
}
.list_pickup .text {
	display: block;
	padding: 0.5em 10px 1em;
	border-top: 1px dashed #ddd;
	color: #999;
	font-size: 0.9em;
}

.list_pickup li.li_1 {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}
.list_pickup li.li_1 .title {
	font-size: clamp(16px, 2vw, 21px);
}
@media screen and (min-width: 1200px) {

}
@media screen and (min-width: 720px) {
	.list_pickup {
		grid-template-columns: repeat(4, 1fr);
	}


}
@media screen and (max-width: 719px) {
	.list_pickup {
		grid-template-columns: repeat(2, 1fr);
	}

}
@media screen and (min-width: 480px) {


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


}
/*--------------------------------------- list_thumbnail */

.list_thumbnail {
	width:100%;
	padding: 1em 0;
	margin: 0;
}
.list_thumbnail li{
	display: inline-block;
	vertical-align: top;
	margin: 0;
}
.list_thumbnail li a {
	display: block;
	text-decoration: none;
}
.list_thumbnail .listBox {
	display: block;
	padding: 0 clamp(10px, 2vw, 15px) clamp(20px, 2vw, 30px);
	position: relative;
}
.list_thumbnail .thumbnail {
	display: block;
	overflow: hidden;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	border-radius: var(--radius);
}
.list_thumbnail .thumbnail span{
	padding: 30% 0;
	display: block;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: all 0.5s ease-out;
}
.list_thumbnail li a:hover .thumbnail span{
	transform: scale(1.1);
	box-shadow: none;
}
.list_thumbnail .dateBox {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	padding: 10px 0 0;
	font-size: 0.8em;
	color: var(--color_sub);
}
.list_thumbnail .date,
.list_thumbnail .new {
}
.list_thumbnail .date {

}
.list_thumbnail .new {
	color: #414D99;
	padding: 0.01em 0.5em;
	border: 1px solid;
	border-radius: 100em;
}
.list_thumbnail .title {
	display: block;
	padding: 0.5em 0 1em;
	line-height: 1.4;
}
.list_thumbnail .text {
	display: block;
	padding: 0.5em 10px 1em;
	border-top: 1px dashed #ddd;
	color: #999;
	font-size: 0.9em;
}
@media screen and (min-width: 1200px) {
	.list_thumbnailC5 li{
		width: 20%;
	}
	.list_thumbnailC6 li{
		width: 16%;
	}
}
@media screen and (min-width: 720px) {
	.list_thumbnailC1 li{
		width: 100%;
		display:block;
	}
	.list_thumbnailC2 li{
		width: 49.5%;
	}
	.list_thumbnailC3 li{
		width: 32.5%;
	}
	.list_thumbnailC4 li{
		width: 24.5%;
	}
	.list_thumbnailC5 li{
		width: 19.5%;
	}
	.list_thumbnailC6 li{
		width: 15.5%;
	}
}
@media screen and (max-width: 719px) {
	.list_thumbnailC2 .listBox {
		padding: 0 0 2em;
	}
	.column_thumbnail {
		width: 35.2%;
	}
	.list_thumbnail li{
		width: 50%;
	}
	.list_thumbnailC1 li{
		width: 100%;
		display:block;
	}
	.list_thumbnailC4 li{
		width: 50%;
	}
	.list_thumbnailC5 li{
		width: 50%;
	}
	.list_thumbnailC6 li{
		width: 50%;
	}
}
@media screen and (min-width: 480px) {
	.list_thumbnailC2 li .listBox {
		padding: 1em;
	}
}
@media screen and (max-width: 479px) {
	.list_thumbnailC2 li,
	.list_thumbnailC3 li {
		width: 50%;
	}
}
.body_common .list_thumbnail .thumbnail span{
	padding: 30% 0;
}
.body_common .list_thumbnail .title{
	font-size: clamp(14px, 2vw, 18px);
	font-weight: normal;
}

/*--------------------------------------- frame */
.frame {
  border: solid 1px #ccc;
  border-radius: var(--radius);
  padding: 30px 30px;
}

/*--------------------------------------- ul.style01 */
ul.style01 {
  counter-reset:list;
  list-style-type:none;
  padding:0;
  margin: 0 0 60px;
}
                      @media screen and (max-width: 814px) {
                        ul.style01 {
                              margin: 0 0 30px;
                          }
                          }

ul.style01 li {
  position:relative;
  padding: 0 0 0 20px;
  margin: 0;
  font-weight: bold;
  border-bottom: dashed 1px #ccc;
}
ul.style01  li:before{
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--color_main);
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.style01 li a {
  text-decoration: none;
  display:block;
  padding:10px 0;
}
                      @media screen and (max-width: 814px) {
                        ul.style01 li a {
                              padding:6px 0;
                              line-height: 1.5;
                          }
                          }

/*--------------------------------------- fadein */

/* fadein */

.fadein {
	opacity: 0.1;
	transform: translate(0, 3vw);
	transition: transform 1200ms;
	-moz-transition-delay: 200ms;
	-webkit-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	-ms-transition-delay: 200ms;
	transition: opacity 1s, transform 1s;
}
.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
.left-to-right {
	opacity: 0.1;
	transform: translateX(-3vw);
	transition: opacity 1s, transform 1s;
}
.left-to-right.scrollin {
	opacity: 1;
	transform: translate(0);
}
.right-to-left {
	opacity: 0.05;
	transform: translateX(3vw);
	transition: opacity 1s, transform 1s;
}
.right-to-left.scrollin {
	opacity: 1;
	transform: translate(0);
}
.down-to-top {
	opacity: 0.1;
	transform: translateY(3vw);
	transition: opacity 1s, transform 1s;
}
.down-to-top.scrollin {
	opacity: 1;
	transform: translateY(0);
}
.top-to-down {
	opacity: 0.1;
	transform: translateY(-3vw);
	transition: opacity 1s, transform 1s;
}
.top-to-down.scrollin {
	opacity: 1;
	transform: translateY(0);
}
.wipe-animation {
	background-color: #ffffff;
	overflow: hidden;
	position: relative;
}
.wipe-animation:before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
}
.wipe-animation.scrollin:before {
	animation: wipe 1s forwards;
}
@keyframes wipe {
	from {
		width: 100%;
	}
	to {
		width: 0;
	}
}
/*--------------------------------------- breadCrumb */

.breadCrumb {
	font-size: 0.9em;
	color: #222222;
  margin-bottom: 2em;
}
                      @media screen and (max-width: 814px) {
                        .breadCrumb {
                              display: none;
                          }
                          }

.breadCrumb ul {
	padding: 0.5em 0;
	margin:10px auto 0;
}
.breadCrumb li {
	display: inline;
  font-size: 0.9em;
}
.breadCrumb li a {
	color: #222222;
	background: transparent url(img/breadcrumb_black.png) no-repeat scroll right center;
	margin-right: 2px;
	padding-right: 16px;
	text-decoration: none;
}
.breadCrumb .fa-home{
	display:inline-block;
	width:12px;
	height:13px;
	background-image: url(img/icon_home.png);
	background-color: transparent;
	background-repeat: no-repeat;
	vertical-align: middle;
}

/*--------------------------------------- pagetop link */

#page_top {
	max-width: var(--site-width);
  margin: 0 auto;
  padding:0 30px;
  text-align: right;
}

#page_top a {
  position: relative;
  align-items: center;
  background: var(--color_main);
  box-shadow: var(--box-shadow);
  color: #FFF;
  display: block;
  height: 52px;
  letter-spacing: normal;
  line-height: 1;
  overflow: hidden;
  width: 52px;
  border-radius: 50%;
  transition: background-color .25s, color .25s;
  margin: 0 0 30px auto;
}

#page_top a::before,
#page_top a::after {
  content: "";
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 0.5px);
  width: 1px;
  height: 14px;
  border-radius: 9999px;
  background-color: #FFF;
  transform-origin: 50% 0.5px;
}

#page_top a::before {
  transform: rotate(45deg);
}

#page_top a::after {
  transform: rotate(-45deg);
}

/*--------------------------------------- contactBtn */

.contactBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  text-align: center;
  z-index:3;
}
                            @media screen and (max-width:768px) {
                            .contactBtn {
                                bottom: 10px;
                                right: 25px;
                            }  
                            }

.contactBtn a {
  background-color: var(--color_main);
  display:inline-block;
  text-decoration: none;
  color:#fff;
  font-weight:600;
  padding: 25px 60px;
  border-radius: 40px 40px 0 40px;
  box-shadow: 0 2px 2px rgba(0,0,0, 0.25);
}
                            @media screen and (max-width:768px) {
                            .contactBtn a {
                                padding: 15px 44px;
                            }  
                            }

.contactBtn a img {
  width: 1.6em;
  vertical-align: middle;
  margin-right: 6px;
}

/*--------------------------------------- pageprev/next link */

.page_link {
	clear: both;
	width: 100%;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

.page_link a.page_link_left {
	margin: 0 10px 0 0;
	padding: 0 0 0 12px;
	background: url(img/icon_page_link_left.gif) no-repeat left center;
}

.page_link a.page_link_right {
	margin: 0 0 0 10px;
	padding: 0 12px 0 0;
	background: url(img/icon_page_link_right.gif) no-repeat right center;
}

/*--------------------------------------- pager */

.pager_box{
	clear:both;
	text-align:center;
	margin-top:15px;
}
.pager_box .pager{
	width:2.5em;
	display:inline-block;
	border:1px solid #BFBFBE;
	border-radius: var(--radius);
}
.pager_box .pager a{
	display:block;
	width:100%;
	padding-top:0.5em;
	padding-bottom:0.5em;
}
.pager_box .pager a:link,
.pager_box .pager a:visited{
	color:#333333;
	text-decoration:none;
}
.pager_box .pager a:hover,
.pager_box .pager a:active{
	background:#F1F1F1;
	text-decoration:none;
}
.pager_box .pager_current{
	background:#F1F1F1;
	padding-top:0.5em;
	padding-bottom:0.5em;
}
.pager_box .pager_dot{
	width:1.5em;
	display:inline-block;
}
.pager_box .pager_space{
	width:1em;
	display:inline-block;
	padding-left:0.2em;
	padding-right:0.2em;
}
.pager_box .pager_first{
	display:inline-block;
}
.pager_box .pager_last{
	display:inline-block;
}


/*--------------------------------------- tab-1 */
.tab {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tab > label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: .9em 1em .7em;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    background-color: var(--bg-color02);
    color: #535353;
    text-align: center;
    cursor: pointer;
  
}

.tab > label:hover {
    opacity: .8;
}

.tab input {
    display: none;
}

.tab > div {
    display: none;
    width: 100%;
    padding: 1.5em 0;
    background-color: #fff;
}

.tab label:has(:checked) {
    background-color: #fff;
    border-color: var(--color_main) #f0f0f0 #fff;
    border-style: solid;
    border-width: 4px 1px 1px;
    border-radius: 5px;
    color: #333333;
}

.tab label:has(:checked) + div {
    display: block;
}

/*--------------------------------------- introduction */
.introduction {
  text-align: center;
  font-size:1.2em;
  font-weight:600;
  margin-bottom:30px;
}
		@media screen and (max-width: 780px) {
			.introduction {
				text-align: left;
        font-size: 1em;
			}
		}


/*--------------------------------------- mailNews */
#mailNews {
	background-color:#f7f6f6;
	padding:46px 20px 60px;
	text-align:center;
}
#mailNews h3 {
  border-bottom: none;
}

#mailNews h3 span {
	display:block;
}
#mailNews input {
	padding:10px 15px;
  font-size: 1.32em;
}
		@media screen and (max-width: 779px) {
			#mailNews input[type="text"] {
				width: 400px!important;
			}
		}

#mailNews article {
	padding:0;
}
#mailNews .balloon2-top p {
  font-size: 1.2em;
  font-weight: 700;
}
#mailNews form p {
    font-size: 0.85em;
}

#mailNews .btn {
  display: block;
	background-color:#282828;
	border:solid 1px #282828;
  color: #FFF;
  width: 90%;
  text-align: center;
  font-weight: bold;
  transition: all .5s ease;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 340px;
}
#mailNews .btn:hover {
	color:#282828;
	background-color:#FFF;
}

@media screen and (max-width: 779px) {
#mailNews .balloon2-top p {
	text-align:left;
}
}

/* 吹き出し */
.balloon2-top {
	position: relative;
	display: inline-block;
	margin: 0 0 1.5em;
	padding: 25px 30px;
	min-width: 120px;
	max-width: 100%;
	background: #FFF;
	border: solid 3px #FFF;
	box-sizing: border-box;
	border-radius:10px;
}

.balloon2-top:before {
	content: "";
	position: absolute;
	top: -24px;
	left: 50%;
	margin-left: -15px;
	border: 12px solid transparent;
	border-bottom: 12px solid #FFF;
	z-index: 2;
}

.balloon2-top:after {
	content: "";
	position: absolute;
	top: -30px;
	left: 50%;
	margin-left: -17px;
	border: 14px solid transparent;
	border-bottom: 14px solid #FFF;
	z-index: 1;
}

.balloon2-top p {
	margin: 0;
	padding: 0;
}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: cms common */

.msg{
	margin:20px auto;
}
.invisible {
	display: none;
}
a.tooltiplink {
	display: inline-block;
	margin: 1px 3px 0;
	padding: 1px 3px 0;
	border: 2px solid #C7C7C7;
	background-color: #075698;
	border-radius: var(--radius);
	-moz-border-radius: var(--radius);
	text-decoration: none;
	color: #FFFFFF;
	font-size: 1.0em;
	font-weight: bold;
}
#input-table a.tooltiplink:link,
#input-table a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
#input-table a.tooltiplink:hover,
#input-table a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}
a.tooltiplink:link,
a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
a.tooltiplink:hover,
a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}
p.tooltipbox {
	position: absolute;
	top: 100px;
	left: 20px;
	font-size: 1.0em;
	margin: 0;
	padding: 10px;
	min-width: 100px;
	min-height: 30px;
	color: #FFFFFF;
	background: #075698;
	border: 2px solid #075698;
	border-radius: var(--radius);
	-moz-border-radius: var(--radius);
}
#input-table p.tooltipbox a:link,
#input-table p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}
#input-table p.tooltipbox a:hover,
#input-table p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}
p.tooltipbox a:link,
p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}
p.tooltipbox a:hover,
p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

/* comment form */
.comment_box {
	width: 100%;
	margin: 0 0 15px;
	padding: 0;
	border-collapse: collapse;
	border: solid 1px #cccccc;
	background: #eeeeee;
}
.comment_box th,
.comment_box td {
	padding: 10px;
}
.comment_id {
	width: 10%;
	text-align: left;
	white-space: nowrap;
}
.comment_name {
	width: 70%;
	text-align: left;
}
.comment_regist {
	width: 20%;
	text-align: right;
	vertical-align: bottom;
	white-space: nowrap;
	font-size: 0.8em;
	color: #aaaaaa;
}
.comment_box td {
	padding-top: 0;
}
.comment_text {
	padding: 15px;
	background: #ffffff;
}
.icon_comment {
	text-align: right;
}
.icon_comment a {
	padding-left: 30px;
	background: url(./icon_comment.gif) no-repeat left center;
}
/* twitter widget */
#twtr-hd h3,
#twtr-hd h4,
.twtr-widget h3,
.twtr-widget h4,
.twtr-widget p,
.twtr-widget-profile h3,
.twtr-widget-profile h4 {
	clear: none;
	margin: auto;
	padding: auto;
	font-size: auto;
	color: auto;
	border: none;
	background-image: none;
}
/* twitter tweet button */
iframe.twitter-share-button {
	width: 115px!important;
}

/*--------------------------------------- cms form */

.form_flow {
    position: relative;
    margin: 40px 0 40px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form_flow li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 33.333%;
    color: #999999;
    font-weight: bold;
    counter-increment: steps;
}
.form_flow li:before {
    display: block;
    width: 26px;
    height: 26px;
    margin: 7px auto 20px auto;
    line-height: 26px;
    font-size: 12px;
    text-align: center;
    border-radius: 50%;
    background-color: #F5F5F5;
    content: counter(steps);
    z-index: 3;
    position: relative;
}
.form_flow li:after {
    position: absolute;
    z-index: 1;
    top: 15px;
    left: -50%;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #F5F5F5;
}
.form_flow li:first-child:after {
    content: none;
}
.form_flow li.current,
.form_flow li.complete{
    color: var(--base-fontcolor);
}
.form_flow li.current:before,
.form_flow li.complete:before {
    background-color: var(--base-fontcolor);
    color: #FFF;
}
.form_flow li.current:after,
.form_flow li.complete:after {
    background-color: #0070BD;
}

.contact_msg {
	font-size: 0.9em;
	margin: 0 auto;
}

.contact_msg_complete {
	padding: 40px;
	margin-bottom:30px;
	box-shadow: inset 0 0 0 2px #f0f0f0;
}

.contact_msg .editor-style-btn1 {
	float: right;
}

.contact_msg .editor-style-btn1:after {
	content: "";
	display: block;
	width: 100%;
	clear: both;
}

.error_box {
	font-size: 0.95em;
	margin: 0 auto;
	background-color: #fff7f6;
	box-shadow: 1px 0px #e5e5e5,-1px 0px #e5e5e5;
	padding: 20px 5%;
}

.error_box .error {
	color: #e72719;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 2px solid #e72719;
}

.error_box .error_msg {
	margin-top: 20px;
}

.contact form {
	text-align: center;
}

#input-table {
	display: block;
	width: 100%;
	max-width: 100%;
}

#input-table table {
	width: 100%;
	padding: 5px;
	margin: 0 auto 20px;
	border: none;
	box-shadow: inset 0 0 0 2px #f0f0f0;
	background-color: #ffffff;
}

#input-table table li {
	margin-left: 0;
}

#input-table table th {
	width: 35%;
	padding: 20px 60px 20px 30px;
	color: #3f4242;
	background: rgba(0, 0, 0, 0);
	text-align: left;
	border: none;
	position: relative;
	vertical-align: top;
}

#input-table table td {
	padding-left: 10px;
}

#input-table table tr {
	transition: background-color linear 0.2s;
	border-top: 1px solid #ccc;
}

#input-table table tr:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

#input-table table tr:first-child {
	border-top: 5px solid #f0f0f0;
}

#input-table table tr:last-child {
	border-top: 2px solid #f0f0f0;
}

.input_required,
.input_not_required:before {
	font-size: 0.9em;
	padding: 2px 10px;
	display: inline-block;
	color: #fff;
	background-color: var(--color_main);
	position: absolute;
	right: 10px;
	top: 20px;
}
.input_not_required:before {
	color: #ffffff;
}
.input_not_required:before {
	content: "任意";
	background-color: #adadad;
	text-align: center;
}
#input-table .error_msg,
#input-table .error_msg_js {
	padding : 5px 5px 5px 20px;
	background: url(./img/form_error.gif) left 10px no-repeat;
}

#input-table table td {
	padding: 20px 30px;
	border: none;
	text-align: left;
}

#input-table table tr:last-child td {
	text-align: center;
}

#input-table div.formcomment {
	clear: both;
	margin-left: 7px;
	margin-top: 3px;
}

#input-table table td ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

input[type="text"],
input[type="password"] {
	border: 0;
	padding: 4px;
	border: solid 1px #ccc;
	max-width: 100% !important;
	resize: none;
	border-radius: var(--radius02);
  font-size: 1.1em;
  width: 100%;
}
.searchBar input[type="text"] {
  max-width:400px!important;
}
.body_common .searchBar input[type="text"] {
  max-width:300px!important;
  padding: 6px 8px;
}
.searchBar {
  margin-bottom: 30px;
}
.body_common .searchBar {
  font-size: 0.55em;
}
                      @media screen and (max-width: 814px) {
                        .body_common .searchBar {
                              margin:30px auto 0;
                          }
                      }

.body_textbook_form input[type="text"] {
	margin-bottom: 10px;
}

#input-table table .form_input_addnumber {
	width: 40% !important;
}

#input-table table textarea {
	padding: 10px;
	width: 96% !important;
	border: solid 1px #ccc;
	-webkit-border-radius: var(--radius);
	-moz-border-radius: var(--radius);
	border-radius: var(--radius);
}

input:focus,
input:textarea {
	border: solid 1px #414D99;
}

.input_button {
	font-size: 0.9em;
	font-weight: bold;
	-webkit-appearance: none;
	padding: 4px 10px;
	color: #fff;
	background-color: var(--link-color);
	border: none;
	cursor: pointer;
}

#input-table .input_button {
	padding: 10px 50px;
}

#input-table .submit_button {
	text-align: center;
	padding-top: 20px;
}

#input-table .privacy {
	font-size: 0.9em;
	height: 200px;
	overflow: auto;
	border: 1px solid #ddd;
	padding: 10px;
	background: #ffffff;
}

/* セパレーター */
#input-table table tr.input-formgroup-blank th{
	background:#F0F0F0;
	border:none;
}
#input-table table tr.input-formgroup{
	padding-top:20px;
}
#input-table table tr.input-formgroup th{
	text-align:left;
	border:none;
	padding:10px 0 5px 50px;
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	background-color:#074D93;/* セパレーターth背景色 */
	border-top:2px solid #EEEEEE;
	border-left:2px solid #EEEEEE;
	border-right:2px solid #EEEEEE;
	border-bottom:1px solid #EEEEEE;
	border-radius: var(--radius) var(--radius) 0 0 / var(--radius) var(--radius) 0 0;
	-webkit-border-radius: var(--radius) var(--radius) 0 0 / var(--radius) var(--radius) 0 0;
	-moz-border-radius: var(--radius) var(--radius) 0 0 / var(--radius) var(--radius) 0 0;
}
#input-table table tr.input-formgroup th.formgroup-closed{
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	border-bottom:2px solid #EEEEEE;
	border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	-moz-border-radius: var(--radius);
}
#input-table table tr.input-formgroup th:hover{
	cursor:pointer;
	filter: alpha(opacity=90);
	opacity:0.90;
	-moz-opacity:0.90;
	-ms-filter: "alpha(opacity=90)";
}
#input-table table tr.input-formgroup span.input-formgroup-title{
	display:block;
	color:#FFFFFF;/* セパレータータイトル文字色 */
	font-size:1.3em;/* セパレータータイトル文字サイズ */
	padding-bottom:5px;
}
#input-table table tr.input-formgroup span.input-formgroup-text{
	position: relative;
	display:block;
	color:#FFFFFF;/* セパレーター説明文文字色 */
	padding:0 5px 0 1em;
	margin:5px 10px 10px 10px;
	border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	-moz-border-radius: var(--radius);
}
#input-table table tr.input-formgroup span.input-formgroup-text:before{
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 0.5em;
	height: 0.5em;
	background: #FFFFFF;
	content:"";
	border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	-moz-border-radius: var(--radius);
}
#input-table table tr.input-formgroup span.input-formgroup-text a:visited,
#input-table table tr.input-formgroup span.input-formgroup-text a:link{
	color:#FFFFFF;/* セパレーター説明文内リンク色1 */
	text-decoration:underline;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:hover,
#input-table table tr.input-formgroup span.input-formgroup-text a:active{
	color:#66FFFF;/* セパレーター説明文内リンク色2 */
	text-decoration:underline;
}
@media screen and (max-width:719px) {
	#input-table table {
		width: 100%;
		border-collapse: collapse;
		border-bottom: 1px solid #CCCCCC;
	}

	#input-table table th ,
		#input-table table td {
		width: 100%;
		display: block;
		border-top: none;
		text-align: left;
	}

	#input-table table th {
		padding: 6px 45px 6px 12px;
		background: #eeeeee none repeat scroll 0 0;
		font-weight: normal;
	}
	#input-table table td {
		padding-bottom: 20px;
	}
	#input-table table td:after {
		content:"";
		display:block;
		clear:both;
	}
	input[type="text"], input[type="password"] {
		width: 100%!important;
	}
	#input-table table textarea {
		width: 96%;
		max-height: 24vw;
		font-size: 110%;
	}
	.input_required,
	.input_not_required:before {
		position: absolute;
		right: 10px;
		font-size: 0.8em;
		top: 6px;
	}
}
@media screen and (max-width:479px) {
	.form_flow li {
		display: block;
		width: 100%;
		border-left: 10px solid #cccccc;
		border-top: 1px dotted #ccc;
		text-align: left;
	}
	.form_flow li:first-child {
		border-top: none;
	}
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: pages */

/* -------------------------------------------- トップページ */
.slideFrame {
  position:relative;
}
.body_common .slider .img {
  position: relative;
    width: 100%;
    min-height: 80vh;
    background-position: center center;
    background-size: cover;
}
.body_common .top_image {
	margin:0 auto;
	position:relative;
  width:100%;
  height:80vh;
  overflow: hidden;
}
                            @media screen and (max-width:1050px) {
                            .body_common .top_image {
                                height: auto;
                            }  
                            }

.body_common .top_image img {
	vertical-align: middle!important;
}
.body_common .top_overlay {
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index:2;
}
                            @media screen and (max-width:750px) {
                            .body_common .top_overlay {
                                width: 100%;
                            }  
                            }

.body_common .top_mp4,
.body_common .top_mp4 video{
	max-width:100%;
	height:auto;
}
.body_common .top_youtube{
	max-width:100%;
	height:calc(100vw * 0.5);
}
@media screen and (min-width:1201px) {
	.body_common .top_image{
	}
	.body_common .top_youtube{
		height:650px;
	}
}

/* フェイドイン */
.zoom-fade {
  overflow: hidden;
  width: 100%;
  
  margin: 0 auto;
}
.height100 .zoom-fade {
  height: 100vh;
}
.height100 .zoom-fade img {
  height: 100vh!important;
}
.zoom-fade__item {
  object-fit: cover;
}
.zoom-fade span {
  padding: 30% 0;
  display: block;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.5s ease-out;
}
.height100 .zoom-fade span {
  height: 100vh;
}
.add-animation {
  /* アニメーション名 アニメーションにかかる時間 アニメーションの実行前後の状態 */
  /* zoom-fade 10秒 [実行前]最初のキーフレーム（0%） → [実行後]最後のキーフレーム（100%） */
  animation: zoom-fade 10s both;
}

@keyframes zoom-fade {

  0% {
    /*transform: scale(1.05);*/
    transform: scale(1);
  }

  100% {
    /*transform: scale(1);*/
    transform: scale(1.05);
  }

}


.sliderText {
    display: flex;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-justify-content: center;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    padding: 20px;
    color: #FFF;
    min-height: 5em;
    z-index: 1;
    text-align: center;
    font-size: 2.8em;
  font-family: var(--sub-font);
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.6);
}
.height100 .sliderText {
  height:100vh;
  height: -webkit-fill-available;
}
.sliderText .text {
  position: relative;
    /* top: 25%; */
    height: 100%;
    width: 100%;
    /* -webkit-transform: translateY(-25%); */
    /* transform: translateY(-25%); */
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.sliderText .text .sp {
    display:none;
}
.sliderText .text dd {
  display:inline-block;
  margin:20px 0 0;
  font-size: 0.53em;
  background-color: var(--base-fontcolor);
  padding: 5px 20px;
}

                      @media screen and (max-width: 814px) {
                        .sliderText .text dl {
                              margin-top:0;
                              width: 96%;
                          }
                          .sliderText .text .pc {
                              display:none;
                          }
                          .sliderText .text .sp {
                              display:block;
                          }
                      }


/* introduction */
.body_common .introduction {
  text-align:center;
  font-size:1.3em;
  font-weight: 700;
  line-height:3;
  position:relative;
}
                            @media screen and (max-width:750px) {
                            .body_common .introduction {
                                font-size:2.7667vw;
                            }  
                            }

.body_common .introduction article {
  padding: 60px 20px 0;
}
                            @media screen and (max-width:750px) {
                            .body_common .introduction article {
                                padding: 40px 20px 0;
                            }  
                            }

.body_common .introduction .blur {
  filter: blur(3px);
  font-size:7em;
  animation: loop-text 10s linear infinite;
  margin: 0;
  color: #eee2bd;
  white-space: nowrap;
  position:absolute;
  bottom:20%;
  left: 0;
  width: 100%;
  z-index: -1;
  line-height: 1;
}
.body_common .introduction .blur span {
  display: inline-block;
  white-space: nowrap;
}
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ----------------------- itemList */
.body_common .itemList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding:0;
  text-align: center;
  margin: 0 auto;
}
.body_common .itemList li {
  list-style:none;
  overflow: hidden;
}
.body_common .itemList li a {
  position:relative;
  display: block;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.5s ease-out;
  padding: 54.5% 0;
  text-decoration: none;
  color:#fff;
  font-weight: 700;
}
.body_common .itemList li a:hover {
  transform: scale(1.1);
}
.body_common .itemList li a:after {
  content:"";
  width: 100%;
  height: 100%;
  display:block;
  background-color: rgba(0, 0, 0, 0.18);
  position: absolute;
  top: 0;
  left: 0;
}
.body_common .itemList li a span {
  height: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 1;
  position: relative;
}


/* ------------------------------ projectsList */
.projectsList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}
                      @media screen and (max-width: 814px) {
                        .projectsList {
                              gap: 10px;
                          }
                           }

.projectsList li {
  list-style: none;
  width: calc(50% - 10px);
}
                      @media screen and (max-width: 814px) {
                        .projectsList li {
                              width: 100%;
                          }
                           }

.projectsList li a {
  position:relative;
  text-decoration: none;
  background-color: #fff;
  border: solid 3px var(--color_main);
  padding: 28px 57px 28px 30px;
  font-size: 1.2em;
  border-radius: 10px;
  color: #222;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
                      @media screen and (max-width: 814px) {
                        .projectsList li a {
                            border: solid 2px var(--color_main);
                            padding: 10px 43px 10px 9px;
                            font-size: 0.9em;
                            line-height: 1.5;
                          }
                           }

.projectsList li a:hover {
  background-color:#eef5f1;
}

.projectsList li a span {
  content: '';
  display: flex;
  vertical-align: middle;
  line-height: 1;
  position: absolute;
  width: 0.7em;
  height: 0.1em;
  background: currentColor;
  right: 1.2em;
  top: 50%;
  color:var(--color_main);
  transition: all 0.5s;
  flex-direction: column;
}
.projectsList li a:hover span {
  right: 1em;
}
.projectsList li a span::before {
  content: '';
  width: 0.45em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50.5%;
  right: -0.05em;
  box-sizing: border-box;
}
.projectsList li a span::after {
  content: '';
  width: 1em;
  height: 1.8em;
  border-left: 1px dotted currentColor;
  position: absolute;
  top: -0.8em;
  left: -0.8em;
  font-size: 13.5px;
  display: block;
}


/* ------------------------------ bnrList */
.bnrList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin:0 auto 50px
}
                      @media screen and (max-width: 814px) {
                        .bnrList {
                              gap: 10px;
                              margin:0 auto 20px
                          }
                           }

.bnrList li {
  list-style: none;
  width: calc(25% - 10px);
}
                      @media screen and (max-width: 814px) {
                        .bnrList li {
                              width: calc(50% - 5px);
                          }
                           }

.bnrList li a {
  display:block;
}
.bnrList li a img {
  width:100%;
}


/* -----------------------  areaList */
.body_common section.area {
  background-color: var(--bg-color);
}
.lower section.area {
  border-top:solid 1px #cfcfcf;
  padding-top:30px;
}
section.area ul {
  display: flex;
  flex-wrap: wrap;
  padding:0;
  gap: 15px;
  margin-bottom: 0;
}
.lower section.area ul {
  margin-bottom:50px;
}
section.area li {
  list-style: none;
  display: inline-block;
  flex: 1;
  text-align: center;
}
                      @media screen and (max-width: 814px) {
                        section.area li {
                              width: calc(100% / 3);
                              flex: auto;
                          }
                           }
                     
                        
section.area li a {
  display:block;
  text-decoration: none;
  background-color: #fff;
  border-radius:6px;
  padding:20px 10px;
  font-size:1.1em;
  color: var(--base-fontcolor);
  border:solid 1px #cfcfcf;
}
.body_common section.area li a {
  border:none;
  box-shadow: 0 2px 6px #0000001a;
}
section.area li a:hover {
  background-color:var(--base-fontcolor);
  color:#FFF;
}


/* ------------------------------------------------------------------  news */
.body_common .news article {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33.33% 1fr;
  grid-template-columns: 24.33% 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  gap: 0vw 2.77vw;
  gap: min(0vw, 0px) min(2.77vw, 40px);
}
                      @media screen and (max-width: 814px) {
                        .body_common .news article {
                            display: block;
                          }
                           }

.body_common .news h3 {
  border-bottom:none;
  font-size: 2.7em;
  margin: 0;
  line-height: 1.5;
}
                      @media screen and (max-width: 814px) {
                        .body_common .news h3 {
                            font-size: 1.6em;
                          }
                           }

.body_common .news h3 span {
  display:block;
  font-size:0.4em;
  color: var(--color_main);
}


.news .list_text li {
  margin: 0;
  border-radius: 5px;
  position:relative;
}
.news .list_text li:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, currentColor, currentColor 2px, transparent 0, transparent 0);
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: 5px 2px;
  color: #CCC;
  display: block;
  content: "";
}
.news .list_text li .date {
  color: var(--color_main);
  font-size: 0.9em;
  width: 8em;
  display: inline-block;
  padding: 15px 15px 15px 15px;
  vertical-align: top;
}
                      @media screen and (max-width: 814px) {
                        .news .list_text li .date {
                            width: 100%;
                            display: block;
                            padding: 12px 15px 0px 0;
                          }
                          }

.news .list_text li .text {
  display: inline-block;
  padding: 15px 4px 15px 20px;
  font-weight: 700;
  width: calc(100% - 7.2em);
}
                      @media screen and (max-width: 814px) {
                        .news .list_text li .text {
                              padding: 0px 8px 12px 0;
                              width:100%;
                              font-size: 0.9em;
                              line-height: 1.5;
                          }

                          }

.news .list_text li .text span {
  display:inline-block;
  margin-left:10px;
  color:#CE171A;
}
                      @media screen and (max-width: 814px) {
                        .news .list_text li .text span {
                              margin-left:0;
                          }

                          }

/* ------------------------------------------------------------------  about */

.body_about .msg {
  line-height:2;
}

.body_about .pic {
  float: right;
  width: 30%;
  text-align: center;
}

.body_about .msg .pic {
  float: left;
}

.body_about .txt {
  width: 65%;
  float:right;
  padding-bottom:20px;
}

            @media screen and (max-width: 719px) {
              .body_about .pic,
              .body_about .txt {
                float:none;
                width:100%;
              }
              .body_about .pic img {
                width:70%;
              }
              }             

.body_about .name {
  font-size: 1.8em;
  line-height: 1.5;
  text-align: right;
  margin: 50px 0 0;
}
                      @media screen and (max-width: 814px) {
                        .body_about .name {
                              font-size: 1.4em;
                          }
                          }

.body_about .name dt {
  font-size: 0.6em;
  display: inline-block;
}
.body_about .name dd {
  font-family: var(--sub-font);
  display: inline-block;
  letter-spacing: 0.2em;
  margin: 0 0 0 15px;
}

/* ------------------------------------------------------------------  organization-chart */



/* ------------------------------------------------------------------  officers */
.body_officers .right {
  text-align: right;
  font-size:0.8em;
}

.body_officers .businessOperatorList li span:first-of-type {
  width:30%;
}
.body_officers .businessOperatorList li span:nth-child(2) {
  width:40%;
}
.body_officers .businessOperatorList li span:last-of-type {
  width:30%;
}


/* ------------------------------------------------------------------  accessmap */

.body_accessmap .map {
  display: flex;
  padding: 20px 0;
  gap: 4%;
  flex-wrap: wrap;
}
.body_accessmap .map p {
  width:42%;
  margin:0;
  line-height: 0;
}
.body_accessmap .map p img {
  width:100%;
}
.body_accessmap .map .googlemap {
  width: 54%; 
}
.body_accessmap .map .googlemap iframe{
  height: 100%;
}

            @media screen and (max-width: 719px) {
              .body_accessmap .map {
                display:block;
              }
              .body_accessmap .map p,
              .body_accessmap .map .googlemap {
                width:100%;
              }
              .body_accessmap .map p {
                margin-bottom:20px;
              }
              .body_accessmap .map .googlemap iframe{
                height:400px;
              }
              }

/* ------------------------------------------------------------------  list */
.body_list h2 {
  padding-bottom:0;
}
.body_list h3 {
  padding-top:100px;
}
.body_list h3:first-of-type {
  padding-top:40px;
}

.body_list .right,
.body_list02 .right {
  text-align: right;
  font-size:0.8em;
}
.businessOperatorList {
  padding:0;
  border-top:solid 1px #cfcfcf;
  margin:0 auto 30px;
}
.businessOperatorList {
  margin:0 0 50px;
}
.businessOperatorList li {
  list-style: none;
}
.businessOperatorList li {
  display: flex;
  text-decoration: none; 
  border-bottom:solid 1px #cfcfcf;
  border-left:solid 1px #cfcfcf;
  transition: background-color 0.2s, color 0.2s;
}
.businessOperatorList li:nth-child(even) {
  background-color:#fbfbfb;
}

.businessOperatorList li span {
  display: block;
  padding:15px 15px 10px;
  border-right:dotted 1px #cfcfcf;
  width: 11%;
}
.businessOperatorList li span:first-of-type {
  width:31%;
  color: var(--base-fontcolor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:10px;
}

.productInfo li>span:first-of-type {
  width:20%;
}
.businessOperatorList li span:nth-child(2) {
  width:14%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top:10px;
  line-height:1.5;
}
.businessOperatorList li span:nth-child(4) {
  width:34%;
}
.businessOperatorList li span:last-of-type {
  width:17%;
  border-right:solid 1px #cfcfcf;
}

            @media screen and (max-width: 719px) {
              .businessOperatorList li,
              .businessOperatorList li span {
                display:block!important;
                width:100%!important;
                text-align: left!important;
              }
              .businessOperatorList li {
                padding:10px!important;
              border-right: solid 1px #cfcfcf!important;
              }
              .businessOperatorList li span {
                padding:0!important;
                border-right: none!important;
              }
              }



/* ------------------------------------------------------------------  toshimokuzai */

.body_toshimokuzai .toshimokuzaiLogo {
    text-align: center;
}
.body_toshimokuzai .toshimokuzaiLogo img {
    max-width: 520px;
    width: 90%;
}

.body_toshimokuzai .linkList {
	width:90%;
	max-width:1090px;
	margin:0 auto;
	text-align:center;
}
		@media screen and (max-width: 798px) {
			.body_toshimokuzai .linkList {
				width:98%;
				padding-left:10px;
			}
			.body_toshimokuzai .linkList span.ttl {
   				 font-size: 1.4em;
			}
		}

		@media screen and (max-width: 480px) {
			.body_toshimokuzai .linkList {
				padding:0 20px;
				width:100%;
				margin:0 auto 20px;
			}
		}

.body_toshimokuzai .linkList li {
	display:inline-block;
	width:33%;
	padding:0 40px 0 0;
	margin:0;
	list-style:none;
	text-align:center;
	position:relative;
  vertical-align: top;
}
		@media screen and (max-width: 798px) {
			.body_toshimokuzai .linkList li {
				width:49%;
				padding:0 20px 0 0;
	}
		}

		@media screen and (max-width: 480px) {
			.body_toshimokuzai .linkList li {
				margin-bottom:0;
	}
			.body_toshimokuzai .linkList li {
				width:100%;
				padding:0;
	}
		}		

.body_toshimokuzai .linkList li span {
	display:block;
}

.body_toshimokuzai .linkList li a {
	display:block;
	padding:30px 20px 30px;
  color: #000;
  text-decoration: none;
  line-height:1.5;
}
		@media screen and (max-width: 798px) {
			.body_toshimokuzai .linkList li a {
   				 padding:30px 10px 30px;
			}
		}

.body_toshimokuzai .linkList li a:hover {
	background:#f8f7f5;
	border-radius:10px;
}
.body_toshimokuzai .linkList li img {
	width:100%;
	max-width:378px;
	margin-bottom:20px;
}
		@media screen and (max-width: 480px) {
		.body_toshimokuzai .linkList li img {
				float:none;
				width:70%;
				padding:0;
			}
		}
		
.body_toshimokuzai .linkList li:after {
	font-family: 'Font Awesome 5 Free';
	content: '\f35d';
	font-size: 0.9em;
	margin: 0px 3px;
	font-weight: 900;
	position:absolute;
	top: 3%;
    right: 15%;
}

.body_toshimokuzai .linkList span.ttl {
	margin-bottom:10px;
  font-size: 1.35em;
  font-weight: 500;
}
.body_toshimokuzai .linkList span.ttl span {
	display:inline;
}


.body_toshimokuzai .linkList li span.txt {
	text-align:left;
  font-size: 0.9em;
}
		@media screen and (max-width: 798px) {
		.body_toshimokuzai .linkList li span.txt {
				font-size: 1em;
			}
		}


/* ------------------------------------------------------------------  woody_biomass_guideline */
.body_woody_biomass_guideline .introduction {
  text-align: left;
  margin-bottom: 50px;
}

@media screen and (max-width: 719px) {
.body_woody_biomass_guideline table tr:first-of-type {
  display:none;
}
}







/* ------------------------------------------------------------------  contact */

.body_contact h3 {
  text-align: center ;
  margin-top: 0;
}

.body_contact .msg {
  text-align: center;
}
                      @media screen and (max-width: 814px) {
                        .body_contact .msg {
                              text-align: left;
                          }
                          }

.body_contact .frame {
  max-width:890px;
  margin:50px auto 70px;
}
                      @media screen and (max-width: 814px) {
                        .body_contact .frame {
                              margin:30px auto 30px;
                          }
                          }

.contactMeans {
  display:flex;
}
                      @media screen and (max-width: 814px) {
                        .contactMeans {
                              display:block;
                          }
                          }

.contactMeans dl {
  width:100%;
  text-align: center;
}
.contactMeans dt {
  margin:0 0 20px;
  font-size:0.9em;
}
.contactMeans dd {
  margin:0;
}
                      @media screen and (max-width: 814px) {
                        .contactMeans dd {
                              margin-bottom:50px;
                          }
                          }

.contactMeans dl:first-of-type {
  border-right: dotted 1px #ccc;
}
                      @media screen and (max-width: 814px) {
                        .contactMeans dl:first-of-type {
                              border-right: none;
                          }
                          }

.contactMeans dl:first-of-type dd {
  font-weight:600;
  font-size:1.5em;
}

.contactMeans dl:first-of-type dd span {
  display: block;
  font-weight: 400;
  font-size: 0.6em;
  line-height: 0.3;
}
.contactMeans dl:last-of-type dd a {
  display:inline-block;
  border: solid 1px #ccc;
  border-radius: 50px;
  padding: 15px 30px;
  width: 80%;
  text-decoration: none;
}


@media screen and (max-width: 719px) {
.body_contact table tr:first-of-type {
  display:none;
}
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: sp */

.pc {
  display:block;
}
.sp {
  display:none;
}
                      @media screen and (max-width: 814px) {
                          .pc {
                              display:none;
                          }
                          .sp {
                              display:block;
                          }
                      }

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: clear */

.msg:after,
.profile:after,
section:after,
article:after {
	content: "";
	display: block;
	clear: both;
}
