@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* font family
====================================== */
:root {
  --main-color: #FF8C00;
  --pale-orange: #F8D299;
  --red-color: #FF5B23;
  --light-grey-color: #E5E5E5;
  --light-orange: #FFA688;
  --txt-title-lg: clamp(16px, 1.6vw, 32px);
  --txt-title-xl: clamp(30px, 2.6vw, 60px);
  --txt-sm: clamp(12px, 1.2vw, 15px);
  --txt-md: clamp(14px, 1.2vw, 17px);
  --txt-lg: clamp(16px, 1.2vw, 19px);
  --txt-xl: clamp(18px, 2.2vw, 24px);
}

/* colors 色管理
====================================== */
/* breakpoint ブレイクポイント
====================================== */
html {
  font-size: 62.5%;
  ascroll-behavior: smooth;
}

body {
  font-size: 1.4rem;
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  font-weight: normal;
  color: #222222;
  box-sizing: border-box;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  position: relative;
  z-index: -2;
}
@media screen and (min-width: 835px) {
  body {
    font-size: 1.6rem;
  }
}

body:not(.home) {
  overflow-x: hidden;
  position: relative;
  padding-top: 200px;
}
body:not(.home)::before {
  content: "";
  display: block;
  width: min(360.5px, 92.4vw);
  height: min(184.5px, 47.3vw);
  background: url(../images/line_right_sp.png) no-repeat bottom;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  body:not(.home)::before {
    width: min(880px, 61.1vw);
    height: min(315px, 21.9vw);
    background: url(../images/line_right_pc.png) no-repeat bottom;
    background-size: cover;
  }
}

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

video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #333;
  text-decoration: none;
  display: block;
  transition: 0.6s;
}

a:hover {
  opacity: 0.7;
}

li {
  list-style: none;
}

.wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
}

.to-top {
  width: 80px;
  border-radius: 50%;
  background-position: center;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 835px) {
  .to-top {
    width: 100px;
    display: block;
    right: 20px;
    bottom: 20px;
  }
}

/* Background */
.bg-pale-orange {
  background-color: var(--pale-orange);
}

.bg-yellow {
  background-color: var(--main-color);
}

.bg-light-grey {
  background-color: var(--light-grey-color);
}

