@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import "https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap";
/* -------- reset -------- */
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,
hr,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  letter-spacing: 0;
}

p {
  letter-spacing: 0;
}

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

body {
  -webkit-text-size-adjust: 100%; /* for iOS, Android */
  max-width: 100vw;
}

li {
  list-style: none;
}

a,
button {
  outline: none;
  -webkit-tap-highlight-color: transparent; /* for iOS, Android */
  text-decoration: none;
}

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

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

caption,
th {
  text-align: left;
}

button {
  padding: 0;
  border-style: none;
  border-radius: 0;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1;
}

input,
select,
textarea {
  padding: 0;
  border-style: none;
  border-radius: 0;
  background-color: transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  line-height: 1;
}

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  margin: 0px;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

.ast {
  font-family: sans-serif;
}

@media screen and (max-width: 640px) {
  body {
    font-size: 1.5rem;
  }
}
/* --使う色をまとめる-- */
/* viewport 切り替え */
/* -------- common -------- */
body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media print, screen and (min-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 959px) {
  body {
    font-size: 1.5rem;
  }
}

p,
a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media print, screen and (min-width: 960px) {
  p,
  a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 959px) {
  p,
  a {
    font-size: 1.5rem;
  }
}

a {
  transition: 0.3s all linear;
}

@media screen and (max-width: 959px) {
  .pcOnly {
    display: none !important;
  }
}

@media print, screen and (min-width: 960px) {
  .spOnly {
    display: none !important;
  }
}

main {
  position: relative;
  background-color: #fff;
}

/* ボタン */
.c-btn-blue {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  box-sizing: border-box;
  border: 2px solid #28afb0;
  overflow: hidden;
}
.c-btn-blue a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 40px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.3;
  background-color: #155f6c;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  transition: 0.2s all linear;
}
.c-btn-blue a:hover {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* section fade in animation */
.scroll-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease 0.4s;
}

.scroll-fade.scroll-active {
  opacity: 1;
  transform: translateY(0);
}

/* 共通パーツ */
.p-2ndPage-mv {
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-2ndPage-mv {
    height: 500px;
  }
}
@media screen and (max-width: 959px) {
  .p-2ndPage-mv {
    height: 310px;
  }
}
.p-2ndPage-mv__bg {
  width: 100%;
  overflow: hidden;
}
@media print, screen and (min-width: 960px) {
  .p-2ndPage-mv__bg {
    height: calc(100% - 90px);
  }
}
@media screen and (max-width: 959px) {
  .p-2ndPage-mv__bg {
    height: calc(100% - 60px);
  }
}
.p-2ndPage-mv__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media print, screen and (min-width: 960px) {
  .p-2ndPage-mv__bg img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 959px) {
  .p-2ndPage-mv__bg img {
    width: 150%;
    height: 150%;
  }
}
.p-2ndPage-mv__img {
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  position: absolute;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 960px) {
  .p-2ndPage-mv__img {
    width: 80%;
    height: calc(100% - 90px);
    top: 90px;
  }
}
@media screen and (max-width: 959px) {
  .p-2ndPage-mv__img {
    width: 85%;
    height: calc(100% - 130px);
    top: 130px;
  }
}
.p-2ndPage-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.p-2ndPage-mv__img img.p-2ndPage-mv__char {
  display: block;
  width: auto;
  height: 80%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.p-2ndPage-mv__anime {
  width: 100%;
  height: 100%;
  background-color: #155f6c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-2ndPage-mv__animeBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.p-2ndPage-mv__animeBg .bg {
  animation: slide 4s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #28afb0 50%, #155f6c 50%);
  bottom: 0;
  left: -50%;
  opacity: 0.5;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}
.p-2ndPage-mv__animeBg .bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 5s;
}
.p-2ndPage-mv__animeBg .bg3 {
  animation-duration: 6s;
}
.p-2ndPage-mv__ttl {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 3;
  text-shadow: 1px 1px 3px #155f6c, -1px 1px 3px #155f6c, 1px -1px 3px #155f6c, -1px -1px 3px #155f6c;
}
@media print, screen and (min-width: 960px) {
  .p-2ndPage-mv__ttl {
    width: 30%;
    padding: 0 30px;
    align-items: flex-end;
    justify-content: center;
  }
}
@media screen and (max-width: 959px) {
  .p-2ndPage-mv__ttl {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 20px;
  }
}
.p-2ndPage-mv__ttl h1 {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media print, screen and (min-width: 960px) {
  .p-2ndPage-mv__ttl h1 {
    font-size: min(6vw, 8rem);
  }
}
@media screen and (max-width: 959px) {
  .p-2ndPage-mv__ttl h1 {
    margin-top: 65px;
    font-size: min(8.5vw, 3.8rem);
  }
}
.p-2ndPage-mv__ttl p {
  color: #fff;
  line-height: 1;
  font-weight: 400;
}
@media print, screen and (min-width: 960px) {
  .p-2ndPage-mv__ttl p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 959px) {
  .p-2ndPage-mv__ttl p {
    font-size: 1.2rem;
  }
}

@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}
/* ==================================== */
/* 要素の基本設定とアニメーションの適用             */
/* ==================================== */
#rect1, #rect2 {
  transform-origin: 50% 50%;
}

#rect1 {
  /* アニメーションの適用 */
  animation: rotate-forward 12s linear infinite, move-x1 23s linear infinite, move-y1 24s linear infinite; /* y軸移動 (move-y1) */
  /* 初期回転値を設定 */
  transform: rotate(255.072deg);
}

#rect2 {
  /* アニメーションの適用 */
  animation: rotate-backward 9s linear infinite, move-x2 25s linear infinite, move-y2 12s linear infinite; /* y軸移動 (move-y2) */
  /* 初期回転値を設定 */
  transform: rotate(139.903deg);
}

