@charset "UTF-8";

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1.2em;
    font-family: 'Noto Sans JP', sans-serif;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0 auto;
    color: #1B1B1B;
    letter-spacing: 2.4px;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

a,
a:link {
    color: #1B1B1B;
    text-decoration: none;
}

h1 {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    font-size: 3.4rem;
    line-height: 150%;
    padding-bottom: 8px;
}

.sp {
    display: none;
}

@media screen and (max-width:960px) {
    h1 {
        font-size: 2.8rem;
        padding-bottom: 0px;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

}

/* ヘッダー*/
header {
    position: absolute;
    width: 100%;
    height: 80px;
    top: 0;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.82);
}

.header-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 90%;
    margin: 0 auto;
    padding: auto 0;
    height: 100%;
}



.title {
    margin-right: auto;
}

.title a {
    font-family: 'Hiragino Kaku Gothic Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 20px;    
    color: #BE0B00;
    vertical-align: middle;
}


.menu-item {
    list-style: none;
    display: inline-block;
    color: #1B1B1B;
    line-height: 20px;
    padding: 0 16px;
}

.menu-item a {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 200%;
    vertical-align: middle;
}

.list-current{
    color: #BE0B00;
}


#drawer_toggle {
    display: none;
}



/* ヘッダー レスポンシブ対応*/
@media screen and (max-width:1220px) {
    .header-area {
        width: 95%;
    }

    .menu-item {
        padding: 0 10px;
    }
    
}

@media  screen and (max-width:1100px) {
    .menu-item {
        padding: 0 5px;
    }

    .menu-item a {
        font-size: 1.6rem;
    }
    
    
}

@media screen and (max-width:960px) {
    header {
        position: fixed;
        width: 100%;
        height: 60px;
        top: 0;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.82);
        z-index: 9995;
    }
    
    #top.white{
        background-color: #FFF;
    }
    

    .header-area {
        display: flex;
        align-items: center;
        width: 90%;
        height: 40px;
        margin: 0 auto;
        padding: 10px 0;
        z-index: 9996;
        gap: 0;
    }

    .title a {
        font-size: 1.6rem;
    }
    

    .nav {
        box-sizing: border-box;
        position:fixed;
        top: 60px;
        display: none;
        width: 100%;
        height: 450px;
        background: #fff;
        z-index: 9999;
        left: 0;
        padding: 20px 5% 80px;
    }


    .menu-group {
        position: absolute;
        flex-direction: column;
        display: flex;
        gap: 24px;
        width: 90%;
    }

    .menu-item {
        list-style: none;
        display: inline-block;
        color: #1B1B1B;
        padding: 0;
        width: 100%;
    }
    
    .menu-item a{
        display: block;
        font-size: 18px;
        text-align: center;
        text-decoration: none;
        line-height: 175%;
        width: 100%;
        text-align: left;
        padding: 8px 0;
    }
    .list-current {
        color: #BE0B00;
        border-bottom: 2px solid #BE0B00;
        padding: 0 0 8px !important;
    }
    
    #drawer_toggle {
        z-index: 200;
        box-sizing: border-box;
        top: 14px;
        right: 18px;
        display: inline-block;
        width: 32px;
        height: 32px;
    }
    #drawer_toggle span {
        position: absolute;
        display: inline-block;
        width: 24px;
        height: 3px;
        border-radius: 2px;
        background-color: #1B1B1B;
        vertical-align: bottom;
        margin-top: 10px;
    }

    #drawer_toggle span:nth-child(2) {
        margin-top: 18px;
    }
    #drawer_toggle span:last-child {
        margin-top: 26px;
    }
    #drawer_toggle.open span {
        position: absolute;
        top: 28px;
        width: 24px;
        margin: 0 8px 0 0;
    }
    #drawer_toggle.open span:first-child {
        transform: rotate(45deg);
    }
    #drawer_toggle.open span:nth-child(2) {
        opacity: 0;
    }
    #drawer_toggle.open span:last-child {
        transform: rotate(-45deg);
    }

    .cover{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 60px;
        left: 0;
        z-index: 9997;
        background: rgba(0, 0, 0, 0.5);
        display: block;
    }

}

