@charset "UTF-8";
/* Reset
------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

address,
em {
  font-style: normal;
}

strong,
th {
  font-weight: normal;
}

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

th {
  text-align: left;
}

hr,
legend {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

img,
fieldset {
  border: 0;
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

li {
  list-style-type: none;
}

input[type=submit], button, label, select {
  cursor: pointer;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

span.disp-ib {
  display: inline-block;
}

/* link
------------------------------------------------------------*/
a {
  color: #333;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a, button {
  transition: all 0.2s ease;
}

a:hover, button:hover {
  opacity: 0.8;
}

a.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

a.is-disabled img {
  opacity: 0.5;
}

/* Fonts
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

/* 10px base */
body {
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.8;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
}

body.IEUnder {
  font-family: "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
input, button, textarea, select {
  line-height: 1.8;
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.IEUnder input, .IEUnder button, .IEUnder textarea, .IEUnder select {
  font-family: "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* form
------------------------------------------------------------*/
textarea,
input[type=text],
input[type=password],
input[type=email],
input[type=tel] {
  width: 100%;
}

textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder {
  color: #a9a9a9;
}

textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder {
  color: #a9a9a9;
}

textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder {
  color: #a9a9a9;
}

textarea.small,
input[type=text].small,
input[type=password].small,
input[type=email].small,
input[type=tel].small {
  max-width: 85px;
}

textarea.small + span,
input[type=text].small + span,
input[type=password].small + span,
input[type=email].small + span,
input[type=tel].small + span {
  margin-left: 8px;
}

textarea,
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
select {
  padding: 10px;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-size: 1.6rem;
}

textarea.error,
input[type=text].error,
input[type=password].error,
input[type=tel].error,
input[type=email].error,
select.error {
  background-color: #fff2f2;
}

/* radio
-------------*/
input[type=radio] {
  display: none;
}

input[type=radio] + label {
  position: relative;
  display: inline-block;
  padding: 3px 10px 3px 24px;
  cursor: pointer;
  width: 100%;
}

input[type=radio] + label::before,
input[type=radio] + label::after {
  content: "";
  top: 50%;
  position: absolute;
  border-radius: 100%;
  transition: all 0.2s;
}

input[type=radio] + label::before {
  width: 16px;
  height: 16px;
  margin-top: -9px;
  left: 0;
  background: #fff;
  border: 1px solid transparent;
}

input[type=radio].error + label::before {
  border: 1px solid #E33E41;
  background-color: #FFF2F2;
}

input[type=radio] + label::after {
  opacity: 0;
  left: 3px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  background: #000;
  transform: scale(0.5);
}

input[type=radio]:checked + label::before {
  background: #fff;
  border: 1px solid transparent;
}

input[type=radio]:checked + label::after {
  opacity: 1;
  transform: scale(1);
}

/* checkbox
-------------*/
input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding: 3px 10px 3px 30px;
  cursor: pointer;
  transition: all 0.2s;
}

input[type=checkbox] + label::before,
input[type=checkbox] + label::after {
  position: absolute;
  content: "";
}

input[type=checkbox] + label::before {
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background-color: #fff;
  border: 1px solid transparent;
}

input[type=checkbox] + label::after {
  opacity: 0;
  top: 50%;
  left: 4px;
  width: 12px;
  height: 8px;
  margin-top: -6px;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(-45deg) scale(0.5);
}

input[type=checkbox] + label:hover::before {
  background: #fff;
}

input[type=checkbox]:checked + label::before {
  background: #fff;
  border: 1px solid transparent;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

/*
#overview
base
*/
#wrapper {
  padding-top: 90px;
}

@media only screen and (max-width: 1340px) {
  #wrapper {
    padding-top: 60px;
  }
}
#header {
  background-color: #0066B3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  color: #fff;
}

@media only screen and (max-width: 1340px) {
  #header {
    height: 60px;
  }
}
#header .body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1456px;
  height: 90px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px;
}

@media only screen and (max-width: 1340px) {
  #header .body {
    display: block;
    height: auto;
  }
}
#header .siteTitle {
  width: 376px;
}

