﻿@charset "utf-8";

/* ==========================================
	frame.css フレームCSS
	Last Up Date 2021/03/18
 --------------------------------------------
	INDEX
 --------------------------------------------

	0.00.00 common サイト共通の枠組み
		0.01.00 common_body 共通のボディ
		0.02.00 common_wrapper 共通のラッパー
		0.03.00 common_header 共通のヘッダー
		0.04.00 common_contents 共通のコンテンツ
		0.05.00 common_footer 共通のフッター
		0.06.00 common_font 共通のフォント
		0.07.00 common_img 共通のイメージ
		0.08.00 common_link 共通のリンク
			0.08.01 common_a:link 未訪問のリンク
			0.08.02 common_a:visited  訪問済のリンク
			0.08.03 common_a:active  クリック中
			0.08.04 common_a:hover  カーソルを乗せた時
		0.09.00 common_display:none 共通の非表示
		0.10.00 共通webフォント設定
		0.11.00 keyfream設定

	1.00.00 PC_media screen MaxPC用サイトの枠組み
		1.01.00 PC_body MaxPC用のボディ
		1.02.00 PC_wrapper MaxPC用のラッパー
		1.03.00 PC_header MaxPC用のヘッダー
		1.04.00 PC_contents MaxPC用のコンテンツ
		1.05.00 PC_footer MaxPC用のフッター
		1.06.00 PC_font MaxPC用ののフォント
		1.07.00 PC_img MaxPC用の画像
		1.08.00 PC_display:table MaxPC用の疑似テーブル
		1.09.00 PC_anchor MaxPC用アンカー
		1.10.00 PC_top-arrow MaxPC用トップへ戻る
	
	2.00.00 TB_media screen TB用サイトの枠組み
		2.01.00 TB_body TB用のボディ
		2.02.00 TB_wrapper TB用のラッパー
		2.03.00 TB_header TB用のヘッダー
		2.04.00 TB_contents TB用のコンテンツ
		2.05.00 TB_footer TB用のフッター
		2.06.00 TB_font TB用のフォント
		2.07.00 TB_img TB用の画像
		2.08.00 TB_display:table TB用の疑似テーブル
		2.09.00 TB_anchor TB用アンカー
		2.10.00 TB_anchor TB用その他
		
	3.00.00 SP_media screen SP用サイトの枠組み
		3.01.00 SP_body SP用のボディ
		3.02.00 SP_wrapper SP用のラッパー
		3.03.00 SP_header SP用のヘッダー
		3.04.00 SP_contents SP用のコンテンツ
		3.05.00 SP_footer SP用のフッター
		3.06.00 SP_font SP用のフォント
		3.07.00 SP_img SP用の画像
		3.08.00 SP_display:table SP用の疑似テーブル
		3.09.00 SP_anchor SP用アンカー
		3.10.00 SP_anchor SP用その他

========================================== */

/* ==========================================
0.00.00 common サイト共通の枠組み
========================================== */
/* ==========================================
	0.01.00 common_body 共通のボディ
========================================== */
body {
	width:100%;
    background: #f0f0f0;
}
/* ==========================================
	0.02.00 common_wrapper 共通のラッパー
========================================== */
#wrapper{
    display: none;
	width: 100%;
	margin: 0 auto;
	position: relative;
    overflow: hidden;
}
/* ==========================================
	0.03.00 common_header 共通のヘッダー
========================================== */
/* ==========================================
	0.04.00 common_contents 共通のコンテンツ
========================================== */
#contents{
	min-height:100%;
}
select,button/*リセット*/ {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
a,img,a span,a::after,a::before,p::after,p::before,div::before,div#nav_bg,ul.dot_bt li,select,input[type="text"],button {
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
}
/* ==========================================
	0.05.00 common_footer 共通のフッター
========================================== */
/* ==========================================
	0.06.00 common_font 共通のフォント
========================================== */
h1,h2,h3,h4,h5,h6,p,dl, dt, dd, ol, ul, li,form, label,table,tbody,tr, th, td,a,span,button {
	font-family: -apple-system, 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', '游ゴシック Medium', 'メイリオ', meiryo, sans-serif;
	font-weight: normal;
}
/* ==========================================
	0.07.00 common_img 共通のイメージ
========================================== */
img {
	max-width:100%;
	height:auto;
}
/* ==========================================
	0.08.00 common_link 共通のリンク
========================================== */
/* 0.08.01 common_a:link 未訪問のリンク */
a:link {
	text-decoration:none;
}
/* 0.08.02 common_a:visited  訪問済のリンク */
/*訪問後のリンク*/
a:visited {
	text-decoration:none;
}
/* 0.08.03 common_a:active  クリック中 */
a:active {
	text-decoration:none;
}
/* ==========================================
	0.09.00 common_display:none 共通の非表示
========================================== */
/* ==========================================
	0.10.00 共通webフォント設定
========================================== */
/* ==========================================
	0.11.00 keyfream設定
========================================== */


/* ==========================================
1.00.00 PC_media screen MaxPC用サイトの枠組み
========================================== */
@media screen and (min-width:1025px),print{
/* ==========================================
	1.01.00 PC_body MaxPC用のボディ
========================================== */
html, body { height: 100%; }
/* ==========================================
	1.02.00 PC_wrapper MaxPC用のラッパー
========================================== */	
/* ==========================================
	1.03.00 PC_header MaxPC用のヘッダー
========================================== */
div#sp_navi {
    display: none;
}

div.header {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 9999;
    box-sizing: border-box;
    background: rgb(114,95,94,0.9);
    max-width: 1980px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-out;
 }
div.header.headerColorScroll {
    visibility: visible;
    opacity: 1;
    transition: 0.5s ease-out;
}
div.header > a {
    padding: 10px 0;
    width: 80px;
    height: fit-content;
}
div.header > a:hover {
    opacity: 0.5;
}
div.header > ul {
    display: flex;
    align-items: center;
    margin: 0 0 0 15px;
}
div.header > ul li {
    display: flex;
}
div.header > ul li:not(:last-child) a {
    margin: 0 40px 0 0;
    height: 15px;
    position: relative;
}
div.header > ul li:not(:last-child) a:hover {
    opacity: 0.5;
}
div.header > ul li:last-child a {
    display: block;
    width: 66px;
    height: 16px;
    background: #e18686;
    padding: 18px 50px;
    text-align: center;
    border-radius: 40px;
}
div.header > ul li:last-child a:hover {
    transform: scale(1.05);
}
/* ==========================================
	1.04.00 PC_contents MaxPC用のコンテンツ
========================================== */
#contents{
	margin:0 auto;
}
.inBox {
	margin:0 auto;
	box-sizing: border-box;
}
/* ==========================================
	1.05.00 PC_footer MaxPC用のフッター
========================================== */
div#footer {
	max-width: 1980px;
	margin: 0 auto;
    background: #88706c;
    position: relative;
    z-index: 0;
}
div#footer div.inBox {
	padding: 0 50px;
	position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
div#footer div.inBox > p:first-child {
	width: 230px;
    height: 200px;
    text-align: center;
    position: absolute;
    top: -109px;
    left: auto;
}
div#footer div.inBox > div:nth-child(2) {
	margin: 135px 0 0;
    width: 100%;
    text-align: center;
    position: relative;
}
div#footer div.inBox > div:nth-child(2) div:first-child {
	flex-wrap: wrap;
    display: flex;
    justify-content: center;
    margin: 0 0 45px;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p {
	font: 400 16px "ta-kotodama-r", sans-serif;
    color: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.08rem;
    width: 100%;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p br{
    display: none;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p > a {
    font: 400 16px "ta-kotodama-r", sans-serif;
    color: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.08rem;
    border-bottom: 1px solid #ffffff;
    margin: 0 0 0 20px;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p > a:hover {
    opacity: 0.5;
}
div#footer div.inBox > div:nth-child(2) div:first-child > h3 {
	font: 400 25px "ta-kotodama-r", sans-serif;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: 0.08rem;
    padding: 0 0 20px;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p:nth-child(4),
div#footer div.inBox > div:nth-child(2) div:first-child > p:nth-child(5) {
	width: auto;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p:nth-child(5) {
	padding: 0 0 0 20px;
}
div#footer div.inBox > div:nth-child(2) > a:nth-child(2) {
    background: #ffffff;
    width: 650px;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
    font: 400 19px Verdana, Geneva, "sans-serif";
    color: #88706c;
    border-radius: 5px;
    line-height: 1.0;
    letter-spacing: 0.05rem;
}
div#footer div.inBox > div:nth-child(2) > a:nth-child(2):hover {
	transform: scale(1.05);
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) {
	margin: 35px auto;
    width: 650px;
    display: flex;
    justify-content: space-between;
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) > a {
	font: 400 19px Verdana, Geneva, "sans-serif";
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: 0.05rem;
    position: relative;
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) > a:hover {
    color: rgba(255,255,255,0.50);
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) > a:not(:last-child)::before {
	content: "/";
    position: absolute;
    right: -21px;
    top: 0;
    color: #ffffff;
}
div#footer div.inBox > div:nth-child(2) > a:last-child {
	width: 43px;
    height: 50px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0% 25%);
    background: #ffffff;
    transform: rotate(90deg);
    margin: 0 3px 0 20px;
    position: absolute;
    bottom: 35px;
    right: 0;   
}
div#footer div.inBox > div:nth-child(2) > a:last-child:hover {
	transform: rotate(90deg) scale(1.1);
}
div#footer div.inBox > div:nth-child(2) > a:last-child::before {
	content: "";
    position: absolute;
    right: calc(50% - 7px);
    top: calc(50% - 6px);
    width: 9px;
    height: 9px;
    border-top: 2px solid #88706c;
    border-right: 2px solid #88706c;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    z-index: 2; 
}
div#footer div.inBox > div:nth-child(3) {
	position: relative;
    width: 100%;
    margin: 30px 0 0;
    display: flex;
    padding: 15px 0;
    justify-content: space-between;
}
div#footer div.inBox > div:nth-child(3)::before {
	content: "";
    width: calc(100% + 100px);
    height: 100%;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: -50px;
    z-index: -1;
}
div#footer div.inBox > div:nth-child(3) > a:first-child {
	width: 160px;
    height: 60px;
    position: absolute;
    top: -30px;
    left: calc(50% - 80px);
    z-index: 1;
    background: #e18686;
    font: 400 19px Arial, Helvetica, "sans-serif";
    color: #ffffff;
    box-sizing: border-box;
    border-radius: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
    line-height: 1.0;
    letter-spacing: 0.05rem;
}
div#footer div.inBox > div:nth-child(3) > a:first-child:hover {
	transform: scale(1.1);
}
div#footer div.inBox > div:nth-child(3) > div > a {
    font: 400 15px Verdana, Geneva, "sans-serif";
    color: #88706c;
    line-height: 1.0;
    letter-spacing: 0.01rem;
}
div#footer div.inBox > div:nth-child(3) > div > a:hover {
    opacity: 0.5;
}
div#footer div.inBox > div:nth-child(3) > div > a:first-child {
    padding: 0 30px 0 0;
}
div#footer div.inBox > div:nth-child(3) > p {
    font: 400 15px Verdana, Geneva, "sans-serif";
    color: #88706c;
    line-height: 1.0;
    letter-spacing: 0.01rem;
}
/* ==========================================
	1.06.00 PC_font MaxPC用のフォント
========================================== */
body,html {
	font-size: 62.5% ;
	letter-spacing: normal;
	line-height: 1.5;
}
p,a,h1,h2,h3,h4,h5,h6,h7,h8,h9,li {
	font-size: 1.4rem;
}
/* ==========================================
	1.07.00 PC_img MaxPC用の画像
========================================== */	
/* ==========================================
	1.08.00 PC_display:table MaxPC用の疑似テーブル
========================================== */
.table { display: table; }
.table_row { display: table-row; }
.table_cell { display: table-cell; }
/* ==========================================
	1.09.00 PC_anchor MaxPC用アンカー
========================================== */
/* ==========================================
	1.10.00 PC_top-arrow MaxPC用トップへ戻る
========================================== */
/* ==========================================
	1.11.00 404　の設定
========================================== */
div#page404-main {
    margin: 150px auto;
    max-width: 600px;
    padding: 0 50px;
}
div#page404-main h1.page-title {
  font: 500 2.5rem Zen Kaku Gothic New, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: 0.45em;
  position: relative;
}
div#page404-main ol.c-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #6C6C6C;
    line-height: 3.2;
}
div#page404-main ol.c-breadcrumbs li {
    display: inline-block;
    position: relative;
}
div#page404-main ol.c-breadcrumbs a {
    text-decoration: none;
    color: #e18686;
}
div#page404-main ol.c-breadcrumbs li:not(:last-of-type)::after {
    content: ">";
    display: inline-block;
    margin-right: 0.5em;
    margin-left: 0.5em;
}
div#page404-main div.page404-text-box {
    margin: 0 auto;
    font-size: 0.9375rem;
    color: #333;
    line-height: 2.333;
    text-align: justify;
}
div#page404-main div.page404-text-box a {
    color: #e18686;
}
}
/* ==========================================
2.00.00 TB_media screen TB用サイトの枠組み
========================================== */
@media screen and (max-width: 1024px) and (min-width:569px) {
/* ==========================================
	2.01.00 TB_body TB用のボディ
========================================== */
/* ==========================================
	2.02.00 TB_wrapper TB用のラッパー
========================================== */
/* ==========================================
	2.03.00 TB_header TB用のヘッダー
========================================== */
div.header {
    display: none;
 }
/* ==========================================
	2.04.00 TB_contents TB用のコンテンツ
========================================== */
#contents{
	margin:0 auto;
}
.inBox {
	margin:0 auto;
	box-sizing: border-box;
}
/* ==========================================
	2.05.00 TB_footer TB用のフッター
========================================== */
div#footer {
	margin: 0 auto;
    background: #88706c;
    position: relative;
    z-index: 0;
}
div#footer div.inBox {
	padding: 0 35px;
	position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
