@charset "utf-8";  /* 文字エンコーディングをUTF-8に指定  */

@import url('https://fonts.googleapis.com/css?family=Exo:400,700');

*{
    margin: 0px;
    padding: 0px;
}

html { 
    scroll-behavior: smooth;
}

body{
    font-family: system-ui, 'Exo', sans-serif;
    background-color:rgb(245, 246, 251);
    width: 100%;
}

header {
    border-top: 10px solid #01189a;  /* 上ボーダーに10px、実線、濃紺を指定  */
}

#header {
    display: flex;
    margin-top: 10px;
}

#top {
    position: fixed;
    top: 0; /* 上部から配置の基準位置を決める */
    left: 0; /* 左から配置の基準位置を決める */
    width: 100vw; /* ヘッダーの横幅を指定する */
    background-color: rgb(245, 246, 251);
    z-index: 100;
}

#companylogo {
    width: 75px;
    margin-top: -10px;
}

.logo {
    margin: 0 10px 2px 20px;
    width:50px;
    height:50px;
}

#syamei {
    margin-top: 25px;
    width: 50%;
}

.syamei {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 100%;
    color:#030303;
}

#navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    margin-right: 50px;
    width: 100%;
}

header nav ul li a {
    text-decoration: none; /* 下線を消す */
    /* background-color: rgba(232, 237, 254, 0.2); 背景色を青に */
    color: #000000; /* 文字色を白に */
    padding: 10px 0; /* パディング上下10px 左右0px */
    display: block; /* ブロックレベル表示 */
    font-size: 85%;
}

header nav ul li a:hover, /* カーソルを乗せた時 */ /* クリックした時 */
header nav ul li a:active {  
    background-color: #01189a;
    color: #ffffff;
    border-radius: 15px;
  }
/* header nav ul li.current a */

header nav ul {
    width: 100%;  /* 幅を675pxに指定  */
    padding-left: 0;  /* デフォルトスタイルをリセット */
    margin: 0 0 5px auto;
    list-style-type: none;  /* リストマーカーを消す */
}

header nav ul li {
    width: 125px;
    margin-right: 1px;  /* リスト項目と右隣りのリスト項目の間を1px空ける */
    float: left;  /* 左フロート */
    text-align: center;  /* テキストを中央揃え */
    font-size: 120%;
}

header nav ul li:last-child { /* 最後のリスト項目 */
    margin-right: 0; /* 右マージン0 */
}

/* ----------------------------------------------------------- レシポンシブデザイン ----------------------------------------------------------- */
@media screen and (max-width: 1080px) {
	/* 1080px以下に適用されるCSS（タブレット用） */
    #navigation {
        display: none;
    }

    #hamburger {
        background-color: rgb(245, 246, 251);  /* 透明の背景 transparent*/
        position: fixed;             /*ハンバーガーの横線の位置を決めるための基準*/
        top: 20px;
        right: 20px;
        cursor: pointer;                /*リンクを示すカーソルを表示（指差しマーク）*/
        margin: 3px 0 0 auto;           /*左側に余白を作り、ハンバーガーメニューを右端に配置*/
        height: 50px;                   /*ヘッダーの高さと同じ60px*/
        width: 50px;                    
        border-radius: 5px;
        z-index: 12;
        box-sizing: border-box;
        -webkit-transition: all 400ms;
        transition: all 400ms;
    }

    .icon span {
        position: absolute;       /*親要素である#hamburgerを基準に位置を指定*/
        left: 12px;               /*#hamburger内の左から12pxに横線を配置（幅が50pxなので右からも12px）*/
        width: 30px;              /*横線の幅が25px*/
        height: 4px;              /*横線の高さが4px*/
        background-color: rgb(52, 52, 52);  /*横線を白色*/
        border-radius: 10px;       /*横線の両端の角に丸みを持たせる*/
        transition: ease 0.2s;   /*変化の時間（easeは初期値）*/
        -webkit-transtion: all 400ms;
        transition: all 400ms;
    }

    /* ハンバーガーの横線三本を均等配置 */
    .icon span:nth-of-type(1) {
        top: 12.5px;
    }

    .icon span:nth-of-type(2) {
        top: 24.25px;
    }

    .icon span:nth-of-type(3) {
        bottom: 10px;
    }

    /* ハンバーガーの横線三本を可変させる⇒JQuery */
    .close span:nth-of-type(1) {
        transform: rotate(45deg); /*反時計回りに45度回転*/
        top: 28px;
    }

    .close span:nth-of-type(2) {
        opacity: 0;
    }

    .close span:nth-of-type(3) {
        transform: rotate(-45deg); /*時計回りに45度回転*/
        top: 28px;
    }

    /* -------- ハンバーガーメニューリストを表示 --------- */
    #navigation {
        top: 75px;  /*headerの余白分*/
        left: 0px;  /*headerの余白分　ヘッダーには左右に15px余白があるので、headerの子要素となる.smは15px分内側に設置されます。その余白を埋めるために左に寄せる。*/
        position: absolute; /*絶対配置　top　leftからの位置を絶対配置する*/
        z-index: 100;
        width: 100%;
        background-color: transparent;
    }

    /* -------- ナビゲーションリストを縦表示 --------- */
    #navigation ul {
        display: flex;
        flex-direction: column;
    }

    /* -------- ナビゲーションリストを右寄せ --------- */
    #navigation li {
        margin: 0 0 0 auto;
        background-color: rgba(0, 2, 128, 0.85);
        width: 35%;
    }

    /* -------- ナビゲーションリストの中央寄席 --------- */
    #navigation ul a {
        color: #ffffff;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: clamp(12px, 2vw, 15px);
        text-align: center;	/*メニューリストの文字を中央寄せ*/
        border-top: solid 0.25px rgb(255, 255, 255);	/*リストの境目に白線 */
    }

    header nav ul li a:hover, /* カーソルを乗せた時 */ /* クリックした時 */
    header nav ul li a:active {  
    background-color: #000000;
    color: #ffffff;
    border-radius: 0px;
  }

}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */







    
}


