@charset "UTF-8";
/* common
================================================ */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, a, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
	line-height:1.8;
}
html {
    font-size: 100%;
    word-break: break-all;
}
body {
    -webkit-text-size-adjust: 100%;
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS PGothic", "MS Pゴシック", sans-serif;
    /*background: linear-gradient(to bottom, #ccf9ff, #ffffff);*/
    font-weight: 400;
    min-height: 100vh;
    margin: 0;
	padding: 0;
    color: #1f1f1f;
}
article, aside, details, figcaption, figure, main, footer, header, menu, nav, section {
    display: block;
}
.wrapper {
  width: 1020px;
  margin: 0 auto;  /* 横方向の中央寄せ */
  padding: 0 1em;  /* 両端に20pxの余白 */
}

@media screen and (max-width: 768px) {
  .wrapper {
    width: 100%;
    padding: 0 1.2em;
  }
}

main {
  padding: 20px 0;  /* 上下に余白を追加 */
}
h1, h2, h3, h4, h5, h6 {
    word-break: break-word;
    line-break: strict;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
ul:not([class]), ol:not([class]) {
    padding-left: 1.25em;
}
ul[class], ol[class] {
    list-style: none;
}
_:-ms-lang(x)::-ms-backdrop, ol:not([class]) {
    padding-left: 1.6em;
}
span {
    font-weight: inherit;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
a {
    color: inherit;
}
@media all and (min-width: 768px) {
    a:hover {
        text-decoration: none;
    }
}
a[class] {
    text-decoration: none;
}
ins {
    background-color: #ff9;
    text-decoration: none;
}
mark {
    background-color: #ff9;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
address {
    font-style: normal;
}
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid rgba(51, 51, 51, 0.5);
    margin: 1em 0;
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}


h2.titlekinds{
    font-size: 1.3em;
    text-align: left;
	padding:2em 0 1em 0;
	color:#1f3c68;
}

.title {
  margin: 0 0 40px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  color: #1f3c68;
  text-align: center;
}

/*角丸ブルーbutton*/
.corners_blue_btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6em 1.2em;
  background-color: #037fb9;
  color: #fff;
  border-radius: 24px; /* 角丸 */
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin: 1.5em 0 0 0;
}

.corners_blue_btn:hover {
  background-color: #026ca1; /* ホバー時に少し暗く */
}

/* 右端に▶を表示 */
.corners_blue_btn::after {
  content: '▶';
  display: inline-block;
  margin-left: 0.6em;
  font-size: 0.7em;
  transition: margin-left 0.3s ease;
}

/* ホバー時に▶を少し右に動かす例 */
.corners_blue_btn:hover::after {
  margin-left: 1em;
}



/*角丸白button*/
.corners_white_btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6em 1.2em;
  background-color: #fff;
  color: #037fb9;
  border-radius: 24px; /* 角丸 */
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin: 1.5em 0 0 0;
}

.corners_white_btn:hover {
  background-color: #026ca1; /* ホバー時に少し暗く */
}

/* 右端に▶を表示 */
.corners_white_btn::after {
  content: '▶';
  display: inline-block;
  margin-left: 0.6em;
  font-size: 0.7em;
  transition: margin-left 0.3s ease;
}

/* ホバー時に▶を少し右に動かす例 */
.corners_white_btn:hover::after {
  margin-left: 1em;
}


.button_centersp{
}

@media screen and (max-width: 750px) {
.button_centersp{
text-align:center;
padding:1em 0;
}
}

/*header*/
.c-header {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    width: 100%;
}

@media screen and (max-width: 750px) {
.c-header {
    padding: 1rem;
}
}


.c-header__logo {
    color: #000;
max-width: 300px;
    padding: 0 0 0 1.5em;
    text-decoration: none;
}

@media screen and (max-width: 750px) {
.c-header__logo {
  max-width: 180px;
      padding: 0 ;
}

}

.c-header__list {
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
}
.c-header__list-item {
    list-style: none;
    text-decoration: none;
	font-size: 1.2em;
    padding: 0 1.5em 0 0;
}
.c-header__list-link {
    color:#1f1f1f;
    display: block;
    margin-right: 20px;
    text-decoration: none;
    padding: 10px 0px;
}

