@charset "UTF-8";
/**
-----------------------------------------------------     header.scss   **/
.header {
  padding: 0 4%;
}
.header_inner {
  display: flex;
  align-items: center;
}

.branding {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 20px 0;
}
.branding > a {
  margin-right: auto;
}
.branding .logo-image {
  width: 236px;
}
.branding .telBox {
  display: none;
  align-items: center;
}
.branding .telBox p {
  width: 100%;
  margin-bottom: 0;
}
.branding .telIcon {
  width: 41px;
  margin-right: 16px;
}
.branding a {
  display: flex;
  flex-direction: column;
}
.branding a p:first-of-type {
  font-size: 20px;
  font-weight: 800;
  text-align: right;
}
.branding a p:last-of-type {
  font-size: 14px;
}
.branding a p:last-of-type span {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .branding .telBox {
    display: flex;
  }
}

.modal_container {
  position: fixed;
  width: 50%;
  height: 100%;
  right: -100%;
  transition: right 0.6s ease-in-out;
  background: #fefefe;
  z-index: 20;
}
.modal_container[aria-hidden=false] {
  right: 0;
  transition: right 0.6s ease-in-out;
  overflow-y: scroll;
}

.overlay {
  background-color: #333;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.6s, visibility 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 10; /* メニューよりも下にする */
}
.overlay.active {
  opacity: 0.8;
  visibility: visible;
}

.g-nav {
  display: none;
  align-items: center;
  width: 100%;
  height: 46px;
}
@media screen and (min-width: 768px) {
  .g-nav {
    display: flex;
  }
}

.g-nav-list {
  width: 100%;
}

.menu {
  display: flex;
  align-items: center;
}
.menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16.6666666667%;
  height: 20px;
  border-right: 1px solid #cecece;
}
.menu li:first-of-type {
  border-left: 1px solid #cecece;
}
.menu li a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.blankBox {
  width: 100%;
  height: 20px;
  background: #d9d9d9;
}

.contactBtn a {
  display: none;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 42px;
  color: #fefefe;
  font-weight: 600;
  margin-left: 24px;
  background: rgb(0, 198, 255);
  background: linear-gradient(90deg, rgb(0, 198, 255) 0%, rgb(0, 114, 255) 100%);
  border-radius: 21px;
}
@media screen and (min-width: 768px) {
  .contactBtn a {
    display: flex;
  }
}

/**
-----------------------------------------------------     front.scss   **/
.main_visual {
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
}
.main_visual .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 4%;
}
.main_visual .textBox {
  text-align: left;
}
.main_visual .textBox h1 {
  font-size: clamp(30px, 6vw, 48px);
  text-align: right;
}
@media screen and (min-width: 768px) {
  .main_visual .wrapper {
    align-items: center;
  }
  .main_visual .textBox {
    width: 50%;
    text-align: right;
  }
}

.contentList {
  padding: 40px 4% 18px;
}
.contentList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contentList ul li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 32px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(26, 19, 17, 0.2);
}
.contentList ul h2 {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #00469D;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 4px;
}
.contentList ul h2::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #00469D;
  margin-left: 8px;
}
.contentList ul figure {
  position: relative;
  overflow: hidden;
  padding-top: 61.09%;
}
.contentList ul figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contentList ul p {
  font-weight: 500;
  margin: 8px 0;
}
@media screen and (min-width: 576px) {
  .contentList ul li {
    width: calc(50% - 16px);
  }
}
.contentList ul button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 164px;
  height: 26px;
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
  transition: all 0.3s;
}
.contentList ul button .arrow {
  width: 6px;
  height: 6px;
  border-top: 2px solid #fefefe;
  border-right: 2px solid #fefefe;
  transform: rotate(45deg);
  margin-left: 8px;
}
@media screen and (min-width: 768px) {
  .contentList ul li {
    width: calc(33.3333333333% - 24px);
  }
}