/* -------------------------------------------------------------------  index.htmlのメインコンテンツ部分  ------------------------------------------------------------ */
main {
    width: 100%;
    margin-top: 10%;
}

#main_visual {
    margin: 7vh 0 75px 0;
    display: flex;
    width: 100%;
    height: auto;
}

#acleft {
    width: 25%;
}

#adxiliacircle {
    /* margin: 2.5vh 0 2vh 2.5vw; */
    text-align: center;
    animation-name:fadeUpAnime;
    animation-duration: 3s;
    animation-fill-mode:forwards;
    opacity:0;
    }
        
    @keyframes fadeUpAnime{
        from {
        opacity: 0;
        transform: translateY(100px);
        }
    
        to {
        opacity: 1;
        transform: translateY(0);
        }
    }

#adxiliacircle img {
    width: 55vw;
    height: 100%;
    min-width: 320px;
    min-height: auto;
}

#acright {
    width: 25%;
}

#mission {
    margin-bottom: 27.5vh;
}

#missionarea {
    display: flex;
    width: 100%;
    margin-top: 10vh;
}

#missionarea img {
    width: 75%;
    height: 125%;
}

#mleft {
    width: 25%;
    height: auto;
    margin: 20px 0 50px 0;
}

#mleft img {
    height: auto;
    width: 100%;
    margin: 0;
}

#missioncontainer {
    display: flex;
    flex-direction:column;
    background-color: rgb(228, 239, 254);
    border-radius: 15px;
    width: 85%;
    height: auto;
    margin-right: 50px;
}

#title1 {
    display: flex;
    width: 100%;
    height: auto;
    margin-top: 2.5vh;
}

#missionandphilosopyy {
    display: flex;
    flex-direction: column;
    margin: 5.5vh 2vw 3vh 5vw;
}

.midashi {
    margin: auto 0 0 20px;
    font-size: clamp(42.5px, 5vw, 75px);
    font-weight: 500;
    color: #5d8bff;
}

.midashi2 {
    margin: auto 0 5.5px 2vw;
    font-size: clamp(22.5px, 3vw, 37.25px);
    font-weight: 500;
    color: #444953;
}

#philosophyword {
    margin-bottom: 5vh;
}

#missionword {
    display: flex;
}

#missiontitle {
    margin: 0 25px 0 0;
    font-size: 250%;
    font-weight: 550;
}

.subhead1 {
    margin: 0 25px 0 0;
    font-size: clamp(15.5px, 2.5vw, 25px);
    font-weight: 550;
    color: #656970;
    margin-left: 15px;
	text-indent: -10px;
}

#philosophy {
    margin: 1.5vh 2vw 0 2.5vw;
    font-size: clamp(12.5px, 1.75vw, 22.5px);
    font-weight: 550;
    color: #656970;
    line-height: 1.5;
}

#missionex {
    margin: 1.5vh 2vw 2.5vh 2.5vw;
    font-size: clamp(12.5px, 1.75vw, 22.5px);
    font-weight: 550;
    color: #656970;
    line-height: 1.5;
}

#servicesarea {
    width: 100%;
}

#services {
    margin-bottom: 150px;
}

#servicescontainer {
    display: flex;
    margin: 100px 0 25px 20px;
}

#comment {
    margin: 3vh 30px 32.5px 55.5px;
    font-size: clamp(17.5px, 2vw, 27.5px);
    font-weight: 550;
    color: #656970;
}

.linetitle1 {
    font-size: 30px;
    font-weight: 550;
    color: #363636;
    margin: 0 0 2vh 55px;
    /* background: linear-gradient(transparent 82.5%, #6b82ff 60%); */
    width: 500px;
    background-image: linear-gradient(109.6deg, #6b82ff 11.2%, rgb(215, 226, 255) 91.1%);
    background-repeat: no-repeat;
    background-size: 100% 7.5px;
    background-position: bottom;
}

#adsys {
    display: flex;
    margin: 5px auto 2vh 65px;
}

