/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.2s;
  cursor: pointer;
}

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

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #222;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-word;
  font-weight: 400;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

.container {
  overflow: hidden;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.btn-arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  transition: background-color 0.3s;
}
.btn-arrow span {
  overflow: hidden;
}
.btn-arrow span::after {
  content: "";
  display: block;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  transform-origin: bottom right;
  transform: skewX(45deg);
}
.btn-indigo {
  background-color: #013894;
}
@media only screen and (min-width: 769px) {
  .btn-indigo {
    border: 4px solid #013894;
  }
}
button.btn-indigo {
  cursor: pointer;
}

.btn-indigo:hover {
  background-color: #fff;
  color: #013894;
}
.btn-indigo:hover span::after {
  border-color: #013894;
}
.btn-cobalt {
  background-color: #013894;
}
@media only screen and (min-width: 769px) {
  .btn-cobalt {
    border: 4px solid #013894;
  }
}
button.btn-cobalt {
  cursor: pointer;
}

.btn-cobalt:hover {
  background-color: #fff;
  color: #013894;
}
.btn-cobalt:hover span::after {
  border-color: #013894;
}
.btn-only {
  background-color: #fff;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .btn-only {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 768px) {
  .btn-only {
    padding: 32px 5.6%;
  }
}
.btn-only a {
  display: block;
  background-color: #f9be00;
  color: #fff;
  text-align: center;
  border-radius: 47px;
  font-weight: bold;
  position: relative;
}
.btn-only a span {
  position: absolute;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  right: 60px;
  top: calc(50% - 16px);
}
.btn-only a span::after {
  content: "";
  display: block;
  height: 6px;
  width: 6px;
  border-top: 2px solid #f9be00;
  border-right: 2px solid #f9be00;
  transform: rotate(45deg);
  position: absolute;
  right: calc(50% - 3px);
  top: calc(50% - 3.5px);
}
@media only screen and (min-width: 769px) {
  .btn-only a {
    max-width: 628px;
    margin: 0 auto;
    padding: 10px 45px;
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .btn-only a {
    width: 100%;
    max-width: 450px;
    padding: 10px 20px;
    margin: auto;
    font-size: 2rem;
  }
  .btn-only a span {
    right: 28px;
    width: 28px;
    height: 28px;
    top: calc(50% - 14px);
  }
}
.btn-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 4px solid #013894;
  background-color: #013894;
  font-weight: 700;
  color: #fff;
  transition: background-color 0.3s;
}
label.btn-header {
  cursor: pointer;
}
label.btn-header:hover {
  background-color: #fff;
  color: #013894;
}
@media only screen and (max-width: 768px) {
  label.btn-header {
    padding: 6px 6px 6px 20px;
  }
}