@media screen and (max-width: 750px) {
.c-header__list-link {
	color: #037fb9;
	}
	}
	
	
.c-header__list-link:hover {
    filter: opacity(0.6);
    
}
.c-hamburger-menu {
    position: relative;
}
@media screen and (max-width: 750px) {
    .c-hamburger-menu__list {
	color: #037fb9;
        background-color: #ffffff;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        left: 0;
        padding: 1.5rem;
        position: absolute;
        transform: translateX(-100%);
        transition: 0.3s;
        top: 100%;
        width: 100%;
    }
    #hamburger:checked~.c-hamburger-menu__list {
        transform: translateX(0%);
        transition: 0.3s;
		z-index: 1;
    }
	  .c-header {
  padding: 1rem ;
}
  .c-header__list li {
   display: block;
   height: 100%;
   line-height: 40px;
   width: 100%;
   position: relative;
   border-bottom: 1px solid #037fb9;
}

  .c-header__list li a{
        padding: 1em;
        font-weight: bold;
}

  .c-header__list li::after {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-top: 2px solid #037fb9;
        border-right: 2px solid #037fb9;
        -webkit-transform: rotate(45deg) translateY(-50%);
        transform: rotate(45deg) translateY(-50%);
        right: 25px;
        top: 50%;
        transition: 0.2s;
}
}

/* 下線装飾（PC時のみ） */
.c-header__list-item.current .c-header__list-link {
  border-bottom: 2px solid #037fb9; /* 色はお好みで */
  padding-bottom: 4px;
}

/* スマホでは下線を非表示 */
@media screen and (max-width: 768px) {
  .c-header__list-item.current .c-header__list-link {
    border-bottom: none;
    padding-bottom: 1em;
  }
}


.c-hamburger-menu__input {
    display: none;
}
.c-hamburger-menu__bg {
    background-color: #000;
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    opacity: 0.4;
    
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
#hamburger:checked~.c-hamburger-menu__bg {
    display: block;
}
.c-hamburger-menu__button {
    display: none;
}
@media screen and (max-width: 750px) {
    .c-hamburger-menu__button {
        align-items: center;
        appearance: none;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 9px;
        height: 32px;
        justify-content: center;
        width: 32px;
        
    }
}
.c-hamburger-menu__button-mark {
    background-color: #000;
    
    display: block;
    height: 3px;
    
    transition: 0.3s;
    
    width: 37px;
    
}



@media screen and (max-width: 750px) {
    #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
        transform: translate(2px, 1px) rotate(45deg);
        
        transform-origin: 0%;
        
    }
    #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
        opacity: 0;
    }
    #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
        transform: translate(2px, 3px) rotate(-45deg);
        
        transform-origin: 0%;
        
    }
}




footer {
  display: flex;
  justify-content: space-between;
      padding: 5em 0 0 0;
}

footer .fotterlogo {
  width: 30%;
}



footer ul li:last-child::after {
  display: none;
}
footer ul li::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 30px;
  position: absolute;
  top: 0;
  right: -2px;
  background: #bdbdbd;
}
footer ul li {
  font-size: 1em;
  display: inline-block;
  padding-right: 10px;
  margin-right: 12px;
  position: relative;
  
}

footer ul li a {
text-decoration: none;
}

footer ul li a:hover {
  text-decoration: underline !important;
}


.copyright {
    text-align: right;
    font-size: 0.8em;
    padding: 0 0 3.5em 0;
}


@media screen and (max-width: 768px) {
footer {
display:block;
text-align:center;
     padding: 0;
}
footer .fotterlogo {
width: 250px;
        padding: 0 0 1.5em 0;
        margin: auto;
}
footer ul  {
        padding: 0 !important;

}

footer ul li {

  display:block;
          border-bottom: 1px solid #d9d9d9;
        padding: 0.5em;
}

footer ul li::after {
background: none;
  height: 25px;
}

footer .footermenu{
padding:0 0 2em 0;
}


.copyright {
  text-align: center;
  padding:1em 0 0 0;
    font-size: 0.6em;
	
}

}
#footer-decor {
  background-color: #79c055;
  height: 30px;
  position: relative;
  width: 100%;
}