#adsyspic {
    margin: 10px 0 0 0;
    width: 45%;
    height: 100%;
    min-width: 100px;
    min-height: 100px;
}

#adsysimg {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.servicetitle {
    width: 55%;
    min-width: 230px;
    height: auto;
    font-size: clamp(19.5px, 2vw, 27.5px);
    font-weight: 550;
    color: #ffffff;
    margin: 10px 0 3vh 3vw;
    background-color: #656970;
    border-radius: 15px;
    padding: 7px 0;
}

.explanationtitle1 {
    font-size: clamp(15.5px, 1.75vw, 25px);
    font-weight: 550;
    color: #656970;
    margin: 1vh 0 1vw 3.5vw;
    width: 75%;
}

.explanation1 {
    font-size: clamp(12.5px, 1.75vw, 20px);
    font-weight: 550;
    color: #656970;
    margin: 1vh 50px 1vw 5.5vw;
    width: 75%;
    line-height: 1.5;
}

#explanation2 {
    font-size: clamp(10.5px, 1.25vw, 15px);
    font-weight: 100;
    color: #000000;
    margin: 5px 2vw 2vh 7vw;
    width: 70%;
    line-height: 1.5;
}

#useedinetcom {
    list-style: none;
    margin-left: 10px;
    text-indent: -1.25em;
}

#toadsys {
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 22% 0 auto;
    max-width: 250px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    box-shadow: 5px 5px 0 #2c4cff;
    border-radius: 50px;
    cursor: pointer;
}

#toadsys:hover {
    background-color: rgb(228, 239, 254);
    box-shadow: 0 0 0;
    transform: translate(5px, 5px);
}

#toadsys:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-50%);
}

#servicesline2 {
    margin: 7vh 0 0 0;
    width: 100%;
}

.consulting {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    /* min-width: 1209px; */
    margin: 10px 10px 10px 5.5vw;
}

.consulting .menucontainer {
    width: calc(90%/3);
    box-sizing: border-box; 
}

.menucontainer {
    display: flex;
    flex-direction: column;
    margin: 5px;
    width: auto;
    min-width: 282px;
    height: 100%;
}

.menubox {
    width: auto;
    min-width: 282px;
    height: auto;
}

#menuimg1 {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

#menuimg2 {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

#menuimg3 {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.menutitle {
    width: 99%;
    min-width: 282px;
    margin: 20px 20px 10px 5px;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 550;
    color: #3c3c3c;
    background-image: linear-gradient(109.6deg, #6b82ff 11.2%, rgb(215, 226, 255) 91.1%);
    background-repeat: no-repeat;
    background-size: 100% 2.5px;
    background-position: bottom;
}

.menutitle_val {
    width: 99%;
    min-width: 285px;
    margin: 20px 20px 10px 5px;
    font-size: clamp(18px, 2.25vw, 20px);
    font-weight: 550;
    color: #3c3c3c;
    background-image: linear-gradient(109.6deg, #6b82ff 11.2%, rgb(215, 226, 255) 91.1%);
    background-repeat: no-repeat;
    background-size: 100% 2.5px;
    background-position: bottom;
}

.midashi3 {
    width: auto;
    min-width: 282px;
    margin: 5px 7.5px 20px 7.5px;
    font-size: clamp(15px, 1vw, 16.5px);
    font-weight: 500;
    color: #3c3c3c;
    line-height: 1.5;
}

.menuexplanation {
    width: 98%;
    min-width: 282px;
    margin-left: 5px;
    margin-bottom: 5vh;
}

.list {
    width: 85%;
    min-width: 225px;
    margin: 2.5px  3.5px;
    font-size: clamp(13px, 0.85vw, 14px);
    font-weight: 550;
    color: #383838;
    margin-left: 38.5px;
	text-indent: -20px;
}


@media screen and (max-width: 1080px) {
	/* 1080px以下に適用されるCSS（タブレット用） */
    
    #main_visual {
        margin: 25vh 0 0 0;
    }

    #servicescontainer {
        margin: 100px 0 25px 2px;
    }


    .consulting {
        width: 72.95%;
        margin: 10px 10px 10px 15vw;
    }

    .consulting .menucontainer {
        width: calc(80%/2);
        box-sizing: border-box; 
    }



}
@media screen and (max-width: 800px) {
	/* 800px以下に適用されるCSS（スマホ用） */
    #title1 {
        display: flex;
        flex-direction: column;
    }
    
    .midashi2 {
        margin: auto 0 5.5px 25px;
    }
    
    #adsys {
        display: flex;
        flex-direction: column;
        margin: 5px;
    }

    #adsyspic {
        margin: 0 auto;
    }

    .serviceexp {
        margin: 0 auto;
        width: 70%;
    }

    .servicetitle {
        width: 85%;
        min-width: 230px;
        margin-left: 0;
    }

    .explanationtitle1 {
        margin: 1vh 0 1vw 5vw;
        width: 75%;
        margin-left: 7vw;
        text-indent: -15px;
    }
    
    .explanation1 {
        font-size: clamp(15px, 1.75vw, 20px);
        margin: 1vh 50px 1vw 8.5vw;
        width: 80%;
    }
    
    #explanation2 {
        font-size: clamp(12.5px, 1.25vw, 15px);
        margin: 5px 2vw 2vh 10vw;
        width: 78%;
        line-height: 1.5;
    }

    .linetitle1 {
        font-size: clamp(25px, 5vw, 30px);
        width: 50vw;
        max-width: 500px;
        min-width: 250px;
    }

    .consulting {
        width: 72.95%;
        margin: 10px auto;
    }

    .menucontainer {
        margin: 5px auto;
    }

}


