@charset "UTF-8";
/* ======================================================================
 common style index
・variable
・reset
・base
・utility
・component
====================================================================== */
/* ======================================================================
 ・variable
====================================================================== */
:root {
  --color-black: #000;
  --color-ttl-black: #222;
  --color-pink: #FF8989;
  --color-light-pink: #FFE0DD;
  --color-option-pink: #FF8A8A;
  --color-card-pink: #FF5168;
  --color-pagetop-pink: #FF8171;
  --color-blue: #3787BC;
  --color-light-blue: #D7E8F2;
  --color-basic-blue: #0188C0;
  --color-summary-blue: #1C2660;
  --color-gray: #555;
  --color-light-gray: #e0d4d4;
  --color-strength-gray: #F7F7F7;
  --color-plan-gray: #CCCACA;
  --color-office-gray: #525252;
  --color-summary-gray: #B4B4B4;
  --color-contact-gray: #BFBFBF;
  --font-en: "Quicksand";
  --font-jp: "Noto Sans JP";
  --font-min: "Shippori Mincho B1";
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-black: 900;
}

/* ======================================================================
 reset
====================================================================== */
/*! destyle.css v1.0.15 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model */
/* ============================================ */
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

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

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

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: var(--font-bold);
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

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

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

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

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

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

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

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

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

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

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

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

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

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

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

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

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

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

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

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

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

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

body {
  color: var(--color-black);
  font-family: "BIZ UDPGothic", "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Helvetica, Arial, Meiryo, メイリオ, sans-serif;
  font-weight: var(--font-regular);
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.05em;
}
body.active {
  overflow: hidden;
  -webkit-overflow-scrolling: auto;
}

@media screen and (min-width: 768px) {
  body {
    width: 100%;
  }
}
html, body {
  width: 100%;
  height: 100%;
}

* {
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* h1 - h6 */
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

/* a */
a {
  text-decoration: none;
}

a:link {
  color: var(--color-black);
  cursor: pointer;
}

a:link[target=_blank] {
  display: inline-flex;
}
@media screen and (max-width: 767px) {
  a:link[target=_blank] {
    display: inline-flex;
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a:visited {
  color: var(--color-black);
}

a:hover {
  color: var(--color-black);
}

a:active {
  color: var(--color-black);
}

a[href^=tel] {
  color: var(--color-black);
}

/* button */
button {
  display: block;
}

textarea {
  resize: vertical;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #222222;
}

/* placeholder */
input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: var(--color-placeholder-gray);
}

input:placeholder-shown, textarea:placeholder-shown {
  color: var(--color-placeholder-gray);
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--color-placeholder-gray);
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: var(--color-placeholder-gray);
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--color-placeholder-gray);
  opacity: 1;
}

input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: var(--color-placeholder-gray);
}