.jobList {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 4%;
  background: #F6F6F6;
}
.jobList h2 {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #00469D;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 32px;
}
.jobList h2::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #00469D;
  margin-left: 20px;
}
.jobList h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: none;
}
.jobList ul {
  margin-bottom: 32px;
}
.jobList ul li {
  padding: 24px;
}
.jobList ul li:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}
.jobList ul li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 137px;
  font-size: 14px;
  color: #00469D;
  margin-left: auto;
  padding-left: 4px;
}
.jobList ul li a::after {
  content: "";
  width: 100%;
  height: 4px;
  background-image: url(../assets/images/link_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: -12px;
}
@media screen and (min-width: 576px) {
  .jobList ul {
    display: flex;
    flex-wrap: wrap;
  }
  .jobList ul li {
    width: 50%;
    border-bottom: none;
  }
  .jobList ul li:not(:last-of-type) {
    border-right: 1px solid #ccc;
    border-bottom: none;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .jobList ul li {
    width: 33.3333333333%;
  }
}

.contactContainer {
  padding: 80px 4%;
}
.contactContainer h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 64px;
}
.contactContainer .flexBox {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.contactContainer .telBox {
  display: flex;
  margin-bottom: 56px;
}
.contactContainer .telBox a {
  display: flex;
  flex-direction: column;
  font-size: 32px;
  font-weight: 800;
  text-align: right;
}
.contactContainer .telBox p {
  font-size: 18px;
  text-align: right;
}
.contactContainer .telBox p span {
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .contactContainer .telBox {
    margin-bottom: 0;
  }
}
.contactContainer .tel_icon {
  width: 95px;
  height: 90px;
  margin-right: 18px;
}
.contactContainer .formBox button {
  width: 365px;
  height: 80px;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto;
  border-radius: 40px;
}
@media screen and (min-width: 768px) {
  .contactContainer .flexBox {
    flex-direction: row;
  }
}

.linkWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.linkWrap .link-btn {
  width: 290px;
  height: 31px;
  font-weight: 500;
  margin: 0;
  padding: 0 21px;
  white-space: nowrap;
}
.linkWrap .l_line,
.linkWrap .r_line {
  width: 100%;
  height: 1px;
  background: #00469D;
}
.linkWrap .l_line {
  margin-right: 16px;
}
.linkWrap .r_line {
  margin-left: 16px;
}

/**
---------------------------------------------     page.scss   **/
h3 {
  font-size: 32px;
  font-weight: 700;
  border-bottom: 13px solid;
  -o-border-image: linear-gradient(to right, rgb(0, 198, 255) 0%, rgb(0, 114, 255) 100%) 1;
     border-image: linear-gradient(to right, rgb(0, 198, 255) 0%, rgb(0, 114, 255) 100%) 1;
  margin-bottom: 40px;
  padding-bottom: 16px;
}

.employee {
  text-align: right;
}

article {
  padding-bottom: 40px;
}

.page-visual {
  display: flex;
  width: 100%;
  height: 190px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 4%;
}

.visual-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 1010px;
  font-size: 32px;
  color: #00469D;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 auto;
  line-height: 1.2;
}
.visual-header span {
  display: block;
  font-size: 24px;
  text-align: right;
  border-top: 2px solid #00469D;
}

.lead {
  padding: 72px 4% 56px;
}
.lead h2 {
  font-size: 40px;
  color: #00469D;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  margin-bottom: 72px;
}
.lead p {
  font-size: 24px;
  font-weight: 500;
  line-height: 2.4;
  text-align: center;
  word-break: auto-phrase;
  margin-bottom: 72px;
}

.movie {
  position: relative;
  margin-top: 24px;
  margin-bottom: 40px;
}
.movie iframe {
  width: 100%;
  height: 256px;
  background: #ccc;
}
@media screen and (min-width: 576px) {
  .movie iframe {
    height: 624px;
  }
}
.movie .icon {
  position: absolute;
  width: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
}
.movie_wrap {
  padding-bottom: 48px;
}
.movie_wrap p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 32px;
}
.movie_contents {
  padding-bottom: 48px;
}
.movie_contents figure {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  padding-top: 61.783%;
}
.movie_contents figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie_contents p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 32px;
}