@media only screen and (max-width: 1180px) {
  #header .siteTitle {
    width: 200px;
  }
}
@media only screen and (max-width: 1340px) {
  #header .siteTitle {
    max-width: 250px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 18px;
    text-align: center;
  }
}
#header .btnMenuWrap {
  display: none;
}

@media only screen and (max-width: 1340px) {
  #header .btnMenuWrap {
    display: block;
  }
}
#header .btnMenuWrap.on .btnMenu {
  display: none;
}

#header .btnMenuWrap.on .btnMenuClose {
  display: block;
}

#header .btnMenu, #header .btnMenuClose {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background-color: transparent;
  font-size: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

#header .btnMenuClose {
  display: none;
}

@media only screen and (max-width: 1340px) {
  #gNav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
  }
}
#gNav .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (max-width: 1340px) {
  #gNav .nav {
    display: block;
    background-color: #fff;
  }
}
#gNav .nav > li {
  position: relative;
  margin-left: 16px;
}

@media only screen and (max-width: 1340px) {
  #gNav .nav > li {
    margin-left: 0;
    border-bottom: solid 1px #ccc;
  }
}
body.page_satisfaction #gNav .nav .satisfaction > a {
  color: #ffe300;
}

body.page_interview #gNav .nav .interview > a {
  color: #ffe300;
}

body.page_message #gNav .nav .message > a {
  color: #ffe300;
}

body.page_team #gNav .nav .team > a {
  color: #ffe300;
}

#gNav .nav > li > a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 90px;
  position: relative;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 1340px) {
  #gNav .nav > li > a {
    display: block;
    height: auto;
    padding: 15px 18px;
    color: #0066B3;
    font-size: 13px;
    font-size: 1.3rem;
    text-align: left;
  }
}
@media only screen and (max-width: 1340px) {
  #gNav .nav > li:not(.entry) > a::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% + 1px);
    right: 15px;
    border-right: solid 1px;
    border-top: solid 1px;
    transform-origin: center center;
    transform: rotate(45deg) translate(-50%, -50%);
  }
}
#gNav .nav .entry {
  margin-bottom: -36px;
}

@media only screen and (max-width: 1340px) {
  #gNav .nav .entry {
    margin-bottom: 0;
  }
}
#gNav .nav .entry a {
  width: 124px;
  height: 126px;
  position: relative;
  padding: 0 10px;
  font-size: 16px;
}

@media only screen and (max-width: 1340px) {
  #gNav .nav .entry a {
    width: auto;
    height: auto;
    padding: 15px 18px;
    color: #fff;
  }
}
@media only screen and (max-width: 600px) {
  #gNav .nav .entry a {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
#gNav .nav .entry a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 6px;
  height: 0;
  width: 0px;
  margin: auto;
  border: 12px solid transparent;
  border-right: 12px solid rgba(255, 255, 255, 0.5);
  border-bottom: 12px solid rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 1340px) {
  #gNav .nav .entry a::after {
    border-width: 8px;
    top: 0;
    bottom: 0;
    right: 15px;
  }
}
#gNav .nav .entry span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
}

@media only screen and (max-width: 1340px) {
  #gNav .nav .entry span {
    margin-left: 15px;
    display: inline;
  }
}
@media only screen and (max-width: 600px) {
  #gNav .nav .entry span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
#gNav .nav .entry.new {
  background-color: #FF569D;
}

#gNav .nav .entry.career {
  background-color: #36a3ff;
  margin-left: 0;
}

