@charset "utf-8";
/*===== DEFAULT =====*//*#region*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-size: 18px;
  text-align: center;
}
img {
  width: 100%;
  vertical-align: middle;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button { /*デフォルトstyleのリセット*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  vertical-align: middle;
}
iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*===== DEFAULT SP =====*/
@media screen and (max-width:760px) {
.spbr {
  font-size: 0;
}
.spbr::before {
  content: '\A';
  white-space: pre;
}
}
/*===== /DEFAULT =====*//*#endregion*/

/*===== ALL =====*//*#region*/
/* font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,700;1,700&display=swap');
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.font-number {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* font-size */
h2 {
  font-size: 50px;
  margin: 20px 0;
}
h2 .logo {
  width: 300px;
  vertical-align: -15%;
  margin-right: 0.5em;
}
.font-big {
  font-size: 150%;
}
.font-small {
  font-size: 70%;
}
.font-blue {
  color: var(--blue);
}
.font-white {
  color: var(--white);
}
.font-gold {
  color: var(--gold);
}

/* buttom */

a.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(to right, gold, #fffacd, gold);
  max-width: 400px;
  height: 40px;
  border-radius: 100000px;
  text-align: center;
  margin: 20px auto;
  transition: filter 0.5s ease;
  transform: translateZ(0);
}
a.button:hover {
  filter: drop-shadow(0px 0px 20px black);
  transform: translateZ(0);
}
a.button span.label {
  flex-grow: 1;
  text-align: center;
  color: #0056b3;
  font-size: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* 完全中央 */
  color: var(--blue);
  font-weight: bold;
  white-space: nowrap;
  pointer-events: none;
}
a.button div {
  background: var(--blue);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 10px;
}
a.button div img {
  width: 80%;
}
/* Responsive-SP */
@media screen and (max-width:760px) {
a.button span.label {
  font-size: 20px;
}
}

/* color-parret */
:root {
  --blue: #004098;
  --white: #ffffff;
  --gold: linear-gradient(
    90deg,
    #FFD700,   /* 明るい金 */
    #FFC107,   /* 少し濃い金 */
    #FFEB3B,   /* 明るめの黄金 */
    #FFA000    /* 濃い金 */
  );
}

/* background */
section article {
  position: relative;
  overflow: hidden;
}
.background {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
}
section .background img {
  height: 100%;
  object-fit: cover;
}
section .content {
  position: relative;
  margin: 20px auto 0;
  max-width: 1000px;
  z-index: 1;
  padding: 0 20px;
}
section article:first-of-type .content{
  margin-top: calc(var(--v-depth) + 20px);
}
section article:last-of-type .content{
  margin-bottom: calc(var(--v-depth) + 20px);
}

/* v-shape */
:root {
  --v-depth: 10vw;
  --v-border-height: 20px;
}
.v-shape {
  margin-top: calc(-1 * var(--v-depth));
  clip-path: polygon(
    0% 0%,
    50% var(--v-depth),
    100% 0%,
    100% 100%,
    0% 100%
  );
}
.v-hr {
  height: calc(var(--v-depth) + var(--v-border-height));
  margin-top: calc(-1 * var(--v-depth));
  clip-path: polygon(
    0% 0%,
    50% var(--v-depth),
    100% 0%,
    100% calc(100% - var(--v-depth)),
    50% 100%,
    0% calc(100% - var(--v-depth))
  );
}
.v-hr.blue {
  background: var(--blue);
}
.v-hr.gold {
  background: var(--gold);
}

/* Responsive-SP */
@media screen and (max-width:760px) {
h2 {
  font-size: 25px;
}
h2 .logo {
  width: 150px;
}
}
/*===== /ALL =====*//*#endregion*/

/*===== #MAIN-VISUAL =====*//*#region*/
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  display: flex;
  justify-content: space-between; /* 左右に配置 */
}
header h1 {
  padding: 5px;
  font-size: 0;
  width: auto
}
header nav {
  width: 300px;
  height: auto;
}
header .logo {
  color: var(--white);
  height: 30px;
  width: auto;
}
header a.button {
  border-radius: 0;
  margin: 0; /* ヘッダー内では中央寄せ不要 */
  width: 100%;
  height: 100%;
}
.st0 {
  fill: currentColor; /* 色はここでコントロール */
}
figure#main-visual {
  position: relative;
}
figure#main-visual figcaption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--v-depth) /2);
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  z-index: 0;
  padding: 0 20px;
}
@media screen and (max-width: 760px) {
header .logo {
  height: 20px;
}
header nav {
  width: 200px;
}
a.button span.label {
  font-size: 15px;
}
}
/*===== /MAIN-VISUAL =====*//*#endregion*/