@media only screen and (min-width: 769px) {
  .btn-header {
    width: min(100%, 800px);
    margin: 80px auto 0;
    padding: 1.2rem 2.8rem;
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .btn-header {
    margin-top: 13.6dvw;
    padding: 8px 20px;
    font-size: 2rem;
  }
}
.btn-header span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border-color: #013894;
  border: solid 4px #013894;
  background: linear-gradient(0deg, #013894 0%, #013894 100%) center/20px 4px no-repeat;
  background-color: #fff;
  cursor: pointer;
}
.btn-header span::before {
  content: "";
  background-color: #013894;
  width: 4px;
  height: 20px;
  opacity: 1;
  transition: opacity 0.3s;
}

.hover-op {
  opacity: 1;
  transition: opacity 0.2s;
}
.hover-op:hover {
  opacity: 0.7;
}

.sec-in {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto 9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  .sec-in {
    margin: 0 auto 100px;
  }
}
@media only screen and (max-width: 768px) {
  .sec-in {
    width: 100%;
    margin: 0 auto 13.3333333333vw;
    padding: 0 5.3333333333vw;
  }
}
.sec-in.sec-in-bg {
  padding: 9.0909090909vw 0;
  margin: 0 auto;
}
@media only screen and (min-width: 1100px) {
  .sec-in.sec-in-bg {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 768px) {
  .sec-in.sec-in-bg {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}

.under_page section:not(:last-of-type) {
  margin-bottom: 120px;
}

.disc,
.decimal {
  margin-left: 1.2em;
}
.disc li,
.decimal li {
  list-style-type: disc;
  text-align: left;
  margin-bottom: 10px;
}
.disc li > .disc, .disc li > .decimal,
.decimal li > .disc,
.decimal li > .decimal {
  margin: 15px 0 15px 1.2em;
}

.decimal li {
  list-style-type: decimal;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  width: auto;
  height: auto;
}

.cruby {
  position: relative;
}
.cruby span {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  word-break: keep-all;
}

footer a.btn_top {
  width: 60px;
  height: 60px;
  background: #f9be00;
  position: fixed;
  display: none;
  right: 6rem;
  bottom: 30px;
  border-radius: 100%;
  cursor: pointer;
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  footer a.btn_top {
    width: 45px;
    height: 45px;
    right: 30px;
  }
}
footer a.btn_top:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 24px;
  left: 19px;
}
@media only screen and (max-width: 768px) {
  footer a.btn_top:after {
    width: 12px;
    height: 12px;
    top: 18px;
    left: 15px;
  }
}

.section-header {
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: #000;
}
@media only screen and (min-width: 769px) {
  .section-header {
    margin-bottom: 50px;
    font-size: 6.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .section-header {
    margin-bottom: 12.8dvw;
    font-size: 4.8rem;
  }
}
.section-header[id] {
  margin-top: -104px !important;
  padding-top: 104px !important;
}
.section-header[data-text] {
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (min-width: 769px) {
  .section-header[data-text] {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .section-header[data-text] {
    font-size: 1.8rem;
    text-align: center;
  }
}
.section-header[data-text]::before {
  content: attr(data-text);
  display: inline-block;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  color: #f9be00;
}
@media only screen and (min-width: 769px) {
  .section-header[data-text]::before {
    background-image: url(../img/border.png);
    background-repeat: no-repeat;
    background-position: right 10px bottom 13px;
    margin-bottom: 10px;
    padding-right: 70px;
    line-height: 1.2;
    font-size: 10.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .section-header[data-text]::before {
    display: block;
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 4.8rem;
  }
}
.section-header[data-text]::after {
  content: "";
  display: inline-block;
  background-image: url(../img/border.png);
}
.section-subheader {
  text-align: center;
  font-weight: 700;
  color: #707070;
}
@media only screen and (min-width: 769px) {
  .section-subheader {
    margin-bottom: 64px;
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .section-subheader {
    margin-bottom: 10.4dvw;
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 769px) {
  .inner {
    padding: 80px max(30px, 50% - 540px);
  }
}
@media only screen and (max-width: 768px) {
  .inner {
    padding: 14.8dvw 6dvw 10.8dvw;
  }
}

.white-1 {
  background: #fff;
  color: #707070;
  /*@include media(pc) {
  	background-size: 27.5vw 27.5vw;
  }

  @include media(sp) {
  	background-size: 96vw 96vw;
  }*/
}
.white-2 {
  background: #f5f5f5;
  color: #707070;
  /*@include media(pc) {
  	background-size: 27.5vw 27.5vw;
  }

  @include media(sp) {
  	background-size: 96vw 96vw;
  }*/
}

@media only screen and (min-width: 769px) {
  .toggle {
    width: min(100%, 800px);
    margin: 0 auto;
  }
}
.toggle > input {
  display: none;
}
.toggle > input:checked ~ label span::before {
  opacity: 0;
}

.fade {
  position: relative;
  opacity: 1;
  top: 0;
  transition: opacity 1s, top 1s;
}
.fade[data-fade=true] {
  opacity: 0;
}
@media only screen and (min-width: 769px) {
  .fade[data-fade=true] {
    top: 50px;
  }
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

#Instagram::before {
  text-transform: initial;
}

.center {
  text-align: center;
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 74px;
  background-color: rgba(255, 255, 255, 0.49);
}
@media only screen and (min-width: 769px) {
  .page-header {
    padding: 0 36px;
  }
}
@media only screen and (max-width: 768px) {
  .page-header {
    padding: 0 5.6%;
  }
}
.page-header h1 {
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  .page-header h1 {
    width: min(280px, 20vw);
  }
}
@media only screen and (max-width: 768px) {
  .page-header h1 {
    width: 150px;
  }
}
.page-header input {
  display: none;
}
@media only screen and (max-width: 768px) {
  .page-header input:checked ~ label {
    background-image: none;
  }
}
@media only screen and (max-width: 768px) {
  .page-header input:checked ~ label span {
    opacity: 0;
  }
}
@media only screen and (max-width: 768px) {
  .page-header input:checked ~ label::before {
    top: 13px;
    transform: rotate(45deg) scaleX(1.41);
  }
}
@media only screen and (max-width: 768px) {
  .page-header input:checked ~ label::after {
    top: 13px;
    transform: rotate(-45deg) scaleX(1.41);
  }
}
@media only screen and (max-width: 768px) {
  .page-header input:checked ~ menu {
    width: 100%;
    left: 0%;
  }
}
@media only screen and (min-width: 769px) {
  .page-header label {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .page-header label {
    position: relative;
    width: 30px;
    aspect-ratio: 1;
  }
}
@media only screen and (max-width: 768px) {
  .page-header label span {
    position: absolute;
    top: 13px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #707070;
    opacity: 1;
    transition: opacity 0.5s;
  }
}
@media only screen and (max-width: 768px) {
  .page-header label::before, .page-header label::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    transform: rotate(0deg) scaleX(1);
    transition: top 0.5s, transform 0.5s;
  }
}
@media only screen and (max-width: 768px) {
  .page-header label::before {
    top: 1px;
  }
}
@media only screen and (max-width: 768px) {
  .page-header label::after {
    top: 25px;
  }
}
.page-header menu {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .page-header menu {
    font-size: min(1.5vw, 1.8rem);
    gap: 0 min(56px, 3vw);
  }
}
@media only screen and (max-width: 768px) {
  .page-header menu {
    position: absolute;
    top: 74px;
    left: 100%;
    flex-direction: column;
    justify-content: space-around;
    width: 0%;
    height: calc(100dvh - 74px);
    background-color: rgba(255, 255, 255, 0.49);
    overflow: hidden;
    transition: width 0.5s, left 0.5s;
  }
}
.page-header menu a {
  text-decoration: none;
  word-break: keep-all;
  font-weight: 700;
  color: #707070;
}
.page-header menu a:not(:last-of-type):hover {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .page-header menu a:not(:last-of-type) {
    font-size: 2.4rem;
  }
}
.page-header menu a:last-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9be00;
  color: #fff;
  border: 4px solid #f9be00;
  transition: background-color 0.3s;
}
.page-header menu a:last-of-type:hover {
  background-color: #fff;
  color: #707070;
}
@media only screen and (min-width: 769px) {
  .page-header menu a:last-of-type {
    width: min(200px, 15vw);
    height: 48px;
    border-radius: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .page-header menu a:last-of-type {
    width: 200px;
    height: 48px;
    border-radius: 24px;
    font-size: 2rem;
  }
}
.page-footer {
  background-color: #013894;
  line-height: 1.5;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .page-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .page-footer {
    padding-top: 10.4dvw;
  }
}
.page-footer h2 {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .page-footer h2 {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .page-footer h2 {
    width: 74.4dvw;
    margin: 0 auto 10.4dvw;
  }
}
@media only screen and (min-width: 769px) {
  .page-footer p {
    width: 100%;
    margin-bottom: 32px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-footer p {
    width: 74.4dvw;
    margin: 0 auto 10.4dvw;
    font-size: 1.8rem;
  }
}
.page-footer address {
  font-style: normal;
}
@media only screen and (min-width: 769px) {
  .page-footer address {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-footer address {
    width: 74.4dvw;
    margin: 0 auto 5.6dvw;
    font-size: 1.2rem;
  }
}
.page-footer nav {
  display: flex;
  justify-content: center;
  column-gap: 40px;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .page-footer nav {
    margin: 80px 0;
  }
}
@media only screen and (max-width: 768px) {
  .page-footer nav {
    margin: 13.6dvw 0 11.2dvw;
  }
}
.page-footer nav img {
  height: 32px;
}
.page-footer small {
  display: block;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .page-footer small {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-footer small {
    font-size: 1.2rem;
  }
}

.jumbotron {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}
.jumbotron > p {
  position: absolute;
  padding: 80px max(0px, 50% - 540px);
  font-weight: 300;
  color: #fff;
  text-align: right;
  font-family: "Oswald", sans-serif;
}
@media only screen and (min-width: 769px) {
  .jumbotron > p {
    top: 37.5%;
    justify-content: center;
    width: 100%;
    font-size: 11.7rem;
  }
}
@media only screen and (max-width: 768px) {
  .jumbotron > p {
    top: 36%;
    flex-direction: column;
    width: 33.6rem;
    font-size: 8rem;
    right: 10%;
  }
}
.jumbotron-lead {
  text-shadow: 0px 0px 15px #000;
}
.jumbotron-info {
  position: absolute;
  bottom: 15px;
  background-color: #fff;
  color: #707070;
  border-radius: 16px;
}
@media only screen and (min-width: 769px) {
  .jumbotron-info {
    right: -15px;
    display: flex;
    width: 50%;
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .jumbotron-info {
    left: 6%;
    width: 88%;
    padding: 2.7%;
  }
}
.jumbotron-info h2 {
  width: 100%;
  margin: 0;
  font-weight: 700;
  font-size: 1.6rem;
}
.jumbotron-info h2::before {
  content: "";
  display: inline-block;
  background-image: url(../img/border.png);
  height: 1.6rem;
  width: 27px;
  vertical-align: -2px;
  padding-right: 2px;
}
@media only screen and (min-width: 769px) {
  .jumbotron-info h2 {
    width: 110px;
    padding-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .jumbotron-info h2 {
    margin-bottom: 4px;
  }
}
.jumbotron-info-text {
  line-height: 1.5;
}
@media only screen and (min-width: 769px) {
  .jumbotron-info-text {
    width: calc(100% - 110px);
    font-size: 1.6rem;
    padding: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .jumbotron-info-text {
    font-size: 1.2rem;
  }
}
.jumbotron-info-text time {
  display: block;
}
@media only screen and (max-width: 768px) {
  .jumbotron-info-text time {
    margin-left: 10px;
  }
}
.jumbotron-info-text p {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .jumbotron-info-text p {
    /*word-break: keep-all;*/
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 768px) {
  .jumbotron-info-text p {
    margin-top: 4px;
    margin-left: 10px;
  }
}
.jumbotron-image-inner {
  width: 100%;
  height: 100vh;
}
.jumbotron-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .jumbotron-image-inner img:nth-of-type(1) {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .jumbotron-image-inner img:nth-of-type(2) {
    display: none;
  }
}

.interview-kv {
  position: relative;
  width: 100%;
  height: 60dvh;
  overflow: hidden;
}
.interview-kv-image-inner {
  width: 100%;
  height: 60vh;
}
.interview-kv-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .interview-kv-image-inner img:nth-of-type(1) {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .interview-kv-image-inner img:nth-of-type(2) {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .interview-kv-image-inner img:nth-of-type(2) {
    height: auto;
    max-height: 250px;
  }
}
.interview-kv-staff {
  position: absolute;
  bottom: 0;
  color: #fff;
  font-size: 1.6rem;
  text-shadow: 0px 0px 5px #000;
}
@media only screen and (min-width: 769px) {
  .interview-kv-staff {
    right: 0;
    display: flex;
    padding: 20px 6rem;
  }
}
@media only screen and (max-width: 768px) {
  .interview-kv-staff {
    padding-left: max(30px, 50% - 750px);
    color: #707070;
    text-shadow: none;
  }
  .interview-kv-staff p:first-child {
    font-size: 1.2rem;
  }
}
.interview-kv-staff-name {
  font-size: 3rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .interview-kv-staff-name {
    font-size: 2.8rem;
  }
}

.interview-kv-catch {
  position: absolute;
  padding: 80px max(30px, 50% - 750px);
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-shadow: 0px 0px 5px #ccc;
}
@media only screen and (min-width: 769px) {
  .interview-kv-catch {
    top: 25%;
    justify-content: center;
    width: 68%;
    font-size: 2.8rem;
    font-weight: 600;
    padding-right: 20rem;
  }
}
@media only screen and (max-width: 768px) {
  .interview-kv-catch {
    bottom: 30%;
    padding: 0 max(30px, 50% - 750px);
    flex-direction: column;
    width: auto;
    color: #707070;
    text-shadow: none;
    font-size: 2rem;
    left: 0;
    font-weight: 600;
    /*padding-right: 0;*/
  }
}

@media only screen and (min-width: 769px) {
  .message .section-header {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .message {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 769px) {
  .message-text {
    /*width: 50%;*/
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .message-text {
    margin: 0 5.6dvw 11.2dvw;
  }
}
@media only screen and (min-width: 769px) {
  .message-text h3 {
    margin-bottom: 50px;
    line-height: 1.65;
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .message-text h3 {
    margin-bottom: 10.4dvw;
    line-height: 1.5;
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 769px) {
  .message figure {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .message figure {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
  }
}
.message figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media only screen and (min-width: 769px) {
  .message figure img {
    border-radius: 20px 0 0 20px;
  }
}

@media only screen and (min-width: 769px) {
  .interview {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 768px) {
  .interview {
    padding: 14.8dvw 5.6dvw 10.8dvw;
  }
}
@media only screen and (min-width: 769px) {
  .interview-slide {
    width: 95vw;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .interview-slide {
    width: 80vw;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 769px) {
  .interview-slide-item {
    padding: 0 1.875vw;
  }
}
.interview-slide-item a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.interview-slide-item a > div {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  aspect-ratio: 1;
  background: transparent linear-gradient(315deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0) calc(50% + 1px), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 769px) {
  .interview-slide-item a > div {
    width: 19vw;
    padding: 1vw;
  }
}
@media only screen and (max-width: 768px) {
  .interview-slide-item a > div {
    width: 99%;
    padding: 4dvw;
  }
}
.interview-slide-item a > div div {
  display: flex;
  align-items: center;
  column-gap: 15px;
  color: #fff;
}
.interview-slide-item a > div div span {
  overflow: hidden;
  width: 50px;
  height: 8px;
}
.interview-slide-item a > div div span::after {
  content: "";
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-right: 3px solid #fff;
  border-bottom: 2px solid #fff;
  transform-origin: bottom right;
  transform: skewX(45deg);
}
.interview-slide-item a:hover img {
  transform: scale(1.05);
  border-radius: 20px;
}
.interview-slide-item img {
  position: relative;
  width: 100%;
  transform: scale(1);
  transition: transform 0.5s;
  border-radius: 20px;
}
.interview-slide-next, .interview-slide-prev {
  position: absolute;
  top: 50%;
  z-index: 1;
  aspect-ratio: 1;
  border: 1px solid #013894;
  border-radius: 50%;
  background-color: #013894;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s;
}
@media only screen and (min-width: 769px) {
  .interview-slide-next, .interview-slide-prev {
    width: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .interview-slide-next, .interview-slide-prev {
    transform: translateY(-50%);
    width: 6dvw;
  }
}
.interview-slide-next::before, .interview-slide-prev::before {
  content: "";
  position: relative;
  display: block;
  aspect-ratio: 1;
  transform: rotate(45deg);
}
@media only screen and (min-width: 769px) {
  .interview-slide-next::before, .interview-slide-prev::before {
    width: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .interview-slide-next::before, .interview-slide-prev::before {
    width: 2dvw;
  }
}
.interview-slide-next:hover, .interview-slide-prev:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 769px) {
  .interview-slide-prev {
    left: 0%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 768px) {
  .interview-slide-prev {
    left: -10%;
  }
}
.interview-slide-prev::before {
  margin-left: 40%;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
@media only screen and (min-width: 769px) {
  .interview-slide-next {
    right: 0%;
    transform: translate(50%, -50%);
  }
}
@media only screen and (max-width: 768px) {
  .interview-slide-next {
    right: -10%;
  }
}
.interview-slide-next::before {
  margin-left: 20%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media only screen and (max-width: 768px) {
  .greeting-text {
    margin-bottom: 16dvw;
  }
}
@media only screen and (min-width: 769px) {
  .greeting-text h3 {
    margin-bottom: 25px;
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .greeting-text h3 {
    margin-bottom: 20px;
    text-align: left;
    font-size: 2.4rem;
  }
}
.greeting-text p {
  text-align: justify;
}
@media only screen and (min-width: 769px) {
  .greeting-text p:not(:last-of-type) {
    margin-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .greeting-text p:not(:last-of-type) {
    margin-bottom: 1.8rem;
  }
}
.greeting-text p:nth-last-of-type(1), .greeting-text p:nth-last-of-type(2) {
  text-align: right;
}
.greeting-text p:nth-last-of-type(1) {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .greeting-text p:nth-last-of-type(2) {
    margin-top: 8vw;
  }
}
.greeting-text p.txt-interview {
  padding-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  font-size: 2rem;
}
@media only screen and (min-width: 769px) {
  .greeting-1 .greeting-inner {
    width: 100%;
    display: flex;
    gap: 0 64px;
  }
}
@media only screen and (max-width: 768px) {
  .greeting-1 .greeting-inner {
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .greeting-1 .greeting-inner .greeting-text {
    width: calc(100% - 434px);
  }
}
@media only screen and (min-width: 769px) {
  .greeting-1 .greeting-inner figure {
    width: 370px;
  }
}
.greeting-2 .greeting-inner {
  display: flex;
}
@media only screen and (min-width: 769px) {
  .greeting-2 .greeting-inner {
    width: 100%;
    flex-direction: row-reverse;
    gap: 0 64px;
  }
}
@media only screen and (max-width: 768px) {
  .greeting-2 .greeting-inner {
    text-align: center;
    flex-direction: column;
  }
}
.greeting-2 .greeting-inner .greeting-text {
  /*@include media(sp) {
  	order: 2;
  	display: flex;
  	flex-direction: column;

  	p {
  		&:nth-last-of-type(3) {
  			order: 3;
  			margin-top: 8vw;
  		}

  		&:nth-last-of-type(2) {
  			order: 1;
  		}

  		&:nth-last-of-type(1) {
  			order: 2;
  		}
  	}
  }*/
}
@media only screen and (min-width: 769px) {
  .greeting-2 .greeting-inner .greeting-text {
    width: calc(100% - 434px);
  }
}
@media only screen and (min-width: 769px) {
  .greeting-2 .greeting-inner figure {
    width: 370px;
  }
}
@media only screen and (max-width: 768px) {
  .greeting-2 .greeting-inner figure {
    order: 1;
  }
}
@media only screen and (max-width: 768px) {
  .greeting-3 {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .greeting-3 .greeting-inner {
    width: 74%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 769px) {
  section.interview-txt {
    margin: auto 20px;
  }
  section.interview-txt .txt-left {
    font-size: 2.4rem;
  }
  section.interview-txt .txt-interview {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  section.interview-txt {
    display: block;
  }
  section.interview-txt .greeting-text {
    margin-bottom: 10dvw;
  }
  section.interview-txt .txt-left {
    font-size: 2.2rem;
  }
  section.interview-txt .txt-interview {
    font-size: 1.8rem;
  }
  section.interview-txt figure {
    text-align: center;
  }
}

@media only screen and (min-width: 769px) {
  .benefits-list-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 5%;
    width: 100%;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .benefits-list-1 {
    margin-bottom: 13.6dvw;
    text-align: center;
  }
}
.benefits-list-1 li {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  .benefits-list-1 li {
    width: 30%;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .benefits-list-1 li {
    margin-bottom: 8dvw;
    border-radius: 2.4dvw;
  }
}
.benefits-list-1 li p {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  color: #000;
}
@media only screen and (min-width: 769px) {
  .benefits-list-1 li p {
    bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .benefits-list-1 li p {
    bottom: 2.4dvw;
  }
}
.benefits-list-2 {
  border-top: 1px solid #707070;
}
@media only screen and (min-width: 769px) {
  .benefits-list-2 {
    width: 74%;
    margin: 0 auto 80px;
  }
}
@media only screen and (max-width: 768px) {
  .benefits-list-2 {
    margin-bottom: 13.6dvw;
  }
}
.benefits-list-2 > li {
  border-bottom: 1px solid #707070;
}
@media only screen and (min-width: 769px) {
  .benefits-list-2 > li {
    padding: 4px 0;
  }
}
@media only screen and (max-width: 768px) {
  .benefits-list-2 > li {
    padding: 1px 0;
  }
}
.benefits-list-2 dl {
  display: flex;
  gap: 0 16px;
}
.benefits-list-2 dt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: #5c5c5c;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .benefits-list-2 dt {
    width: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .benefits-list-2 dt {
    width: 105px;
    text-align: center;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 769px) {
  .benefits-list-2 dd {
    width: calc(100% - 316px);
    padding: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .benefits-list-2 dd {
    width: calc(100% - 121px);
    padding: 16px 0;
  }
}
.benefits-list-3 {
  display: flex;
}
@media only screen and (min-width: 769px) {
  .benefits-list-3 {
    flex-wrap: wrap;
    gap: 45px 5%;
  }
}
@media only screen and (max-width: 768px) {
  .benefits-list-3 {
    flex-direction: column;
    row-gap: 8dvw;
  }
}
.benefits-list-3 li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/2;
  border: 1px solid #707070;
  background-color: #EEEAEA;
}
@media only screen and (min-width: 769px) {
  .benefits-list-3 li {
    width: 30%;
    padding-bottom: 20px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .benefits-list-3 li {
    width: 100%;
    padding-bottom: 4dvw;
    border-radius: 10px;
  }
}
.benefits-list-3 li > p {
  position: absolute;
  width: 100%;
  text-align: center;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  .benefits-list-3 li > p {
    bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .benefits-list-3 li > p {
    bottom: 2.4dvw;
  }
}
.benefits-list-3 .data {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  line-height: 1;
  font-size: 8rem;
  color: #fff;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.35);
}
.benefits-list-3 .data .cruby span {
  font-weight: 700;
  font-size: 2.4rem;
}
.benefits-list-3 .data .cruby + span {
  padding: 0 10px;
}
.benefits-list-3 .data .scale {
  display: flex;
  align-items: flex-end;
  padding-left: 10px;
  font-size: 4rem;
}
.benefits-list-3 .data dl {
  display: flex;
  width: 100%;
}
.benefits-list-3 .data dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  font-size: 2rem;
}
.benefits-list-3 .data dd {
  width: 50%;
  font-size: 6.4rem;
}
.benefits-list-3 .data dd .scale {
  display: inline-flex;
  font-size: 3.2rem;
}

.faq-group input {
  display: none;
}
.faq-group input:checked ~ .faq-q label::before {
  opacity: 0;
}
@media only screen and (min-width: 769px) {
  .faq-group + div {
    margin-top: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .faq-group + div {
    margin-top: 13.6dvw;
  }
}
@media only screen and (min-width: 769px) {
  .faq-group-2 .faq-q {
    margin-bottom: 8px;
  }
}
.faq-group-3 {
  background-color: #EEEAEA;
}
@media only screen and (min-width: 769px) {
  .faq-group-3 {
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .faq-group-3 {
    padding: 2.4dvw;
  }
}
.faq-group-3 .faq-q {
  background-color: transparent;
  padding: 0;
}
@media only screen and (min-width: 769px) {
  .faq-group-3 .faq-q {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .faq-group-3 .faq-q {
    margin-bottom: 2.4dvw;
  }
}
.faq-group-3 .faq-a {
  background-color: #fff;
}
@media only screen and (min-width: 769px) {
  .faq-group-3 .faq-a {
    column-gap: 10px;
    padding: 1.6rem;
    border-radius: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .faq-group-3 .faq-a {
    column-gap: 10px;
    padding: 1.6rem;
    border-radius: 2.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .faq-group-3 .faq-a div {
    width: calc(100% - 70px);
  }
}
@media only screen and (max-width: 768px) {
  .faq-group-3 .faq-a div {
    width: calc(100% - 50px);
  }
}
.faq-q {
  display: flex;
  justify-content: space-between;
  background-color: #e6e6e6;
  color: #000;
}
.faq-q::before {
  content: "Q.";
  line-height: 1;
  font-family: "Lato", sans-serif;
  color: #013894;
}
@media only screen and (min-width: 769px) {
  .faq-q::before {
    width: 60px;
    font-size: 4.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .faq-q::before {
    width: 40px;
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 769px) {
  .faq-q {
    align-items: center;
    padding: 20px;
    gap: 0 25px;
  }
}
@media only screen and (max-width: 768px) {
  .faq-q {
    align-items: flex-start;
    padding: 2.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .faq-q p {
    width: calc(100% - 85px);
  }
}
@media only screen and (max-width: 768px) {
  .faq-q p {
    width: calc(100% - 40px);
  }
}
@media only screen and (min-width: 769px) {
  .faq-q:has(label) p {
    width: calc(100% - 150px);
  }
}
@media only screen and (min-width: 769px) {
  .faq-q:has(label) p {
    width: calc(100% - 80px);
  }
}
.faq-q label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #013894 linear-gradient(0deg, #fff 0%, #fff 100%) center/20px 4px no-repeat;
  cursor: pointer;
}
.faq-q label::before {
  content: "";
  background-color: #fff;
  width: 4px;
  height: 20px;
  opacity: 1;
  transition: opacity 0.3s;
}
.faq-a {
  display: flex;
  justify-content: space-between;
  background-color: #EEEAEA;
  color: #000;
}
.faq-a::before {
  content: "A.";
  line-height: 1;
  font-family: "Lato", sans-serif;
  color: #f9be00;
}
@media only screen and (min-width: 769px) {
  .faq-a::before {
    width: 60px;
    font-size: 4.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .faq-a::before {
    width: 40px;
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 769px) {
  .faq-a {
    padding: 20px;
    gap: 0 25px;
  }
}
@media only screen and (max-width: 768px) {
  .faq-a {
    padding: 2.4dvw;
  }
}
@media only screen and (min-width: 769px) {
  .faq-a div {
    width: calc(100% - 85px);
  }
}
@media only screen and (max-width: 768px) {
  .faq-a div {
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 768px) {
  .requirement .section-header::before {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 769px) {
  .requirement .btn-arrow {
    max-width: 800px;
    margin: 0 auto 64px;
    padding: 24px 48px;
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .requirement .btn-arrow {
    margin-bottom: 13.6dvw;
    padding: 10px 20px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .requirement .btn-arrow span {
    width: 95px;
    height: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .requirement .btn-arrow span {
    width: 50px;
    height: 8px;
  }
}
@media only screen and (min-width: 769px) {
  .requirement-table-1 {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #868686;
    border-bottom: 1px solid #868686;
  }
}
.requirement-table-1 .requirement-table-name {
  background-color: #f0f0f0;
  color: #000;
}
@media only screen and (min-width: 769px) {
  .requirement-table-1 .requirement-table-name {
    width: 220px;
    padding: 18px 16px;
  }
  .requirement-table-1 .requirement-table-name:not(:nth-last-of-type(2)) {
    border-bottom: 1px solid #868686;
  }
}
@media only screen and (max-width: 768px) {
  .requirement-table-1 .requirement-table-name {
    padding: 2.4dvw;
    font-size: 1.4rem;
  }
}
.requirement-table-1 .requirement-table-text {
  background-color: #fff;
  color: #000;
}
@media only screen and (min-width: 769px) {
  .requirement-table-1 .requirement-table-text {
    width: calc(100% - 220px);
    padding: 18px 16px;
  }
}
@media only screen and (max-width: 768px) {
  .requirement-table-1 .requirement-table-text {
    padding: 2.4dvw;
    font-size: 1.4rem;
  }
}
.requirement-table-1 .requirement-table-text:not(:last-of-type) {
  border-bottom: 1px solid #868686;
}
.requirement-table-2 {
  background-color: #fff;
  color: #000;
}
@media only screen and (min-width: 769px) {
  .requirement-table-2 {
    display: flex;
    flex-wrap: wrap;
    width: min(100%, 800px);
    margin: 5px auto 0;
    padding: 6.4rem;
    line-height: 2;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .requirement-table-2 {
    margin-top: 5px;
    padding: 4.2dvw;
    line-height: 1.7;
    font-size: 1.4rem;
  }
}
.requirement-table-2 .requirement-table-name {
  border-top: 1px solid #868686;
}
@media only screen and (min-width: 769px) {
  .requirement-table-2 .requirement-table-name {
    width: 200px;
    padding: 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  .requirement-table-2 .requirement-table-name {
    margin-bottom: 2.4dvw;
    padding-top: 2.4dvw;
  }
}
@media only screen and (min-width: 769px) {
  .requirement-table-2 .requirement-table-name:nth-last-of-type(2) {
    border-bottom: 1px solid #868686;
  }
}
@media only screen and (min-width: 769px) {
  .requirement-table-2 .requirement-table-text {
    width: calc(100% - 200px);
    padding: 20px 0;
    border-top: 1px solid #868686;
  }
}
@media only screen and (max-width: 768px) {
  .requirement-table-2 .requirement-table-text {
    padding-bottom: 2.4dvw;
  }
}
.requirement-table-2 .requirement-table-text:last-of-type {
  border-bottom: 1px solid #868686;
}

.entry-table {
  background-color: #fff;
  color: #000;
}
@media only screen and (min-width: 769px) {
  .entry-table {
    display: flex;
    flex-wrap: wrap;
    width: min(100%, 800px);
    margin: 5px auto 0;
    padding: 6.4rem;
    line-height: 2;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table {
    margin-top: 5px;
    padding: 5.6dvw;
    line-height: 2;
    font-size: 1.6rem;
  }
}
.entry-table-name {
  display: flex;
  border-top: 1px solid #868686;
}
@media only screen and (min-width: 769px) {
  .entry-table-name {
    align-items: flex-start;
    width: 200px;
    padding: 46px 0 24px;
    line-height: 1;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table-name {
    column-gap: 18px;
    padding: 4dvw 0;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 769px) {
  .entry-table-name:first-of-type {
    padding-top: 24px;
  }
}
@media only screen and (min-width: 769px) {
  .entry-table-name:nth-last-of-type(2) {
    border-bottom: 1px solid #868686;
  }
}
.entry-table-name span {
  position: relative;
  background-color: #013894;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .entry-table-name span {
    top: -3px;
    padding: 6px 9px;
    border-radius: 13px;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table-name span {
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 769px) {
  .entry-table-name span.gap {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table-name span.gap {
    margin-left: 8px;
  }
}
@media only screen and (min-width: 769px) {
  .entry-table-text {
    width: calc(100% - 200px);
    padding: 24px 0;
    border-top: 1px solid #868686;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table-text {
    padding-bottom: 4dvw;
  }
}
.entry-table-text:has(label) {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .entry-table-text:has(label) {
    column-gap: 40px;
    row-gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table-text:has(label) {
    column-gap: 32px;
    row-gap: 10px;
  }
}
.entry-table-text:has(label) .error {
  margin-top: -20px;
}
@media only screen and (max-width: 768px) {
  .entry-table-text:has(label) .error {
    margin-top: -10px;
  }
}
.entry-table-text:last-of-type {
  border-bottom: 1px solid #868686;
}
.entry-table-text:nth-of-type(2) {
  line-height: 1;
}
.entry-table-text label {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.entry-table-text input[type=radio] {
  aspect-ratio: 1;
}
@media only screen and (min-width: 769px) {
  .entry-table-text input[type=radio] {
    width: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table-text input[type=radio] {
    width: 1.6rem;
  }
}
.entry-table-text input[type=text], .entry-table-text input[type=tel], .entry-table-text input[type=email] {
  display: block;
  border: 1px solid #c4c4c4;
  background-color: #fff;
  font-family: inherit;
}
@media only screen and (min-width: 769px) {
  .entry-table-text input[type=text], .entry-table-text input[type=tel], .entry-table-text input[type=email] {
    width: 100%;
    padding: 7px;
    border-radius: 8px;
    line-height: 2;
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table-text input[type=text], .entry-table-text input[type=tel], .entry-table-text input[type=email] {
    width: 100%;
    padding: 7px;
    border-radius: 8px;
    line-height: 2;
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 769px) {
  .entry-table-text input[type=text][maxlength], .entry-table-text input[type=tel][maxlength], .entry-table-text input[type=email][maxlength] {
    width: 180px;
  }
}
.entry-table-text textarea {
  display: block;
  width: 100%;
  padding: 7px;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  background-color: #fff;
  line-height: 2;
  font-family: inherit;
  font-size: 2.4rem;
  resize: vertical;
}
@media only screen and (min-width: 769px) {
  .entry-table-text textarea {
    min-height: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table-text textarea {
    min-height: 160px;
  }
}
.entry-table-text input[type=text].other {
  height: 36px;
  width: 180px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .entry-table-text input[type=text].other {
    font-size: 14px;
  }
}
@media only screen and (min-width: 769px) {
  .entry-table-text + nav {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table-text + nav {
    margin-top: 8dvw;
  }
}
.entry-table > label {
  display: flex;
  align-items: center;
  column-gap: 20px;
  line-height: 1.5;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  .entry-table > label {
    margin: 32px auto 80px;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table > label {
    margin: 8dvw 0;
  }
}
.entry-table > label input {
  width: 24px;
  aspect-ratio: 1;
}
.entry-table > label + p {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .entry-table > label + p {
    margin: -80px 0 80px;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table > label + p {
    margin: -8dvw 0 8dvw;
  }
}
.entry-table nav {
  width: 100%;
}
.entry-table nav button {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .entry-table nav button {
    padding: 24px 44px;
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table nav button {
    padding: 10px 20px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .entry-table nav button span {
    width: 95px;
    height: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table nav button span {
    width: 50px;
    height: 8px;
  }
}
.entry-table-age input[type=text] {
  width: 100px;
}
.entry-table .errormessage {
  width: 100%;
  font-weight: 700;
  color: #f00;
}
.entry-table .message {
  width: 100%;
  padding: 0;
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .entry-table .message {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .entry-table .message {
    margin-bottom: 8dvw;
  }
}

@media only screen and (min-width: 769px) {
  .confirm .entry-table-name,
  .confirm .entry-table-text {
    padding: 24px 0;
  }
}
@media only screen and (max-width: 768px) {
  .confirm .entry-table-name,
  .confirm .entry-table-text {
    padding: 4dvw 0;
    font-size: 1.6rem;
  }
}
.confirm .entry-table-name {
  align-items: center;
}
.confirm .entry-table-name span {
  top: 0;
}
.confirm .entry-table-text:nth-of-type(2) {
  line-height: 1.5;
}

.error .message {
  color: #f00;
}

.instagram figure {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .instagram figure {
    gap: 7.5px;
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .instagram figure {
    gap: 10px;
  }
}
.instagram figure a {
  aspect-ratio: 1;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  .instagram figure a {
    width: calc(20% - 6px);
  }
}
@media only screen and (max-width: 768px) {
  .instagram figure a {
    width: calc(50% - 5px);
  }
}
.instagram figure a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.instagram figure a:hover, .instagram figure a:active {
  opacity: 0.7;
}
.instagram nav {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .instagram nav {
    column-gap: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .instagram nav {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .instagram nav a {
    width: 240px;
    padding: 10px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .instagram nav a span {
    width: 48px;
    height: 8px;
  }
}

.movie img {
  display: block;
  margin: 0 auto;
}

.sns nav {
  display: flex;
}
@media only screen and (min-width: 769px) {
  .sns nav {
    justify-content: center;
    align-items: center;
    column-gap: 40px;
    margin-top: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .sns nav {
    row-gap: 18.8dvw;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  .sns nav a {
    width: 50%;
    text-align: center;
  }
}

.about .contents {
  text-align: start;
}
.about .contents p {
  line-height: 2;
}
@media only screen and (min-width: 769px) {
  .about .contents p {
    line-height: 2.2;
  }
}
.about .contents ul li {
  line-height: 2;
}
.about .contents .mt {
  margin-top: 40px;
}
.about nav {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .about nav {
    column-gap: 24px;
  }
}
.about nav a {
  width: 350px;
  padding: 10px;
  font-size: 2rem;
}
.about nav a span {
  width: 48px;
  height: 8px;
}

.pc_only {
  display: none;
}
@media only screen and (min-width: 769px) {
  .pc_only {
    display: inline;
  }
}

.catch-ttl {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .catch-ttl {
    font-size: 5.2rem;
  }
}

.entry-btn {
  text-align: center;
  margin-top: 64px;
}
@media only screen and (min-width: 769px) {
  .entry-btn {
    margin-top: 104px;
  }
}
.entry-btn a {
  display: inline-block;
  background-color: #f9be00;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  border: 4px solid #f9be00;
  border-radius: 9999px;
  padding: 16px 24px;
}
@media only screen and (min-width: 769px) {
  .entry-btn a {
    font-size: 2.8rem;
    padding: 24px 40px;
    transition: background-color 0.3s;
  }
  .entry-btn a:hover {
    background-color: #fff;
    color: #707070;
  }
}

@media only screen and (min-width: 769px) {
  .about-sub-ttl {
    margin-bottom: 25px;
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .about-sub-ttl {
    margin-bottom: 20px;
    text-align: left;
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 769px) {
  .management-text {
    /*width: 50%;*/
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .management-text {
    margin: 0 5.6dvw 11.2dvw;
  }
}
@media only screen and (min-width: 769px) {
  .management-text h3 {
    margin-bottom: 25px;
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .management-text h3 {
    margin-bottom: 20px;
    text-align: left;
    font-size: 2.4rem;
  }
}
.management-text .mt {
  margin-top: 40px;
}/*# sourceMappingURL=style.css.map */