/* font */
.f-bowlby {
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Gradation  グラデーション
====================================== */
.l-header {
  padding: 0 20px;
}
@media screen and (min-width: 1025px) {
  .l-header .header-flex {
    width: 100%;
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    z-index: 10;
    transition: transform 0.5s 0.5s ease;
  }
}
@media screen and (min-width: 1025px) {
  .l-header .header-flex.hidden {
    transform: translate(0, -130px);
  }
}
@media screen and (min-width: 1025px) {
  .l-header .left {
    border-radius: 64px;
    position: fixed;
    top: 83px;
    left: 30px;
    padding: 0 35px;
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: static;
  }
}
.l-header .header-logo {
  max-width: 150px;
}
.l-header .header-logo img {
  width: 100%;
  max-width: 150px;
}
@media screen and (min-width: 835px) {
  .l-header .header-logo {
    max-width: 230px;
  }
  .l-header .header-logo img {
    width: 100%;
    max-width: 230px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header .header-logo {
    position: fixed;
    top: 10px;
    left: 15px;
    z-index: 10;
    transition: transform 0.5s 0.3s ease;
  }
  .l-header .header-logo.move-in {
    transform: translateX(30px);
  }
}
.l-header .header-nav {
  padding: 105px 24px 32px 24px;
  position: fixed;
  top: 43px;
  left: 50%;
}
@media screen and (min-width: 1025px) {
  .l-header .header-nav {
    padding: 0;
    width: auto;
    height: auto;
    overflow-y: unset;
    position: static;
    background: none;
    transform: translateY(0) scale(1);
    opacity: 1;
    z-index: unset;
  }
}
.l-header .header-nav > .nav-list {
  opacity: 0;
  transition: opacity 0.3s 0.8s ease;
}
@media screen and (min-width: 1025px) {
  .l-header .header-nav > .nav-list {
    display: flex;
    opacity: 1;
  }
}
.l-header .header-nav.open > .nav-list {
  opacity: 1;
}
.l-header .nav-item {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .l-header .nav-item {
    padding-left: 18px;
  }
  .l-header .nav-item:not(:has(.child-list)) {
    padding-left: 32px;
  }
}
.l-header a {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}
.l-header .parent-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .l-header .parent-cont {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
    gap: 6px;
  }
}
.l-header .parent-link {
  font-size: 1.8rem;
  background: var(--main-color);
  color: #FFF;
  padding: 1em 1.4em;
  border-radius: 100px;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .l-header .parent-link {
    font-size: 1.4rem;
  }
}
.l-header .parent-link span {
  color: #347CBA;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}
@media screen and (min-width: 1025px) {
  .l-header .parent-link span {
    display: none;
  }
}
.l-header .nav-arrow {
  display: block;
  width: 16px;
  height: 10px;
  background: url(../images/icon_nav_arrow.svg) no-repeat center;
  background-size: cover;
  margin-right: 16px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .l-header .nav-arrow {
    margin-right: 0;
    width: min(16px, 1.1vw);
    height: min(10px, 0.7vw);
  }
}
.l-header .nav-arrow.open {
  transform: rotate(180deg);
}
.l-header .external-icon {
  display: block;
  width: 15px;
  height: 15px;
  background: url(../images/icon_external.svg) no-repeat center;
  background-size: cover;
  margin-right: 16px;
}
@media screen and (min-width: 1025px) {
  .l-header .external-icon {
    margin-right: 0;
    width: min(15px, 1vw);
    height: min(15px, 1vw);
  }
}
.l-header .child-list {
  padding-left: 16px;
  margin-bottom: 20px;
  transition: all 0.5s;
  overflow: hidden;
  height: 0;
}
@media screen and (min-width: 1025px) {
  .l-header .child-list {
    background: rgba(255, 255, 255, 0.95);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 4px 8px 32px 0px rgba(0, 0, 0, 0.12);
    margin-bottom: 0;
    overflow: visible;
    height: unset;
    position: absolute;
    left: 0;
    top: 55px;
    opacity: 0;
    pointer-events: none;
  }
  .l-header .child-list.show {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-header .child-list a {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}
.l-header .child-list a:hover {
  padding-bottom: 8px;
  border-bottom: 1px solid #347CBA;
}
.l-header .child-item {
  font-size: 1.3rem;
  padding-left: 0.5em;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .l-header .child-item {
    font-size: 1.4rem;
    padding-left: 0;
    margin-bottom: 24px;
  }
}
.l-header .child-item::before {
  content: "-";
  display: block;
  font-size: 1.3rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .l-header .child-item::before {
    content: none;
  }
}
.l-header .child-item:last-child {
  margin-bottom: 0;
}
.l-header .arrow {
  position: relative;
  padding-right: 24px;
}
.l-header .arrow::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 16px;
  height: 10px;
  background: url(../images/icon_nav_arrow.svg) no-repeat center;
  background-size: cover;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .l-header .arrow::after {
    width: min(16px, 1.1vw);
    height: min(10px, 0.7vw);
  }
}
.l-header .fsc-list {
  transition: all 0.5s;
  overflow: hidden;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .l-header .fsc-list {
    position: absolute;
    top: 0;
    left: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 4px 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    z-index: 100;
    white-space: nowrap;
    height: auto;
    overflow: visible;
    opacity: 0;
    pointer-events: none;
  }
  .l-header .fsc-list.show {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-header .fsc-list li {
  margin-bottom: 8px;
}
.l-header .fsc-list li:last-child {
  margin-bottom: 0;
}
.l-header .fsc-list li a {
  font-size: 1.3rem;
  color: #333;
}
.l-header .fsc-list li a:hover {
  color: #347CBA;
}
@media screen and (min-width: 1025px) {
  .l-header .child-item.has-submenu:hover > .fsc-list {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-header .drawer-btn {
  color: #222222;
  width: clamp(43px, 11vw, 64px);
  height: clamp(43px, 11vw, 64px);
  background: #fff;
  border-radius: 50%;
  box-shadow: 4px 8px 32px 0px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 10px;
  right: 30px;
  z-index: 10;
  transition: background 0.3s ease, transform 0.5s ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .l-header .drawer-btn {
    display: none;
  }
}
.l-header .drawer-btn span {
  display: block;
}
.l-header .drawer-btn span.bar-cont {
  width: 21px;
  height: 16px;
  position: relative;
}
.l-header .drawer-btn span:not(.bar-cont) {
  width: 21px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}
.l-header .drawer-btn span:not(.bar-cont):first-child {
  top: 0;
}
.l-header .drawer-btn span:not(.bar-cont):nth-child(2) {
  top: 50%;
}
.l-header .drawer-btn span:not(.bar-cont):last-child {
  top: 100%;
}
.l-header .drawer-btn.move-in {
  background: #347CBA;
  transform: translateX(-24px);
}
.l-header .drawer-btn.move-in span:not(.bar-cont) {
  background: #fff;
}
.l-header .drawer-btn.move-in span:not(.bar-cont):first-child {
  transform: translateY(7px) rotate(45deg);
}
.l-header .drawer-btn.move-in span:not(.bar-cont):nth-child(2) {
  opacity: 0;
}
.l-header .drawer-btn.move-in span:not(.bar-cont):last-child {
  transform: translateY(-9px) rotate(-45deg);
}
.l-header .search-btn {
  color: #222222;
  background: #fff;
  box-shadow: 4px 8px 32px 0px rgba(0, 0, 0, 0.12);
  font-size: 1rem;
  width: clamp(43px, 11vw, 64px);
  height: clamp(43px, 11vw, 64px);
  border-radius: 50%;
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 58.5px;
  right: 85px;
  z-index: 5;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .l-header .search-btn {
    font-size: 1.2rem;
    position: static;
  }
}
@media screen and (min-width: 431px) {
  .l-header .search-btn {
    right: 107px;
  }
}
.l-header .search-btn.hide {
  opacity: 0;
}
.l-header .search-btn .icon-cont {
  width: 14px;
  height: 14px;
}
@media screen and (min-width: 835px) {
  .l-header .search-btn .icon-cont {
    width: 21px;
    height: 21px;
  }
}
.l-header .search-modal {
  max-width: 1240px;
  padding: 68px 24px 68px;
  background: #fff;
  border-radius: 24px;
  width: calc(100% - 60px);
  height: 80svh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(0);
  transform-origin: top;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s 0.3s ease;
}
.l-header .search-modal.open {
  opacity: 1;
  z-index: 20;
  transform: translate(-50%, -50%) scaleY(1);
}
@media screen and (min-width: 1025px) {
  .l-header .search-modal {
    width: 100%;
    padding: 80px 88px;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.l-header .search-close {
  width: 39px;
  height: 39px;
  background: #347CBA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 29px;
  right: 24px;
}
@media screen and (min-width: 1025px) {
  .l-header .search-close {
    width: 48px;
    height: 48px;
    top: 32px;
    right: 40px;
  }
}
.l-header .search-close .bar-cont {
  display: block;
  width: 14px;
  height: 14px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .l-header .search-close .bar-cont {
    width: 17px;
    height: 17px;
  }
}
.l-header .search-close .bar-cont span {
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  left: -2px;
}
@media screen and (min-width: 1025px) {
  .l-header .search-close .bar-cont span {
    width: 23px;
    height: 3px;
  }
}
.l-header .search-close .bar-cont span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.l-header .search-close .bar-cont span:last-child {
  transform: translateY(7px) rotate(-45deg);
}
.l-header .search-modal .modal-content {
  opacity: 0;
  transition: opacity 0.3s 0.8s ease;
}
.l-header .search-modal.open .modal-content {
  opacity: 1;
}
.l-header .modal-ttl {
  margin-bottom: 40px;
  border-bottom: solid 1px #d9d9d9;
  line-height: 160%;
  letter-spacing: 0.15em;
  font-size: clamp(20px, 5.1vw, 32px);
  padding-bottom: 24px;
  position: relative;
}
.l-header .modal-ttl::after {
  content: "";
  display: block;
  width: 65px;
  height: 1px;
  background: #347CBA;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .l-header .modal-ttl::after {
    width: 200px;
  }
}
.l-header .search-field {
  width: 100%;
  margin-bottom: 40px;
}
.l-header .search-field ul:has(input[name=ofsearch]),
.l-header .search-field li:has(input[name=ofsearch]) {
  width: 100%;
}
.l-header .search-field li:has(input[name=ofsearch]) {
  padding-right: 0 !important;
}
.l-header .search-field input[name=ofsearch] {
  width: 100%;
  padding: 17px 24px;
  background: #fbfbfb;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
}
.l-header .search-field input[name=ofsearch]::-moz-placeholder {
  color: #c7c7c7;
}
.l-header .search-field input[name=ofsearch]::placeholder {
  color: #c7c7c7;
}
.l-header .search-field input[type=submit] {
  display: none;
}
.l-header .search-tag p {
  font-size: 1.6rem;
  margin-bottom: 22px;
}
@media screen and (min-width: 1025px) {
  .l-header .search-tag p {
    font-size: 1.8rem;
  }
}
.l-header .search-tag .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.l-header .search-tag .tag-item a {
  color: #347CBA;
  font-size: 1.3rem;
}
@media screen and (min-width: 1025px) {
  .l-header .search-tag .tag-item a {
    font-size: 1.6rem;
  }
}
.l-header .overlay {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}
.l-header .overlay.show {
  opacity: 1;
  z-index: 5;
}

body.home .l-main {
  position: relative;
  z-index: 0;
}

.l-footer {
  padding: 40px 0 0;
}
.l-footer .footer-btm {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.l-footer p {
  font-size: var(--txt-sm);
  line-height: 2;
}
.l-footer .ill {
  max-width: 140px;
  display: none;
}
@media screen and (min-width: 835px) {
  .l-footer .ill {
    display: block;
  }
}
.l-footer .copyright {
  display: block;
  background: #222;
  color: #FFF;
  padding: 0.4em 0.2em;
  text-align: center;
}
.l-footer .footer_contact_info {
  margin: 40px auto;
  max-width: 600px;
  padding: 20px;
  border: solid;
}
.l-footer .footer_contact_info h3 {
  margin-bottom: 1em;
}

body.home .sec-t-mv {
  position: relative;
}
body.home .sec-t-mv::after {
  content: "";
  display: block;
  background-color: var(--main-color);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: polygon(0 10%, 50% 0, 100% 10%, 100% 100%, 0 100%);
          clip-path: polygon(0 10%, 50% 0, 100% 10%, 100% 100%, 0 100%);
}
body.home .sec-t-mv .label {
  text-align: center;
}
body.home .sec-t-mv .label p {
  background: #FFF;
  color: var(--main-color);
  text-align: center;
  display: inline-block;
  padding: 0.8em 1.4em;
  margin: 1em 0 0;
  font-weight: bold;
}
body.home .sec-t-mv .catchcopy {
  max-width: 1240px;
  text-align: center;
  margin-inline: auto;
  padding: 12vw 30px 0;
  position: relative;
}
body.home .sec-t-mv .mv_thumb_list {
  display: flex;
  justify-content: space-between;
  margin-top: -6vw;
  gap: 12px;
  max-width: 1440px;
  margin-inline: auto;
}
body.home .sec-t-mv .news-latest {
  padding: 40px 30px 120px 30px;
  border-radius: 48px 0 0 0;
  background: #fff;
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-mv .news-latest {
    width: clamp(588px, 41vw, 784px);
    padding: 16px 32px 10px 24px;
    bottom: 0;
    left: unset;
    right: 0;
  }
}
@media screen and (min-width: 835px) {
  body.home .sec-t-mv .latest-flex {
    display: flex;
    align-items: center;
  }
}
body.home .sec-t-mv .latest-head {
  color: #347CBA;
  margin-bottom: 9px;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-mv .latest-head {
    min-width: 131px;
    text-align: center;
    padding-right: 24px;
    margin-bottom: 0;
  }
}
body.home .sec-t-mv .latest-head span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-mv .latest-info {
    padding-left: 24px;
    border-left: 1px solid #347CBA;
  }
}
body.home .sec-t-mv .latest-info .date-tag {
  color: #347CBA;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
body.home .sec-t-mv .latest-info .latest-title {
  font-size: 1.4rem;
  line-height: 1.9;
  text-decoration: underline;
}
body.home .sec-t-news {
  padding: 60px 0 30px;
  margin-top: -1px;
  color: #FFF;
}
body.home .sec-t-news a {
  color: #FFF;
}
body.home .sec-t-news .sec-title {
  text-align: left;
}
body.home .sec-t-news .news_list {
  margin-bottom: 40px;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-news .news_list {
    display: grid;
    grid-template-columns: 2fr 0.8fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "a b c" "a d e";
    gap: 10px 40px;
  }
  body.home .sec-t-news .news_list .news_item:nth-child(1) {
    grid-area: a;
  }
  body.home .sec-t-news .news_list .news_item:nth-child(2) {
    grid-area: b;
  }
  body.home .sec-t-news .news_list .news_item:nth-child(3) {
    grid-area: c;
  }
  body.home .sec-t-news .news_list .news_item:nth-child(4) {
    grid-area: d;
  }
  body.home .sec-t-news .news_list .news_item:nth-child(5) {
    grid-area: e;
  }
  body.home .sec-t-news .news_list .news_item:nth-child(n+2) .news_title {
    font-size: var(--txt-md);
  }
  body.home .sec-t-news .news_list .news_item:nth-child(n+2) .news_excerpt {
    display: none;
  }
}
body.home .sec-t-news .news_thumb {
  margin: 0 0 10px;
  aspect-ratio: 300/180;
  overflow: hidden;
}
body.home .sec-t-news .news_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
body.home .sec-t-news .news_date {
  font-size: var(--txt-sm);
  display: block;
  margin: 0 0 0.3em;
}
body.home .sec-t-news .news_title {
  font-size: var(--txt-title-lg);
  line-height: 1.4;
  margin: 0 0 0.4em;
}
body.home .sec-t-news .news_excerpt {
  font-size: var(--txt-md);
  line-height: 1.4;
}
body.home .sec-t-news .news_item {
  margin-bottom: 20px;
}
body.home .sec-t-introduction {
  padding: 60px 0 30px;
}
body.home .sec-t-introduction .left {
  flex-basis: 40%;
  margin-bottom: 20px;
}
body.home .sec-t-introduction .right {
  flex-basis: 55%;
  margin-bottom: 20px;
}
body.home .sec-t-introduction .intro_ttl_1 {
  font-size: var(--txt-title-xl);
  margin-bottom: 1.6em;
}
body.home .sec-t-introduction p {
  font-size: var(--txt-md);
  line-height: 3;
  margin: 0 0 1em;
}
body.home .sec-t-introduction .large {
  font-size: var(--txt-title-xl);
  background: linear-gradient(transparent 60%, var(--main-color) 60%);
  display: inline;
  font-weight: bold;
}
body.home .sec-t-introduction .intro_1 {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 60px;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-introduction .intro_1.intro_row {
    display: flex;
    justify-content: space-between;
  }
}
body.home .sec-t-introduction .intro_2 {
  margin-bottom: 60px;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-introduction .intro_2.intro_row {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin-inline: auto;
  }
  body.home .sec-t-introduction .intro_2.intro_row.rev {
    flex-direction: row-reverse;
  }
}
body.home .sec-t-introduction .intro_2 p {
  line-height: 2;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-introduction .intro_3 {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin-inline: auto;
  }
}
body.home .sec-t-introduction .intro_3 h2 {
  margin-bottom: 1em;
}
body.home .sec-t-introduction .intro_3 p {
  line-height: 2.5;
}
body.home .sec-t-conditions {
  padding: 60px 0;
  background-color: #FFFDF8;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-conditions .conditions_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
body.home .sec-t-conditions .conditions_item {
  flex-basis: 49%;
  margin: 0 0 20px;
  background: #FFF;
  border-radius: 16px;
  border: solid 2px;
  padding: 16px;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-conditions .conditions_item {
    padding: 30px;
  }
}
body.home .sec-t-conditions .conditions_item h3 {
  font-size: var(--txt-title-lg);
  margin-bottom: 1em;
}
body.home .sec-t-conditions .conditions_item p {
  line-height: 1.6;
  margin: 0 0 1em;
}
body.home .sec-t-conditions .conditions_item .salary {
  display: flex;
  margin: 0 0 1em;
}
body.home .sec-t-conditions .conditions_item .label {
  font-size: var(--txt-sm);
  padding: 0.3em 1.4em;
  border-radius: 100px;
  background: var(--red-color);
  color: #FFF;
  margin: 0 1em 0 0;
}
body.home .sec-t-conditions .conditions_item .price {
  font-size: var(--txt-lg);
  margin: 0;
  line-height: 1;
}
body.home .sec-t-conditions .conditions_item .notice {
  font-size: var(--txt-sm);
}
body.home .sec-t-conditions .conditions_item .detail {
  background: var(--light-grey-color);
  font-size: var(--txt-sm);
  padding: 1em;
}
body.home .sec-t-conditions .conditions_detail {
  margin-top: 20px;
  font-size: var(--txt-sm);
}
body.home .sec-t-conditions .conditions_detail dl {
  margin-bottom: 1.75em;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-conditions .conditions_detail dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.3em;
  }
}
body.home .sec-t-conditions .conditions_detail dt {
  flex-basis: 160px;
  line-height: 1.6;
}
body.home .sec-t-conditions .conditions_detail dd {
  flex-basis: calc(100% - 160px);
  line-height: 1.6;
}
body.home .sec-t-discussion {
  padding: 60px 0;
}
body.home .sec-t-discussion .discussion_row {
  margin: 0 0 30px;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-discussion .discussion_row {
    display: flex;
    justify-content: space-between;
    margin: 0 0 90px;
  }
  body.home .sec-t-discussion .discussion_row.rev {
    flex-direction: row-reverse;
  }
}
body.home .sec-t-discussion .discussion_list {
  flex-basis: 65%;
}
body.home .sec-t-discussion .discussion_item {
  background: #FFF;
  padding: 20px;
  position: relative;
  margin: 0 0 40px;
}
body.home .sec-t-discussion .discussion_item .label {
  font-size: var(--txt-sm);
  padding: 0.3em 1.4em;
  border-radius: 100px;
  background: var(--red-color);
  color: #FFF;
  margin: 0 1em 0 0;
  position: absolute;
  top: -10px;
  left: 20px;
}
body.home .sec-t-discussion .discussion_item p {
  font-size: var(--txt-sm);
  line-height: 1.6;
}
body.home .sec-t-discussion .discussion_gallery {
  flex-basis: 30%;
}
body.home .sec-t-discussion .discussion_gallery .img {
  margin: 0 0 16px;
}
body.home .sec-t-voice {
  padding: 20px 0 96px;
  background: #fff;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-voice {
    padding: 60px 0;
  }
}
body.home .sec-t-voice .voice_main {
  margin: 0 auto 40px;
  max-width: 800px;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-voice .voice_main {
    display: flex;
  }
}
body.home .sec-t-voice .voice_main .thumb {
  flex-basis: 410px;
  margin: 0 0 40px 0;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-voice .voice_main .thumb {
    margin: 0 0 20px 0;
  }
}
body.home .sec-t-voice .voice_main .lead {
  font-size: var(--txt-xl);
  line-height: 1.85;
  font-weight: bold;
  width: 100%;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-voice .voice_main .lead p {
    padding: 40px;
    background: #FFF;
    margin-left: -60px;
    margin-top: 27px;
  }
}
body.home .sec-t-voice .voice_talk {
  margin: 0 auto 40px;
  max-width: 800px;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-voice .voice_talk {
    margin: 0 auto 90px;
  }
}
body.home .sec-t-voice .avatar {
  border-radius: 50%;
  width: 50px;
  text-align: center;
  font-size: var(--txt-sm);
}
@media screen and (min-width: 835px) {
  body.home .sec-t-voice .avatar {
    width: 80px;
    margin: 0 20px;
  }
}
body.home .sec-t-voice .avatar_thumb {
  border: solid 2px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
body.home .sec-t-voice .name {
  display: block;
  margin: 0.8em 0 0;
}
body.home .sec-t-voice .voice_txt {
  padding: 1.6em;
  background-color: var(--light-orange);
  border-radius: 16px;
  font-size: var(--txt-md);
  line-height: 1.6;
  margin: 0 10px;
  flex-basis: calc(100% - 50px);
  position: relative;
}
body.home .sec-t-voice .voice_txt::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -6px;
  width: 8px;
  height: 8px;
  background-color: var(--light-orange);
  margin-top: -4px;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media screen and (min-width: 835px) {
  body.home .sec-t-voice .voice_txt {
    flex-basis: calc(100% - 160px);
    margin: 0 20px;
  }
}
body.home .sec-t-voice .talk_item {
  display: flex;
  margin: 0 0 30px;
}
body.home .sec-t-voice .talk_item.interviewer {
  flex-direction: row-reverse;
}
body.home .sec-t-voice .talk_item.interviewer .voice_txt {
  background: var(--pale-orange);
}
body.home .sec-t-voice .talk_item.interviewer .voice_txt::after {
  top: 50%;
  left: inherit;
  right: -7px;
  background-color: var(--pale-orange);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
body.home .sec-t-series {
  padding: 80px 0 54px;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-series {
    padding: 90px 0 90px;
  }
}
body.home .sec-t-series .sec-title span {
  line-height: 1.25;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-series .link-list {
    display: flex;
    gap: 16px;
  }
}
body.home .sec-t-series .link-item {
  background: #FFF;
  margin-bottom: 48px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-series .link-item {
    flex-basis: calc((100% - 48px) / 4);
  }
}
body.home .sec-t-series .link-item .link-thumb {
  margin-bottom: 18px;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-series .link-item .link-thumb {
    margin-bottom: 32px;
  }
}
body.home .sec-t-series .link-item .link-thumb img {
  transform: scale(1.1);
  width: 100%;
}
body.home .sec-t-series .link-item .link-info {
  padding: 0 1.2em 1.6em;
}
body.home .sec-t-series .link-title {
  font-size: var(--txt-title-lg);
  margin-bottom: 18px;
  text-align: center;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-series .link-title {
    margin-bottom: 24px;
  }
}
body.home .sec-t-series .link-title small {
  display: block;
  font-size: var(--txt-sm);
  margin: 0 0 0.6em;
}
body.home .sec-t-series .link-desc {
  line-height: 1.7;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-series .link-desc {
    line-height: 2.1;
  }
}
body.home .sec-t-entry {
  padding: 60px 0;
}
body.home .sec-t-entry .form_wrap {
  background: #FFF;
  padding: 10px;
}
@media screen and (min-width: 835px) {
  body.home .sec-t-entry .form_wrap {
    padding: 40px;
  }
}
body.home .btn-wrapper {
  margin: 60px 0;
  text-align: center;
}

body.search-results .sec-ll-search,
body.search-no-results .sec-ll-search {
  margin-bottom: 80px;
}
body.search-results .search-field,
body.search-no-results .search-field {
  width: 100%;
  margin-bottom: 24px;
}
body.search-results .search-field ul:has(input[name=ofsearch]),
body.search-results .search-field li:has(input[name=ofsearch]),
body.search-no-results .search-field ul:has(input[name=ofsearch]),
body.search-no-results .search-field li:has(input[name=ofsearch]) {
  width: 100%;
}
body.search-results .search-field li:has(input[name=ofsearch]),
body.search-no-results .search-field li:has(input[name=ofsearch]) {
  padding-right: 0 !important;
}
body.search-results .search-field input[name=ofsearch],
body.search-no-results .search-field input[name=ofsearch] {
  width: 100%;
  padding: 17px 24px;
  background: #FBFBFB;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
}
body.search-results .search-field input[name=ofsearch]::-moz-placeholder, body.search-no-results .search-field input[name=ofsearch]::-moz-placeholder {
  color: #C7C7C7;
}
body.search-results .search-field input[name=ofsearch]::placeholder,
body.search-no-results .search-field input[name=ofsearch]::placeholder {
  color: #C7C7C7;
}
body.search-results .search-field input[type=submit],
body.search-no-results .search-field input[type=submit] {
  display: none;
}
body.search-results .search-tag p,
body.search-no-results .search-tag p {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  body.search-results .search-tag p,
  body.search-no-results .search-tag p {
    font-size: 1.8rem;
    margin-bottom: 22px;
  }
}
body.search-results .search-tag .tag-list,
body.search-no-results .search-tag .tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 56px;
  gap: 12px;
}
@media screen and (min-width: 1025px) {
  body.search-results .search-tag .tag-list,
  body.search-no-results .search-tag .tag-list {
    gap: 16px;
  }
}
body.search-results .search-tag .tag-item a,
body.search-no-results .search-tag .tag-item a {
  color: #347CBA;
  font-size: 1.3rem;
}
@media screen and (min-width: 1025px) {
  body.search-results .search-tag .tag-item a,
  body.search-no-results .search-tag .tag-item a {
    font-size: 1.6rem;
  }
}
body.search-results .search-result .result-num,
body.search-no-results .search-result .result-num {
  margin-bottom: 8px;
}
@media screen and (min-width: 1025px) {
  body.search-results .search-result .result-num,
  body.search-no-results .search-result .result-num {
    margin-bottom: 16px;
  }
}
body.search-results .search-result .result-item,
body.search-no-results .search-result .result-item {
  padding: 24px 12px 24px 0;
  border-bottom: 1px solid #D9D9D9;
  position: relative;
}
@media screen and (min-width: 1025px) {
  body.search-results .search-result .result-item,
  body.search-no-results .search-result .result-item {
    padding: 40px 30px 40px 0;
  }
}
body.search-results .search-result .result-item::after,
body.search-no-results .search-result .result-item::after {
  content: "";
  width: 8px;
  height: 14px;
  background: url(../images/icon_search_arrow.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1025px) {
  body.search-results .search-result .result-item::after,
  body.search-no-results .search-result .result-item::after {
    width: 9px;
    height: 16px;
    right: 21px;
  }
}
body.search-results .search-result .result-title,
body.search-no-results .search-result .result-title {
  color: #347CBA;
  font-size: clamp(18px, 4.6vw, 24px);
  line-height: 1.5;
}
body.search-results .search-result .result-title + .result-excerpt,
body.search-no-results .search-result .result-title + .result-excerpt {
  margin-top: 16px;
}
body.search-results .search-result .result-excerpt,
body.search-no-results .search-result .result-excerpt {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2.2;
}
@media screen and (min-width: 1025px) {
  body.search-results .search-result .result-excerpt,
  body.search-no-results .search-result .result-excerpt {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 431px) {
  body.page-id-8616 .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 80px;
    margin-bottom: 120px;
  }
}
body.page-id-8616 .cards .card {
  margin: 0 auto 72px auto;
  max-width: 100%;
}
body.page-id-8616 .cards .card .card-title {
  margin-bottom: 32px;
}
body.page-id-8616 .cards .card .card-title .card-title-en {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
  color: #347CBA;
}
body.page-id-8616 .cards .card .card-title .card-title-ja {
  font-size: 2.8rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
body.page-id-8616 .cards .card .card-img {
  margin-bottom: 48px;
  max-width: 500px;
}
@media screen and (max-width: 430px) {
  body.page-id-8616 .cards .card .card-img {
    margin-bottom: 0px;
  }
}
body.page-id-8616 .cards .card .btn-list .list {
  position: relative;
  border-bottom: 1px solid #D9D9D9;
  font-size: 1.8rem;
  font-weight: bold;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 431px) {
  body.page-id-8616 .cards .card .btn-list .list {
    font-size: 2rem;
  }
}
body.page-id-8616 .cards .card .btn-list .list .anime {
  position: relative;
  background: linear-gradient(to right, #000, #0e75f3);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s ease-in-out;
  padding: 26px 0 24px 0;
}
body.page-id-8616 .cards .card .btn-list .list::after {
  content: "";
  background-image: url(../images/products_arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  transition: right 0.3s ease-in-out;
}
body.page-id-8616 .cards .card .btn-list .list:hover .anime {
  background-position: -100% 0;
}
body.page-id-8616 .cards .card .btn-list .list:hover::after {
  right: 0;
}

.sec-t-company {
  padding: 90px 0;
}
.sec-t-company .overview-title {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .sec-t-company .overview-title {
    margin-bottom: 32px;
  }
}
.sec-t-company .overview-wrap {
  background: #FFF;
  padding: 30px;
  border-radius: 16px;
}
.sec-t-company .overview-wrap + .overview-wrap {
  margin-top: 40px;
}
.sec-t-company h3 {
  font-size: var(--txt-title-lg);
}
@media screen and (min-width: 1025px) {
  .sec-t-company h3 {
    padding: 32px 80px 32px 32px;
  }
}
.sec-t-company .info-cont {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.sec-t-company .info-cont.hide {
  display: none;
}
@media screen and (min-width: 835px) {
  .sec-t-company .info-cont {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0;
  }
}
.sec-t-company .info-cont dt {
  font-size: 1.8rem;
  line-height: 1.3;
  padding-top: 16px;
}
@media screen and (min-width: 835px) {
  .sec-t-company .info-cont dt {
    font-size: 2rem;
    flex-basis: min(264px, 18.3vw);
    padding: 32px 80px 32px 32px;
    border-bottom: 1px solid;
  }
}
.sec-t-company .info-cont dd {
  line-height: 2.2;
  font-weight: normal;
  padding-bottom: 24px;
  border-bottom: 1px solid;
}
@media screen and (min-width: 835px) {
  .sec-t-company .info-cont dd {
    flex-basis: calc(100% - min(264px, 18.3vw));
    padding: 32px 0;
  }
}
@media screen and (min-width: 835px) {
  .sec-t-company .info-cont .office_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.sec-t-company .info-cont .office_list li {
  flex-basis: 48%;
  margin: 0 0 30px;
}
.sec-t-company .info-cont .office_list p {
  font-size: var(--txt-sm);
}

body.post-type-archive-news .sec-ll-article-list.__news,
body.tax-news-category .sec-ll-article-list.__news {
  margin-bottom: 120px;
}
@media screen and (min-width: 1025px) {
  body.post-type-archive-news .news-list-flex,
  body.tax-news-category .news-list-flex {
    display: flex;
    gap: 56px;
  }
}
body.post-type-archive-news .cat-list,
body.tax-news-category .cat-list {
  display: flex;
  margin-bottom: 8px;
}
@media screen and (min-width: 1025px) {
  body.post-type-archive-news .cat-list,
  body.tax-news-category .cat-list {
    height: 144px;
    white-space: nowrap;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 64px;
  }
}
body.post-type-archive-news .cat-item,
body.tax-news-category .cat-item {
  font-size: 1.4rem;
  width: 25%;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  body.post-type-archive-news .cat-item,
  body.tax-news-category .cat-item {
    font-size: 1.8rem;
    width: 100%;
    padding-left: 20px;
  }
}
body.post-type-archive-news .cat-item a,
body.tax-news-category .cat-item a {
  color: #C7C7C7;
  letter-spacing: 0.1em;
}
body.post-type-archive-news .cat-item.active::before,
body.tax-news-category .cat-item.active::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #347CBA;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
body.post-type-archive-news .cat-item.active a,
body.tax-news-category .cat-item.active a {
  color: #347CBA;
  opacity: 1;
}
body.post-type-archive-news .article-item,
body.tax-news-category .article-item {
  padding: 32px 0;
  border-bottom: 1px solid #D9D9D9;
}
body.post-type-archive-news .article-item:hover .news-title,
body.tax-news-category .article-item:hover .news-title {
  color: #347CBA;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  body.post-type-archive-news .article-item,
  body.tax-news-category .article-item {
    padding: 40px 0;
    display: flex;
    gap: 24px;
  }
  body.post-type-archive-news .article-item:first-child,
  body.tax-news-category .article-item:first-child {
    padding-top: 0;
  }
}
body.post-type-archive-news .date-cat,
body.tax-news-category .date-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
@media screen and (min-width: 1025px) {
  body.post-type-archive-news .date-cat,
  body.tax-news-category .date-cat {
    gap: 24px;
  }
}
body.post-type-archive-news .news-date,
body.tax-news-category .news-date {
  font-weight: normal;
}
body.post-type-archive-news .news-cat,
body.tax-news-category .news-cat {
  color: #347CBA;
  font-size: 1.2rem;
  padding: 8px 12px;
  border: 1px solid #347CBA;
  border-radius: 8px;
}
@media screen and (min-width: 1025px) {
  body.post-type-archive-news .news-cat,
  body.tax-news-category .news-cat {
    font-size: 1.6rem;
    padding: 8px 32px;
    min-width: 132px;
  }
}
body.post-type-archive-news .news-title,
body.tax-news-category .news-title {
  line-height: 2;
}

body.single-news .article-flex {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (min-width: 1025px) {
  body.single-news .article-flex {
    flex-direction: row;
    gap: 90px;
  }
}
body.single-news .date-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
body.single-news .date-cat .news-date {
  font-size: 1.4rem;
}
body.single-news .date-cat .news-cat {
  font-size: 1.2rem;
  color: #347CBA;
  padding: 8px 12px;
  border: 1px solid #347CBA;
  border-radius: 8px;
}
@media screen and (min-width: 1025px) {
  body.single-news article {
    flex-basis: min(720px, 50vw);
    max-width: 720px;
  }
}
@media screen and (min-width: 1025px) {
  body.single-news article .date-cat .news-date {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  body.single-news article .date-cat .news-cat {
    font-size: 1.4rem;
    padding: 8px 24px;
  }
}
body.single-news .article-title {
  color: #347CBA;
  font-size: clamp(24px, 6.2vw, 28px);
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  body.single-news .article-title {
    line-height: 1.69;
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1025px) {
  body.single-news .article-past {
    flex-basis: calc(100% - (min(720px, 50vw) + 90px));
    max-width: 720px;
  }
}
body.single-news .article-past h3 {
  font-size: 2rem;
  margin-bottom: 2.4rem;
}
body.single-news .article-past .article-list {
  background: #FAFAFA;
  padding: 32px 28px;
  margin-bottom: 32px;
}
body.single-news .article-past .article-item {
  padding-bottom: 24px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 32px;
}
body.single-news .article-past .news-title {
  font-size: 1.4rem;
  line-height: 2;
}
body.single-news .article-past .to-list {
  text-align: right;
  padding-right: 38px;
  position: relative;
}
body.single-news .article-past .to-list::after {
  content: "";
  display: block;
  background-image: url(../images/icon_btn_arrow.svg);
  background-size: 10px;
  background-position: center;
  background-color: #347CBA;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

body.blog .sec-ll-article-list.__activities,
body.archive.category .sec-ll-article-list.__activities {
  margin-bottom: 151px;
}
@media screen and (min-width: 1025px) {
  body.blog .sec-ll-article-list.__activities,
  body.archive.category .sec-ll-article-list.__activities {
    margin-bottom: 120px;
  }
}
body.blog .cat-name,
body.archive.category .cat-name {
  color: #347CBA;
  font-size: 1.8rem;
  margin-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  body.blog .cat-name,
  body.archive.category .cat-name {
    font-size: 2rem;
    margin-bottom: 36px;
  }
}
body.blog .article-list,
body.archive.category .article-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 431px) {
  body.blog .article-list,
  body.archive.category .article-list {
    flex-direction: row;
    gap: 64px 113px;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 431px) {
  body.blog .article-item,
  body.archive.category .article-item {
    flex-basis: calc((100% - 113px) / 2);
  }
}
@media screen and (min-width: 1025px) {
  body.blog .article-item,
  body.archive.category .article-item {
    flex-basis: calc((100% - 226px) / 3);
  }
}
body.blog .article-item .activities-thumb,
body.archive.category .article-item .activities-thumb {
  margin-bottom: 16px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  body.blog .article-item .activities-thumb,
  body.archive.category .article-item .activities-thumb {
    margin-bottom: 24px;
  }
}
body.blog .article-item .activities-thumb img,
body.archive.category .article-item .activities-thumb img {
  transition: transform 0.7s ease;
}
body.blog .article-item .cat-date,
body.archive.category .article-item .cat-date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
body.blog .article-item .activities-cat,
body.archive.category .article-item .activities-cat {
  color: #347CBA;
  font-size: 1.2rem;
  line-height: 1.7;
  padding: 4px 32px;
  border: 1px solid #347CBA;
  border-radius: 32px;
}
body.blog .article-item .activities-date,
body.archive.category .article-item .activities-date {
  color: #347CBA;
  font-size: 1.6rem;
}
body.blog .article-item .activities-title,
body.archive.category .article-item .activities-title {
  line-height: 1.7;
}
body.blog .article-item:hover,
body.archive.category .article-item:hover {
  opacity: 1;
}
body.blog .article-item:hover .activities-thumb img,
body.archive.category .article-item:hover .activities-thumb img {
  transform: scale(1.1);
}
body.blog .pagination,
body.archive.category .pagination {
  margin-bottom: 80px;
}
@media screen and (min-width: 1025px) {
  body.blog .pagination,
  body.archive.category .pagination {
    margin-bottom: 50px;
  }
}
body.blog .tag-cont .tag-title,
body.archive.category .tag-cont .tag-title {
  color: #347CBA;
  padding-left: 29px;
  padding-bottom: 17px;
  border-bottom: 1px solid #347CBA;
  margin-bottom: 24px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  body.blog .tag-cont .tag-title,
  body.archive.category .tag-cont .tag-title {
    margin-bottom: 40px;
  }
}
body.blog .tag-cont .tag-title::before,
body.archive.category .tag-cont .tag-title::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url(../images/icon_tag.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
body.blog .tag-cont .tag-list,
body.archive.category .tag-cont .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  body.blog .tag-cont .tag-list,
  body.archive.category .tag-cont .tag-list {
    margin-bottom: 56px;
  }
}
body.blog .tag-cont .tag-item,
body.archive.category .tag-cont .tag-item {
  color: #347CBA;
  font-size: 1.4rem;
  padding: 8px 16px;
  border: 1px solid #347CBA;
  border-radius: 8px;
  display: block;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
body.blog .tag-cont .tag-item.hidden,
body.archive.category .tag-cont .tag-item.hidden {
  display: none;
}
body.blog .tag-cont .tag-item a,
body.archive.category .tag-cont .tag-item a {
  color: #347CBA;
}

body.single .sec-ll-article.__activities {
  margin-bottom: 120px;
}
@media screen and (min-width: 1025px) {
  body.single .article-flex {
    display: flex;
    gap: 144px;
  }
}
body.single article {
  margin-bottom: 120px;
}
@media screen and (min-width: 1025px) {
  body.single article {
    flex-basis: min(749px, 52vw);
    max-width: 749px;
  }
}
body.single .article-thumb {
  margin-top: 48px;
}
@media screen and (min-width: 1025px) {
  body.single .tag-cont {
    flex-basis: calc(100% - (min(749px, 52vw) + 144px));
  }
}
body.single .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
body.single .tag-title {
  font-size: 2rem;
  padding-bottom: 24px;
  border-bottom: 2px solid #347CBA;
  margin-bottom: 24px;
}
body.single .tag-item {
  color: #347CBA;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid #347CBA;
  border-radius: 8px;
}
body.single .btn.__back {
  margin: 0 auto;
}

.form_wrap .form-item {
  margin-bottom: 20px;
  /*
  input[type="text"],
  input[type="tel"],
  input[type="email"] {
      @include min-pc {
          width: min(421px, 49.1%);
      }
  }
  */
}
.form_wrap .form-item p:has(.wpcf7-form-control-wrap) {
  width: 100%;
}
.form_wrap .form-item .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.form_wrap .form-item input::-moz-placeholder, .form_wrap .form-item textarea::-moz-placeholder {
  color: #C7C7C7;
  font-size: 1.6rem;
}
.form_wrap .form-item input::placeholder,
.form_wrap .form-item textarea::placeholder {
  color: #C7C7C7;
  font-size: 1.6rem;
}
.form_wrap .form-item input[type=text],
.form_wrap .form-item input[type=tel],
.form_wrap .form-item input[type=email],
.form_wrap .form-item textarea {
  display: block;
  width: 100%;
  border: 1px solid #444;
  background: #FBFBFB;
  padding: 18px 22px;
  border-radius: 8px;
}
.form_wrap .form-item textarea {
  width: 100%;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .form_wrap .radio-cont {
    display: flex;
    gap: 56px;
  }
}
.form_wrap .radio-cont .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 0;
}
.form_wrap .radio-cont .wpcf7-list-item.first {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .form_wrap .radio-cont .wpcf7-list-item.first {
    margin-bottom: 0;
  }
}
.form_wrap .acceptance-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
@media screen and (min-width: 1025px) {
  .form_wrap .acceptance-item {
    margin-bottom: 56px;
  }
}
.form_wrap .acceptance-item .acceptance-text {
  line-height: 1.5;
}
.form_wrap .acceptance-item a {
  display: inline;
  color: #347CBA;
  text-decoration: underline;
}
.form_wrap input[type=radio],
.form_wrap input[type=checkbox] {
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #D9D9D9;
  position: relative;
}
.form_wrap input[type=radio] {
  border-radius: 50%;
}
.form_wrap input[type=radio]:checked,
.form_wrap input[type=checkbox]:checked {
  border: 2px solid var(--main-color);
}
.form_wrap input[type=radio]:checked::after,
.form_wrap input[type=checkbox]:checked::after {
  content: "";
  display: block;
  width: 22px;
  height: 10px;
  border-bottom: 2px solid var(--main-color);
  border-left: 2px solid var(--main-color);
  position: absolute;
  top: -4px;
  left: 0;
  transform: rotate(-48deg);
}
.form_wrap p:has(.btn) {
  text-align: center;
}
.form_wrap p {
  margin: 0 0 10px;
}
.form_wrap .privacy_content {
  border: solid 2px #222;
  padding: 20px;
  height: 200px;
  overflow: auto;
  margin: 30px 0;
}
.form_wrap .privacy_content p {
  line-height: 1.6;
  font-size: var(--txt-sm);
}
.form_wrap .privacy_check_wrap {
  text-align: center;
  margin: 20px 0;
}
.form_wrap .error {
  display: block;
  margin: 0.8em 0;
  font-weight: bold;
}
.form_wrap .mw_wp_form_complete h3 {
  text-align: center;
  margin: 0 0 2em;
}
.form_wrap .mw_wp_form_complete p {
  line-height: 1.75;
}

body.page-id-8571 .sec-ll-contact-confirm {
  margin-bottom: 120px;
}
body.page-id-8571 .form-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  body.page-id-8571 .form-item {
    flex-direction: row;
    gap: 80px;
  }
}
body.page-id-8571 .form-item p:not(.form-title) {
  font-weight: normal;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  body.page-id-8571 .form-item p:not(.form-title) {
    flex-basis: calc(100% - (24% + 80px));
  }
}
body.page-id-8571 .p:not(.form-title) {
  width: 100%;
}
body.page-id-8571 .acceptance-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
@media screen and (min-width: 1025px) {
  body.page-id-8571 .acceptance-item {
    margin-bottom: 56px;
    padding-left: calc(max(302px, 24%) + 80px);
  }
}
body.page-id-8571 .acceptance-item p {
  font-weight: normal;
}
body.page-id-8571 .acceptance-item a {
  display: inline;
  color: #347CBA;
  text-decoration: underline;
}
body.page-id-8571 p:has(.btn) {
  text-align: center;
}

body.page-id-8573 .sec-ll-contact-thanks {
  margin-bottom: 120px;
}

main.ll02 .ll02-cont {
  line-height: 220%;
  letter-spacing: 0.1em;
  font-weight: normal;
  margin-bottom: 64px;
}
main.ll02 .ll02-cont .text {
  margin-bottom: 40px;
}
main.ll02 .ll02-cont .dot {
  list-style-position: inside;
  padding-left: 20px;
}
main.ll02 .ll02-cont .dot li {
  list-style-type: unset;
}
main.ll02 .ll02-cont .ttl {
  font-weight: bold;
  margin-bottom: 24px;
  font-size: 1.6rem;
}
@media screen and (min-width: 835px) {
  main.ll02 .ll02-cont .ttl {
    font-size: 2rem;
  }
}
main.ll02 .ll02-cont .info {
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (min-width: 835px) {
  main.ll02 .ll02-cont .info {
    font-size: 1.4rem;
  }
}
main.ll02 .ll02-cont .info.right {
  text-align: right;
}
main.ll02 .ll02-cont .info.left {
  margin-bottom: 16px;
}
main.ll02 .ll02-cont .info .pc-none {
  display: block;
}
@media screen and (min-width: 835px) {
  main.ll02 .ll02-cont .info .pc-none {
    display: none;
  }
}
main.ll02 .bottom {
  margin-bottom: 40px;
}
main.ll02 .link {
  display: inline-block;
  color: #347CBA;
  text-decoration: underline;
}
main.ll02 .link.block {
  display: block;
}
main.ll02 .shared-content {
  line-height: 220%;
  letter-spacing: 0.1em;
  font-weight: normal;
  margin-bottom: 64px;
}
@media screen and (min-width: 835px) {
  main.ll02 .shared-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-start;
  }
}
main.ll02 .shared-content .shared-img {
  text-align: center;
  margin: 0 auto 48px;
  width: 170px;
  height: 170px;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  main.ll02 .shared-content .shared-img {
    margin-bottom: 0;
    width: min(50%, 200px);
    height: auto;
  }
}
main.ll02 .shared-content .shared-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 835px) {
  main.ll02 .shared-content .shared-text {
    width: calc(100% - min(50%, 200px) - 80px);
  }
}
main.ll02 .shared-content .shared-text a {
  font-weight: bold;
  text-decoration: underline;
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
}
@media screen and (min-width: 835px) {
  main.ll02 .shared-content .shared-text a {
    margin-top: 28px;
  }
}
main.ll02 .shared-content .shared-text a::after {
  content: "";
  background-image: url("../images/icon_external.svg");
  background-size: contain;
  background-position: bottom;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  position: relative;
}

@media screen and (min-width: 835px) {
  .section-heading {
    margin-bottom: 56px;
  }
}
.section-heading .title-mb {
  margin-bottom: 16px;
}
@media screen and (min-width: 835px) {
  .section-heading .title-mb {
    margin-bottom: 0;
  }
}
.section-heading .section-lead {
  line-height: 2.1;
  margin-bottom: 40px;
}
@media screen and (min-width: 835px) {
  .section-heading .section-lead {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
.section-heading .section-lead.center {
  text-align: center;
}

.sec-title {
  text-align: center;
  margin: 0 0 2em;
}
.sec-title .title-en {
  font-size: clamp(12px, 4.3vw, 16px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  display: block;
  margin: 0.2em;
}
.sec-title .title-ja {
  font-size: clamp(16px, 5.3vw, 30px);
  display: block;
}

.btn {
  font-size: 14px;
  line-height: 1;
  color: #FFF;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1em;
  background: var(--main-color);
  border-radius: 32px;
  position: relative;
  min-width: 200px;
  display: inline-block;
}
@media screen and (min-width: 835px) {
  .btn {
    font-size: 16px;
  }
}
.btn.__back {
  padding: 16px 56px 16px 82px;
}
.btn.__back::after {
  right: unset;
  left: 24px;
  transform: translateY(-50%) rotate(180deg);
}

.breadcrumbs-cont {
  margin-bottom: 32px;
}
@media screen and (min-width: 835px) {
  .breadcrumbs-cont {
    margin-bottom: 48px;
  }
}
.breadcrumbs-cont .breadcrumbs {
  display: flex;
  gap: 0.5em;
}
.breadcrumbs-cont a.post, .breadcrumbs-cont span {
  font-size: 1.4rem;
  font-weight: normal;
}
.breadcrumbs-cont span.current-item {
  color: #347CBA;
  font-weight: normal;
}

.shared-title {
  margin: 32px 0 40px 0;
}
@media screen and (min-width: 835px) {
  .shared-title {
    margin: 48px 0 64px 0;
  }
}
.shared-title .title-ja {
  font-size: 1.4rem;
  display: block;
}
@media screen and (min-width: 835px) {
  .shared-title .title-ja {
    font-size: 2rem;
  }
}
.shared-title .title-en {
  font-size: clamp(4.8rem, 12.3vw, 6.4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  background: linear-gradient(to right, #68CBD4, #388CE6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.sec-title-cont {
  margin-top: 3.2rem;
  margin-bottom: 5.6rem;
  font-size: clamp(3.2rem, 8.2vw, 4.8rem);
  color: #347CBA;
  font-weight: bold;
}

.sub-ttl-cont {
  font-size: clamp(2rem, 5.1vw, 2.8rem);
  margin: 0;
  margin-bottom: clamp(3.2rem, 4vw + 1rem, 4rem);
  color: #347CBA;
  border-bottom: solid 1px #D9D9D9;
  letter-spacing: 0.15em;
  font-weight: bold;
}
.sub-ttl-cont .blue {
  font-size: 2rem;
  display: block;
  margin-bottom: 1.6rem;
  position: relative;
  line-height: 1.35;
}
.sub-ttl-cont .blue::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 65px;
  border-bottom: 1px solid #347CBA;
  z-index: 3;
}
@media screen and (min-width: 835px) {
  .sub-ttl-cont .blue {
    font-size: 2.4rem;
  }
  .sub-ttl-cont .blue::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -17px;
    width: 200px;
    border-bottom: 1px solid #347CBA;
    z-index: 3;
  }
  .sub-ttl-cont .blue .only-sp {
    display: none;
  }
}
.sub-ttl-cont .small {
  display: inline-block;
  color: #222222;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 8px;
}
@media screen and (min-width: 835px) {
  .sub-ttl-cont .small {
    display: inline;
    margin-left: 16px;
    font-size: 1.6rem;
  }
}

.sec-ll-article .activities-title {
  font-size: clamp(24px, 2.8vw, 40px);
  color: #347CBA;
  line-height: 1.69;
  padding-bottom: 24px;
  border-bottom: 3px solid #347CBA;
  margin-bottom: 24px;
}
.sec-ll-article article .news-title {
  color: #347CBA;
  font-size: clamp(24px, 6.2vw, 28px);
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .sec-ll-article article .news-title {
    line-height: 1.69;
    margin-bottom: 48px;
  }
}
.sec-ll-article article .article-thumb {
  margin-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  .sec-ll-article article .article-thumb {
    margin-bottom: 48px;
  }
}
.sec-ll-article article .article-thumb img {
  width: 100%;
}
.sec-ll-article article h2 {
  color: #347CBA;
  font-size: clamp(16px, 4.1vw, 24px);
  line-height: 1.9;
  padding-left: 20px;
  margin-bottom: 16px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .sec-ll-article article h2 {
    margin-bottom: 24px;
  }
}
.sec-ll-article article h2::before {
  content: "";
  display: block;
  width: 4px;
  height: 80%;
  background: #347CBA;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sec-ll-article article h3 {
  color: #347CBA;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  line-height: 2.2;
}
@media screen and (min-width: 1025px) {
  .sec-ll-article article h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}
.sec-ll-article article p {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2.2;
  margin-bottom: 32px;
}
.sec-ll-article article p:has(+ .table-cont) {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.9;
  margin-bottom: 12px;
}
.sec-ll-article article img {
  margin-bottom: 32px;
}
.sec-ll-article article .table-cont {
  overflow-x: scroll;
  max-width: 100%;
  margin-bottom: 32px;
}
.sec-ll-article article table {
  width: 720px;
  border-collapse: collapse;
}
@media screen and (min-width: 1025px) {
  .sec-ll-article article table {
    width: 100%;
  }
}
.sec-ll-article article table th, .sec-ll-article article table td {
  font-weight: normal;
  line-height: 1.7;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 122px;
  -moz-text-align-last: left;
       text-align-last: left;
  padding: 24px;
  border: 1px solid #d9d9d9;
}
.sec-ll-article article figure.wp-block-table.__01 table tr:first-child td {
  font-weight: bold;
  background: #F0F7FD;
}
.sec-ll-article article figure.wp-block-table.__01 table tr:nth-child(2) td,
.sec-ll-article article figure.wp-block-table.__01 table tr:last-child td {
  background: #fff;
}
.sec-ll-article article figure.wp-block-table.__01 table tr:nth-child(2) td:first-child,
.sec-ll-article article figure.wp-block-table.__01 table tr:last-child td:first-child {
  font-weight: bold;
  background: #F0F7FD;
}
.sec-ll-article article figure.wp-block-table.__02 table tr td:first-child {
  font-weight: bold;
  background: #F0F7FD;
}
.sec-ll-article article figure.wp-block-table.__03 table tr:first-child th, .sec-ll-article article figure.wp-block-table.__03 table tr:first-child td {
  font-weight: bold;
  background: #F0F7FD;
}
.sec-ll-article article blockquote {
  background: #F0F7FD;
  padding: 68px 24px 58px;
  margin-bottom: 32px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .sec-ll-article article blockquote {
    padding: 60px 48px 32px;
  }
}
.sec-ll-article article blockquote::before, .sec-ll-article article blockquote::after {
  display: block;
  font-size: 11.2rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #347CBA;
  position: absolute;
  z-index: 0;
}
.sec-ll-article article blockquote::before {
  content: "“";
  top: 10px;
  left: 16px;
}
.sec-ll-article article blockquote::after {
  content: "”";
  bottom: -57px;
  right: 16px;
}
.sec-ll-article article blockquote p {
  margin-bottom: 12px;
}
@media screen and (min-width: 1025px) {
  .sec-ll-article article blockquote p {
    margin-bottom: 20px;
  }
}
.sec-ll-article article cite {
  font-size: 1.4rem;
  line-height: 2.2;
  color: #347CBA;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .sec-ll-article article cite {
    line-height: 1;
  }
}
.sec-ll-article article cite .pc-none {
  display: none;
}
.sec-ll-article article ul, .sec-ll-article article ol {
  background: #F0F7FD;
  padding: 32px 24px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  .sec-ll-article article ul, .sec-ll-article article ol {
    padding: 40px 32px;
  }
}
.sec-ll-article article ul li, .sec-ll-article article ol li {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2.2;
  margin-left: 1em;
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .sec-ll-article article ul li, .sec-ll-article article ol li {
    margin-bottom: 24px;
  }
}
.sec-ll-article article ul li:last-child, .sec-ll-article article ol li:last-child {
  margin-bottom: 0;
}
.sec-ll-article article ul > li {
  list-style: disc outside;
}
.sec-ll-article article ol > li {
  list-style: decimal outside;
}
.sec-ll-article article a {
  font-size: 1.4rem;
  color: #347CBA;
  text-decoration: underline;
  margin-bottom: 32px;
}

.shared-link {
  text-align: center;
  margin-bottom: clamp(4.8rem, 12.3vw, 6.4rem);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 835px) {
  .shared-link .flex {
    display: flex;
  }
}
.shared-link .flex li {
  margin-bottom: 16px;
  border: 1px solid #347CBA;
  font-size: 1.6rem;
  position: relative;
}
@media screen and (min-width: 835px) {
  .shared-link .flex li {
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    border: 1px solid #347CBA;
  }
  .shared-link .flex li:not(:last-child) {
    border-right: none;
  }
}
.shared-link .flex li::after {
  content: "";
  background-image: url("../images/icon_nav_arrow.svg");
  background-size: contain;
  background-position: bottom;
  width: 14px;
  height: 9px;
  margin-left: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 835px) {
  .shared-link .flex li::after {
    right: 32px;
  }
}
.shared-link .flex li a {
  color: #347CBA;
  padding: 17px;
}

.tag-more,
.reduction-more {
  text-align: center;
  position: relative;
  display: block;
}
.tag-more::after,
.reduction-more::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border: 1px dashed #347CBA;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
.tag-more.hide,
.reduction-more.hide {
  display: none;
}
.tag-more button,
.reduction-more button {
  font-weight: bold;
  color: #347CBA;
  padding: 0 20px;
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .tag-more button,
  .reduction-more button {
    padding: 0 28px;
  }
}

.pagenavi {
  margin: 48px 0 80px;
}
@media screen and (min-width: 1025px) {
  .pagenavi {
    margin: 98px 0 48px;
  }
}
.pagenavi .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.pagenavi .wp-pagenavi span:not(.extend):not(.pages),
.pagenavi .wp-pagenavi a:not(.previouspostslink):not(.nextpostslink):not(.first):not(.last) {
  color: #347CBA;
  width: 34px;
  height: 38px;
  border: 1px solid #347CBA;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagenavi .wp-pagenavi span.current {
  color: #FFF !important;
  background: #347CBA;
}
.pagenavi .wp-pagenavi span.pages,
.pagenavi .wp-pagenavi a.first,
.pagenavi .wp-pagenavi a.last {
  display: none;
}
.pagenavi .wp-pagenavi span.extend {
  border: none;
  color: #347CBA;
  transform: translateY(-5px);
}
.pagenavi .wp-pagenavi a.previouspostslink,
.pagenavi .wp-pagenavi a.nextpostslink {
  border: none;
  background: url("../images/icon_pagenavi_arrow.svg") no-repeat center;
  background-size: cover;
  text-indent: -9999px;
  display: inline-block;
  width: 13px;
  height: 24px;
}
.pagenavi .wp-pagenavi a.previouspostslink {
  transform: rotate(180deg);
  margin-right: 14px;
}
.pagenavi .wp-pagenavi a.nextpostslink {
  margin-left: 14px;
}

.form-progress {
  margin-bottom: 40px;
  display: flex;
}
@media screen and (min-width: 1025px) {
  .form-progress {
    margin-bottom: 32px;
  }
}
.form-progress li {
  color: #347CBA;
  width: calc(33.3333333333% + 18px);
  padding: 8px 0;
  text-align: center;
  margin-left: -18px;
  position: relative;
}
@media screen and (min-width: 835px) {
  .form-progress li {
    padding: 18px 0;
    width: calc(33.3333333333% + 32px);
    margin-left: -32px;
  }
}
.form-progress li:first-child {
  margin-left: 0;
  z-index: 2;
}
.form-progress li:nth-child(2) {
  z-index: 1;
}
.form-progress li:last-child {
  z-index: 0;
}
.form-progress li::before, .form-progress li::after {
  content: "";
  display: block;
  -webkit-clip-path: polygon(0% 0%, 85% 0, 100% 50%, 85% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 85% 0, 100% 50%, 85% 100%, 0% 100%);
  position: absolute;
}
@media screen and (min-width: 835px) {
  .form-progress li::before, .form-progress li::after {
    -webkit-clip-path: polygon(0% 0%, 93% 0, 100% 50%, 93% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 93% 0, 100% 50%, 93% 100%, 0% 100%);
  }
}
.form-progress li::before {
  width: 100%;
  height: 100%;
  background: #FFF;
  top: 0;
  left: 0;
  z-index: -1;
}
.form-progress li::after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: #347CBA;
  top: -1px;
  left: -1px;
  z-index: -2;
}
.form-progress li.current {
  color: #FFF;
}
.form-progress li.current::before {
  content: none;
}

.form-desc {
  line-height: 2.2;
  font-weight: normal;
  padding-bottom: 24px;
  border-bottom: 1px solid #C7C7C7;
  margin-bottom: 24px;
}
@media screen and (min-width: 1025px) {
  .form-desc {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}

.form-title {
  font-size: var(--txt-title-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1025px) {
  .form-title {
    font-size: 1.8rem;
    flex-basis: 24.4%;
    min-width: 302px;
  }
}
.form-title .form-required,
.form-title .form-nonRequired {
  font-size: var(--txt-sm);
  padding: 8px;
}
.form-title .form-required {
  color: #FFF;
  background: var(--red-color);
  border-radius: 200px;
  min-width: 45px;
}
.form-title .form-nonRequired {
  color: #347CBA;
  background: #FFF;
  border: 1px solid #347CBA;
}

.horizontal-item {
  display: block;
}
@media screen and (min-width: 835px) {
  .horizontal-item {
    display: inline-block;
  }
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}
@media screen and (min-width: 835px) {
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 10px !important;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7 form .wpcf7-response-output {
  border: 1px solid #FFF !important;
}

.slide-img {
  display: flex !important;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-bottom: 24px;
  overflow-x: auto;
}
@media screen and (min-width: 431px) {
  .slide-img {
    margin: 0 auto 24px;
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .slide-img {
    overflow-x: auto;
  }
}
@media screen and (min-width: 1025px) {
  .slide-img .img-cont {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 431px) {
  .slide-img .img-cont {
    width: auto;
    max-width: 413px;
    flex-shrink: 0;
  }
}/*# sourceMappingURL=style.css.map */