@charset "UTF-8";
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
  vertical-align: bottom;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

.mob-show {
  display: none;
}
@media (max-width: 768px) {
  .mob-show {
    display: block !important;
  }
}

.mob-clear {
  display: block;
}
@media (max-width: 768px) {
  .mob-clear {
    display: none !important;
  }
}

.mob-hidden {
  visibility: visible;
}
@media (max-width: 768px) {
  .mob-hidden {
    visibility: hidden !important;
  }
}

.pad-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-show {
    display: block !important;
  }
}

.pad-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-clear {
    display: none !important;
  }
}

.pad-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-hidden {
    visibility: hidden !important;
  }
}

.web-show {
  display: none;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-show {
    display: block !important;
  }
}

.web-clear {
  display: block;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-clear {
    display: none !important;
  }
}

.web-hidden {
  visibility: visible;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-hidden {
    visibility: hidden !important;
  }
}

.max-show {
  display: none;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-show {
    display: block !important;
  }
}

.max-clear {
  display: block;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-clear {
    display: none !important;
  }
}

.max-hidden {
  visibility: visible;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-hidden {
    visibility: hidden !important;
  }
}

.mob-pad-show {
  display: none;
}
@media (max-width: 1024px) {
  .mob-pad-show {
    display: block !important;
  }
}

.mob-pad-clear {
  display: block;
}
@media (max-width: 1024px) {
  .mob-pad-clear {
    display: none !important;
  }
}

.mob-pad-hidden {
  visibility: visible;
}
@media (max-width: 1024px) {
  .mob-pad-hidden {
    visibility: hidden !important;
  }
}

.pad-web-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-show {
    display: block !important;
  }
}

.pad-web-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-clear {
    display: none !important;
  }
}

.pad-web-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-hidden {
    visibility: hidden !important;
  }
}

.web-max-show {
  display: none;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-show {
    display: block !important;
  }
}

.web-max-clear {
  display: block;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-clear {
    display: none !important;
  }
}

.web-max-hidden {
  visibility: visible;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-hidden {
    visibility: hidden !important;
  }
}

.mob-web-show {
  display: none;
}
@media (max-width: 1280px) {
  .mob-web-show {
    display: block !important;
  }
}

.mob-web-clear {
  display: block;
}
@media (max-width: 1280px) {
  .mob-web-clear {
    display: none !important;
  }
}

.mob-web-hidden {
  visibility: visible;
}
@media (max-width: 1280px) {
  .mob-web-hidden {
    visibility: hidden !important;
  }
}

.mob-max-show {
  display: none;
}
@media (max-width: 1600px) {
  .mob-max-show {
    display: block !important;
  }
}

.mob-max-clear {
  display: block;
}
@media (max-width: 1600px) {
  .mob-max-clear {
    display: none !important;
  }
}

.mob-max-hidden {
  visibility: visible;
}
@media (max-width: 1600px) {
  .mob-max-hidden {
    visibility: hidden !important;
  }
}

.pad-max-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-show {
    display: block !important;
  }
}

.pad-max-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-clear {
    display: none !important;
  }
}

.pad-max-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-hidden {
    visibility: hidden !important;
  }
}

