@charset "UTF-8";
*{  
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "游ゴシック", sans-serif;
    list-style-type: none;
    color: #ffffffff;
}
html{
    margin: 0;
    background-color: #000000;
}
a,a:hover,a:visited{
    color: inherit;
    text-decoration: none;
}
body{
    width: 100%;
}
.container{
    margin: 0 auto;
}
.sp{
    display: none;
}
.sp02{
    display: none;
}
.button .button02 .button_03{
    transition: 0.2s;
}
.button:hover{
    opacity: 0.7;
}
.button02:hover{
    opacity: 0.7;
}
.button_03:hover{
    opacity: 0.7;
}
/* header */
header{
    position: fixed;
    width: 1200px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 1000;
}
header .flex_box{
    display: flex;
    height:72px ;
    justify-content: space-between;
    align-items: center;
}
header .flex_box .tell{
    position: relative;
    height: 0;
    font-size: 0;
}
header .flex_box p:nth-of-type(3){
    font-size: 14px;
}
header .flex_box .tell:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/header_tell.png) no-repeat;
    width: 18px;
    height: 23px;
    top: -13px;
    left: 93px;
    transform: scale(1.5);
}
header .flex_box .tell:after{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/header_tell_number.png) no-repeat;
    width: 133px;
    height: 24px;
    top: -13px;
    left: 160px;
    transform: scale(1.5);
}
.hamburger{
    /* display: none; */
    position: fixed;
    flex-direction: column;
    justify-content: space-around;
    background-color: #dc0108;
    width: 100px;
    height: 100px;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 20;
}
.hamburger span{
    display: block;
    padding: 3px;
    width: 50%;
    height: 6px;
    background-color: #fff;
    margin: 7px auto;
    transition: all 0.3s ease;
}
/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -8px);
}
.main_link{
    font-size: 15px;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    padding: 15px 0;
    margin: auto;
    background-color: #000000;
    border-radius: 10px;
}
.main_link li{
    position: relative;
    font-weight: bold;
}
.main_link li:hover{
    color: #dc0108;
}
/* サブリンクのスタイル */
.sub_link{
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 14px;
    width: 1200px;
    height: 210px;
    top: 200%;
    left: -257%;
    padding: 0 20px;
    background-color: #000000;
    border-radius: 10px;
    visibility: hidden;
}
/* サブリンクが出現するcss */
.main_link li:hover ul{
    visibility: visible;
}
.sub_link li{
    margin: 20px 0 0 0; 
    text-align: center;
}
.sub_link li p:nth-of-type(1){
    width: 180px;
    height: 120px;
    margin: 12px 0 5px 0;
}
.sub_link p img{
    width: 100%;
}
.main_link .contact{
    position: relative;
    color: #dac5a4;
    margin: 0 0 0 38px;
}
.main_link .contact:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/header_mail.png) no-repeat;
    width: 16px;
    height: 12px;
    top: 6.5px;
    left: -25px;
}
@media screen and (max-width: 1200px){
header{
    width: 100%;
}
header .flex_box{
    width: 100%;
    height: 100px;
    background-color: #000;
}
header .flex_box .tell{
    top: 0;
    left: -500px;
}
header .flex_box .tell:before {
    top: -13px;
    left: 150px;
}
header .flex_box .tell:after {
    top: -13px;
    left: 215px;
}
header .flex_box .holiday {
    display: none;
}
.header nav{
    position: relative;
}
.main_link{
    position:absolute;
    font-size: 20px;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    height: 100vh;
    top: 100px;
    left: 0;
    background-color: #000000;
    opacity: 0.8;
    text-align: center;
    border-radius: 0;
    transform: translateY(-135%);
    transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
.main_link .contact{
    position: relative;
    color: #dac5a4;
    margin: 0 auto;
    width: 120px;
}
.main_link .contact:before{
    top: 10px;
    left: -20px;
}
.active{
    transform: translateY(0%);
    transition: .5s;
}
header .sp{
    display: block;
}
.pc{
    display: none;
}
.sub_link{
    display: flex;
    flex-direction: column;
    margin: 0 0 0 30px;
}
}
@media screen and (max-width: 700px){
    header .flex_box{
        height: 72px;
    }
    .header_logo{
        margin-left: -20px;
        transform: scale(0.9);
    }
    header .flex_box .tell:before {
        top: -13px;
        left: 385px;
        transform: scale(1.5);
    }
    header .flex_box .tell:after {
        display: none;
    }
    .main_link{
        font-size: 18px;
        gap: 35px;
        width: 100%;
        height: 100vh;
        top: 70px;
    }
    .main_link .contact:before {
        top: 7px;
        left: -20px;
    }
    .hamburger{
        width: 72px;
        height: 72px;
    }
    .hamburger span {
        padding: 2px;
        height: 0px;
        background-color: #fff;
        margin: 7px auto;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 9px);
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -10px);
    }
}
@media screen and (max-width: 500px){
    .header_logo{
        margin-left: -46px;
        transform: scale(0.7);
    }
}
/* 〆header */
/* pankuzu */
.pankuzu{
    position: relative;
}
.pankuzu .inner {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    bottom: -36px;
    z-index: 1;
}
.pankuzu ul li {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    margin-right: 22px;
    padding: 0 22px 0 0;
}
.pankuzu ul li:first-child {
    color: #999999;
}
.pankuzu ul li:before {
    content: "-";
    position: absolute;
    top: -1px;
    right: -5px;
}
.pankuzu ul li:last-child{
    color: #dc0108;
    content: none;
}
.pankuzu ul li:last-child:before{
    content: none;
}
@media screen and (max-width: 700px){
    .pankuzu ul li {
        font-size: 12px;
    }
}
@media screen and (max-width: 700px){
    .pankuzu .inner {
        bottom: -55px;
}
}
/* pankuzu〆 */
/* top */
/* main */
/* key */
#home .key{
    position: relative;
    width: 100%;
    height: 850px;
    margin: 0;
    background-image: url(../img/key_bg1.png);
    background-repeat: no-repeat;
    background-size: cover;
}
#home .key:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/key_bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 5.82);
    bottom: -11px;
    left: 0;
    z-index: 1;
}
#home .key .key_text{
    position: relative;
    font-size: 0;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: auto;
}
#home .key .key_text:before {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/key_text_visual.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 915px;
    height: 836px;
    bottom: -80px;
    right: 500px;
    z-index: 1;
    transform: scale(0.95);
}
#home .key .key_text:after {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/key_bg_peaple.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 511px;
    height: 766px;
    bottom: -28px;
    left: 600px;
    z-index: 0;
    transform: scale(0.95);
}
/* .key:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/key_bg_peaple_text.png);
    background-repeat: no-repeat;
    width: 1801px;
    height: 816px;
    left: 0px;
    bottom: -97px;
    z-index: -1;
} */
#home .key h1{
    display: block;
    position: absolute;
    font-size: 12px;
    top: 135px;
    right: 330px;
    z-index: 2;
    width: 1200px;
    right: 0;
    left: 0px;
    margin: 0 auto;
    text-align: right;
}
#home .key p:nth-of-type(2){
    height: 0;
    font-size: 0;
}
#home .key p:nth-of-type(2){
    position: absolute;
    width: 100%;
}
#home .key .picture_box{
    position: relative;
}
#home .key .picture_box img{
    width: 100%;
    object-fit: cover;
    max-height: 850px;
}
@media screen and (max-width: 1200px){
    #home .key:before {
        height: 146px;
        bottom: -3px;
        padding-bottom: 0px;
        transform: scale(1.0);
    }
    #home .key h1 {
        top: 110px;
         width: auto;
    }
    #home .key .key_text{
        overflow-x: hidden;
    }
    #home .key .key_text:before {
        bottom: -70px;
        right: 40%;
        transform: scale(0.9);
    }
    #home .key .key_text:after {
        bottom: -25px;
        left: 50%;
        transform: scale(0.9);
    }
}
@media screen and (max-width: 1000px){
    #home .key:before {
        height: 146px;
        bottom: -3px;
        padding-bottom: 0px;
        transform: scale(1.0);
    }
    #home .key .key_text:before {
        bottom: -70px;
        right: 40%;
        transform: scale(0.9);
    }
    #home .key .key_text:after {
        bottom: -25px;
        left: 45%;
        transform: scale(0.9);
    }
}
@media screen and (max-width: 768px){
    #home .key:before {
        height: 146px;
        bottom: -3px;
        padding-bottom: 0px;
        transform: scale(1.0);
    }
    #home .key .key_text:before {
        bottom: -70px;
        right: 33%;
        transform: scale(0.9);
    }
    #home .key .key_text:after {
        bottom: -25px;
        left: 40%;
        transform: scale(0.9);
    }
}
@media screen and (max-width: 700px){
    #home .key h1{
        top: 75px;
        width: auto;
        }
}
@media screen and (max-width: 600px){
    #home .key:before {
        height: 300px;
        bottom: -3px;
        padding-bottom: 0px;
        transform: scale(1.0);
    }
    #home .key .key_text:before {
        bottom: -15px;
        left: -430px;
        transform: scale(0.6);
    }
    #home .key .key_text:after {
        bottom: -25px;
        left: 22%;
        transform: scale(0.8);
    }
}
@media screen and (max-width: 450px){
    #home .key .key_text:before {
        bottom: -15px;
        left: -500px;
        transform: scale(0.6);
    }
    #home .key .key_text:after {
        bottom: -25px;
        left: 6%;
        transform: scale(0.8);
    }
}