.voice_contents {
  padding: 56px 4%;
}
.voice_contents article {
  padding-bottom: 40px;
}
.voice_contents .interview dl {
  margin-bottom: 80px;
}
.voice_contents .interview dl dt,
.voice_contents .interview dl dd {
  display: flex;
  align-items: flex-start;
}
.voice_contents .interview dl dt .balloon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -22px;
  border: 12px solid transparent;
  border-right: 12px solid #00c6ff;
}
.voice_contents .interview dl dd {
  justify-content: flex-end;
  margin-top: 16px;
}
.voice_contents .interview dl dd .mark {
  order: 2;
}
.voice_contents .interview dl dd .mark::after {
  position: absolute;
  display: block;
  content: "〇〇さん";
  width: 100%;
  left: 50%;
  bottom: -24px;
  font-size: 13px;
  letter-spacing: 0;
  transform: translateX(-50%);
}
.voice_contents .interview dl dd .balloon {
  order: 1;
  margin-left: 0;
  margin-right: 16px;
  flex-shrink: 16;
}
.voice_contents .interview dl dd .balloon::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  right: -22px;
  border: 12px solid transparent;
  border-left: 12px solid #00c6ff;
}
.voice_contents .interview dl .mark {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  color: #00c6ff;
  background: #fefefe;
  border: 2px solid #00c6ff;
  border-radius: 50%;
}
.voice_contents .interview dl .balloon {
  display: inline-block;
  position: relative;
  color: #fefefe;
  margin-left: 16px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #00c6ff;
}

.relationships_contents {
  padding: 56px 4%;
}
.relationships_contents article {
  padding-bottom: 80px;
}

.career_contents {
  padding: 56px 4%;
}
.career_contents table {
  width: 100%;
  border-collapse: collapse;
}
.career_contents tr:nth-of-type(1) td {
  background: #f6f6f6;
}
.career_contents tr:nth-of-type(n+2) td:nth-of-type(1) {
  background: #f6f6f6;
}
.career_contents td {
  border: 1px solid #ccc;
  padding: 8px 16px;
}
.career_contents figure {
  padding-bottom: 40px;
}

.entry_contents {
  padding: 56px 4%;
}
.entry_contents article h4 {
  display: flex;
  align-items: center;
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 16px;
  border-bottom: 4px solid #f7e400;
  line-height: 0;
}
.entry_contents article h4 span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: clamp(16px, 3vw, 20px);
  background: #f7e400;
  border-radius: 5px 5px 0 0;
  margin-right: 16px;
}
.entry_contents article p {
  font-size: clamp(16px, 3vw, 20px);
  margin-bottom: 40px;
}

.snow-monkey-form span.smf-item__label__text {
  word-break: auto-phrase;
}

.privacy-policy_contents {
  padding: 56px 4%;
}
.privacy-policy_contents h3:not(:first-of-type) {
  margin-top: 32px;
}
.privacy-policy_contents p {
  font-size: 20px;
}
.privacy-policy_contents ul {
  padding-left: 24px;
}
.privacy-policy_contents ul li {
  list-style: disc;
  margin-bottom: 16px;
}

