@charset "UTF-8";
/*================================================== 
  General
==================================================*/
@media (min-width: 575.9px) {
  :root {
    --gutter-superwide: 8rem;
    --gutter-wide: 6rem;
    --gutter: 4rem;
    --gutter-narrow: 2rem;
    --gutter-supernarrow: 0.8rem;
  }
}
@media (min-width: 767.8px) {
  :root {
    --gutter-superwide: 8rem;
    --gutter-wide: 6rem;
    --gutter: 4rem;
    --gutter-narrow: 2rem;
    --gutter-supernarrow: 0.8rem;
  }
}
@media (min-width: 1160px) {
  :root {
    --gutter-superwide: 10rem;
    --gutter-wide: 7.5rem;
    --gutter: 5rem;
    --gutter-narrow: 2.5rem;
    --gutter-supernarrow: 1rem;
  }
}
@media (max-width: 575.8px) {
  :root {
    --gutter-superwide: 4.8rem;
    --gutter-wide: 3.6rem;
    --gutter: 2.4rem;
    --gutter-narrow: 1.2rem;
    --gutter-supernarrow: 0.48rem;
  }
}
/*************** html ****************/
html {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
  line-height: 1.8;
  font-weight: 400;
  color: #434343;
  position: relative;
}
@media (max-width: 575.8px) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 575.9px) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 767.8px) {
  html {
    font-size: 16px;
  }
}

/*************** body ****************/
body {
  min-width: 280px;
}

/*************** width ****************/
.content-width {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1160px) {
  .content-width {
    max-width: 1160px;
  }
}

.content-width-wide {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1320px) {
  .content-width-wide {
    max-width: 1320px;
  }
}

.content-width-max {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1440px) {
  .content-width-max {
    max-width: 1440px;
  }
}

/*************** font ****************/
.font-ja {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
}

.font-en {
  font-family: "Poppins", Arial, Helvetica, "sans-serif";
}

/*************** img ****************/
img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-drag: none;
}

/*************** wp-wysiwyg ****************/
/*/// What You See Is What You Get :) ///*/
.wp-wysiwyg {
  /* paragraph */
  /* link */
  /* embedded */
  /* blockquote */
  /* lists */
  /* table */
}
.wp-wysiwyg h1 {
  font-size: 1.5rem;
  font-weight: bold;
  background: #F7F7F7;
  padding: 0.25em 0.5em;
  border-left: solid 3px #00B9C1;
  margin-bottom: 1em;
}
.wp-wysiwyg h2 {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.25em 0.5em;
  border-left: solid 3px #00B9C1;
  margin-bottom: 1em;
}
.wp-wysiwyg h3 {
  font-size: 1.25rem;
  font-weight: bold;
  padding-left: 2em;
  margin-bottom: 1em;
  position: relative;
}
.wp-wysiwyg h3::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 2px;
  background: #BFBFBF;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.wp-wysiwyg h4 {
  font-size: 1.25rem;
  margin-bottom: 1em;
}
.wp-wysiwyg h5,
.wp-wysiwyg h6 {
  font-size: 1.125rem;
  margin-bottom: 1em;
}
.wp-wysiwyg p {
  margin: 0.5em 0 2em;
}
.wp-wysiwyg em {
  font-style: normal;
  font-weight: bold;
  color: #00B9C1;
}
.wp-wysiwyg a {
  text-decoration: underline;
  color: #00B9C1;
}
.wp-wysiwyg img,
.wp-wysiwyg iframe,
.wp-wysiwyg video,
.wp-wysiwyg audio,
.wp-wysiwyg embed {
  width: auto;
  height: auto;
  max-width: 100%;
}
.wp-wysiwyg iframe[title="YouTube video player"] {
  height: auto;
  aspect-ratio: 16/9;
}
.wp-wysiwyg blockquote:not(.tiktok-embed) {
  background: #F7F7F7;
  padding: 1em;
  font-style: italic;
  color: #999999;
}
.wp-wysiwyg ul {
  list-style: disc;
  margin-left: 1.5em;
}
.wp-wysiwyg ol {
  list-style: decimal;
  margin-left: 1.5em;
}
.wp-wysiwyg li {
  margin-bottom: 0.5em;
  display: list-item;
}
.wp-wysiwyg table:not(.no-default-style) {
  border-top: solid 1px #E3E3E3;
  border-right: solid 1px #E3E3E3;
}
.wp-wysiwyg table:not(.no-default-style) th, .wp-wysiwyg table:not(.no-default-style) td {
  text-align: center;
  padding: 0.5em;
  border-bottom: solid 1px #E3E3E3;
  border-left: solid 1px #E3E3E3;
}

/*================================================== 
  Parts
==================================================*/
/*************** form ****************/
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  padding: 0.5em;
  border: solid 1px #F7F7F7;
  background: #F7F7F7;
  box-shadow: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.5s;
  border-radius: 0;
  max-width: 100%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
textarea:focus,
select:focus, input[type=text]:hover,
input[type=email]:hover,
input[type=tel]:hover,
input[type=password]:hover,
textarea:hover,
select:hover {
  border: solid 1px #00B9C1;
  box-shadow: 0px 0px 5px 0px rgba(0, 158, 142, 0.4);
}

input[type=radio]:focus {
  border: solid 1px #00B9C1;
  box-shadow: 0px 0px 5px 0px rgba(0, 158, 142, 0.4);
}

input[type=checkbox] {
  border: solid 1px #BFBFBF;
  vertical-align: -8px;
  position: relative;
  margin-right: 5px;
  width: 1.8em;
  height: 1.8em;
  background: #FFF;
  cursor: pointer;
}
input[type=checkbox]:checked {
  background: #00B9C1;
  border: solid 1px #BFBFBF;
}
input[type=checkbox]:checked::before {
  display: block;
  content: "";
  width: 10px;
  height: 3px;
  position: absolute;
  left: 0px;
  top: 1.15em;
  background: #FFF;
  transform: rotate(45deg);
  transform-origin: right center;
}
input[type=checkbox]:checked::after {
  display: block;
  content: "";
  width: 1.3em;
  height: 3px;
  position: absolute;
  left: 9px;
  top: 1.2em;
  background: #FFF;
  transform: rotate(-53deg);
  transform-origin: left center;
}

*:has(> select) {
  position: relative;
}
*:has(> select)::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: #434343;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  right: 0.5rem;
  top: 0.5rem;
}

input[type=radio] {
  border: solid 1px #BFBFBF;
  background: #FFF;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  position: relative;
  margin-right: 5px;
  margin-bottom: 2px;
  cursor: pointer;
}
input[type=radio]:checked::before {
  display: block;
  content: "";
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #00B9C1;
  transform: translate(-50%, -50%);
}

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

.wpcf7-not-valid-tip {
  font-size: 0.75rem !important;
  line-height: 1.2;
  color: #E43C00 !important;
  position: absolute;
  top: calc(100% + 0.5em);
  left: 0;
}

*.has-caution + .wpcf7-not-valid-tip {
  top: calc(100% + 2em);
}

.wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
  height: auto;
}

.wpcf7-radio > span {
  display: block;
}

.area-acceptance {
  text-align: center;
  font-size: 0.89rem;
  margin-bottom: 1em;
}
.area-acceptance span {
  display: inline-block;
}
.area-acceptance a {
  display: inline-block;
  text-decoration: underline;
  color: #00B9C1;
}

.contact__acceptance-chk {
  margin: 2em 0 1em;
}

.btnwrap--submit {
  position: relative;
}
.btnwrap--submit p {
  width: 12em;
  height: 2.5em;
  margin: 0 auto;
  position: relative;
}
.btnwrap--submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 105%;
  transform: translateY(-50%);
}