/* @media screen and (max-width: 1500px){
    #home .key .key_text:before {
        top: 70px;
        left: -100px;
        transform: scale(0.7);
    }
}
@media screen and (max-width: 1200px){
    #home .key .picture_box img {
        object-position: 65%;
    }
    #home .key .key_text:before {
        top: 70px;
        left: -280px;
        transform: scale(0.7);
    }
}
@media screen and (max-width: 900px){
    #home .key .picture_box img {
        object-position: 65%;
    }
}
@media screen and (max-width: 650px){
    #home .key .picture_box img {
        object-position: 72%;
    }
    #home .key .key_text:before {
        top: 70px;
        left: -330px;
        transform: scale(0.5);
    }
}
@media screen and (max-width: 500px){
    #home .key .picture_box img {
        object-position: 90%;
    }
    #home .key .key_text:before {
        top: 70px;
        left: -370px;
        transform: scale(0.4);
    }
} */
/* key〆 */
/* con01 */
#home .con01{
    position: relative;
    text-align: center;
    margin: 140px auto 0 auto;
}
#home .con01 h2{
    font-size: 14px;
    color: #999999;
}
#home .con01 h2:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_img01.jpg);
    background-repeat: no-repeat;
    width: 200px;
    height:260px;
    top: 62px;
    left: 260px;
    background-size: contain;
}
#home .con01 h2:after{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_img04.jpg);
    background-repeat: no-repeat;
    width: 270px;
    height: 201px;
    top:-19px;
    right: 240px;
}
#home .con01 .con01_text{
    position: relative;
    height: 300px;
    font-size: 0;
}
#home .con01 .con01_text:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_text01.png);
    background-repeat: no-repeat;
    width: 455px;
    height: 224px;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#home .con01 .con01_text:after{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_bg01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: calc(100% - 50px);
    aspect-ratio: 2.39 / 1; /* 画像の縦横比を指定 */
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -3;
}
#home .con01 .Pseudo-elements01{
    position: relative;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.64;
}
#home .con01 .Pseudo-elements01:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_img02.jpg);
    background-repeat: no-repeat;
    width: 201px;
    height: 200px;
    top: 168px;
    left: 200px;
}
#home .con01 .Pseudo-elements01:after{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_img05.jpg);
    background-repeat: no-repeat;
    width: 280px;
    height: 380px;
    top:-63px;
    right: 120px;
}
#home .con01 .Pseudo-elements02{
    position: relative;
    font-size: 18px;
    font-weight: bold;
    line-height: 2.55;
    margin: 65px auto 0 auto;
}
#home .con01 .Pseudo-elements02:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_img03.jpg);
    background-repeat: no-repeat;
    width: 398px;
    height: 280px;
    top:275px;
    left: 120px;
    z-index: -1;
}
#home .con01 .Pseudo-elements02:after{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_img06.jpg);
    background-repeat: no-repeat;
    width: 178px;
    height: 180px;
    top:320px;
    right:  300px;
}
#home .con01 .button{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    width: 400px;
    height: 50px;
    border-radius: 25px;
    background-color: #dc0108;
    margin: 30px auto 0 auto;
    padding: 12px 72px;
}
#home .con01 .button:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/button_cursor.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    top: 14px;
    right: 15px;
}
#home .con01 .con1_img01,
#home .con01 .con1_img02,
#home .con01 .con1_img03,
#home .con01 .con1_img04,
#home .con01 .con1_img05,
#home .con01 .con1_img06{
    position: absolute;
}
#home .con01 .con1_img01{
    top: 121px;
    left: 260px;
}
#home .con01 .con1_img02{
    top: 497px;
    left: 202px;
}
#home .con01 .con1_img03{
    bottom: 75px;
    left: 116px;
}
#home .con01 .con1_img04{
    top: -20px;
    right: 240px;
}
#home .con01 .con1_img05{
    top: 258px;
    right: 120px;
}
#home .con01 .con1_img06{
    bottom: 130px;
    right: 300px;
}
@media screen and (max-width: 1550px){
    #home .con01 h2:before,.con01 h2:after,
    #home .con01 .Pseudo-elements01:before,
    #home .con01 .Pseudo-elements01:after,
    #home .con01 .Pseudo-elements02:before,
    #home .con01 .Pseudo-elements02:after{
        transform: scale(0.8);
    }
}
@media screen and (max-width: 1400px){
    #home .con01 h2:before,.con01 h2:after,
    #home .con01 .Pseudo-elements01:before,
    #home .con01 .Pseudo-elements01:after,
    #home .con01 .Pseudo-elements02:before,
    #home .con01 .Pseudo-elements02:after{
        transform: scale(0.7);
        z-index: -1;
    }
    #home .con01 h2:before{
        left: 80px;
    }
    #home .con01 h2:after{
        right:60px;
    }
    #home .con01 .Pseudo-elements01:before{
        left: 30px;
    }
    #home .con01 .Pseudo-elements01:after{
        right: 13px;
        z-index: -1;
    }
    #home .con01 .Pseudo-elements02:before{
        left: -16px;
    }
    #home .con01 .Pseudo-elements02:after{
        top: 235px;
        right: 110px;
    }
}
@media screen and (max-width: 1000px){
    #home .con01 h2:before,.con01 h2:after,
    #home .con01 .Pseudo-elements01:before,
    #home .con01 .Pseudo-elements01:after,
    #home .con01 .Pseudo-elements02:before,
    #home .con01 .Pseudo-elements02:after{
        transform: scale(0.5);
    }
    #home .con01 .con01_text:before {
        background-size: 300px;
        width: 300px;
        height: 224px;
        top: 65%;
    }
    #home .con01 .Pseudo-elements01 {
        font-size: 24px;
    }
    #home .con01 .Pseudo-elements02 {
        font-size: 16px;
    }
    #home .con01 h2:after{
        top: 10px;
    }
    #home .con01 .Pseudo-elements01:after {
        right: -50px;
    }
    #home .con01 .Pseudo-elements02:before {
        top:245px;
        left: -80px;
    }
    #home .con01 .Pseudo-elements02:after {
        right: 5px;
    }
}
@media screen and (max-width: 800px){
    #home .con01 .sp{
        display: block;
    }
    #home .con01 {
        margin: 50px auto 0 auto;
    }
    #home .con01 h2:before,
    #home .con01 h2:after,
    #home .con01 .Pseudo-elements01:before,
    #home .con01 .Pseudo-elements01:after,
    #home .con01 .Pseudo-elements02:before,
    #home .con01 .Pseudo-elements02:after{
        display: none;
    }
    #home .con01 .photo_set{
        position: relative;
        width: 100%;
        height: 300px;
        overflow:hidden;
    }
    #home .con01 .photo_set:before {
        display: block;
        position: absolute;
        content: "";
        background: url(../img/home_img_set03_02.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 85%;
        aspect-ratio: 1 / 0.46;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #home .con01 .con01_text {
        height: 250px;
    }
    #home .con01 .con01_text:before {
        background-size: 250px;
        width: 250px;
        top: 75%;
    }
    #home .con01 .Pseudo-elements02 {
        margin: 25px auto 0 auto;
    }
    #home .con01 .Pseudo-elements01 {
        font-size: 20px;
    }
    #home .con01 h2:before {
        left: 10px;
    }
    #home .con01 .Pseudo-elements01:before {
        top: 95px;
        left: -25px;
    }
    #home .con01 .Pseudo-elements01:after,
    #home .con01 .Pseudo-elements02:before
    {
       transform: scale(0.2);
    }
    #home .con01 .Pseudo-elements01:after{
        top: -5px;

    }
    #home .con01 .Pseudo-elements02:before{
        top: 250px;
        left: -105px;
    }
    #home .con01 .Pseudo-elements02:after{
        top: 300px;
        right: -25px;
    }
}
@media screen and (max-width: 600px){
    #home .con01 .sp02{
        display: block;
    }
    #home .con01 {
        margin: 0 auto 0 auto;
    }
    #home .con01 h2:before,.con01 h2:after,
    #home .con01 .Pseudo-elements01:before,
    #home .con01 .Pseudo-elements01:after,
    #home .con01 .Pseudo-elements02:before,
    #home .con01 .Pseudo-elements02:after{
        transform: scale(0.4);
    }
    #home .con01 .Pseudo-elements01:after,
    #home .con01 .Pseudo-elements02:before
    {
       transform: scale(0.3);
    }
    #home .con01 h2 {
        font-size: 12px;
    }
    #home .con01 .Pseudo-elements01 {
        font-size: 18px;
    }
    #home .con01 .Pseudo-elements02 {
        font-size: 14px;
        line-height: 2;
    }
    #home .con01 .button {
        margin: 0 auto 0 auto
    }
    #home .con01 .button {
        font-size: 14px;
        width: 80%;
        padding: 18px 50px;
    }
    #home .con01 .button {
        font-size: 12px;
        width: 300px;
        height: 35px;
        padding: 9px 0;
    }
    #home .con01 h2:before {
        top: 85px;
        left: -15px;
    }
    #home .con01 h2:after {
        top: -10px;
    }
    #home .con01 .button:before {
        top: 7px;
        right: 15px;
        transform: scale(0.8);
    }
    #home .con01 .Pseudo-elements01:before {
        top: 30px;
        left: -45px;
    }
    #home .con01 .Pseudo-elements01:after {
        top: -60px;
        right: -70px;
    }
    #home .con01 .Pseudo-elements02:before {
        top: 140px;
        left: -125px;
    }
    #home .con01 .Pseudo-elements02:after {
        top: 200px;
    }
}
@media screen and (max-width: 450px){
    #home .con01 h2:before,.con01 h2:after,
    #home .con01 .Pseudo-elements01:before, 
    #home .con01 .Pseudo-elements01:after, 
    #home .con01 .Pseudo-elements02:before, 
    #home .con01 .Pseudo-elements02:after {
        transform: scale(0.3);
    }
    #home .con01 .Pseudo-elements01:after,
    #home .con01 .Pseudo-elements02:before{
       transform: scale(0.2);
    }
    #home .con01 h2:before {
        left: -45px;
    }
    #home .con01 h2:after {
        right: -65px;
    }
    #home .con01 .Pseudo-elements01:after {
        top: -65px;
        right: -90px;
    }
    #home .con01 .Pseudo-elements02:before {
        left: -150px;
    }
    #home .con01 .Pseudo-elements02:after {
        top: 190px;
        right: -40px;
    }
}
/* con01〆 */
/* con02 */
#home .con02{
    margin: 150px 0 0 0;
}
@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
    }
    #home .scroll-infinity-wrap {
      display: flex;
      overflow: hidden;
    }
    #home .scroll-infinity-list {
      display: flex;
      list-style: none;
      gap: 80px;
      margin:0 85px ;
      padding: 0
    }
    #home .scroll-infinity-list {
      animation: infinity-scroll-left 50s infinite linear 0.5s both;
    }
    #home .con02 .scroll-infinity .scroll-infinity-wrap 
    #home .scroll-infinity-list .scroll-infinity-item{
        width: 90%;
    }
    #home .con02 .scroll-infinity .scroll-infinity-wrap 
    #home .scroll-infinity-list .scroll-infinity-item img{
        display: block;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
    }