/* メインビジュアル*/

.mainvisual img{
    width: 100%;
    height: 720px;
    object-fit: cover;
}

/* メインビジュアル　レスポンシブ対応*/
@media screen and (max-width:1120px) {
    .mainvisual img{
        height: 600px;
    }
    
}


@media screen and (max-width:960px) {

    .mainvisual img{
    object-fit: cover;
    object-position: 100% 100%;
}    
}


@media screen and (max-width:730px) {

        .mainvisual img{
        width: 100%;
        height: auto;
    }    
}



/* トップメッセージ*/

.top_msg {
    background: #FFF;
}

.top_msg_area {
    width: 90%;
    max-width: 1120px;
    padding: 80px 0px;
    text-align: center;
    margin: 0 auto;
    color: #1B1B1B;
}

.top_msg h2 {
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 150%;
    padding-bottom: 24px;
    text-align: left;
}

.top_msg p {
    font-size: 1.6rem;
    line-height: 200%;
    letter-spacing: 2px;
    text-align: left;
}

/* トップメッセージ レスポンシブ対応*/
@media screen and (max-width:960px) {
    .top_msg {
        max-width: 960px;
        margin: 0 auto;
    }

    .top_msg_area {
        padding: 32px 0px;
    }

    .top_msg h2 {
        font-size: 1.8rem;
        padding-bottom: 16px;
        line-height: 170%;
    }

    .top_msg p {
        font-size: 1.4rem;
        line-height: 170%;
        letter-spacing: 0.7px;
    }
}

/*ワンストップ窓口*/
.onestop {
    background: #FFF;
}

.onestop h2 {
    color: #BE0B00;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 170%;
    margin-bottom: 40px;
}

.onestop_area {
    width: 90%;
    max-width: 1120px;
    padding: 80px 0px;
    text-align: left;
    margin: 0 auto;
}


.o_contents01,
.o_contents02,
.o_contents03 {
    display: flex;
    background: #FFF;
    border-radius: 16px;
    margin-bottom: 24px;
    padding: 0;
    justify-content: space-between;
    max-height: 320px;
}

.o_contents_txt {
    flex: 1;
    margin: auto 40px;
    width: 48.2%;
}

.o_contents01 h3,
.o_contents02 h3,
.o_contents03 h3 {
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 150%;
    color: #BE0B00;
    margin: 16px 16px 0 16px;
}


.o_contents01 h4,
.o_contents02 h4,
.o_contents03 h4 {
    font-weight: 700;
    font-size: 2.0rem;
    line-height: 150%;
    margin: 16px;
}

.o_contents01 p,
.o_contents02 p,
.o_contents03 p {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 200%;
    margin: 0 16px 16px 16px;
    letter-spacing: 0.7px;
}

.onestop_img, .onestop_img_web {
    width: 51.8%;
}

.onestop_img img {
    border-radius: 16px 0 0 16px;
    object-fit: cover;
}

.onestop_img_web img {
    border-radius: 0 16px 16px 0;
    object-fit: cover;
}

.onestop_img_sp img {
    display: none;
}


/*オンデマンド化　レスポンシブ対応*/
@media  screen and (max-width: 1150px) {
    .o_contents_txt {
        margin: auto 20px;
    }

    .o_contents01 h3,
.o_contents02 h3,
.o_contents03 h3 {

    margin: 8px 8px 0 8px;
}


.o_contents01 h4,
.o_contents02 h4,
.o_contents03 h4 {
    margin: 8px;
}
    
    .o_contents01 p,
    .o_contents02 p,
    .o_contents03 p {
        line-height: 170%;
        margin: 0 8px 8px 8px;
    }
}