.btn-submit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
  background: #00B9C1;
  color: #FFF;
  text-align: center;
  border-radius: 50vh;
}
.btn-submit:disabled {
  background: #BFBFBF;
}

.btnwrap--return p {
  width: 6em;
  height: 2.5em;
  margin: 0 auto;
}

.btn-return {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
  background: #BFBFBF;
  color: #FFF;
  text-align: center;
  border-radius: 50vh;
}

.btnfloatbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2em;
  margin-top: var(--gutter);
}

.wpcf7-form .required .list-form__label p {
  display: inline-block;
}
.wpcf7-form .required .list-form__label p > span {
  position: relative;
  display: inline-block;
}
.wpcf7-form .required .list-form__label p > span::after {
  content: "必須";
  color: #FFF;
  line-height: 1;
  background: #00B9C1;
  font-size: 0.75rem;
  padding: 0.25em 0.75em;
  margin-left: 1.5em;
}

.englishpage .wpcf7-form .required .list-form__label p > span::after {
  content: "Required";
}

/* list-form */
.list-form__item {
  margin-bottom: var(--gutter-narrow);
}
.list-form__label {
  position: relative;
}
.list-form__label--caution {
  font-size: 0.75rem;
  margin-top: 1em;
}
.list-form__data {
  position: relative;
}

/*************** button ****************/
.btn-type01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 3.4375rem;
  border-style: solid;
  border-width: 1px;
  border-radius: 50vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn-type01 .circle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.75rem;
  height: 0.75rem;
  right: 0.8rem;
  z-index: 0;
  transform: scale(0);
}
.btn-type01 .dot {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.375rem;
  height: 0.375rem;
  right: 1rem;
  background: #C0F0F2;
  z-index: 1;
}
.btn-type01 .btn-label {
  padding: 0 1.375rem;
}
.btn-type01 .filter {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.375rem;
  height: 0.375rem;
  right: 1rem;
  z-index: -2;
  transform: scale(1);
}
.btn-type01::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition-duration: 0.4s;
}
.btn-type01:hover {
  opacity: 1;
}
.btn-type01:hover::before {
  opacity: 1;
}
.btn-type01:hover .circle {
  transform: scale(1);
}
.btn-type01:hover .filter {
  transform: scale(100);
}

.btn-type02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 3.4375rem;
  border-style: solid;
  border-width: 1px;
  border-radius: 50vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn-type02 .circle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.75rem;
  height: 0.75rem;
  right: 0.8rem;
  z-index: 0;
  transform: scale(0);
}
.btn-type02 .dot {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.375rem;
  height: 0.375rem;
  right: 1rem;
  background: #C0F0F2;
  z-index: 1;
}
.btn-type02 .btn-label {
  padding: 0 1.375rem;
}
.btn-type02 .filter {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.375rem;
  height: 0.375rem;
  right: 1rem;
  z-index: -2;
  transform: scale(1);
}
.btn-type02::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition-duration: 0.4s;
}
.btn-type02:hover {
  opacity: 1;
}
.btn-type02:hover::before {
  opacity: 1;
}
.btn-type02:hover .circle {
  transform: scale(1);
}
.btn-type02:hover .filter {
  transform: scale(100);
}

.btn-type03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 3.4375rem;
  border-style: solid;
  border-width: 1px;
  border-radius: 50vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn-type03 .circle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.75rem;
  height: 0.75rem;
  right: 0.8rem;
  z-index: 0;
  transform: scale(0);
}
.btn-type03 .dot {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.375rem;
  height: 0.375rem;
  right: 1rem;
  background: #C0F0F2;
  z-index: 1;
}
.btn-type03 .btn-label {
  padding: 0 1.375rem;
}
.btn-type03 .filter {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.375rem;
  height: 0.375rem;
  right: 1rem;
  z-index: -2;
  transform: scale(1);
}
.btn-type03::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition-duration: 0.4s;
}
.btn-type03:hover {
  opacity: 1;
}
.btn-type03:hover::before {
  opacity: 1;
}
.btn-type03:hover .circle {
  transform: scale(1);
}
.btn-type03:hover .filter {
  transform: scale(100);
}

.btn-type04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 3.4375rem;
  border-style: solid;
  border-width: 1px;
  border-radius: 50vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn-type04 .circle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.75rem;
  height: 0.75rem;
  right: 0.8rem;
  z-index: 0;
  transform: scale(0);
}
.btn-type04 .dot {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.375rem;
  height: 0.375rem;
  right: 1rem;
  background: #C0F0F2;
  z-index: 1;
}
.btn-type04 .btn-label {
  padding: 0 1.375rem;
}
.btn-type04 .filter {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50vh;
  transition-duration: 0.4s;
  transform-origin: center center;
  width: 0.375rem;
  height: 0.375rem;
  right: 1rem;
  z-index: -2;
  transform: scale(1);
}
.btn-type04::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition-duration: 0.4s;
}
.btn-type04:hover {
  opacity: 1;
}
.btn-type04:hover::before {
  opacity: 1;
}
.btn-type04:hover .circle {
  transform: scale(1);
}
.btn-type04:hover .filter {
  transform: scale(100);
}

.btn-type01 {
  background: #FFF;
  border-color: #FFF;
  color: #00B9C1;
}
.btn-type01::before {
  background: #00B9C1;
}
.btn-type01 .circle {
  background: #FFF;
}
.btn-type01 .filter {
  background: #00B9C1;
}
.btn-type01:hover {
  color: #FFF;
}
.btn-type01:hover .dot {
  background: #00B9C1;
}

.btn-type02 {
  background: #00B9C1;
  border-color: #00B9C1;
  color: #FFF;
}
.btn-type02::before {
  background: #C0F0F2;
}
.btn-type02 .circle {
  background: #00B9C1;
}
.btn-type02 .filter {
  background: #C0F0F2;
}
.btn-type02:hover {
  color: #00B9C1;
}

.btn-type03 {
  background: transparent;
  border-color: #FFF;
  color: #00B9C1;
}
.btn-type03::before {
  background: #C0F0F2;
}
.btn-type03 .circle {
  background: #00B9C1;
}
.btn-type03 .filter {
  background: #C0F0F2;
}
.btn-type03:hover {
  color: #00B9C1;
}

