@charset "UTF-8";

/* ===============================================
 base
=============================================== */

:root {
  --txt-base-color: #000;
  --title-base-color: #000;
  --bk-base-color: #ecedef;
  --corporate-color: #4cbca6;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-feature-settings: "palt";
  color: var(--txt-base-color);
  position: relative;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
::after,
::before {
  box-sizing: inherit;
}
a,
abbr,
address,
article,
aside,
audio,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
iframe,
img,
ins,
label,
legend,
li,
main,
mark,
nav,
ol,
p,
pre,
q,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
video {
  padding: 0;
  margin: 0;
  border: 0;
}
a {
  outline: 0;
  -webkit-touch-callout: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
:focus,
a:focus {
  outline: 0;
}
a,
a:visited {
  color: inherit;
}
article,
aside,
footer,
header,
main,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}
img {
  vertical-align: top;
  border-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote::after,
blockquote::before,
q::after,
q::before {
  content: none;
}
[hidden] {
  display: none !important;
}
[disabled] {
  cursor: not-allowed;
}
:focus:not(:focus-visible) {
  outline: 0;
}
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="time"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
textarea {
  display: block;
}
fieldset {
  margin: 0;
  border: none;
}
legend {
  display: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
[v-cloak] {
  display: none;
}

/* ===============================================
 common
=============================================== */

/* br for PC/SP
----------------------- */
.br_pc {
  display: inline !important;
}
.br_sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .br_pc {
    display: none !important;
  }
  .br_sp {
    display: inline !important;
  }
}

/* wrap_inner
----------------------- */
.wrap_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .wrap_inner {
    max-width: 100%;
    padding: 0 4vw;
  }
}

/* ===============================================
 header
=============================================== */

header {
  width: 100%;
  background-color: var(--bk-base-color);
  padding: 40px 0;
}
header div img {
  display: block;
  width: 266px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  header {
    padding: 20px 0;
  }
  header div img {
    width: 140px;
  }
}

/* ===============================================
 footer
=============================================== */

footer {
  background-color: var(--bk-base-color);
}

/* totop
----------------------- */
footer .pagetop {
  display: none;
}
@media screen and (max-width: 767px) {
  footer .pagetop {
    display: block;
    background-color: var(--corporate-color);
    width: 100%;
    height: 10.666vw;
    text-align: center;
    position: relative;
  }
  footer .pagetop span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: calc(50% - 3.6vw);
    color: #fff;
    font-size: 10px;
    font-size: 2.666vw;
    font-weight: 700;
  }
  footer .pagetop span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -3px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* footer_inner
----------------------- */
.footer_inner {
  padding: 90px 0 75px;
  text-align: center;
}
.footer_logo img {
  display: block;
  width: 266px;
  margin: 0 auto 50px;
}
.copyright {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .footer_inner {
    padding: 12vw 0 10vw;
  }
  .footer_logo img {
    width: 140px;
    margin: 0 auto 6.666vw;
  }
  .copyright {
    font-size: 8px;
    font-size: 0.5rem;
  }
}

/* ===============================================
 top
=============================================== */

.sec_top {
  background-color: #fff;
  padding: 60px 0 80px;
  text-align: center;
}
.sec_top .top_txtbox {
  max-width: auto;
  margin: 0 auto;
  display: table;
}
.sec_top h1 {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  color: var(--title-base-color);
  display: inline-block;
  letter-spacing: 0.01em;
}
.sec_top p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--title-base-color);
  margin: 20px auto 0;
  text-align: left;
  display: table-caption;
  caption-side: bottom;
}
@media screen and (max-width: 1020px) {
  .sec_top h1 {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 767px) {
  .sec_top {
    padding: 35px 0 40px;
  }
  .sec_top .top_txtbox {
    display: block;
  }
  .sec_top h1 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
    display: block;
    letter-spacing: 0;
  }
  .sec_top p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 25px auto 0;
    display: block;
    caption-side: unset;
  }
}

/* ===============================================
 block01
=============================================== */