@media screen and (max-width: 960px) {

    .o_contents01,
    .o_contents02,
    .o_contents03 {
        display: block;
        border-radius: 8px;
        margin: 0 auto 16px auto;
        padding: 0;
        max-width: 640px;
        width: 100%;
        max-height: initial;
        height: auto;
    }


    .onestop_img_web img {
        display: none;
    }

    .onestop_img img {
        border-radius: 8px 8px 0 0;
    }

    .onestop_img_sp img {
        display: block;
        border-radius: 8px 8px 0 0;
    }

    .onestop_img, .onestop_img_sp {
        width: 100%;
        height: auto;
       }

       .o_contents_txt {
        margin: 24px 0;
        padding: 0 12px;
        width: auto;
        height: auto;
    }

    .o_contents03 {
        margin-bottom: 0;
    }

    .o_contents01 h3,
    .o_contents02 h3,
    .o_contents03 h3 {
        margin: 0 0 8px 0;
    }
    

    .o_contents01 p,
    .o_contents02 p,
    .o_contents03 p {
        font-weight: 400;
        font-size: 1.4rem;
        margin: 0;
        padding-bottom: 28px;
    }
    .onestop h2 {
        font-size: 2.0rem;
        margin-bottom: 23px;
    }

    .onestop h3 {
        margin-left: 0;
    }

    .onestop_area {
        padding: 32px 0px;
    }



    .o_contents01 h4,
    .o_contents02 h4,
    .o_contents03 h4 {
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 175%;
        margin: 0 0 8px 0;
    }
}


/*Service lineup*/
.service-lineup {
    background: #F4F5F6;
}

.service-lineup h3 {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 200%;
    padding-bottom: 40px;
    color: #424141;
}

.service-lineup-area {
    width: 90%;
    max-width: 1120px;
    padding: 80px 0px;
    text-align: center;
    margin: 0 auto;
}


.sl_contents01,
.sl_contents02,
.sl_contents03 {
    display: flex;
    flex-wrap: wrap;
    background: #FFF;
    border-radius: 16px;
    margin-bottom: 40px;
    padding: 60px;
    justify-content: space-between;
}

.sl_contents03 {
    margin-bottom: 0;
}

.sl_contents01 h4,
.sl_contents02 h4,
.sl_contents03 h4 {
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 150%;
    margin-bottom: 16px;
}

.sl_contents01 h5,
.sl_contents02 h5,
.sl_contents03 h5 {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 175%;
    margin-bottom: 16px;
}

.sl_contents01 .contents_right h5 {
    color: #E74016;
}

.sl_contents02 .contents_left h5 {
    color: #00338B;
}

.sl_contents03 .contents_right h5 {
    color: #068F79;
}

.sl_contents01 p,
.sl_contents02 p,
.sl_contents03 p {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 200%;
    margin: 0 0 16px 0;
}


.sl_contents03 h6 {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 150%;
    margin-bottom: 16px;
}



.contents_right {
    margin: auto 0 auto auto;
    padding: 0;
    text-align: left;
    max-width: 440px;
}

.contents_left {
    margin: auto auto auto 0;
    padding: 0;
    text-align: left;
    max-width: 440px;
    vertical-align: middle;
}

.sl_img img,
.sl_img_web img,
.sl_img_sp img {
    width: 100%;
    max-width: 460px;
    height: auto;
}

.sl_img_sp img {
    display: none;
}

.detail_button img {
    max-width: 151px;
    height: auto;
    margin: 24px 0 0 0;
}

/*Service lineup レスポンシブ対応*/
@media screen and (max-width: 1155px) {

    .sl_contents01,
    .sl_contents02,
    .sl_contents03 {
        display: block;
    }

    .sl_img_web img {
        display: none;
    }

    .sl_img img {
        margin: 0 auto;

    }

    .sl_img_sp img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .contents_right {
        margin: auto;
    }

    .contents_left {
        margin: auto;
    }


}