/*   ________   投稿ページ  _________   */
.single .content-area {
  padding: 56px 4% 0;
}
.single .content.job {
  margin-top: 24px;
  margin-bottom: 56px;
}
.single .content.job table {
  width: 100%;
  border-collapse: collapse;
}
.single .content.job table tr {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .single .content.job table tr {
    flex-direction: row;
  }
}
.single .content.job table th,
.single .content.job table td {
  width: 100%;
  padding: 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.single .content.job table th {
  background: rgba(0, 198, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .single .content.job table th {
    width: 30%;
  }
}
.single .content.job table td .contactBtn a {
  display: flex;
  margin-top: 16px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .single .content.job table td {
    width: 70%;
  }
}
.single .content-header {
  margin-bottom: 24px;
}

/**
-----------------------------------------------------     footer.scss   **/
.footer {
  padding: 56px 4%;
  background: #f6f6f6;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-company {
  margin-bottom: 8px;
}
.footer-address {
  margin-bottom: 8px;
}
.footer-tel {
  display: flex;
  align-items: center;
}
.footer-nav {
  display: flex;
  padding: 24px 0;
  flex-wrap: wrap;
}
.footer-nav .menu-footer-nav01-container,
.footer-nav .menu-footer-nav02-container,
.footer-nav .menu-footer-nav03-container,
.footer-nav .menu-footer-nav04-container {
  border-left: 1px solid #ccc;
}
.footer-nav .menu-footer-nav01-container,
.footer-nav .menu-footer-nav02-container,
.footer-nav .menu-footer-nav03-container {
  padding-right: 18px;
}
.footer-nav .menu-footer-nav04-container {
  margin-top: 16px;
}
.footer-nav .menu {
  flex-direction: column;
  align-items: flex-start;
}
.footer-nav .menu li {
  width: auto;
  height: auto;
  white-space: nowrap;
  border: none;
}
.footer-nav .menu li a {
  padding: 4px 8px;
}
@media screen and (min-width: 600px) {
  .footer-nav .menu-footer-nav04-container {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .footer-area {
    display: flex;
    justify-content: space-between;
  }
  .footer-nav {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.area-info {
  width: 244px;
}

.copyright {
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .copyright {
    text-align: right;
  }
}

/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  overflow-y: scroll; /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible; /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted; /* Add a bordered underline effect in all browsers */
  text-decoration: none; /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects; /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder; /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic; /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number] {
  width: auto; /* Firefox 36+ */
}

[type=search] {
  -webkit-appearance: textfield; /* Safari 8+ */
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Safari 8 */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden; /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block; /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

/**
---------------------------------------------------------------------------------------     base.scss   **/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #1A1311;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  letter-spacing: 0.08em;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

* {
  box-sizing: border-box;
}

.sitewrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.inner {
  max-width: 1010px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner {
    display: flex;
    flex-direction: column;
  }
}

.attention {
  font-size: 14px;
  color: #ff0000;
  font-weight: 500;
}

p {
  margin-bottom: 16px;
}

/**
---------------------------------------------------------------------------------------     parts.scss   **/
/**************************************************************** toggle */
.toggle .openbtn {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.4s;
  z-index: 10;
}
.toggle .openbtn span {
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: #1A1311;
}
.toggle .openbtn span:nth-of-type(1) {
  top: 10px;
}
.toggle .openbtn span:nth-of-type(2) {
  top: 18px;
}
.toggle .openbtn span:nth-of-type(3) {
  top: 27px;
}
.toggle .openbtn::after {
  content: "MENU";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: #1A1311;
  font-size: 10px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .toggle {
    display: none;
  }
}

/**************************************************************** button */
button,
.link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 42px;
  color: #fefefe;
  font-weight: 800;
  margin-left: 24px;
  background: rgb(0, 198, 255);
  background: linear-gradient(90deg, rgb(0, 198, 255) 0%, rgb(0, 114, 255) 100%);
  border-radius: 21px;
}
button:hover,
.link-btn:hover {
  opacity: 0.8;
}
button.disabled,
.link-btn.disabled {
  opacity: 0.3;
}

.link-btn:hover {
  opacity: 1;
}

button.smf-button-control__control {
  font-weight: 500;
}

.topics button::after {
  right: 35px;
}

/**************************************************************** ページナビゲーション */
.pnavi {
  display: flex;
  justify-content: center;
  margin-bottom: 160px;
}
.pnavi .page-numbers {
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #1A1311;
  text-align: center;
  background: #f2f2f2;
  border: 2px solid #1A1311;
  margin-right: 20px;
  line-height: 50px;
}
.pnavi .page-numbers.current {
  color: #fefefe;
  background: #1A1311;
}

.next.page-numbers {
  position: relative;
}
.next.page-numbers::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #1A1311;
  border-right: 2px solid #1A1311;
  top: 50%;
  left: 45%;
  transform: translate(-45%, -50%) rotate(45deg);
}

.prev.page-numbers {
  position: relative;
}
.prev.page-numbers::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #1A1311;
  border-left: 2px solid #1A1311;
  top: 50%;
  left: 55%;
  transform: translate(-55%, -50%) rotate(-45deg);
}

.sentence-nav {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  border-top: 5px solid #1A1311;
  padding-top: 40px;
}
.sentence-nav .next-page a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.sentence-nav .next-page a::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  border-top: 2px solid #1A1311;
  border-left: 2px solid #1A1311;
}
.sentence-nav .prev-page a {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}
.sentence-nav .prev-page a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(135deg);
  border-top: 2px solid #1A1311;
  border-left: 2px solid #1A1311;
}