/* con02〆 */
/* con03 */
#home .con03 .sp{
    display: block;
}
#home .con03_box02 .sp03 .sp04{
    display:block;
}
#home .con03{
    position: relative;
    margin: 180px 0 0 0;
}
#home .con03:before {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_bg_kyusyu02.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: calc(100% - 50px);
    /* height: 1304px; */
    aspect-ratio: 1.09 / 1;
    top: -80px;
    left: -350px;
    z-index: -1;
}
#home .con03 h2{
    position: relative;
    font-size: 46px;
    font-weight: bold;
    color: #dc0108;
    text-align: center;
}
#home .con03 h2:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_text02.png);
    background-repeat: no-repeat;
    width: 208px;
    height: 22px;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}
#home .con03 .flex_box{
    display: flex;
    justify-content: center;
    margin: 78px 0 0 0;
}
#home .con03 .con03_box01{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.91;
}
#home .con03 .con03_box02{
    font-size: 18px;
    line-height: 2.22;
    margin: 0 0 0 60px;
}
@media screen and (max-width: 1200px){
    #home .con03_box01 .sp{
        display: block;
    }
    #home .con03_box01 .sp_03{
        display: none;
    }
    #home .con03_box02 .sp_03{
        display: none;
    }
    #home .con03_box02 .sp_04{
        display: none;
    }
    #home .con03:before {
        top: 0;
        left: 0;
    }
    #home .con03 .flex_box{
        flex-direction: column;
        margin: auto;
    }
    #home .con03 .flex_box .con03_box01,
    #home .con03 .flex_box .con03_box02{
        overflow-wrap: anywhere; /* 収まらない場合に折り返す */
        word-break: normal; /* 単語の分割はデフォルトに依存 */
        line-break: strict; /* 禁則処理を厳格に適用 */
        margin: 0px 15px;
    }
    #home .con03 .flex_box {
        text-align: justify;
        margin: 30px 50px 0 50px;
    }
    #home .con03 .flex_box .con03_box01 {
        display: inline-block;
        font-size: 20px;
        text-align: left;
    }
    #home .con03 .flex_box .con03_box02 {
        display: inline-block;
        font-size: 16px;
        text-align: left;
    }
}
@media screen and (max-width: 950px){
    #home .con03 .sp_02 {
        display:block;
    }
    #home .con03 .flex_box {
        margin: 30px 50px 0 50px;
    }
}
@media screen and (max-width: 800px){
    #home .con03_box01 .sp_03 {
        display: block;
    }
    #home .con03_box02 .sp_02 .sp_03{
        display: none;
    }
    #home .con03 h2 {
        font-size: 36px;
    }
    #home .con03 .flex_box {
        margin: 50px 0 0 0;
    }
    #home .con03 .flex_box .con03_box01 {
        font-size: 18px;
        text-align: center;
    }
    #home .con03 .flex_box .con03_box02 {
        font-size: 16px;
        margin-top: 20px;
    }
}
    @media screen and (max-width: 670px){
        #home .con03 h2:before{
            background-size: 130px;
            width: 130px;
        }
        #home .con03 .flex_box{
            flex-direction: column;
            margin: 30px auto 0 auto;
        }
        #home .con03 h2 {
            font-size: 22px;
        }
        #home .con03 .flex_box .con03_box01{
            font-size: 16px;
            margin: 0 auto;
        }
        #home .con03 .flex_box .con03_box02{
            font-size: 12px;
            margin: 10px 50px 0 50px;
        }
}
/* con03〆 */
/* con04 */
#home .con04{
    margin: 85px 0 0 0;
}
#home .con04 .grid_box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 618px);
}
#home .con04 .con04_box{
    border: solid 1px #fff;
    text-align: center;
}
#home .vertical01,
#home .vertical02,
#home .vertical03,
#home .vertical04,
#home .vertical05,
#home .vertical06{
    position: relative;
}
#home .vertical01:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_text03.png);
    background-repeat: no-repeat;
    width: 16px;
    height: 198px;
}
#home .vertical02:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_text04.png);
    background-repeat: no-repeat;
    width: 16px;
    height: 213px;
}
#home .vertical03:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_text05.png);
    background-repeat: no-repeat;
    width: 20px;
    height: 253px;
}
#home .vertical04:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_text06.png);
    background-repeat: no-repeat;
    width: 16px;
    height: 196px;
}
#home .vertical05:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_text07.png);
    background-repeat: no-repeat;
    width: 15px;
    height: 189px;
}
#home .vertical06:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_text08.png);
    background-repeat: no-repeat;
    width: 16px;
    height: 205px;
}
#home .vertical01:before,
#home .vertical02:before,
#home .vertical03:before,
#home .vertical04:before,
#home .vertical05:before,
#home .vertical06:before{
    bottom: 0;
    right: -28px;
}
#home .con04 .con04_box .text_box{
    font-size: 16px;
    line-height: 2;
    width: 400px;
    height: 115px;
    margin: 35px auto 0 auto;
    text-align-last: left;
}
#home .con04 .con04_box .button{
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    width: 315px;
    height: 45px;
    margin: 57px 0 0 0;
    padding: 11px;
    border-radius: 22.5px;
    background-color: #333333;
}
#home .con04 .con04_box .button:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/button_cursor.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    top: 11px;
    right: 20px;
}
@media screen and (max-width: 1200px){
    #home .con04 .grid_box{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    #home .con04 .con04_box .button {
        margin: 25px 0 50px 0;
    }
    #home .con04 .con04_box .text_box{
        width: 90%;
        height: auto;
        margin: 35px auto 15px auto;
    }
}
@media screen and (max-width: 768px){
    #home .con04 .grid_box{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }
    #home .con04 .con04_box .text_box{
        width: 400px;
        height: auto;
        margin: 25px auto 20px auto;
    }
    #home .con04 .con04_box .button {
        margin: 10px 0 50px 0;
    }
}
@media screen and (max-width: 500px){
    #home .con04 .con04_box .text_box{
        width: 90%;
    }
}
/* con04〆 */
/* con05 */
#home .con05{
    position: relative;
    margin: 165px 0 230px 0;
    padding: 122px 0 0 0;
    box-sizing: border-box;
}
#home .con05:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_bg02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 763px;
    top: 0;
    left: 0;
    z-index: -1;
}
#home .con05:after{
    position: absolute;
    content: "";
    background-color: #fff;
    background-repeat: no-repeat;
    width: 100%;
    height: 367px;
    bottom: -103px;
    left: 0;
    z-index: -1;
}
#home .con05 h2{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
#home .con05 h2 span{
    font-size: 56px;
    color: #dc0108;
}
#home .con05 .flex_box{
    display: flex;
    margin: 58px 0 0 0;
    padding: 0 0 30px 0;
    overflow-x: auto;
    cursor: grab;
}
#home .con05 .flex_box:active{
    cursor: grabbing;
}
#home .con05 .flex_box .slide_box01,
#home .con05 .flex_box .slide_box02,
#home .con05 .flex_box .slide_box03,
#home .con05 .flex_box .slide_box04,
#home .con05 .flex_box .slide_box05,
#home .con05 .flex_box .slide_box06{
    width: 460px;
    height: 585px;
    margin: 0 30px 30px 30px;
    background-color: #fff;
    box-shadow: 21.213px 21.213px 10px 0px #0000001a;
}
#home .con05 .flex_box .slide_box01 p,
#home .con05 .flex_box .slide_box02 p,
#home .con05 .flex_box .slide_box03 p,
#home .con05 .flex_box .slide_box04 p,
#home .con05 .flex_box .slide_box05 p,
#home .con05 .flex_box .slide_box06 p{
    color: #222222;
}
#home .con05 .flex_box .slide_box01 > p:nth-of-type(2),
#home .con05 .flex_box .slide_box02 > p:nth-of-type(2),
#home .con05 .flex_box .slide_box03 > p:nth-of-type(2),
#home .con05 .flex_box .slide_box04 > p:nth-of-type(2),
#home .con05 .flex_box .slide_box05 > p:nth-of-type(2),
#home .con05 .flex_box .slide_box06 > p:nth-of-type(2){
    font-size: 28px;
    font-weight: bold;
    line-height: 1.42;
    text-align: center;
}
#home .con05 .flex_box .slide_box01 > p:nth-of-type(3),
#home .con05 .flex_box .slide_box02 > p:nth-of-type(3),
#home .con05 .flex_box .slide_box03 > p:nth-of-type(3),
#home .con05 .flex_box .slide_box04 > p:nth-of-type(3),
#home .con05 .flex_box .slide_box05 > p:nth-of-type(3),
#home .con05 .flex_box .slide_box06 > p:nth-of-type(3){
    font-size: 16px;
    line-height: 2;
    width: 400px;
    height: 115px;
    margin: 30px auto;
    text-align: left;
}
#home .con05 .flex_box .slide_box01 .slide_box_img,
#home .con05 .flex_box .slide_box02 .slide_box_img,
#home .con05 .flex_box .slide_box03 .slide_box_img,
#home .con05 .flex_box .slide_box04 .slide_box_img,
#home .con05 .flex_box .slide_box05 .slide_box_img,
#home .con05 .flex_box .slide_box06 .slide_box_img{
    padding: 30px 30px 40px 30px;
}
#home .con05 .button{
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    width: 400px;
    height: 50px;
    border-radius: 25px;
    background-color: #dc0108;
    margin: 30px auto 0 auto;
    padding: 14px 0 14px 127px;
}
#home .con05 .button:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/button_cursor.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    top: 14px;
    right: 14px;
}
@media screen and (max-width: 768px){
    #home .con05 h2{
        font-size: 16px;
    }
    #home .con05 h2 span {
        font-size: 46px;
    }
    #home .con05 .flex_box .slide_box01 > p:nth-of-type(2),
    #home .con05 .flex_box .slide_box02 > p:nth-of-type(2),
    #home .con05 .flex_box .slide_box03 > p:nth-of-type(2),
    #home .con05 .flex_box .slide_box04 > p:nth-of-type(2),
    #home .con05 .flex_box .slide_box05 > p:nth-of-type(2),
    #home .con05 .flex_box .slide_box06 > p:nth-of-type(2){
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
    #home .con05 .flex_box .slide_box01,
    #home .con05 .flex_box .slide_box02,
    #home .con05 .flex_box .slide_box03,
    #home .con05 .flex_box .slide_box04,
    #home .con05 .flex_box .slide_box05,
    #home .con05 .flex_box .slide_box06 {
        width: 380px;
        height: 570px;
    }
    #home .con05 .flex_box .slide_box01 .slide_box_img,
    #home .con05 .flex_box .slide_box02 .slide_box_img,
    #home .con05 .flex_box .slide_box03 .slide_box_img,
    #home .con05 .flex_box .slide_box04 .slide_box_img,
    #home .con05 .flex_box .slide_box05 .slide_box_img,
    #home .con05 .flex_box .slide_box06 .slide_box_img {
        width: 100%;
        padding: 30px 30px 25px 30px;
    }
    #home .con05 .flex_box .slide_box01 > p:nth-of-type(3),
    #home .con05 .flex_box .slide_box02 > p:nth-of-type(3),
    #home .con05 .flex_box .slide_box03 > p:nth-of-type(3),
    #home .con05 .flex_box .slide_box04 > p:nth-of-type(3),
    #home .con05 .flex_box .slide_box05 > p:nth-of-type(3),
    #home .con05 .flex_box .slide_box06 > p:nth-of-type(3) {
        font-size: 16px;
        line-height: 1.7;
        width: 320px;
        height: 115px;
        margin: 18px auto;
        text-align: left;
    }
    #home .con05 .slick-slide img {
        display: block;
        width: 100%;
    }
    #home .con05 .button {
        display: block;
        position: relative;
        font-size: 14px;
        font-weight: bold;
        color: #ffffff;
        width: 300px;
        height: 40px;
        border-radius: 25px;
        background-color: #dc0108;
        margin: 30px auto 0 auto;
        padding: 9px 0 14px 87px;
    }
    #home .con05 .button:before {
        display: block;
        position: absolute;
        content: "";
        background: url(../img/button_cursor.png);
        background-repeat: no-repeat;
        width: 22px;
        height: 22px;
        top: 8px;
        right: 20px;
        transform: scale(0.8);
    }
}
/* con05〆 */
/* con06 */
#home .con06{
    position: relative;
    max-width: 1200px;
    margin: auto;
}
#home .con06:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_bg03.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 1991px;
    top: -132px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