/* -------------------------------------------------------会社概要ページ----------------------------------------------------- */
#aboutustitle {
    width: 95%;
    margin: 120px 0 0 50px;
    display: flex;
}

#aboutus {
    width: 650px;
    height: 150px;
}

#adxiliacircle2 {
    margin: -90px 0 0 auto;
    opacity: 0.25;
    width: 600px;
    height: auto;
}

#container {
    display: flex;
    margin-top: -150px;
    margin-bottom: 0;
    width: 100vw;
}

.overview {
    width: 80vw;
    background-color: rgb(245, 246, 251);
    border-radius: 20px 20px 0 0;
    padding: 25px;
    margin: 0 auto;
}

.outline {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.outline th {
    width: 7vmax;
    min-width: 60px;
    font-size: clamp(15px, 1.5vw, 30px);
    font-weight: 550;
    padding: 2px;
    border-bottom: solid 1px #778ca3;
    color: #778ca3;
    text-align: center;
}

.outline td {
    width: 30vw;
    font-size: clamp(12.5px, 1.25vw, 30px);
    color: #5f5f5f;
    font-weight: 520;
    padding: 15px 5px;
    border-bottom: solid 1px #778ca3;
}

#map {
    width: 83vw;
    height: 500px;
    margin: 0 auto;
    background-color: rgb(245, 246, 251);
    text-align: center;
}

#map iframe {
    width: 75%;
    height: 500px;
    border-radius: 10px;
}

#another_container {
    display: flex;
    margin-top: 0;
    margin-bottom: 100px;
    width: 100vw;
}

.historyview {
    width: 80vw;
    background-color: rgb(245, 246, 251);
    border-radius: 20px;
    padding: 25px;
    margin: 0 auto;
}

.history {
    width: 80vw;
    background-color: rgb(245, 246, 251);
    padding: 25px;
    margin: 0 auto 1vh auto;
}

.history th {
    width: 7vmax;
    min-width: 60px;
    vertical-align: middle;
    border-top: solid 1px #778ca3;
    padding: 15px auto;
}

.history td {
    border-top: solid 1px #778ca3;
    padding: 15px 0;
    line-height: 1.5;
}

#history1 {
    width: 7vmax;
    min-width: 60px;
    vertical-align: middle;
    border-top: solid 1px #778ca3;
    padding: 15px auto;
    color: #5f5f5f;
    font-size: clamp(12.5px, 1.25vw, 30px);
}

.historydetail {
    margin-left: 0px;
	text-indent: -7px;
}

#historicaldate {
    width: 5vw;
    min-width: 75px;
    vertical-align: top;
}

.histories {
    width: 30vw;
    text-align-last : left;
}

@media screen and (max-width: 1339px) {
	/* 1339px以下に適用されるCSS（タブレット用） */
    #adxiliacircle2 {
        width: 500px;
    } 
}

@media screen and (max-width: 1239px) {
	/* 1239px以下に適用されるCSS（タブレット用） */
    #adxiliacircle2 {
        margin: -90px auto 0 -5vw;

    }
}

@media screen and (max-width: 1199px) {
	/* 1199px以下に適用されるCSS（タブレット用） */
    #adxiliacircle2 {
        margin: -90px auto 0 -15vw;
    }
}

@media screen and (max-width: 1080px) {
	/* 1080px以下に適用されるCSS（タブレット用） */
    #adxiliacircle2 {
        margin: -85px auto 0 -20vw;
    }
}

@media screen and (max-width: 1030px) {
	/* 1030px以下に適用されるCSS（タブレット用） */
    #adxiliacircle2 {
        display: none;
    }

    #container {
        margin-top: 75px;
    }
}


@media screen and (max-width: 800px) {
	/* 800px以下に適用されるCSS（スマホ用） */
    #aboutustitle {
        width: 7vw;
        margin-left: 15px;
    }
    
    #aboutus {
        width: 500px;
        height: auto;
    }

    #map {
        height: 300px;
    }
    
    #map iframe {
        height: 300px;
    }   
}

@media screen and (max-width: 525px) {
    /* 500px以下に適用されるCSS（スマホ用） */
    #aboutus {
        width: 350px;
        height: auto;
    }
}