.sec_block01 {
  background-image: linear-gradient(#ffcce0, #ffffff 90%);
  padding: 0;
}
.sec_block01 .wrap_inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 50px 80px;
}
.sec_block01 h2 {
  position: absolute;
  top: 70px;
  right: 50px;
  z-index: 2;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--title-base-color);
}
.sec_block01 picture {
  position: relative;
  z-index: 1;
  width: 100%;
}
.sec_block01 p.member {
  font-size: 16px;
  font-size: 1rem;
  color: var(--title-base-color);
  margin: 10px 0 0 auto;
  text-align: right;
}
.sec_block01 p.school {
  position: absolute;
  top: 430px;
  left: 100px;
  z-index: 2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title-base-color);
}
.sec_block01 p.school ruby {
  ruby-position: under;
  font-size: 32px;
  font-size: 2rem;
}
.sec_block01 p.school ruby rt {
  font-size: 0.35em;
  ruby-align: center;
  margin-top: 0.1em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1100px) {
  .sec_block01 h2 {
    font-size: 3.272vw;
  }
  .sec_block01 p.school {
    top: 39.09vw;
    left: 9.09vw;
    font-size: 2.181vw;
  }
  .sec_block01 p.school ruby {
    font-size: 2.909vw;
  }
}
@media screen and (max-width: 767px) {
  .sec_block01 .wrap_inner {
    max-width: 100%;
    padding: 0 4vw;
    padding: 17.333vw 4vw 10vw;
  }
  .sec_block01 h2 {
    top: 9.3vw;
    right: 0;
    width: 100%;
    font-size: 4.8vw;
    text-align: center;
  }
  .sec_block01 p.member {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 5px 0 0 5vw;
    text-align: left;
  }
  .sec_block01 p.school {
    top: 25.333vw;
    left: 56vw;
    font-size: 3.733vw;
  }
  .sec_block01 p.school ruby {
    font-size: 4.8vw;
  }
  .sec_block01 p.school ruby rt {
    font-size: 0.35em;
    ruby-align: center;
    margin-top: 0.1em;
    letter-spacing: 0.05em;
  }
}

/* ===============================================
 block02
=============================================== */

.sec_block02 {
  background-color: #fff;
  padding: 0;
}
.sec_block02 .imgbox p {
  font-size: 16px;
  font-size: 1rem;
  color: var(--title-base-color);
  margin: 10px 0 0;
}
.sec_block02 .imgbox2 {
  width: 48%;
  margin: 50px auto 0;
}
.sec_block02 .imgbox2 p {
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--title-base-color);
  margin: 10px 0 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .sec_block02 .wrap_inner {
    padding: 0;
  }
  .sec_block02 .imgbox p {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 0 4vw;
  }
  .sec_block02 .imgbox2 {
    width: 64%;
    margin: 5.333vw auto 0;
  }
  .sec_block02 .imgbox2 p {
    font-size: 10px;
    font-size: 0.625rem;
    margin: 5px 0 0;
  }
}

/* ===============================================
 block03
=============================================== */