/* 共通スタイル */
#footer-decor .icon {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 個別スタイル */
.icon-flower-left {
  background-image: url("../img/common/fotter-flower.png");
  top: -50px;
  left: 144px;
  width: 65px;
  height: 80px;
}
.icon-leaf-left {
  background-image: url("../img/common/fotter-leaf.png");
  top: -28px;
  left: 238px;
  width: 37px;
  height: 43px;
}
.icon-leaf-right {
  background-image: url("../img/common/fotter-leaf.png");
  top: -28px;
  right: 238px;
  width: 37px;
  height: 43px;
}
.icon-flower-right {
  background-image: url("../img/common/fotter-flower.png");
  top: -50px;
  right: 144px;
  width: 65px;
  height: 80px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .icon-flower-left {
    left: 0;
  }
  .icon-leaf-left {
    left: 70px;
  }
  .icon-leaf-right {
    right: 70px;
  }
  .icon-flower-right {
    right: 0;
  }
}



.page-links {
  display: flex;
  gap: 20px;
  padding: 0 0 2em 0;
}

.page-link {
  flex: 1;                 /* 基本は均等割り */
  text-align: center;

  background-color: #2589d0;
  color: #fff;
  padding: 16px 0;
  border-radius: 6px;
  text-decoration: none;
}

/* 1個のときだけ50%にする */
.page-links:has(.page-link:only-child) {
}

.page-links:has(.page-link:only-child) .page-link {
  flex: 0 0 50%;
  max-width: 50%;
}

/* ホバー（任意） */
.page-link:hover {
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .page-links {
    flex-direction: column;
  }
}


.c-head01 {
  width: 50%;              /* ページの半分 */
  background-color: #51647E; 
  color: #fff;             /* 白文字 */
 margin:5em 0;
  padding: 12px 20px;
  border-radius: 6px;
text-align: center;
  font-weight: 700;
}


.head-wrap {
  display: flex;
  align-items: center; /* 縦位置を揃える */
  gap: 16px;           /* 間の余白 */
}

.c-head01 {
  margin: 0;           /* ←デフォルト余白消すの重要 */
}

/* 固定エリア全体 */
.fixed-nav {
  position: fixed;
  right:6em;        /* 右端からの距離 */
  bottom: 24px;       /* 下端からの距離 */
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  gap: 12px;          /* キャラとTOPボタンの間隔 */
}

/* キャラクター画像 */
.fixed-character {
  width: 5em;        /* サイズ調整 */
}

.fixed-character img {
  display: block;
  width: 100%;
  height: auto;
}


.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #037Fb9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #037Fb9;
    border-right: 3px solid #037Fb9;
    transform: translateY(20%) rotate(-45deg);
}

@media (max-width: 768px) {
  .fixed-nav {
    right: 6em;
    bottom: 16px;
    gap: 8px;
  }

  .fixed-character {
    width: 55px;
  }

  .page-top {
    width: 48px;
    height: 48px;
    font-size: 12px;
  }
}
/*全ページのキャラクター配置

.characterposition {
  position: relative;
}

.page-character-challenge {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right:-5em;
  top:5em;
  
}

.page-character-company {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right:-5em;
  top:5em;
  
}

.page-character-news {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right:10em;
  top:2em;
  
}

.page-character-service {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right:10em;
  top:5.5em;
  
}
.page-character-recruit {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right:10em;
  top:1.5em;
  
}

.page-character-publicnotice {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right:5em;
  top:1.5em;
  
}
.page-character img {
  display: block;
  height: auto;
}
@media screen and (max-width: 768px) {
.page-character-challenge,.page-character-company,.page-character-news,.page-character-news,.page-character-service,.page-character-recruit,.page-character-publicnotice {
  display:none;
}
}*/


.note-mark {
  font-size: 0.9em;
}

.note-num {
  position: relative;
  top: -0.4em;
  font-size: 0.8em;
}