/* 追加 2025-06-06 */
/* ---------------------------------------- */
@media only screen and (min-width: 1341px) {
  #gNav .nav > li.team:has(.dropdownNav) > a {
    pointer-events: none;
  }
  #gNav .nav > li.team::before {
    visibility: hidden;
    display: block;
    position: absolute;
    top: calc(100% - 16px);
    left: 0;
    width: 100%;
    height: 4px;
    background: #FFE300;
    z-index: 3;
    content: "";
    opacity: 0;
    transition: all 0.1s ease 0.1s;
    transform: translateY(-5px);
  }
  #gNav .nav > li.team:hover::before {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  #gNav .nav > li.team:hover .dropdownNav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  #gNav .dropdownNav {
    visibility: hidden;
    box-sizing: border-box;
    position: absolute;
    top: calc(100% - 16px);
    left: 0;
    width: 480px;
    padding: 40px 20px;
    background: #0066B3;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transition: all 0.1s ease 0.1s;
    transform: translateY(-5px);
  }
  #gNav .dropdownNav_inner {
    display: flex;
    gap: 20px;
  }
  #gNav .dropdownNav_head {
    width: 160px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
  }
  #gNav .dropdownNav_head a {
    display: inline-block;
    position: relative;
    padding-left: 22px;
    color: inherit;
    text-decoration: none;
  }
  #gNav .dropdownNav_head a::before {
    display: inline-block;
    position: absolute;
    top: calc(50% - 7px);
    left: 0;
    width: 14px;
    height: 14px;
    background: #fff;
    content: "";
    -webkit-mask: url(../img/common/arrow02_color03.svg) no-repeat center/contain;
            mask: url(../img/common/arrow02_color03.svg) no-repeat center/contain;
  }
  #gNav .dropdownNav_body {
    position: relative;
    padding-left: 30px;
  }
  #gNav .dropdownNav_ttl {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 5px;
    position: absolute;
    top: 0;
    bottom: 2px;
    left: 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
    writing-mode: vertical-rl;
  }
  #gNav .dropdownNav_ttl::before {
    flex: 1 1 auto;
    width: 2px;
    min-height: 20px;
    border-radius: 1px;
    background: #FFE300;
    content: "";
  }
  #gNav .dropdownNav_list > li {
    display: block;
    font-weight: bold;
    line-height: 1.5;
  }
  #gNav .dropdownNav_list > li + li {
    margin-top: 6px;
  }
  #gNav .dropdownNav_list a {
    display: inline-block;
    position: relative;
    padding-left: 22px;
    color: inherit;
    text-decoration: none;
  }
  #gNav .dropdownNav_list a::before {
    display: inline-block;
    position: absolute;
    top: calc(50% - 7px);
    left: 0;
    width: 14px;
    height: 14px;
    background: url(../img/common/arrow02_color03.svg) no-repeat center/contain;
    content: "";
  }
}
@media only screen and (max-width: 1340px) {
  /* #gNav .nav >li:not(.entry) >a.js-ac-sp::before {
    transition: transform .2s ease;
    transform: rotate(135deg) translate(-50%, 50%);
  }
  #gNav .nav >li:not(.entry) >a.js-ac-sp.open::before {
    transform: rotate(-45deg) translate(0%, 0%);
  } */
  #gNav .dropdownNav {
    border-top: solid 1px #ccc;
    background: #f2f2f2;
    color: #0066B3;
  }
  #gNav .dropdownNav_head {
    display: none;
  }
  #gNav .dropdownNav_body {
    position: relative;
  }
  #gNav .dropdownNav_ttl {
    position: absolute;
    top: 11px;
    left: 20px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    white-space: nowrap;
  }
  #gNav .dropdownNav_list > li {
    display: block;
    padding: 11px 20px 11px 120px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
  }
  #gNav .dropdownNav_list > li + li {
    border-top: 2px solid #fff;
  }
  #gNav .dropdownNav_list a {
    display: inline-block;
    position: relative;
    padding-left: 22px;
    color: inherit;
    text-decoration: none;
  }
  #gNav .dropdownNav_list a::before {
    display: inline-block;
    position: absolute;
    top: calc(50% - 0.55em);
    left: 0;
    width: 1em;
    height: 1em;
    background: #FFE300;
    content: "";
    -webkit-mask: url(../img/common/arrow02_color03.svg) no-repeat center/contain;
            mask: url(../img/common/arrow02_color03.svg) no-repeat center/contain;
  }
}
/* ---------------------------------------- */
/* 追加 2025-06-06 ここまで */
/*
#styleguide
container

```
<div class="container">
左右にpadding15pxつきます
</div>
```
*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px;
}

.topicpath {
  height: 35px;
  font-weight: bold;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 35px;
  color: #0066B3;
}

.topicpath ul:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.topicpath li {
  float: left;
}

.topicpath li:before {
  content: ">";
  margin: 0 8px;
}

.topicpath a {
  color: #0066B3;
  text-decoration: none;
}

.topicpath a:hover {
  text-decoration: underline;
}

.topicpath .home:before {
  display: none;
}

#footer {
  padding-bottom: 10px;
  padding-top: 120px;
}

@media only screen and (max-width: 600px) {
  #footer {
    padding-top: 50px;
  }
}
#footer .head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 70px;
}

@media only screen and (max-width: 600px) {
  #footer .head {
    display: block;
    margin-bottom: 35px;
  }
}
#footer .head .catch {
  width: 44.6%;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  #footer .head .catch {
    width: 77%;
    margin: 0 auto 35px;
  }
}
#footer .head .entry {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (max-width: 600px) {
  #footer .head .entry {
    width: auto;
  }
}
#footer .head .entry li {
  width: 48%;
}

#footer .head .entry a {
  display: block;
  position: relative;
  padding: 20px 10px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.3;
}

@media only screen and (max-width: 600px) {
  #footer .head .entry a {
    padding: 15px 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
#footer .head .entry a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 6px;
  height: 0;
  width: 0px;
  margin: auto;
  border: 12px solid transparent;
  border-right: 12px solid rgba(255, 255, 255, 0.5);
  border-bottom: 12px solid rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 600px) {
  #footer .head .entry a::after {
    border-width: 10px;
  }
}
#footer .head .entry span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
}

@media only screen and (max-width: 600px) {
  #footer .head .entry span {
    margin-top: 5px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
#footer .head .entry .new a {
  background-color: #FF569D;
}

#footer .head .entry .career a {
  background-color: #36a3ff;
}

#footer .line {
  margin-bottom: 10px;
  text-align: center;
}

#footer .line img {
  width: 100%;
}

#footer .siteTitle {
  text-align: center;
}

#footer .copyright {
  margin-top: 6px;
  opacity: 0.3;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
  color: #000;
}

@media only screen and (max-width: 600px) {
  #footer .copyright {
    font-size: 8px;
    font-size: 0.8rem;
  }
}
/* CSS Document */
.container {
  max-width: 1132px;
}