.sec_block03 {
  background-color: #fff;
  padding: 0 0 90px;
}
.sec_block03 .heading {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0064c8;
  margin: 80px 0 0;
}
.sec_block03 .paragraph:last-child .heading {
  margin: 50px 0 0;
}
.sec_block03 .question {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #ff46b8;
  margin: 35px 0 0;
}
.sec_block03 .answer {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--title-base-color);
  margin: 25px 0 0;
}
.sec_block03 .answer span {
  font-weight: 700;
  color: #0064c8;
}
.block03_txtwrap1 {
  display: flex;
  justify-content: space-between;
}
.block03_txtwrap1 .imgbox {
  width: 203px;
  padding: 0 0 30px;
}
.block03_txtwrap1 .imgbox img {
  margin: 30px 0 0;
}
.block03_txtwrap1 .txtbox {
  width: calc(100% - 203px - 20px);
}
.block03_txtwrap2 {
  display: flex;
  justify-content: space-between;
}
.block03_txtwrap2 .txtbox {
  width: 47%;
}
.block03_txtwrap2 .imgbox {
  width: 47%;
}
.block03_txtwrap2 .imgbox img {
  margin: 35px 0 0;
}
.block03_txtwrap3 {
  display: flex;
  justify-content: space-between;
}
.block03_txtwrap3 .txtbox {
  width: 47%;
}
.block03_txtwrap3 .imgbox {
  width: 47%;
}
.block03_txtwrap3 .imgbox img {
  margin: 35px 0 0;
}
.block03_txtwrap3 .imgbox p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  margin: 10px 0 0;
  text-align: right;
}
.sec_block03 .work {
  position: relative;
  margin: 80px auto -20px;
}
.sec_block03 .work img {
  width: 36.6%;
  margin: 0 auto;
  display: block;
}
.sec_block03 .work_description {
  position: absolute;
  top: 3em;
  left: 0;
  width: 33%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.sec_block03 .note {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--title-base-color);
  margin: 25px 0 0;
}
.sec_block03 .product_info {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec_block03 {
    padding: 0 0 30px;
  }
  .sec_block03 .heading {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 40px 0 0;
  }
  .sec_block03 .paragraph:last-child .heading {
    margin: 30px 0 0;
  }
  .sec_block03 .question {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 20px 0 0;
  }
  .sec_block03 .answer {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 20px 0 0;
  }
  .block03_txtwrap1 {
    display: block;
  }
  .block03_txtwrap1 .imgbox {
    width: 100%;
    padding: 0;
  }
  .block03_txtwrap1 .imgbox img {
    margin: 25px auto 0;
    width: 44%;
    display: block;
  }
  .block03_txtwrap1 .txtbox {
    width: 100%;
  }
  .block03_txtwrap2 {
    display: block;
  }
  .block03_txtwrap2 .imgbox {
    width: 100%;
  }
  .block03_txtwrap2 .imgbox img {
    margin: 25px 0 0;
    padding: 0 0 10px;
  }
  .block03_txtwrap2 .txtbox {
    width: 100%;
  }
  .block03_txtwrap3 {
    display: block;
  }
  .block03_txtwrap3 .txtbox {
    width: 100%;
  }
  .block03_txtwrap3 .imgbox {
    width: 100%;
  }
  .block03_txtwrap3 .imgbox img {
    margin: 25px 0 0;
    padding: 0 0 10px;
  }
  .block03_txtwrap3 .imgbox p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0;
    text-align: right;
  }
  .sec_block03 .work {
    position: relative;
    margin: 30px auto 0;
    padding: 0 0 10px;
  }
  .sec_block03 .work img {
    width: 52%;
    padding: 0 0 5px;
  }
  .sec_block03 .work_description {
    position: static;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .sec_block03 .note {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.6;
    margin: 20px 0 0;
  }
  .sec_block03 .product_info {
    display: block;
    position: relative;
    height: 140px;
    margin: 20px 0 0;
  }
  .sec_block03 .product_info div {
    position: absolute;
    top: 0;
    left: -4vw;
    width: 100vw;
    height: 100%;
    background-color: #dfeaf4;
    padding: 32px 0;
  }
  .sec_block03 .product_info div p {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 auto 15px;
    text-align: center;
  }
  .sec_block03 .product_info div a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 38px;
    border-radius: 38px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 38px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    background-color: #fff;
    color: #000;
    border: 1px solid #999;
    margin: 0 auto;
  }
  .sec_block03 .product_info div a::after {
    background: url("../images/icon_blank.svg") no-repeat left top;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    width: 12px;
    height: 12px;
    margin: auto;
  }
}

/* ===============================================
 block04
=============================================== */