.btn-type04 {
  background: #999999;
  border-color: #999999;
  color: #FFF;
}
.btn-type04::before {
  background: #FFF;
}
.btn-type04 .circle {
  background: #BFBFBF;
}
.btn-type04 .dot {
  background: #FFF;
}
.btn-type04 .filter {
  background: #FFF;
}
.btn-type04:hover {
  color: #999999;
}
.btn-type04:hover .dot {
  background: #FFF;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

/*************** icon ****************/
.icon-wrap {
  font-size: 0;
}

.icon-txt {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  padding: 0.25em 0.5em;
  font-size: 0.75rem;
  border-radius: 50vh;
}
.icon-txt.icon-new {
  color: #E43C00;
  font-family: "Poppins", Arial, Helvetica, "sans-serif";
}
.icon-txt.icon-cat {
  color: #00B9C1;
}
.icon-txt.icon-required {
  color: #E43C00;
}
.icon-txt.icon-arbitrary {
  color: #BFBFBF;
}

/*************** link ****************/
.link-txt {
  display: inline-block;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .link-txt:hover {
    text-decoration: none;
    opacity: 1;
  }
}
.link-txt.other-site::after {
  display: inline-block;
  content: "";
  width: 0.5em;
  max-width: 20px;
  height: 0.5em;
  max-height: 20px;
  background: url(../img/common/icon_other-site.png) no-repeat top left/contain;
  position: absolute;
  top: 50%;
  right: -0.75em;
  transform: translateY(-50%);
}

li .link-txt {
  position: relative;
  margin-left: 0.75em;
}
li .link-txt::before {
  display: inline-block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: currentColor;
  position: absolute;
  top: 50%;
  left: -0.75em;
  transform: translateY(-50%);
}

/*************** title ****************/
.secttl01 {
  font-weight: bold;
  font-size: 2.25rem;
  margin-bottom: 1em;
  color: #00B9C1;
}
.secttl01--center {
  text-align: center;
}

.secttl02 {
  font-size: 1.5rem;
  margin-bottom: 1.5em;
  font-weight: bold;
  padding: 0.25em 0.5em;
  border-left: solid 6px #C0F0F2;
  border-bottom: solid 1px #E3E3E3;
}

.secttl03 {
  font-size: 1.5rem;
  padding-bottom: 0.75em;
  margin-bottom: 1em;
  border-bottom: solid 1px #E3E3E3;
  font-weight: bold;
}

/*************** table ****************/
table.tbl-data {
  width: 100%;
}
table.tbl-data th {
  font-weight: bold;
  padding-top: 1em;
  padding-bottom: 1em;
}
table.tbl-data td {
  padding-top: 1em;
  padding-bottom: 1em;
}

/*************** list ****************/
ul.list-circle {
  list-style-type: disc;
  color: #C0F0F2;
}
ul.list-circle li {
  display: list-item;
  margin-left: 1.5em;
}
ul.list-circle li span {
  color: #434343;
}

ol.list-decimal {
  list-style-type: decimal;
}
ol.list-decimal li {
  display: list-item;
  margin-left: 1.5em;
}

ol.list-kana {
  list-style-type: katakana;
}
ol.list-kana li {
  display: list-item;
  margin-left: 1.5em;
}

ol.list-lower-latin {
  list-style-type: lower-latin;
}
ol.list-lower-latin li {
  display: list-item;
  margin-left: 1.5em;
}

/*************** slick ****************/
/*************** page introbox ****************/
.pageintrobox {
  margin-bottom: var(--gutter);
}

.pageintrotxt {
  text-align: center;
  margin-bottom: 0.75em;
}

/*================================================== 
  Common
==================================================*/
/*************** header ****************/
.header {
  color: #F7F7F7;
  width: 100%;
  height: 5rem;
  background: #434343;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 100%;
  width: 95% !important;
}
.header__logo {
  width: 17.4375rem;
  max-width: 55%;
}
.header__navlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1.5em;
  font-size: min(1.2vw, 1rem);
}
.header__navitem a.current {
  color: #00B9C1;
}
.header__cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2em;
}
.header__lang {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: calc(1em + 2px);
  font-size: clamp(0.75rem, 1.1vw, 0.89rem);
  line-height: 1;
}
.header__lang--en {
  position: relative;
}
.header__lang--en::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 1.3em;
  background: #F7F7F7;
  position: absolute;
  top: 50%;
  right: calc(100% + 0.5em);
  transform: translateY(-50%);
}
.header__lang a[tabindex="-1"] {
  pointer-events: none;
  opacity: 1;
  font-weight: bold;
  position: relative;
}
.header__lang a[tabindex="-1"]::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.8em;
  height: 2px;
  background: #F7F7F7;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
}
.header__contact {
  width: 9.375rem;
}
.header__contact a {
  height: 2.9375rem;
}
.header__hmbgr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  border: solid 1px #FFF;
  width: 2.86rem;
  height: 2.86rem;
  position: relative;
}
.header__hmbgr div {
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: #FFF;
  transition: all 0.3s ease;
}
.header__hmbgr.close div:nth-of-type(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25%;
}
.header__hmbgr.close div:nth-of-type(2) {
  width: 0;
}
.header__hmbgr.close div:nth-of-type(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 25%;
}
.header__collapse {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 5rem;
  left: 0;
  z-index: 99;
}
.header__navitem--collapse {
  border-bottom: dotted 1px #E3E3E3;
}
.header__navitem--collapse a {
  padding: 1em;
}

@media (min-width: 767.8px) {
  body.logged-in header {
    top: 32px;
  }
}
/*************** main ****************/
/*************** breadcrumb ****************/
#breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  font-size: 0.75rem;
  padding: 1em 0 1.25em;
  color: #F7F7F7;
}
#breadcrumb ol li {
  position: relative;
}
#breadcrumb ol li:nth-of-type(n+2) {
  margin-left: 1.5em;
}
#breadcrumb ol li:nth-of-type(n+2)::before {
  content: "";
  display: inline-block;
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  background: #F7F7F7;
  position: absolute;
  top: 50%;
  left: -0.85em;
  transform: translateY(-50%);
}

/*************** page firstview ****************/
.pagettlbox {
  background: url(../img/common/bg_pagettl.png) top center/cover;
}
.pagettlbox__inner {
  padding-top: var(--gutter-wide);
}
.pagettlbox__ttl {
  color: #F7F7F7;
  padding-bottom: var(--gutter);
}
.pagettlbox__ttl span {
  display: block;
}
.pagettlbox__ttl .font-ja {
  font-size: 2.25rem;
  font-weight: bold;
}
.pagettlbox__ttl .font-en {
  font-size: 1.5rem;
}
.pagettlbox__ttl.en .font-en {
  font-size: 3rem;
}

/*************** container ****************/
#container {
  position: relative;
}
#container::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../img/common/img_container.png) no-repeat top left/contain;
  width: 8.16rem;
  height: 9.5rem;
  top: 1rem;
  right: 0;
  z-index: -1;
}

body:not(.home):not(.page-template-page-home-en) #container {
  padding-top: var(--gutter-wide);
  padding-bottom: var(--gutter-wide);
}

/*************** anchor pagetop ****************/
.ancPagetop {
  width: 4rem;
  height: 4rem;
  position: fixed;
  bottom: 7rem;
  right: 1rem;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.ancPagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #00B9C1;
  color: #FFF;
  border: solid 1px #FFF;
}

/*************** footer ****************/
.footer {
  background: #434343;
  color: #FFF;
  padding-top: var(--gutter);
  padding-bottom: var(--gutter-narrow);
}
.footer__contactimg {
  width: 27.5rem;
  max-width: 40%;
}
.footer__contactTtl > span {
  display: block;
}
.footer__contactTtl .font-ja {
  font-size: 2.25rem;
}
.footer__contactTtl .font-en {
  font-size: 1.25rem;
}
.footer__contactbtn {
  width: 19.6875rem;
}
.footer__contactbtn a {
  font-size: 1.5rem;
  height: 3em;
}
.footer__contactTxt {
  margin-top: var(--gutter);
}
.footer__logo {
  width: 21.875rem;
  max-width: 100%;
  margin-bottom: var(--gutter-narrow);
}
.footer__companyinfo {
  font-size: 0.89rem;
  margin-top: var(--gutter-narrow);
  margin-bottom: var(--gutter-narrow);
}
.footer__snslist {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 1.5rem;
}
.footer__snsitem {
  width: 1.25rem;
}
.footer__copyright, .footer__privacylink {
  font-size: 0.75rem;
}

/*================================================== 
  Pages
==================================================*/
/*************** indexpage ****************/
/* button */
*:has(> .btn-index) {
  width: 11.375rem;
}

.btn-index {
  width: 100%;
}

/* title */
.secttl-index {
  color: #00B9C1;
  margin-bottom: var(--gutter-narrow);
}
.secttl-index > span {
  display: block;
}
.secttl-index .font-ja {
  font-weight: 700;
  font-size: 2.25rem;
}
.secttl-index .font-en {
  font-size: 1.25rem;
}

