@charset "UTF-8";
/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
:root {
  --white: #fff;
  --black: #000;
  --second-black: #4C4C4C;
  --gray: #D9D9D9;
  --blue: #3B8BBE;
  --dark-blue: #133372;
  --theme-blue: #06234A;
  --contents-max-width: 420;
  --padding: 16px;
  --color-text: #333;
  --color-text-white: var(--white);
  --color-bg-white: #fff;
  --primary-color: #1A3068;
  --secondary-color: #2758A4;
  --font-inter: "Inter", sans-serif;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-mincho: "Zen Old Mincho", sans-serif;
  --theme-gradation: linear-gradient(90deg, #6BC1E4 21.63%, #1D2B6D 82.21%);
  --page-title-color: var(--white);
  --bg-label: var(--gray);
  --bg-white: var(--white);
  --submit-color: var(--white);
  --submit-bg-color: var(--second-black);
  --base-text-color: var(--black);
  --border-blue: var(--blue);
  --contents-max-width: 1200px;
  --contents-padding-beside: 32px;
  --base-font-family: "Noto Sans JP", sans-serif;
  --accent-font-family: "Noto Serif JP", serif;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 390px) {
  html {
    font-size: clamp(0.75rem, -0.3928571429rem + 5.7142857143vw, 1rem);
  }
}
@media (min-width: 768px) {
  html {
    font-size: clamp(0.625rem, 0.1964285714rem + 0.8928571429vw, 1rem);
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img {
  height: auto;
  display: block;
  vertical-align: bottom;
  object-fit: cover;
  max-width: 100%;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  min-height: 100vh;
  font-family: var(--font-noto);
  font-weight: 400;
}

picture {
  display: block;
}

a {
  text-decoration: none;
}

section {
  overflow: hidden;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

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

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

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-inner {
  width: 100%;
  margin-inline: auto;
  padding: 0 var(--contents-padding-beside);
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: calc(1200px + var(--contents-padding-beside) * 2);
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-footer {
  background: var(--theme-gradation);
}

.l-footer__inner {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  color: var(--color-text-white);
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    padding: 3.25rem 10.625rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-header {
  background: var(--theme-gradation);
  z-index: 10;
  position: sticky;
  top: 0;
}

.l-header__inner {
  color: var(--color-text-white);
  padding: 0 var(--contents-padding-beside);
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-faq {
  background: linear-gradient(90deg, #6BC1E4 21.63%, #1D2B6D 82.21%);
  padding: 1.125rem var(--contents-padding-beside);
}
@media screen and (min-width: 768px) {
  .l-faq {
    padding: 6.25rem 0;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-ContentsWrapper.-single {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .l-ContentsWrapper.-single {
    margin-top: 40px;
  }
}

.l-pageContents {
  margin-block-start: 2.5rem;
  margin-block-end: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-pageContents {
    margin-block-start: 5rem;
    margin-block-end: 5rem;
  }
}
.l-pageContents :where(h1) {
  font-weight: bold;
  margin-block-start: 70px;
}
@media screen and (min-width: 768px) {
  .l-pageContents :where(h1) {
    margin-block-start: 100px;
  }
}
.l-pageContents :where(h2) {
  font-weight: bold;
  margin-block-start: 63px;
}
@media screen and (min-width: 768px) {
  .l-pageContents :where(h2) {
    margin-block-start: 90px;
  }
}
.l-pageContents :where(h3) {
  font-weight: bold;
  margin-block-start: 50.4px;
}
@media screen and (min-width: 768px) {
  .l-pageContents :where(h3) {
    margin-block-start: 72px;
  }
}
.l-pageContents :where(h4) {
  font-weight: bold;
  margin-block-start: 33.6px;
}
@media screen and (min-width: 768px) {
  .l-pageContents :where(h4) {
    margin-block-start: 48px;
  }
}
.l-pageContents :where(h5) {
  margin-block-start: 22.4px;
}
@media screen and (min-width: 768px) {
  .l-pageContents :where(h5) {
    margin-block-start: 32px;
  }
}
@media screen and (min-width: 768px) {
  .l-pageContents :where(h6) {
    margin-block-start: 16.8px;
    margin-block-start: 24px;
  }
}
.l-pageContents :where(p) {
  font-weight: 400;
  margin-top: 16px;
}
.l-pageContents ul, .l-pageContents ol {
  padding-left: 1.5em;
  list-style: auto;
  margin-top: 16px;
}
.l-pageContents li {
  margin: 0;
}
.l-pageContents.-fullHeight {
  margin: 0;
}

.layout__articleTitleArea {
  display: grid;
  gap: 16px 0;
}
@media screen and (min-width: 768px) {
  .layout__articleTitleArea {
    gap: 24px 0;
  }
}

.layout__postContents {
  margin-block-end: 80px;
}
@media screen and (min-width: 768px) {
  .layout__postContents {
    margin-block-end: 120px;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-archiveContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-archiveContainer {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.75rem 1rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-button__wrap {
  margin-block-start: 1.75rem;
}
@media screen and (min-width: 768px) {
  .l-button__wrap {
    margin-block-start: 3.75rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-voice {
  background: var(--white);
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-voice {
    padding: 6.25rem 0;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-editor-contents :where(*) {
  line-height: 1.6;
}
.l-editor-contents > :where(*) {
  margin-top: 2em;
}
.l-editor-contents img {
  width: 100%;
  max-width: 47.5rem;
  margin-inline: auto;
}
.l-editor-contents p {
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .l-editor-contents p {
    font-size: 1rem;
  }
}
.l-editor-contents :where(p a) {
  color: #133372;
}
@media (any-hover: hover) {
  .l-editor-contents :where(p a):hover {
    text-decoration: underline;
  }
}
.l-editor-contents ul {
  width: 100%;
}
.l-editor-contents ul ul {
  margin-left: calc(1.5rem + 1.5em);
}
.l-editor-contents > ul > li {
  border-bottom: 1px dashed #B2B2B2;
}
.l-editor-contents > ul li:before {
  content: "";
  background-image: url(./assets/images/icon/list-icon.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
.l-editor-contents > ol {
  border: 1px solid var(--dark-blue);
  counter-reset: list-counter;
}
.l-editor-contents > ol li::before {
  counter-increment: list-counter;
  content: counter(list-counter);
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  background: var(--dark-blue);
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-editor-contents > ul, .l-editor-contents ol {
  background: #FCFCFC;
  margin: 1.125rem auto;
  padding: 1.5rem;
  width: 100%;
}
.l-editor-contents > ul > li, .l-editor-contents ol > li {
  padding: 0.25rem 0;
}
.l-editor-contents li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.l-editor-contents :where(h2) {
  font-weight: 700;
  font-size: 1.0625rem;
  padding-left: 0.625rem;
  border-left: 0.25rem solid var(--dark-blue);
}
@media screen and (min-width: 768px) {
  .l-editor-contents :where(h2) {
    font-size: 1.625rem;
    padding-left: 1.875rem;
    border-left: 0.875rem solid var(--dark-blue);
  }
}
.l-editor-contents :where(h3) {
  font-weight: 700;
  font-size: 0.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 0.125rem solid var(--dark-blue);
}
@media screen and (min-width: 768px) {
  .l-editor-contents :where(h3) {
    font-size: 1.25rem;
    padding-bottom: 1.875rem;
  }
}
.l-editor-contents :where(h4) {
  background: var(--dark-blue);
  color: var(--color-text-white);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.625rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-editor-contents :where(h4) {
    font-size: 1.125rem;
    padding: 0.75rem 1.25rem;
  }
}
.l-editor-contents :where(h5) {
  background: var(--dark-blue);
  color: var(--color-text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.625rem 0.5rem;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-editor-contents :where(h5) {
    font-size: 1.0625rem;
    padding: 0.75rem 1.25rem;
    border-radius: 1.875rem;
  }
}
.l-editor-contents :where(h6) {
  font-size: 0.75rem;
  font-weight: 700;
  font-size: 900;
  color: var(--dark-blue);
}
@media screen and (min-width: 768px) {
  .l-editor-contents :where(h6) {
    font-size: 1rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-post-contents {
  padding-top: 1.75rem;
  padding-bottom: 2rem;
  max-width: 62.5rem;
}
@media screen and (min-width: 768px) {
  .l-post-contents {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-about {
  background: url(./assets/images/service/service-back.png) no-repeat center/cover;
  padding: 1.75rem 0 2rem;
}
@media screen and (min-width: 768px) {
  .l-about {
    padding: 3.75rem 0 5.625rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-news {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-news {
    padding: 6.25rem 0;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-teacher {
  background: var(--color-bg-white);
  padding: 1.75rem 0 2rem;
}
@media screen and (min-width: 768px) {
  .l-teacher {
    padding: 6.25rem 0;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-movie {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-movie {
    padding: 6.25rem 0;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.l-strength {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-strength {
    padding: 6.25rem 0;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.c-button {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  background: linear-gradient(90deg, #6BC1E4 21.63%, #1D2B6D 82.21%);
  border-radius: calc(infinity * 1px);
  box-shadow: 0 0 2.667px 0 #184785;
  padding: 0.625rem 1rem;
  width: fit-content;
  min-width: 11.875rem;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-button {
    width: 100%;
    max-width: 18.75rem;
    font-size: 1rem;
    padding: 1.0625rem 1.875rem;
  }
}
.c-button * {
  pointer-events: none;
}

@media (any-hover: hover) {
  .c-button:hover {
    background: linear-gradient(90deg, #AFE1F5 21.63%, #016FB8 82.21%);
    box-shadow: none;
  }
}
/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.c-cta__wrap {
  margin: 2.5rem auto;
}
@media screen and (min-width: 768px) {
  .c-cta__wrap {
    margin: 8.125rem auto;
  }
}

.c-cta {
  overflow: hidden;
  border: 2px solid #F7DB8E;
  border-radius: 1.875rem;
  display: block;
  box-shadow: 0 9px 8.8px 0 rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .c-cta {
    border: 6px solid #F7DB8E;
    border-radius: 6.25rem;
  }
}
.c-cta span {
  transition: 0.2s ease;
}
.c-cta span.-top {
  background: linear-gradient(271deg, #2B6D1D 15.13%, #46B01C 98.4%);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem;
  display: block;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-cta span.-top {
    font-size: 3.125rem;
    padding: 2.5rem 0.75rem;
  }
}
.c-cta span.-top span {
  color: #FFF600;
}
.c-cta span.-bottom {
  display: block;
  background: #FFF;
  text-align: center;
  font-size: 0.625rem;
  letter-spacing: 2px;
  padding: 0.5rem 0.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-cta span.-bottom {
    font-size: 2rem;
    letter-spacing: 0.1em;
    padding: 1.625rem;
  }
}
.c-cta * {
  pointer-events: none;
}

@media (any-hover: hover) {
  .c-cta {
    transition: 0.2s ease;
  }
  .c-cta:hover {
    border-color: #1D2B6D;
    box-shadow: none;
  }
  .c-cta:hover span.-top {
    background: var(--theme-gradation);
  }
}
/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.c-page-title {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  font-weight: bold;
  width: 100%;
  position: relative;
  color: var(--page-title-color);
  font-size: 0.625rem;
  text-shadow: 0 0.536px 1.421px #06234A;
}
@media screen and (min-width: 768px) {
  .c-page-title {
    font-size: 2.25rem;
  }
}
.c-page-title::after {
  content: attr(data-en);
  text-transform: uppercase;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .c-page-title::after {
    font-size: 5.3125rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.c-section-title {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  font-weight: bold;
  width: 100%;
  position: relative;
  font-size: 0.75rem;
  gap: 0.5rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 1.25rem;
  }
}
.c-section-title::before {
  content: attr(data-en);
  font-size: 7.5rem;
  line-height: inherit;
  display: inline-block;
  width: fit-content;
  text-transform: uppercase;
  font-size: 2.375rem;
  background: linear-gradient(90deg, #6BC1E4 21.63%, #1D2B6D 82.21%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-inline: auto;
  font-weight: 400;
  font-family: "Libre Franklin", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-section-title::before {
    font-size: 7.5rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-footer__navContainer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-footer-menu__list, .p-footer__menu-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer-menu__list, .p-footer__menu-wrap ul {
    gap: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer-menu__list {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }
}

@media screen and (min-width: 768px) {
  .p-footer__menu-wrap {
    width: fit-content;
  }
}

.p-footer-menu__list-item a {
  color: var(--color-text-white);
  font-size: 0.875rem;
  text-decoration: underline;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-footer-menu__list-item a {
    text-decoration: none;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-footer-menu__list-item a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__menu-wrap .footer-menu {
    display: none;
  }
}

.p-footer__copyright {
  display: block;
  color: inherit;
  margin-top: 2.875rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 4rem;
    font-size: 0.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
  }
}

.p-footer-nav-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.p-header__logo {
  width: 9.25rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 15.875rem;
  }
}
.p-header__logo img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-header__social-list-wrap {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav-wrap {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 100vh;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
    width: 100%;
    background: linear-gradient(180deg, #6BC1E4 22.56%, #1D2B6D 82.42%);
    padding: 5rem var(--contents-padding-beside) 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.25rem 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
  }
  .p-header__nav-wrap > * {
    transition: 0.4s ease-out;
    filter: blur(20px);
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav-wrap.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.p-header__nav-wrap.is-open > * {
  filter: blur(0);
}

.p-header__nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-header__nav-menu {
    gap: 1.25rem;
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav-menu li {
    border-bottom: 1px dashed var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav-menu li::after {
    content: "";
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border-top: 1px solid var(--color-text-white);
    border-right: 1px solid var(--color-text-white);
    transform: rotate(45deg);
  }
}
.p-header__nav-menu a {
  padding: 1.75rem 0.125rem;
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__nav-menu a {
    padding: 0.25rem;
  }
}
@media (any-hover: hover) {
  .p-header__nav-menu a:hover {
    transition: 0.2s ease;
    text-decoration: underline;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-hamburger {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  padding: 0.3125rem;
  cursor: pointer;
  width: 2.5rem;
  border: none;
  background: transparent;
  border-radius: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-hamburger {
    display: none;
  }
}
.p-hamburger.is-opened .p-hamburger-bar:nth-of-type(1) {
  top: 50%;
  right: 0.3125rem;
  transform: rotate(-45deg);
}
.p-hamburger.is-opened .p-hamburger-bar:nth-of-type(2) {
  opacity: 0;
}
.p-hamburger.is-opened .p-hamburger-bar:nth-of-type(3) {
  top: 50%;
  right: 0.3125rem;
  transform: rotate(45deg);
}

.p-hamburger-bar {
  height: 0.125rem;
  background: var(--color-text-white);
  display: block;
  position: absolute;
  right: 0.3125rem;
  pointer-events: none;
  transform-origin: center center;
  transition: 0.2s ease;
  width: calc(100% - 10px);
}
.p-hamburger-bar:nth-of-type(1) {
  top: calc(50% - 9px);
}
.p-hamburger-bar:nth-of-type(2) {
  top: 50%;
}
.p-hamburger-bar:nth-of-type(3) {
  top: calc(50% + 0.5625rem);
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-faq__wrapper {
  background: var(--white);
  padding: 1.875rem 1.25rem;
  max-width: 82.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__wrapper {
    margin: 0 7.5rem;
    margin-inline: auto;
  }
}

.p-faq__container {
  display: grid;
  gap: 1.75rem 0;
  margin-block-start: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-faq__container {
    gap: 3.125rem 0;
  }
}

.p-faq__icon {
  width: 1.3125rem;
  height: 1.3125rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.p-faq__question {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3125;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 0.5rem;
  color: var(--dark-blue);
}
@media screen and (min-width: 768px) {
  .p-faq__question {
    font-size: 2rem;
    line-height: 1.4375;
  }
}
.p-faq__question.js-panel-close .p-faq__icon {
  transform: rotate(180deg);
}

.p-faq__answer {
  margin-block-start: 0.3125rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-faq__answer {
    margin-block-start: 0.875rem;
    font-size: 1rem;
    margin-left: 2.25rem;
  }
}
.p-faq__answer a {
  color: #3B8BBE;
  text-decoration: underline;
}

.p-faq__announce {
  font-weight: bold;
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  color: var(--dark-blue);
  border-left: 4px solid var(--dark-blue);
  padding-left: 0.25rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-faq__announce {
    font-size: 1.5rem;
    border-left: 6px solid var(--dark-blue);
    padding-left: 1rem;
  }
}
.p-faq__announce a {
  text-decoration: underline;
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-voice__slide {
  overflow: visible !important;
  margin-block-start: 0.625rem;
}
.p-voice__slide .swiper-pagination {
  bottom: -1.25rem !important;
}
.p-voice__slide .swiper-pagination .swiper-pagination-bullet-active {
  background: #A6A6A6;
}

.p-voice__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 16.5625rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-voice__list {
    max-width: unset;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 5rem;
  }
}

.p-voice__item {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.p-voice__anchor {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-voice__anchor {
    gap: 1.25rem;
  }
}

.p-voice__thumbnail {
  aspect-ratio: 16/9;
}
.p-voice__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-voice__post-title {
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .p-voice__post-title {
    font-size: 1rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-page-header__wrapper {
  min-height: 7.5rem;
  aspect-ratio: 39/12;
  background: rgba(106, 179, 210, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-page-header__wrapper {
    aspect-ratio: 1440/443;
  }
}

.p-page-header__inner {
  padding: 0 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-page-header__inner {
    padding: 0 10.625rem;
  }
}

.p-page-header__anime {
  width: 100%;
  overflow: hidden;
}

.p-page-header__wrap--width-thumbnail {
  width: 100%;
  background: var(--background-light);
  position: relative;
  min-height: 200px;
  aspect-ratio: 120/56;
}
.p-page-header__wrap--width-thumbnail .p-page-header__thumbnail {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
}
.p-page-header__wrap--width-thumbnail .p-page-header__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}
.p-page-header__wrap--width-thumbnail .p-page-header__title {
  color: var(--text-white);
  opacity: 0;
  transform: translateY(-100%);
  animation: dropIn 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: 0.9s;
  will-change: transform, opacity;
}
.p-page-header__wrap--width-thumbnail::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--primary-white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: default-overlay 1s ease-in-out forwards;
}
.p-page-header__wrap--width-thumbnail::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  animation: slide-overlay 1s ease-in-out forwards;
}

@keyframes default-overlay {
  0% {
    transform: translateX(0); /* 左の外から登場 */
  }
  40% {
    transform: translateX(0); /* 左端に到達 */
  }
  50% {
    transform: translateX(0); /* 0.2s程度停止 */
  }
  100% {
    transform: translateX(100%); /* 右に抜けて消える */
  }
}
@keyframes slide-overlay {
  0% {
    transform: translateX(-100%); /* 左の外から登場 */
  }
  40% {
    transform: translateX(0); /* 左端に到達 */
  }
  50% {
    transform: translateX(0); /* 0.2s程度停止 */
  }
  100% {
    transform: translateX(100%); /* 右に抜けて消える */
  }
}
@keyframes dropIn {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  60% {
    transform: translateY(0%);
    opacity: 1;
  } /* 着地して見える */
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-form__main .wpcf7-list-item {
  margin: 0;
}
.p-form__main input[type=checkbox] {
  display: none;
}
.p-form__main .wpcf7-list-item-label {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-default);
}
.p-form__main .wpcf7-list-item-label::before {
  content: "";
  display: block;
  --check-box-size: 20px;
  width: var(--check-box-size);
  height: var(--check-box-size);
  background: var(--bg-white);
  border: 1px solid #EDEDED;
  box-sizing: border-box;
}
.p-form__main .wpcf7-list-item-label::after {
  position: absolute;
}
.p-form__main input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  transform: rotate(135deg);
  position: absolute;
  left: 3px;
  top: 3px;
}
.p-form__main input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #E1EFF4;
  border: 1px solid #EDEDED;
}
.p-form__main a {
  text-decoration: underline;
}

.p-form__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.p-form__item:nth-of-type(n+2) {
  margin-top: 1.25rem;
}

.p-form__label {
  line-height: 1.5;
  font-size: 1rem;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.75rem;
  align-items: center;
}

.p-form__required {
  font-size: 0.75rem;
  background: var(--bg-label);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1875rem 0.625rem;
}

input.p-form__input, textarea.p-form__textarea, select.p-form__input {
  width: 100%;
  font-size: 16px;
  background: var(--bg-white);
  padding: 1rem 0.625rem;
  border: 1px solid #EAEAEA;
}
@media screen and (min-width: 768px) {
  input.p-form__input, textarea.p-form__textarea, select.p-form__input {
    font-size: 1rem;
  }
}
input.p-form__input::placeholder, textarea.p-form__textarea::placeholder, select.p-form__input::placeholder {
  color: #999999;
  font-weight: 700;
}
input.p-form__input:focus, textarea.p-form__textarea:focus, select.p-form__input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #3B8BBE;
}

textarea.p-form__textarea {
  height: 9.625rem;
}

.p-form__submitContainer {
  text-align: center;
  margin-block-start: 1.5rem;
}
.p-form__submitContainer input[type=submit][disabled], .p-form__submitContainer input[type=button][disabled] {
  background: #d9d9d9;
}
.p-form__submitContainer span.wpcf7-spinner {
  display: none;
}
.p-form__submitContainer span.wpcf7-spinner {
  display: none;
}

.p-form__submitBtn {
  color: var(--submit-color);
  background: var(--submit-bg-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.0625rem 1.875rem;
  border-radius: calc(infinity * 1px);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5294117647;
  position: relative;
  min-height: 3.75rem;
  min-width: 14.0625rem;
  border: none;
  cursor: pointer;
}
.p-form__submitBtn:disabled {
  cursor: not-allowed;
  background: var(--gray);
  border: 1px solid var(--gray);
}

@media (any-hover: hover) {
  .p-form__submitBtn {
    transition: opacity 0.2s ease, background 0.2s ease;
  }
  .p-form__submitBtn:hover {
    opacity: 0.7;
  }
}
.p-form__btnConteiner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-block-start: 24px;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-form__btnConteiner {
    margin-block-start: 48px;
    flex-direction: row;
    gap: 48px;
  }
}
.p-form__btnConteiner .p-form__submitContainer {
  margin: 0;
}

.p-form__agree {
  text-align: center;
  margin-block-start: 1.875rem;
}

.p-form__agreeText {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0.875rem;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  margin-block-start: 4px;
}

.p-form__output {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-default);
}

.p-form__item .p-form__output:last-of-type {
  padding-bottom: 8px;
  border-bottom: 1px solid #F4F4F4;
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-post__anchor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem 0;
  padding: 0.625rem 0.25rem;
  border-bottom: 1px solid var(--border-blue);
}
@media screen and (min-width: 768px) {
  .p-post__anchor {
    gap: 0.625rem 0;
    padding: 1.75rem 0.5rem;
  }
}

@media (any-hover: hover) {
  .p-post__anchor {
    transition: background 0.2s ease;
  }
  .p-post__anchor:hover {
    background: #F4FCFF;
  }
}
.p-post__date {
  font-size: 0.625rem;
  display: block;
  color: var(--base-text-color);
}
@media screen and (min-width: 768px) {
  .p-post__date {
    font-size: 0.8125rem;
  }
}

.p-post__title {
  color: var(--base-text-color);
  font-size: 0.75rem;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .p-post__title {
    font-size: 1rem;
  }
}

.p-post__catWrapper {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-post__catWrapper {
    margin-bottom: 40px;
  }
}

.l-archiveContainer .p-post__anchor {
  padding: 0;
  border: none;
  display: grid;
  gap: 1.25rem 0;
}
.l-archiveContainer .p-post__thumbnail {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
}
.l-archiveContainer .p-post__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: 0.2s ease;
}
.l-archiveContainer .p-post__title {
  font-size: 0.625rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-archiveContainer .p-post__title {
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .l-archiveContainer .p-post__anchor:hover {
    background: transparent;
  }
  .l-archiveContainer .p-post__anchor:hover .p-post__thumbnail img {
    transform: scale(1.05);
  }
}
/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.myPagination {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .myPagination {
    margin-top: 3.125rem;
  }
}

.myPagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  gap: 0.9375rem;
  list-style: none !important;
}
.myPagination__list .page-numbers {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: var(20/12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.myPagination__list .page-numbers[aria-current] {
  color: var(--white);
}

.myPagination__item:not(:has(.myPagination__prev)):not(:has(.myPagination__next)) .page-numbers {
  background: rgba(76, 76, 76, 0.4);
  border-radius: calc(infinity * 1px);
  width: 2.8125rem;
  height: 2.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.myPagination__item:not(:has(.myPagination__prev)):not(:has(.myPagination__next)).is-active .page-numbers {
  background: linear-gradient(90deg, #6BC1E4 21.63%, #1D2B6D 82.21%);
}

.myPagination__prev, .myPagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(infinity * 1px);
  background: var(--primary-default);
}
.myPagination__prev svg, .myPagination__next svg {
  width: 0.75rem;
  height: auto;
}
.myPagination__prev svg path, .myPagination__next svg path {
  stroke: rgba(76, 76, 76, 0.4);
}
.myPagination__prev.is-disabled, .myPagination__next.is-disabled {
  cursor: not-allowed;
}
.myPagination__prev.is-disabled svg path, .myPagination__next.is-disabled svg path {
  stroke: var(--gray);
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-socialList {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-socialList {
    gap: 1rem;
  }
}

.p-socialList__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-socialList__item img {
  width: 2.5rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-socialList__item img {
    width: 4rem;
  }
}

@media (any-hover: hover) {
  .p-socialList__item a {
    transition: transform 0.2s ease;
  }
  .p-socialList__item a:hover {
    transform: scale(1.13);
  }
}
/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-article__foot {
  margin: 3.75rem 0;
}

.p-article__thumbnail img {
  width: 100%;
  height: auto;
}

.p-article__date {
  font-weight: 700;
  line-height: 1.5;
  font-size: 0.625rem;
  margin-block-start: 1.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-article__date {
    font-size: 0.8125rem;
    margin-block-start: 2.5rem;
  }
}

.p-article__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-block-start: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-article__title {
    font-size: 2rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-read__text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9285714286;
}
@media screen and (min-width: 768px) {
  .p-read__text {
    font-size: 1.125rem;
  }
}
.p-read__text.-accent {
  color: var(--primary-color);
}
@media screen and (min-width: 768px) {
  .p-read__text.-accent {
    font-size: 2rem;
    line-height: 1.4285714286;
  }
}
.p-read__text strong {
  font-size: 1.125rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-read__text strong {
    font-size: 2.625rem;
  }
}

.p-service__read-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-service__read-inner {
    gap: 3.125rem;
  }
}

.p-service__read-wrap {
  padding: 1.75rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-service__read-wrap {
    padding: 5rem;
  }
}
.p-service__read-wrap :where(*) {
  margin-top: 0;
}

.p-mission__cover-wrap {
  background: url(./assets/images/service/service-back.png) no-repeat center/cover;
  padding: 1.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-mission__cover-wrap {
    padding: 5rem 0;
  }
}
.p-mission__cover-wrap :where(*) {
  margin-top: 0;
}

.p-mission__contents {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-mission__contents {
    margin-top: 3.5rem;
    gap: 1.5rem;
  }
}

.p-mission__list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-mission__list {
    width: fit-content;
    margin: 1.25rem auto;
  }
}

.p-mission__list-item {
  background: var(--white);
  padding: 0.375rem 0.5rem;
  display: grid;
  grid-template-columns: auto max-content;
  align-items: baseline;
  gap: 0.375rem;
  position: relative;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-mission__list-item {
    font-size: 1.375rem;
    gap: 0.75rem;
    padding: 0.5rem 0.625rem;
  }
}
.p-mission__list-item::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  --list-icon-size: 0.81rem;
  width: var(--list-icon-size);
  height: var(--list-icon-size);
  border-radius: calc(infinity * 1px);
  background: var(--theme-gradation);
}
@media screen and (min-width: 768px) {
  .p-mission__list-item::before {
    --list-icon-size: 1.25rem;
    width: var(--list-icon-size);
    height: var(--list-icon-size);
  }
}
@media screen and (min-width: 768px) {
  .p-mission__list-item br {
    display: none;
  }
}

.p-mission__copy {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-mission__copy {
    font-size: 2rem;
  }
}

.p-mission__text {
  font-size: 500;
  font-size: 0.75rem;
  text-align: center;
  line-height: 2.25;
}
@media screen and (min-width: 768px) {
  .p-mission__text {
    font-size: 1.125rem;
  }
}
.p-mission__text strong {
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-mission__text strong {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-mission__text strong br {
    display: none;
  }
}

.p-mission__accent-text {
  font-weight: bold;
  font-size: 0.9375rem;
  text-align: center;
  color: #133372;
}
@media screen and (min-width: 768px) {
  .p-mission__accent-text {
    font-size: 1.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-mission__accent-text br {
    display: none;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-news__list {
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(90deg, #6BC1E4 21.63%, #1D2B6D 82.21%) 1;
  padding: 1rem 0.625rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    padding: 2.375rem 3.125rem;
    margin-top: 5rem;
  }
}
.p-news__list .p-post__anchor {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0;
  border: none;
}
.p-news__list .p-post__date {
  dominant-baseline: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-news__list .p-post__date {
    font-size: 0.8125rem;
  }
}
.p-news__list .p-post__title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-news__list .p-post__title {
    font-size: 1rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-about__body {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-about__body {
    margin-top: 5rem;
  }
}

.p-about__card-list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: center;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-about__card-list {
    flex-direction: row;
    gap: 0.25rem;
    margin-top: 4.25rem;
  }
}
.p-about__card-list img {
  width: 100%;
  height: auto;
}

.p-about__copy {
  text-align: center;
  color: var(--dark-blue);
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 3px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-about__copy {
    font-size: 2rem;
    line-height: 1.71875;
  }
}
@media screen and (min-width: 768px) {
  .p-about__copy br.-sp {
    display: none;
  }
}

.p-about__read-headline {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 3px;
  padding: 1rem 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  color: var(--dark-blue);
  font-weight: 700;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-about__read-headline {
    font-size: 2rem;
    line-height: 1;
    padding: 1.25rem 3rem;
    margin-inline: auto;
    width: fit-content;
    margin-top: 5rem;
  }
}

.p-about__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9285714286;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7777777778;
    margin-top: 1.25rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-teacher__body {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-teacher__body {
    margin-top: 5rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-hero__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.25rem;
  z-index: 1;
  font-family: var(--font-mincho);
}

.p-hero__title {
  color: var(--dark-blue);
  font-size: 1.75rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 900;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    font-size: 3.5625rem;
    line-height: 1.649122807;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__title .-sp {
    display: none;
  }
}
.p-hero__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--dark-blue);
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-hero__title::after {
    height: 4px;
    margin-top: 1.875rem;
  }
}

.p-hero__text {
  color: var(--dark-blue);
  font-size: 0.875rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.5714285714;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-hero__text {
    font-size: 2.0625rem;
    line-height: 1.5757575758;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-movie__content {
  margin-top: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-movie__content {
    margin-top: 5rem;
  }
}
.p-movie__content::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 6.75rem;
  background: var(--theme-gradation);
  bottom: -2rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-movie__content::after {
    height: 13.4375rem;
    bottom: -2.625rem;
  }
}

.p-movie__title::before {
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-movie__title br {
    display: none;
  }
}

.p-movie__item-wrap {
  transition-timing-function: linear !important;
}

.p-movie__item {
  aspect-ratio: 16/9;
  position: relative;
}
.p-movie__item iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-movie__item a {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.p-strength__content {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-strength__content {
    margin-top: 5rem;
    gap: 5rem;
  }
}

.p-strength__card {
  margin-left: 2.1875rem;
  list-style: none;
  position: relative;
  margin-left: calc(50% - 160px);
}
.p-strength__card:nth-of-type(2n) {
  margin-right: calc(50% - 160px);
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-strength__card:nth-of-type(2n) {
    margin-right: calc(50% - 31.25rem);
  }
}
.p-strength__card:nth-of-type(2n) .p-strength__card-inner {
  background: #133372;
  border-radius: 0 20px 20px 0;
}
@media screen and (min-width: 768px) {
  .p-strength__card:nth-of-type(2n) .p-strength__card-inner {
    padding: 3.625rem 32.5rem 3.625rem 10.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-strength__card:nth-of-type(2n) .p-strength__card-contents {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-strength__card:nth-of-type(2n) .p-strength__card-num {
    right: -13.875rem;
    left: unset;
  }
}
@media screen and (min-width: 768px) {
  .p-strength__card:nth-of-type(2) .p-strength__card-inner {
    background: url(./assets/images/strength/strength-02_pc.png) no-repeat right center/auto 100%, #133372;
  }
}
@media screen and (min-width: 768px) {
  .p-strength__card:nth-of-type(3) .p-strength__card-inner {
    background: url(./assets/images/strength/strength-03_pc.png) no-repeat left center/auto 100%, #3B8BBE;
  }
}
@media screen and (min-width: 768px) {
  .p-strength__card:nth-of-type(4) .p-strength__card-inner {
    background: url(./assets/images/strength/strength-04_pc.png) no-repeat right center/auto 100%, #133372;
  }
}
@media screen and (min-width: 768px) {
  .p-strength__card {
    margin-left: calc(50% - 31.25rem);
  }
}

@media screen and (min-width: 768px) {
  .p-strength__card-contents {
    width: fit-content;
  }
}

.p-strength__card-inner {
  background: #3B8BBE;
  border-radius: 20px 0 0 20px;
  padding: 2.0625rem 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-strength__card-inner {
    border-radius: 50px 0 0 0;
    padding: 3.625rem 10.625rem 3.625rem 32.5rem;
    background: url(./assets/images/strength/strength-01_pc.png) no-repeat left center/auto 100%, #3B8BBE;
  }
}

.p-strength__card-head {
  display: flex;
  align-items: center;
  gap: 1.625rem;
}

.p-strength__card-headline {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-strength__card-headline {
    font-size: 2.375rem;
  }
}

.p-strength__card-img {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-strength__card-img {
    display: none;
  }
}
.p-strength__card-img img {
  width: 100%;
}

.p-strength__card-text {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  font-weight: 500;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-strength__card-text {
    font-size: 1.125rem;
    line-height: 1.7777777778;
    margin-top: 1.5rem;
    max-width: 33.125rem;
  }
}

.p-strength__card-num {
  width: fit-content;
  font-size: 4.375rem;
  line-height: 1;
  background: linear-gradient(90deg, #6BC1E4 21.63%, #1D2B6D 82.21%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Libre Franklin";
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFF;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-strength__card-num {
    -webkit-text-stroke-width: 1px;
    font-size: 18.75rem;
    position: absolute;
    top: unset;
    bottom: -2.625rem;
    left: -13.875rem;
    z-index: 1;
  }
}
.p-strength__card-num::before {
  content: "Strength";
  color: #fff;
  font-size: 0.625rem;
  line-height: 1;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
@media screen and (min-width: 768px) {
  .p-strength__card-num::before {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    -webkit-text-stroke-width: 0px;
    color: #000;
    font-size: 2.25rem;
  }
}

.p-strength__second-title {
  color: var(--dark-blue);
  font-size: 0.9375rem;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 700;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 1rem 0.25rem;
  line-height: 1;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-strength__second-title {
    font-size: 2rem;
    padding: 1.4375rem 0.25rem;
    margin-top: 5rem;
  }
}

.p-strength__images {
  margin-top: 1.75rem;
  display: grid;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.p-strength__images img {
  width: 100%;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-strength__images {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.375rem 0.25rem;
    margin-top: 5rem;
  }
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.u-page-cover {
  display: block;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100% !important;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

/*
Theme Name: Your Theme Name
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Version: 1.0
Description: A block theme converted from a classic theme.
Tags: block-patterns, full-site-editing
Requires at least: 6.1
Tested up to: 6.4
Requires PHP: 7.4
*/
.js-right-slide-in {
  opacity: 0;
  visibility: hidden;
  transform: translateX(50%);
  transition: 0.5s ease-out;
}
.js-right-slide-in.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.js-left-slide-in {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: 0.5s ease-out;
}
.js-left-slide-in.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.js-fade-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: 0.5s ease-out;
}
.js-fade-up.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