/*===== #INTORODUCTION =====*//*#region*/
#introduction h2 {
  color: var(--blue);
}
#introduction .introduction-message_1 {
  font-size: 15px;
}
#introduction .about {
  display: flex;
  flex-direction: row;
  margin: 50px 0;
}
#introduction .about figure {
  flex: 1;
}
#introduction .about img {
  width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
}
#introduction .about figcaption {
  margin: 20px 0;
}
#introduction .about h3 {
  color: var(--blue);
  font-size: 20px;
}
#introduction .about p {
  font-size: 15px;
  font-weight: 400;
  margin: 5px 0;
}
#introduction .instructor {
  border: solid #000000 1px;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  margin: 50px 0;
}
#introduction .instructor figure {
  display: flex;
  flex-direction: row-reverse;
}
#introduction .instructor img {
  width: 40%;
  object-fit: cover;
  aspect-ratio: 1 / 1; 
}
#introduction .instructor figcaption {
  width: 60%;
  text-align: left;
  padding: 20px;
  margin: auto 0;
}
#introduction .instructor figcaption .name-jp {
  font-size: 30px;
}
#introduction .instructor figcaption .name-en {
  margin-left: 20px;
}
#introduction .instructor figcaption .discription {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 400;
}

/* Responsive-SP */
@media screen and (max-width:760px) {
#introduction .about {
  flex-direction: column;
}
#introduction .instructor figure {
  flex-direction: column;
}
#introduction .instructor img {
  width: 100%;
}
#introduction .instructor figcaption {
  width: 100%;
}
#introduction .instructor figcaption .roll {
  text-align: center;
}
#introduction .instructor figcaption .name {
  text-align: center;
}
#introduction .instructor figcaption .name-en {
  margin-left: 0;
}
#introduction .instructor figcaption .discription {
  font-size: 10px;
}
}
/*===== /INTORODUCTION =====*//*#endregion*/

/*===== #PROPOSAL =====*//*#region*/
section#proposal .background img {
  object-position: right bottom;
}
#proposal #proposal-1 h2 {
  color: #9bfdff;
  opacity: 0.8;
}
#proposal #proposal-1 .proposal-message_1 {
  display: inline-block;
  margin: 0 auto;
  width: auto;
}
#proposal #proposal-1 .proposal-message_1-1 {
  font-size: 30px;
  text-align: left;
  color: white;
}
#proposal #proposal-1 .proposal-message_1-2 {
  margin: 10px 0;
  font-size: 30px;
  color: var(--blue);
  background: white;
}
#proposal #proposal-1 .proposal-message_1-3 {
  margin: 10px 0;
  font-size: 25px;
  text-align: left;
  color: white;
  font-weight: 400;  
}
#proposal #proposal-1 .proposal-message_1-4 {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  color: var(--white);
}
#proposal #proposal-1 .proposal-message_1-4 li {
  margin: 5px 0;
}
/* ハイライト + ✓マーク込み */
#proposal #proposal-1 .proposal-message_1-4 li span {
  display: inline-block;
  position: relative;
  padding: 0.6em 1.2em 0.6em 2.2em;
  color: white;
  background: linear-gradient(to right, #0013a1b3, #00a2ffb3);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
/* ✓マーク（span内で表示） */
#proposal #proposal-1 .proposal-message_1-4 li span::before {
  content: "✓";
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: bold;
  font-size: 1em;
}
#proposal #proposal-1 .proposal-message_2 {
  font-size: 25px;
  color: white;
  background-color: #00026a7b;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 1em 0; 
}
#proposal #proposal-2 h2 {
  font-size: 25px;
  color: var(--blue);
}
#proposal #proposal-2 h2 span.over-dot {
  position: relative;
  display: inline-block;
  margin: 0 1px;
  line-height: 2em;
}
#proposal #proposal-2 h2 span.over-dot::before {
  content: "•"; /* ドット */
  position: absolute;
  top: -1em; /* 上に配置 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8em;
  color: rgb(209, 178, 0)
}
#proposal #proposal-2 p {
  font-size: 18px;
}

/* Responsive-SP */
@media screen and (max-width:760px) {
#proposal #proposal-1 .proposal-message_1-1 {
  font-size: 15px;
}
#proposal #proposal-1 .proposal-message_1-2 {
  font-size: 15px;
}
#proposal #proposal-1 .proposal-message_1-3 {
  font-size: 13px;
}
#proposal #proposal-1 .proposal-message_1-4 {
  font-size: 12px;
}
#proposal #proposal-1 .proposal-message_2 {
  font-size: 20px;
}
#proposal #proposal-2 h2 {
  font-size: 15px;
}
#proposal #proposal-2 p {
  font-size: 12px;
}
}