@media screen and (max-width: 367px) {
    /* 367px以下に適用されるCSS（スマホ用） */
    #aboutus {
        width: 300px;
        height: auto;
    }
}

/* -----------------------------------------------------お問い合わせページ-------------------------------------------------- */
#adxiliacircle3 {
    margin: -90px 0 0 auto;
    opacity: 0.175;
    width: 600px;
    height: auto;
    z-index: 0;
}

#adxiliacircle4 {
    margin: -90px 0 0 auto;
    opacity: 0.175;
    width: 600px;
    height: auto;
    z-index: 0;
}

#contacttitle {
    width: 95%;
    margin: 120px 0 0 50px;
    display: flex;
}

#confirmtitle {
    width: 95%;
    margin: 120px 0 0 50px;
    display: flex;
}

#contact {
    width: 720px;
    height: 180px;
}

#confirmation {
    width: 850px;
    height: 180px;
}

.contactexplain1 {
    margin: -125px 10px 0 125px;
    font-size: clamp(13.5px, 2vw, 20px);
    font-weight: 550;
    color: #3d3e3f;
    z-index: 80;
}

#underline1 {
    border-bottom: 1px solid #011378;
    width: 75%;
    margin: 27.5px 0 50px 120px; 
}

#container2 {
    margin: 55px auto;
    display: flex;
    z-index: -100;
}

#container3 {
    margin: 55px auto;
    display: flex;
    z-index: -100;
}

#inputform {
    width: 80%;
    margin: 0 auto;
}

#confirmform {
    width: 75%;
    margin: 0 auto;
}

.inputwrap {
    display: flex;
    width: 100%;
    margin-top: 10px;
    padding: 5px 10px;
    font-weight: bolder;
    color: #000000;
}

#confirm {
    width: 75%;
    border-collapse: collapse; /* セルの線を重ねる */
}

.confirmwrap {
    display: flex;
    width: 100%;
    font-weight: bolder;
    color: #000000;
}

.inputclass { /* テキストボックスの装飾 */
    width: 50vw;
    min-width: 300px;
    height: 33px;
    margin: 10px;
    border-radius: 5px;
    padding-left: 10px;
    outline: none;
}

.inputclass2 {
    width: 25vw;
    min-width: 150px;
    height: 33px;
    margin: 10px;
    border-radius: 5px;
    padding-left: 10px;
    border: #ffffff 0.2;
}

.reqarea {
    min-width: 55px;
}

.require {
    width: 30px;
    height: auto;
    padding: 2.5px;
    margin: auto 0;
    font-size: clamp(12px, 1.5vw, 15px);
    background-color: rgb(255, 0, 51);
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 5px;
}

.unrequire {
    width: 60px;
    margin: auto 0;
    font-size: clamp(12px, 1.5vw, 15px);
    background-color: rgb(245, 246, 251);
    color: rgb(59, 59, 59);
    text-align: center;
    border-radius: 5px;
}

.control {
    margin-right: 8px;
}

.input-a {
    width: 100%;
    display: flex;
    font-size: clamp(12px, 1.5vw, 15px);
    margin-top: 10px;
}

.confirm-a {
    width: 100%;
    display: flex;
    font-size: clamp(12px, 2vw, 20px);
    margin: 0;
}

.input-aa {
    width: 100%;
    display: flex;
    font-size: clamp(12px, 1.5vw, 15px);
    margin-top: 10px;
}

.confirm-aa {
    width: 100%;
    display: flex;
    font-size: clamp(12px, 2vw, 20px);
    margin: 0;
}

.input-b {
    display: flex;
    flex-direction: column;
    font-size: clamp(12px, 1.75vw, 15px);
}

.confirm-b {
    width: 100%;
    display: flex;
    font-size: clamp(12px, 2vw, 20px);
    margin: 0;
}

#reason {
    font-size: 15px;
    height: 33px;
    margin-left: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    padding-left: 5px;
    outline: solid 1px black;
}

.input-c {
    margin-top: 10px;
    margin-left: 8px;
    padding: 10px;
    width: 95%;
    min-width: 300px;
    font-size: clamp(12px, 1.75vw, 15px);
    border-radius: 5px;
    outline: solid 1px black;
}

#input label {
    font-size: 17.5px;
    margin-right: 20px;
}

#confirm th {
    width: 30%;
    height: auto;
    margin: 0 0 0 5px;
    padding: 10px;
    border: solid 1px;
    background-color: #dadada;
    color: #000000;
}

#confirm td {
    width: 70%;
    height: auto;
    padding: 10px;
    font-size: clamp(12px, 1.75vw, 15px);
    border: solid 1px;
    background-color: #ffffff;
}

#confirm label {
    font-size: clamp(12.5px, 2vw, 17.5px);
    margin: auto;
}

.namegroup {
    display: flex;
    width: 250px;
}

.namegroup label {
    width: 200px;
    margin: auto 10px;
}