.indexpage-en .secttl-index .font-en {
  font-size: 2.25rem;
}

/* paragraph */
.txt-index {
  line-height: 2;
}

/* firstview */
.fvblock {
  position: relative;
}
.fvblock__catch {
  position: absolute;
  font-size: 10.9vw;
  bottom: -0.15em;
  left: 0;
  color: #F7F7F7;
}
.fvblock__catch > span {
  display: block;
}
.fvblock__catch--sub {
  font-size: max(11px, 0.25em);
  line-height: 1.2;
  font-weight: 400;
  margin-left: 1%;
  margin-bottom: 0.25em;
}
.fvblock__catch--main {
  white-space: nowrap;
  line-height: 1;
  font-weight: 700;
  transform: translateX(-0.1em);
  opacity: 0.87;
}

.fv-arrows {
  position: absolute;
  left: 1.5%;
  bottom: 16.5vw;
  color: #BFBFBF;
}
.fv-arrows .slick-num .fv-now-count {
  color: #C0F0F2;
}

.progress-bar {
  width: 9.625rem;
  height: 2px;
  background-color: #BFBFBF;
  overflow: hidden;
  position: absolute;
  bottom: 16.5vw;
  left: calc(1.5% + 6em);
  transform: translate(0, -0.9em);
}

.progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background-color: #C0F0F2;
  animation: progressAnim 3.5s linear forwards;
}