.sec_block04 {
  background-color: #fff;
  padding: 0 0 100px;
}
.sec_block04 .teacher {
  background-color: #dfeaf4;
  margin: 0 auto;
  padding: 45px 50px;
  display: flex;
  justify-content: space-between;
}
.sec_block04 .teacher_imgbox {
  width: 19%;
}
.sec_block04 .teacher_txtbox {
  width: 50%;
}
.sec_block04 .teacher_txtbox h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  color: #0064c8;
}
.sec_block04 .teacher_txtbox p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 3px 0 0;
}
.sec_block04 .teacher_photo {
  width: 26%;
  background-color: #fff;
  padding: 15px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.sec_block04 .teacher_photo p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 10px 0 0;
}
.sec_block04 .school {
  margin: 100px auto 0;
  display: flex;
  justify-content: space-between;
}
.sec_block04 .school dt {
  width: 207px;
}
.sec_block04 .school dt h3 {
  display: none;
}
.sec_block04 .school dd {
  width: calc(100% - 207px - 50px);
}
.sec_block04 .school dd h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}
.sec_block04 .school dd p.introduction {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 15px 0 0;
}
.sec_block04 .school dd a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  border-radius: 40px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 40px;
  text-decoration: none;
  transition: all 250ms ease;
  background-color: #0064c8;
  color: #fff;
  border: 1px solid #0064c8;
  margin: 20px 0 0;
  padding: 0 100px;
}
.sec_block04 .school dd a:hover {
  background-color: #fff;
  color: #0064c8;
}
@media screen and (max-width: 767px) {
  .sec_block04 {
    padding: 0 0 40px;
  }
  .sec_block04 .wrap_inner {
    padding: 0;
  }
  .sec_block04 .teacher {
    margin: 15px auto 0;
    padding: 40px 4vw 35px;
    display: block;
  }
  .sec_block04 .teacher_imgbox {
    width: 30.666vw;
    margin: 0 auto 25px;
  }
  .sec_block04 .teacher_txtbox {
    width: 100%;
  }
  .sec_block04 .teacher_txtbox h3 {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .sec_block04 .teacher_txtbox p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .sec_block04 .teacher_photo {
    width: 54.666vw;
    margin: 25px auto 0;
    padding: 12px;
  }
  .sec_block04 .teacher_photo p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 6px 0 0;
  }
  .sec_block04 .school {
    margin: 40px auto 0;
    display: block;
  }
  .sec_block04 .school dt {
    width: 73.333vw;
    margin: 0 auto 15px;
    display: flex;
    align-items: flex-end;
  }
  .sec_block04 .school dt img {
    width: 50%;
  }
  .sec_block04 .school dt h3 {
    display: block;
    width: 40%;
    margin: 0 auto;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 400;
  }
  .sec_block04 .school dd {
    width: 100%;
    padding: 0 4vw;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .sec_block04 .school dd h3 {
    display: none;
  }
  .sec_block04 .school dd p.interview {
    font-size: 10px;
    font-size: 0.625rem;
    width: 66.666vw;
    margin: 5px auto 0;
  }
  .sec_block04 .school dd p.introduction {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 25px 0 0;
  }
  .sec_block04 .school dd a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56%;
    height: 35px;
    border-radius: 35px;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 35px;
    text-decoration: none;
    background-color: #0064c8;
    color: #fff;
    border: 1px solid #0064c8;
    margin: 18px auto 0;
    padding: 0;
  }
}

/* ===============================================
 block05
=============================================== */

.sec_block05 {
  background-color: #0064c8;
  padding: 30px 0;
}
.sec_block05 dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec_block05 dt {
  width: 37%;
}
.sec_block05 dd {
  width: 48%;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
}
.sec_block05 dd a {
  white-space: nowrap;
}
.sec_block05 dd a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .sec_block05 {
    padding: 15px 0;
  }
  .sec_block05 dt {
    width: 37vw;
  }
  .sec_block05 dd {
    width: 45vw;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .sec_block05 dd a {
    display: block;
  }
}

/* ===============================================
 block06
=============================================== */

.sec_block06 {
  background-color: #dfeaf4;
  padding: 100px 0;
}
.sec_block06 h2 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #0064c8;
  text-align: center;
}
.sec_block06 ul {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 0;
}
.sec_block06 li {
  width: 49%;
}
.sec_block06 li p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  margin: 10px 0 0;
  text-align: right;
}
.sec_block06 .present {
  background-color: #0064c8;
  margin: 60px 0 0;
  padding: 25px;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}
.sec_block06 .cookcoat {
  position: relative;
  margin: 30px 0 0;
}
.sec_block06 .cookcoat .txtbox {
  position: relative;
  width: 370px;
  z-index: 2;
}
.sec_block06 .cookcoat .txtbox .catch {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
}
.sec_block06 .cookcoat .txtbox .logo_pc {
  display: block;
  width: 52%;
  margin: 35px auto;
}
.sec_block06 .cookcoat .txtbox .text {
  width: 82%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}