@media screen and (max-width: 960px) {
    .service-lineup h3 {
        font-size: 1.4rem;
        line-height: 170%;
        padding-bottom: 20px;
    }

    .service-lineup-area {
        padding: 32px 0px;
    }

    .sl_contents01,
    .sl_contents02,
    .sl_contents03 {
        border-radius: 8px;
        padding: 32px 12px;
    }

    .sl_contents01,
    .sl_contents02 {
        margin-bottom: 20px;
    }

    .sl_contents03 {
        margin-bottom: 0px;
    }

    .sl_img img,
    .sl_img_sp img {
        margin-bottom: 16px;
    }

    .sl_contents01 h4,
    .sl_contents02 h4,
    .sl_contents03 h4 {
        font-size: 1.6rem;
        line-height: 175%;
    }

    .sl_contents01 h5,
    .sl_contents02 h5,
    .sl_contents03 h5 {
        font-size: 1.4rem;
        line-height: 150%;
    }

    .sl_contents01 p,
    .sl_contents02 p,
    .sl_contents03 p {
        font-size: 1.4rem;
        line-height: 170%;
    }

    .detail_button img {
        max-width: 140px;
        height: auto;
        margin-top: 8px;
    }

}

/*Customize*/
.customize {
    background: #FFF;
}

.customize h3 {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 200%;
    padding-bottom: 40px;
    color: #424141;
}

.customize_area {
    width: 90%;
    padding: 80px 0px;
    max-width: 1120px;
    text-align: center;
    margin: 0 auto;
}

.c_contents_area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 20px;
}

.c_contents01,
.c_contents02,
.c_contents03 {
    max-width: 360px;
    width: 100%;
    height: auto;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin: 0 auto;
}

.c_contents01 img,
.c_contents02 img,
.c_contents03 img {
    border-radius: 8px 8px 0 0;
}

.c_content_txt {
    padding: 20px;
}

.c_contents01 h4,
.c_contents02 h4,
.c_contents03 h4 {
    font-weight: 700;
    font-size: 2.0rem;
    line-height: 150%;
    padding: 16px 0;
}

.c_contents01 p,
.c_contents02 p,
.c_contents03 p {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 200%;
    text-align: left;
}

/*Customize　レスポンシブ対応*/


@media screen and (max-width: 960px) {
    .customize h3 {
        font-size: 1.4rem;
        line-height: 170%;
        padding-bottom: 20px;
    }

    .customize_area {
        width: 90%;
        padding: 32px 0px;
    }

    .c_contents_area {
        display: block;
    }

    .c_contents01,
    .c_contents02 {
        margin-bottom: 20px;
    }

    .c_contents01 h4,
    .c_contents02 h4,
    .c_contents03 h4 {
        font-size: 1.6rem;
        line-height: 175%;
        padding-top: 0;
    }

    .c_contents01 p,
    .c_contents02 p,
    .c_contents03 p {
        font-size: 1.4rem;
        line-height: 170%;
    }
}

/*よくあるご質問*/
.q_and_a {
    background: #F4F5F6;
}

.qa_area {
    width: 90%;
    max-width: 1120px;
    padding: 80px 0px;
    text-align: center;
    margin: 0 auto;
}

.qa_area h1 {
    margin-bottom: 32px;
}

.qa-tab-area {
    display: flex;
    cursor: pointer; 
    max-width: 450px;
    margin: 0 auto 40px auto;
  }
  .qa-tab {
    width: calc(100%/2);
    padding: 16px;
    text-align: center;
    color: #605E5E;
    font-weight: 700;
    font-size: 2.0rem;
    line-height: 150%;
  }

  .qa-tab.active {
    color: #BE0B00;
    border-bottom: 3px solid #BE0B00;
  }

  .qa-panel-area {
    width: 100%;
  }

  .qa-panel {
  display: none;
  text-align: center;
  margin: 0 auto;
  }

  .qa-panel.active {
  display: block;
  margin: 0 auto;
  width: 100%;
  }

.acd-check {
    display: none;
}

.acd_box {
    margin-bottom: 40px;
}

.acd_box:last-of-type {
    margin-bottom: 0;
}

.acd-label {
    padding: 20px 15px;
    box-sizing: border-box;
    background: #FFF;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    border-radius: 8px;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 150%;
    text-align: left;
}
.acd-label p {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 150%;
    text-align: left;
    padding-left:2.2em;
	text-indent:-2.2em;
}