.namegroup div {
    width: 200px;
    margin: auto 10px;
}

.namegroup2 {
    display: flex;
    width: auto;
}

.namegroup2 div {
    margin: auto 10px;
}

.consentarea {
    margin: 50px 10px;
	width: 100%;
}

.consent_request {
    width: 100%;
    margin: 5px auto;
    padding: 5px auto;
    font-size: clamp(15px, 2vw, 17.5px);
    font-weight: 500;
    color: #4a4a4a;
    text-align: center;
}

.consent_request2 {
    width: auto;
    margin: 5px auto 5px 10px;
    padding: 5px auto;
    font-size: clamp(12px, 1.5vw, 17.5px);
    font-weight: 500;
    color: #4a4a4a;
}

.consentminiarea {
    width: 100%;
    display: flex;
    margin: 25px 0;
    /* text-align: center; */
}

.consentcheck {
    width: 20px;
    margin: 5px 5px 5px auto;
    transform: scale(1.5);
    cursor: pointer;
}

.sendarea {
    margin: 75px 0;
	width: 100%;
    text-align: center;
}

.sendarea button {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    width: 30vw;
    height: 7vh;
    border-radius: 100px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-size: clamp(12px, 2.25vw, 25px);
    font-weight: 600;
    background: #eeeeee;
}

.sendarea button:hover {
    background: #0019a9;
    color: #ffffff;
    border-radius: 100px;
    cursor: pointer;
}

.sendarea button:before, .sendarea button:after {
    box-sizing: inherit;
    content: "";
    position: absolute;
    border: 2px solid transparent;
    width: 0;
    height: 0;
    border-radius: 100px;
}

.sendarea button:before {
    top: 0;
    left: 0;
}

.sendarea button:after {
    bottom: 0;
    right: 0;
}

.sendarea button:hover:before, .sendarea button:hover:after {
    width: 100%;
    height: 100%;
}

.sendarea button:hover:before {
    border-top-color: #6bb6ff;
    border-right-color: #6bb6ff;
    transition: width 0.1s ease-out, height 0.15s ease-out 0.25s;
    border-radius: 100px;
}

.sendarea button:hover:after {
    border-bottom-color: #6bb6ff;
    border-left-color: #6bb6ff;
    transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
    border-radius: 100px;
}

#sendre {
    height: 100vh;
}

#sendresult {
    margin: 35vh 20vw 0 20vw;
    font-size: clamp(15px, 2.25vw, 25px);
}

#totop {
    margin: 55vh 20vw;
    font-size: clamp(15px, 2.25vw, 25px);
}

@media screen and (max-width: 1482px) {
	/* 1482px以下に適用されるCSS（タブレット用） */
    #adxiliacircle4 {
        margin-left: -150px;
    }
}

@media screen and (max-width: 1339px) {
	/* 1339px以下に適用されるCSS（タブレット用） */
    #adxiliacircle3 {
        width: 500px;
    }

    #adxiliacircle4 {
        width: 500px;
    } 
}

@media screen and (max-width: 1239px) {
	/* 1239px以下に適用されるCSS（タブレット用） */
    #adxiliacircle3 {
        margin: -90px auto 0 -5vw;
    }

    #adxiliacircle4 {
        margin: -90px auto 0 -15vw;
    }
}

@media screen and (max-width: 1205px) {
	/* 1205px以下に適用されるCSS（タブレット用） */
    #confirmation {
        width: 750px;
        height: 150px;
    }
}

@media screen and (max-width: 1199px) {
	/* 1199px以下に適用されるCSS（タブレット用） */
    #adxiliacircle3 {
        margin: -90px auto 0 -15vw;
    }

    #underline1 {
        width: 85%;
        margin: 27.5px 0 50px 150px; 
    }

    .contactexplain1 {
        margin: -125px 10px 0 125px;
    }

    #underline1 {
        width: 80%;
        margin: 17.5px 0 50px 120px; 
    }

}

@media screen and (max-width: 1080px) {
	/* 1080px以下に適用されるCSS（タブレット用） */
    #adxiliacircle3 {
        margin: -85px auto 0 -20vw;
    }

    #underline1 {
        width: 85%;
    }

    #confirmation {
        width: 550px;
        height: 120px;
    }


}

@media screen and (max-width: 1030px) {
	/* 1030px以下に適用されるCSS（タブレット用） */
    #adxiliacircle3 {
        display: none;
    }

    #adxiliacircle4 {
        display: none;
    }

    .contactexplain1 {
        margin: 50px 10px 0 75px;
    }

    #underline1 {
        width: 90%;
        margin-left: 70px;
    }
    
    .consent_request2 {
        font-size: 12px;
    }

}