/*===== /PROPOSAL =====*//*#endregion*/

/*===== #SERVICE =====*//*#region*/
#service h2 {
  color: var(--blue);
}
#service .service-card {
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  margin: 30px 0;
  filter: drop-shadow(0px 0px 10px gray);
  transform: translateZ(0);
}
#service .service-card .title {
  position: relative;
  background: var(--blue);
  color: var(--white);
  font-size: 25px;
}
#service .service-card .title p {
  position: absolute;
  left: 20px;
}
#service .service-card .detail {
  background: var(--white);
  text-align: left;
  padding: 20px;
}
#service .service-card .main-text li {
  color: var(--blue);
  margin: 5px 0;
  font-size: 20px;
}
#service .service-card .main-text li::marker {
  color: gray;
}
#service .service-card .sub-text {
  color: gray;
  font-size: 15px;
}
#service .service-card .float {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
#service .service-card .float_1 img {
  width: 30%;
  height: auto;
}
#service .service-card .float_1 .text {
  width: 70%;
}
#service .service-card .float_4 img {
  width: 40%;
}
#service .service-card .float_4 .text {
  width: 60%;
}
#service .service-card .float_5 img {
  width: 25%;
}
#service .service-card .float_5 .text {
  width: 75%;
}

#service #service-2 {
  font-size: 20px;
  background: var(--blue);
  color: var(--white);
}
/* Responsive-SP */
@media screen and (max-width:760px) {
#service .service-card .title {
  font-size: 20px;
}
#service .service-card .main-text li {
  font-size: 15px;
}
#service .service-card .sub-text {
  font-size: 10px;
}
#service .service-card .float {
  flex-direction: column;
}
#service .service-card .float_1 img,
#service .service-card .float_1 .text,
#service .service-card .float_4 img,
#service .service-card .float_4 .text,
#service .service-card .float_5 img,
#service .service-card .float_5 .text {
  width: 100%;
}
}
/*===== /SERVICE =====*//*#endregion*/

/*===== #FEATURE =====*//*#region*/
section#feature .background img {
  object-position: bottom;
}
#feature h2 {
  color: var(--white);
}
#feature ul.feature-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
#feature ul.feature-list li {
  width: calc(100%-10%/2);
  flex-basis: calc(50% - 10px);
  align-items: stretch;
}
#feature .feature-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  height: 100%;
  text-align: left;
}
#feature .feature-card figcaption {
  margin: 10px 0;
}
#feature .feature-card figcaption h3 {
  font-size:20px;
  color: var(--blue);
  margin: 10px 0;
}
#feature .feature-card figcaption p {
  font-size: 15px;
  font-weight: 400;
}
@media screen and (max-width:760px) {
#feature ul.feature-list {
  flex-direction: column;
}
#feature .feature-card figcaption h3 {
  font-size:18px;
}
#feature .feature-card figcaption p {
  font-size: 10px;
}
}
/*===== /FEATURE =====*//*#endregion*/

/*===== #CASE =====*//*#region*/
section#case .background img {
  object-position: 50% 80%;
}
#case h2 {
  color: var(--blue);
}
#case .frame {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
#case .case-logos p {
  background: var(--blue);
  padding: 20px;
  font-size: 30px;
  color: var(--white);
}
#case .case-comment {
  padding: 20px;
  text-align: left;
}
#case .case-comment .figure {
  float: right;
  width: 25%;
}
#case .case-comment .figure img {
  padding: 15px;
}
#case .case-comment .roll {
  font-size: 18px;
}
#case .case-comment .name-jp {
  font-size: 30px;
}
#case .case-comment .name-en {
  font-size: 20px;
  margin-left: 20px;
}
#case .case-comment .comment {
  font-weight: 400;
  font-size: 15px;
}
#case .case-comment .comment p {
  margin-top: 1em;
}
/* Responsive-SP */
@media screen and (max-width:760px) {
#case .case-logos p {
  padding: 10px;
  font-size: 15px;
}
#case .case-comment .figure {
  float: none;
  width: 50%;
  margin: 0 auto;
}
#case .case-comment .roll {
  font-size: 10px;
  text-align: center;
}
#case .case-comment .name {
  text-align: center;
}
#case .case-comment .name-jp {
  font-size: 20px;
}
#case .case-comment .name-en {
  font-size: 15px;
  margin-left: 0;
}
#case .case-comment .comment p {
  font-size: 10px;
}
}