.acd-label p span {
    font-size: 1.4rem;
}


.acd-label::after {
    display: flex;
    align-items: center;
    font-family: "Font Awesome 5 Free";
    content: "\f055";
    font-weight: 900;
    transition: all 0.3s;
    color: #908F8F;
}


.acd-content {
    height: 0;
    opacity: 0;
    transition: 0s;
    visibility: hidden;
    padding: 0px 15px;
    margin: 0 auto;
    background: #FFF;
    border-radius: 0 0 8px 8px;

}

.acd-content p {
    word-break: break-all;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 200%;
    text-align: left;
    padding-left:2.2em;
	text-indent:-2.2em;
}

.acd-content p a {
        font-weight: 400;
        font-size: 1.6rem;
        line-height: 200%;
}

.acd-check:checked+.acd-label+.acd-content {
    height: auto;
    opacity: 1;
    padding: 20px 15px;
    visibility: visible;
    display: flex;
    align-items: center;
    word-break: break-all;
}

.acd-check:checked+.acd-label::after {
    font-family: "Font Awesome 5 Free";
    content: "\f056";
    color: #908F8F;
}

.acd-check:checked+.acd-label {
    background: #DDDCDB;
    border-radius: 8px 8px 0 0;
}



/*よくあるご質問　レスポンシブ対応*/

@media screen and (max-width: 960px) {

    .acd-check:checked+.acd-label+.acd-content {
        padding: 20px 15px;
    }

    .qa_area {
        padding: 32px 0px;
    }

    .qa_area h1 {
        font-size: 28px;
        line-height: 150%;
        margin-bottom: 20px;
    }

    .qa-tab-area {
        max-width: 335px;
      }
    
      .qa-tab {
        padding: 8px;
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 150%;
      }

    .acd-label {
        font-size: 1.6rem;
    }

    .acd-label p {
        font-size: 1.6rem;
    }

    .acd-label p span {
        font-size: 1.2rem;
    }

    .acd-content p {
        font-size: 1.4rem;
    }


}

/*CONTACT*/
.contact {
    background: #424141;
}

.contact_area {
    width: 90%;
    max-width: 1120px;
    padding: 80px 0px;
    text-align: center;
    margin: 0 auto;
    color: #FFF;
}

.contact_area h1 {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
}

.contact_area p {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 200%;
    margin-bottom: 60px;
}

.contact_area a img {
    margin-bottom: 16px;
    max-width: 246px;
    height: auto;
}

.contact_area h6 {
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 170%;
    color: #F7F7F7;
}

.contact_area h6 a {
    color: #F7F7F7;
    text-decoration: none;
}

/*CONTACT　レスポンシブ対応*/
@media screen and (max-width:960px) {
    .contact_area {
        padding: 32px 0px;
    }

}


/*フッター*/
footer {
    background: #FFF;
}

.footer_logo {
    font-family: 'Hiragino Kaku Gothic Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 170%;
    color: #BE0B00;
}

.footer_area {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    max-width: 1120px;
    width: 90%;
    padding: 80px 0;
}

.menu_center nav ul li a,
.menu_right nav ul li a {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 200%;
}

.menu_center nav ul li a:hover,
.menu_right nav ul li a:hover {
    color: #242323;
}

.menu_right nav ul li a img {
    vertical-align: middle;
}

.menu_right {
    margin-right: 150px;
}

.material-symbols-rounded {
    font-size: 1.8rem;
    vertical-align: baseline;
}

footer small {
    display: block;
    text-align: center;
    padding: 10px;
}

/*フッター レスポンシブ対応*/
@media screen and (max-width:960px) {
    .menu_right {
        margin: 0;
    }

    .footer_area {
        display: block;
        padding: 40px 0;
    }

    .menu_center nav ul li a,
    .menu_right nav ul li a {
        font-size: 1.4rem;
        line-height: 170%;
    }

    .material-symbols-rounded {
        font-size: 1.6rem;
    }

}