@media screen and (max-width: 800px) {
	/* 800px以下に適用されるCSS（スマホ用） */
    #contacttitle {
        margin-left: 15px;
        width: 7vw;
    }

    #cofirmtitle {
        margin-left: 15px;
        width: 7vw;
    }
    
    #contact {
        width: 500px;
        height: auto;
    }

    #confirmation {
        width: 450px;
        height: auto;
    }

    .contactexplain1 {
        width: 90%;
        margin: 25px 10px 0 25px;
    }
    
    #underline1 {
        width: 90%;
        margin: 12.5px 0 50px 20px; 
    }

    .input-aa {
        display: flex;
        flex-direction: column;
    }

    .inputclass { /* テキストボックスの装飾 */
        min-width: 250px;
    }

    #reason {
        font-size: 12px;
        width: 250px;
    }

    #confirmform {
        width: 100%;
    }

    #confirm {
        width: 95%;
        margin-left: 5px;
    }

    #confirm th {
        width: 30%;
    }
    
    #confirm td {
        width: 70%;
    }

}

@media screen and (max-width: 678px) {
    /* 678px以下に適用されるCSS（スマホ用） */
    .consent_request {
        text-align: left;
    }
}

@media screen and (max-width: 525px) {
    /* 500px以下に適用されるCSS（スマホ用） */
    #contact {
        width: 350px;
        height: auto;
    }

    #confirmation {
        width: 300px;
        height: auto;
    }
}

@media screen and (max-width: 367px) {
    /* 367px以下に適用されるCSS（スマホ用） */
    #contact {
        width: 300px;
        height: auto;
    }
}


/* -----------------------------------------------------プライバシーポリシー-------------------------------------------------- */

#privacypolicytitle {
    display: flex;
    margin: 100px 0 0 75px;
}

#privacypolicy {
    width: 850px;
    height: 150px;
}

.privacypolicy {
    width: 80%;
    margin: -125px 10% 25px 15%;
}

#policycomment {
    font-size: 125%;
    font-weight: 550;
    color: #1b1b1b;
    margin: 5px 0 50px 5px;
}

.policyhead {
    font-size: clamp(20px, 115%, 35px);
    font-weight: 550;
    color: #000000;
    margin: 5px 0 20px 15px;
    width: 100%;
}

.policywrap {
    list-style:  none;          /* デフォルトのアイコンを消す */
    counter-reset: li_count;    /* カウンタをセット */
    margin-left: 25px;
}

.policyexplain {
    font-size: 100%;
    font-weight: 550;
    color: #5e5e5e;
    margin: 5px 0 2.5px 55px;
    width: 82.5%;
    line-height: 2;
}

.policyexplain_head {
    font-size: 100%;
    font-weight: 550;
    color: #5e5e5e;
    margin: 5px 0 2.5px 40px;
    width: 85%;
    line-height: 2;
}

.policyexplain2 {
    font-size: 95%;
    font-weight: 550;
    color: #5e5e5e;
    margin: 5px 0 2.5px 55px;
    width: 77.5%;
    line-height: 2;
    margin-left: 100px;
	text-indent: -2.25em;
}

.policyexplain2::before {
    counter-increment: li_count;  /* カウンタの値を計算していく */
    content: "("counter(li_count)")"; /* 数字出力 */
}

.enactment-revision_area {
    display: flex;
    border-top: 1px solid #000000;
    width: 70%;
    margin: 125px 0 5px 15%;
    /* background-color: #2c4cff; */
}

.enactment-revision_wrap {
    margin: 25px;
}

.enactment-revision {
    font-size: clamp(15px, 110%, 22.5px);
    font-weight: 550;
    color: #5e5e5e;
    margin: 5px 0 15px 5px;
}

.enactment-revision_date {
    font-size: clamp(12px, 100%, 20px);
    font-weight: 400;
    color: #5e5e5e;
    margin: 5px 0 15px 10px;
}

#registarea {
    margin-right: 15vw;
}

.registration {
    width: 100%;
    font-size: clamp(12px, 110%, 22.5px);
    font-weight: 550;
    color: #5e5e5e;
    margin: 5px 20px 50px auto;
    text-align: right;
}

@media screen and (max-width: 1080px) {
	/* 1080px以下に適用されるCSS（タブレット用） */
    #privacypolicytitle {
        margin: 200px 0 0 50px;
    }

}

@media screen and (max-width: 1030px) {
	/* 1030px以下に適用されるCSS（タブレット用） */
    .privacypolicy {
        margin: 100px 10% 25px 15%;
    }

}

@media screen and (max-width: 800px) {
	/* 800px以下に適用されるCSS（スマホ用） */
    #privacypolicy {
        width: 175vw;
        min-width: 320px;
        height: auto;
        margin-left: 0;
    }
    
    .privacypolicy {
        width: 80%;
        margin: 80px auto 25px auto;
    }

    .policyhead {
        margin-left: 20px;
        text-indent: -25px;
    }

    .policyexplain {
        margin: 5px 0 2.5px 35px;
        width: 87.5%;
    }

    .policyexplain_head {
        margin-left: 30px;
        text-indent: -35px;
    }

    .policyexplain2 {
        margin: 5px 0 2.5px 65px;
    }

    .enactment-revision_area {
        width: 80%;
        margin: 125px auto 5px auto;
    }

    .enactment-revision_wrap {
        margin: 15px 15px 15px 2px;
    }
    
}