#home .con06 h2{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
#home .con06 h2 span{
    font-size: 56px;
    color: #dc0108;
    line-height: 1.73;
}
#home .con06 > p:nth-of-type(1){
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
    text-align: center;
    margin: 10px 0 0 0;
}
#home .con06 .grid_box .con06_box .telop01,
#home .con06 .grid_box .con06_box .telop02,
#home .con06 .grid_box .con06_box .telop03{
    position: relative;
}
#home .con06 .grid_box .con06_box .telop01:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/telop01.png);
    background-repeat: no-repeat;
    width: 213px;
    height: 104px;
    top: -35px;
    left: -41px;
    z-index: 1;
}
#home .con06 .grid_box .con06_box .telop02:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/telop02.png);
    background-repeat: no-repeat;
    width: 213px;
    height: 104px;
    top: -35px;
    left: -41px;
    z-index: 1;
}
#home .con06 .grid_box .con06_box .telop03:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/telop03.png);
    background-repeat: no-repeat;
    width: 213px;
    height: 104px;
    top: -35px;
    left: -41px;
    z-index: 1;
}
#home .con06 .grid_box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 46px;
    row-gap: 110px;
    margin: 90px 0 0 0;
}
#home .con06 .grid_box .con06_box>p:nth-of-type(2){
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
}
#home .con06 .grid_box .con06_box>p:nth-of-type(3){
    position: relative;
    font-size: 16px;
    color: #999999;
    line-height: 2.25;
    padding: 0 0 0 20px;
}
#home .con06 .grid_box .con06_box>p:nth-of-type(3):before {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/map_pin.png);
    background-repeat: no-repeat;
    width: 11px;
    height: 16px;
    top: 9px;
    left: 3px;
}
#home .con06 .grid_box .con06_box>p:nth-of-type(4){
    font-size: 16px;
    line-height: 2;
}
#home .con06 .grid_box .con06_box .button{
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    width: 370px;
    height: 30px;
    background-color: #dc0108;
    margin: 30px auto 0 auto;
    padding: 5px 0 7px 130px;
}
#home .con06 .grid_box .con06_box .button:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/button_cursor02.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    top: 11px;
    right: 10px;
}
#home .con06 .button02{
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    width: 400px;
    height: 50px;
    margin: 80px auto 0 auto;
    padding: 12px 0 0 77px;
    border-radius: 25px;
    background-color: #333333;
}
#home .con06 .button02:before {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/button_cursor.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    top: 15px;
    right: 20px;
}
#home .con06 .banner{
    width: 100%;
    height: 270px;
    margin: 120px auto 170px auto;
    overflow: hidden;
}
#home .con06 .banner img{
    width: 100%;
    object-fit: cover;
  }