/**************************************************************** breadcrumb */
.breadcrumb {
  padding: 16px 4%;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.breadcrumbs li {
  display: flex;
  color: #a8aaac;
  white-space: nowrap;
}
.breadcrumbs li:first-of-type {
  color: #333;
  font-weight: 600;
}
.breadcrumbs li + li::before {
  content: ">";
  color: #1A1311;
  margin-right: 8px;
  margin-left: 8px;
}

/**************************************************************** modal */
.modaal-inner-wrapper {
  padding: 0 !important;
}
.modaal-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  color: #1A1311;
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(0deg, rgb(0, 198, 255) 0%, rgb(0, 114, 255) 100%);
  z-index: 15;
}
.modaal-container::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100vh;
  top: 0;
  filter: opacity(0.7);
}
.modaal-container .menu {
  flex-direction: column;
  align-items: center;
  padding-left: 0;
}
.modaal-container .menu li {
  width: 100%;
  margin-top: 40px;
  border-right: none;
}
.modaal-container .menu li a {
  font-size: 18px;
  color: #fefefe;
  background: linear-gradient(#fefefe 0 0) bottom/var(--d, 0) 2px no-repeat;
}
.modaal-container .menu li:first-of-type {
  border-left: none;
}
.modaal-container .menu li:first-of-type a {
  padding: 0;
}
.modaal-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.modaal-close {
  position: absolute !important;
  right: 4% !important;
  top: 15px !important;
  width: 50px;
  height: 50px;
  border-radius: 0 !important;
  background: none;
  z-index: 10;
}
.modaal-close span {
  position: static !important;
  display: block;
  font-size: 10px;
  color: #fefefe;
  font-weight: 400;
  width: 100% !important;
  height: auto !important;
  text-transform: uppercase;
  letter-spacing: 0;
  padding-top: 35px !important;
}
.modaal-close:hover {
  background: none !important;
}
.modaal-close::before, .modaal-close::after {
  display: block;
  content: " ";
  position: absolute;
  top: 4px !important;
  left: 24px !important;
  width: 2px !important;
  height: 30px;
  border-radius: 4px;
  background: #fefefe;
  transition: background 0.2s ease-in-out;
}
.modaal-close::before {
  transform: rotate(-45deg);
}
.modaal-close::after {
  transform: rotate(45deg);
}
.modaal-close:focus::before, .modaal-close:focus::after {
  background: #fefefe;
}
.modaal-close:hover::before, .modaal-close:hover::after {
  background: #fefefe !important;
}

/******************************************************* webp */
.webp .main_visual {
  background-image: url(../assets/images/main_visual.webp);
}
.webp .page-visual {
  background-image: url(../assets/images/page-visual.webp);
}

.no-webp .main_visual {
  background-image: url(../assets/images/main_visual.jpg);
}
.no-webp .page-visual {
  background-image: url(../assets/images/page-visual.webp);
}

/**************************************************************** error404 */
.error404 p:first-of-type {
  margin-bottom: 16px;
}
.error404 p:last-of-type {
  font-size: 14px;
}
.error404 a.line {
  font-size: 14px;
  text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */