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

/****************************
     共通
****************************/

@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&family=Noto+Sans+JP:wght@300;400;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,500;1,600;1,700;1,800&display=swap');

body {
    margin: 0;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","HiraKakuPro-W6", 'Noto Sans JP', sans-serif;
	color: #231815;
	padding-top: 122px;
	font-weight: 600;
}
img {
    max-width: 100%;
}
p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0.5em 0;
}
p.note {
    color: #898989;
}
a {
	transition: 0.3s;
}
a:hover {
    opacity: 0.7;
}

a[href^="tel:"] {
    pointer-events: none;
}
.sec {
    overflow: hidden;
    padding: 80px 0;
}
.contents_block {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.flex.just_center {
    justify-content: center;
}

.bg_red {
    background: #D80A2D;
}
.bg_red p {
    color: #fff;
}


/*見出し*/
.ttl_block {
    position: relative;
}
.ttl_block::before {
    content: "";
    width: 8px;
    height: calc(55% - 4px);
    background: #d80a2d;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.ttl_style01 {
    font-style: italic;
    font-size: 80px;
    color: #D80A2D;
    position: relative;
    margin: 0 0 0.5em;
	padding-left: 0.5em;
	line-height: 1;
	font-weight: 900;
}
.ttl_block .ttl_style01::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 4px solid;
    border-left: 4px solid;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
    position: absolute;
    left: 0;
    z-index: 1;
    top: calc(55% - 4px);
}
.ttl_block .ttl_style01::after {
    content: "";
    width: 8px;
    height: 110%;
    background: #231815;
    position: absolute;
    left: 0;
    top: 0;
}
.ttl_style01 span {
    font-size: 28px;
    display: block;
    margin-top: 1em;
}
.bg_red .ttl_block::before {
    background: #fff;
}
.bg_red .ttl_style01 {
    color: #fff;
}

.ttl_style02 {
    text-align: center;
    background: #D80A2D;
    height: 85px;
    line-height: 85px;
    font-size: 38px;
    color: #FFFFFF;
    margin: 0 auto 0.5em;
}
.ttl_style03 {
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 26px;
    background: #D80A2D;
    color: #fff;
}
.bg_red .ttl_style03 {
    background: #fff;
    color: #231815;
}


/**/
.dl_style01 {
    margin: 2em 0;
	font-size: 18px;
}
.dl_style01 dt {
    color: #D80A2D;
    font-weight: 600;
    margin: 0.5em 0;
}
.dl_style01 dd {
    margin: 0;
}
.dl_style01 dd > img {
    margin: 1em 0 1em;
}

/*リンク集*/
.link_block {
    margin: 2em 0 0;
}
.link_block > ul {
    width: 100%;
    margin: 0 0 2.25vw;
    padding:0;
    display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: space-between;
    list-style: none;
}
.link_block > ul li {
    width: calc((100%/3) - 1%);
    max-width: 320px;
    text-align: center;
}
.link_block > ul li a {
    display: block;
    width: 100%;
    max-height: 122px;
    height: 20vw;
    background: #113866;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    display: table;
    border-radius: 6px;
    position: relative;
}
.link_block > ul li a span {
    display: table-cell;
    vertical-align: middle;
}
.link_block > ul li a::after {
    content: "";
    width: 1.5vw;
    height: 1.5vw;
    max-width: 16px;
    max-height: 16px;
    border-top: 4px solid;
    border-right: 4px solid;
    position: absolute;
    right: 5%;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}
.link_block > a {
    background: #113866;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    display: block;
    text-align: center;
    position: relative;
    height: 90px;
    line-height: 90px;
    border-radius: 6px;
}
.link_block > a::after {
    content: "";
    width: 1.5vw;
    height: 1.5vw;
    max-width: 16px;
    max-height: 16px;
    border-top: 4px solid;
    border-right: 4px solid;
    position: absolute;
    right: 2%;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}






/****************************
     ヘッダー
****************************/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    z-index: 2;
    position: fixed;
    width: 100%;
	top: 0;
}

header h1 {
    margin: 0;
    max-width: 444px;
    width: 38%;
}


/*ナビ*/
header .nav_block {
    max-width: 122px;
    max-height: 122px;
    width: 14vw;
    height: 14vw;
    background: #D80A2D;
    position: relative;
    cursor: pointer;
}
header nav {
    display: none;
    position: absolute;
    top: 100%;
    width: 80%;
    max-width: 500px;
    right: -80%;
    background: #D80A2D;
    color: #fff;
    height: calc(100vh - 122px);
    z-index: 2;
}
header .nav_block span {
    width: 60%;
    max-height: 6px;
    height: 1vw;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s;
}
header .nav_block span:first-of-type {
    top: 30%;
}
header .nav_block span:nth-of-type(2) {
    top: 50%;
}
header .nav_block span:nth-of-type(3) {
    top: 70%;
}
header nav ul {
    padding: 0;
    margin: 0 0 3em;
}
header nav ul li {
    border-bottom: 1px solid;
    list-style: none;
}
header nav ul li a {
    padding: 1em 2em;
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
header nav ul li a::after {
    content: "";
    width: 3vw;
    height: 3vw;
    max-width: 15px;
    max-height: 15px;
    border-top: 2px solid;
    border-right: 2px solid;
    position: absolute;
    right: 5%;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    margin: auto;
}
header nav > a {
    text-align: center;
    display: block;
    margin: 2em auto;
    max-width: 120px;
    width: 20%;
}

/*OPEN*/
.open {
    position: relative;
}
.open::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}
.open header .nav_block span:first-of-type {
    transform: rotate(45deg);
    top: 50%;
}
.open header .nav_block span:nth-of-type(2) {
    transform: rotate(135deg);
	animation: open_line .3s ease;
}
.open header .nav_block span:nth-of-type(3) {
    top: 50%;
    transform: rotate(-45deg);
}
@keyframes open_line {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.open nav {
    display: block;
    right: 0;
	animation: open .35s ease-in-out forwards;
}

@keyframes open {
  0% {
    transform: translatex(80%);
  }
  100% {
    transform: translatex(0%);
  }
}

/****************************
     フッター
****************************/
/*ボタン*/
.pape_top {
    position: fixed;
    /*bottom: 5%;*/
    right: 5%;
    max-width: 125px;
    max-height: 125px;
    width: 13vw;
    height: 13vw;
	z-index: 1;
}
.pape_top a {
    padding: 55% 0 0;
    display: block;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    background: #231815;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    position: relative;
}
.pape_top a::before {
    content: "";
    max-width: 26px;
    max-height: 26px;
    width: 3vw;
    height: 3vw;
    border-left: 5px solid;
    border-top: 5px solid;
    position: absolute;
    top: 33%;
    transform: rotate(45deg);
    left: 0;
    right: 0;
    margin: auto;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: #e5e5e5;
}

footer p {
    font-size: 11.2px;
}

main {
    font-size: 0;
}


@media screen and (max-width: 869px) {
	body {
	    padding-top: 14%;
	}
}
@media screen and (max-width: 768px) {
/****************************
     共通
****************************/
	html {
		font-size: 10px;
	}
	body * {
	    font-size: 3.2vw;
	}
	a[href^="tel:"] {
	    pointer-events: auto;
	}
	.flex.sp_block {
	    display: block;
	}
	.sec {
	    padding: 50px 0;
	}
	/*見出し*/
	.ttl_block::before {
	    width: 4px;
	}
	.ttl_style01 {
	    font-size: 8vw;
	}
	.ttl_block .ttl_style01::before {
	    border-top: 2px solid;
	    border-left: 2px solid;
	    border-right: 2px solid transparent;
	    border-bottom: 2px solid transparent;
	}
	.ttl_block .ttl_style01::after {
	    width: 4px;
	}
	.ttl_style01 span {
	    font-size: 3.6vw;
		margin-top: 0.5em;
	}
	.ttl_style02 {
	    height: 2.0em;
	    line-height: 2.0em;
	    padding: 2%;
	    font-size: 4.2vw;
		margin: 0px auto 1.0em;
	}
	.ttl_style03 {
	    height: 2.5em;
	    line-height: 2.5em;
	    font-size: 4.0vw;
	}

	.dl_style01 {
	    margin: 1.25em 0;
	    font-size: 3.6vw;
	}

	/*リンク集*/
	.link_block {
	    margin: 2em 0 0 !important;
	}
	.link_block > ul li a {
	    max-height: initial;
	    height: 12vw;
	}
	.link_block > ul li a::after {
	    border-top: 1px solid;
	    border-right: 1px solid;
	}
	.link_block > ul li a span {
	    font-size: 3.0vw;
	}
	.link_block > a {
	    max-height: initial;
	    height: 2.5em;
	    line-height: 2.5em;
	    font-size: 3.0vw;
	    padding: 2% 0;
	}
	.link_block > a::after {
	    border-top: 1px solid;
	    border-right: 1px solid;
	}
.link_block:first-of-type{
    margin-bottom: 20px!important;
  }
/****************************
     ヘッダー
****************************/
	/*ナビ*/
	header nav {
	    height: calc(100vh - 14%);
	}
	header nav ul li a {
	    font-size: 4.2vw;
	}
/****************************
     フッター
****************************/
	.pape_top a {
	    padding: 47% 0 0;
	    font-size: 3.6vw;
	}
	.pape_top a::before {
	    width: 2vw;
	    height: 2vw;
	    border-left: 2px solid;
	    border-top: 2px solid;
	}
	footer {
	    padding: 2% 0;
	}
	footer p {
	    font-size: 2.6vw;
	}
}
@media screen and (max-width: 480px) {

}
/*220314*/
.ttl_style04 {
    text-align: center;
    background: #fff;
    height: 85px;
    line-height: 85px;
    font-size: 38px;
    color: #D80A2D;
    margin: -22px auto 0.5em;

    border: 4px solid #d80a2d;
}

@media screen and (max-width: 1000px) {
.ttl_style04 {
    font-size: 28px;
}
}
@media screen and (max-width: 768px) {
.ttl_style04 {
    height: 2.0em;
    line-height: 2.0em;
    padding: 2%;
    font-size: 3.2vw;
  margin: -2.0em auto 1.0em;
      border: 2px solid #d80a2d;
}
}