.padding-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.max-width-1080 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.max-width-1180 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.max-width-540 {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.vector-30 {
  width: 1000px;
  height: 0;
  left: calc(50% - 500px + 516.5px);
  top: 2121px;
  border: 4px dashed #1A2C61;
}

.bold {
  font-weight: bold !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.tac {
  text-align: center !important;
}

.articlebox {
  margin-top: min(24px, 1.6vw);
}

/* wrapper */
.wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}

.contents_wrapper {
  max-width: 1024px;
  margin: 160px auto 0;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .contents_wrapper {
    margin-top: 80px;
  }
}
.sec_wrapper {
  margin-top: 160px;
}

@media (max-width: 768px) {
  .sec_wrapper {
    margin-top: 80px;
  }
}
* {
  backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-font-smoothing: antialiased; /* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale; /* animation時の文字にじみ防止 */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  transition-duration: 0.4s;
}

body {
  font-family: "Zen Kaku Gothic New", "Shippori Mincho B1", "Lora", Arial, Meiryo, sans-serif, serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #F5FBFE;
  line-height: 1.6;
  color: #33354D;
  margin: 0 auto;
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  max-width: 100%;
}
body .zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body .zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
body .zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
body .zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
body .lora {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
body .shippori-mincho-b1-medium {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
}
body .shippori-mincho-b1-semibold {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}
body .shippori-mincho-b1-bold {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-style: normal;
}

main {
  margin: 0 auto 100px;
  overflow-x: hidden;
}

section {
  margin-top: min(150px, 15vw);
}

input[type=checkbox] {
  border: 1px solid #33354D;
  width: 16px;
  height: 16px;
  padding: 0;
}

ul, ol, dl, li, strong, dt, dd, p, div, span, a, article, label, input, select, textarea {
  font-size: calc(14px + (16 - 14) * (100vw - 414px) / (1280 - 414));
  font-weight: normal;
  color: #192329;
}

a {
  transition-duration: 0.2s;
  transition-duration: 0.4s;
}
a img {
  transition: transform 0.3s ease;
}
a:hover {
  cursor: pointer;
}
a:hover img {
  transform: scale(1.02);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* font-size */
p, li {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1.6;
}
@media (max-width: 768px) {
  p, li {
    line-height: 1.6;
    text-align: justify;
  }
}

.en {
  font-family: "Lora";
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #1469A2;
  padding-left: min(3px, 0.4vw);
  text-align: center;
}

.ja {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.8rem);
  font-weight: 900;
  text-align: center;
  color: #1469A2;
  line-height: 1.4;
}

.point {
  font-weight: 900;
  font-style: italic;
  font-size: 40px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #E550AC;
}

h1.ttl, h2.ttl {
  font-family: "Shippori Mincho B1";
  font-weight: 900;
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
  line-height: 1.4;
  color: #1469A2;
  text-shadow: 0 0 0.8px currentColor;
}
@media (max-width: 768px) {
  h1.ttl, h2.ttl {
    text-shadow: 0 0 0.2px currentColor;
  }
}
h1.ttl .ttl-inner, h2.ttl .ttl-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
h1.ttl .ja, h2.ttl .ja {
  font-weight: 900;
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
  line-height: 1.4;
}
h1.ttl .en, h2.ttl .en {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1;
}

.ttl-icon {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-items: center;
}
@media (max-width: 768px) {
  .ttl-icon {
    max-width: 24px;
  }
}

h3.en.ttl {
  font-size: clamp(1.125rem, 0.898rem + 1.14vw, 1.75rem);
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  font-weight: 600;
  color: #1469A2;
  letter-spacing: 0.1em;
  padding-bottom: 16px;
}

h3.ttl {
  font-size: clamp(1rem, 0.727rem + 1.36vw, 1.75rem);
  font-family: "Shippori Mincho B1";
  font-weight: 900;
  color: #1469A2;
  line-height: 1.3;
}

.st-bold {
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 0;
}

h3.ttl .en {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}
h3.ttl .en span {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: 800;
  color: #1469A2;
}
h3.ttl .ja {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
}

.ttlbox h2.ttl {
  font-family: "Shippori Mincho B1";
  font-weight: 900;
  color: #1469A2;
  letter-spacing: 0.04em;
  font-size: clamp(1.75rem, 1.477rem + 1.36vw, 2.5rem);
  line-height: 1.2;
  text-shadow: 0 0 0.8px currentColor;
}
@media (max-width: 768px) {
  .ttlbox h2.ttl {
    text-shadow: 0 0 0.2px currentColor;
  }
}

h3.ttl {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  font-size: clamp(1.375rem, 1.193rem + 0.91vw, 1.875rem);
  color: #192329;
  font-weight: 800;
  text-shadow: 0 0 0.8px currentColor;
}
@media (max-width: 768px) {
  h3.ttl {
    text-shadow: 0 0 0.2px currentColor;
  }
}
h3.ttl .ttl-accent {
  font-family: "Shippori Mincho B1";
  font-weight: 800;
  color: #952836;
  font-size: 1.2em;
}

h4 {
  font-family: "Shippori Mincho B1";
  font-weight: 800;
  text-shadow: 0 0 0.8px currentColor;
}
@media (max-width: 768px) {
  h4 {
    text-shadow: 0 0 0.2px currentColor;
  }
}

/* header */
:root {
  --hdr-safe-px: env(safe-area-inset-top, 0px);
}

h1.headerlogo, p.headerlogo {
  width: 100%;
  max-width: 180px;
}
@media (max-width: 1024px) {
  h1.headerlogo, p.headerlogo {
    max-width: 160px;
  }
}

header {
  background: linear-gradient(to bottom, #F5FDFF 0%, #F5FDFF 80%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  max-width: 100vw;
  height: 84px;
}

.header_mv {
  position: relative;
}
.header_mv .wrapper {
  padding: 0;
}

.header_mv > .wrapper {
  padding: 0;
}

.header_contents {
  width: 100%;
  max-width: 1500px;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  z-index: 20;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 24px;
}
.header_contents .headerlogo_area {
  display: flex;
  justify-content: space-between;
}
.header_contents .fixed-btn {
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
  background-color: #952836;
}
.header_contents .fixed-btn:hover p.ja {
  color: #fff;
}

.header_menuouter {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.header_menu {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px 40px;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
}

@media (max-width: 1080px) {
  .header_contents {
    top: 24px;
    transition-duration: 0s;
  }
  .header_menu {
    line-height: 1;
    padding: 16px 36px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .header_menu {
    display: none;
  }
}
/* menulist */
.menulist {
  line-height: 1.3;
  display: flex;
  align-items: center;
}
.menulist .en {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1.5px;
}
.menulist .ja {
  font-family: "Shippori Mincho B1";
  font-weight: 900;
  color: #192329;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  text-shadow: 0 0 0.4px currentColor;
}
@media (max-width: 768px) {
  .menulist .ja {
    text-shadow: 0 0 0.1px currentColor;
  }
}
.menulist p.en, .menulist p.ja {
  transition: all 0.3s ease;
}
.menulist:hover p.en, .menulist:hover p.ja {
  color: #1469A2;
  scale: 1.05;
}
.menulist .fixed-btn p {
  color: #fff;
}
@media (max-width: 1024px) {
  .menulist p, .menulist a {
    font-size: min(0.96em, 16px);
  }
  .menulist .ja {
    font-size: min(0.96em, 16px);
  }
  .menulist .fixed-btn {
    padding: 12px 20px;
  }
}

.menulist.is-compact {
  display: none;
}

.header_contents,
.header_menuouter,
.header_menu,
.headerlogo_area h1,
.fixed-btn {
  transition: all 0.24s ease;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  top: 24px;
  right: 12px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border: 0px solid #192329;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
  background: rgb(255, 251, 244);
  box-sizing: content-box;
  border-radius: 4px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  right: 10px;
  height: 2px;
  border-radius: 4px;
  background-color: #192329;
  width: 32px;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
  width: 28px;
  background-color: #1469A2;
}
.openbtn span:nth-of-type(2) {
  top: 24px;
  width: 28px;
  background-color: #1469A2;
}
.openbtn span:nth-of-type(3) {
  top: 32px;
  width: 28px;
  background-color: #1469A2;
}
.openbtn:hover span:nth-of-type(1) {
  top: 14px;
}
.openbtn:hover span:nth-of-type(3) {
  top: 34px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 32px;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 32px;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.header_nav_hum {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(244, 244, 244, 0.94);
  background-size: cover;
  background-position: left left;
  background-repeat: no-repeat;
  transition: all 0.6s;
  background-repeat: repeat-x;
  background-size: cover;
  animation: bgScroll 200s linear infinite;
}
.header_nav_hum.panelactive {
  right: 0;
}
.header_nav_hum.panelactive .header_nav_hum_wrapper {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header_nav_hum .header_nav_hum_block {
  position: absolute;
  z-index: 999;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
  text-align: center;
}
@keyframes bgScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.header_nav_hum_block .header_logo_mob {
  margin-bottom: 40px;
}
.header_nav_hum_block .header_nav_hum_list {
  margin-top: 120px;
}
.header_nav_hum_block li:not(:last-of-type) {
  padding-bottom: 36px;
}
.header_nav_hum_block a {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header_nav_hum_block .menulistbox {
  margin-top: 40px;
}
.header_nav_hum_block .menulistbox .menulist {
  justify-content: center;
}
.header_nav_hum_block .menulistbox .menulist p {
  font-size: 16px;
}
.header_nav_hum_block .fixed-btn {
  margin: 0px auto 0;
  background-color: #952836;
}
.header_nav_hum_block .fixed-btn p {
  color: #fff;
}

.header_nav_hum_title {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 16px;
  width: 80%;
  max-width: 200px;
  margin: 0 auto;
}

.header_nav_hum_img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.header_nav_hum_img .header_nav_hum_img-inner img {
  width: 80%;
}

footer {
  background-color: #1469A2;
  margin-top: min 150px, 60vw;
}

.footer-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 660px;
  gap: 40px;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .footer-area {
    align-items: center;
  }
}
.footer-area p {
  line-height: 1.6;
  color: #fff;
}
.footer-area .address_boxouter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.footer-area .owner_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.footer-area .owner_box p {
  text-align: center;
}
.footer-area .owner_box .owner {
  font-size: 1.2em;
  font-weight: 600;
}
.footer-area .f_logo {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.footer-area .f_logo img {
  width: 180px;
}
@media (max-width: 1024px) {
  .footer-area .f_logo img {
    width: 180px;
  }
}
.footer-area .address_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.footer-area .address_list {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.footer-area .address_list img {
  width: 16px;
}
.footer-area .address_list p {
  font-family: "lora";
  font-weight: 800;
  color: #fff;
}
.footer-area .menulistbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-area .menulist p.ja {
  text-align: left;
  color: #fff;
}

.footer_cr {
  width: 100%;
  align-items: center;
  color: #1469A2;
  text-align: center;
  font-weight: 500;
  font-size: 0.87rem;
  background-color: #F8F8F8;
}

@media (max-width: 768px) {
  .footer_cr {
    width: 100%;
    height: 30px;
    line-height: 30px;
  }
}
.btn {
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 48px;
  color: #fff;
  font-weight: 600;
  background-color: #1469A2;
  border-radius: 100px;
  transition-duration: 0.4s;
}
.btn p {
  font-weight: 600;
  color: #192329;
  margin: 0;
}
.btn:hover {
  transform: scale(1.1);
  border-color: #D68600;
}
.btn p {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  letter-spacing: 0.02em;
  color: #fff;
}
.btn .btn-inner .en {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.btn .btn-inner .ja {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-btn-outer {
  position: fixed;
  z-index: 990;
  width: 100%;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 32px;
  background: linear-gradient(to top, rgba(25, 35, 41, 0.6) 0%, rgba(25, 35, 41, 0) 100%);
}

.fixed-btn {
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 48px;
  color: #fff;
  font-weight: 600;
  background-color: #1469A2;
  border-radius: 100px;
  transition-duration: 0.4s;
  margin: 0 auto;
  padding: 12px 32px;
  background-color: #D68600;
  font-size: 1.1rem;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  display: flex;
  align-items: center;
}
.fixed-btn p {
  font-weight: 600;
  color: #192329;
  margin: 0;
}
.fixed-btn:hover {
  transform: scale(1.1);
  border-color: #D68600;
}
.fixed-btn .btn-inner .en {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.fixed-btn .btn-inner .ja {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.fixed-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-btn02 {
  display: flex;
  gap: 16px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 48px;
  color: #fff;
  font-weight: 600;
  background-color: #1469A2;
  border-radius: 100px;
  transition-duration: 0.4s;
  box-shadow: 0 0px 8px rgba(27, 101, 125, 0.2);
  margin: 0 auto;
  padding: 12px 32px;
  background-color: #fff;
  font-size: 1.1rem;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  display: flex;
  align-items: center;
}
.fixed-btn02 p {
  font-weight: 600;
  color: #192329;
  margin: 0;
}
.fixed-btn02:hover {
  transform: scale(1.1);
  border-color: #D68600;
}
.fixed-btn02 .btn-inner .en {
  color: #1469A2;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.fixed-btn02 .btn-inner .ja {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.fixed-btn02 .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* top */
.mv_img-inner,
.mv_img-inner figure {
  margin: 0;
  padding: 0;
  border: 0;
}

.mv {
  position: relative;
  overflow: hidden;
  margin-top: min(2vw, 16px);
}
.mv .box_msg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  padding: 8px 24px;
  border-radius: 8px;
  background-color: #F8F8F8;
  min-width: 300px;
}
@media (max-width: 768px) {
  .mv .box_msg {
    top: 40%;
  }
}

.mv_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv_img-inner {
  flex: 0 0 auto;
  overflow: hidden;
}

.mv_img-inner img {
  display: block;
  width: clamp(240px, 100vw, 1200px);
  height: auto;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .mv_img-inner img {
    border-radius: 0;
  }
}

/* SP時に角丸や幅を変えたいならここで分岐 */
.hero-txt {
  margin-top: 40px;
}

.mv_img-lower-layer {
  position: relative;
  max-width: 1200px;
  overflow: hidden;
  padding: 0 20px;
  margin: min(16px, 2vw) auto 0;
}
.mv_img-lower-layer .ttl-txt {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 28px;
  background-color: #fff;
  border-radius: 28px;
  border: 2px solid #1469A2;
  min-width: 320px;
}
@media (max-width: 768px) {
  .mv_img-lower-layer .ttl-txt {
    padding: 10px 20px;
    top: 42%;
  }
}
.mv_img-lower-layer .ttl-txt p, .mv_img-lower-layer .ttl-txt h2 {
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  font-size: 1.4em;
  color: #1469A2;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .mv_img-lower-layer {
    border-radius: 0;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .mv_img-lower-layer .mv_img-inner {
    border-radius: 0;
  }
}
.mv_img-lower-layer .mv_img-inner img {
  display: block;
  width: 100%;
  aspect-ratio: 4/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .mv_img-lower-layer .mv_img-inner img {
    border-radius: 0;
  }
}
@media (max-width: 1024px) {
  .mv_img-lower-layer .mv_img-inner img {
    border-radius: 0;
    border-left: unset;
    border-right: unset;
    height: 300px;
  }
}

.box_img {
  box-shadow: 0 6px 14px rgba(20, 105, 162, 0.07), 0 2px 8px rgba(20, 105, 162, 0.02);
  border-radius: 12px;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.box_img img {
  border-radius: 12px;
}
@media (max-width: 768px) {
  .box_img {
    border-radius: 8px;
  }
  .box_img img {
    border-radius: 8px;
  }
}

.articlebox .desc {
  max-width: 760px;
}

.accentbox {
  background-color: #F8F8F8;
  padding: clamp(20px, 6vw, 24px);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(149, 40, 54, 0.07), 0 2px 8px rgba(149, 40, 54, 0.02);
}

.articlebox.accentbox {
  margin-top: max(24px, 2vw);
}
.articlebox.accentbox .desc {
  margin-top: min(16px, 4vw);
}

.desc {
  margin-top: min(24px, 1.6vw);
  text-align: justify;
  font-weight: 700;
}

.cardbox-outer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
  gap: min(40px, 6vw);
  margin: min(40px, 4vw) auto 0;
}

.cardbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 14px;
  background-color: #F8F8F8;
  box-shadow: 0 0px 8px rgba(90, 90, 90, 0.1);
  padding: 20px;
}
.cardbox .card-ttl {
  font-family: "Zen Kaku Gothic New";
  font-weight: 900;
  color: #1469A2;
  position: relative;
  line-height: 1.4;
}
.cardbox .box_img {
  max-width: 280px;
  box-shadow: none;
}
.cardbox .box_img img {
  border: none;
}

.about {
  margin-top: min(150px, 40vw);
  display: grid;
  grid-template-columns: 1fr clamp(24px, 6vw, 72px) 1fr;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1080px;
  gap: clamp(12px, 2vw, 20px);
}
@media (max-width: 768px) {
  .about h3.ttl {
    line-height: 1.4;
  }
}
.about .txtpanel {
  grid-column: 1/4;
  grid-row: 1;
  z-index: 2;
}
@media (max-width: 768px) {
  .about .txtpanel {
    min-width: unset;
    grid-column: 1/4;
  }
}
.about .box_img {
  position: relative;
  grid-column: 2/4;
  grid-row: 1;
  z-index: 1;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media (max-width: 768px) {
  .about .box_img {
    margin-top: min(-60px, -16vw);
    max-width: 400px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .about .box_img img {
    min-width: 240px;
    height: 60%;
    height: 230px;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 90% 0%;
       object-position: 90% 0%;
  }
}
.about .btn {
  margin-left: max(8px, 2vw);
}
@media (max-width: 768px) {
  .about .btn {
    margin-left: auto;
  }
}

.service {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1080px;
  gap: min(60px, 16vw);
}
.service .service-conts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 8vw, 24px);
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 1024px) {
  .service .service-conts {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .service .accentbox {
    padding: clamp(16px, 6vw, 20px);
  }
}
.service .txtpanel {
  max-width: 570px;
}
.service .ttlbox h3.ttl {
  color: #1469A2;
}
@media (max-width: 768px) {
  .service .ttlbox h3.ttl {
    line-height: 1.4;
    text-align: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .service .ttlbox h3.ttl span {
    display: block;
    text-align: center;
  }
}
.service .box_img {
  max-width: 400px;
}
@media (max-width: 768px) {
  .service .box_img {
    width: 70%;
  }
}
.service .features {
  margin: 0 auto;
}
.service .features h4 {
  color: #952836;
  font-weight: 800;
  font-size: 1.2em;
  text-align: center;
}
@media (max-width: 1024px) {
  .service .features .ttlbox {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .service .features .ttlbox span {
    display: block;
    text-align: center;
  }
}
.service .features .cardbox-outer {
  margin-top: min(24px, 4vw);
  gap: 20px;
}
.service .features .cardbox {
  max-width: 320px;
  background-color: #F5FBFE;
  box-shadow: 0 6px 14px rgba(20, 105, 162, 0.07), 0 2px 8px rgba(20, 105, 162, 0.02);
}
.service .features .desc {
  margin-top: min(4px, 1vw);
}
.service .features .box_img {
  max-width: 280px;
}
@media (max-width: 768px) {
  .service .features .box_img {
    width: 100%;
  }
}
.service .btn {
  margin-top: 0;
}

.recruit {
  margin-top: min(150px, 40vw);
  display: grid;
  grid-template-columns: 1fr clamp(24px, 6vw, 72px) 1fr;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1080px;
  gap: clamp(12px, 2vw, 20px);
}
.recruit .articlebox {
  max-width: 570px;
}
@media (max-width: 768px) {
  .recruit .articlebox h3.ttl {
    line-height: 1.4;
    text-align: center;
  }
}
.recruit .articlebox.accentbox {
  background-color: #F5FBFE;
  box-shadow: 0 6px 14px rgba(20, 105, 162, 0.07), 0 2px 8px rgba(20, 105, 162, 0.02);
}
.recruit .txtpanel {
  grid-column: 1/4;
  grid-row: 1;
  z-index: 2;
}
@media (max-width: 768px) {
  .recruit .txtpanel {
    min-width: unset;
    grid-column: 1/4;
  }
}
.recruit .box_img {
  grid-column: 2/4;
  grid-row: 1;
  z-index: 1;
}
@media (max-width: 768px) {
  .recruit .box_img {
    max-width: 400px;
    margin-top: min(-30px, -3vw);
    width: 100%;
    height: 240px;
    background-color: none;
    box-shadow: none;
  }
  .recruit .box_img img {
    min-width: 230px;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 90% 20%;
       object-position: 90% 20%;
    transform: translateY(-60px) scale(1); /* 好みで調整 */
  }
}
.recruit .btn {
  margin-left: max(8px, 2vw);
  background-color: #952836;
  box-shadow: 0 6px 14px rgba(149, 40, 54, 0.07), 0 2px 8px rgba(149, 40, 54, 0.02);
}
@media (max-width: 768px) {
  .recruit .btn {
    margin-left: auto;
  }
}

.contact {
  padding-bottom: 16px;
}
.contact .articlebox {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.contact .articlebox .box_img {
  max-width: 320px;
}
.contact .ttlbox {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #1469A2;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact .ttlbox {
    line-height: 1.4;
    text-align: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact .ttlbox .en {
  display: block;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.contact .desc {
  max-width: 570px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact .desc {
    text-align: justify;
  }
}

.cta_box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.cta_box .ctatxt {
  position: relative;
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
}
.cta_box .ctatxt::before {
  position: absolute;
  content: "";
  background-image: url(../assets/img/common/svg/icon-polygon-left.svg);
  width: 22px;
  height: 40px;
  bottom: 0;
  left: -1em;
}
.cta_box .ctatxt::after {
  position: absolute;
  content: "";
  background-image: url(../assets/img/common/svg/icon-polygon-right.svg);
  width: 22px;
  height: 40px;
  bottom: 0;
  right: -1em;
}
@media (max-width: 1024px) {
  .cta_box .ctatxt {
    line-height: 1.4;
  }
  .cta_box .ctatxt::before {
    left: -1.4em;
  }
  .cta_box .ctatxt::after {
    right: -1.4em;
  }
}

.fixed-btn {
  margin: 0 auto;
}

.not-found h1, .not-found .articlebox {
  max-width: 480px;
  margin: 0 auto;
}

.service-page .service {
  padding-bottom: 16px;
}
.service-page .service .btn {
  margin: 40px auto 0 clamp(20px, 6vw, 24px);
}
@media (max-width: 1024px) {
  .service-page .service .btn {
    margin: 24px auto 0;
  }
}
.service-page .circlesystem h3.ttl {
  color: #1469A2;
}
.service-page .circlesystem .articlebox {
  display: flex;
  flex-wrap: wrap;
  gap: min(40px, 10vw);
  justify-content: center;
  align-items: center;
}
.service-page .circlesystem .box_img {
  box-shadow: none;
  max-width: 440px;
}
.service-page .system h3.ttl {
  color: #1469A2;
}
.service-page .system .box_img {
  max-width: 360px;
  border-radius: 4px;
}
.service-page .system .box_img img {
  border-radius: 4px;
}
.service-page .system .cardbox {
  border-radius: 8px;
  align-items: center;
  background-color: #F5FBFE;
  box-shadow: 0 6px 14px rgba(20, 105, 162, 0.07), 0 2px 8px rgba(20, 105, 162, 0.02);
}
.service-page .system .cardtxt {
  max-width: 400px;
}
.service-page .system .cardtxt h3.ttl {
  color: #952836;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 18px;
}
.service-page .system .cardtxt span {
  font-size: 0.88em;
}
.service-page .system .cardtxt .en {
  padding-left: 0;
  color: #952836;
  font-style: italic;
  letter-spacing: 0.08em;
  margin-right: 4px;
  font-size: 1.4em;
  line-height: 1;
  bottom: 0;
  box-shadow: none;
}
.service-page .system .cardtxt .desc {
  max-width: 360px;
  margin-top: 8px;
}
.service-page .system .categorybox .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.service-page .system .categorybox .category-list p {
  font-size: 0.88em;
  font-weight: 600;
}
.service-page .system .categorybox .category-list:not(:first-child) {
  margin-top: 2px;
}
.service-page .system .categorybox .category {
  padding: 2px 18px;
  font-weight: 500;
  color: #fff;
  background-color: #1469A2;
  min-width: 80px;
  display: flex;
  justify-content: center;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .service-page .system .categorybox .category {
    padding: 2px 10px;
  }
}
.service-page .system .cta_msg {
  margin: 24px auto 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
  color: #1469A2;
  font-weight: 700;
}

.about-page .ttlbox {
  margin-top: min(60px, 10vw);
}
.about-page h3.ttl {
  color: #1469A2;
}
.about-page .company {
  margin-top: min(60px, 10vw);
}
.about-page .company .listbox-outer, .about-page .history .listbox-outer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 700px;
  margin: min(28px, 10vw) auto 0;
}
.about-page .company .listbox, .about-page .history .listbox {
  display: flex;
  gap: min(20px, 2vw);
  padding: min(28px, 4vw) 0;
  border-top: 1px solid #7591A3;
}
.about-page .company .listbox:last-of-type, .about-page .history .listbox:last-of-type {
  border-bottom: 1px solid #7591A3;
}
@media (max-width: 1024px) {
  .about-page .company .listbox, .about-page .history .listbox {
    flex-direction: column;
  }
}
.about-page .company .category, .about-page .history .category {
  color: #1469A2;
  min-width: 180px;
}
@media (max-width: 1024px) {
  .about-page .company .category, .about-page .history .category {
    min-width: unset;
  }
}
@media (max-width: 1024px) {
  .about-page .company .categorytxt, .about-page .history .categorytxt {
    padding-left: 0px;
  }
}
.about-page .company .desc, .about-page .history .desc {
  margin: 0;
}
.about-page .company .mapbox, .about-page .history .mapbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-page .company .map, .about-page .history .map {
  font-family: "lora";
  font-weight: 800;
  color: #fff;
  background-color: #1469A2;
  padding: 4px 20px;
  border-radius: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.about-page .historyimgbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.about-page .historyimgbox .box_img {
  max-width: 300px;
  border-radius: 8px;
}
.about-page .historyimgbox .box_img img {
  border-radius: 8px;
}

.contact-page, .thanks-page, .pp-page {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.contact-page .ttlbox, .thanks-page .ttlbox, .pp-page .ttlbox {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.contact-page .ttlbox h2.ttl, .thanks-page .ttlbox h2.ttl, .pp-page .ttlbox h2.ttl {
  color: #1469A2;
}
.contact-page .ttlbox .en, .thanks-page .ttlbox .en, .pp-page .ttlbox .en {
  display: block;
}
.contact-page .articlebox .desc, .thanks-page .articlebox .desc, .pp-page .articlebox .desc {
  margin-left: auto;
  margin-right: auto;
}

#wpcf7-f14-o1 {
  max-width: 760px;
  margin: 24px auto 0;
}

.wpcf7-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
.wpcf7-form .wpcf7-form-control-wrap {
  flex-direction: column;
}
.wpcf7-form label {
  color: #1469A2;
  font-weight: 700;
}
.wpcf7-form label .wpcf7-form-control {
  margin-top: 2px;
  border: 1px #7591A3 solid;
  background-color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}
.wpcf7-form p {
  text-align: left;
  margin-bottom: 4px;
}
.wpcf7-form .labelttl {
  font-weight: 700;
  color: #1469A2;
}

.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: wrap;
  margin-bottom: 32px;
  margin-top: 4px;
}
.wpcf7-form-control-wrap:not(:last-of-type) .wpcf7-list-item {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .wpcf7-form-control-wrap {
    margin-bottom: 24px;
  }
}
.wpcf7-form-control-wrap .wpcf7-list-item-label {
  border: none;
}
.wpcf7-form-control-wrap .wpcf7-list-item-label a {
  -webkit-text-decoration: underline #1469A2;
          text-decoration: underline #1469A2;
  font-weight: 700;
  color: #1469A2;
}
.wpcf7-form-control-wrap input {
  border-radius: 4px;
}

.wpcf7-not-valid-tip {
  margin-top: 2px;
  font-weight: 500;
}

.wpcf7-list-item input {
  vertical-align: sub;
}

.wpcf7-acceptance {
  margin: 0 auto;
  margin-bottom: 0;
}

.wpcf7-submit {
  padding: 12px 48px;
  background-color: #1469A2;
  box-shadow: 0 6px 14px rgba(20, 105, 162, 0.07), 0 2px 8px rgba(20, 105, 162, 0.02);
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
  max-width: 80%;
}
.wpcf7-submit:hover {
  background-color: #952836;
}

.wpcf7-response-output {
  border-radius: 8px;
}

input[type=checkbox] {
  -moz-appearance: none;
       appearance: none; /* ブラウザ標準の外観を無効化 */
  -webkit-appearance: none; /* Safari/古いChrome向け */
  line-height: 1.6;
  width: 20px; /* チェックボックスの横幅 */
  height: 20px; /* チェックボックスの縦幅 */
  border: 1px solid #7591A3; /* 枠線 */
  border-radius: 4px; /* 角丸にしたい場合 */
  background-color: #fff; /* 背景色 */
  cursor: pointer; /* ポインタにする */
  position: relative; /* 疑似要素を絶対配置するため */
  margin-right: 8px; /* ラベルとの余白 */
}

/* チェック時の背景色や枠線を変更 */
input[type=checkbox]:checked {
  background-color: #1469A2; /* チェック時の背景色 */
  border-color: #1469A2; /* 枠線色も合わせる */
}

/* チェックマークを描画する（疑似要素） */
input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 4px;
  height: 8px;
  border: solid #fff; /* 白色のチェックライン */
  border-width: 0 2px 2px 0; /* 右と下だけ線を引く */
  transform: rotate(45deg);
}

.thanks-page {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.thanks-page h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  color: #192329;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.thanks-page p {
  text-align: center;
}
.thanks-page h3.subttl {
  font-size: 1.1rem;
  color: #192329;
}

.fixconts.pp-page section {
  margin-top: 40px;
}

.pp-page h3 {
  font-size: 1.4rem;
  margin-top: 24px;
  margin-bottom: 0;
}

.pp-conts {
  max-width: 760px;
}
.pp-conts h2.ttl {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  margin-top: min(24px, 6vw);
}
.pp-conts ul {
  margin-top: min(12px, 2.8vw);
}
.pp-conts p, .pp-conts li, .pp-conts strong a {
  font-weight: 600;
  line-height: 1.55;
}
.pp-conts a {
  text-decoration: underline;
  color: #1469A2;
}
.pp-conts .articlebox .desc {
  margin: 2px 0 0;
}

.fixconts.error-404 .page-header {
  margin-top: 60px;
}
.fixconts.error-404 .page-header a {
  text-decoration: underline;
}

.error404-page {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.error404-page .error404 .tac {
  margin-top: 16px;
}
.error404-page .error404 .tac.en {
  margin-top: 0;
  font-size: 1.2em;
}/*# sourceMappingURL=style.css.map */