@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Noto Sans JP", sans-serif;
    color: #282828;
    line-height: 1.5;
    margin: 0;
    background-color: #e8f0ff;
}
a {
    font-family: serif;
    font-weight: 500;
    text-decoration: none;
}
img {
    object-fit: fill;
    object-position: center center;
    width: 100%;
    height: auto;
    object-fit: contain;  /* 必要なら */
}

.logo{
    object-fit: contain;
}

p{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;

    line-height: 1.5;
}

.midasi {

    font-weight: 600;
}

.text{
    font-weight: 500;

    font-size: 16px;
    line-height: 1.5;
}

a {
    text-decoration-color: none;  /*リンクの色を消す*/
  }

  html,body {
    overflow-x: hidden;
  }

/*追従*/

.form{
    position: fixed;
    z-index: 99999;
    bottom: 50px;
    right: 50px;
    width: 350px;
}

.inner {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/*画像の下の隙間を消すコード*/


div{
	text-align:center;
}
img{
	vertical-align:top;
}

.title_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}





/* banner
------------------------------- */

.banner {
    position: fixed;
    right: 5px;
    top: 100px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.banner img {
    width: 80px;
}


/* HEADER
------------------------------- */

.pc_header {
    display: block;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px 5px 0px;
    position: fixed;
    width: 100%;
    background-color: #ffffff;
}


.top_sp {
    display: none;
}


.top_icon {
    width: 100px;
    height: auto;
}

.pc_menu {
    display: flex;
    align-items: center;
    gap: 20px;
}


.pc_menu a {
    font-size: 16px;
    height: max-content;
    color: #1a4695;
    font-family: "Noto Sans JP", sans-serif;

    font-weight: 600;
}


.pc_menu .btn {
	position: relative;
	width: 230px;
	height: 80px;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	cursor: pointer;
}
.pc_menu .btn img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.pc_menu .btn:hover img:nth-of-type(2) {
	opacity: 0;
}




.pc_menu ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.pc_menu li {
  position: relative;
}

.pc_menu a {
  text-decoration: none;
  color: #1a4695;
}

.pc_menu .has-sub > a {
  pointer-events: none;
  cursor: default;
 
}

/* ▼ サブメニュー初期状態は非表示 */
.pc_menu .sub-menu {
  position: absolute;
  top: 30px; /* 親の下に出す位置調整 */
  left: 0;
  background: #00000050;
  padding: 10px 0;
  list-style: none;
  display: none;
  min-width: 180px;
  z-index: 10;
}

.pc_menu .sub-menu li a {
  padding: 8px 16px;
  display: block;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 400;
}

.pc_menu ul img {
    height: 30px;
}

/* ▼ hover時に表示 */
.pc_menu .has-sub:hover .sub-menu {
  display: block;
}

.pc_menu .has-sub:hover {
    border-bottom: solid 3px #1a4695;
}

/* ホバー時の見やすさ */
.pc_menu .sub-menu li a:hover {
  background: #f5f5f5;
}




    /* ハンバーガーボタンのデザイン */
    .drawer__button {
        position: relative;
        width: 30px;
        height: 30px;
        border: none;
        cursor: pointer;
        z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
    }
    /* ハンバーガーボタン内の線 */
    .drawer__button > span {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 30px;
        height: 3px;
        background-color: #1a4695;
        transform: translateX(-50%);
    }
    .drawer__button > span:first-child {
        transform: translate(-50%, calc(-50% - 0.5rem));
        transition: transform 0.3s ease;
    }
    .drawer__button > span:nth-child(2) {
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
    }
    .drawer__button > span:last-child {
        transform: translate(-50%, calc(-50% + 0.5rem));
        transition: transform 0.3s ease;
    }
    /* 展開時のデザイン */
    .drawer__button.active > span:first-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .drawer__button.active > span:nth-child(2) {
        opacity: 0;
    }
    .drawer__button.active > span:last-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    /* メニューのデザイン */
    .drawer__nav {
        position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }



    /* 募集要項ボタン */
    .top_sp .btn img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        display: block;
        -webkit-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }
    .top_sp .btn:hover img:nth-of-type(2) {
        opacity: 0;
    }






    .drawer__nav.active {
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }

    .drawer__nav__inner {
        position: relative;
        width: 30%;
        height: 100%;
        background-color: #e7e7e7;
        padding: 3rem 0rem;
        margin: 0 0 0 auto;
        overflow: scroll;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .drawer__nav.active .drawer__nav__inner {
        transform: translateX(0);
    }

    .drawer__nav__inner img {
        margin-bottom: 20px;
    }

    .drawer__nav__menu {
        display: flex;
        flex-direction: column;
        list-style: none;
        padding-left: 0;
        width: 100%;
        margin-bottom: 20px;
        gap: 0px !important;
    }

    .drawer__nav__link {
        display: block;
        color: black;
        text-decoration: none;
        padding: 1rem 1rem;
        border-bottom: solid 1px lightgray;
        text-align: center;
        font-family: "Noto Sans JP", sans-serif;
    }

    /* ハンバーガーメニュー展開時、背景を固定 */
    body.active {
        height: 100%;
        overflow: hidden;
    }




    .drawer__nav__inner .tel_a {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        background-color: rgb(239, 73, 43);
        padding: 15px 0;
        border-radius: 100px;
        color: #ffff;
    }

    .drawer__nav__inner .tel_a .no2 {
        font-size: 20px;
    }

    .drawer__nav__inner .tel_box {
        display: flex;
        align-items: center;
        padding-top: 5px;
        flex-direction: column;
        position: relative;
    }

    .drawer__nav__inner .tel_box .tel {
        font-size: 35px;
        padding: 0 10px 0 10px;
        line-height: 1em;
        margin-left: 25px;
    }

    .drawer__nav__inner .tel_box .tel_icon {
        position: absolute;
        top: 10px;
        left: 0px;
        width: 25px;
    }

    .drawer__nav__inner .yajirusi {
        position: absolute;
        top: 10px;
        left: 295px;
        width: 20px;
        height: auto;
    }

    .drawer__nav__inner .page-fotter {
        width: 100%;
        position: fixed;
        bottom: 0;
    }




/* top_ga------------------------------- */

/*

.top_ga {
    height: 640px;
    background-image: url(../images/20241004_1545.svg);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.top_ga .text_box {
    width: 1000px;
}

.top_ga .no1 {
    font-weight: 700;
    font-size: 45px;
    color: #FF0000;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
    padding: 0.2em;
    line-height: 2.2;
    background-color: #ffff;
}

.top_ga .no2 {
    font-weight: 700;
    font-size: 18px;
    color: #FF0000;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
    padding: 0.2em;
    line-height: 2.2;
    background-color: #ffff;
}

*/



/* area1------------------------------- */

.area1 {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
}

.area1 p {
    font-size: 20px;
}

.area1 .title_box {
    margin-top: 80px;
    margin-bottom: 30px;
}

.roma {
    font-weight: 400;
    color: #1a4695;
}


h2 {
    font-size: 50px;
    font-weight: 800;
    color: #1a4695;
    text-align: center;
}

h3 {
    font-size: 40px;
    font-weight: 700;
    color: #282828;
    margin-bottom: 30px;
    text-align: center;
}

.path {
    height: 5px;
    width: 100px;
    background-color: #787878;
    margin: 15px 0 10px 0;
}

.button_box {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-bottom: 80px;
}

.box1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box1 .img_box {
    display: flex;
    gap: 50px;
    margin-bottom: -20px;
    z-index: 1;
}

.box1 img {
    width: 200px;
}

.text_box {
    background-color: #ffffff;
    padding: 50px;
    width: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box1 .text_box img {
    width: 30px;
    height: 25px;
}

.box1 .text_box .li {
    display: flex;
    gap: 10px;
}

.area1 .box2 {
    background-color: #ffffff;
    border: solid 3px #787878;
    border-radius: 100px;
    padding: 20px 50px 10px;
    margin-bottom: 30px;
}
.box2 img {
    width: 150px;
}






/* area2------------------------------- */


.area2 {
    background-color: #1a4695;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}

.area2 .box1 {
    background-image: url(../images/20251109_1118.png);
    background-size: contain;
    background-position: center;
}

.area2 .box1 .u {
    margin-bottom: 20px;
}

.area2 .box1 .d {
    display: flex;
    gap: 20px;
}

.area2 .box1 p {
    
    width: 300px;
    text-align: center;
    padding: 10px;
    font-size: 60px;
    font-weight: 800;
    color: #ffff;
    border: solid 2px #ffffff;
}

.area2 .box2 {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.area2 .box2 .li {
    display: flex;
    gap: 20px;
}

.area2 .box2 .li img {
    width: 15%;
    height: auto;
}

.area2 .box2 .midasi {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}



/* area3------------------------------- */

.area3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}

.area3 .title_box img {
    width: 100px;
}

.area3 .box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.area3 .box p {
    background-color: #1a4695;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    width: 100%;
    border-radius: 100px;
    font-size: 25px;
}

.area3 .box img {
    margin-top: 30px;
}




/* cta ------------------------------- */

.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f3f3f3;
    margin-top: 50px;
    padding: 80px 0;
}

.cta .inner {
    border: solid 3px #1a4695;
    border-radius: 30px;
    background-color: #f3f3f3;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta h3 {
    color: #1a4695;
    margin-bottom: 0;
}

.cta .title_box {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.cta .title_box img {
    width: 30px;
}

.cta .button_box {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.cta .button_box a {
    width: 40%;
}

.cta p {
    text-align: center;
}



/* area4 ------------------------------- */

.area4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 50px 0;
}

.area4 img {
    width: 70%;
}










/* リセットCSS */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* 外枠 */
article {
  margin: 20px auto;
  padding: 20px;
  width: 300px;
  background-color: whitesmoke;
}

/* アコーディオン　見出し部分 */
details > summary {
  cursor: pointer;
  padding: 20px 20px;
  background-color: #ffff;
  border: 3px solid #000747;
  border-radius: 30px;
  display: flex;
  align-items: center;
}

/* アコーディオン　見出し部分　オープン時 */
details[open] > summary {
  background-color: #ffff;
  border-bottom: none;
  border-radius: 30px 30px 0 0;
}

/* アコーディオン　内容部分 */
details > div {
  padding: 20px;
  background-color: white;
}

/* アコーディオン　内容部分　オープン時 */
details[open] > div {
  border: 3px solid #000747;
  border-top-style: none;
  border-radius: 0 0 30px 30px;
  background-color: #ececec;
  display: flex;
  align-items: center;
}

/* アコーディオン　見出し部分　プラス・マイナスのマーク */
details {
  position: relative;
}
details > summary::after {
  position: absolute;
  content: '＋';
  top: 42px;
  right: 30px;
}
details[open] > summary::after {
  content: '−';
  top: 42px;
  right: 30px;
}

/* アコーディオン　Safariの▲マークを消す */
details > summary::-webkit-details-marker {
  display: none;
}

/* アコーディオン間のスペース */
details + details {
  margin-top: 10px;
  width: 100%;
}









/* footer------------------------------------------------------------------------------------------------ */

.footer {
    background-color: #666666;
    padding: 10px 0;
}

.footer span {
    text-align: center;
    color: #ffff;
    font-size: 14px;
    font-weight: 400;
}













/*モバイル版
--------------------------------------------------------------------------モバイル版*/
@media (max-width: 600px) {


    .inner {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    p {
        line-height: 1.2em;
        font-size: 14px;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .text {
        font-size: 14px;
    }
    


    /* ヘッダー------------------------------- */

    .pc_header {
        display: none;
    }



    .pc_top  {
        height: 280px;
        background-position: center;
    }

    .top_icon {
        width: 100px;
    }


    .top_sp{
        width: 100%;
        display: block;
        padding: 10px 15px 10px 10px;
        position: fixed;
        z-index: 100;
        background-color: #ffffff;

    }

  .headerColorScroll {
        background-color: rgba(52, 52, 52, 0.562);
    }

    .top_sp header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .top_sp h1 {
        margin-top: 520px;
        margin-left: 5%;
        font-size: 32px;
        line-height: 1.5em;
    }



    .top_sp .logo_box img{
        width: 70px;
        height: auto;
    }

    .top_sp .btn {
        position: relative;
        width: 300px;
        height: 100px;
    }

    .banner {
        display: none !important;
    }






    /* ハンバーガーボタンのデザイン */
    .drawer__button {
        position: relative;
        width: 30px;
        height: 30px;
        border: none;
        cursor: pointer;
        z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
    }
    /* ハンバーガーボタン内の線 */
    .drawer__button > span {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 30px;
        height: 3px;
        transform: translateX(-50%);
    }
    .drawer__button > span:first-child {
        transform: translate(-50%, calc(-50% - 0.5rem));
        transition: transform 0.3s ease;
    }
    .drawer__button > span:nth-child(2) {
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
    }
    .drawer__button > span:last-child {
        transform: translate(-50%, calc(-50% + 0.5rem));
        transition: transform 0.3s ease;
    }
    /* 展開時のデザイン */
    .drawer__button.active > span:first-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .drawer__button.active > span:nth-child(2) {
        opacity: 0;
    }
    .drawer__button.active > span:last-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    /* メニューのデザイン */
    .drawer__nav {
        position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }



    /* 募集要項ボタン */
    .top_sp .btn img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        display: block;
        -webkit-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }
    .top_sp .btn:hover img:nth-of-type(2) {
        opacity: 0;
    }






    .drawer__nav.active {
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }

    .drawer__nav__inner {
        position: relative;
        width: 100%;
        height: 100%;
        background-color: #e7e7e7;
        padding: 3rem 0rem;
        margin: 0 0 0 auto;
        overflow: scroll;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .drawer__nav.active .drawer__nav__inner {
        transform: translateX(0);
    }

    .drawer__nav__inner img {
        margin-bottom: 20px;
    }

    .drawer__nav__menu {
        list-style: none;
        padding-left: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .drawer__nav__link {
        display: block;
        color: black;
        text-decoration: none;
        padding: 1rem 1rem;
        border-bottom: solid 1px lightgray;
        text-align: center;
        font-family: "Noto Sans JP", sans-serif;
    }

    /* ハンバーガーメニュー展開時、背景を固定 */
    body.active {
        height: 100%;
        overflow: hidden;
    }






    .drawer__nav__inner .tel_a .no2 {
        font-size: 20px;
    }

    .drawer__nav__inner .tel_box {
        display: flex;
        align-items: center;
        padding-top: 5px;
        flex-direction: column;
        position: relative;
    }

    .drawer__nav__inner .tel_box .tel {
        font-size: 35px;
        padding: 0 10px 0 10px;
        line-height: 1em;
        margin-left: 25px;
    }

    .drawer__nav__inner .tel_box .tel_icon {
        position: absolute;
        top: 10px;
        left: 0px;
        width: 25px;
    }

    .drawer__nav__inner .yajirusi {
        position: absolute;
        top: 10px;
        left: 295px;
        width: 20px;
        height: auto;
    }

    .drawer__nav__inner .page-fotter {
        width: 100%;
        position: fixed;
        bottom: 0;
    }



    h2 {
        font-size: 30px;
    }

    .area1 {
        margin-top: 70px;
    }

    .area1 .title_box {
        margin-top: 50px;
    }

    .button_box {
        flex-direction: column;
    }

    h3 {
        font-size: 30px;
    }

    .box1 .img_box {
        gap: 20px;
    }

    .box1 img {
        width: 100px;
    }

    .text_box {
        padding: 50px 20px;
    }

    .area1 .box2 { 
        padding: 20px 20px 10px;
        width: 100%;
    }


    .area1 .box2 h3 {
        font-size: 25px;
        margin-top: 10px;
    }

    
    .area2 .box1 p {
        width: 160px;
        font-size: 32px;
    }

    .area2 .box1 .d {
        gap: 10px;
    }

    .area2 .box1 .u {
        margin-bottom: 10px;
    }

    .area2 .box2 {
        padding: 20px;
    }

    .area2 .box2 .midasi {
        font-size: 20px;
    }

    .area2 .box2 .li img {
        width: 25%;
    }

    .area2 .box2 .li {
        align-items: flex-start;
        gap: 10px;
    }

    .area3 .box p {
        font-size: 20px;
    }



    .cta h3 {
        font-size: 20px;
    }

    .cta .title_box img {
        width: 20px;
    }

    .cta .button_box a {
        width: 100%;
    }

    .cta .button_box {
        display: flex;
        justify-content: center;
        margin: 30px 0;
        width: 90%;
    }

    .cta .inner {
        padding: 45px 0;
    }

    .area4 img {
        width: 90%;
    }

    


    
}
