@charset "UTF-8";

/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box;outline:none;}ul[class],ol[class]{padding:0}body,h1,h2,h3,h4,p,ul[class],ol[class],figure,blockquote,dl,dd{margin:0}body{min-height:100vh;scroll-behavior:smooth;text-rendering:optimizeSpeed;line-height:1.5}ul[class],ol[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img{max-width:100%;display:block}article>*+*{margin-top:1em}input,button,textarea,select{font:inherit}img:not([alt]){filter:blur(10px)}@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

/* 基本色設定 */
:root {
  --base-color:     #ef454a;
  --main-color:     #ef454a;
  --accesnt-color:  #ef454a;
}
/*
 Color palette
 https://codepen.io/techntvz/full/QKGARV
 */
 .danger  { color: #ff4444; }
 .warning { color: #ffbb33; }
 .success { color: #00C851; }
 .info    { color: #33b5e5; }
 .danger-dark  { color: #CC0000; }
 .warning-dark { color: #FF8800; }
 .success-dark { color: #007E33; }
 .info-dark    { color: #0099CC; }
 .default   { color: #2BBBAD; }
 .primary   { color: #4285F4; }
 .secondary { color: #aa66cc; }
 .default-dark   { color: #00695c; }
 .primary-dark   { color: #0d47a1; }
 .secondary-dark { color: #9933CC; }

html {
  font-size: 10px;
}

/* Structure */
body, #wrapper {
  font-size: 1.6rem;
  color: #333;
  /* font-family: UtsukushiMincho; */
  /* font-family: "M PLUS Rounded 1c","Noto Sans JP","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
  /*"YakuHanJP",*/
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* div#wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
} */
div.content-inner {
  margin: 0 auto;
  padding: 0px 10px;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}
main {
  flex: 1;
}

/* Common */
a {
  color: #274a78; /* #ee7800 */
  text-decoration: none;
}

/* Common parts */
.flex-container {
  display: flex;
}
input, select, textarea {
  padding: 0.5em 1em;
  font-size: 16px;
  border: 1px solid #777;
  border-radius: 4px;
  /* transform: scale(0.9); *//*iPhone Safari対策*/
}
input.width_full {
  width: 100%;
}
textarea {
  width: 100%;
  height: 300px;
}
button {
  border: 1px solid #777;
  outline: none;
}
input::placeholder { color: #ccc; }
input:-ms-input-placeholder { color: #ccc; } /* IE */
input::-ms-input-placeholder { color: #ccc; } /* Edge */
select {
  display: inline-block;
  font-size: 16px;
  font-family: sans-serif;
  color: #444;
  line-height: 1.3;
  padding: 5px 25px 5px 5px;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
  border-radius: .5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
    linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 7px top 50%, 0 0;
  background-size: .65em auto, 100%;
}
select::-ms-expand {
  display: none;
}
select:hover {
  border-color: #888;
}
select:focus {
  border-color: #aaa;
  /* box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7); */
  /* box-shadow: 0 0 0 3px -moz-mac-focusring; */
  color: #222;
  outline: none;
}
select option {
  font-weight: normal;
}
button, .btn {
  padding: 7px 20px;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
}
.btn_primary {
  color: #fff;
  background: #207ab7;
  border: 1px solid #185d8c;
}
.btn_disable {
  color: #7d7d7d;
  background: #ddd;
  border: 1px solid #aaa;
  cursor: initial;
}
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-center { text-align: center; }
.icon_new::after {
  content: 'NEW';
  display: block;
  color: #fff;
  background-color: #f00;
  width: fit-content;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  padding: 2px 5px;
}


.hidden {
  display: none !important;
}
.required {
  position: relative;
}
.required::after {
  content: "必須";
  margin-left: 10px;
  padding: 2px 6px;
  color: #fff;
  background-color: #ef454a;
  font-size: 1rem;
  white-space: nowrap;
  position: relative;
  top: 0;
}

@media screen and (max-width:750px) {
  .pc_only {
    display: none;
  }
}
@media screen and (min-width:751px) {
  .sp_only {
    display: none;
  }
}

/* Header */
header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}
header a {
  text-decoration: none;
}
header img {
  display: inline-block;
  width: 100%;
  max-width: 180px;
}
header .content-inner {}
header .header-content {
  align-items: center;
}
header .logo {
  width: 180px;
  min-width: 180px;
  height: auto;
}
header nav {
  flex: 1;
}
header nav ul {
  padding: 0;
  list-style-type: none;
  /* display: flex; */
  /* flex-wrap: wrap; */
}
header nav ul > li {
  padding: 5px 10px;
  text-align: center;
  /* flex: 1; */
  white-space: nowrap;
}
header nav a {
  width: 100%;
  display: inline-block;
}
header .g_nav_pc > div {
  padding: 2.5rem;
}
header .g_nav_pc {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .g_nav_pc .g_nav {
  padding: 0 25px;
}
header .g_nav_pc .g_nav ul li {
  padding: 1rem 0;
  border-bottom: 5px solid transparent;
}
header .g_nav_pc .g_nav ul li:hover {
  border-bottom: 5px solid #bfa8a2;
  font-weight: 600;
}

@media screen and (max-width:750px) {
  header .g_nav_pc {
    display: none;
  }
  header img {
    padding: 15px;
  }
}

.btn_login {
  color: #fff;
  background: #ef454a;
  border: 1px solid #f14e4e;
}
.btn_regist {
  background: #fff;
  border: 1px solid #ef454a;
}
@media screen and (max-width: 750px) {
  header {
    /* padding-bottom: 10px; */
  }
  header .hmb_menu {
    padding-top: 10px;
  }
  header .header-content {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  /* header div.logo { order: 1; } */
  /* header nav.menu { order: 3; flex: 100%; } */
  /* header div.btn_area { order: 2; } */
}
@media screen and (min-width: 751px) {
  header .g_nav_pc .g_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .g_nav_pc .g_nav ul a {
    color: #59493f;
    font-size: 1.4rem;
    transform: scale(1, 1.25);
    -webkit-transform: scale(1, 1.25);
    -moz-transform: scale(1, 1.25);
    -ms-transform: scale(1, 1.25);
    -o-transform: scale(1, 1.25);
  }
}

/* Footer */
footer {
  background-color: #f5f5f5;
}
footer .content-inner {
  padding: 23px 0;
}
footer .ft_ttl {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
}
footer .ft_ttl img.logo {
  margin-right: 10px;
  max-width: 115px;
  display: inline-block;
}
footer .company_info {
  align-items: flex-end;
  justify-content: center;
}
footer .company_info > div {
  width: 50%;
}
footer .company_info .address,
footer .company_info .phone {
  font-size: 1rem;
  line-height: 1.6;
  padding: 20px 20px;
  letter-spacing: 2px;
  transform: scale(1, 1.25);
}
footer .company_info .address {
  padding-left: 0;
}
footer .company_info .phone {
  padding-right: 0;
}
footer .company_info .address > div {
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
footer .logo img {
  width: 100%;
  max-width: 115px;
  margin: 40px auto 0;
}
footer .footer-menu {
  font-size: 1.4rem;
  text-align: right;
}
footer .copyright {
  padding: 10px 0;
  color: #fff;
  background-color: #bfa8a2;
  font-size: 1rem;
  font-weight: 100;
  text-align: center;
  letter-spacing: 1px;
  display: block;
}
@media screen and (max-width: 400px) {
  footer .company_info {
    display: block;
  }
  footer .company_info .address,
  footer .company_info .phone {
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    text-align: center;
  }
}

/* Common */
h1 {
  line-height: 1.2;
}
h2 {
  font-size: 2.2rem;
  letter-spacing: 5px;
}
h2::after {
  content: "";
  width: 6em;
  height: 5px;
  margin: 0 auto;
  background: #bfa8a2;
  display: block;
  margin-top: 1.6rem;
}
section h2 {
  text-align: center;
}
h3 {
  padding: 1.2rem 0;
  font-size: 2rem;
}
.page-title {
  margin-bottom: 10px;
  font-size: 2.1rem;
}

.transform_scale {
  display: inline-block;
  transform: scale(1, 1.25);
  -webkit-transform: scale(1, 1.25);
}

.section {
  margin: 30px 0;
  padding: 70px 0;
}
.section .title {
  font-size: 2rem;
  font-weight: 700;
}
.link_area {
  margin: 20px 0;
}

.clr_tyokan { color: rgb(255, 93, 87); }
.clr_result { color: rgb(20, 201, 125); }
.clr_human  { color: rgb(0, 153, 255); }

/* グロナビ */
.g_nav {
  width: 100%;
  /* transition: all 0.5s; */
}
.hmb_menu .g_nav {
  position: fixed;
  top: 0;
  left: 100%;
  height: 100%;
  z-index: 80;
  background-color: rgba(254, 233, 228, .9);
}
.hmb_menu ul {
  padding: 55px 17px 0;
}
.hmb_menu ul li {
  border-bottom: solid 1px #919191;
  list-style: none;
  font-size: 1.8rem;
}
.hmb_menu ul li:last-child {
  border-bottom: none;
}
.hmb_menu ul li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #59493f;
  text-decoration: none;
  padding: 18px 15px 17px 8px;
  position: relative;
}
.hmb_menu ul li .g_nav_color {
  color: #616161;
}
.hmb_menu ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #919191;
  border-right: solid 2px #919191;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 23px;
}
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #59493f;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(254, 233, 228, .7);
}
#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #59493f;
}
#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #59493f;
}
#menu-btn-check {
  display: none;
}
#menu-btn-check:checked~.g_nav {
  left: 0;
}


/* ページ構成 */
main {
}
.contents_header {}
.contents_header h1 {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  height: 94px;
  color: #fff;
  font-size: 2.2rem;
  line-height: 94px;
  text-align: center;
  text-shadow: 1px 1px 0 #b67465, -1px 1px 0 #b67465, 1px -1px 0 #b67465, -1px -1px 0 #b67465;
  background-image: url(/assets/img/page_header_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.contents_header h1 .en {
  margin-top: 1rem;
  font-size: 1.8rem;
  display: block;
}
.contents_main {}
section.top_advisor {
  margin-top: 60px;
  margin-bottom: 60px;
}
section.top_advisor .content_inner {
  margin: 0 auto;
  width: 100%;
  height: 380px;
  max-width: 900px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
section.top_advisor .content_inner::before {
  content: "";
  width: 100%;
  max-width: 170px;
  height: 51px;
  background-image: url(/assets/img/cotobagaku_logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 9%;
  top: 7%;
}
section.top_advisor .adv_recruit_txt {
  background-color: rgba(255, 255, 255, .7);
  width: 56%;
  color: #59493f;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
  padding: 22px 0;
  position: absolute;
  left: 22%;
  bottom: 24%;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}
@media screen and (max-width: 750px){
  .contents_header {
    padding: 30px 0;
  }
  .contents_header h1 {
    font-size: 2.4rem;
  }
  .contents_main {
    padding: 30px 0;
  }
  section.top_advisor .content_inner {
    padding-top: 67.3%;
    width: 100%;
    height: 0;
    background-image: url(/assets/img/advisor_sp.jpg);
  }
  section.top_advisor .content_inner::before {
    max-width: 23vw;
  }
  section.top_advisor .content_inner .adv_recruit_txt {
    width: 100%;
    max-width: initial;
    left: 0;
    text-align: center;
  }
}
@media screen and (min-width: 751px){
  .contents_header {
    padding-top: 40px;
  }
  .contents_header h1 {
    text-align: center;
    font-size: 2.2rem;
  }
  .contents_main {
    padding: 60px 0;
  }
  section.top_advisor .content_inner {
    background-image: url(/assets/img/advisor.jpg);
  }
}

/* ページネーション */
.pagenation {
  margin: 10px;
  display: flex;
  justify-content: center;
}
.pagenation li {
  margin: 0 5px;
}
.pagenation a {
  text-decoration: none;
}
.pagenation span {
  padding: 5px;
  min-width: 30px;
  min-height: 30px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ef454a;
  border-radius: 4px;
  display: block;
}
.pagenation span.current {
  color: #fff;
  background-color: #ef454a;
}

/* ダイアログ */
#dialog {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#dialog .overlay {
  background-color: #333;
  opacity: .7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
#dialog .dialog_inner {
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  width: fit-content;
  max-width: 98vw;
}
#dialog .content_wrap {
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
}
#dialog .content {
  margin-bottom: 10px;
}
#dialog .btn_area {
  text-align: center;
}
#dialog .btn_area button {
  margin: 0 20px;
  border: 1px solid;
  line-height: 1;
}

/*for dark-mode*/
@media (prefers-color-scheme: dark){}

/*デバッグ用*/
div.debug {
  margin: 0 auto;
  padding: 0px 10px;
  max-width: 1200px;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background: radial-gradient(circle, #ffffff 0%, #d5a194 100%); */
}
main h1 {
  background:
    url(../images/logo.svg);
    /* , linear-gradient(to top, rgba(217, 175, 217, 0.7) 0%, rgba(151, 217, 225, 0.7) 100%); */
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  max-width: 350px;
  width: 100%;
  height: 200px;
  text-indent: 200vw;
  white-space: nowrap;
  overflow: hidden;
}
main div.announce {
  margin-top: 20px;
}