@keyframes progressAnim {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* about */
.aboutblock {
  margin: var(--gutter-wide) auto;
}

/* strength */
.strengthblock {
  background: url(../img/index/bg_strength.png) no-repeat top center/cover;
  padding: var(--gutter) 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.strengthblock__txtbox {
  color: #F7F7F7;
  margin-bottom: var(--gutter);
}
.strengthblock__txt {
  line-height: 2;
}
.strengthblock__txt:nth-of-type(n+2) {
  margin-top: 1.875rem;
}
.strengthblock__imgarea {
  position: relative;
  margin-top: 3.375rem;
}
.strengthblock__imgarea .multiply {
  position: absolute;
  mix-blend-mode: multiply;
  z-index: -1;
}
.strengthblock__imgarea .multiply--01 {
  width: 79%;
  height: auto;
  aspect-ratio: 79/63;
  transform: rotate(4deg);
  top: -28%;
  right: -10%;
}
.strengthblock__imgarea .multiply--02 {
  width: 55%;
  height: auto;
  aspect-ratio: 275/219;
  transform: rotate(-6deg);
  bottom: -20%;
  left: -17.5%;
}

/* productblock */
.productblock {
  margin-top: var(--gutter-wide);
  margin-bottom: var(--gutter-wide);
}
.productblock__txtbox {
  margin-bottom: var(--gutter-narrow);
}
.productblock__imgwrap {
  position: relative;
}
.productblock__imgarea {
  width: 100%;
}

.prod-arrows {
  color: #BFBFBF;
  text-align: center;
  margin-top: 1em;
}
.prod-arrows .slick-num .prod-now-count {
  color: #00B9C1;
}
.prod-arrows .prod-next {
  color: #00B9C1;
}

/* customblock */
.customblock {
  background: #F7F7F7;
  margin-top: var(--gutter-wide);
  margin-bottom: var(--gutter-wide);
}
.customblock__txtbox {
  margin-bottom: var(--gutter-narrow);
}
.customblock__txt .emp {
  color: #00B9C1;
}
.customblock__imgwrap {
  position: relative;
}
.customblock__imgarea {
  width: 100%;
}
.customblock__imgarea .slide {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
.customblock__imgarea .slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.customblock .custom-arrows {
  color: #BFBFBF;
  text-align: center;
  margin-top: 1em;
}
.customblock .custom-arrows .slick-num .custom-now-count {
  color: #00B9C1;
}
.customblock .custom-arrows .custom-next {
  color: #00B9C1;
}

.bottomblock__inner > div {
  position: relative;
  overflow: hidden;
  padding-right: 5%;
  padding-left: 5%;
}
.bottomblock__item--company {
  background: url(../img/index/bg_company.jpg) no-repeat center center/cover;
}
.bottomblock__item--recruit {
  background: url(../img/index/bg_recruit.jpg) no-repeat center center/cover;
}
.bottomblock__blur {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  z-index: 0;
  transition: -webkit-backdrop-filter 0.4s ease;
  transition: backdrop-filter 0.4s ease;
  transition: backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  pointer-events: none;
}
.bottomblock__btn:hover + .bottomblock__blur {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.bottomblock__ttl {
  color: #FFF;
  position: relative;
  z-index: 1;
}
.bottomblock__txtbox {
  margin-bottom: var(--gutter-narrow);
  position: relative;
  z-index: 1;
}
.bottomblock__txt {
  color: #FFF;
}
.bottomblock__btn {
  z-index: 1;
}

/*************** news ****************/
.post-type-archive-news .pagettlbox,
.post-type-archive-news_en .pagettlbox {
  background-image: url(../img/news/bg_pagettl--news.png);
}

.archive-news__tabarea {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 1em;
  margin-bottom: var(--gutter-narrow);
  padding-bottom: var(--gutter-narrow);
  border-bottom: solid 1px #E3E3E3;
  font-size: 0.75rem;
}
.archive-news__tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  min-width: 8em;
  border-radius: 50vh;
  line-height: 1;
  padding: 0.5em;
  background: #E3E3E3;
}
.archive-news__tab.active {
  color: #FFF;
  background: #00B9C1;
}
.archive-news__tmb {
  width: 100%;
  height: auto;
  aspect-ratio: 370/240;
  margin-bottom: 1em;
}
.archive-news__tmb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.archive-news__ttl, .archive-news__cont {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.archive-news__cont {
  font-size: 0.75rem;
  margin: 1em 0;
}
.archive-news__clickarea {
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.archive-news__clickarea:hover {
  opacity: 0.6;
}
.archive-news__articlearea {
  visibility: hidden;
  opacity: 0;
  width: 80vw;
  max-width: 1320px;
  height: 80vh;
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #FFF;
  overflow-y: scroll;
  transition: all 0.3s ease;
}
.archive-news__articlearea.active {
  visibility: visible;
  opacity: 100;
}
.archive-news article {
  padding: var(--gutter-narrow) 5%;
}
.archive-news .article-news__ttl {
  font-size: 1.5rem;
  font-weight: bold;
}
.archive-news .article-news__topbox {
  margin-bottom: var(--gutter-narrow);
}
.archive-news .article-news__topbox .icon-new {
  margin-left: 0.25em;
  margin-bottom: 0.35em;
}
.archive-news .article-news__thumbnail {
  width: 100%;
  max-width: 600px;
  margin: 0 auto var(--gutter-narrow);
}
.archive-news .modal-overlay {
  display: none;
}
.archive-news .modal-overlay.active {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
}

/*************** development ****************/
/* archive */
.post-type-archive-development .pagettlbox,
.post-type-archive-development_en .pagettlbox {
  background-image: url(../img/development/bg_pagettl--development.png);
}

.dev-archive__outlinebox {
  background: #F7F7F7;
}
.dev-archive__outlinemain {
  padding-top: var(--gutter);
}
.dev-archive__outlineimg {
  max-width: 500px;
  margin: var(--gutter-narrow) auto 0;
}
.dev-archive__post {
  padding: var(--gutter) 0;
}
.dev-archive__postitem {
  background: #F7F7F7;
  padding: 5%;
}
.dev-archive__postitem:nth-of-type(n+2) {
  margin-top: var(--gutter-narrow);
}
.dev-archive__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 3/2;
  margin: 0 auto var(--gutter-narrow);
}
.dev-archive__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.dev-archive__postitemTtl {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5em;
}
.dev-archive__btn {
  width: 12em;
  margin: var(--gutter-narrow) auto 0;
}
.dev-archive__btmtxt {
  margin-bottom: var(--gutter-narrow);
}

/* single */
.single-development .pagettlbox,
.single-development_en .pagettlbox {
  background-image: url(../img/development/bg_pagettl--development.png);
}

.wp-wysiwyg--development h1, .wp-wysiwyg--development h2, .wp-wysiwyg--development h3, .wp-wysiwyg--development h4 {
  font-weight: 700;
  margin-bottom: 1em;
  font-size: 1.125rem;
}
.wp-wysiwyg--development li {
  padding-left: 1.5em;
  margin-bottom: 1em;
  position: relative;
}
.wp-wysiwyg--development li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  background: #BFBFBF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1rem;
  transform: translateY(-50%);
}
.wp-wysiwyg--development hr {
  color: #E3E3E3 !important;
  margin: var(--gutter-narrow) 0;
}
.wp-wysiwyg--development p {
  margin: 1em 0;
}
.wp-wysiwyg--development > div {
  margin: var(--gutter-narrow) 0;
}
.wp-wysiwyg--development img, .wp-wysiwyg--development iframe, .wp-wysiwyg--development video, .wp-wysiwyg--development audio, .wp-wysiwyg--development embed {
  width: auto;
  height: auto;
  max-width: 100%;
}
.wp-wysiwyg--development iframe[title="YouTube video player"] {
  width: initial;
  height: initial;
  aspect-ratio: 16/9;
}

.dev-single__mainttl {
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 1em;
}
.dev-single__mainimgarea {
  max-width: 500px;
}
.dev-single__mainimgarea .main-arrows {
  text-align: center;
  margin-top: 0.5em;
  color: #BFBFBF;
}
.dev-single__mainimgarea .main-now-count, .dev-single__mainimgarea .main-next {
  color: #00B9C1;
}
.dev-single__box01 {
  background: #F7F7F7;
  padding: var(--gutter) 0;
  margin-top: var(--gutter);
}
.dev-single__boxitem:nth-of-type(n+2) {
  margin-top: var(--gutter);
}
.dev-single__box01__itemttl {
  font-weight: 700;
  font-size: 1.5rem;
  color: #00B9C1;
  line-height: 1;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #E3E3E3;
  margin-bottom: 2em;
}
.dev-single__box01__itemttl .font-en {
  font-size: 4rem;
  font-weight: 400;
  vertical-align: middle;
  margin-right: 1em;
}
.dev-single__boxitem {
  margin-top: var(--gutter);
}
.dev-single__box01__itemimg {
  max-width: 500px;
}
.dev-single__randombox {
  margin-top: var(--gutter);
}
.dev-single__otherbox {
  margin-top: var(--gutter);
}
.dev-single__otherbox .content-wrapper {
  background: #F7F7F7;
  padding: var(--gutter) 0;
}
.dev-single__otherttl {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.dev-single__otheritemttl {
  font-weight: 700;
}
.dev-single__otherimg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/*************** strength ****************/
.page-template-page-our-strengths .pagettlbox,
.page-template-page-our-strengths-en .pagettlbox {
  background-image: url(../img/strength/bg_pagettl--strength.png);
}

.strength__paticularbox {
  background: #F7F7F7;
  padding: var(--gutter) 0;
}
.strength__paticularinner {
  margin-top: var(--gutter);
}
.strength__paticularitem {
  padding-bottom: var(--gutter);
  border-bottom: solid 1px #E3E3E3;
}
.strength__paticularitem:nth-of-type(n+2) {
  padding-top: var(--gutter);
}
.strength__paticularlabel span {
  display: block;
}
.strength__paticularlabel .font-en {
  color: #00B9C1;
  margin-bottom: 1em;
}
.strength__paticularlabel .font-ja {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.strength__paticularlink {
  margin-top: 2em;
}
.strength__supportbox {
  margin-top: var(--gutter-wide);
}
.strength__supportintro {
  margin-bottom: var(--gutter);
}
.strength__supportitem {
  background: #F7F7F7;
  padding: var(--gutter-narrow) 2.5%;
}
.strength__supportlabel {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.strength__supportimg {
  margin-bottom: 1em;
}

/*************** products ****************/
.page-template-page-products .pagettlbox,
.page-template-page-products-en .pagettlbox {
  background-image: url(../img/products/bg_pagettl--product.png);
}

.products__inner:nth-of-type(1) {
  margin-bottom: var(--gutter);
}
.products__item {
  border: solid 1px #E3E3E3;
  border-radius: 1em;
  padding: var(--gutter-narrow) 2.5%;
}
.products__item:nth-child(n+2) {
  margin-top: var(--gutter-narrow);
}
.products__iteminbox {
  width: 160px;
}
.products__itemlogo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: var(--gutter-supernarrow);
}
.products__itemlogo img {
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
}
.products__itembtn a {
  border-color: #00B9C1;
  height: 2.8em;
}
.products__itembtn a .btn-label {
  font-size: max(0.67rem, 10px);
}
.products__itembtn a .btn-label img {
  display: inline;
  vertical-align: text-top;
  width: 12.5px;
  margin-left: 3px;
}
.products__companyname {
  font-weight: bold;
  margin-bottom: 1em;
}
.products__companydetail {
  font-size: 0.89rem;
}

/*************** careers ****************/
.page-template-page-careers .pagettlbox,
.page-template-page-careers-en .pagettlbox {
  background-image: url(../img/careers/bg_pagettl--careers.png);
}

#container.careerspage {
  padding-bottom: 0 !important;
}

#careers__requirementblock {
  margin-bottom: var(--gutter-wide);
}

#careers__intvblock {
  margin-top: var(--gutter-wide);
  background: #F7F7F7;
  padding: var(--gutter) 0 var(--gutter-wide);
}

.careers__anchor {
  scroll-padding-top: 5rem;
}
.careers__item {
  background: #F7F7F7;
  padding: var(--gutter-narrow) 2.5%;
  margin-bottom: var(--gutter);
}
.careers__category {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.careers__catch {
  margin: 0 2.5% var(--gutter-narrow);
}
.careers__detailitem, .careers__applicantlist {
  background: #FFF;
  padding: var(--gutter-narrow) 2.5%;
}
.careers__detailitem {
  margin-bottom: var(--gutter-supernarrow);
}
.careers__detaillabel {
  color: #00B9C1;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.careers__detaillabel:nth-of-type(2) {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: solid 1px #E3E3E3;
}
.careers__applicantitem:nth-child(n+2) {
  margin-top: 1.5em;
}
.careers__applicantlabel {
  font-weight: 700;
}
.careers__contactbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: var(--gutter-narrow) 0;
  background: #00B9C1;
  color: #FFF;
  padding: var(--gutter-narrow) 5%;
  margin-top: var(--gutter);
}
.careers__contactinner span {
  display: block;
}
.careers__contactintro {
  margin-bottom: 1.5em;
}
.careers__contactTtl .font-ja {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.25em;
}
.careers__contactTtl .font-en {
  font-size: 1.5rem;
}
.careers__contactbtn {
  width: 30%;
  min-width: 15em;
  font-size: 1.125rem;
}
.careers__contactbtn a {
  height: 4em !important;
}
.careers__intvcatch {
  color: #F7F7F7;
  font-weight: 700;
}
.careers__intvcopy {
  font-size: 1.5rem;
}
.careers__intvprofbox {
  margin: var(--gutter-narrow) 0;
}
.careers__intvproflabel {
  color: #00B9C1;
  font-size: 1.125rem;
  margin-bottom: 1em;
}
.careers__intvprofitem {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 5%;
  padding: 0 2.5%;
}
.careers__intvprofimg {
  width: 98px;
  height: 98px;
}
.careers__intvprofdetail {
  width: calc(95% - 98px);
}
.careers__intvprofpost {
  font-size: 0.75rem;
  font-weight: 500;
}
.careers__intvprofname {
  font-size: 0.89rem;
  font-weight: 500;
  margin-bottom: 1em;
}
.careers__intvproftxt {
  font-size: 0.75rem;
}
.careers__intvcont {
  background: #FFF;
  padding: var(--gutter-narrow) 5%;
}
.careers__intvunit {
  margin-bottom: 2em;
}
.careers__intvtxt {
  margin-bottom: 0.5em;
}
.careers__intvtxt .name {
  font-weight: 500;
}
.careers__intvunitTtl {
  font-weight: 700;
  margin-bottom: 1em;
  color: #00B9C1;
  font-size: 1.125rem;
}
.careers__intvimg--only {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: var(--gutter-narrow) 5%;
  margin-top: var(--gutter-narrow);
}
.careers__intvimg--only img {
  min-width: 280px;
  width: 37.5%;
}

/*************** company ****************/
.page-template-page-company .pagettlbox,
.page-template-page-company-en .pagettlbox {
  background-image: url(../img/company/bg_pagettl--company.png);
}

.company__main > *:nth-of-type(n+2) {
  margin-top: var(--gutter);
}
.company__messagetxt {
  text-indent: 1em;
  margin-bottom: 0.75em;
}
.company__messagetxt--author span {
  display: block;
  text-align: right;
}
.company__messagetxt--author span.name {
  font-weight: bold;
}
.company__outline--address .map {
  margin: 1em 0;
}
.company__outline--address .map .mapwrap {
  width: 100%;
  max-width: 390px;
  height: auto;
  aspect-ratio: 5/4;
}
.company__outline--address .map .mapwrap iframe {
  height: 100%;
}
.company__policyitem {
  margin-bottom: var(--gutter-supernarrow);
}
.company__policycont {
  display: none;
  padding: var(--gutter-narrow) 0;
}
.company__policylist .label {
  color: #00B9C1;
  margin-bottom: 1em;
}
.company__policylist .cont {
  margin-bottom: 2em;
}
.company__policysign span {
  display: block;
  text-align: right;
}
.company__policylabel {
  background: #F7F7F7;
  font-size: 1.125rem;
  padding: 1.5em calc(2.5% + 80px) 1.5em 1.5em;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
.company__policylabel::after {
  content: "+";
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 80px;
  height: 40px;
  color: #FFF;
  background: #00B9C1;
  border-radius: 50vh;
  position: absolute;
  top: 50%;
  right: 2.5%;
  transform: translateY(-50%);
}
.company__policylabel.open::after {
  content: "ー";
}
.company__policycont img.certificate {
  width: 400px;
  max-width: 50%;
  margin: var(--gutter-narrow) auto;
  border: solid 1px #E3E3E3;
}

/*************** contact page ****************/
.page-template-page-contact .pagettlbox,
.page-template-page-contact-en .pagettlbox {
  background-image: url(../img/contact/bg_pagettl--contact.png);
}

.contact__introbox, .contact__formbox {
  max-width: 800px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
.contact__introtxt span {
  display: block;
  font-size: 0.89rem;
}
.contact__thankstxt {
  text-align: center;
  margin-bottom: var(--gutter);
}
.contact__thanksbtn {
  width: 12em;
  margin: 0 auto;
}
.contact__thanksbtn a .btn-label {
  padding: 0 1em;
}

/*************** privacy policy page ****************/
.page-template-page-privacy .pagettlbox,
.page-template-page-privacy-en .pagettlbox {
  background-image: url(../img/company/bg_pagettl--company.png);
}

.privacy__unit {
  margin-bottom: var(--gutter);
}

/*************** error404page ****************/
#pagefv--404 {
  padding: var(--gutter-narrow) 0;
  background: #F7F7F7;
}
#pagefv--404 .pagefv__ttl {
  text-align: center;
}
#pagefv--404 .pagefv__ttl > span {
  display: block;
}
#pagefv--404 .pagefv__ttl .font-en {
  font-size: 2.25rem;
}
#pagefv--404 .pagefv__ttl .font-ja {
  font-weight: 700;
  font-size: 1.5rem;
}