input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: var(--color-placeholder-gray);
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: var(--color-placeholder-gray);
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: var(--color-placeholder-gray);
  opacity: 1;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: var(--color-placeholder-gray);
  opacity: 1;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: var(--color-placeholder-gray);
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 header
================================= */
.header {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  padding: 23px 30px;
  z-index: 11;
}
.header .area-left {
  flex-shrink: 0;
  z-index: 1;
}
.header .area-left .nav-logo .link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .area-left .nav-logo .link .img {
  display: block;
  transition: opacity 0.7s 0.5s, width 0.3s, height 0.3s;
}
.header .area-left .nav-logo .link .img-txt {
  display: block;
  text-align: center;
  margin-top: 6px;
  transition: opacity 0.7s 0.5s, width 0.3s, height 0.3s;
}
.header .area-right {
  text-align: center;
}
.header .area-right .area-right-comment {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: var(--font-bold);
}
@media screen and (min-width: 768px) {
  .header .area-left .nav-logo .link {
    transition: opacity 0.3s;
  }
  .header .area-left .nav-logo .link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 15px 10px;
  }
  .header .area-left .nav-logo .link .img {
    width: 148px;
    height: auto;
  }
  .header .area-left .nav-logo .link .img-txt {
    width: 119px;
    height: auto;
  }
  .header .area-right .area-right-comment {
    margin-bottom: 5px;
    font-size: 11px;
  }
}
/* =================================
 l-main
================================= */
/* =================================
 footer
================================= */
.footer .contents-top {
  position: relative;
  padding: 92px 0 78px;
}
.footer .contents-top .inner-contents-top .head-area .box-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.footer .contents-top .inner-contents-top .head-area .box-logo .img,
.footer .contents-top .inner-contents-top .head-area .box-logo .img-txt {
  display: block;
}
.footer .contents-top .inner-contents-top .head-area .box-logo .img-txt {
  margin-top: 8px;
  text-align: center;
}
.footer .contents-top .inner-contents-top .info {
  margin-top: 21px;
  font-size: 14px;
  line-height: 1.6;
}
.footer .contents-bottom {
  background-color: var(--color-blue);
  padding: 8px 0;
}
.footer .contents-bottom .inner-contents-bottom .copyright {
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .footer .contents-top {
    padding: 50px 0 55px;
  }
  .footer .contents-top .inner-contents-top .head-area .box-logo {
    display: flex;
  }
  .footer .contents-top .inner-contents-top .info {
    margin-top: 26px;
    text-align: center;
  }
  .footer .contents-bottom {
    padding: 12px 0;
  }
  .footer .contents-bottom .inner-contents-bottom .copyright {
    text-align: center;
    font-size: 11px;
    line-height: 1.727;
  }
}
/* ======================================================================
 utility
====================================================================== */
/* =================================
 layout
================================= */
.u-cf:after {
  display: block;
  clear: both;
  content: "";
}