/*===== /CASE =====*//*#endregion*/

/*===== FAQ =====*//*#region*/
section#faq {
  background: var(--white);
}
section#faq .faq-list {
  position: relative;
  text-align: left;
}

section#faq .faq-list dt,
section#faq .faq-list dd {
  position: relative;
  padding-left: 50px;
  margin: 20px 0;
}
section#faq .faq-list dt {
  color: var(--blue);
  font-size: 20px;
}
section#faq .faq-list dd {
  font-weight: 400;
  font-size: 15px;
}
section#faq .faq-list dt::before,
section#faq .faq-list dd::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
section#faq .faq-list dt::before {
  content: "Q";
  background-color: var(--blue);
  color: var(--white);
}
section#faq .faq-list dd::before {
  content: "A";
  background-color: #e6e6e6;
  color: var(--blue);
}
section#faq .faq-list hr {
  border-top: 2px dashed var(--blue);
}
/* Responsive-SP */
@media screen and (max-width:760px) {
section#faq .faq-list dt {
  font-size: 15px;
}
section#faq .faq-list dd {
  font-size: 12px;
}
}
/*===== /FAQ =====*//*#endregion*/

/*===== #CONVERSION =====*//*#region*/
section#conversion {
  position: relative;
  clip-path: none;
  text-align: left;
  color: var(--white);
}
section#conversion a.button {
  position: relative;
  margin-left: 0;
  height: 80px;
  max-width: 600px;
}
section#conversion a.button span.label {
  font-size: 30px;
  line-height: 1em;
}
section#conversion .content {
  z-index: 10;
}
section#conversion .background img {
  object-position: 65% 0%;
}
section#conversion article#conversion-1 .content {
  margin: 100px auto 70px;
  font-size: 18px;
  font-family: serif;
  line-height: 2em;
  font-weight: 500;
}
section#conversion article#conversion-1 img.signature {
  width: 200px;
  margin-top: 50px;
}
section#conversion article#conversion-2 {
  background: var(--blue);
}
section#conversion article#conversion-2 .content {
  margin: 30px auto 50px;
}
section#conversion img.messenger {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 450px;
  z-index: 1;
}
section#conversion img.messenger-pc {
  display: block;
}
section#conversion img.messenger-sp {
  display: none;
    float: right;
}
@media screen and (max-width: 1200px) {
section#conversion img.messenger {
  right: 10px;
}
}
@media screen and (max-width: 760px) {
section#conversion article#conversion-1 img.signature {
  width: 100px;
  margin-bottom: 50px;
}
section#conversion img.messenger {
  width: 40%;
}
section#conversion img.messenger-pc {
  display: none;
}
section#conversion img.messenger-sp {
  display: block;
}
section#conversion article#conversion-1 .content {
  font-size: 15px;
}
section#conversion a.button {
  margin-left: auto;
  height: 80px;
  max-width: 600px;
}
section#conversion a.button span.label {
  font-size: 20px;
}
section#conversion a.button span.label .font-small {
  font-size: 12px;
}
section#conversion article#conversion-2 {
  text-align: center;
}
}
/*===== /CONVERSION =====*//*#endregion*/

/*===== FOTTER =====*//*#region*/
#footer {
  color: var(--blue);
  text-align: left;
}
#footer .content {
  display: flex;
  flex-direction: row;
  margin: 20px auto;
}
#footer .footer-1,
#footer .footer-2 {
  width: 50%;
  padding: 20px;
}
#footer .footer_logo {
  width: 100%;
  padding: 20px;
}
#footer .footer_tel {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}
#footer .footer_tel img {
  width: auto;
  height: 100px;
  aspect-ratio: 1/1;
  margin-right: 10px;
}
#footer .footer_tel .tel {
  font-size: 30px;
}
#footer .footer_tel .time {
  font-size: 20px;
}
#footer .footer_tel .attention {
  font-size: 15px;
}
#footer .footer_location p {
  font-size: 15px;
  margin: 1em;
  font-weight: 400;
}
@media screen and (max-width: 760px) {
#footer .content {
  display: flex;
  flex-direction: column;
}
#footer .footer-1,
#footer .footer-2 {
  width: 100%;
}
#footer .footer_tel img {
  height: 50px;
}
#footer .footer_tel .time {
  font-size: 12px;
}
#footer .footer_tel .attention {
  font-size: 10px;
}
}
/*===== /FOOTER =====*//*#endregion*/