div#footer div.inBox > p:first-child {
	width: 210px;
    height: 184px;
    text-align: center;
    position: absolute;
    top: -92px;
    left: auto;
}
div#footer div.inBox > div:nth-child(2) {
	margin: 108px 0 0;
    width: 100%;
    text-align: center;
    position: relative;
}
div#footer div.inBox > div:nth-child(2) div:first-child {
	flex-wrap: wrap;
    display: flex;
    justify-content: center;
    margin: 0 0 30px;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p {
	font: 400 14px "ta-kotodama-r", sans-serif;
    color: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.08rem;
    width: 100%;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p > a {
    font: 400 14px "ta-kotodama-r", sans-serif;
    color: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.08rem;
    border-bottom: 1px solid #ffffff;
    margin: 0 0 0 20px;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p > a:hover {
    opacity: 0.5;
}
div#footer div.inBox > div:nth-child(2) div:first-child > h3 {
	font: 400 23px "ta-kotodama-r", sans-serif;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: 0.08rem;
    padding: 0 0 20px;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p:nth-child(4),
div#footer div.inBox > div:nth-child(2) div:first-child > p:nth-child(5) {
	width: auto;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p:nth-child(5) {
	padding: 0 0 0 20px;
}
div#footer div.inBox > div:nth-child(2) > a:nth-child(2) {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
    font: 400 17px Verdana, Geneva, "sans-serif";
    color: #88706c;
    border-radius: 5px;
    line-height: 1.0;
    letter-spacing: 0.05rem;
}
div#footer div.inBox > div:nth-child(2) > a:nth-child(2):hover {
	transform: scale(1.05);
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) {
	margin: 30px auto;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: space-between;
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) > a {
	font: 400 14px Verdana, Geneva, "sans-serif";
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: 0.05rem;
    position: relative;
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) > a:hover {
    color: rgba(255,255,255,0.50);
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) > a:not(:last-child)::before {
	content: "/";
    position: absolute;
    right: -21px;
    top: 0;
    color: #ffffff;
}
div#footer div.inBox > div:nth-child(2) > a:last-child {
	width: 43px;
    height: 50px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0% 25%);
    background: #ffffff;
    transform: rotate(90deg);
    margin: 0 3px 0 20px;
    position: absolute;
    bottom: -24px;
    right: 0;  
}
div#footer div.inBox > div:nth-child(2) > a:last-child:hover {
	transform: rotate(90deg) scale(1.1);
}
div#footer div.inBox > div:nth-child(2) > a:last-child::before {
	content: "";
    position: absolute;
    right: calc(50% - 7px);
    top: calc(50% - 6px);
    width: 9px;
    height: 9px;
    border-top: 2px solid #88706c;
    border-right: 2px solid #88706c;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    z-index: 2; 
}
div#footer div.inBox > div:nth-child(3) {
	position: relative;
    width: 100%;
    margin: 30px 0 0;
    padding: 30px 0 10px;
}
div#footer div.inBox > div:nth-child(3)::before {
	content: "";
    width: calc(100% + 100px);
    height: 100%;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: -50px;
    z-index: -1;
}
div#footer div.inBox > div:nth-child(3) > a:first-child {
	width: 150px;
    height: 50px;
    position: absolute;
    top: -30px;
    left: calc(50% - 80px);
    z-index: 1;
    background: #e18686;
    font: 400 17px Arial, Helvetica, "sans-serif";
    color: #ffffff;
    box-sizing: border-box;
    border-radius: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
    line-height: 1.0;
    letter-spacing: 0.05rem;
}
div#footer div.inBox > div:nth-child(3) > a:first-child:hover {
	transform: scale(1.1);
}
div#footer div.inBox > div:nth-child(3) > div {
    max-width: 500px;
    margin: 0 auto;
}
div#footer div.inBox > div:nth-child(3) > div > a {
    font: 400 14px Verdana, Geneva, "sans-serif";
    color: #88706c;
    line-height: 1.0;
    letter-spacing: 0.01rem;
    width: 100%;
    text-align: center;
    display: block;
}
div#footer div.inBox > div:nth-child(3) > div > a:hover {
    opacity: 0.5;
}
div#footer div.inBox > div:nth-child(3) > p {
    font: 400 13px Verdana, Geneva, "sans-serif";
    color: #c1c1c1;
    line-height: 1.0;
    letter-spacing: 0.01rem;
    text-align: center;
    padding: 15px 0 0;
}
/* ==========================================
	2.06.00 TB_font TB用のフォント
========================================== */
body,html {
	font-size: 62.5% ;
	letter-spacing: normal;
	line-height: 1.5;
}
p,a,h1,h2,h3,h4,h5,h6,h7,h8,h9,li {
	font-size: 1.4rem;
}
/* ==========================================
	2.07.00 TB_img TB用の画像
========================================== */
/* ==========================================
	2.08.00 TB_display:table TB用の疑似テーブル
========================================== */
.table { display: block; }
.table_row { display: block; }
.table_cell { display: block; }
/* ==========================================
	2.09.00 TB_anchor TB用アンカー
========================================== */
/* ==========================================
	2.10.00 TB_anchor TB用その他
========================================== */
/* ==========================================
	2.11.00 404　の設定
========================================== */
div#page404-main {
    margin: 150px auto;
    max-width: 600px;
    padding: 0 35px;
}
div#page404-main h1.page-title {
  font: 500 2.2rem Zen Kaku Gothic New, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: 0.45em;
  position: relative;
}
div#page404-main ol.c-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #6C6C6C;
    line-height: 3.2;
}
div#page404-main ol.c-breadcrumbs li {
    display: inline-block;
    position: relative;
}
div#page404-main ol.c-breadcrumbs a {
    text-decoration: none;
    color: #e18686;
}
div#page404-main ol.c-breadcrumbs li:not(:last-of-type)::after {
    content: ">";
    display: inline-block;
    margin-right: 0.5em;
    margin-left: 0.5em;
}
div#page404-main div.page404-text-box {
    margin: 0 auto;
    font-size: 0.85rem;
    color: #333;
    line-height: 2.333;
    text-align: justify;
}
div#page404-main div.page404-text-box a {
    color: #e18686;
}
}
/* ==========================================
3.00.00 SP_media screen SP用サイトの枠組み
========================================== */
@media screen and (max-width: 568px){	
/* ==========================================
	3.01.00 SP_body SP用のボディ
========================================== */
/* ==========================================
	3.02.00 SP_wrapper SP用のラッパー
========================================== *
/* ==========================================
	3.03.00 SP_header SP用のヘッダー
========================================== */
div.header {
    display: none;
 }
/* ==========================================
	3.04.00 SP_contents SP用のコンテンツ
========================================== */
#contents{
	margin:0 auto;
}
.inBox {
	margin:0 auto;
	box-sizing: border-box;
}
/* ==========================================
	3.05.00 SP_footer SP用のフッター
========================================== */
div#footer {
	margin: 0 auto;
    background: #88706c;
    position: relative;
    z-index: 0;
}
div#footer div.inBox {
	padding: 0 15px;
	position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