@media screen and (min-width: 768px) {
  .u-pc {
    display: block;
  }
  .u-pc-i {
    display: inline;
  }
  .u-pc-ib {
    display: inline-block;
  }
  .u-pc-f {
    display: flex;
  }
  .u-pc-if {
    display: inline-flex;
  }
  .u-sp {
    display: none;
  }
  .u-sp-i, .u-sp-ib, .u-sp-f, .u-sp-if {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
  .u-pc-i, .u-pc-ib, .u-pc-f, .u-pc-if {
    display: none;
  }
  .u-sp {
    display: block;
  }
  .u-sp-i {
    display: inline;
  }
  .u-sp-ib {
    display: inline-block;
  }
  .u-sp-f {
    display: flex;
  }
  .u-sp-if {
    display: inline-flex;
  }
}
/* =================================
 content-size
================================= */
.u-content-size {
  padding: 0;
  margin: 0 auto;
  width: 1200px;
}

.u-content-2 {
  padding: 0;
  margin: 0 auto;
  width: 1052px;
}

.u-content-3 {
  padding: 0;
  margin: 0 auto;
  width: 1080px;
}

@media screen and (max-width: 1200px) {
  .u-content-size {
    padding: 0 20px;
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1052px) {
  .u-content-2 {
    padding: 0 20px;
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .u-content-3 {
    padding: 0 20px;
    margin: 0;
    width: 100%;
  }
}
/* =================================
 text weight
================================= */
.u-lighter {
  font-weight: lighter;
}

.u-bold {
  font-weight: bold;
}

/* =================================
 text align
================================= */
.u-ta-c {
  text-align: center;
}

.u-ta-r {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .u-ta-cl {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u-ta-lc {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .u-ta-cr {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u-ta-cr {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .u-ta-rc {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .u-ta-rc {
    text-align: center;
  }
}
/* =================================
 hover animation
================================= */
.u-hover-1 {
  transition: opacity 0.3s;
}

@media screen and (min-width: 1025px) {
  .u-hover-1:hover {
    opacity: 0.7;
  }
}
/* =================================
 list
================================= */
.u-list-1 .item {
  padding-left: 1em;
  text-indent: -1em;
}

/* ======================================================================
 component
====================================================================== */
/* =================================
 title
================================= */
.c-ttl-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
  font-weight: var(--font-bold);
  text-align: center;
  color: var(--color-ttl-black);
}
.c-ttl-1::before {
  content: "";
  display: block;
  margin-bottom: 14px;
  width: 18px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../../assets/img/common/icon-person.svg");
}
.c-ttl-1 .main {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1.9;
}
.c-ttl-1 .main::before, .c-ttl-1 .main::after {
  content: "";
  display: block;
  height: 1px;
  width: 27px;
  background-color: var(--color-black);
}
.c-ttl-1 .main::before {
  margin-right: 16px;
}
.c-ttl-1 .main::after {
  margin-left: 16px;
}
.c-ttl-1 .sub {
  display: inline-flex;
  font-size: 40px;
  letter-spacing: 2px;
}
.c-ttl-1 .sub::before, .c-ttl-1 .sub::after {
  position: relative;
  display: block;
  font-size: 60px;
  font-weight: var(--font-bold);
  font-family: var(--font-min);
  color: var(--color-pink);
}
.c-ttl-1 .sub::before {
  content: "“";
  top: -20px;
  margin-right: 18px;
}
.c-ttl-1 .sub::after {
  content: "”";
  bottom: -25px;
  margin-left: 18px;
}
.c-ttl-1.c-ttl-1--company::before {
  width: 15px;
  height: 24px;
  background-image: url("../../assets/img/common/icon-building.svg");
}
.c-ttl-1.c-ttl-1--company .sub::before,
.c-ttl-1.c-ttl-1--company .sub::after {
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .c-ttl-1 {
    margin-bottom: 42px;
  }
  .c-ttl-1::before {
    margin-bottom: 6px;
    width: 15px;
    height: 20px;
  }
  .c-ttl-1 .main {
    font-size: 20px;
  }
  .c-ttl-1 .main::before, .c-ttl-1 .main::after {
    width: 23px;
  }
  .c-ttl-1 .main::before {
    margin-right: 15px;
  }
  .c-ttl-1 .main::after {
    margin-left: 15px;
  }
  .c-ttl-1 .sub {
    font-size: 28px;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
  .c-ttl-1 .sub::before, .c-ttl-1 .sub::after {
    position: relative;
    font-size: 50px;
  }
  .c-ttl-1 .sub::before {
    top: -36px;
    margin-right: -11px;
  }
  .c-ttl-1 .sub::after {
    bottom: -56px;
    margin-left: -11px;
  }
  .c-ttl-1.c-ttl-1--company::before {
    width: 14px;
    height: 21px;
  }
}
@media screen and (max-width: 370px) {
  .c-ttl-1 .sub {
    font-size: 26px;
  }
}
.c-ttl-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: var(--font-bold);
  text-align: center;
  color: var(--color-ttl-black);
}
.c-ttl-2::after {
  content: "";
  display: block;
  margin-top: 25px;
  height: 4px;
  width: 60px;
  border-radius: 2px;
  background-color: var(--color-pink);
}
.c-ttl-2 .highlight {
  color: var(--color-pink);
}
.c-ttl-2.c-ttl-2--company::after {
  background-color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .c-ttl-2 {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 1.6;
  }
  .c-ttl-2::after {
    margin-top: 12px;
    height: 3px;
    width: 45px;
  }
}
/* =================================
 buttons
================================= */
.c-btn-1,
.c-btn-1:link,
.c-btn-1:visited {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 228px;
  height: 48px;
  border: 2px solid var(--color-pink);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: var(--font-bold);
  color: #fff;
  margin: 0 auto;
  padding: 16px;
  background-color: var(--color-pink);
  transition: 0.3s;
}
.c-btn-1::after,
.c-btn-1:link::after,
.c-btn-1:visited::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../../assets/img/common/icon-outlink.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transition: background 0.3s;
}
.c-btn-1.c-btn-1--big,
.c-btn-1:link.c-btn-1--big,
.c-btn-1:visited.c-btn-1--big {
  width: 350px;
  height: 70px;
  font-size: 20px;
}
.c-btn-1.c-btn-1--big::after,
.c-btn-1:link.c-btn-1--big::after,
.c-btn-1:visited.c-btn-1--big::after {
  width: 20px;
  height: 20px;
  right: 32px;
}
.c-btn-1.c-btn-1--middle,
.c-btn-1:link.c-btn-1--middle,
.c-btn-1:visited.c-btn-1--middle {
  width: 300px;
  height: 60px;
  font-size: 18px;
}
.c-btn-1.c-btn-1--middle::after,
.c-btn-1:link.c-btn-1--middle::after,
.c-btn-1:visited.c-btn-1--middle::after {
  width: 21px;
  height: 21px;
  right: 24px;
}

@media screen and (min-width: 768px) {
  .c-btn-1:hover,
  .c-btn-1:link:hover {
    background-color: #fff;
    color: var(--color-pink);
  }
  .c-btn-1:hover::after,
  .c-btn-1:link:hover::after {
    background-image: url("../../assets/img/common/icon-outlink-pink.svg");
  }
}
@media screen and (max-width: 767px) {
  .c-btn-1,
  .c-btn-1:link,
  .c-btn-1:visited {
    width: 166px;
    height: 40px;
    font-size: 14px;
    padding: 11px 14px;
    justify-content: flex-start;
    letter-spacing: 0;
  }
  .c-btn-1::after,
  .c-btn-1:link::after,
  .c-btn-1:visited::after {
    right: 14px;
  }
  .c-btn-1.c-btn-1--big,
  .c-btn-1:link.c-btn-1--big,
  .c-btn-1:visited.c-btn-1--big {
    justify-content: center;
    width: 315px;
    height: 60px;
  }
  .c-btn-1.c-btn-1--big::after,
  .c-btn-1:link.c-btn-1--big::after,
  .c-btn-1:visited.c-btn-1--big::after {
    right: 26px;
  }
  .c-btn-1.c-btn-1--middle,
  .c-btn-1:link.c-btn-1--middle,
  .c-btn-1:visited.c-btn-1--middle {
    justify-content: center;
    max-width: 300px;
    width: 100%;
  }
}
.c-btn-2,
.c-btn-2:link,
.c-btn-2:visited {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 60px;
  border: 2px solid var(--color-pink);
  border-radius: 9999px;
  font-size: 20px;
  font-weight: var(--font-bold);
  color: var(--color-ttl-black);
  padding: 16px;
  background-color: #fff;
  transition: 0.3s;
}
.c-btn-2::before,
.c-btn-2:link::before,
.c-btn-2:visited::before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 22px;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../../assets/img/common/icon-person.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transition: background 0.3s;
}
.c-btn-2 .circle,
.c-btn-2:link .circle,
.c-btn-2:visited .circle {
  position: absolute;
  background-color: var(--color-pink);
  border-radius: 9999px;
  border: 2px solid transparent;
  height: 24px;
  width: 24px;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}
.c-btn-2 .circle::after,
.c-btn-2:link .circle::after,
.c-btn-2:visited .circle::after {
  content: "";
  display: block;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  background: transparent;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 6px;
  top: 6px;
  transition: border 0.3s;
  transform: rotate(45deg);
}
.c-btn-2.c-btn-2--company,
.c-btn-2:link.c-btn-2--company,
.c-btn-2:visited.c-btn-2--company {
  border: 2px solid var(--color-blue);
}
.c-btn-2.c-btn-2--company::before,
.c-btn-2:link.c-btn-2--company::before,
.c-btn-2:visited.c-btn-2--company::before {
  width: 14px;
  height: 22px;
  background-image: url("../../assets/img/common/icon-building.svg");
}
.c-btn-2.c-btn-2--company .circle,
.c-btn-2:link.c-btn-2--company .circle,
.c-btn-2:visited.c-btn-2--company .circle {
  background-color: var(--color-blue);
}

@media screen and (min-width: 768px) {
  .c-btn-2:hover {
    color: #fff;
    background-color: var(--color-pink);
  }
  .c-btn-2:hover::before {
    background-image: url("../../assets/img/common/icon-person-white.svg");
  }
  .c-btn-2:hover .circle {
    background-color: #fff;
    border: 2px solid var(--color-pink);
  }
  .c-btn-2:hover .circle::after {
    border-bottom: solid 2px var(--color-pink);
    border-right: solid 2px var(--color-pink);
  }
  .c-btn-2.c-btn-2--company:hover {
    color: #fff;
    background-color: var(--color-blue);
  }
  .c-btn-2.c-btn-2--company:hover::before {
    background-image: url("../../assets/img/common/icon-building-white.svg");
  }
  .c-btn-2.c-btn-2--company:hover .circle {
    background-color: #fff;
    border: 2px solid var(--color-blue);
  }
  .c-btn-2.c-btn-2--company:hover .circle::after {
    border-bottom: solid 2px var(--color-blue);
    border-right: solid 2px var(--color-blue);
  }
}
.c-btn-3,
.c-btn-3:link,
.c-btn-3:visited {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  border: 2px solid var(--color-blue);
  border-radius: 9999px;
  font-size: 18px;
  font-weight: var(--font-bold);
  color: #fff;
  margin: 0 auto;
  padding: 16px;
  background-color: var(--color-blue);
  transition: 0.3s;
}
.c-btn-3 .circle,
.c-btn-3:link .circle,
.c-btn-3:visited .circle {
  position: absolute;
  background-color: #fff;
  border-radius: 9999px;
  border: 2px solid transparent;
  height: 24px;
  width: 24px;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}
.c-btn-3 .circle::after,
.c-btn-3:link .circle::after,
.c-btn-3:visited .circle::after {
  content: "";
  display: block;
  border-bottom: solid 2px var(--color-blue);
  border-right: solid 2px var(--color-blue);
  background: transparent;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 7px;
  top: 7px;
  transition: border 0.3s;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .c-btn-3:hover,
  .c-btn-3:link:hover,
  .c-btn-3:visited:hover {
    color: var(--color-blue);
    background-color: #fff;
  }
  .c-btn-3:hover .circle,
  .c-btn-3:link:hover .circle,
  .c-btn-3:visited:hover .circle {
    background-color: var(--color-blue);
  }
  .c-btn-3:hover .circle::after,
  .c-btn-3:link:hover .circle::after,
  .c-btn-3:visited:hover .circle::after {
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-3,
  .c-btn-3:link,
  .c-btn-3:visited {
    max-width: 300px;
    width: 100%;
  }
}
.c-btn-4,
.c-btn-4:link,
.c-btn-4:visited {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 315px;
  height: 70px;
  font-size: 20px;
  border: 2px solid #fff;
  border-radius: 9999px;
  font-weight: var(--font-bold);
  padding: 16px;
  background-color: #fff;
  transition: 0.3s;
}
.c-btn-4::after,
.c-btn-4:link::after,
.c-btn-4:visited::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../../assets/img/common/icon-outlink-circle.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transition: background 0.3s;
}

@media screen and (min-width: 768px) {
  .c-btn-4:hover,
  .c-btn-4:link:hover {
    background-color: var(--color-pink);
    color: #fff;
  }
  .c-btn-4:hover::after,
  .c-btn-4:link:hover::after {
    background-image: url("../../assets/img/common/icon-outlink-ccircle-white.svg");
  }
}
@media screen and (max-width: 767px) {
  .c-btn-4,
  .c-btn-4:link,
  .c-btn-4:visited {
    height: 60px;
    padding: 16px;
  }
  .c-btn-4::after,
  .c-btn-4:link::after,
  .c-btn-4:visited::after {
    width: 30px;
    height: 30px;
    right: 15px;
  }
}
/* =================================
 c-link
================================= */
.c-out-link-1,
.c-out-link-1:link,
.c-out-link-1:visited {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  transition: 0.3s;
}
.c-out-link-1::after,
.c-out-link-1:link::after,
.c-out-link-1:visited::after {
  content: "";
  display: block;
  width: 15px;
  height: 14px;
  margin-left: 8px;
  background-image: url("../../assets/img/common/icon-outlink-blue.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .c-out-link-1:hover,
  .c-out-link-1:link:hover,
  .c-out-link-1:visited:hover {
    border-bottom: none;
  }
}
/* ===================================================
 area
=================================================== */
/*============================
c-area-abreast
============================*/
.c-area-abreast {
  display: flex;
}
.c-area-abreast .block-txt .txt {
  font-size: 16px;
  line-height: 2.18;
}
.c-area-abreast .block-img {
  margin-left: 48px;
}
.c-area-abreast .block-img .img {
  border-radius: 15px;
}
.c-area-abreast .block-img .box-txt {
  margin-top: 30px;
  text-align: center;
}
.c-area-abreast .block-img .box-txt .degree {
  margin-bottom: 7px;
  color: var(--color-ttl-black);
  font-size: 14px;
  line-height: 1.57;
}
.c-area-abreast .block-img .box-txt .name {
  color: var(--color-ttl-black);
  font-size: 20px;
  font-weight: var(--font-bold);
}
.c-area-abreast.c-area-abreast--reverse .block-img {
  margin-left: 0;
  margin-right: 48px;
}

@media screen and (max-width: 1200px) {
  .c-area-abreast .block-txt {
    width: 50%;
  }
  .c-area-abreast .block-img {
    width: 50%;
  }
  .c-area-abreast .block-img .img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-area-abreast {
    flex-direction: column;
  }
  .c-area-abreast .block-txt {
    order: 2;
    width: 100%;
    margin-top: 28px;
  }
  .c-area-abreast .block-img {
    order: 1;
    width: 100%;
    margin-left: 0;
  }
  .c-area-abreast .block-img .img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  .c-area-abreast .block-img .box-txt {
    margin-top: 18px;
    text-align: center;
  }
  .c-area-abreast .block-img .box-txt .degree {
    margin-bottom: 10px;
  }
  .c-area-abreast.c-area-abreast--reverse .block-img {
    margin-right: 0;
  }
}
/*============================
c-area-card
============================*/
.c-area-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  -moz-column-gap: 52px;
       column-gap: 52px;
  row-gap: 50px;
}
.c-area-card .c-item-card {
  position: relative;
  padding: 40px 40px 35px;
  border: 1px solid var(--color-gray);
  border-radius: 20px;
  background-color: #fff;
}
.c-area-card .c-item-card .c-num-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 81px;
  height: 77px;
  padding: 16px 0 0 18px;
  background: var(--color-light-pink);
  border-radius: 20px 0 100% 0;
}
.c-area-card .c-item-card .c-num-card .txt {
  color: var(--color-pink);
  font-size: 28px;
  font-family: var(--font-en);
  font-weight: var(--font-medium);
}
.c-area-card .c-item-card .box-img {
  margin-bottom: 20px;
  text-align: center;
}
.c-area-card .c-item-card .box-txt .head {
  margin-bottom: 20px;
  text-align: center;
  font-size: 28px;
  font-family: var(--font-jp);
  font-weight: var(--font-bold);
  line-height: 1.357;
}
.c-area-card .c-item-card .box-txt .head .highlight {
  color: var(--color-card-pink);
}
.c-area-card .c-item-card .box-txt .txt {
  font-size: 16px;
  line-height: 2;
}
.c-area-card.c-area-card--company .c-item-card .c-num-card {
  background: var(--color-light-blue);
}
.c-area-card.c-area-card--company .c-item-card .c-num-card .txt {
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .c-area-card {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 30px;
  }
  .c-area-card .c-item-card {
    padding: 35px 20px 15px;
  }
  .c-area-card .c-item-card .c-num-card {
    width: 60px;
    height: 57px;
    padding: 11px 0 0 11px;
  }
  .c-area-card .c-item-card .c-num-card .txt {
    font-size: 22px;
  }
  .c-area-card .c-item-card .box-txt .head {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.583;
  }
  .c-area-card.c-area-card--company .c-item-card .c-num-card {
    background: var(--color-light-blue);
  }
  .c-area-card.c-area-card--company .c-item-card .c-num-card .txt {
    color: var(--color-blue);
  }
}
/* =================================
 c-gotop
================================= */
.c-gotop {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background-color: var(--color-pagetop-pink);
  bottom: 20px;
  right: 20px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: var(--font-bold);
  line-height: 1;
  color: #fff;
  cursor: pointer;
  z-index: 11;
}
.c-gotop::before {
  content: "";
  display: block;
  margin-bottom: 2px;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  background: transparent;
  width: 8px;
  height: 8px;
  transform: rotate(225deg);
}

body.scroll .c-gotop {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  body.scroll .c-gotop {
    transition: opacity 0.3s;
  }
  body.scroll .c-gotop:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-gotop {
    width: 45px;
    height: 45px;
    bottom: auto;
    top: -22px;
    right: 15px;
    font-size: 11px;
  }
  .c-gotop::before {
    margin-bottom: 2px;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    width: 6px;
    height: 6px;
  }
}