#home .con06 .banner img:hover{
    transform: scale(1.05); 
  }
  #home .con06 .button_03{
    display: none;
  }
  @media screen and (max-width: 1200px){
    #home .con06:before {
        background: url(../img/home_bg03_02.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100vw;
        height: 1946px;
        top: -132px;
        left: 50%;
        transform: translateX(-50%);
    }
    #home .con06 .grid_box{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: repeat(3,1fr);
        column-gap: 0;
    }
    #home .con06 .grid_box .con06_box{
        width: 370px;
        margin:auto;
        text-align: left;
   }
   #home .con06 .grid_box .con06_box>p:nth-of-type(4) {
        width: 370px;
        margin: auto;
        text-align: left;
    }
    #home .con06 .grid_box .con06_box .button {
        padding: 5px 0 0px 0px;
        text-align: center;
    }
    #home .con06 .banner {
        width: 90%;
        height: auto;
        margin: 150px auto 0 auto;
        overflow: hidden;
    }
    #home .con06 .button_03 {
        display: block;
        position: relative;
        font-size: 16px;
        font-weight: bold;
        width: 460px;
        height: 50px;
        margin: 55px auto 100px auto;
        padding: 12px 0 0 93px;
        border-radius: 25px;
        background-color: #333333;
    }
    #home .con06 .button_03:before {
        display: block;
        position: absolute;
        content: "";
        background: url(../img/button_cursor.png);
        background-repeat: no-repeat;
        width: 22px;
        height: 22px;
        top: 15px;
        right: 20px;
    }
  }
  @media screen and (max-width: 800px){
    #home .con06:before {
        background: url(../img/home_bg03_03.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100vw;
        height: 5000px;
        top: -110px;
        left: 50%;
        transform: translateX(-50%);
    }
    #home .con06 .grid_box{
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    #home .con06 > p:nth-of-type(1) {
        font-size: 18px;
    }
    #home .con06 .grid_box .con06_box .telop01:before {
        top: -35px;
        left: -45px;
    }
      #home .con06 .grid_box .con06_box .telop02:before {
        top: -35px;
        left: -45px;
    }
    #home .con06 .grid_box .con06_box .telop03:before {
        top: -35px;
        left: -45px;
    }
    #home .con06 .grid_box .con06_box .button {
        width: 100%;
        height: 30px;
    }
  }
  @media screen and (max-width: 630px){
    #home .con06 h2 {
        font-size: 16px;
    }
    #home .con06 h2 span {
        font-size: 40px;
    }
    #home .con06 .grid_box{
        display: grid;
        grid-template-columns: repeat(1,350px);
        place-content: center;
    }
    #home .con06 > p:nth-of-type(1) {
        font-size: 16px;
    }
    #home .con06 .grid_box .con06_box {
        width: 95%;
        margin: auto;
        text-align: left;
     }
    #home .con06 .grid_box .con06_box img{
        width: 100%;
     }
    #home .con06 .grid_box .con06_box>p:nth-of-type(4) {
        width: 100%;
    }
    #home .con06 .button02 {
        display: block;
        position: relative;
        font-size: 14px;
        font-weight: bold;
        width: 350px;
        margin: 55px auto 0 auto;
    }
    #home .con06 .grid_box .con06_box .button {
        display: block;
        position: relative;
        font-size: 14px;
        font-weight: bold;
        color: #ffffff;
        width: 100%;
        height: 30px;
        background-color: #dc0108;
        margin: 30px auto 0 auto;
        padding: 5px 0 7px 12px;
    }
    #home .con06 .grid_box .con06_box .telop01:before {
        top: -35px;
        left: -55px;
      }
    #home .con06 .grid_box .con06_box .telop02:before {
        top: -35px;
        left: -55px;
    }
    #home .con06 .grid_box .con06_box .telop03:before {
        top: -35px;
        left: -55px;
    }
    #home .con06 .button_03 {
        display: block;
        position: relative;
        font-size: 14px;
        font-weight: bold;
        width: 350px;
        height: 50px;
        margin: 55px auto 100px auto;
        padding: 13px 0 0 56px;
        border-radius: 25px;
        background-color: #333333;
    }
  }
  @media screen and (max-width: 560px){
    #home .con06 .sp{
        display: block;
    }
    #home .con06 .grid_box .con06_box>p:nth-of-type(2) {
        font-size: 20px;
        font-weight: bold;
        line-height: 1.8;
    }
    #home .con06 .grid_box .con06_box .telop01:before {
        top: -18px;
        left: -35px;
      }
      #home .con06 .grid_box .con06_box .telop02:before {
        top: -18px;
        left: -35px;
    }
    #home .con06 .grid_box .con06_box .telop03:before {
        top: -18px;
        left: -35px;
    }
    }
/* con06〆 */
/* con07 */
#home .con07 .sp02{
    display: none;
}
#home .con07-wrapper{
    position: relative;
    background-color: #222222;
    overflow: hidden;
}
#home .con07-wrapper:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_bg_kyusyu03.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 903px;
    height: 826px;
    top: 390px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    overflow-x: hidden;
}
#home .con07{
    width: 100%;
    margin: auto;
    text-align: center;
}
#home .con07 .logo-img{
    padding: 75px 0 0 0;
}
#home .con07 .logo-img img{
    max-width: 1200px;
    width: auto;
    height: auto;
}
#home .con07 h2 {
    font-size: 16px;
    line-height: 2;
    margin: 45px 0 0 0;
}
#home .con07 h2 span{
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.45;
    margin: 12px 0 0 0;
}
#home .con07 .flex_box{
    display: flex;
    justify-content:center;
    gap: 35px;
    text-align: left;
    margin: 40px 0 0 0;
}
#home .con07 .flex_box .information{
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
}
#home .con07 .flex_box .explanation{
    font-size: 16px;
    line-height: 2;
}
#home .con07 .button{
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    width: 300px;
    height: 50px;
    border-radius: 25px;
    background-color: #dc0108;
    margin: 50px auto 0 auto;
    padding:12px 0 7px 0px;
}
#home .con07 .button:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/button_cursor.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    top: 14px;
    right: 15px;
}
#home .con07 .blog_text{
    position: relative;
    font-size: 0;
    width: 140px;
    height: 0;
}
#home .con07 .blog_text:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/home_text09.png) no-repeat;
    width: 115px;
    height: 48px;
    top: -28px;
    left: 0;
}
#home .con07 .flex_box02{
    display: flex;
    align-items: center;
    width: 65%;
    margin: 75px auto 50px auto;
}
/* flex box 片方だけ右寄せの方法→https://wemo.tech/2320 */
#home .con07 .flex_box02 .button02{
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    width: 300px;
    height: 50px;
    border-radius: 25px;
    background-color: #000;
    padding:12px 0 7px 0px;
    margin: 0 0 0 auto;
}
#home .con07 .flex_box02 .button02:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/button_cursor.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    top: 15px;
    right: 20px;
}
/* スライダー */
#home .con07-wrapper .flex_box03{
    display: flex;
    width: 100%;
    gap: 60px;
    overflow: hidden;
    justify-content: space-between;
    cursor: grab;
}
#home .con07-wrapper .flex_box03:active{
    cursor: grabbing;
}
#home .con07-wrapper .flex_box03 .con07_box{
    position: relative;
    width: 330px;
    margin: 30px 30px 110px 30px ;
}
#home .con07-wrapper .flex_box03 .con07_box:before{
    content: '';
    width: 330px;
    height: 1px;
    display: inline-block;
    background-color:#dc0108;
    position: absolute;
    top: -30px;
    left:0;
}
#home .con07-wrapper .flex_box03 .con07_box:after{
    content: '';
    width: 330px;
    height: 1px;
    display: inline-block;
    background-color:#dc0108;
    position: absolute;
    bottom: -30px;
    left:0;
}
#home .con07_box p:nth-of-type(1){
    position: relative;
    overflow: hidden;
}
#home .con07_box p img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease-in-out;
}
#home .con07_box p img:hover {
    transform: scale(1.05);
}
#home .con07_box p:nth-of-type(2) {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}
#home .con07_box p:nth-of-type(3) {
    font-size: 14px;
    color: #999999;
    margin: 5px 0;
}
#home .con07_box p:nth-of-type(4) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 1000px){
    #home .con07 .sp{
        display: block;
    }
    #home .con07 .logo-img img {
        width: 60%;
        height: auto;
    }
    #home .con07 h2 {
        margin: 8px 0 0 0;
    }
    #home .con07-wrapper .con07 .flex_box {
        flex-direction: column;
        align-items: center;
        margin: 25px auto 0 auto;
        text-align: center;
    }
    #home .con07 .flex_box .information {
        display: inline-block;
        text-align: left;
    }
    #home .con07 .flex_box .explanation {
        display: inline-block;
        text-align: left;
        margin: 0 -60px 0 0;
    }
    #home .con07 .flex_box02{
        flex-direction: column;
        align-items: center;
        width: 65%;
        margin: 100px auto 50px auto;
    }
    #home .con07 .flex_box02>p:nth-of-type(2){
        margin: 40px auto 15px auto;
    }
    #home .con07 .flex_box02 .button02 {
        display: block;
        position: relative;
        font-size: 16px;
        font-weight: bold;
        color: #ffffff;
        width: 300px;
        height: 50px;
        border-radius: 25px;
        background-color: #000;
        padding: 12px 0 7px 0px;
        margin: 0;
    }
    #home .con07 .button {
        margin: 30px auto 0 auto;
    }
}
@media screen and (max-width: 550px){
    #home .con07 .sp02{
        display: block;
    }
    #home .con07 .logo-img{
        padding: 75px 0 0 0;
    }
    #home .con07 .logo-img img {
        width: 70%;
    }
    #home .con07 .flex_box .information {
        font-size: 14px;
    }
    #home .con07 .flex_box .explanation {
        font-size: 14px;
        margin: 0 40px 0 0;
    }
    #home .con07 .logo-img {
        max-width: 1200px;
        width: 90%;
        height: auto;
        margin: auto;
        padding: 60px 0 0 0;
    }
    #home .con07-wrapper .con07 .flex_box {
        margin: 20px auto 0 auto;
    }
}
/* con07〆 */

/*------- top〆 -------*/


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

/* key */
#about .key{
    position: relative;
    width: 100%;
    height: 430px;
    margin: 0;
    background-image: url(../img/about_key.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#about .key:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/about.01.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 215px;
    height: 279px;
    bottom: 13px;
    right: 37%;
    mix-blend-mode: soft-light;
}
 #about .key h1{
    display: block;
    position: absolute;
    font-size: 12px;
    top: 135px;
    right: 330px;
    z-index: 2;
    width: 1200px;
    right: 0;
    left: 0px;
    margin: 0 auto;
    text-align: right;
    white-space: nowrap;
}
#about .key h2{
    position: absolute;
    font-size: 32px;
    top: 60%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    white-space: nowrap;
}

@media screen and (max-width: 1200px) {
    #about .key:before {
        background-size: 175px;
        width: 175px;
        bottom: -20px;
        right: 30%;
    }
    #about .key h1 {
        top: 110px;
        width: auto;
    }
}
@media screen and (max-width: 700px) {
    #about .key:before {
        position: absolute;
        font-size: 28px;
        top: 40%;
        left: 60%;
        transform: translate(-50%);
        text-align: center;
        white-space: nowrap;
    }
    #about .key h1 {
        top: 75px;
        width: auto;
    }
    #about .key h2{
        position: absolute;
        font-size: 28px;
        top: 60%;
        left: 50%;
        transform: translate(-50%);
        text-align: center;
        white-space: nowrap;
    }
}
@media screen and (max-width: 460px) {
    #about .key:before {
        background-size: 130px;
        width: 130px;
        top: 195px;
        right: 30%;
    }
    #about .key h1 {
        top: 75px;
        width: auto;
    }
    #about .key h2{
        font-size: 22px;
    }
}
/* key〆 */

/* con01 */
#about .con01_wrapper{
    width: 100%;
    height: auto;
    position: relative;
    background-image: url(../img/about_bg01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
#about .con01 {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: auto;
}
#about .con01 .flex_box01{
    position: -webkit-sticky;
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-600px, 50%);
}
#about .con01 .flex_box01 h2{
    font-size: 18px;
    font-weight: bold;
    color: #999999;
    white-space: nowrap;
}
#about .con01 .flex_box01 p{
    position: relative;
    font-size: 0;
}
#about .con01 .flex_box01 p:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/about_text01.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 511px;
    height: 208px;
}
#about .con01 .flex_box02{
    width: 50%;
    margin-top: 185px;
}
#about .con01 .flex_box02 p{
    font-size: 20px;
    font-weight: bold;
    line-height: 2.4;
    color: #555555;
}
#about .con01 .flex_box02 p:nth-of-type(2){
    margin-top: 75px;
}
#about .con01 .flex_box02 p:nth-of-type(3){
    margin-top: 60px;
}
@media screen and (max-width: 1200px) {
    #about .con01_wrapper{
        width: 100%;
        height: auto;
        position: relative;
        background-image: url(../img/about_bg01_02.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
    }
    #about .con01 {
        display: flex;
        flex-direction: column;
    }
    #about .con01 .flex_box01 {
        position: absolute;
        top: 5%;
        transform: translate(-73%)

    }
    #about .con01 .flex_box02 {
        width: 60%;
        min-width: 600px;
        margin: 300px auto 60px auto;
    }
}
@media screen and (max-width: 700px) {
    #about .con01_wrapper{
        background-image: url(../img/about_bg01_03.png);
    }
    #about .con01 .flex_box01 p:before {
        background-size: 300px;
        width: 300px;
        height: 150px;
    }
    #about .con01 .flex_box01 {
        top: 8%;
        transform: translate(-60%);
    }
    #about .con01 .flex_box01 h2{
        font-size: 14px;
    }
    #about .con01 .flex_box02 {
        width: 80%;
        min-width: auto;
        margin: 240px auto 50px auto;
    }
    #about .con01 .flex_box02 p {
        font-size: 16px;
        font-weight: bold;
        line-height: 2.0;
        color: #555555;
    }

}
/* con01〆 */
/* con02 */
#about .con02 {
    width: 100%;
    margin: auto;
}
#about .con02 >h2:nth-of-type(1){
    position: relative;
    font-size: 0;   
}
#about .con02 >h2:nth-of-type(1):before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/ABOUT.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 293px;
    height: 109px; 
    top: 0;
    left: 38px;
}
#about .con02 .grid_box_wrapper{
    display: grid;
    width:100%;
    max-width: 1200px;
    padding-top: 110px;
    margin: auto;
    grid-template-columns: 1fr 1fr;
}
#about .con02 .grid_box_wrapper .grid_box01{
    margin-top: 60px;
}
#about .con02 .grid_box_wrapper .grid_box01 h2{
    font-size: 18px;
    color: #999999;
}
#about .con02 .grid_box_wrapper .grid_box01 h3{
    font-size: 36px;
    margin-top: 20px;
}
#about .con02 .grid_box_wrapper .grid_box01>p:nth-of-type(1){
    font-size: 30px;
    font-weight: bold;
    margin-top: 60px;
}
#about .con02 .grid_box_wrapper .grid_box01>p:nth-of-type(2){
    font-size: 16px;
    line-height: 2;
    margin-top: 60px;
}
#about .con02 .grid_box_wrapper .grid_box01>p:nth-of-type(3){
    font-size: 16px;
    line-height: 2;
    margin-top: 41px;
}
#about .con02 .grid_box_wrapper .grid_box02{
    margin-top: 60px;
}
#about .con02 .grid_box_wrapper .grid_box03{
    margin-top: 130px;
}
#about .con02 .grid_box_wrapper .grid_box02{
    margin-top: 110px;
}
#about .con02 .grid_box_wrapper .grid_box02 p,
#about .con02 .grid_box_wrapper .grid_box03 p{
    width: 100%;
}
#about .con02 .grid_box_wrapper .grid_box02 p img,
#about .con02 .grid_box_wrapper .grid_box03 p img{
    width: 100%;
    object-fit: cover;
}
#about .con02 .grid_box_wrapper .grid_box04{
    padding: 230px 0 0 68px;
}
#about .con02 .grid_box_wrapper .grid_box04 h3{
    font-size: 26px;
}
#about .con02 .grid_box_wrapper .grid_box04>p:nth-of-type(1){
    font-size: 16px;
    line-height: 2;
    margin-top: 50px;
}
#about .con02 .grid_box_wrapper .grid_box04>p:nth-of-type(2){
    font-size: 16px;
    line-height: 2;
    margin-top: 41px;
}
#about .con02 .grid_box_wrapper02{
    position: relative;
    display: grid;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
    margin: 166px auto 140px;
    grid-template-columns: repeat(3,1fr)
}
#about .con02 .grid_box_wrapper02:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/about_bg02.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 720px;
    bottom: -141px;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
}
#about .con02 .grid_box_wrapper02 .grid_box05,
#about .con02 .grid_box_wrapper02 .grid_box06,
#about .con02 .grid_box_wrapper02 .grid_box07{
    position: relative;
    width: 380px;
    height: 290px;
    text-align: center;
    background-color: #222222;
    
}
#about .con02 .grid_box_wrapper02 .grid_box05:before,
#about .con02 .grid_box_wrapper02 .grid_box06:before,
#about .con02 .grid_box_wrapper02 .grid_box07:before{
    display: block;
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    left: 50%;
    transform: translate(-50%);
}
#about .con02 .grid_box_wrapper02 .grid_box05:before{
    background-image: url(../img/about_04.png);
    width: 68px;
    height: 64px;
    top: -35px;
}
#about .con02 .grid_box_wrapper02 .grid_box06:before{
    background-image: url(../img/about_05.png);
    width: 60px;
    height: 55px;
    top: -27px;
}

#about .con02 .grid_box_wrapper02 .grid_box07:before{
    background-image: url(../img/about_06.png);
    width: 57px;
    height: 60px;
    top: -30px;
}
#about .con02 .grid_box_wrapper02 .grid_box05 h3,
#about .con02 .grid_box_wrapper02 .grid_box06 h3,
#about .con02 .grid_box_wrapper02 .grid_box07 h3{
    position: relative;
    font-size: 20px;
    font-weight: bold;
    margin-top: 66px;
}
#about .con02 .grid_box_wrapper02 .grid_box05 h3:before,
#about .con02 .grid_box_wrapper02 .grid_box06 h3:before,
#about .con02 .grid_box_wrapper02 .grid_box07 h3:before{
    display: block;
    position: absolute;
    content: "";
    border: solid 1px #777777;
    width: 290px;
    top: 85px;
    left: 50%;
    transform: translate(-50%);
}
#about .con02 .grid_box_wrapper02 .grid_box05 p:nth-of-type(1),
#about .con02 .grid_box_wrapper02 .grid_box06 p:nth-of-type(1),
#about .con02 .grid_box_wrapper02 .grid_box07 p:nth-of-type(1){
    font-size: 40px;
    font-weight: bold;
    color: #dc0108;
    margin-top: -10px;
}
#about .con02 .grid_box_wrapper02 .grid_box05 p:nth-of-type(1) span,
#about .con02 .grid_box_wrapper02 .grid_box06 p:nth-of-type(1) span,
#about .con02 .grid_box_wrapper02 .grid_box07 p:nth-of-type(1) span{
    font-size: 30px;
    font-weight: bold;
    color: #dc0108;
    margin-top: -10px;
}
#about .con02 .grid_box_wrapper02 .grid_box05 p:nth-of-type(1):before,
#about .con02 .grid_box_wrapper02 .grid_box06 p:nth-of-type(1):before,
#about .con02 .grid_box_wrapper02 .grid_box07 p:nth-of-type(1):before{
    display: block;
    position: absolute;
    content: "";
    border: solid 1px #777777;
    width: 290px;
    top: 50px;
    left: 50%;
    transform: translate(-50%);
}
#about .con02 .grid_box_wrapper02 .grid_box05 p:nth-of-type(2),
#about .con02 .grid_box_wrapper02 .grid_box06 p:nth-of-type(2),
#about .con02 .grid_box_wrapper02 .grid_box07 p:nth-of-type(2){
    width: 304px;
    margin: 25px auto 0;
    text-align: left;
    line-height: 2;
}
@media screen and (max-width: 1200px) {
    #about .con02 .grid_box_wrapper {
        display: grid;
        grid-template-columns: 5.5fr 4.5fr;
        width: 95%;
}
#about .con02 .grid_box_wrapper .grid_box04 {
        padding: 125px 0 0 68px;
}
    #about .con02 .grid_box_wrapper02 {
        position: relative;
        display: grid;
        width: 100%;
        max-width: 1200px;
        gap: 50px;
        margin: 166px auto 0;
        grid-template-columns: 1fr 1fr; /* 左右は自動調整、中央は1fr */
        grid-template-rows: auto auto; /* 上下2行 */
        justify-items: center; /* 中央揃え */
}
    #about .con02 .grid_box_wrapper02:before {
        top: auto;
        bottom: 0;
}
    #about .con02 .grid_box_wrapper02 .grid_box05{
        grid-column: 1 / span 2; /* 1を2列分にする */
        justify-self: center; /* 水平中央 */
    }
    #about .con02 .grid_box_wrapper02 .grid_box06{
        grid-column: 1 / 2; /* 左側 */
        margin-left: 10px;
    }
    #about .con02 .grid_box_wrapper02 .grid_box07{
        grid-column: 2 / 3; /* 右側 */
        margin-right: 10px;
}
}
@media screen and (max-width: 1050px) {
    #about .con02 .sp{
        display: block;
    }
    #about .con02 >h2:nth-of-type(1):before {
        top: 60px;
        left: -15px;
        transform: scale(0.7);
    }
    #about .con02 .grid_box_wrapper .grid_box01 {
        margin-right: 10px;
    }
    #about .con02 .grid_box_wrapper .grid_box01 h2 {
        font-size: 14px;
        color: #999999;
    }
    #about .con02 .grid_box_wrapper .grid_box01 h3 {
        font-size: 30px;
        margin-top: 15px;
    }
    #about .con02 .grid_box_wrapper .grid_box01>p:nth-of-type(1) {
        font-size: 24px;
        font-weight: bold;
        margin-top: 15px;
    }
    #about .con02 .grid_box_wrapper .grid_box01>p:nth-of-type(2) {
        margin-top: 20px;
    }
    #about .con02 .grid_box_wrapper .grid_box01>p:nth-of-type(3) {
        margin-top: 20px;
    }
    #about .con02 .grid_box_wrapper .grid_box02 {
        margin-top: 40px;
    }
    #about .con02 .grid_box_wrapper .grid_box04 {
        padding: 55px 0 0 10px;
    }
    #about .con02 .grid_box_wrapper .grid_box04 h3{
        font-size: 20px;
    }
}
    @media screen and (max-width: 850px) {
    #about .con02 .sp{
        display: none;
    }
    #about .con02 >h2:nth-of-type(1):before {
        top: 60px;
        left: 0;
        right: 0;
        margin: auto;
        transform: scale(0.7);
    }
    #about .con02 .grid_box_wrapper {
        display: grid;
        grid-template-columns: 1fr;
    }
    #about .con02 .grid_box_wrapper .grid_box01 {
        margin: 100px auto 0;
    }
    #about .con02 .grid_box_wrapper .grid_box02 {
        margin-top: 15px;
    }
    #about .con02 .grid_box_wrapper .grid_box02 p img{
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
    #about .con02 .grid_box_wrapper .grid_box03 p img{
        width: 100%;
        height: 350px;
        object-fit: cover;
        object-position: 50% -27px;
    }
    #about .con02 .grid_box_wrapper .grid_box03 {
        order: 4;
        margin-top: 20px;
    }
    #about .con02 .grid_box_wrapper .grid_box04 {
        order: 3;
        margin-top: 40px;
        padding-left: 20px;
    }
    #about .con02 .grid_box_wrapper .grid_box04>p:nth-of-type(1) {
        margin-top: 25px;
    }
    #about .con02 .grid_box_wrapper02{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    #about .con02 .grid_box_wrapper02 .grid_box05,
    #about .con02 .grid_box_wrapper02 .grid_box06,
    #about .con02 .grid_box_wrapper02 .grid_box07{
        grid-column: 1 / -1; /* 1列全幅に */
        justify-self: center;
    }

}
@media screen and (max-width: 560px) {
    #about .con02 .pc{
        display: none;
    }
    #about .con02 .grid_box_wrapper .grid_box01 h3 {
        font-size: 20px;
    }
    #about .con02 .grid_box_wrapper .grid_box01>p:nth-of-type(1) {
        font-size: 18px;
    }
    #about .con02 .grid_box_wrapper02{
        gap: 60px;
    }
    #about .con02 .grid_box_wrapper02 .grid_box05,
    #about .con02 .grid_box_wrapper02 .grid_box06,
    #about .con02 .grid_box_wrapper02 .grid_box07{
        width: 340px;
    }
}
/* con02〆 */
/* con03 */
#about .con03{
    width: 100%;
    margin: auto; 
    padding-top: 131px;
}
#about .con03 h2{
    position: relative;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}
#about .con03 h2:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/outline.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 58px;
    height: 15px;
    top: -30px;
    left: 50%;
    transform: translate(-50%);
}
#about .con03 table{
    width: 95%;
    max-width: 1000px;
    margin: 50px auto 0;
    border-collapse:collapse;
}
#about .con03 table tbody tr{
    height: 60px;
}
#about .con03 table tbody tr:nth-child(odd){
    background-color: #222222;
}
#about .con03 table tbody tr th{
    font-weight: bold;
    width: 39%;
    text-align: center;
}
#about .con03 .banner{
    margin: 150px auto 0;
    width: 100%;
    max-width: 1800px;
}
#about .con03 .banner img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
#about .con03 .button_03{
    display: none;
}
@media screen and (max-width: 1200px) {
    #about .con03 .banner{
        margin-top: 70px;
        width: 90%;
    }
    #about .con03 .button_03 {
        display: block;
        position: relative;
        font-size: 16px;
        font-weight: bold;
        width: 460px;
        height: 50px;
        margin: 55px auto 100px auto;
        padding: 12px 0 0 118px;
        border-radius: 25px;
        background-color: #dc0108;
    }
    #about .con03 .button_03:before {
        display: block;
        position: absolute;
        content: "";
        background: url(../img/button_cursor.png);
        background-repeat: no-repeat;
        width: 22px;
        height: 22px;
        top: 15px;
        right: 20px;
    }
}
@media screen and (max-width: 800px) {
    #about .con03 .sp{
        display: block;
    }
    #about .con03 table tbody tr th{
        display: block;
        width: 100%;
    }
    #about .con03 table tbody tr td{
        display: block;
        width: 100%;
        text-align: center;
    }
    #about .con03 table tbody tr:nth-child(odd){
        background-color: #000000;
    }
    #about .con03 table tbody tr th{
        background-color: #222222;
    }
    #about .con03 .button_03 {
        display: block;
        position: relative;
        font-size: 14px;
        font-weight: bold;
        width: 350px;
        height: 50px;
        margin: 55px auto 100px auto;
        padding: 13px 0 0 81px;
        border-radius: 25px;
    }
}
/* con03〆 */