div#footer div.inBox > p:first-child {
	width: 180px;
    height: 158px;
    text-align: center;
    position: absolute;
    top: -79px;
    left: auto;
}
div#footer div.inBox > div:nth-child(2) {
	margin: 108px 0 0;
    width: 100%;
    text-align: center;
    position: relative;
}
div#footer div.inBox > div:nth-child(2) div:first-child {
	flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 20px;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p {
	font: 400 13px "ta-kotodama-r", sans-serif;
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 0.08rem;
    width: 100%;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p > a {
    font: 400 13px "ta-kotodama-r", sans-serif;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.08rem;
    border-bottom: 1px solid #ffffff;
    margin: 0 auto 5px;
    display: table;
}
div#footer div.inBox > div:nth-child(2) div:first-child > h3 {
	font: 400 20px "ta-kotodama-r", sans-serif;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: 0.08rem;
    padding: 0 0 15px;
}
div#footer div.inBox > div:nth-child(2) div:first-child > p:nth-child(4),
div#footer div.inBox > div:nth-child(2) div:first-child > p:nth-child(5) {
	width: auto;
}
div#footer div.inBox > div:nth-child(2) > a:nth-child(2) {
    background: #ffffff;
    width: 100%;
    max-width: 370px;
    display: block;
    margin: 0 auto;
    padding: 18px 0;
    font: 400 15px Verdana, Geneva, "sans-serif";
    color: #88706c;
    border-radius: 5px;
    line-height: 1.0;
    letter-spacing: 0.05rem;
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) {
	margin: 25px auto 30px;
    width: 100%;
    max-width: 370px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) > a {
	font: 400 13px Verdana, Geneva, "sans-serif";
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: 0.05rem;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    border-top: solid 1px #ffffff;
    border-left: solid 1px #ffffff;
    padding: 15px 0;
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) > a:nth-child(2n) {
    border-right: solid 1px #ffffff;
}
div#footer div.inBox > div:nth-child(2) div:nth-child(3) > a:nth-child(5),
div#footer div.inBox > div:nth-child(2) div:nth-child(3) > a:last-child {
    border-bottom: solid 1px #ffffff;
}
div#footer div.inBox > div:nth-child(2) > a:last-child {
	width: 43px;
    height: 50px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0% 25%);
    background: #ffffff;
    transform: rotate(90deg);
    margin: 0 3px 0 20px;
    position: absolute;
    bottom: -24px;
    right: 0;
}
div#footer div.inBox > div:nth-child(2) > a:last-child::before {
	content: "";
    position: absolute;
    right: calc(50% - 7px);
    top: calc(50% - 6px);
    width: 9px;
    height: 9px;
    border-top: 2px solid #88706c;
    border-right: 2px solid #88706c;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    z-index: 2; 
}
div#footer div.inBox > div:nth-child(3) {
    position: relative;
    width: 100%;
    margin: 30px 0 0;
    padding: 20px 0 5px;
}
div#footer div.inBox > div:nth-child(3)::before {
	content: "";
    width: calc(100% + 100px);
    height: 100%;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: -50px;
    z-index: -1;
}
div#footer div.inBox > div:nth-child(3) > a:first-child {
	width: 150px;
    height: 50px;
    position: absolute;
    top: -30px;
    left: calc(50% - 80px);
    z-index: 1;
    background: #e18686;
    font: 400 17px Arial, Helvetica, "sans-serif";
    color: #ffffff;
    box-sizing: border-box;
    border-radius: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
    line-height: 1.0;
    letter-spacing: 0.05rem;
}
div#footer div.inBox > div:nth-child(3) > div {
    max-width: 500px;
    margin: 0 auto;
}
div#footer div.inBox > div:nth-child(3) > div > a {
    display: none;
}
div#footer div.inBox > div:nth-child(3) > p {
    font: 400 13px Verdana, Geneva, "sans-serif";
    color: #c1c1c1;
    line-height: 1.0;
    letter-spacing: 0.01rem;
    text-align: center;
    padding: 10px 0 0;
}
/* ==========================================
	3.06.00 SP_font SP用のフォント
========================================== */
body,html {
	font-size: 62.5% ;
	letter-spacing: normal;
	line-height: 1.5;
}
p,a,h1,h2,h3,h4,h5,h6,h7,h8,h9,li {
	font-size: 1.2rem;
}
/* ==========================================
	3.07.00 TB_img TB用の画像
========================================== */
/* ==========================================
	3.08.00 TB_display:table TB用の疑似テーブル
========================================== */
.table { display: block; }
.table_row { display: block; }
.table_cell { display: block; }
/* ==========================================
	3.09.00 TB_anchor TB用アンカー
========================================== */
/* ==========================================
	3.10.00 TB_anchor TB用その他
========================================== */
/* ==========================================
	3.11.00 404　の設定
========================================== */
div#page404-main {
    margin: 150px auto;
    max-width: 600px;
    padding: 0 35px;
}
div#page404-main h1.page-title {
  font: 500 2.0rem Zen Kaku Gothic New, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: 0.45em;
  position: relative;
}
div#page404-main ol.c-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.7rem;
    color: #6C6C6C;
    line-height: 3.2;
}
div#page404-main ol.c-breadcrumbs li {
    display: inline-block;
    position: relative;
}
div#page404-main ol.c-breadcrumbs a {
    text-decoration: none;
    color: #e18686;
}
div#page404-main ol.c-breadcrumbs li:not(:last-of-type)::after {
    content: ">";
    display: inline-block;
    margin-right: 0.5em;
    margin-left: 0.5em;
}
div#page404-main div.page404-text-box {
    margin: 0 auto;
    text-align: justify;
}
div#page404-main div.page404-text-box p {
    font-size: 1.2rem;
    color: #333;
    line-height: 2.333;
}
div#page404-main div.page404-text-box a {
    color: #e18686;
}
}