/* ==================================== */
/* @keyframesの定義 (SMILのdurを考慮し、個別に定義)   */
/* ==================================== */
/* rect1の回転: 0 -> 360 (12s) */
@keyframes rotate-forward {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* rect1のx移動: -25% -> 0% -> -25% (23s) */
@keyframes move-x1 {
  0%, 100% {
    transform: translateX(-25%);
  }
  50% {
    transform: translateX(0%);
  }
}
/* rect1のy移動: 0% -> 50% -> 0% (24s) */
@keyframes move-y1 {
  0%, 100% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(50%);
  }
}
/* rect2の回転: 360 -> 0 (9s) */
@keyframes rotate-backward {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
/* rect2のx移動: 0% -> 25% -> 0% (25s) */
@keyframes move-x2 {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(25%);
  }
}
/* rect2のy移動: 0% -> 25% -> 0% (12s) */
@keyframes move-y2 {
  0%, 100% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(25%);
  }
}
/* -------- header -------- */
.l-header {
  width: 100vw;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media print, screen and (min-width: 960px) {
  .l-header {
    height: 90px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 959px) {
  .l-header {
    height: 60px;
    padding: 0 20px;
  }
}
.l-header.is-fixed::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(0deg, transparent 0 5%, #155f6c 100%);
}
.l-header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo a {
  width: -moz-fit-content;
  width: fit-content;
}
.l-header__logo a img {
  width: auto;
}
@media print, screen and (min-width: 960px) {
  .l-header__logo a img {
    height: 60px;
  }
}
@media screen and (max-width: 959px) {
  .l-header__logo a img {
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  .l-header__navWrap {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
}
@media print, screen and (min-width: 960px) {
  .l-header__menu {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .l-header__menu {
    width: 60px;
    height: 60px;
    padding-right: 13px;
    background-color: #155f6c;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    gap: 8px 0;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 3;
  }
  .l-header__menu span {
    display: block;
    width: 25.5px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s all linear;
  }
  .l-header__menu span:nth-child(2) {
    width: 27px;
  }
  .l-header__menu span:nth-child(3) {
    width: 29px;
  }
  .l-header__menu.is-open {
    border-bottom: 1px solid #fff;
  }
  .l-header__menu.is-open span {
    width: 29px;
  }
  .l-header__menu.is-open span:nth-child(2) {
    opacity: 0;
  }
  .l-header__menu.is-open span:first-child {
    transform: translateY(10px) rotate(-135deg);
  }
  .l-header__menu.is-open span:last-child {
    transform: translateY(-10px) rotate(135deg);
  }
}
@media screen and (max-width: 959px) {
  .l-header__menuDrop {
    width: 100vw;
    height: 100vh;
    padding-top: 60px;
    background-color: #155f6c;
    transform: translateX(100%);
    transition: 0.3s all linear;
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
  }
  .l-header__menuDrop::before {
    content: "";
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #fff 0%, #fff 60px, #155f6c 60px, #155f6c 100%);
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: 0.3s all linear;
    z-index: 1;
  }
  .l-header__menuDrop::after {
    content: "";
    width: 120px;
    height: 40px;
    background: url(/assets/img/common/logo_goal-seeker_blue_horizontal.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1;
  }
  .l-header__menuDrop.is-active {
    transform: translateX(0%);
  }
  .l-header__menuDrop.is-active::before {
    transform: translateX(0%);
    transition: 0.3s all linear;
  }
  .l-header__menuDrop.is-active .l-header__nav,
  .l-header__menuDrop.is-active .l-header__spSns,
  .l-header__menuDrop.is-active .l-header__menuDrop {
    transform: translateX(0%);
    transition: 0.3s all linear;
  }
}
.l-header__nav {
  display: flex;
}
@media print, screen and (min-width: 960px) {
  .l-header__nav {
    align-items: center;
    gap: 0 5vw;
  }
}
@media screen and (max-width: 959px) {
  .l-header__nav {
    width: 100vw;
    margin-top: 60px;
    padding: 0 20px;
    flex-direction: column;
    position: relative;
    z-index: 3;
    transform: translateX(100%);
    transition: 0.3s all linear;
  }
}
@media print, screen and (min-width: 960px) {
  .l-header__navItem {
    width: -moz-fit-content;
    width: fit-content;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 959px) {
  .l-header__navItem {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .l-header__navItem:first-child {
    border-top: 1px solid #fff;
  }
}
.l-header__navItem a {
  display: block;
  color: #fff;
}
@media screen and (max-width: 959px) {
  .l-header__navItem a {
    padding: 20px 0;
  }
}
.l-header__navItem.--nav-lang {
  display: flex;
  border: 1px solid #fff;
  display: none;
}
@media print, screen and (min-width: 960px) {
  .l-header__navItem.--nav-lang {
    padding: 10px;
    gap: 0 15px;
  }
}
@media screen and (max-width: 959px) {
  .l-header__navItem.--nav-lang {
    margin-top: 20px;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px;
    gap: 0 8px;
  }
}
.l-header__navItem.--nav-lang a {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (max-width: 959px) {
  .l-header__navItem.--nav-lang a {
    padding: 0;
  }
}
.l-header__navItem.--nav-lang a:last-child {
  border-left: 1px solid #fff;
}
@media print, screen and (min-width: 960px) {
  .l-header__navItem.--nav-lang a:last-child {
    padding-left: 15px;
  }
}
@media screen and (max-width: 959px) {
  .l-header__navItem.--nav-lang a:last-child {
    padding-left: 8px;
  }
}
@media print, screen and (min-width: 960px) {
  .l-header__spSns {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .l-header__spSns {
    width: 100vw;
    position: relative;
    z-index: 3;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 40px;
    transform: translateX(100%);
    transition: 0.3s all linear;
  }
  .l-header__spSns li {
    width: 40px;
  }
}

/* -------- footer -------- */
.l-footer__inner {
  background-color: #155f6c;
}
@media print, screen and (min-width: 960px) {
  .l-footer__inner {
    padding: 80px 30px 30px;
  }
}
@media screen and (max-width: 959px) {
  .l-footer__inner {
    padding: 60px 15px 20px;
  }
}
.l-footer__logo {
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .l-footer__logo {
    width: 180px;
  }
}
@media screen and (max-width: 959px) {
  .l-footer__logo {
    width: 130px;
  }
}
.l-footer__logo a {
  display: block;
  transition: 0.3s all linear;
}
.l-footer__logo a:hover {
  opacity: 0.7;
}
.l-footer__nav {
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 960px) {
  .l-footer__nav {
    gap: 0 5%;
  }
}
@media screen and (max-width: 959px) {
  .l-footer__nav {
    max-width: 290px;
    gap: 10px 10%;
    flex-wrap: wrap;
  }
}
.l-footer__navItem {
  width: -moz-fit-content;
  width: fit-content;
}
.l-footer__navItem a {
  color: #fff;
  transition: 0.3s all linear;
}
.l-footer__navItem a:hover {
  opacity: 0.7;
}
.l-footer__sns {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 960px) {
  .l-footer__sns {
    gap: 0 5%;
  }
}
@media screen and (max-width: 959px) {
  .l-footer__sns {
    gap: 0 10%;
  }
}
.l-footer__snsItem {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 960px) {
  .l-footer__snsItem {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  .l-footer__snsItem {
    width: 30px;
    height: 30px;
  }
}
.l-footer__snsItem a {
  display: block;
  transition: 0.3s all linear;
}
.l-footer__snsItem a:hover {
  opacity: 0.7;
}
.l-footer__copyright {
  margin: 50px auto 0;
  color: #fff;
  border-top: 1px solid #fff;
}
@media print, screen and (min-width: 960px) {
  .l-footer__copyright {
    width: 50%;
  }
}
@media screen and (max-width: 959px) {
  .l-footer__copyright {
    width: 100%;
  }
}
.l-footer__copyright p {
  color: #fff;
  text-align: center;
  letter-spacing: 0.01em;
}
@media print, screen and (min-width: 960px) {
  .l-footer__copyright p {
    padding-top: 30px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 959px) {
  .l-footer__copyright p {
    padding-top: 15px;
    font-size: 1.1rem;
  }
}

.p-home-mv {
  width: 100vw;
  height: 100vh;
  position: relative;
  background: url(/assets/img/common/bg_pattern_02.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .p-home-mv {
    max-height: 700px;
  }
}
.p-home-mv::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/assets/img/common/bg_pattern_02.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media print, screen and (min-width: 960px) {
  .p-home-mv::before {
    clip-path: polygon(0 0, 45% 0, 25% 100%, 0 100%);
  }
}
@media screen and (max-width: 959px) {
  .p-home-mv::before {
    clip-path: polygon(0 0, 30% 0, 0% 100%, 0 100%);
  }
}
.p-home-mv::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/assets/img/common/bg_pattern_03.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media print, screen and (min-width: 960px) {
  .p-home-mv::after {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 80% 100%);
  }
}
@media screen and (max-width: 959px) {
  .p-home-mv::after {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 70% 100%);
  }
}
.p-home-mv .swiper {
  background-color: #000f18;
}
@media print, screen and (min-width: 960px) {
  .p-home-mv .swiper {
    width: 75vw;
    height: 100%;
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 959px) {
  .p-home-mv .swiper {
    width: 100%;
    height: 100vh;
    max-height: 700px;
  }
}
.p-home-mv .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000f18;
}
@media print, screen and (min-width: 960px) {
  .p-home-mv .swiper-slide {
    width: 75vw;
  }
}
@media screen and (max-width: 959px) {
  .p-home-mv .swiper-slide {
    width: 100vw;
  }
}
.p-home-mv .swiper-slide-active {
  z-index: 1;
}
.p-home-mv .swiper-pagination-bullets.swiper-pagination-horizontal {
  left: inherit;
}
@media print, screen and (min-width: 960px) {
  .p-home-mv .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 20vw;
    right: 17vw;
  }
}
@media screen and (max-width: 959px) {
  .p-home-mv .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 80vw;
    right: 10vw;
  }
}
.p-home-mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  border-radius: 0;
  background-color: #fff;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}
@media print, screen and (min-width: 960px) {
  .p-home-mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 20px;
    height: 3px;
  }
}
.p-home-mv figure {
  width: 100vw;
  height: 100vh;
}
.p-home-mv figure video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-home-mv figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-mv__txt {
  height: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 5;
  text-shadow: 1px 1px 5px #155f6c, -1px 1px 5px #155f6c, 1px -1px 5px #155f6c, -1px -1px 5px #155f6c;
}
@media print, screen and (min-width: 960px) {
  .p-home-mv__txt {
    justify-content: center;
    margin-left: 15%;
  }
}
@media screen and (max-width: 959px) {
  .p-home-mv__txt {
    width: 100%;
    padding: 60px 15px 50px;
    justify-content: flex-end;
  }
}
.p-home-mv__txt h1 {
  color: #fff;
  font-family: "Jost", sans-serif;
  line-height: 1;
  font-weight: 500;
}
@media print, screen and (min-width: 960px) {
  .p-home-mv__txt h1 {
    font-size: 13rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-mv__txt h1 {
    font-size: 6rem;
  }
}
.p-home-mv__txt p {
  color: #fff;
  font-weight: 400;
  line-height: 1.3;
}
@media print, screen and (min-width: 960px) {
  .p-home-mv__txt p {
    margin-top: 50px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-mv__txt p {
    font-size: 2.5rem;
    text-align: right;
  }
}
.p-home-txt__deco {
  width: 100%;
  white-space: nowrap;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media print, screen and (min-width: 960px) {
  .p-home-txt__deco {
    padding: 20px 0 50px;
    height: 300px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-txt__deco {
    padding: 5px 0 20px;
    height: 140px;
  }
}
.p-home-txt__deco ul {
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 960px) {
  .p-home-txt__deco ul {
    animation: animetxt 30s linear infinite;
  }
}
@media screen and (max-width: 959px) {
  .p-home-txt__deco ul {
    animation: animetxt 15s linear infinite;
  }
}
.p-home-txt__deco ul li {
  margin-right: 20px;
  color: #f0f0f0;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .p-home-txt__deco ul li {
    width: 3500px;
    font-size: 20rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-txt__deco ul li {
    width: 1360px;
    font-size: 8rem;
  }
}
.p-home-about {
  position: relative;
}
.p-home-about__bg {
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .p-home-about__bg {
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  .p-home-about__bg {
    height: 100%;
    min-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 60% 50%;
       object-position: 60% 50%;
  }
}
.p-home-about__block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 960px) {
  .p-home-about__block {
    margin-left: 7%;
  }
}
@media screen and (max-width: 959px) {
  .p-home-about__block {
    margin: 0 15px;
  }
}
@media print, screen and (min-width: 960px) {
  .p-home-about__logo {
    width: 30%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-about__logo {
    width: 60%;
    max-width: 300px;
    margin-top: 30px;
  }
}
.p-home-about__lead {
  text-indent: -1em;
}
@media print, screen and (min-width: 960px) {
  .p-home-about__lead {
    width: 50%;
    margin-top: 50px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-about__lead {
    width: 65%;
    margin-top: 30px;
    font-size: 1.5rem;
  }
}
.p-home-about__lead span {
  color: #155f6c;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .p-home-about__lead span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-about__lead span {
    font-size: 2.5rem;
  }
}
@media print, screen and (min-width: 960px) {
  .p-home-greeting {
    padding: 0 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-greeting {
    padding: 0 20px;
  }
}
.p-home-greeting__inner {
  margin: 0 auto;
  max-width: 1000px;
}
@media print, screen and (min-width: 960px) {
  .p-home-greeting__inner {
    padding: 100px 0;
  }
}
@media screen and (max-width: 959px) {
  .p-home-greeting__inner {
    padding: 70px 0;
  }
}
.p-home-greeting h2 {
  text-align: center;
  line-height: 1.3;
}
@media print, screen and (min-width: 960px) {
  .p-home-greeting h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-greeting h2 {
    font-size: 3.2rem;
  }
}
.p-home-greeting__lead {
  text-align: center;
  word-break: auto-phrase;
}
@media print, screen and (min-width: 960px) {
  .p-home-greeting__lead {
    margin-top: 50px;
    font-size: 2.6rem;
    line-height: 2.6;
  }
}
@media screen and (max-width: 959px) {
  .p-home-greeting__lead {
    margin-top: 30px;
    font-size: 1.8rem;
    line-height: 2;
  }
}
.p-home-whychoose {
  background: url(/assets/img/bg_white_cream_check.jpg);
  background-size: 500px 500px;
}
.p-home-whychoose__inner {
  margin: 0 auto;
  border-radius: 5px;
}
@media print, screen and (min-width: 960px) {
  .p-home-whychoose__inner {
    padding: 100px 0;
    max-width: 1400px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-whychoose__inner {
    padding: 70px 0;
  }
}
.p-home-whychoose h3 {
  color: #155f6c;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.3;
}
@media print, screen and (min-width: 960px) {
  .p-home-whychoose h3 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-whychoose h3 {
    font-size: 2rem;
    padding: 0 20px;
  }
}
.p-home-whychoose h3 span {
  font-weight: 600;
}
@media print, screen and (min-width: 960px) {
  .p-home-whychoose h3 span {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-whychoose h3 span {
    font-size: 2.6rem;
  }
}
.p-home-whychoose__item {
  display: flex;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-home-whychoose__item {
    margin-top: 100px;
    align-items: center;
  }
  .p-home-whychoose__item:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .p-home-whychoose__item:nth-child(odd) .p-home-whychoose__object {
    left: inherit;
    right: -100px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-whychoose__item {
    margin-top: 50px;
    flex-direction: column;
  }
}
@media print, screen and (min-width: 960px) {
  .p-home-whychoose__item figure {
    width: 65%;
    min-width: 600px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-whychoose__item figure {
    width: 80vw;
  }
}
.p-home-whychoose__object {
  background-color: #155f6c;
  position: relative;
  z-index: 1;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
@media print, screen and (min-width: 960px) {
  .p-home-whychoose__object {
    width: 35vw;
    min-width: 400px;
    height: 50%;
    min-height: 200px;
    padding: 30px 7%;
    left: -100px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-whychoose__object {
    width: 80vw;
    padding: 20px 10%;
    top: -15px;
    margin-left: auto;
  }
}
.p-home-whychoose__object h4 {
  color: #fff;
}
.p-home-whychoose__object p {
  color: #fff;
}
@media print, screen and (min-width: 960px) {
  .p-home-whychoose__object p {
    margin-top: 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-whychoose__object p {
    margin-top: 20px;
  }
}
.p-home-whychoose__btn {
  width: -moz-fit-content;
  width: fit-content;
}
@media print, screen and (min-width: 960px) {
  .p-home-whychoose__btn {
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 959px) {
  .p-home-whychoose__btn {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 959px) {
  .p-home-sns {
    width: 100vw;
    overflow: hidden;
  }
}
@media print, screen and (min-width: 960px) {
  .p-home-sns__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px 0;
  }
}
@media screen and (max-width: 959px) {
  .p-home-sns__inner {
    padding: 30px 20px 0;
  }
}
.p-home-sns h2 {
  color: #155f6c;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.p-home-sns__logo {
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-home-sns__logo {
    width: 450px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-sns__logo {
    width: 320px;
  }
}
.p-home-sns__logo p {
  position: absolute;
  left: 42%;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .p-home-sns__address {
    font-size: 1.6rem;
    top: 47px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-sns__address {
    font-size: 1.1rem;
    top: 34px;
  }
}
.p-home-sns__txt {
  color: #fff;
}
@media print, screen and (min-width: 960px) {
  .p-home-sns__txt {
    font-size: 1.4rem;
    top: 79px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-sns__txt {
    margin-left: -15px;
    font-size: 1.1rem;
    top: 55px;
  }
}
.p-home-sns ul {
  display: flex;
  gap: 0 2px;
  background-color: #fff;
}
@media print, screen and (min-width: 960px) {
  .p-home-sns ul {
    margin-top: 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-sns ul {
    animation: animetxt 20s linear infinite;
  }
}
@media print, screen and (min-width: 960px) {
  .p-home-sns ul li {
    width: 20vw;
    height: 20vw;
  }
}
@media screen and (max-width: 959px) {
  .p-home-sns ul li {
    min-width: 40vw;
    height: 40vw;
  }
}
.p-home-sns ul li a {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
.p-home-sns ul li a img {
  width: auto;
  max-height: 100%;
}
.p-home-sns ul li a::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/assets/img/common/icon_sns_tiktok.png) no-repeat center;
  background-size: 40%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s all linear;
}
@media print, screen and (min-width: 960px) {
  .p-home-sns ul li a::after {
    opacity: 0;
  }
}
@media screen and (max-width: 959px) {
  .p-home-sns ul li a::after {
    opacity: 0.2;
  }
}
.p-home-sns ul li a:hover::after {
  opacity: 0.4;
}
.p-home-sns ul li:nth-child(even) {
  background-color: #28afb0;
}
.p-home-sns ul li:nth-child(odd) {
  background-color: #155f6c;
}
.p-home-contact {
  height: 450px;
  position: relative;
}
.p-home-contact img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-home-contact__block {
  border: 2px solid #28afb0;
  border-radius: 5px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 960px) {
  .p-home-contact__block {
    width: 600px;
    padding: 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-contact__block {
    width: calc(100% - 40px);
    padding: 30px 18px;
  }
}
.p-home-contact__lead {
  color: #155f6c;
  font-weight: 500;
}
@media print, screen and (min-width: 960px) {
  .p-home-contact__lead {
    font-size: 2rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-contact__lead {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 960px) {
  .p-home-contact__tel {
    margin-top: 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-home-contact__tel {
    margin-top: 20px;
  }
}
.p-home-contact__tel a {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1;
  position: relative;
  color: #155f6c;
}
@media print, screen and (min-width: 960px) {
  .p-home-contact__tel a {
    padding-left: 45px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-contact__tel a {
    padding-left: 30px;
    font-size: 2.4rem;
  }
}
.p-home-contact__tel a::before {
  content: "";
  background: url(/assets/img/common/icon-tel-blue.png) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
}
@media print, screen and (min-width: 960px) {
  .p-home-contact__tel a::before {
    width: 38px;
    height: 38px;
    top: calc(50% - 19px);
  }
}
@media screen and (max-width: 959px) {
  .p-home-contact__tel a::before {
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
  }
}
.p-home-contact__time {
  color: #155f6c;
}
@media print, screen and (min-width: 960px) {
  .p-home-contact__time {
    margin-top: 40px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 959px) {
  .p-home-contact__time {
    margin-top: 25px;
    font-size: 1.5rem;
  }
}

@keyframes animetxt {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media print, screen and (min-width: 960px) {
  .p-about .p-2ndPage-mv__img img {
    -o-object-position: 18% 50%;
       object-position: 18% 50%;
  }
}
@media screen and (max-width: 959px) {
  .p-about .p-2ndPage-mv__img img {
    -o-object-position: 5% 50%;
       object-position: 5% 50%;
  }
}
.p-about-strength {
  background-color: #e0f7e6;
}
@media print, screen and (min-width: 960px) {
  .p-about-strength {
    padding: 100px 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-about-strength {
    padding: 70px 20px;
  }
}
.p-about-strength h2 {
  text-align: center;
  line-height: 1.3;
}
@media print, screen and (min-width: 960px) {
  .p-about-strength h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 959px) {
  .p-about-strength h2 {
    font-size: 3.2rem;
  }
}
.p-about-strength__item {
  background-color: #fff;
}
@media print, screen and (min-width: 960px) {
  .p-about-strength__item {
    width: 70%;
    margin: 50px auto 0;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-about-strength__item {
    margin: 30px auto 0;
    padding: 30px 20px;
  }
}
.p-about-strength__item h3 {
  text-align: center;
  line-height: 1.3;
}
@media print, screen and (min-width: 960px) {
  .p-about-strength__item h3 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 959px) {
  .p-about-strength__item h3 {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 960px) {
  .p-about-strength__item figure {
    margin: 50px auto;
    width: 50%;
    max-width: 400px;
  }
}
@media screen and (max-width: 959px) {
  .p-about-strength__item figure {
    margin: 30px auto;
    width: 60%;
    max-width: 400px;
  }
}
.p-about-strength__item p {
  margin: 30px auto 0;
  max-width: 700px;
  font-size: 2rem;
  text-align: center;
  word-break: auto-phrase;
}
.p-about-profile {
  background: #fff url(/assets/img/common/bg_gridline.png);
  background-position: right top;
  background-size: 1.8rem 1.8rem;
}
@media print, screen and (min-width: 960px) {
  .p-about-profile {
    padding: 100px 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-about-profile {
    padding: 50px 20px;
  }
}
.p-about-profile h2 {
  text-align: center;
  line-height: 1.3;
  color: #155f6c;
}
@media print, screen and (min-width: 960px) {
  .p-about-profile h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 959px) {
  .p-about-profile h2 {
    font-size: 3.2rem;
  }
}
.p-about-profile__2col {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media print, screen and (min-width: 960px) {
  .p-about-profile__2col {
    width: 75%;
    margin: 50px auto 0;
    gap: 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-about-profile__2col {
    margin: 30px auto 0;
    gap: 30px;
  }
}
@media print, screen and (min-width: 960px) {
  .p-about-profile figure {
    width: 30%;
  }
}
@media screen and (max-width: 959px) {
  .p-about-profile figure {
    width: 65%;
    margin: 0 auto;
  }
}
.p-about-profile__detail {
  border: 3px solid #155f6c;
  border-radius: 10px;
}
@media print, screen and (min-width: 960px) {
  .p-about-profile__detail {
    width: 70%;
    padding: 40px;
  }
}
@media screen and (max-width: 959px) {
  .p-about-profile__detail {
    padding: 20px;
  }
}
.p-about-profile__detail h4 {
  margin-bottom: 30px;
  font-size: 2.2rem;
  color: #155f6c;
  line-height: 1.3;
  text-align: center;
}
.p-about-profile__detail h4 span {
  font-size: 1.8rem;
}
@media print, screen and (min-width: 960px) {
  .p-about-profile__detail p {
    font-size: 1.8rem;
    word-break: auto-phrase;
  }
}

@media print, screen and (min-width: 960px) {
  .p-service .p-2ndPage-mv__img img {
    -o-object-position: 70% 50%;
       object-position: 70% 50%;
  }
}
@media screen and (max-width: 959px) {
  .p-service .p-2ndPage-mv__img img {
    -o-object-position: 50% 25%;
       object-position: 50% 25%;
  }
}
.p-service-lead {
  width: -moz-fit-content;
  width: fit-content;
  word-break: auto-phrase;
  border: 5px solid #155f6c;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-service-lead {
    margin: 100px auto;
    padding: 30px 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-service-lead {
    max-width: calc(100% - 40px);
    margin: 50px auto;
    padding: 20px 30px;
  }
}
.p-service-lead::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #28afb0;
  position: absolute;
  left: 30px;
  top: -12px;
  clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
}
.p-service-lead::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #28afb0;
  position: absolute;
  right: 30px;
  bottom: -12px;
  clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
}
.p-service-lead p {
  font-weight: 500;
  text-align: center;
  color: #155f6c;
}
@media print, screen and (min-width: 960px) {
  .p-service-lead p {
    font-size: 3rem;
  }
}
@media screen and (max-width: 959px) {
  .p-service-lead p {
    font-size: 2.2rem;
  }
}
.p-service section {
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-service section {
    padding: 100px 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-service section {
    padding: 50px 20px;
  }
}
.p-service section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media print, screen and (min-width: 960px) {
  .p-service section::before {
    width: 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-service section::before {
    width: 30px;
  }
}
.p-service section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media print, screen and (min-width: 960px) {
  .p-service section::after {
    width: 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-service section::after {
    width: 30px;
  }
}
.p-service section h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-service section h2 {
    padding: 10px 40px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 959px) {
  .p-service section h2 {
    padding: 10px 35px;
    font-size: 3rem;
  }
}
.p-service-section__ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.p-service-section__ttl .icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skew(-40deg, 0deg);
}
.p-service-section__ttl .icon:before, .p-service-section__ttl .icon:after {
  content: "";
  height: 3px;
  position: absolute;
  display: block;
  background: #155f6c;
}
@media print, screen and (min-width: 960px) {
  .p-service-section__ttl .icon:before, .p-service-section__ttl .icon:after {
    width: 40px;
  }
}
@media screen and (max-width: 959px) {
  .p-service-section__ttl .icon:before, .p-service-section__ttl .icon:after {
    width: 30px;
  }
}
.p-service-section__ttl .icon:before {
  left: 0;
  top: 0;
}
.p-service-section__ttl .icon:after {
  right: 0;
  bottom: 0;
}
.p-service-section__ttl .icon span:before, .p-service-section__ttl .icon span:after {
  content: "";
  background: #155f6c;
  position: absolute;
  display: block;
  width: 4px;
}
@media print, screen and (min-width: 960px) {
  .p-service-section__ttl .icon span:before, .p-service-section__ttl .icon span:after {
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  .p-service-section__ttl .icon span:before, .p-service-section__ttl .icon span:after {
    height: 30px;
  }
}
.p-service-section__ttl .icon span:before {
  left: 0;
  top: 0;
}
.p-service-section__ttl .icon span:after {
  right: 0;
  bottom: 0;
}
.p-service-studying {
  background-color: #f3f6f9;
}
.p-service-studying::before {
  background-color: #fff;
}
.p-service-studying::after {
  background-color: #fff;
}
.p-service-studying__list {
  display: flex;
  gap: 30px;
}
@media print, screen and (min-width: 960px) {
  .p-service-studying__list {
    margin-top: 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-service-studying__list {
    margin-top: 40px;
    flex-wrap: wrap;
  }
}
.p-service-studying__item {
  background-color: #fff;
  position: relative;
  padding: 40px 30px 30px 30px;
}
@media print, screen and (min-width: 960px) {
  .p-service-studying__item {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 959px) {
  .p-service-studying__item {
    width: 100%;
  }
}
.p-service-studying__item::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #f3f6f9;
  position: absolute;
  top: -1px;
  right: 0;
  z-index: 2;
}
.p-service-studying__item::after {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: #f3f6f9;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
}
.p-service-studying__item h4 {
  font-size: 2rem;
  line-height: 1.3;
}
.p-service-studying__item p {
  margin-top: 15px;
}
.p-service-studying__topSquare {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: -5px;
  left: 30px;
}
.p-service-studying__topSquare::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #155f6c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-service-studying__topSquare::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #28afb0;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.p-service-studying__bottomSquare {
  width: 15px;
  height: 15px;
  background-color: #28afb0;
  position: absolute;
  bottom: -5px;
  right: 30px;
  z-index: 2;
}
.p-service-life {
  background-color: #fff;
}
.p-service-life::before {
  background-color: #f3f6f9;
}
.p-service-life::after {
  background-color: #f3f6f9;
}
.p-service-life__list {
  display: flex;
  gap: 30px;
}
@media print, screen and (min-width: 960px) {
  .p-service-life__list {
    margin-top: 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-service-life__list {
    margin-top: 40px;
    flex-wrap: wrap;
  }
}
.p-service-life__item {
  background-color: #f3f6f9;
  padding: 40px 30px 30px 30px;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-service-life__item {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 959px) {
  .p-service-life__item {
    width: 100%;
  }
}
.p-service-life__item::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #fff;
  position: absolute;
  top: -1px;
  right: 0;
  z-index: 2;
}
.p-service-life__item::after {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
}
.p-service-life__item h4 {
  font-size: 2rem;
  line-height: 1.3;
}
.p-service-life__item p {
  margin-top: 15px;
}
.p-service-life__topSquare {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: -5px;
  left: 30px;
}
.p-service-life__topSquare::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #28afb0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-service-life__topSquare::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #f4d35e;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.p-service-life__bottomSquare {
  width: 15px;
  height: 15px;
  background-color: #f4d35e;
  position: absolute;
  bottom: -5px;
  right: 30px;
  z-index: 2;
}
.p-service-discuss {
  background-color: #e0f7e6;
}
.p-service-discuss::before {
  background-color: #fff;
}
.p-service-discuss::after {
  background-color: #fff;
}
.p-service-discuss__list {
  margin: 0 auto;
  display: flex;
}
@media print, screen and (min-width: 960px) {
  .p-service-discuss__list {
    max-width: 1000px;
    margin-top: 50px;
    gap: 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-service-discuss__list {
    margin-top: 40px;
    gap: 30px;
    flex-wrap: wrap;
  }
}
.p-service-discuss__item {
  background-color: #fff;
  padding: 40px 30px 30px 30px;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-service-discuss__item {
    width: calc(50% - 25px);
  }
}
@media screen and (max-width: 959px) {
  .p-service-discuss__item {
    width: 100%;
  }
}
.p-service-discuss__item::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #e0f7e6;
  position: absolute;
  top: -1px;
  right: 0;
  z-index: 2;
}
.p-service-discuss__item::after {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: #e0f7e6;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
}
.p-service-discuss__item h4 {
  font-size: 2rem;
  line-height: 1.3;
}
.p-service-discuss__item p {
  margin-top: 15px;
}
.p-service-discuss__topSquare {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: -5px;
  left: 30px;
}
.p-service-discuss__topSquare::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #155f6c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-service-discuss__topSquare::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #28afb0;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.p-service-discuss__bottomSquare {
  width: 15px;
  height: 15px;
  background-color: #28afb0;
  position: absolute;
  bottom: -5px;
  right: 30px;
  z-index: 2;
}
.p-service-career {
  background-color: #E6E4E0;
}
.p-service-career::before {
  background-color: #e0f7e6;
}
.p-service-career::after {
  background-color: #e0f7e6;
}
.p-service-career__list {
  margin: 0 auto;
  display: flex;
}
@media print, screen and (min-width: 960px) {
  .p-service-career__list {
    max-width: 1000px;
    margin-top: 50px;
    gap: 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-service-career__list {
    margin-top: 40px;
    gap: 30px;
    flex-wrap: wrap;
  }
}
.p-service-career__item {
  background-color: #fff;
  padding: 40px 30px 30px 30px;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-service-career__item {
    width: calc(50% - 25px);
  }
}
@media screen and (max-width: 959px) {
  .p-service-career__item {
    width: 100%;
  }
}
.p-service-career__item::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #E6E4E0;
  position: absolute;
  top: -1px;
  right: 0;
  z-index: 2;
}
.p-service-career__item::after {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: #E6E4E0;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
}
.p-service-career__item h4 {
  font-size: 2rem;
  line-height: 1.3;
}
.p-service-career__item p {
  margin-top: 15px;
}
.p-service-career__topSquare {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: -5px;
  left: 30px;
}
.p-service-career__topSquare::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #155f6c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-service-career__topSquare::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #f4d35e;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.p-service-career__bottomSquare {
  width: 15px;
  height: 15px;
  background-color: #f4d35e;
  position: absolute;
  bottom: -5px;
  right: 30px;
  z-index: 2;
}

@media print, screen and (min-width: 960px) {
  .p-activity .p-home-sns {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 959px) {
  .p-activity .p-home-sns {
    margin-bottom: 60px;
  }
}
.p-activity .p-home-sns__profileTtl {
  background-color: #f4d35e;
}
@media print, screen and (min-width: 960px) {
  .p-activity .p-home-sns__profileTtl {
    margin-top: 100px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-activity .p-home-sns__profileTtl {
    margin-top: 50px;
    padding-bottom: 60px;
  }
}
.p-activity .p-home-sns__profileTtl h3 {
  color: #155f6c;
  line-height: 1.3;
}
@media print, screen and (min-width: 960px) {
  .p-activity .p-home-sns__profileTtl h3 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 959px) {
  .p-activity .p-home-sns__profileTtl h3 {
    font-size: 2.2rem;
  }
}
.p-activity .p-home-sns dl {
  margin-top: 20px;
  display: flex;
  gap: 10px 50px;
}
@media screen and (max-width: 959px) {
  .p-activity .p-home-sns dl {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 960px) {
  .p-activity .p-home-sns dl:first-child {
    margin-top: -125px;
  }
}
@media screen and (max-width: 959px) {
  .p-activity .p-home-sns dl:first-child {
    margin-top: -90px;
  }
}
.p-activity .p-home-sns dl dt {
  width: 200px;
  font-weight: 600;
  font-size: 1.8rem;
  color: #155f6c;
  line-height: 1.3;
}
.p-activity .p-home-sns dl dd {
  flex: 1;
}
@media screen and (max-width: 959px) {
  .p-activity .p-home-sns dl dd {
    word-break: auto-phrase;
  }
}
.p-activity .p-home-sns dl dd figure {
  max-width: 350px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-activity .p-home-sns dl dd figure {
    width: calc(100% - 100px);
    margin-left: 100px;
  }
}
.p-activity .p-home-sns dl dd figure::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: #28afb0 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.p-activity .p-home-sns dl dd figure::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #f4d35e transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media print, screen and (min-width: 960px) {
  .p-activity .p-2ndPage-mv__img img {
    -o-object-position: 70% 50%;
       object-position: 70% 50%;
  }
}
@media screen and (max-width: 959px) {
  .p-activity .p-2ndPage-mv__img img {
    -o-object-position: 50% 35%;
       object-position: 50% 35%;
  }
}
.p-activity-lead {
  width: -moz-fit-content;
  width: fit-content;
  border: 5px solid #155f6c;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-activity-lead {
    margin: 100px auto;
    padding: 30px 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-activity-lead {
    max-width: calc(100% - 40px);
    margin: 50px auto;
    padding: 20px;
  }
}
.p-activity-lead::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #28afb0;
  position: absolute;
  left: 30px;
  top: -12px;
  clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
}
.p-activity-lead::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #28afb0;
  position: absolute;
  right: 30px;
  bottom: -12px;
  clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
}
.p-activity-lead p {
  font-weight: 500;
  color: #155f6c;
}
@media print, screen and (min-width: 960px) {
  .p-activity-lead p {
    text-align: center;
    font-size: 3rem;
  }
}
@media screen and (max-width: 959px) {
  .p-activity-lead p {
    font-size: 1.8rem;
  }
}
.p-activity-wrap {
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-activity-wrap {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-activity-wrap {
    padding: 70px 20px;
  }
}
.p-activity-bg {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 5000/3000;
  width: 100%;
  height: 100%;
}
.p-activity-bg::before {
  position: sticky;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-size: cover;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 960px) {
  .p-activity-bg::before {
    background-image: url(/assets/img/activity/bg_activity_pc.jpg);
  }
}
@media screen and (max-width: 959px) {
  .p-activity-bg::before {
    background-image: url(/assets/img/activity/bg_activity_sp.jpg);
  }
}
.p-activity-list {
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-activity-list {
    padding: 0 100px;
  }
}
@media print, screen and (min-width: 960px) {
  .p-activity-item {
    width: 48%;
    padding: 70px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 959px) {
  .p-activity-item {
    width: 75%;
    padding: 20px;
    border-radius: 10px;
  }
  .p-activity-item:not(:first-child) {
    margin-top: 50px;
  }
}
.p-activity-item:nth-child(odd) {
  margin-left: auto;
  background-color: #155f6c;
}
.p-activity-item:nth-child(even) {
  background-color: #28afb0;
}
.p-activity-item:nth-child(3n) {
  background-color: #fff;
}
.p-activity-item:nth-child(3n) > p {
  color: #155f6c;
  border-color: #155f6c;
}
.p-activity-item__ttl {
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
@media print, screen and (min-width: 960px) {
  .p-activity-item__ttl {
    padding-bottom: 15px;
    font-size: 2.2rem;
    border-bottom: 3px solid #fff;
  }
}
@media screen and (max-width: 959px) {
  .p-activity-item__ttl {
    padding-bottom: 10px;
    font-size: 1.8rem;
    border-bottom: 2px solid #fff;
  }
}
.p-activity-item__txt {
  color: #fff;
}
@media print, screen and (min-width: 960px) {
  .p-activity-item__txt {
    margin-top: 20px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 959px) {
  .p-activity-item__txt {
    margin-top: 15px;
    font-size: 1.5rem;
  }
}

@media print, screen and (min-width: 960px) {
  .p-contact .p-2ndPage-mv__img img {
    -o-object-position: 70% 50%;
       object-position: 70% 50%;
  }
}
@media screen and (max-width: 959px) {
  .p-contact .p-2ndPage-mv__img img {
    -o-object-position: 50% 25%;
       object-position: 50% 25%;
  }
}
.p-contact-info {
  width: -moz-fit-content;
  width: fit-content;
  border: 5px solid #155f6c;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .p-contact-info {
    margin: 100px auto;
    padding: 30px 50px;
  }
}
@media screen and (max-width: 959px) {
  .p-contact-info {
    margin: 50px auto;
    padding: 20px;
  }
}
.p-contact-info::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #28afb0;
  position: absolute;
  left: 30px;
  top: -12px;
  clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
}
.p-contact-info::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #28afb0;
  position: absolute;
  right: 30px;
  bottom: -12px;
  clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
}
.p-contact-info p {
  text-align: center;
  color: #155f6c;
}
.p-contact-address a {
  color: #155f6c;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: 0.2s ease;
}
.p-contact-address a:hover {
  text-decoration: none;
}
.p-contact-infoNo {
  margin-top: 30px;
  font-weight: 500;
}
@media print, screen and (min-width: 960px) {
  .p-contact-infoNo {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 959px) {
  .p-contact-infoNo {
    font-size: 1.6rem;
  }
}
.p-contact-infoNo span {
  display: inline-block;
}
.p-contact-infoNo span a {
  display: inline-block;
  color: #155f6c;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media print, screen and (min-width: 960px) {
  .p-contact-infoNo span a {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 959px) {
  .p-contact-infoNo span a {
    font-size: 2.8rem;
  }
}
.p-contact-msg {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 960px) {
  .p-contact-msg {
    margin: 30px auto 100px;
    gap: 30px;
  }
}
@media screen and (max-width: 959px) {
  .p-contact-msg {
    margin: 15px auto 50px;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media print, screen and (min-width: 960px) {
  .p-contact-msg__item {
    width: 260px;
  }
}
@media screen and (max-width: 959px) {
  .p-contact-msg__item {
    width: 100px;
  }
}
.p-contact-msg__item a {
  display: block;
  position: relative;
}
.p-contact-msg__item a figure {
  transition: 0.2s all ease-in;
}
.p-contact-msg__item a .icon {
  position: absolute;
  transition: 0.2s all ease-in;
}
@media print, screen and (min-width: 960px) {
  .p-contact-msg__item a .icon {
    width: 40px;
  }
}
@media screen and (max-width: 959px) {
  .p-contact-msg__item a .icon {
    width: 18px;
  }
}
.p-contact-msg__item a:hover figure {
  opacity: 0.8;
}
.p-contact-msg__item a:hover .icon {
  transform: scale(1.2, 1.2);
}
@media print, screen and (min-width: 960px) {
  .p-contact-msg__item:nth-child(1) .icon {
    top: 100px;
    right: 40px;
  }
}
@media screen and (max-width: 959px) {
  .p-contact-msg__item:nth-child(1) .icon {
    top: 40px;
    right: 13px;
  }
}
@media print, screen and (min-width: 960px) {
  .p-contact-msg__item:nth-child(2) .icon {
    top: 60px;
    left: 20px;
  }
}
@media screen and (max-width: 959px) {
  .p-contact-msg__item:nth-child(2) .icon {
    top: 25px;
    left: 5px;
  }
}
@media print, screen and (min-width: 960px) {
  .p-contact-msg__item:nth-child(3) .icon {
    top: 32px;
    right: 46px;
  }
}
@media screen and (max-width: 959px) {
  .p-contact-msg__item:nth-child(3) .icon {
    top: 13px;
    right: 17px;
  }
}
.p-contact__callTxt {
  color: #155f6c;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .p-contact__callTxt {
    margin-top: 30px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 959px) {
  .p-contact__callTxt {
    margin-top: 20px;
    font-size: 1.8rem;
  }
}
.p-contact-map {
  line-height: 0;
  background-color: #28afb0;
}
.p-contact-map iframe {
  width: 100%;
  height: 300px;
  filter: grayscale(1);
  opacity: 0.9;
}