/*------- about〆 -------*/
/* ------- flow ------- */
/* ------- flow〆 ------- */
/* ------- revenue-model ------- */
/* ------- revenue-model〆 ------- */
/* ------- store ------- */
/* ------- store〆 ------- */
/* ------- support ------- */
/* ------- support〆 ------- */


/* footer */
footer{
    position: relative;
    background-image: url(../img/home_bg04.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    height: auto;
    padding: 0 0 140px 0;
    overflow: hidden;
}
footer .footer01{
    margin: 140px auto 0 auto;
    text-align: center;
}
footer .footer01>p:nth-of-type(2){
    font-size: 16px;
    font-weight: bold;
    line-height: 3.3;
}
footer .footer01>p:nth-of-type(3){
    font-size: 18px;
    line-height: 1.7;
}
footer .footer01 .flex_box{
    display: flex;
    justify-content: center;
    margin: 45px auto 0 auto;
}
footer .footer01 .flex_box .tell{
    position: relative;
    font-size: 0;
    height: 0;
}
footer .footer01 .flex_box .tell:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/footer_tell.png) no-repeat;
    width: 29px;
    height: 37px;
    top: 6px;
    left: 16px;
}
footer .footer01 .flex_box .tell:after{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/footer_tell_number.png) no-repeat;
    width: 241px;
    height: 39px;
    top: 6px;
    left: 54px;
}
footer .footer01 .flex_box>p:nth-of-type(2){
    text-align: left;
    margin:0 38px 0 305px;
}
footer .footer01 .flex_box .button{
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    width: 340px;
    height: 50px;
    border-radius: 25px;
    background-color: #dc0108;
    padding:12px 0 7px 0px;
}
footer .footer01 .flex_box .button:before{
    display: block;
    position: absolute;
    content: "";
    background: url(../img/button_cursor.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    top: 14px;
    right: 15px;
}
footer .flex_box02{
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    width: 90%;
    margin: 150px auto 0 auto;
}
footer .flex_box02 .footer01_box01>p:nth-of-type(1){
    font-size: 16px;
    color: #999999;
    line-height: 2;
}
footer .flex_box02 .footer01_box01>p:nth-of-type(2){
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
}
footer .flex_box02 .footer01_box01>p:nth-of-type(3){
    font-size: 16px;
    line-height: 2;
    margin: 25px 0 0 0;
}
footer .flex_box02 .footer01_box01>p:nth-of-type(4){
    position: absolute;
    font-size: 12px;
    bottom: 10px;
}
footer .flex_box02 .footer01_box01 small{
    color: #999999;
}
footer .flex_box03{
    display: flex;
}
footer .flex_box03 .footer01_box02{
    margin: 0 0 0 115px;
}
footer .flex_box03 .footer01_box02 h3{
    position: relative;
    font-size: 14px;
    color: #dc0108;
}
footer .flex_box03 .footer01_box02 h3:before {
    content: '';
    width: 424px;
    height: 1px;
    display: inline-block;
    background-color: #dc0108;
    position: absolute;
    bottom: -5px;
    left: 0;
}
footer .flex_box03 .footer01_box02 ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 55px;
    grid-auto-flow: dense; /* 空白の行を消す */
    margin: 30px 0 0 0;   
}
footer .flex_box03 .footer01_box02 ul li{
    font-size: 14px;
    line-height: 2.7;
    white-space: nowrap;
}
footer .flex_box03 .footer01_box02 ul li:nth-child(-n+10){
    grid-column: 1;
}
footer .flex_box03 .footer01_box02 ul li:nth-child(n+11){
    grid-column: 2;
}
footer .flex_box03 .footer01_box02 ul li:nth-child(n+4):nth-child(-n+10){
    position: relative;
    padding-left: 25px;
}
footer .flex_box03 .footer01_box02 ul li:nth-child(n+4):nth-child(-n+10):before{
    display: block;
    position: absolute;
    content: "-";
    top: 0;
    left: 15px;
}
footer .flex_box03 .footer01_box03{
    width: 270px;
    margin: 0 0 0 75px;
    text-overflow: ellipsis;
}
footer .flex_box03 .footer01_box03 h3{
    position: relative;
    font-size: 14px;
    color: #dc0108;
}
footer .flex_box03 .footer01_box03 h3:before {
    content: '';
    width: 270px;
    height: 1px;
    display: inline-block;
    background-color: #dc0108;
    position: absolute;
    bottom: -5px;
    left: 0;
}
footer .flex_box03 .footer01_box03 ul{
    margin: 30px 0 0 0;
}
footer .flex_box03 .footer01_box03 ul li{
    position: relative;
    font-size: 14px;
    line-height: 2.7;
    padding-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
footer .flex_box03 .footer01_box03 ul li:before{
    display: block;
    position: absolute;
    content: "・";
    top: 0;
    left: -4px;
}
 
@media screen and (max-width: 1200px){
    footer .footer01 {
        margin: 100px auto 0 auto;
    }
    footer .flex_box02{
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 55px auto 0 auto;
    }
    footer .flex_box02 .footer01_box01{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: auto;
        margin: 0 auto 0 auto;
    }
    footer .flex_box02 .footer01_box01>p:nth-of-type(4) {
        position: absolute;
        font-size: 12px;
        left: 50%;
        transform: translate(-50%);
    }
    footer .flex_box03 {
        justify-content: center;
        margin: 30px 0;
    }
    footer .flex_box03 .footer01_box02 {
        margin: 0 0 0 0;
    }
    footer .flex_box03 .footer01_box03 {
        margin: 0 0 0 0;
    }
}
@media screen and (max-width: 850px){
    footer {
        padding: 0 0 100px 0;
    }
    footer .footer01 .flex_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 30px auto 0 auto;
    }
    footer .footer01 .flex_box .tell:before {
        top: 6px;
        left: -255px;
    }
    footer .footer01 .flex_box .tell:after {
        top: 6px;
        left: -215px;
    }
    footer .footer01 .flex_box .button {
        margin-top: 15px;
    }
    footer .flex_box03 .footer01_box02 {
        margin: 50px 100px 0 85px;
    }
    footer .flex_box03 {
        flex-direction: column;
        margin-bottom: 100px;
    }
    footer .flex_box03 .footer01_box03 {
        display: inline-block;
        width: 75%;
        margin: 50px auto 0 auto;
    }
    footer .sp{
        display: inline-block;
    }
    footer .footer01>p:nth-of-type(2) {
        font-size: 12px;
    }
    footer .footer01>p:nth-of-type(3) {
        font-size: 14px;
    }
    footer .footer01 .flex_box .tell:before {
        transform: scale(0.6);
    }
    footer .footer01 .flex_box .tell:before {
        top: 0;
        left: -160px;
    }
    footer .footer01 .flex_box .tell:after {
        transform: scale(0.6);
    }
    footer .footer01 .flex_box .tell:after {
        top: 0;
        left: -175px;
    }
    
    footer .footer01 .flex_box>p:nth-of-type(2) {
        text-align: left;
        font-size: 12px;
        margin: 0 0 0 210px;
    }
    footer .footer01 .flex_box .button {
        width: 280px;
        height: 40px;
        padding: 8px 0 7px 0px;
    }
    footer .footer01 .flex_box .button:before {
        top: 9px;
        right: 15px;
        transform: scale(0.8);
    }
    footer .flex_box03 .footer01_box03 h3:before {
        width: 100%;
    }
    footer .flex_box03 .footer01_box02 h3:before {
        width: 100%;
    }
}
    @media screen and (max-width: 550px){
        footer{
            position: relative;
            background-image: url(../img/home_bg04-02.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            width: 100vw;
            height: auto;
            padding: 0 0 20px 0;
            overflow: hidden;
        }
        footer .flex_box03 {
            margin: 0 0 100px 0;
        }
        footer .flex_box03 .footer01_box02 ul {
            display: block;
        }
    }
    @media screen and (max-width: 450px){
        footer .flex_box03 .footer01_box02 {
            margin: 50px 100px 0 18px;
        }
        footer .flex_box03 .footer01_box02 h3:before {
            width: 270px;
        }
        footer .flex_box03 .footer01_box03 {
            margin: 50px auto;
        }
        footer .flex_box03 .footer01_box03 h3:before {
            width: 270px;
        }
    }
/* footer〆 */
/* ブログページ */
/* メインコンテンツ (id: blog-page の指定) */
#blog-page main {
    padding: 40px 0;
    background-color: #f9f9f9;
}

#blog-page .blog-articles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-top: 200px;
}

#blog-page .blog-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#blog-page .blog-item:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#blog-page .blog-item img {
    width: 100%;
    height: auto;
    display: block;
}

#blog-page .blog-item h2 {
    font-size: 18px;
    color: #333;
    padding: 10px;
    margin: 0;
}

#blog-page .blog-item .blog-date {
    font-size: 14px;
    color: #666;
    padding: 0 10px 10px;
}

#blog-page .blog-item a {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-top: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

#blog-page .blog-item a:hover {
    background-color: #0056b3;
}

/* ブログページ〆 */