.missing__txt {
  text-align: center;
  margin-bottom: 3em;
}

.missing__btn {
  width: 12em;
  margin: 0 auto;
}
.missing__btn a .btn-label {
  padding: 0 1em;
}

/*/////////////////////////////////////////////////////////// 

 Media Query - Small（576px〜） 

///////////////////////////////////////////////////////////*/
@media (min-width: 575.9px) {
  /*************** footer : sm ****************/
  .footer__contactinner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: var(--gutter-narrow) 0;
  }
  /*************** news ****************/
  .archive-news__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: var(--gutter-supernarrow) 2.5%;
  }
  .archive-news__item {
    width: 47.5%;
  }
  .archive-news__ttl, .archive-news__cont {
    min-height: 3.6em;
  }
  /*************** products ****************/
  .products__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 2.5%;
  }
  .products__itemtxtbox {
    width: calc(97.5% - 160px);
  }
}
/*/////////////////////////////////////////////////////////// 

 Media Query - Medium（768px〜） 

///////////////////////////////////////////////////////////*/
@media (min-width: 767.8px) {
  /*************** table ****************/
  table.tbl-data {
    border-top: solid 1px #E3E3E3;
  }
  table.tbl-data tr {
    border-bottom: solid 1px #E3E3E3;
  }
  table.tbl-data th {
    width: 30%;
  }
  table.tbl-data td {
    width: 70%;
  }
  /*************** form ****************/
  /* list-form */
  .list-form__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
  }
  .list-form__label {
    width: 40%;
  }
  .list-form__data {
    width: 60%;
  }
  /*************** content-wrapper ****************/
  .content-wrapper.has-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row-reverse;
  }
  .content-wrapper.has-nav > *:not(nav) {
    width: calc(100% - 240px);
  }
  .content-wrapper.has-nav > nav {
    width: 240px;
    position: sticky;
    top: 5.5rem;
    left: 0;
    padding-right: var(--gutter-narrow);
  }
  .content-wrapper.has-nav > nav p {
    font-weight: 700;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    border-bottom: solid 1px currentColor;
  }
  .content-wrapper.has-nav > nav li {
    margin-bottom: 1em;
  }
  .content-wrapper.has-nav > nav a.current {
    color: #00B9C1;
  }
  /*************** footer : md ****************/
  .footer__contactbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
  }
  .footer__contactTxtbox {
    width: 56.06%;
    border-top: solid 1px #FFF;
    padding-top: 1rem;
  }
  .footer__mainbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-top: var(--gutter-wide);
    margin-bottom: var(--gutter-narrow);
  }
  .footer__navlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    gap: 1.5em;
    font-size: 0.89rem;
    width: 23em;
  }
  .footer__navitem:nth-child(-n+3) {
    order: 0;
  }
  .footer__navitem:nth-child(n+4) {
    order: 1;
  }
  .footer__btmbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  /*************** indexpage : md ****************/
  /* aboutblock */
  .aboutblock {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: var(--gutter-narrow) var(--gutter);
  }
  .aboutblock__inner {
    width: 50%;
  }
  .aboutblock__txtbox {
    max-width: 36.25rem;
  }
  .aboutblock__imgarea {
    width: calc(50% - var(--gutter));
  }
  /* strengthblock */
  .strengthblock__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: var(--gutter-narrow) var(--gutter);
  }
  .strengthblock__txtarea {
    width: 50%;
  }
  .strengthblock__imgarea {
    width: calc(50% - var(--gutter));
  }
  /* productblock */
  .productblock {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: var(--gutter-narrow) var(--gutter);
  }
  .productblock__inner {
    width: 50%;
  }
  .productblock__imgwrap {
    width: calc(50% - var(--gutter));
  }
  /* customblock */
  .customblock {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: var(--gutter-narrow) var(--gutter);
    padding: var(--gutter);
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .customblock__inner {
    width: 50%;
  }
  .customblock__imgwrap {
    width: calc(50% - var(--gutter));
  }
  /* bottomblock */
  .bottomblock__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
  }
  .bottomblock__inner > div {
    width: 50%;
    padding-top: var(--gutter);
    padding-bottom: var(--gutter);
  }
  /*************** news ****************/
  .archive-news__item {
    width: 31.6666666667%;
  }
  /*************** development ****************/
  /* single */
  .dev-single__mainimgarea {
    margin: var(--gutter-narrow) auto 0;
  }
  .dev-single__otherlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: var(--gutter-narrow) 5%;
  }
  .dev-single__otheritem {
    width: 30%;
  }
  .dev-single__otherimg {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .dev-single__otheritemttl {
    margin-top: 1em;
  }
  /*************** strength ****************/
  .strength__paticularinner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 0 var(--gutter);
  }
  .strength__paticularimg {
    width: 43.104%;
    height: auto;
    aspect-ratio: 500/367;
    position: sticky;
    top: 5.5rem;
  }
  .strength__paticularimg img {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .strength__paticularimg img.active {
    visibility: visible;
    opacity: 100%;
  }
  .strength__paticularmain {
    width: calc(56.896% - var(--gutter));
  }
  .strength__paticularlink {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: row;
    gap: 2em;
  }
  .strength__paticularbtn {
    width: 15em;
  }
  .strength__supportlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    gap: 2.5%;
  }
  .strength__supportitem {
    border-radius: 1rem;
    width: 31.6666666667%;
  }
  .strength__supportlabel {
    text-align: center;
  }
  /*************** careers ****************/
  .careers__intvitem#area-intv01 .careers__intvcatch {
    background: url(../img/careers/bg_intvttl_02.png) no-repeat top left/cover;
  }
  .careers__intvitem#area-intv02 {
    margin-top: var(--gutter);
  }
  .careers__intvitem#area-intv02 .careers__intvcatch {
    background: url(../img/careers/bg_intvttl_02.png) no-repeat top left/cover;
  }
  .careers__intvcatch {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    height: auto;
    aspect-ratio: 900/281;
    padding: 0 5% var(--gutter-supernarrow);
  }
  .careers__intvproflist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: var(--gutter-narrow) 0;
  }
  .careers__intvprofitem {
    width: 50%;
  }
  .careers__intvunit.has-img.flex {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 2.5%;
  }
  .careers__intvunit.has-img.flex .careers__intvimg {
    width: 38.5%;
    flex-shrink: 0;
  }
  .careers__pagenavlist.list--requirement {
    margin-bottom: var(--gutter-narrow);
  }
  /*************** company ****************/
  .company__messageimg {
    max-width: 350px;
    margin: 0 auto var(--gutter-narrow);
  }
  .company__pagenav {
    font-size: 0.89rem;
  }
}
/*/////////////////////////////////////////////////////////// 

 Media Query - Large（992px〜） 

///////////////////////////////////////////////////////////*/
@media (min-width: 992px) {
  /*************** indexpage : lg ****************/
  /* firstview */
  .fvblock .slide-wrap {
    height: 80vh;
    overflow: hidden;
  }
  .fvblock .slick-list, .fvblock .slick-track, .fvblock .slide {
    height: 100%;
  }
  .fvblock img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  /*************** development ****************/
  /* archive */
  .dev-archive__outlinebox .content-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: var(--gutter);
    padding: var(--gutter) 0;
  }
  .dev-archive__outlinemain {
    padding-top: 0;
  }
  .dev-archive__outlineimg {
    margin: 0;
  }
  .dev-archive__postlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    gap: var(--gutter-narrow) 2.5%;
  }
  .dev-archive__postitem {
    width: 31.6666666667%;
    padding: 0;
    margin: 0 !important;
    position: relative;
  }
  .dev-archive__img {
    max-width: initial !important;
    margin: 0 !important;
  }
  .dev-archive__postiteminner {
    padding: var(--gutter-narrow);
  }
  .dev-archive__postitemTtl {
    min-height: 3.6em;
  }
  .dev-archive__postTxt {
    margin-bottom: 5.35rem;
  }
  .dev-archive__btn {
    position: absolute;
    bottom: var(--gutter-narrow);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  /* single */
  .dev-single__mainview {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: var(--gutter-narrow) 5%;
  }
  .dev-single__mainimgarea {
    width: 43%;
    flex-shrink: 0;
    margin: 0;
  }
  .dev-single__box01__iteminner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: var(--gutter-narrow) 5%;
  }
  .dev-single__box01__itemimg {
    width: 43%;
    flex-shrink: 0;
    margin: 0;
  }
  .dev-single__box01__itemtxt {
    flex-grow: 1;
  }
  /*************** careers ****************/
  .careers__applicantitem {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
  }
  .careers__applicantlabel {
    flex-shrink: 0;
    width: 6em;
    border-right: dotted 1px #BFBFBF;
  }
  .careers__applicantcont {
    padding-left: 2em;
  }
  /*************** company ****************/
  .company__messageinner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: var(--gutter-narrow) 4%;
  }
  .company__messageimg {
    width: 36%;
    margin: 0;
  }
  .company__messagetxtbox {
    width: 60%;
  }
}
/*/////////////////////////////////////////////////////////// 

 Media Query - Content（1160px〜） 

///////////////////////////////////////////////////////////*/
@media (min-width: 1160px) {
  /*************** development ****************/
  /* archive */
  .dev-archive__outlinebox .content-wrapper {
    padding: 0;
  }
  .dev-archive__outlineimg {
    width: 50%;
    flex-shrink: 0;
  }
}
/*/////////////////////////////////////////////////////////// 

 Media Query - Content-wide（1320px〜） 

///////////////////////////////////////////////////////////*/
@media (min-width: 1320px) {
  /*************** indexpage : cont-wide ****************/
  /* customblock */
  .customblock {
    width: 1320px;
  }
  /* bottomblock */
  .bottomblock__item--company {
    padding-left: max(5%, 50vw - 660px) !important;
  }
  .bottomblock__item--recruit {
    padding-right: calc(50vw - 660px) !important;
  }
  .indexpage-ja .bottomblock--company {
    padding-right: 0 !important;
  }
}
/*/////////////////////////////////////////////////////////// 

 Media Query - Extra large（1440px〜） 

///////////////////////////////////////////////////////////*/
@media (min-width: 1440px) {
  /*************** indexpage : xl ****************/
  /* newsblock */
  .newsblock__ttlwrap {
    width: 36vw;
    padding: 1.75em 0;
  }
  .newsblock__ttl {
    margin-left: calc(50vw - 600px);
  }
  .newsblock__article {
    width: calc(14vw - 2.5% + 600px);
  }
}
/*/////////////////////////////////////////////////////////// 

 Media Query - Small Medium（〜768px） 

///////////////////////////////////////////////////////////*/
@media (max-width: 767.8px) {
  /*************** content-wrapper ****************/
  .content-wrapper.has-nav > nav {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-top: solid 1px #E3E3E3;
    font-size: 0.75rem;
  }
  .content-wrapper.has-nav > nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
  }
  .content-wrapper.has-nav > nav li:nth-child(n+2) {
    border-left: dotted 1px #E3E3E3;
  }
  .content-wrapper.has-nav > nav a {
    padding: 0.5em;
    text-align: center;
  }
  .content-wrapper.has-nav > nav a.current {
    background: #C0F0F2;
    color: #00B9C1;
    font-weight: 700;
  }
  /*************** table ****************/
  table.tbl-data th, table.tbl-data td {
    display: inline-block;
    width: 100%;
    padding: 1em 2.5%;
  }
  table.tbl-data th {
    background: #F7F7F7;
  }
  table.tbl-data-alt {
    border-top: solid 1px #E3E3E3;
    overflow: hidden;
  }
  table.tbl-data-alt tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    overflow-x: scroll;
  }
  table.tbl-data-alt tr.tbl-row-label {
    width: 35%;
  }
  table.tbl-data-alt tr.tbl-row-cont {
    width: 65%;
  }
  table.tbl-data-alt th, table.tbl-data-alt td {
    border-bottom: solid 1px #E3E3E3;
  }
  table.tbl-data-alt td {
    white-space: nowrap;
  }
  /*************** form ****************/
  /* list-form */
  .list-form__label, .list-form__data {
    width: 100%;
  }
  .list-form__label {
    margin-bottom: 1em;
  }
  /*************** footer : smd ****************/
  .footer__contactTxtbox {
    margin-bottom: var(--gutter-wide);
  }
  .footer__contactTxt {
    text-align: center;
    margin-top: var(--gutter-narrow);
  }
  .footer__logo {
    margin-right: auto;
    margin-left: auto;
  }
  .footer__companyinfo {
    text-align: center;
  }
  .footer__snslist {
    justify-content: center;
    margin-bottom: var(--gutter);
  }
  .footer__btmbox {
    text-align: center;
  }
  /*************** indexpage : smd ****************/
  /* aboutblock */
  .aboutblock {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .aboutblock__inner {
    margin-bottom: var(--gutter);
  }
  .aboutblock__imgarea {
    max-width: 33.75rem;
    margin-right: auto;
    margin-left: auto;
  }
  /* strengthblock */
  .strengthblock__inner > div {
    margin-right: auto;
    margin-left: auto;
  }
  .strengthblock__imgarea {
    max-width: 33.75rem;
  }
  /* productblock */
  .productblock {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .productblock__inner {
    margin-bottom: var(--gutter);
  }
  .productblock__imgwrap {
    max-width: 33.75rem;
    margin-right: auto;
    margin-left: auto;
  }
  /* customblock */
  .customblock {
    padding: var(--gutter) 5%;
  }
  .customblock__inner {
    margin-bottom: var(--gutter);
  }
  /* bottomblock */
  .bottomblock__inner > div {
    padding: var(--gutter-wide) 5%;
  }
  /*************** development ****************/
  /* single */
  .dev-single__mainimgarea {
    margin: var(--gutter-narrow) auto 0;
  }
  .dev-single__box01__itemttl .font-en {
    margin-right: 0.5em;
    font-size: 2.25rem;
  }
  .dev-single__box01__itemimg {
    margin: 0 auto var(--gutter-narrow);
  }
  .dev-single__otheritem a {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 5%;
  }
  .dev-single__otheritem:nth-of-type(n+2) {
    margin-top: var(--gutter-narrow);
  }
  .dev-single__otherimg {
    width: 90px;
    height: 60px;
  }
  .dev-single__otheritemttl {
    width: calc(95% - 90px);
  }
  /*************** strength ****************/
  .strength__paticularthumb {
    margin: var(--gutter-narrow) auto 0;
    max-width: 400px;
  }
  .strength__paticularitem:first-child {
    padding-top: var(--gutter);
    border-top: solid 1px #E3E3E3;
  }
  .strength__paticularbtn {
    width: 15em;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .strength__paticularbtn:nth-of-type(n+2) {
    margin-top: 1em;
  }
  .strength__supportbox.content-width {
    width: 100% !important;
  }
  .strength__supportbox.content-width h2 {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .strength__supportintro {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .strength__supportitem {
    padding: var(--gutter-narrow) 5%;
  }
  .strength__supportimg {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
  }
  /*************** careers ****************/
  .careerspage .content-wrapper.content-width#careers__requirementblock {
    width: 100% !important;
  }
  .careerspage #careers__intvblock .content-wrapper.content-width {
    width: 95% !important;
  }
  .careers__requirementbox h2 {
    margin-left: 2.5%;
  }
  .careers__detailitem {
    padding: var(--gutter-narrow) 5%;
  }
  .careers__intvitem#area-intv01 .careers__intvcatch {
    background: url(../img/careers/bg_intvttl_02.png) no-repeat top center/cover;
  }
  .careers__intvitem#area-intv02 {
    margin-top: var(--gutter);
  }
  .careers__intvitem#area-intv02 .careers__intvcatch {
    background: url(../img/careers/bg_intvttl_02.png) no-repeat top center/cover;
  }
  .careers__intvcatch {
    padding: 6em 5% var(--gutter-supernarrow);
  }
  .careers__intvprofitem:nth-of-type(n+2) {
    margin-top: var(--gutter-narrow);
  }
  .careers__intvimg {
    margin-top: var(--gutter-narrow);
  }
  .careers__intvimg img {
    max-width: 280px;
    margin: 0 auto;
  }
  .careers__pagenavttl {
    text-align: center;
    background: #BFBFBF;
    padding: 0.25em;
  }
  .careers__pagenavlist {
    width: 100%;
  }
  .careers__pagenavitem {
    width: 50%;
  }
  .careers__pagenavlist.list--requirement li {
    /*width: calc(100% / 3) !important;*/
    width: 50%;
  }
  /*************** company ****************/
  .company__messageimg {
    width: 50%;
    margin: 0 auto var(--gutter-narrow);
  }
  .company__pagenavitem {
    width: 25%;
  }
}
/*/////////////////////////////////////////////////////////// 

 Media Query - Extra small（〜576px）

///////////////////////////////////////////////////////////*/
@media (max-width: 575.8px) {
  .header {
    height: 4rem;
  }
  .header__lang {
    font-size: 1rem;
  }
  .header__collapse {
    top: 4rem;
  }
  /*************** footer : Xs ****************/
  .footer__contactTtl {
    text-align: center;
  }
  .footer__contactbtn {
    margin: var(--gutter-narrow) auto;
  }
  .footer__companydetail span {
    display: block;
  }
  /*************** breadcrumb ****************/
  #bread {
    overflow-x: scroll;
  }
  /*************** indexpage : xs ****************/
  /* index > header */
  body.home .header.is-menu-open:not(.fixed)::after {
    opacity: 0.8;
  }
  /* mvblock */
  .mvblock__ttl {
    font-size: min(2.925rem, 8.3333333333vw);
  }
  /* noticeblock */
  .noticeblock__infoitem {
    width: 100%;
  }
  /*************** news ****************/
  .archive-news__item:nth-child(n+2) {
    margin-top: var(--gutter);
  }
  /*************** products ****************/
  .products__iteminbox {
    margin: 0 auto var(--gutter-narrow);
  }
  /*************** company ****************/
  .company__pagenavitem {
    width: 50%;
  }
  .company__pagenavitem:nth-child(odd) {
    border-left: none;
  }
  .company__pagenavitem:nth-child(-n+3) {
    border-bottom: dotted 1px #E3E3E3;
  }
  .company__policylabel {
    padding: 1.5em calc(2.5% + 50px) 1.5em 1.5em;
  }
  .company__policylabel::after {
    width: 50px;
    height: 30px;
  }
}