.sec_block06 .cookcoat .txtbox .text span {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 5px;
}
.sec_block06 .cookcoat .txtbox .logo_sp {
  display: none;
}
.sec_block06 .cookcoat .imgbox {
  position: absolute;
  bottom: 0;
  right: -2%;
  width: 67%;
  z-index: 1;
}
@media screen and (max-width: 850px) {
  .sec_block06 h2 {
    font-size: 3.764vw;
  }
  .sec_block06 .present {
    font-size: 2.75vw;
  }
}
@media screen and (max-width: 767px) {
  .sec_block06 {
    padding: 40px 0 25px;
  }
  .sec_block06 .wrap_inner {
    padding: 0;
  }
  .sec_block06 h2 {
    font-size: 20px;
    font-size: 1.25rem;
    text-align: left;
    padding: 0 4vw;
  }
  .sec_block06 ul {
    display: block;
    margin: 25px 0 0;
    padding: 0 4vw;
  }
  .sec_block06 li {
    width: 100%;
  }
  .sec_block06 li:first-child {
    margin: 0 0 10px;
  }
  .sec_block06 li p {
    font-size: 12px;
    font-size: 0.75rem;
    margin: 10px 0 0;
  }
  .sec_block06 .present {
    margin: 20px 0 0;
    padding: 20px;
    border-radius: 0;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
  }
  .sec_block06 .cookcoat {
    margin: 25px 0 0;
    padding: 0 4vw;
  }
  .sec_block06 .cookcoat .txtbox {
    width: 100%;
  }
  .sec_block06 .cookcoat .txtbox .catch {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .sec_block06 .cookcoat .txtbox .logo_pc {
    display: none;
  }
  .sec_block06 .cookcoat .txtbox .text {
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .sec_block06 .cookcoat .txtbox .text span {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 20px 0 2px;
  }
  .sec_block06 .cookcoat .txtbox .logo_sp {
    display: block;
    width: 22.666vw;
    margin: 20px auto 5px;
  }
  .sec_block06 .cookcoat .imgbox {
    position: static;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 0 1.333vw;
  }
}

/* ===============================================
 links
=============================================== */

.sec_links {
  background-color: #fff;
  padding: 0 0 70px;
}
.sec_links h2 {
  width: 100%;
  display: block;
  padding: 60px 0 0;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  color: var(--title-base-color);
  text-align: center;
}
.sec_links nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 660px;
  margin: 45px auto 0;
}
.sec_links nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 68px;
  border-radius: 68px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 250ms ease;
  position: relative;
}
.sec_links nav a.btn_contact {
  background-color: var(--corporate-color);
  color: #fff;
  border: 1px solid var(--corporate-color);
}
.sec_links nav a.btn_contact::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 22px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  transition: all 250ms ease;
}
.sec_links nav a.btn_contact:hover {
  background-color: #fff;
  color: var(--corporate-color);
}
.sec_links nav a.btn_contact:hover::after {
  border-right: 2px solid var(--corporate-color);
  border-top: 2px solid var(--corporate-color);
}
.sec_links nav a.btn_pdf {
  background-color: #fff;
  color: #000;
  border: 1px solid #e6e6e6;
}
.sec_links nav a.btn_pdf::after {
  background: url("../images/icon_blank.svg") no-repeat left top;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  width: 12px;
  height: 12px;
  margin: auto;
  transition: all 250ms ease;
}
.sec_links nav a.btn_pdf:hover {
  background-color: #3e3e3e;
  color: #fff;
  border: 1px solid #3e3e3e;
}
.sec_links nav a.btn_pdf:hover::after {
  background: url("../images/icon_blank_white.svg") no-repeat left top;
}
@media screen and (max-width: 767px) {
  .sec_links {
    padding: 0 0 10vw;
  }
  .sec_links h2 {
    padding: 8vw 0 0;
    font-size: 16px;
    font-size: 1rem;
  }
  .sec_links nav {
    width: 315px;
    margin: 5.333vw auto 0;
  }
  .sec_links nav a {
    width: 150px;
    height: 38px;
    border-radius: 38px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 38px;
  }
  .sec_links nav a.btn_contact::after {
    top: calc(50% - 4px);
    right: 14px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
  }
  .sec_links nav a.btn_contact:hover::after {
    border-right: 1px solid var(--corporate-color);
    border-top: 1px solid var(--corporate-color);
  }
  .sec_links nav a.btn_pdf::after {
    right: 14px;
    width: 12px;
    height: 12px;
  }
}

/* +++ */