/* ---------------------------------------------------　特定商取引法に基づく表記　--------------------------------------------------------- */
#sctlextitle {
    width: 95%;
    margin: 120px 0 0 50px;
    display: flex;
}

#sctlex {
    width: 777px;
    height: 150px;
}

.notationarea {
    width: 65vw;
    background-color: rgb(245, 246, 251);
    border-radius: 20px;
    padding: 25px;
    margin: 0 auto;
    margin-bottom: 5vh;
}

.notation {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
}

.notation th {
    width: 25%;
    background-color: #777777;
    color: #ffffff;
    font-size: clamp(12px, 95%, 22.5px);
    font-weight: 550;
    padding: 10px;
    border-left: 1px solid #555555;
    border-right: 1px solid #555555;
    border-top: 1px solid #555555;
    border-bottom: 1px solid #555555;
}

.notation td {
    background-color: #ffffff;
    color: #727272;
    font-size: clamp(12px, 100%, 22.5px);
    font-weight: 550;
    padding: 25px 15px;
    border-left: 1px solid #555555;
    border-right: 1px solid #555555;
    border-top: 1px solid #555555;
    border-bottom: 1px solid #555555;
}

#mailaddress {
    padding-left: -50px;
}

.notationstitle {
    width: 55%;
    border-bottom: 1px solid #555555;
    margin: 10px 5px;
    font-size: clamp(15px, 120%, 25px);
    padding: 5px 10px;
}


@media screen and (max-width: 1427px) {
    /* 1427px以下に適用されるCSS（タブレット用） */
    #sctlex {
        width: 700px;
        height: 125px;
    }

}

@media screen and (max-width: 1220px) {
	/* 1220px以下に適用されるCSS（スマホ用） */
    .notationarea {
        width: 70vw;
    }

}

@media screen and (max-width: 1133px) {
	/* 1133px以下に適用されるCSS（スマホ用） */
    .notationarea {
        width: 80vw;
    }

    .notation th {
        width: 30%;
        font-size: clamp(12.5px, 85%, 25px);
    }

    .notation td {
        font-size: clamp(12.5px, 85%, 22.5px);
    }

}


@media screen and (max-width: 800px) {
	/* 800px以下に適用されるCSS（スマホ用） */
    #sctlextitle {
        width: 7vw;
        margin-left: 15px;
    }
    
    #sctlex {
        width: 500px;
        height: auto;
    }

    .notationarea {
        width: 90vw;
    }

    .notationstitle {
        width: 195px;
    }

}

@media screen and (max-width: 665px) {
    /* 665px以下に適用されるCSS（スマホ用） */
    .notationarea {
        width: 95vw;
    }

    .notation th {
        width: 35%;
        min-width: 65px;
        font-size: clamp(12.5px, 85%, 25px);
    }

}

@media screen and (max-width: 525px) {
    /* 525px以下に適用されるCSS（スマホ用） */
    #sctlex {
        width: 350px;
        height: auto;
    }

}

@media screen and (max-width: 367px) {
    /* 367px以下に適用されるCSS（スマホ用） */
    #sctlex {
        width: 300px;
        height: auto;
    }

}




/* -----------------------------------------------------------　フッター　--------------------------------------------------------- */
footer {
    position: sticky;
    top: 100vh;
    width: 100%;
    background-color: #011378; /* フッターの背景を青に */   
}

.footerarea1 {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    background-color: #354a95; /* フッターの背景を青に */   
}

.footerarea2 {
    display: flex;
    width: 100%;
    height: 50px;
}

.copyright {
    width: 100%;
    color: #ffffff;
    font-size: clamp(7px, 1.5vw, 15px);
    margin: auto 0;
    padding: 15.5px 0 15.5px 0;
    vertical-align: center;
    text-align: center;
}

.to_policy {
    width: auto;
    text-align: center;
    margin: 1vh 5px 1vh 0;
}

.to_policy:hover {
    cursor: pointer;
}

.to_policy a {
    color:#ffffff;
    font-size: clamp(7px, 1.5vw, 15px);
    font-weight: bolder;
    text-decoration: none;
    vertical-align: center;
    text-align: center;
}

.sep {
    margin: auto 5px;
    width: 10px;
}

.separator {
    color:#ffffff;
    font-size: clamp(7px, 2vw, 15px);
    font-weight: 600;
    text-align: center;
}

.to_sctlex {
    width: auto;
    text-align: center;
    margin: 1vh 1.5vw 1vh 1vw;
}

.to_sctlex:hover {
    cursor: pointer;
}

.to_sctlex a {
    color:#ffffff;
    font-size: clamp(7px, 1.5vw, 15px);
    font-weight: bolder;
    text-decoration: none;
    vertical-align: center;
    text-align: center;
}

