@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');


/*=============================================
 * reset 
 *=============================================*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  border: 0;
}

img {
  border: 0;
  transform: translateZ(0);
  -moz-transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

img,
input {
  vertical-align: middle;
}

html h1,
html h2,
html h3,
html h4,
html h5,
html h6,
html address {
  margin: 0;
  padding: 0;
  border: 0;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

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

hr {
  margin: 0;
  padding: 0;
}

iframe {
  margin: 0;
  padding: 0;
  border: 0;
}

form,
fieldset,
input,
button,
select,
optgroup,
option,
textarea,
label,
legend {
  margin: 0;
  padding: 0;
  outline: none;
}

span,
em,
strong,
dfn,
code,
samp,
kbd,
var,
cite,
abbr,
acronym,
q,
br,
ins,
del,
a,
img,
object {
  margin: 0;
  padding: 0;
  border: 0;
}

/* ===================
    common
===================== */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1b2c3a;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #fff;
  line-height: 1.8;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

/*
==================================*/
/* -- inner -- */
.inner {
  width: 68.75vw;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding: 65px 1% 80px;
}

@media screen and (max-width: 1080px) {
  .inner {
    width: 88vw;
  }
}

@media screen and (max-width: 991px) {
  .inner {
    width: 84.5333333333vw;
    padding: 7% 0;
  }
}

@media screen and (max-width: 767px) {}

/**/
img {
  width: 100%;
  height: auto;
}

a,
a img {
  transition: all 0.3s;
  text-decoration: none;
  color: #231815;
}

li {
  list-style: none;
}

a:hover {
  text-decoration: none;
}


.pc {
  display: block;
}

.tablet {
  display: none;
}

.sp {
  display: none;
}

.modal-movie__inner {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.modal-movie video {
  width: 100%;
}

.modal-movie video:hover {
  cursor: pointer;
}

.modal-close-btn {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  margin-left: auto;
}

.modal-close-btn>span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
}

.modal-close-btn>span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close-btn>span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1025px) {
  .tablet {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .tablet {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* Header
==================================*/
.nav-icon {
  display: none;
  width: 30px;
  height: 20px;
  background-color: #00b2e1;
  border: 1px solid #00b2e1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  padding: 19px 14px;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 100;
}

.nav-icon .nav-icon_inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon span:nth-child(2) {
  top: 9px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon span:nth-child(3) {
  bottom: 0;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon:hover span:nth-child(3) {
  width: 60%;
}

.nav-icon:hover span:nth-child(2) {
  width: 80%;
}

.navbar-close {
  display: none;
}

header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  justify-content: center;
  border-bottom: 1px solid #DEDEDE;
}

header .logo {
  flex: auto;
}

header .logo a {
  display: inline-block;
  width: 395px;
}

.nav02 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.link_box {
  text-align: center;
}

/* .nav02,
header nav {
   display: flex;
   align-items: center;
   justify-content: center;
} */
.nav02 a,
header nav a {
  color: #023F88;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  padding: 17px 0;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}

header nav a::after {
  position: absolute;
  bottom: 10px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #023F88;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}

header nav a+a {
  margin-left: 4rem;
}

.nav02 a+a {
  margin-left: 6rem;
}

.nav02 a:before {
  position: absolute;
  top: 50%;
  left: 106%;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-top: #023F88 solid 1px;
  border-right: #023F88 solid 1px;
  transform: rotate(135deg);
}

header nav a.active::after,
header nav a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.nav02 {
  width: 100%;
  position: relative;
}

.nav02::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 1px;
  background-color: #DEDEDE;
  min-width: 1600px;
}

@media screen and (max-width: 1360px) {
  header {
    padding: 0;
  }

  header .logo a {
    width: 305px;
  }

  header nav a+a {
    margin-left: 3rem;
  }
}

@media screen and (max-width: 1160px) {
  header {
    padding: 0px;
  }

  header .logo a {
    width: 200px;
  }

  header nav a {
    font-size: 14px;
  }

  header nav a+a {
    margin-left: 10px;
  }

  header nav .nav-btn {
    width: 175px;
  }
}

@media screen and (max-width: 991px) {
  .nav-icon {
    display: block;
  }

  .navbar-close {
    display: block;
    width: 60px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
  }

  .navbar-close.visible {
    opacity: 1;
    visibility: visible;
  }

  header {
    display: block;
    /* height: 80px; */
    background-color: transparent;
    border-bottom: none;
  }

  header nav {
    display: block;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    overflow-x: auto;
    box-sizing: border-box;
    text-align: center;
    padding: 80px 20px;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }

  header nav.visible {
    opacity: 1;
    visibility: visible;
  }

  header nav a {
    display: block;
    font-size: 2.5rem;
    letter-spacing: 0;
    font-weight: 700;
  }

  header nav a+a {
    margin-left: 0;
  }

  header nav .nav-btn {
    width: 300px;
    font-size: 22px;
    margin: 20px auto 0;
    padding: 15px 0;
  }

  header nav .nav-btn:before {
    background-size: 30px 30px;
  }

  .nav02 {
    flex-wrap: wrap;
  }

  .nav02 a {
    width: 25%;
    text-align: left;
  }

  .nav02::after {
    min-width: unset;
  }

  .nav02 a:before {
    transform: rotate(45deg);
  }

  .nav02 a+a {
    margin-left: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .nav-icon {
    padding: 14px 9px;
    top: 5px;
    right: 5px;
  }

  .navbar-close {
    width: 50px;
    height: 50px;
    top: 5px;
    right: 5px;
  }

  header {
    display: block;
    height: 0;
    padding: 0;
  }

  header .logo {
    width: 200px;
  }

  header .logo a {
    width: auto;
  }

  header nav {
    padding: 55px 20px 120px;
  }

  header nav.visible {
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    height: 100%;
  }

  header nav a {
    letter-spacing: 0;
    padding: 10px 0;
    font-size: 2.1rem;
  }

  header nav a+a {
    margin-left: 0;
  }

  header nav .nav-btn {
    width: 250px;
    padding: 10px 0;
  }

  .nav02 {
    flex-wrap: wrap;
    padding-top: 14px;
  }

  .nav02 a {
    width: 69%;
    padding: 9px 0;
  }

  .nav02 a+a {
    margin-left: 0rem;
  }

  .nav02 a:before {
    margin-top: -4px;
    transform: rotate(45deg);
  }

  .link_box {
    margin-bottom: 15px;
  }
}

/* Footer
==================================*/
footer {
  background-color: #164083;
  color: #fff;
  font-size: 1.8rem;
  line-height: 24px;
  position: relative;
}

.footer .inner {
  width: 100%;
  max-width: calc((1344.7 / 1424) * 1600px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 65px 15px;
}

.footer-logo {
  width: 200px;
}

.footer-link {
  color: #fff;
  display: block;
}

.footer-banner__group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 15px;
}

.footer-banner__wrap {
  width: 225px;
  margin-left: min(25px, calc((25 / 1600) * 100vw));
}

.footer-banner__wrap:first-child {
  margin: 0;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

footer nav a {
  color: #fff;
  font-size: 1.07em;
  font-weight: 500;
  display: inline-block;
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  footer {
    font-size: 1.2rem;
  }

  .footer-logo {
    width: 180px;
  }

  .footer-banner__wrap {
    width: 205px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    display: block;
    font-size: 1rem;
    line-height: 20px;
    text-align: center;
  }

  .footer .inner {
    display: block;
    padding: 30px 15px;
  }

  .footer-logo {
    width: 160px;
    margin: auto;
  }

  .footer-link {
    margin: 2em 0;
  }

  .footer-banner__group {
    justify-content: center;
    margin: 0;
  }

  .footer-banner__wrap {
    width: 100%;
    max-width: 185px;
  }

  footer nav {
    justify-content: center;
    font-size: 1.3rem;
  }
}

/* flex
==================================*/
.flex {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {}

/* Main
==================================*/
main {
  overflow: hidden;
  padding-top: 123px;
}

.page-id-13 main {
  padding-top: 120px;
}

.home main {
  padding-top: 60px;
}

@media screen and (max-width: 991px) {

  .home main,
  .page-id-13 main,
  main {
    padding-top: 0px;
  }
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 0px;
  }
}

/* パンくず */
.breadcrumb {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.breadcrumb ul {
  position: absolute;
  top: 1.5rem;
  left: 2%;
  display: flex;
  display: -webkit-flex;
  justify-content: start;
  flex-wrap: wrap;
}

.breadcrumb li {
  position: relative;
  margin-right: 20px;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
}

.breadcrumb li+li:before {
  position: absolute;
  top: 50%;
  left: -14px;
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-top: #ababab solid 1px;
  border-right: #ababab solid 1px;
  transform: rotate(45deg);
}

.breadcrumb li br {
  display: none;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    margin: -11% auto 11%;
    width: 90%;
  }

  .breadcrumb li {
    width: auto;
    font-size: 10px;
  }
}


/* top */
/* .home {
    background-color: #164083;
} */
.top_page {
  background-image: url('../img/main/mainvisual02.jpg'), url('../img/main/mainvisual01.jpg');
  background-repeat: repeat-x, no-repeat;
  background-size: contain, cover;
  background-position: bottom, top;
  /* 	height: 85vh; */
}

.top_page .inner {
  padding: 180px 0 190px;
  position: relative;
}

.top_img .h1 {
  font-size: 5.5rem;
  text-align: center;
  /* line-height: 14rem; */
  line-height: 1.3;
  min-height: 5em;
  color: #023F88;
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}

.top_img .h1 .h1_span {
  font-size: 11rem;
}

.h1_span .color {
  color: #52BBED;
}

.btn_box {
  justify-content: center;
  align-items: baseline;
  margin-top: 50px;
}

.btn a {
  padding: 1.5vw 4.5vw;
  background-color: #EEF8FD;
  color: #023F88;
  border-radius: 1.5vw;
  font-size: 3.7rem;
  margin: 0 1.5vw;
  box-shadow: 10px 10px 0px 0 rgb(2 63 136);
}

.btn.soon a {
  position: relative;
  pointer-events: none;
  color: #90b2dc;
}

.btn.soon a::before {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 1.5vw;
}

.btn.soon a::after {
  content: 'Coming Soon';
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 3rem;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.flot_img .img01,
.flot_img .img02,
.flot_img .img03,
.flot_img .img04 {
  position: absolute;
}

.flot_img .img01 {
  top: 66%;
  left: -7%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 16.77vw;
  max-width: 237px;
}

.flot_img .img02 {
  top: 69%;
  right: -32%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 17.6vw;
  max-width: 249px;
}

.flot_img .img03 {
  top: 19%;
  left: 4%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 6.23vw;
  max-width: 88px;
}

.flot_img .img04 {
  top: 36%;
  right: -9%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 6.27vw;
  max-width: 89px;
}

.flot_img .img01 img {
  -webkit-animation: kata 1.6s infinite normal;
  animation: kata 1.6s infinite normal;
}

.flot_img .img02 img {
  -webkit-animation: kata 1s infinite normal;
  animation: kata 1.6s infinite normal;
}

/* .flot_img .img03 img{
   -webkit-animation: rota 1.3s infinite alternate ease-in-out;
   animation: rota 1.3s infinite alternate ease-in-out;
   transform:rotate(-15deg);
} */


.right_btn {
  position: absolute;
  top: 36px;
  right: 0;
}

.right_btn a {
  font-size: 2rem;
  font-weight: 500;
  background-color: #52bbed;
  color: #fff;
  padding: 18px 22px;
  border-radius: 5px;
  transition: .3s;
  border: 1px solid #52bbed;
}

.right_btn a:hover {
  background-color: #fff;
  color: #52bbed;
}

@media screen and (max-width: 1295px) {
  .top_img .h1 {
    font-size: 4.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .top_page {
    background-position: bottom;
    height: auto;
  }

  .flot_img .img03 {
    width: 15vw;
    max-width: 130px;
    left: 1%;
  }

  .flot_img .img04 {
    width: 14vw;
    max-width: 130px;
    right: -18%;
  }
}

@media screen and (max-width: 991px) {
  .btn a {
    font-size: 3.1rem;
    padding: 3vw 5vw;
  }

  .flot_img .img01 {
    top: 70%;
    left: 5%;
    width: 19vw;
  }

  .flot_img .img02 {
    top: 73%;
    right: -20%;
    width: 20vw;
  }

  .flot_img .img03 {
    width: 15vw;
    max-width: 110px;
    left: 8%;
  }

  .flot_img .img04 {
    width: 14vw;
    max-width: 110px;
  }

  .top_img .h1 {
    font-size: 3.9rem;
    /* line-height: 13rem; */
  }

  .top_img .h1 .h1_span {
    /* line-height: 5.7rem; */
    display: block;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .page-id-2.page .top_img .h1 .h1_span {
    margin-top: -23px;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .page .top_img .h1 .h1_span {
    margin-top: 0px;
  }

  .h1_span .color {
    display: block;
  }

  .btn.soon a::after {
    font-size: 2.4rem;
  }

  .btn_box {
    margin-top: 150px;
  }
}

@media screen and (max-width: 767px) {
  .top_img .h1 {
    font-size: 2.7rem;
    line-height: 1.6;
  }

  .top_img .h1 .h1_span {
    font-size: 5rem;
    display: block;
    line-height: 1;
    letter-spacing: 0.5rem;
  }

  .btn a {
    padding: 2.3vw 6vw;
    font-size: 1.9rem;
    box-shadow: 5px 5px 0px 0 rgb(2 63 136)
  }

  .top_page .inner {
    padding: 31vw 0%;
  }

  .flot_img .img01 {
    top: 82%;
    left: 4%;
  }

  .flot_img .img02 {
    top: 86%;
    right: -18%;
  }

  .flot_img .img03 {
    width: 18vw;
    top: 13%;
  }

  .flot_img .img04 {
    top: 20%;
    right: -16%;
    width: 14vw;
  }

  .btn.soon a::after {
    font-size: 1.3rem;
  }

  .btn_box {
    top: 18px;
    right: auto;
    left: 0;
    margin-top: 60px;
  }

  .right_btn {
    top: 70px;
    transform: translatex(-24%);
  }

  .right_btn a {
    font-size: 1.3rem;
    padding: 5px 15px;
  }
}

/* 各ページ */
.kotei_page {
  background-image: url('../img/recognize/mainvisual_left.png'), url('../img/recognize/mainvisual_right.png'), linear-gradient(to top, #f5cfad 0, #f5cfad 59px, #fffffb 59px, #fffffb 100%);
  background-repeat: no-repeat;
  background-position: bottom left, top right;
  background-size: auto 100%;
}

.page-id-381.kotei_page {
  background-image: url('../img/what_is_it/top.jpg');
}

.kotei_page .top_img .h1 .h1_span {
  font-size: 15rem;
}

.page-id-116 .kotei_page .top_img .h1 .h1_span {
  font-size: min(9rem, 5.625vw);
  line-height: 2.4;
}

.kotei_page .inner {
  /* padding: 145px 1%; */
  padding: 80px 1% 100px;
  position: relative;
}

.kotei_page .flot_img .img01 {
  top: 70%;
  max-width: 205px;
}

.kotei_page .flot_img .img02 {
  top: 62%;
  right: -28%;
  max-width: 215px;
}

.watch_movie .title::before {
  content: '';
  position: absolute;
  top: 72%;
  left: 81%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 11.77vw;
  height: 20vw;
  max-width: 200px;
  background-image: url(../img/chara/girl03.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.watch_movie .page_news .title::before {
  display: none;
}

.title {
  text-align: center;
  padding: 45px 0;
  position: relative;
}

.title .h2 {
  font-size: 6.2rem;
  margin-top: 10px;
}

.title .fiki {
  font-size: 4rem;
  background-color: #E95550;
  color: #fff;
  padding: 0 12rem;
  border-radius: 5rem;
  display: inline-block;
  position: relative;
  line-height: 1.65;
}

.page-id-116 .title .fiki {
  background-color: #52bbed;
}

.title .fiki::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 18px solid transparent;
  border-top: 18px solid #E95550;
}

.page-id-116 .title .fiki::before {
  border-top-color: #52bbed;
}

.in_watch {
  background-color: #FFE56F;
}

.in_watch .inner {
  padding: 110px 1%;
}

.in_watch .flex {
  justify-content: center;
}

.flex .flex_item {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 8%;
  border-radius: 2vw;
  overflow: hidden;
  background-color: #fff;
  isolation: isolate;
}

.flex .flex_item:nth-child(2n + 2) {
  margin-right: 0;
}

.flex .flex_item .txt {
  text-align: center;
  font-size: 2.82rem;
  padding: 4.847%;
  line-height: 1.3;
  height: 80px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.flex .flex_item .txt::before {
  content: '';
  height: 5px;
  width: 60%;
  background-color: #E95550;
  position: absolute;
  bottom: 0;
}

.flex .flex_item .txt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.flex .flex_item:nth-child(2) .txt::before {
  background-color: #C2D85B;
}

.flex .flex_item:nth-child(3) .txt::before {
  background-color: #82CBD1;
}

.watch_explanation {
  margin-bottom: 70px;
}

.quiz .title .fiki,
.watch_explanation .title .fiki {
  background-color: #52BBED;
}

.quiz .title .fiki::before,
.watch_explanation .title .fiki::before {
  border-top: 12px solid #52BBED;
}

.bg_img01,
.bg_img02,
.bg_img03,
.bg_img04 {
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.bg_img01 {
  top: 14%;
  left: -11%;
  width: 12vw;
  max-width: 110px;
}

.bg_img02 {
  top: 67%;
  left: 113%;
  width: 14vw;
  max-width: 220px;
}

.bg_img03 {
  top: 63%;
  left: -16%;
  width: 16vw;
  max-width: 220px;
}

.bg_img04 {
  top: 28%;
  left: 115%;
  width: 16vw;
  max-width: 220px;
}

.watch_explanation .title::before {
  content: '';
  position: absolute;
  top: 72%;
  left: 18%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 13.77vw;
  height: 22vw;
  max-width: 200px;
  background-image: url(../img/chara/boy03.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.watch_explanation .flex {
  flex-wrap: nowrap;
  position: relative;
  margin-bottom: 230px;
}

.watch_explanation .flex::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  max-height: 415px;
  min-height: 357px;
  background: #D3F49F;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  z-index: -1;
  border-radius: 1.5vw;
}

.watch_explanation .flex:last-child {
  margin-bottom: 0;
}

.watch_explanation .flex:nth-child(even):after {
  left: 54%;
}

.watch_explanation .flex .img {
  width: 68%;
  border-radius: 1.5vw;
  overflow: hidden;
  margin-top: -55px;
}

.watch_explanation .flex .txt {
  width: 29.5%;
  border-radius: 1.5vw;
  font-size: 3.25rem;
  line-height: 1.7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 7% 5% 0 0;
  position: relative;
}

.watch_explanation .flex .txt::before {
  content: '';
  position: absolute;
  top: 111%;
  left: 62%;
  max-width: 147px;
  max-height: 120px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 17vw;
  height: 12vw;
  background-image: url(../img/recognize/deco03.gif);
  background-size: contain;
  background-repeat: no-repeat;
}

.watch_explanation .flex:nth-child(2) .txt:before {
  background-image: url(../img/recognize/deco04.gif);
  top: -5%;
  left: 41%;
}

.watch_explanation .flex:nth-child(3) .txt:before {
  background-image: url(../img/recognize/deco05.gif);
  top: 0%;
  left: 30%;
}

.watch_explanation .flex:nth-child(4) .txt:before {
  background-image: url(../img/recognize/deco06.gif);
  top: 0%;
  left: 46%;
}

.watch_explanation .flex:nth-child(even) .txt {
  padding-left: 5%;
  padding-right: 0;
}

.watch_explanation .flex .txt .btn02 {
  width: 95%;
  text-align: left;
  font-size: 2.4rem;
  color: #8496a8;
}

.watch_explanation .flex .txt .btn02 img {
  max-width: 85px;
}

.watch_explanation .flex:nth-child(odd) {
  flex-direction: row-reverse;
}

.page_news {
  padding: 30px 0 10px;
}

.page_news .title .fiki {
  background-color: #023F88;
}

.page_news .title .fiki::before {
  border-top: 18px solid #023F88;
}

.page_news .inner {
  padding-top: 0;
}

.info_list {
  max-width: 900px;
  margin: 0 auto 80px;
}

.info_list .item:first-child {
  border-top: 1px solid #979797;
}

.info_list .item {
  border-bottom: 1px solid #979797;
  transition: .5s;
}

.info_list .item:hover .dl {
  color: #00509f;
}

.info_list .item .dl {
  transition: .5s;
  padding: 1.3vw 0;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
}

.info_list .item .dl dt,
.info_list .item .dl dd {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.info_list .item .dl dt {
  margin-right: 25px;
  width: 140px;
  color: #fff;
  background-color: #52BBED;
  border-radius: 0.5vw;
  text-align: center;
}

.info_list .item .dl dd {
  font-weight: 500;
  width: 82%;
}

/* スクールミルクプロジェクトとは？ */
.what .section-lead {
  text-align: center;
}

.what-table_title {
  text-align: center;
  margin-bottom: 1em;
}

.what table {
  width: 100%;
  margin-bottom: 0.5em;
}

.what table,
.what td,
.what th {
  border: 1px solid #c2c2c2;

  border-collapse: collapse;
}

.what td,
.what th {
  padding: 1em;
}

.what th {
  background: #d3ecf6;
}

.what-table_alt {
  font-size: 0.9em;
  font-weight: 500;
}

.btn-box {
  margin-top: 3em;
}

@media screen and (min-width: 2000px) {
  .watch_explanation .flex::after {
    margin-left: calc(50% - 30vw);
    max-height: 450px;
    height: 117%;
  }
}

@media screen and (min-width: 1601px) {
  .kotei_page {
    background-image: url('../img/recognize/mainvisual_left.png'), url('../img/recognize/mainvisual_right.png'), linear-gradient(to top, #f5cfad 0, #f5cfad 12.5%, #fffffb 12.5%, #fffffb 100%);
  }
}

@media screen and (max-width: 1024px) {
  .kotei_page .flot_img .img01 {
    left: 5%;
  }

  .kotei_page .flot_img .img02 {
    right: -14%;
  }

  .watch_explanation .flex .txt {
    font-size: 3rem;
  }

  .page-id-116 .kotei_page .top_img .h1 .h1_span {
    font-size: 4.8rem;
  }
}

@media screen and (max-width: 991px) {
  .kotei_page {
    background-image: url('../img/recognize/mainvisual_left.png'), url('../img/recognize/mainvisual_right.png'), linear-gradient(to top, #f5cfad 0, #f5cfad 49px, #fffffb 49px, #fffffb 100%);
  }

  .kotei_page .inner {
    padding: 40px 1% 140px;
  }

  .kotei_page .flot_img .img01 {
    top: 77%;
    left: 3%;
  }

  .kotei_page .flot_img .img02 {
    top: 70%;
    right: -18%;
  }

  .title .h2 {
    font-size: 5.2rem;
  }

  .title .fiki {
    font-size: 3rem;
    padding: 0 8rem;
  }

  .watch_explanation .flex .txt {
    font-size: 2.3rem;
    line-height: 1.6;
  }

  .watch_explanation .flex .txt::before {
    top: 121%;
  }

  .watch_explanation .flex .txt .btn02 img {
    width: 40%;
  }

  .watch_explanation .flex::after {
    min-height: 275px;
    height: 125%;
  }

  .watch_explanation .flex {
    margin-bottom: 200px;
  }

  .watch_explanation .flex .txt .btn02 {
    line-height: 1.2;
  }

  .info_list .item .dl dt {
    width: 120px;
    font-size: 1.7rem;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .kotei_page {
    background-image: url('../img/recognize/mainvisual_left.png'), url('../img/recognize/mainvisual_right.png'), linear-gradient(to top, #f5cfad 0, #f5cfad 33px, #fffffb 33px, #fffffb 100%);
  }

  .bg_img01 {
    left: 0%;
  }

  .bg_img02 {
    top: 78%;
    left: 99%;
    width: 16vw;
  }

  .bg_img03 {
    top: 63%;
    left: -2%;
    width: 19vw;
  }

  .bg_img04 {
    left: 102%;
  }

  .info_list .item .dl {
    padding: 0.2vw 0 0;
    display: block;
  }

  .info_list .item .dl dt {
    line-height: 1.4;
    width: 100px;
  }

  .info_list .item .dl dt,
  .info_list .item .dl dd {
    font-size: 14px;
  }

  .info_list .item .dl dd {
    width: 100%;
    margin: -20px 0 0 0;
  }

  .kotei_page .top_img .h1 .h1_span {
    font-size: 8rem;
  }

  .page-id-116 .kotei_page .top_img .h1 .h1_span {
    font-size: 2.8rem;
    line-height: 1.9;
  }

  .kotei_page .inner {
    padding: 60px 1%;
  }

  .kotei_page .flot_img .img01 {
    width: 17vw;
    top: 80%;
    left: 4%;
  }

  .kotei_page .flot_img .img02 {
    width: 17vw;
    top: 78%;
    right: -17%;
  }

  .title {
    padding: 6vw 0 3vw;
  }

  .title .fiki {
    font-size: 1.8rem;
    padding: 0 5rem;
  }

  .title .fiki::before {
    margin-left: -8px;
    border: 12px solid transparent;
    border-top: 10px solid #E95550;
  }

  .watch_explanation .title .fiki::before {
    border-top: 10px solid #52BBED;
  }

  .title .h2 {
    font-size: 3.7rem;
  }

  .in_watch .inner {
    padding: 15vw 1%;
  }

  .watch_movie .title::before {
    width: 17vw;
    height: 24vw;
    top: 102%;
    left: 93%;
  }

  .flex .flex_item .txt {
    font-size: 1.6rem;
    height: auto;
    padding: 3vw 5vw 6vw;
  }

  .in_explanation .flex_box {
    margin-top: 80px;
  }

  .watch_explanation .title::before {
    top: 98%;
    left: 10%;
  }

  .watch_explanation .flex {
    flex-wrap: wrap;
    margin-bottom: 140px;
  }

  .watch_explanation .flex .txt,
  .watch_explanation .flex .img {
    width: 100%;
  }

  .watch_explanation .flex .txt p {
    font-size: 1.8rem;
  }

  .watch_explanation .flex .txt .btn02 {
    text-align: center;
    font-size: 2.1rem;
    margin-top: 2%;
  }

  .watch_explanation .flex .txt .btn02 img {
    max-width: 40px;
  }

  .watch_explanation .flex::after {
    height: 120%;
    min-height: 220px;
    width: 126%;
  }

  .watch_explanation .flex:nth-child(even)::after {
    width: 130%;
  }

  .watch_explanation .flex:nth-child(even):after {
    left: 9%;
  }

  .watch_explanation .flex .txt::before {
    left: 87%;
    width: 21vw;
    height: 17vw;
  }

  .watch_explanation .flex:nth-child(2) .txt:before {
    top: 110%;
    left: 2%;
    width: 23vw;
  }

  .watch_explanation .flex:nth-child(3) .txt:before {
    top: 100%;
    left: 105%;
  }

  .watch_explanation .flex:nth-child(4) .txt:before {
    top: 110%;
    left: 2%;
  }

  .in_explanation {
    margin-bottom: 45px;
  }

  .page_news .inner {
    padding: 0 0 50px;
  }

  .info_list {
    margin: 0 auto 40px;
  }

  .flex .flex_item {
    width: 80%;
    margin-right: 0;
    border-radius: 5vw;
  }
}


.top {
  padding: 30px;
}

/* quiz */
.title .alt {
  font-size: 2.7rem;
  line-height: 5.9rem;
  margin-top: 15px;
}

ruby>rt {
  /*    display: block; */
  font-size: 36%;
  text-align: start;
  letter-spacing: -0.05rem;
}

_::-webkit-full-page-media,
_:future,
:root rt {
  transform: translateY(.5em);
}

ruby>rt.rt_small {
  font-size: 30%;
}

.tab li.add {
  display: block;
}

.tab li {
  display: none;
  position: relative;
}

.tab li .btn_box {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, -50%);
}

.s_img {
  position: relative;
}

.s_img .btn_box {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, -50%);
}

.title02 {
  background-color: #52BBED;
  padding: 1.9rem 0;
}

.title02 .h3 {
  font-size: 4.5rem;
  text-align: center;
  color: #fff;
}

/* .remodal-wrapper{
   position: relative;
} */
.remodal-wrapper .btn_box {
  position: absolute;
  top: 77%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 75%;
}

.remodal-wrapper .btn_box .btn:first-child {
  position: absolute;
  left: -0%;
  transform: translatex(-50%);
}

.remodal-wrapper .btn_box .btn:last-child {
  position: absolute;
  right: -12%;
  transform: translatex(-0%);
}

.remodal.r_bg {
  background: linear-gradient(110deg, #ceefff 0%, #ceefff 70%, #ace3ff 70%, #ace3ff 100%);
  margin: 0;
}

.q_box02 {
  padding: 2vw 6vw 15vw;
}

.q_box02 .img {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.q_box02 .img img {
  width: calc((687 / 1382) * 100%);
  max-width: 687px;
}

.q_box02 .img p {
  max-width: 447px;
  flex-grow: 1;
  padding: 0.3vw;
  background-color: #fff;
  border-radius: 3vw;
  border: 1px solid #023f88;
  color: #023f88;
  margin-left: 3%;
  font-size: 2.2rem;
  text-align: center;
}

.q_box02 .img02 {
  background-color: #fff;
  border-radius: 1.2vw;
  padding: 1vw 0 2vw;
  position: relative;
}

.q_box02 .img02 img {
  position: absolute;
  z-index: 1;
}

.q_box02 .img02 img:nth-child(1) {
  width: 14%;
  left: 2%;
  bottom: -25px;
}

.q_box02 .img02 img:nth-child(2) {
  position: static;
  width: 17.85%;
}

.q_box02 .img02 img:nth-child(3) {
  width: 14%;
  right: 2%;
  bottom: -25px;
}

.q_box02 .img02 .an {
  width: 100%;
  color: #023f88;
  margin-top: 35px;
  line-height: 2.5;
}

.q_box02 .img02 .an .span {
  color: #fff;
  background-color: #023F88;
  border-radius: 2vw;
  padding: 0.5vw 1.2vw 0.3vw;
  margin-right: 10px;
}

.q_box02 .m_box {
  background-color: #fff;
  border-radius: 1vw;
  padding: 2vw 4vw 5vw;
  font-size: 2.6rem;
  color: #023f88;
  text-align: left;
}

.m_title .num {
  font-size: 4.5rem;
  color: #52bbed;
  margin-right: 10px;
}

.q_box02 .m_box input[type=radio] {
  zoom: 160%;
  margin-bottom: 2px;
}

.q_box02 .m_box .m_title {
  border-bottom: 2px dotted;
  margin-bottom: 30px;
}

.q_box02 .m_box li {
  margin-bottom: 10px;
  margin-left: 1.4em;
  text-indent: -1.4em;
}

@media screen and (max-width: 991px) {
  .s_img .btn_box {
    top: 39%;
  }

  .title02 {
    padding: 1.1rem 0;
  }

  .title02 .h3 {
    font-size: 3.2rem;
  }

  .remodal-wrapper .btn_box {
    top: 72%;
    left: 51%;
  }

  .q_box02 {
    padding: 2vw 6vw 23vw;
  }

  .q_box02 .img {
    max-width: 100%;
  }

  .q_box02 .img {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .q_box02 .img img {
    width: 80%;
  }

  .q_box02 .img p {
    width: 53%;
    font-size: 2.3rem;
    margin-top: 20px;
  }

  .q_box02 .img02 {
    padding: 3vw 0 4vw;
  }

  .q_box02 .img02 img:nth-child(1) {
    left: -3%;
    bottom: -85px;
  }

  .q_box02 .img02 img:nth-child(2) {
    width: 28%;
  }

  .q_box02 .img02 img:nth-child(3) {
    right: -5%;
    bottom: -80px;
  }

  .q_box02 .img02 .an {
    margin-top: 35px;
    font-size: 1.9rem;
  }

  .q_box02 .img02 .an .span {
    display: block;
    padding: 0vw 1.2vw;
    margin: 0 auto 10px;
    width: 30%;
  }
}

@media screen and (max-width: 767px) {
  ruby>rt {
    font-size: 37%;
  }

  _::-webkit-full-page-media,
  _:future,
  :root rt {
    transform: translateY(.8em);
  }

  .title .alt {
    font-size: 1.75rem;
    line-height: 3.5rem;
    margin-bottom: 20px;
  }

  .title02 {
    padding: 0.6rem 0;
  }

  .title02 .h3 {
    font-size: 2.3rem;
  }

  .s_img .btn_box {
    top: 33%;
  }

  .q_box02 {
    padding: 10vw 5vw 30vw;
  }

  .q_box02 .img p {
    width: 90%;
    font-size: 1.5rem;
    border-radius: 4vw;
    margin: 15px auto 0;
  }

  .q_box02 .m_box {
    padding: 4vw 4vw 5vw;
    font-size: 1.9rem;
    border-radius: 3vw;
  }

  .m_title .num {
    font-size: 2.5rem;
    margin-right: 5px;
  }

  .q_box02 .m_box .m_title {
    margin-bottom: 13px;
  }

  .remodal-wrapper .btn_box {
    top: 83%;
    left: 52%;
  }

  .remodal-wrapper .r_bg .btn_box {
    top: 75%;
  }

  .q_box02 .img02 {
    padding: 4vw 4vw 5vw;
  }

  .q_box02 .img02 img:nth-child(2) {
    width: 43%;
  }

  .q_box02 .img02 img:nth-child(1),
  .q_box02 .img02 img:nth-child(3) {
    bottom: 34%;
  }

  .q_box02 .img02 .an .span {
    display: block;
    width: 35%;
    font-size: 1.3rem;
    border-radius: 4vw;
    margin: 0 auto 7px;
  }

  .q_box02 .img02 .an {
    font-size: 1.5rem;
    line-height: 2;
  }

  .q_box02 .m_box li {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}

/* footer_bg */
.footer_bg .btn {
  text-align: right;
}

.btn02 {
  text-align: center;
}

.btn02 a img {
  max-width: 150px;
  transition: .3s;
}

.btn02 a:hover img {
  opacity: 70%;
}

.footer_bg {
  background-image: url('../img/footer/bg01.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}

.footer_bg .inner {
  padding: 6% 1% 20%;
}

@media screen and (max-width: 991px) {
  .footer_bg {
    background-image: url('../img/footer/bg_tab.jpg');
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {
  .footer_bg {
    background-image: url('../img/footer/bg_sp.jpg');
    background-size: cover;
  }

  .btn02 a img {
    max-width: 100px;
  }

  .footer_bg .inner {
    padding: 9% 1% 34%;
  }
}

/* ===================
    pagination
===================== */
.pagination {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 80px;
}

.pagination>* {
  display: block;
  width: 66px;
  height: 66px;
  text-align: center;
  font-size: 1.6rem;
  transition: 0.4s ease;
  position: relative;
  line-height: 64px;
  color: #3b5485;
}

.page-numbers:hover {
  background-color: #eeeff1;
}

.page-numbers.current {
  background-color: #2c3d79;
  color: #fff;
}

.page-numbers {
  border-left: 1px solid #D6D6D6;
}

.page-numbers:first-child {
  border: none;
}

.page-numbers.next::before,
.page-numbers.next::after,
.page-numbers.prev::before,
.page-numbers.prev::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #2c3d79;
}

.page-numbers.next::before,
.page-numbers.prev::before {
  width: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-numbers.next::after,
.page-numbers.prev::after {
  width: 13px;
}

.page-numbers.next::after {
  transform-origin: right;
  left: 60%;
  transform: translateY(-50%) rotate(30deg);
}

.page-numbers.prev::after {
  transform-origin: left;
  left: 20%;
  transform: translateY(-50%) rotate(-30deg);
}

@media screen and (max-width: 1024px) {
  .pagination>* {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    padding: 0;
    line-height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .pagination>* {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
    line-height: 45px;
  }

  .page-numbers.next::after {
    left: 52%;
  }

  .pagination {
    margin-bottom: 0;
  }

  .page_news .btn_box {
    margin-top: 50px;
  }

  .page_news .btn_box a {
    padding: 2.3vw 6vw;
  }
}

.single__content {
  margin-top: 80px;
  /* padding-bottom: 80px; */
}

.single-title {
  color: #023F88;
  font-size: 3.2rem;
  line-height: 1.65;
  vertical-align: middle;
}

.single__body {
  margin: 50px auto 100px;
  font-size: 1.7rem;
  font-weight: 500;
}

.single__body .img-wrap {
  width: 80%;
  margin: auto;
}

.single__content .date {
  font-size: 1.5rem;
  font-weight: 300;
  display: inline-block;
  margin-top: 10px;
}

.pdf-icon {
  position: relative;
}

.pdf-icon::before {
  content: '';
  display: inline-block;
  width: 27px;
  height: 27px;
  background-image: url(/wp-content/uploads/2024/08/pdf-150x150.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -31px;
}

@media screen and (max-width: 1024px) {
  .archive__body .article-title {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {

  .single__content {
    margin-top: 50px;
  }


  .single__body {
    font-size: 1.4rem;
    margin: 50px auto 0px;
  }

  .single__body .img-wrap {
    width: 100%;
  }

  .single-title {
    font-size: 2.7rem;
  }
}

/* テトラを知る */
.know_top_main {
  position: relative;
}

.know_top_main_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.know_top_main_txt h1 {
  font-size: 6.8vw;
  line-height: 1.3;
}

.know_top_main_txt p {
  font-size: 1.45vw;
  font-weight: 500;
  display: inline-block;
  padding: 20px 4.4%;
  border: 1px solid;
  border-radius: 50vw;
  margin-bottom: 20px;
}

.know_top_btn {
  padding: 75px 0;
}

.know_top_btn ul {
  max-width: 905px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  font-size: 3rem;
  justify-content: space-between;
}

.know_top_btn ul li {
  width: 48%;
  border: 2px solid #dedede;
  font-size: 2.5rem;
  line-height: 1.4;
  padding: 20px 0;
  font-weight: 500;
  margin-bottom: 4%;
  border-radius: 20px;
}

.know_top_btn ul li a {
  display: block;
}

.know_center_box {
  padding: 118px 0;
  background-color: #f6f6f6;
}

.know_center_item {
  display: flex;
  align-items: center;
  margin-bottom: 106px;
}

.know_center_item:nth-child(even) {
  flex-direction: row-reverse;
}

.know_center_img {
  width: 53.5%;
}

.know_center_txt {
  width: 46.5%;
  max-width: 550px;
  padding: 0 6.3%;
}

.know_center_txt_title {
  font-size: 3.3vw;
  line-height: 1.2;
  margin-bottom: 48px;
}

.know_center_txt_btn a {
  font-weight: 400;
  background-color: #fff;
  display: inline-block;
  padding: 3.7% 16.5%;
  border: 1px solid;
  border-radius: 50vw;
  font-size: max(1.65vw, 16px);
  transition: .3s;
}

.know_center_txt_btn a:hover {
  background-color: #231815;
  color: #fff;
}

@media screen and (max-width: 990px) {
  .know_center_txt_title {
    margin-bottom: 35px;
  }

  .know_top_btn {
    padding: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .know_top_main_txt h1 {
    font-size: 8vw;
  }

  .know_top_main_txt p {
    font-size: 3.3vw;
    padding: 7px 7%;
    margin-bottom: 10px;
  }

  .know_top_btn ul li {
    font-size: 1.7rem;
    line-height: 1.3;
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .know_center_box {
    padding: 12vw 0;
  }

  .know_center_item {
    display: block;
    margin-bottom: 20vw;
  }

  .know_center_img {
    width: 90%;
    margin-bottom: 5vw;
  }

  .know_center_item:nth-child(even) .know_center_img {
    margin: 0 0 5vw auto;
  }

  .know_center_txt {
    width: auto;
    padding: 0 9vw;
  }

  .know_center_txt_title {
    font-size: 7vw;
    margin-bottom: 25px;
  }
}

/* ------------------------
    know下層　common
------------------------ */
.section-title {
  font-size: 4.5rem;
  color: #023f88;
  margin-bottom: 50px;
}

.section-lead {
  font-size: 2.5rem;
  line-height: 1.6;
  margin-bottom: 70px;
  margin-top: -30px;
  font-weight: 400;
}

.section-lead02 {
  font-size: 2.5rem;
  line-height: 1.6;
  margin-bottom: 0px;
  margin-top: -70px;
  font-weight: 400;
  color: #023F88;
  text-align: left;
}

.section-lead-bold {
    font-weight: 700;
    font-size: 3.5rem;
    border-bottom: 2px solid;
}

.main-top__page-info .section-lead {
  margin-top: 0;
  margin-bottom: 0;
}

/* .section__img{
    margin-top: 70px;
} */
.f30 {
  font-size: 3rem;
}


/* 仮 */
#know-a,
#know-b,
#know-c,
#know-d {
  text-align: center;
  margin-top: 60px;
}

/* 仮-------------------- */
#know-a .inner,
#know-b .inner,
#know-c .inner,
#know-d .inner {
  padding-left: 0;
  padding-right: 0;
}

#know-a .gray,
#know-b .gray,
#know-c .gray,
#know-d .gray {
  background-color: #f5f5f5;
}


/* main-top ----------------*/
.main-top__page-info {
  color: #fff;
  background-color: #00bdf2;
  padding: 45px 0 70px;
}

.main-top__page-title {
  font-size: 5.5rem;
}

.main-top__page-lead {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (max-width: 1024px) {
  .main-top__page-title {
    font-size: 4.3rem;
  }

  .main-top__page-info {
    padding: 30px 0 50px;
  }

  .section-title {
    font-size: 3.5rem;
  }

  .section-lead {
    font-size: 1.9rem;
  }
  .section-lead02 {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 767px) {
  .main-top__page-info {
    padding: 25px 5vw 30px;
  }

  .main-top__page-title {
    font-size: 2.8rem;
    line-height: 1.4;
  }

  .section-title {
    font-size: 2.1rem;
    line-height: 1.4;
    margin-bottom: 22px;
  }

  .main-top__page-lead {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 5px;
  }

  .section-lead {
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 0px;
  }
  .section-lead02 {
    font-size: 1.4rem;
    margin-top: 0px;
  }

  .section-lead-bold{
    font-size: 2rem;
  }

  .main-top__page-info .section-lead {
    margin-bottom: 0;
  }

  p.main-top__page-title {
    font-size: 2.1rem;
  }

  .f30 {
    font-size: 1.7rem;
  }
}


/* 追加 */
.know-b__cont-img,
.know-c__cont-img,
.know-d__cont-img {
  width: 60%;
  margin: auto;
}

.grid {
  display: grid;
}

.grid-02 {
  grid-template-columns: repeat(2, 46%);
  gap: 30px 3%;
}

.grid-02-s {
  justify-content: center;
  grid-template-columns: repeat(2, 40%);
  gap: 30px 3%;
}

.grid-03 {
  grid-template-columns: repeat(3, 31%);
  gap: 30px 3%;
}

.box-wrap {
  display: grid;
  grid-auto-rows: min-content;
  gap: 30px;
}

.box {
  font-size: 1.9rem;
  line-height: 1.5;
  padding: 1em;
  background: #f5f5f5;
}

.box-white {
  background: #fff;
}

.box-text {
  font-weight: 500;
  color: #777;
}

.box-text .emphasis {
  /* font-size: 1.2em; */
  font-size: 1.13em;
  font-weight: 700;
  line-height: 1.1;
  color: #023f88;
  display: block;
  padding-top: .1em;
}

.box-text .emphasis .large {
  font-size: 3em;
}

.box-text .emphasis .medium {
  font-size: 1.7em;
}

@media (max-width:1024px) {
  .grid-02-s {
    grid-template-columns: repeat(2, 47%);
  }

  .box {
    font-size: 1.6rem;
  }
}

@media (max-width:767px) {

  .grid-02,
  .grid-02-s,
  .grid-03 {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .know-b__cont-img,
  .know-c__cont-img,
  .know-d__cont-img {
    width: 80%;
  }

  .box-wrap {
    gap: 17px;
  }

  .box {
    font-size: 1.5rem;
  }

  .box-text .emphasis .large {
    font-size: 2.5em;
  }

  .box-text .emphasis .medium {
    font-size: 1.5em;
  }

}

/* ------------------------
    know-a
------------------------ */
/* group-history -------------*/
.group-history .inner {
  padding-top: 57px;
  padding-bottom: 45px;
}

.group-history__cont-wrap {
  display: grid;
  grid-template-columns: calc((428 / 1100)*100%) 1fr;
  gap: 50px;
}

.group-history__cont {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: left;
}

.group-history__cont-01 figcaption {
  font-size: .9em;
  line-height: 1.4;
  margin-top: .3em;
}

.group-history__table {
  margin-bottom: 1em;
}

.group-history__table .year {
  min-width: 5cap;
}

.group-history__proverbs {
  background: #00bdf2;
  border-radius: 17px;
  padding: .6em .4em;
}

.group-history__proverbs-message {
  color: #fff;
  line-height: 1.4;
}

.group-history__proverbs-message .small {
  font-size: .6em;
  text-indent: 1.5em;
  display: block;
  color: #787673;
  margin-top: .4em;
}

.group-history__proverbs-message .small::before {
  content: "";
  vertical-align: middle;
  display: inline-block;
  width: 3em;
  height: 1px;
  background: currentColor;
  margin-right: 5px;
}

@media (max-width:1024px) {
  .group-history__cont {
    font-size: 2rem;
  }
}

@media (max-width:767px) {
  .group-history__cont-wrap {
    grid-template-columns: 1fr;
  }

  .group-history__cont {
    font-size: 1.5rem;
  }

  .group-history__cont-01 {
    width: 86%;
    max-width: 400px;
    margin: auto;
  }
}

/* business-area -------------*/
.business-area::before {
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  background-image: url('../img/know/know_a/img02.png');
  margin: 105px 0 15px;
}

.business-area .inner {
  padding-bottom: 100px;
}

.business-area__cont-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px 40px;
}

.business-area__cont {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: left;
}

.business-area__list {
  line-height: 1.6;
  padding: .5em 0;
}

.business-area__list-item {
  list-style-type: decimal-leading-zero;
  list-style-position: inside;
}

@media (max-width:1024px) {
  .business-area__cont {
    font-size: 2rem;
  }
}

@media (max-width:767px) {
  .business-area__cont-wrap {
    grid-template-columns: 1fr;
  }

  .business-area__cont {
    font-size: 1.5rem;
  }
}


/* history -------------*/
.history__cont-wrap {
  display: grid;
  grid-template-areas:
    "a a b b"
    ". c c .";

  grid-template-rows: auto auto;
  grid-template-columns: 16% 23% 23% 29%;
  gap: 20px 3%;
  padding-left: 3%;
}

.history__cont {
  font-size: 2.5rem;
  font-weight: 400;
}

.history__cont-01 {
  grid-area: a;
}

.history__cont-02 {
  grid-area: b;
  padding-top: 26px;
}

.history__cont-02 figcaption {
  margin-top: -1em;
  position: relative;
}

.history__cont-03 {
  grid-area: c;
}

@media (max-width:1024px) {
  .history__cont {
    font-size: 1.9rem;
  }
}


@media (max-width:767px) {
  .history__cont {
    font-size: 1.4rem;
  }
}

/* company-history -------------*/
.company-history {
  position: relative;
  overflow: hidden;
}

.company-history::after {
  content: "";
  display: block;
  width: 50%;
  max-width: 523px;
  aspect-ratio: 523 / 565;
  background-image: url(../img/know/know_a/07.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
  bottom: 5%;
  right: 15%;
}

.company-history .inner {
  padding-top: 45px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

.company-history__cont {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: left;
}

.company-history__table {
  text-shadow: 0 0 10px #f5f5f5, 0 0 10px #f5f5f5, 0 0 10px #f5f5f5, 0 0 10px #f5f5f5, 0 0 10px #f5f5f5;
  margin-left: 1em;
}

.company-history__table .year {
  min-width: 6em;
}

@media (max-width:1024px) {
  .company-history__cont {
    font-size: 2rem;
  }

  .company-history__table .year {
    min-width: 4.5em;
  }
}

@media (max-width:767px) {
  .company-history__cont {
    font-size: 1.4rem;
  }
}

/* business-achievement -------------*/
.business-achievement .inner {
  padding-top: 90px;
}

.business-achievement__cont-wrap {
  display: grid;
  grid-template-columns: calc((285 / 1100)*100%) calc((555 / 1100)*100%);
  justify-content: center;
  gap: 35px 6%;
  margin-left: 5%;
}

.business-achievement__cont-03 img {
  max-width: 281px;
}

.business-achievement__cont-04 img {
  max-width: 395px;
}

.business-achievement__cont-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #787673;
}

.business-achievement__cont-title .small {
  font-size: .85em;
}

.business-achievement__value {
  font-size: 5.5rem;
  line-height: 1;
  color: #023f88;
  margin-bottom: .5em;
}

.business-achievement__value .small {
  font-size: .5em;
}

@media (max-width:1024px) {
  .business-achievement__cont-title {
    font-size: 2rem;
  }

  .business-achievement__cont-title .small {
    font-size: .7em;
  }

  .business-achievement__value {
    font-size: 4.5rem;
  }
}

@media (max-width:767px) {
  .business-achievement__cont-wrap {
    grid-template-columns: 1fr;
  }

  .business-achievement__cont-title {
    font-size: 1.5rem;
  }

  .business-achievement__value {
    font-size: 3.5rem;
  }
}

/* ------------------------
    know-b
------------------------ */
.know-b-sec03 .grid-02 {
  grid-template-columns: 42% 54%;
  gap: 30px 4%;
}

.know-b-sec03 .box {
  width: 80%;
  margin: auto;
}

.know-b-sec03 .box-text .emphasis {
  display: inline-block;
}

.know-b-sec04 .know-b__cont-img {
  max-width: 370px;
}

.know-b-sec04 .grid .box-text {
  line-height: 1.7;
  text-align: left;
}

.know-b-sec04 .box-text .emphasis {
  display: inline-block;
}

.know-b-sec05 .box-text {
  font-size: 2.5rem;
  line-height: 1.2;
}

.know-b-sec05 .box-text .small {
  font-size: .7em;
}

.know-b-sec06 .know-b__cont-img {
  max-width: 500px;
  margin-bottom: 20px;
}

.know-b-sec06 .grid .box-text {
  line-height: 1.7;
  text-align: left;
}

.know-b-sec06 .box-text .emphasis {
  display: inline-block;
}

.know-b-sec07 .know-b__cont-img {
  max-width: 370px;
  margin-bottom: 40px;
}

.know-b-sec07 .grid .box-text {
  line-height: 1.7;
  text-align: left;
}

.know-b-sec08 .box {
  font-size: 2.5rem;
  width: 80%;
  margin: auto;
}

.know-b-sec09 .box {
  display: grid;
  align-content: center;
}

.know-b-sec09 .box-text .medium {
  font-size: 1.4em;
}

.know-b-sec10__cont {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
}

.know-b-sec10__cont-img {
  width: calc(415/1100 * 100%);
  min-width: 300px;
}

.know-b-sec10 .grid-02 {
  --icon: 100px;
  --icon-half: 50px;
  width: calc((1100 - 445) / 1100 * 100%);
  grid-template-columns: repeat(2, 49%);
  margin-top: var(--icon-half);
  gap: calc(var(--icon-half) + 20px) 3%;
  min-width: 620px;
}

.know-b-sec10 .box::before {
  content: "";
  display: block;
  width: var(--icon);
  aspect-ratio: 1;
  margin: calc(-1em + var(--icon-half) * -1) auto .5em;
  background-repeat: no-repeat;
  background-size: contain;
}

.know-b-sec10 .box:nth-of-type(1):before {
  background-image: url('../img/know/know_b/13.png');
}

.know-b-sec10 .box:nth-of-type(2):before {
  background-image: url('../img/know/know_b/14.png');
}

.know-b-sec10 .box:nth-of-type(3):before {
  background-image: url('../img/know/know_b/15.png');
}

.know-b-sec10 .box:nth-of-type(4) {
  display: grid;
}

.know-b-sec10 .box:nth-of-type(4):before {
  background-image: url('../img/know/know_b/16.png');
}

.know-b-sec10 .box-text .emphasis {
  color: inherit;
}

.know-b-sec10 .box-text .medium {
  font-size: 1.4em;
  display: block;
  margin-bottom: .3em;
}

.know-b-sec18 .box {
  display: grid;
  align-content: center;
}

.know-b-sec18 .box-text .emphasis {
  margin-bottom: .2em;
}

.know-b-sec19__cont,
.know-b-sec21__cont {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.know-b-sec19__cont-img,
.know-b-sec21__cont-img {
  width: calc(350/1100 * 100%);
  min-width: 250px;
}

:where(.know-b-sec19__cont, .know-b-sec21__cont) .box-wrap {
  width: calc((1100 - 380) / 1100 * 100%);
  min-width: 600px;
}

:where(.know-b-sec19__cont, .know-b-sec21__cont) .box {
  text-align: left;
  border: 5px solid;
  border-radius: 20px;
}


:where(.know-b-sec19__cont, .know-b-sec21__cont) .box:nth-of-type(1) {
  color: #787673;
  border-color: #d9d9d9;
}

.know-b-sec19__cont .box-text {
  position: relative;
  padding-left: 6em;
  width: fit-content;
  margin: auto;
  transform: translateX(-3em);
}

:where(.know-b-sec19__cont, .know-b-sec21__cont) .box-text::before {
  content: "";
  display: inline-block;
  width: 3em;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: .3em;
}

:where(.know-b-sec19__cont, .know-b-sec21__cont) .box:nth-of-type(1) .box-text::before {
  aspect-ratio: 62 / 74;
  background-image: url('../img/know/know_b/19.png');
}

:where(.know-b-sec19__cont, .know-b-sec21__cont) .box:nth-of-type(2) {
  color: #023f88;
  border-color: #b6d7fe;
}

:where(.know-b-sec19__cont, .know-b-sec21__cont) .box:nth-of-type(2) .box-text::before {
  width: 2em;
  aspect-ratio: 39 / 68;
  background-image: url('../img/know/know_b/20.png');
  left: 1.5em;
}

:is(.know-b-sec19__cont, .know-b-sec21__cont) .box-text {
  color: inherit;
}

:is(.know-b-sec19__cont, .know-b-sec21__cont) .box-text :where(.emphasis, .medium) {
  color: inherit;
}

:where(.know-b-sec19__cont, .know-b-sec21__cont) .box-text .emphasis {
  display: inline-block;
}

:where(.know-b-sec19, .know-b-sec21) .inner>.box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

:where(.know-b-sec19__cont, .know-b-sec21__cont) .box::first-line {
  font-weight: 700;
}

.know-b-sec19 .inner>.box::after {
  content: "";
  display: inline-block;
  width: 24%;
  min-width: 130px;
  aspect-ratio: 33 / 14;
  background: url('../img/know/know_b/17.png') no-repeat center / contain;
}

:where(.know-b-sec19, .know-b-sec21) .inner>.box .medium {
  margin-right: .5em;
}

.know-b-sec20__cont {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

.know-b-sec20__cont .grid-02 {
  width: calc((1100 - 500) / 1100 * 100%);
  min-width: 500px;
  grid-template-columns: repeat(2, 48%);
  gap: 15px 3%;
}

.know-b-sec20__cont .box-text::before {
  content: "";
  display: inline-block;
  width: 65px;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
}

.know-b-sec20__cont .box:nth-of-type(1) .box-text::before {
  background-image: url('../img/know/know_b/21.png');
}

.know-b-sec20__cont .box:nth-of-type(2) .box-text::before {
  background-image: url('../img/know/know_b/22.png');
}

.know-b-sec20__cont .box:nth-of-type(3) .box-text::before {
  background-image: url('../img/know/know_b/23.png');
}

.know-b-sec20__cont .box:nth-of-type(4) .box-text::before {
  background-image: url('../img/know/know_b/24.png');
}

.know-b-sec20__cont-img {
  width: calc(470/1100 * 100%);
  min-width: 350px;
}

.know-b-sec20__cont .box-text {
  font-size: .9em;
}

.know-b-sec20__cont .emphasis {
  margin-bottom: .2em;
}

.know-b-sec20__cont .box-text .emphasis .medium {
  font-size: 1.3em;
}

.know-b-sec21 .inner>.box::after {
  content: "";
  display: inline-block;
  width: 20%;
  min-width: 130px;
  aspect-ratio: 33 / 14;
  background: url('../img/know/know_b/27.png') no-repeat center / contain;
  margin-left: 1em;
}

.know-b-sec21__cont .box-text {
  position: relative;
  text-align: center;
  width: fit-content;
  padding-left: 4.5em;
  margin: auto;
}

.know-b-sec21__cont .box-text__group {
  display: flex;
  align-items: flex-end;
  gap: 1em;
  margin-top: .5em;
}

@media (max-width:767px) {
  .know-b-sec03 .grid-02 {
    grid-template-columns: 1fr;
  }

  .know-b-sec03 .box {
    width: 90%;
  }

  .know-b-sec05 .box-text {
    font-size: 1.4rem;
  }

  .know-b-sec08 .box {
    font-size: 1.8rem;
  }

  .know-b-sec10 .grid-02 {
    --icon: 70px;
    --icon-half: 35px;
    width: 100%;
    max-width: 450px;
    grid-template-columns: 1fr;
    min-width: unset;
  }

  :where(.know-b-sec19__cont, .know-b-sec21__cont) .box-wrap {
    width: 100%;
    min-width: unset;
  }

  .know-b-sec19__cont .box-text {
    padding-left: 4em;
    transform: translateX(-1em);
  }

  :where(.know-b-sec19, .know-b-sec21) .inner>.box {
    flex-direction: column;
  }

  :where(.know-b-sec19, .know-b-sec21) .inner>.box::after {
    align-self: flex-end;
  }

  :where(.know-b-sec19, .know-b-sec21) .inner>.box .emphasis {
    line-height: 1.5;
  }

  :where(.know-b-sec19__cont, .know-b-sec21__cont) .box-text::before {
    width: 2.5em;
  }

  :where(.know-b-sec19__cont, .know-b-sec21__cont) .box:nth-of-type(2) .box-text::before {
    width: 1.8em;
    left: .5em;
  }

  .know-b-sec20__cont .grid-02 {
    grid-template-columns: 1fr;
    min-width: unset;
    max-width: 370px;
    width: 100%;
  }

  .know-b-sec21__cont .box-text {
    padding-left: 3.5em;
  }

  .know-b-sec21__cont .box-text__group {
    flex-direction: column;
  }
}


/* ------------------------
    know-c
------------------------ */
.know-c-sec01__cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 50px;
}

.know-c-sec01__cont .box-wrap {
  width: calc((1100 - 410) / 1100 * 100%);
  min-width: 500px;
  gap: 15px;
}

.know-c-sec01__cont-img {
  width: calc(360/1100 * 100%);
  min-width: 200px;
}

.know-c-sec02 .know-c__cont-img {
  margin-bottom: 40px;
  padding: 15px;
  background: #fff;
}

.know-c-sec02 .box-text .emphasis {
  margin-bottom: .7em;
}

.know-c-sec02 .box-text .medium {
  font-size: 1.3em;
}

.know-c-sec02 .box-text .medium-flex {
  font-size: 1.2em;
  display: flex;
  justify-content: center;
  gap: .5em;
}

.know-c-sec04 .grid-03 .box:first-of-type img {
  width: 80%;
}

:where(.know-c-sec04, .know-c-sec05) .box-text {
  margin-bottom: 2em;
}

.know-c-sec06 .box {
  display: flex;
  padding-right: 0;
  padding-bottom: 0;
}

.know-c-sec06__list {
  text-align: left;
}

.know-c-sec06__list-item {

  font-weight: 500 !important;
  display: list-item !important;
  list-style-type: decimal;
  margin-left: 2em;
  margin-bottom: 1em;
  margin-right: .5em;
}

.know-c-sec06__box-img {
  width: calc(355 / 1100 * 100%);
  align-self: flex-end;
  margin-top: -1em;
}

@media (max-width:767px) {
  .know-c-sec01__cont .box-wrap {
    width: 100%;
    min-width: unset;
  }

  .know-c-sec02 .box-text .medium-flex {
    font-size: 1.08em;
  }

  .know-c-sec06 .box {
    flex-direction: column;
  }

  .know-c-sec06__list-item {
    margin-right: 1em;
    margin-left: 1.5em;
  }

  .know-c-sec06__box-img {
    width: 50%;
    margin-top: 0;
  }

}

/* ------------------------
    know-d
------------------------ */
.know-d-sec01__cont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.know-d-sec01__comment-wrap {
  font-size: 1.9rem;
  /* width: calc((1100 - 340) / 1100 * 100%); */
}

.know-d-sec01__comment {
  font-weight: 500;
  text-align: justify;
  color: #fff;
  background: #00BDF2;
  padding: 1.5em;
  border-radius: 30px;
  margin-bottom: 2em;
}

.know-d-sec01__comment .emphasis {
  color: #FFDD02;
}

.know-d-sec01__name {
  text-align: right;
  display: block;
  color: #777777;
}

.know-d-sec01__name .emphasis {
  font-size: 1.5em;
  margin-left: .5em;
}

.know-d-sec01__cont-img {
  width: calc(290/1100 * 100%);
  min-width: 190px;
}

.box[data-name="planet"] {
  border: 2px solid #00BDF2;
}

.know-d-sec02__box-title {
  text-align: left;
  color: #00BDF2;
  margin-bottom: .3em;
}

.know-d-sec02__box-title::before {
  content: "";
  vertical-align: bottom;
  display: inline-block;
  width: 2.5em;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: contain;
}

.box[data-name="food"] .know-d-sec02__box-title::before {
  background-image: url('../img/know/know_d/02.svg');
}

.box[data-name="people"] .know-d-sec02__box-title::before {
  background-image: url('../img/know/know_d/03.svg');
}

.box[data-name="planet"] .know-d-sec02__box-title::before {
  background-image: url('../img/know/know_d/04.svg');
}

.know-d-sec02__box-title .emphasis {
  font-size: 1.3em;
  margin-right: .3em;
}

.know-d-sec02__box-img {
  display: block;
  margin-bottom: 15px;
  margin-left: auto;
  max-height: 60px;
  width: auto;
  max-width: 100%;
}

.know-d-sec02__box-text {
  font-size: 1.7rem;
  font-weight: 500;
  color: #023F88;
  text-align: justify;
}

.know-d-sec02 .grid-02 {
  grid-template-columns: repeat(2, 48%);
  gap: 30px 4%;
  margin-bottom: 30px;
}

.grid .know-d-sec02__box-text {
  color: #777;
}

.know-d-sec02__list li {
  list-style-type: decimal;
  list-style-position: inside;
  margin-top: 1em;
}

.know-d-sec03 .know-d__cont-img {
  max-width: 400px;
  margin-bottom: 30px;
}

.know-d-sec03 .box {
  text-align: left;
}

.know-d-sec03__box-title {
  font-size: 1.3em;
  color: #00BDF2;
  margin-bottom: .3em;
}

.know-d-sec03 .box-text {
  font-size: 1.7rem;
}

.know-d-sec03 .box-text>*+* {
  margin-top: 1em;
}

.know-d-sec04__table {
  text-align: left;
  color: #777;
  width: 100%;
  border-collapse: collapse;
}

.know-d-sec04__table caption {
  font-size: 1.1em;
  text-align: left;
  color: #fff;
  background: #023F88;
  padding: .1em 1em;
}

.know-d-sec04__table tr {
  background: #F2F2F2;
}

.know-d-sec04__table tr:not(.border-none) {
  border-top: 3px solid #fff;
}

.know-d-sec04__table th {
  font-size: 1.5em;
  vertical-align: middle;
  min-width: 12em;
  color: #00BDF2;
  padding: 1em;
}

.know-d-sec04__table th .small {
  font-size: .7em;
}

.know-d-sec04__table td {
  font-weight: 600;
  vertical-align: middle;
  padding: .2em;
}

.know-d-sec04__table .year {
  font-size: 1.2em;
  white-space: nowrap;
  padding-right: 1em;
}

.know-d-sec04__table .pt-l td {
  padding-top: 1em;
}

.know-d-sec04__table .pb-l td {
  padding-bottom: 1em;
}

.know-d-sec06__cont {
  font-size: 2.7rem;
  line-height: 1.4;
  width: 94%;
  margin: auto;
}

.know-d-sec06__portfolio-title {
  color: #fff;
  background: #023F88;
  padding: 1em;
  margin-bottom: 15px;
  position: relative;
}

.know-d-sec06__portfolio-title::before {
  content: "";
  width: 3.8em;
  aspect-ratio: 1;
  background: url('../img/know/know_d/09.png') no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.know-d-sec06__portfolio-title .small {
  font-size: .6em;
  font-weight: 400;
  display: block;
}

.know-d-sec06__portfolio {
  display: grid;
  grid-template-columns: calc((570/1040)*100%) 1fr;
  gap: 8px;
}

.know-d-sec06__portfolio-item {
  display: grid;
  place-content: center;
  min-height: 200px;
  color: #8DC63F;
  background: #F2F2F2;
  padding: 1em;
  border: 2px solid #8DC63F;
}

.know-d-sec06__portfolio-item-green {
  color: #fff;
  background: #8DC63F;
}

.know-d-sec09 .grid-02 {
  grid-template-columns: repeat(2, 50%);
  gap: 0;
}

.know-d-sec09 .box-text {
  font-size: 2.3rem;
  line-height: 1.7;
  font-weight: 500;
  text-align: left;
}

@media (max-width:1024px) {
  .know-d-sec04__table th {
    font-size: 1.3em;
  }
}

@media (max-width:767px) {
  .know-d-sec01__cont {
    flex-direction: column;
    gap: 20px;
  }

  .know-d-sec01__comment-wrap {
    font-size: 1.5rem;
  }

  .know-d-sec01__comment {
    margin-bottom: 1em;
  }

  .know-d-sec01__name .emphasis {
    font-size: 1.4em;
  }

  .know-d-sec02 .grid-02 {
    grid-template-columns: 1fr;
    gap: 30px 4%;
    margin-bottom: 30px;
  }

  .know-d-sec02__box-title {
    margin-bottom: .5em;
  }

  .know-d-sec02__box-img {
    max-height: 40px;
  }

  .know-d-sec02__box-text {
    font-size: 1.5rem;
  }

  .know-d-sec03 .box-text {
    font-size: 1.5rem;
  }

  .know-d-sec04__table tr {
    display: flex;
    flex-direction: column;
  }

  .know-d-sec04__table th {
    text-align: center;
    width: 100%;
    padding: .3em;
  }

  .know-d-sec04__table td {
    padding: .2em 1em;
    line-height: 1.5;
  }

  .know-d-sec04__table td:not(.year) {
    padding-bottom: 1em;
  }


  .know-d-sec04__table .pt-l td {
    padding-top: 0;
  }

  .know-d-sec04__table .pb-l td {
    padding-bottom: 0;
  }

  .know-d-sec04__table .pb-l td:last-of-type {
    padding-bottom: 1em;
  }

  .know-d-sec06__cont {
    font-size: 1.7rem;
    width: 100%;
  }

  .know-d-sec06__portfolio-title::before {
    width: 2.8em;
  }

  .know-d-sec06__portfolio-item {
    min-height: 130px;
  }

  .know-d-sec09 .grid-02 {
    grid-template-columns: 1fr;
  }

  .know-d-sec09 .box-text {
    font-size: 1.5rem;
  }

}

/* ===================
   学習資料
===================== */
.document-section {
  position: relative;
}

.document-section .title::before {
  content: '';
  position: absolute;
  top: 72%;
  right: 0;
  transform: translate(-50%, -50%);
  width: calc((284 / 1600) * 100vw);
  max-width: 284px;
  height: calc((310 / 1600) * 100vw);
  max-height: 310px;
  background: url('../img/document/deco01.png') no-repeat;
  background-size: 100%;
}

.document__content {
  padding: 0px 0 150px;
}

.document__box_titile {
  background-color: #d1f29d;
  max-height: 150px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.document__box_titile h3 {
  padding: 40px;
  font-size: 3.9rem;
  max-width: 1070px;
  margin: 0 auto;
  text-align: center;
}

.document__box_titile02 h4 {
  padding-top: 40px;
  font-size: 3.9rem;
  max-width: 1070px;
  margin: 0 auto;
  text-align: center;
}

.document__box_titile02 .document__box_dec {
  color: #52BBED;
  font-size: 5.8rem;
}

.document__inner {
  width: 90%;
  max-width: 1070px;
  margin: auto;
}

.document__box {
  display: flex;
  padding: 55px 0;
}

.document__box+.document__box {
  border-top: 1px solid #023f88;
}

.document__box-body {
  order: 2;
  width: calc((100% - calc((285 / 1070) * 100%)));
  max-width: 751px;
  margin-left: auto;
}

.document__box-body.irregular {
  max-width: 420px;
}

.document__box-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.428;
  color: #000000;
}

.document__box-text {
  font-size: 21px;
  font-weight: 700;
  line-height: 2.19;
  margin-top: 1.428em;
}

.document__box-small {
  font-size: 1.2rem;
  line-height: 1.8;
  display: block;
}

.download-btn {
  display: block;
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  width: 90%;
  max-width: 328px;
  margin: 1.666em 0 0 auto;
  padding: 1em 0;
  border-radius: 50px;
  border: 2px solid #52bbed;
  background-color: #52bbed;
  text-align: center;
  opacity: 0.4s ease;
}

.download-btn:hover {
  background-color: #ffffff;
  color: #52bbed;
}

.document__box .img-wrap {
  order: 1;
  width: calc((285 / 1070) * 100%);
  max-width: 285px;
  margin-right: 15px;
}

.document__box .img-wrap.irregular {
  width: calc((600 / 1070)* 100%);
  max-width: 600px;
}

@media screen and (max-width: 1024px) {
  .document__box-title {
    font-size: 31px;
  }

  .document__box-text,
  .download-btn {
    font-size: 19px;
  }
}

@media screen and (max-width: 767px) {
  .document-section .title::before {
    top: 148%;
    transform: translate(-10%, 0%);
    width: 110px;
    height: 132px;
    z-index: 1;
  }

  .document__content {
    padding: 0px 0 90px;
  }

  .document__box_titile h3 {
    padding: 5vw;
    font-size: 2.9rem;
  }

  .document__box {
    flex-direction: column;
    padding: 35px 0;
  }

  .document__box-text {
    margin-top: 0.5em;
  }

  .document__box-body {
    width: 100%;
    max-width: none;
  }

  .document__box-title {
    font-size: 27px;
  }

  .document__box_titile02 h4 {
    font-size: 27px;
    padding-top: 25px;
  }

  .document__box-text {
    font-size: 21px;
    line-height: 1.89;
  }

  .document__box_titile02 .document__box_dec {
    font-size: 3.2rem;
    line-height: 1.2;
  }

  .document__box-text,
  .download-btn {
    font-size: 17px;
  }

  .download-btn {
    max-width: 230px;
  }

  .document__box .img-wrap {
    width: 100%;
    margin: 20px auto 0;
  }

  .document__box .img-wrap.irregular {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ===================
   other-subject
===================== */
.other-subject {
  background-image: linear-gradient(100deg, #d3f49f 0, #d3f49f 65%, #f0fbde 65%, #f0fbde 100%);
}

.other-subject__wrap {
  max-width: 1600px;
  margin: auto;
  position: relative;
  z-index: 0;
}

.other-subject__wrap::before,
.other-subject__wrap::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}

.other-subject__wrap::before {
  width: min(160.7px, calc((160.7 / 1600) * 100vw));
  height: min(228.8px, calc((228.8 / 1600) * 100vw));
  background-image: url('../img/quiz/subject_deco01.svg');
  top: 68px;
  left: calc((40 / 1600) * 100vw);
}

.other-subject__wrap::after {
  width: min(167.5px, calc((167.5 / 1600) * 100vw));
  height: min(167.9px, calc((167.9 / 1600) * 100vw));
  background-image: url('../img/quiz/subject_deco03.svg');
  top: 78px;
  right: calc((60 / 1600) * 100vw);
}

.other-subject__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.other-subject__btns {
  flex-grow: 1;
  max-width: 489px;
  display: flex;
  flex-direction: column;
  margin-top: min(47px, calc((47 / 1068) * 100%));
}

.other-subject__btns .btn+.btn {
  margin-top: 37px;
}

.other-subject__btns .btn a {
  display: block;
  font-size: 3rem;
  margin: 0;
  padding: 0.7em min(18.5px, calc((18.5 / 1600) * 100vw)) 0.7em min(37px, calc((37 / 1600) * 100vw));
}

.other-subject__img {
  width: calc((404.9 / 1068) * 100%);
  max-width: 404.9px;
  margin-left: 25px;
  position: relative;
}

.other-subject__img::before {
  content: "";
  display: block;
  width: min(207.4px, calc((207.4 / 1600) * 100vw));
  height: min(170px, calc((170 / 1600) * 100vw));
  background: url('../img/quiz/subject_deco02.svg') no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: min(8px, calc(8 / 1600) * 100vw);
  left: max(-97px, calc((-97 / 1600) * 100vw));
  z-index: -1;
}

@media screen and (max-width: 1200px) {
  .other-subject__btns .btn a {
    font-size: 2.7rem;
  }
}

@media screen and (max-width: 1024px) {
  .other-subject__btns .btn+.btn {
    margin-top: 27px;
  }

  .other-subject__btns .btn a {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .other-subject__wrap::before {
    width: 77.03px;
    height: 109.68px;
    top: 9px;
  }

  .other-subject__wrap::after {
    width: 80.29px;
    height: 80.48px;
    top: min(420px, 55%);
  }

  .other-subject__content {
    display: block;
  }

  .other-subject__btns .btn+.btn {
    margin-top: 17px;
  }

  .other-subject__btns .btn a {
    font-size: 2.1rem;
  }

  .other-subject__img {
    width: 80%;
    margin: 40px auto 0
  }

  .other-subject__img::before {
    width: 99.42px;
    height: 81.49px;
  }
}

/* ===================
   活動記録
===================== */
.page-id-381 .main,
:is(body[class~="single-active-log"], body[class~="post-type-archive-active-log"]) .main {
  padding-top: 60px;
}

:is(body[class~="single-active-log"]) .single-title {
  text-align: center;
  color: #1b2c3a;
  margin-bottom: 2em;
}

:is(body[class~="single-active-log"], body[class~="post-type-archive-active-log"]) .top_img .h1 {
  display: grid;
  place-content: center;
}

:is(body[class~="single-active-log"], body[class~="post-type-archive-active-log"]) .top_img .h1 .h1_span {
  font-size: 11rem;
}

:is(body[class~="post-type-archive-active-log"]) .title {
  margin-bottom: 6em;
}

:is(body[class~="post-type-archive-active-log"]) .title .fiki {
  background-color: #52bbed;
}

:is(body[class~="post-type-archive-active-log"]) .title .fiki::before {
  border-top-color: #52bbed;
}

/* archive */
.archive-active-log__inner {
  width: 90%;
  max-width: 1400px;
}

.active-log__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 27px;
  margin-bottom: 100px;
}

.active-log__list-thumb {
  aspect-ratio: 340/233;
  border-radius: 24px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: opacity .3s;
}

.active-log__list-thumb>img {
  height: 100%;
  object-fit: cover;
}

.active-log__list-item-title {
  transition: color .3s;
}

.active-log__list-item:hover .active-log__list-item-title {
  color: #023F88;
}

.active-log__list-item:hover .active-log__list-thumb {
  opacity: .85;
}

.single-active-log .single__content a {
  color: #00ccff;
  text-decoration: underline;
}

/* single */
.recognize__active-log .title .fiki {
  background-color: #f49e40;
}

.recognize__active-log .title .fiki::before {
  border-top: 18px solid #f49e40;
}

.recognize__active-log .inner,
.active-log__inner {
  width: 90%;
  padding-left: 0;
  padding-right: 0;
}


/* post */
.active-log__mainvisual {
  height: 421px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.recognize__active-log .active-log__mainvisual a {
  display: block;
  width: 100%;
  height: 100%;
}

.active-log__mainvisual-inner {
  height: 100%;
  position: relative;
}

.active-log__mainvisual-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.active-log__mainvisual-bg img {
  transition: 0.4s ease;
  object-fit: cover;
  height: 100%;
}

.recognize__active-log .active-log__mainvisual a:hover+.active-log__mainvisual-bg img {
  transform: scale(1.2);
}

.active-log__mainvisual-text {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  bottom: calc((44 / 421) * 100%);
  right: calc((78 / 1100) * 100%);
  text-align: right;
  line-height: 1.38;
  filter: drop-shadow(3px 3px 5px #000000);
  -webkit-filter: drop-shadow(3px 3px 5px #000000);
}

.active-log__purpose--top {
  padding: 30px 0 35px;
}

.active-log__purpose-title {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
}

.active-log__purpose-text {
  text-align: center;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  margin-top: 1.444em;
}

.active-log__purpose-text .text-wrap {
  display: inline-block;
  width: 100%;
  margin-top: 2.222em;
}

.active-log__purpose-text .text-wrap:first-child {
  margin-top: 0;
}

.active-log__purpose--bottom {
  padding: 59px 0 40px;
  border-top: 1px solid #d3d3d3;
}

.active-log__purpose-flow {
  display: flex;
}

.active-log__purpose-img {
  width: calc((100% - 27px * 2) / 3);
  max-width: 331.5px;
  margin-left: 27px;
}

.active-log__purpose-img:first-child {
  margin: 0;
}

.active-log__purpose-caption {
  font-size: 18px;
  line-height: 1.75;
  font-weight: 600;
  margin-top: 0.555em;
}

.active-log__box {
  margin-top: 50px;
}

.active-log__box-title {
  font-size: 28.3px;
  line-height: 2;
  padding-left: 0.459em;
  border-left: 0.212em solid #51bbed;
}

.active-log__box-content {
  margin-top: 27px;
  border-radius: 20px;
  background-color: #d2f49e;
  display: flex;
  padding: 33px calc((20 / 1100) * 100%) 23px;
}

.active-log__box-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  width: calc(100% - calc((382.6 / 1100) * 100%));
}

.active-log__box-text .text-wrap {
  width: 100%;
  display: inline-block;
  margin-top: 1.944em;
}

.active-log__box-text-comment {
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
}

.active-log__box-text .text-wrap:first-child {
  margin-top: 0;
}

.active-log__box-image-wrap {
  width: calc((382.6 / 1100) * 100%);
  max-width: 382.6px;
  margin-left: 20px;
}

.active-log__box-img+.active-log__box-img {
  margin-top: 10px;
}

.active-log__tour-list {
  border: 1px solid #040000;
  margin-top: 60px;
}

.active-log__tour-list>div {
  display: flex;
  border-top: 1px solid #040000;
}

.active-log__tour-list>div:first-child {
  border-top: none;
}

.active-log__tour-list dt,
.active-log__tour-list dd {
  font-size: 17px;
  padding: 1.058em 0.833em;
}

.active-log__tour-list dt {
  color: #ffffff;
  width: 207.9px;
  flex-shrink: 0;
  background-color: #51bbed;
  border-right: 1px solid #040000;
  line-height: 1;
}

.active-log__tour-list dd {
  font-weight: 400;
  line-height: 1.47;
  flex-grow: 1;
}

.active-log__gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.active-log__gallery-img {
  width: calc((100% - 15px * 2) / 3);
  max-width: 352px;
  margin: 15px 0 0 15px;
}

.active-log__gallery-img:nth-child(3n + 1) {
  margin-left: 0;
}

.active-log__text {
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  margin-top: 1.94em;
}

.btn03 {
  display: block;
  width: 90%;
  max-width: 341px;
  margin: auto;
  color: #ffffff;
  font-size: 28.3px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid #51bbed;
  transition: 0.3s ease;
  border-radius: 50px;
  padding: 0.7067em 0;
  background-color: #51bbed;
  text-align: center;
}

.single-active-log .active-log__box .btn03:hover,
.btn03:hover {
  background-color: #ffffff;
  color: #51bbed;
}

.active-log__box .btn03 {
  margin-top: 40px;
}

.single-active-log .active-log__box .btn03 {
  color: #ffffff;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {

  /* archive */
  .active-log__list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* post */
  .active-log__mainvisual-text,
  .active-log__purpose-title {
    font-size: 29px;
  }

  .active-log__purpose-text,
  .active-log__purpose-caption,
  .active-log__box-text,
  .active-log__text {
    font-size: 17px;
  }

  .active-log__box-title,
  .btn03 {
    font-size: 25px;
  }

  .active-log__tour-list dt,
  .active-log__tour-list dd {
    font-size: 16px;
  }

  .active-log__purpose-img {
    width: calc((100% - 17px * 2) / 3);
    margin-left: 17px;
  }
}

@media screen and (max-width: 991px) {

  /* archive */
  :is(body[class~="single-active-log"], body[class~="archive-active-log"]) .main {
    padding-top: 0px;
  }
}

@media screen and (max-width: 767px) {

  /* archive */
  :is(body[class~="single-active-log"], body[class~="post-type-archive-active-log"]) .top_img .h1 .h1_span {
    font-size: 6rem;
  }

  :is(body[class~="post-type-archive-active-log"]) .title {
    margin-bottom: 3em;
  }

  .active-log__list {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
    gap: 40px 27px;
  }

  /* post */
  .recognize__active-log .title {
    padding-bottom: 30px;
  }

  .active-log__mainvisual {
    height: 221px;
  }

  .active-log__mainvisual-text,
  .active-log__purpose-title {
    font-size: 22px;
  }

  .active-log__purpose-text,
  .active-log__purpose-caption,
  .active-log__box-text,
  .active-log__text {
    font-size: 16px;
    line-height: 2;
  }

  .active-log__box-title,
  .btn03 {
    font-size: 22px;
  }

  .active-log__tour-list dt,
  .active-log__tour-list dd {
    font-size: 15px;
    box-sizing: border-box;
  }

  .active-log__gallery {
    margin-top: 30px;
  }

  .active-log__gallery-img {
    width: calc((100% - 7px) / 2);
    margin: 7px 0 0 7px;
  }

  .active-log__gallery-img:nth-child(odd) {
    margin-left: 0;
  }

  .active-log__gallery-img:nth-child(even) {
    margin-left: 7px;
  }

  .active-log__box-content {
    display: block;
    padding: 33px 15px 23px;
  }

  .active-log__box-image-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: none;
    margin: 20px 0 0;
  }

  .active-log__box-text {
    width: 100%;
  }

  .active-log__box-img {
    width: calc((100% - 10px) / 2);
    flex-grow: 1;
  }

  .active-log__box-img+.active-log__box-img {
    margin: 0 0 0 10px;
  }

  .active-log__box-img:nth-child(3) {
    flex-grow: 1;
    margin: 10px 0 0;
  }

  .active-log__purpose-flow {
    display: block;
  }

  .active-log__purpose-img {
    width: 100%;
    margin: 27px auto 0;
  }

  .active-log__purpose-img:first-child {
    margin: auto;
  }

  .active-log__tour-list {
    margin-top: 30px;
  }

  .active-log__tour-list>div {
    display: block;
  }

  .active-log__tour-list dt {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #040000;
  }

  .active-log__purpose--bottom {
    padding: 49px 0 30px;
  }

  .active-log__purpose-text {
    font-feature-settings: "palt";
  }

  .active-log__box04 .active-log__box-img {
    width: 100%;
  }

  .active-log__purpose-caption {
    margin-top: 5px;
  }
}






/*=============================================
2024.0925追加
 *=============================================*/
.active-log__box-title-new {
  margin-bottom: max(3.3%, 20px);
}

.new-txt {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.body-flexBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.body-flexBox__txt {
  width: 100%;
}

.body-flexBox__txt .bottom-none {
  margin-bottom: 0;
}

.body-flexBox__img {
  width: 81.2%;
  margin-left: max(2.81%, 15px);
}

.body-flexBox__leftImg .body-flexBox__img {
  margin-left: 0;
  margin-right: max(2.81%, 15px);
}

.many-comments {
  margin-bottom: max(2%, 15px);
}

.many-comments__ttl {
  font-size: 20px;
  font-weight: 600;
}

.many-comments__item {
  position: relative;
  padding-left: 10px;
}

.many-comments__item::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #000;
  left: 0;
  top: 12px;
}

.active-log__box-new .active-log__purpose--bottom {
  border-top: none;
  padding: 0;
}

.img-half {
  width: 50%;
  margin: 0 auto;
}




@media screen and (max-width: 1024px) {
  .new-txt {
    font-size: 17px;
    margin-bottom: 25px;
  }

  .body-flexBox {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 900px) {
  .body-flexBox {
    flex-direction: column;
  }

  .body-flexBox__img,
  .body-flexBox__leftImg .body-flexBox__img {
    max-width: 600px;
    width: 100%;
    margin: 25px auto 0;
    order: 2;
  }
}


@media screen and (max-width: 767px) {
  .new-txt {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .body-flexBox {
    margin-bottom: 22px;
  }
}

@media screen and (max-width: 480px) {
  .new-txt {
    margin-bottom: 18px;
  }

  .body-flexBox {
    margin-bottom: 18px;
  }

  .img-half {
    width: 100%;
  }
}


/*=============================================
2025.12.11追加 sakuma
*=============================================*/

.know-d-sec02Box {
  margin-bottom: 5%;
}

.know-d-sec02Box__img {
  width: min(90%, 700px);
  margin: 0 auto;
}

.know-d-sec02Box__txtBox {
  margin: max(3%, 15px) 0 max(5%, 20px);

}

.know-d-sec02Box__txt {
  text-align: left;
  margin-top: 0;
  margin-bottom: max(3%, 15px);
  font-size: 2.2rem;
}

.know-d-sec09__imgBox {
  .img {
    margin-bottom: max(5%, 20px);
  }
}