.container_wide {
  max-width: 1236px;
}

@media only screen and (max-width: 992px) {
  .container {
    max-width: 750px;
  }
}
@media only screen and (max-width: 992px) {
  .modPcOnly {
    display: none;
  }
}
.modSpOnly {
  display: none;
}

@media only screen and (max-width: 992px) {
  .modSpOnly {
    display: block;
  }
}
/*
#overview
modBlock
*/
/*
#styleguide


```
```
*/
.modBlockUnder {
  background-image: url(../img/common/bg_title.png);
  background-position: center top;
  background-repeat: no-repeat;
}

.modBlockInner {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 600px) {
  .modBlockInner {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .modBlockInner + .modBlockInner {
    padding-top: 0;
  }
}
.modBlockInner_color02 {
  background-color: #f2efe6;
}

/*
#overview
modBtn
*/
/*
#styleguide
modBtn01

```
```
*/
.modBtn01 {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background-color: #0066B3;
  border-radius: 999999px;
  padding: 20px 10px;
  border: none;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .modBtn01 {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.modBtn01_arrowB::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  top: calc(0.1em + 3px);
  margin-left: 10px;
  border-right: solid 2px;
  border-bottom: solid 2px;
  transform-origin: center center;
  transform: rotate(45deg) translate(-50%, -50%);
}

.modBtn01_blank::after {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: 0.5em;
  background-color: currentColor;
  content: "";
  -webkit-mask: url(../img/common/icon_blank.svg) no-repeat center/contain;
          mask: url(../img/common/icon_blank.svg) no-repeat center/contain;
}

@media only screen and (max-width: 600px) {
  .modBtn01_blank::after {
    top: 1px;
  }
}
.modBtn01_color02 {
  background-color: #008cff;
}

.modBtn01_color03 {
  background-color: #999999;
}

.modBtnBox {
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}

* + .modBtnBox {
  margin-top: 50px;
}

@media only screen and (max-width: 600px) {
  * + .modBtnBox {
    margin-top: 30px;
  }
}
.modBtnList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center;
  margin: 0 -1.5%;
}

.modBtnListWrap {
  max-width: 630px;
  margin: 0 auto;
}

* + .modBtnListWrap {
  margin-top: 50px;
}

@media only screen and (max-width: 600px) {
  * + .modBtnListWrap {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .modBtnList {
    margin: 0;
  }
}
* + .modBtnList {
  margin-top: 50px;
}

@media only screen and (max-width: 600px) {
  * + .modBtnList {
    margin-top: 30px;
  }
}
.modBtnList li {
  width: 47%;
  margin: 0 1.5%;
}

@media only screen and (max-width: 600px) {
  .modBtnList li {
    width: 100%;
    margin: 0;
    order: 2;
  }
  .modBtnList li:not(:last-child) {
    margin: 0 0 10px;
  }
  .modBtnList li.submit {
    order: 1;
    margin: 0 0 10px;
  }
}
/*
#overview
modForm
*/
/*
#styleguide
***

```
```
*/
.modFormLead {
  margin: 0 0 50px;
  text-align: center;
  line-height: 2;
}

@media only screen and (max-width: 600px) {
  .modFormLead {
    margin-bottom: 30px;
  }
}
.modFormLead .required {
  display: inline-block;
  background: #ff569d;
  color: #FFF;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 2px 10px;
  margin: 0 5px 0 0;
  font-weight: bold;
  line-height: 1.4;
}

.modFormLead .required a {
  color: #0066B3;
}

.modFormErrorTxt {
  margin: 6px 0 0;
  color: #ff4a4b;
  font-weight: bold;
}

.modFormBlock {
  border-top: solid 1px #ccc;
}

.modFormBlock .item {
  display: table;
  width: 100%;
  border-bottom: solid 1px #ccc;
}

@media only screen and (max-width: 600px) {
  .modFormBlock .item {
    display: block;
    width: auto;
    padding: 20px 0;
  }
}
.modFormBlock dt {
  display: table-cell;
  vertical-align: top;
  width: 19em;
  padding: 24px 0 15px 90px;
  position: relative;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .modFormBlock dt {
    display: block;
    width: auto;
    padding: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .modFormBlock dt.required {
    padding-left: 60px;
  }
}
.modFormBlock dt.required:before, .modFormBlock dt.any:before {
  position: absolute;
  left: 30px;
  top: 27px;
  color: #FFF;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 3px 10px;
  line-height: 1.3;
}

@media only screen and (max-width: 600px) {
  .modFormBlock dt.required:before, .modFormBlock dt.any:before {
    top: 0.2em;
    left: 0;
  }
}
.modFormBlock dt.required:before {
  content: "必須";
  background: #ff569d;
}

.modFormBlock_conf dt {
  padding-top: 20px;
  padding-left: 30px;
}

.modFormBlock dd {
  display: table-cell;
  vertical-align: top;
  padding: 15px 0;
}

@media only screen and (max-width: 600px) {
  .modFormBlock dd {
    display: block;
    padding: 0;
  }
}
.modFormAge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.modFormAge input {
  width: 80px;
  margin-right: 10px;
}

.modFormAddress .zip {
  display: table;
  table-layout: fixed;
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .modFormAddress .zip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.modFormAddress .zip li {
  display: table-cell;
  vertical-align: middle;
}

@media only screen and (max-width: 600px) {
  .modFormAddress .zip li {
    display: block;
  }
}
.modFormAddress .zip .input {
  width: 200px;
}

@media only screen and (max-width: 600px) {
  .modFormAddress .zip .input {
    width: 40%;
  }
}
.modFormAddress .zip .btn {
  padding-left: 15px;
}

.modFormAddress .zip .btn a {
  background-color: #0066B3;
  padding: 10px 18px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .modFormAddress .zip .btn a {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.modFormAddress .box {
  margin-top: 20px;
}

.modFormAddress .box select {
  width: 200px;
  max-width: 100%;
}

.modFormCheckList:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.modFormCheckList li {
  float: left;
}

.modFormCheckList li:not(:last-child) {
  margin-right: 40px;
}

.modFormComp {
  text-align: center;
}

.modFormComp .title {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
}

@media only screen and (max-width: 600px) {
  .modFormComp .title {
    font-size: 20px;
    font-size: 2rem;
  }
}
.modFormComp p + p {
  margin-top: 20px;
}

.modFormContact {
  background-color: #fff;
  text-align: center;
  padding: 16px 30px 20px;
  font-weight: bold;
}

* + .modFormContact {
  margin-top: 30px;
}

.modFormContact dt {
  display: block;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: solid 1px #cccccc;
  font-size: 17px;
  font-size: 1.7rem;
}

@media only screen and (max-width: 600px) {
  .modFormContact dt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.modFormContact a {
  color: #0066B3;
  text-decoration: none;
}

.modFormContact a:hover {
  text-decoration: underline;
}

.modFormContact dd {
  font-size: 18px;
  font-size: 1.8rem;
}

@media only screen and (max-width: 600px) {
  .modFormContact dd {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
/*
#overview
modList
*/
/*
#styleguide
modList　modIndent

```
<ul class="modListNormal">
    <li>リスト</li>
    <li>リスト</li>
</ul>
<ol class="modListNormal">
    <li>リスト</li>
    <li>リスト</li>
</ol>
<ul class="modIndent01">
    <li>※テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。</li>
    <li>※リスト</li>
</ul>
<ul class="modIndent02">
    <li>１.　テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。</li>
    <li>２.　リスト</li>
</ul>
<ul class="modList01">
    <li>Illustrator に原寸で配置したサイズでの解像度が350dpiになるようにしてください。</li>
    <li> 拡大縮小率70%〜141％を超えると画質が劣化するのでご注意ください。</li>
</ul>
```
*/
.modListNormal {
  margin: 0 0 0 2em;
}

ul.modListNormal li:before {
  content: "・";
  margin-left: -2em;
  display: inline-block;
  width: 2em;
  text-align: center;
}

ol.modListNormal li {
  list-style: decimal;
}

/* indent */
.modIndent01 li {
  text-indent: -1em;
  margin: 0 0 0 1em;
}

.modIndent02 li {
  text-indent: -2.5em;
  margin: 0 0 0 2.5em;
}

/*
#overview
other
*/
/*
#styleguide
xxxxx

```
コード
```
*/
@keyframes rotateLoading {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
/*↓消さないこと*/
.modLoading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.modLoading .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 42px;
  height: 42px;
}

.modLoading .inner > div {
  background-color: #666;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  border: 2px solid #666;
  border-bottom-color: transparent;
  background: transparent !important;
  display: inline-block;
  animation: rotateLoading;
  animation-duration: 0.75s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-delay: 0;
}

/*↑消さないこと*/
/* wysiwyg
------------------------------------------------------------*/
.modParts {
  margin-bottom: 20px;
}

.modPartsImage {
  text-align: center;
  color: #959595;
  font-size: 11px;
  font-size: 1.1rem;
}

.modPartsImage .caption {
  margin: 5px 0 0;
}

.modPartsImage a:hover {
  opacity: 0.8;
}

.modPartsYoutube {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 1340px) {
  .modPartsYoutube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .modPartsYoutube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
.modPartsTxt iframe {
  width: 100%;
  height: 400px;
}

@media only screen and (max-width: 1340px) {
  .modPartsTxt iframe {
    height: 250px;
  }
}
.modPartsTxt ul {
  margin-left: 2em;
}

.modPartsTxt ul li {
  list-style: disc;
}

.modPartsTxt ol {
  margin-left: 2.2em;
}

.modPartsTxt ol li {
  list-style: decimal;
}

.modPartsTxt strong,
.modPartsTxt th {
  font-weight: bold;
}

.modPartsTxt .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.modPartsTxt img.alignright {
  padding: 4px;
  margin: 0 0 2px 7px;
  display: inline;
}

.modPartsTxt img.alignleft {
  padding: 4px;
  margin: 0 7px 2px 0;
  display: inline;
}

.modPartsTxt .alignright {
  float: right;
}

.modPartsTxt .alignleft {
  float: left;
}

.modPartsTxt strong {
  font-weight: bold;
}

/*
#overview
modTable
*/
/*
#styleguide
xxx

```
```
*/
/*
#overview
modTitle
*/
/*
#styleguide
xxx

```
```
*/
.modTitlePage {
  padding-top: 90px;
  padding-bottom: 130px;
  text-align: center;
}

@media only screen and (max-width: 1340px) {
  .modTitlePage {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .modTitlePage {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.modTitlePage_type02 {
  padding-bottom: 70px;
}

@media only screen and (max-width: 600px) {
  .modTitlePage_type02 {
    padding-bottom: 40px;
  }
}
.modTitlePage .title {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
  color: #0066B3;
  line-height: 1.3;
}

@media only screen and (max-width: 600px) {
  .modTitlePage .title {
    margin-bottom: 20px;
  }
}
.modTitlePage .title .main {
  display: block;
  font-size: 50px;
  font-size: 5rem;
  font-family: "Yellowtail", cursive;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 600px) {
  .modTitlePage .title .main {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.modTitlePage .title .sub {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .modTitlePage .title .sub {
    margin-top: 3px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.modTitlePage .txt {
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #535353;
  line-height: 1.6;
}

@media only screen and (max-width: 600px) {
  .modTitlePage .txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 600px) {
  .modTitlePage .txt .pc {
    display: none;
  }
}
.modTitlePage .catch {
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
}

.modTitle01 {
  margin-bottom: 30px;
  text-align: center;
  color: #0066B3;
  line-height: 1.3;
}

@media only screen and (max-width: 600px) {
  .modTitle01 {
    margin-bottom: 20px;
  }
}
.modTitle01 .main {
  display: block;
  font-size: 50px;
  font-size: 5rem;
  font-family: "Yellowtail", cursive;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 600px) {
  .modTitle01 .main {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.modTitle01 .sub {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .modTitle01 .sub {
    margin-top: 3px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}
/*
#overview
modTxt
*/
/*
#styleguide
xx

```
```
*/
.modFootEntry {
  padding: 100px 0;
  border-top: 2px solid #fff;
  background: #F2F2F2;
}

.modEntryList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
  .modEntryList {
    flex-direction: column;
  }
}

.modEntryList .box {
  width: 270px;
}
@media only screen and (max-width: 600px) {
  .modEntryList .box {
    width: auto;
  }
}

.modEntryList .btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  position: relative;
  padding: 12px 24px 10px 50px;
  min-height: 70px;
  background-color: #fff;
  color: #E55491;
  font-size: 20px;
  line-height: 1.25;
  font-weight: bold;
  text-align: left;
  text-decoration: none;
}
.modEntryList .btn a::before {
  display: inline-block;
  position: absolute;
  top: calc(50% - 8px);
  left: 24px;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/arrow02_color03.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px;
  content: "";
}
.modEntryList .btn a::after {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 0;
  height: 0;
  margin: auto;
  border: 12px solid transparent;
  border-right-color: var(--btn-color, currentColor);
  border-bottom-color: var(--btn-color, currentColor);
  opacity: 0.2;
  content: "";
}

.modEntryList ul {
  margin: 20px 30px 0;
}
@media only screen and (max-width: 600px) {
  .modEntryList ul {
    margin: 20px 50px 0;
  }
}

.modEntryList ul li {
  display: block;
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 4px;
}
.modEntryList ul li::before {
  display: block;
  position: absolute;
  top: calc(0.7em - 8px);
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/arrow02_color02.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  content: "";
}

.modEntryList ul a {
  display: inline-block;
  text-decoration: none;
  color: #E55491;
}

.modEntryList ul a[target=_blank]::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 0.5em;
  background-color: currentColor;
  content: "";
  -webkit-mask: url(../img/common/icon_blank.svg) no-repeat center/contain;
          mask: url(../img/common/icon_blank.svg) no-repeat center/contain;
}

.modEntryList ul a:hover {
  text-decoration: none;
}

.modEntryList .box.career .btn a {
  color: #0066B3;
}

.modEntryList .box.career ul a {
  color: #0066B3;
}

.modEntryList .box.career ul li::before {
  background-image: url(../img/common/arrow02.svg);
}

.modEntryList .box.research .btn a {
  color: #EB8800;
}

.modEntryList .box.research ul a {
  color: #EB8800;
}

.modEntryList .box.research ul li::before {
  background-image: url(../img/common/arrow02_color04.svg);
}