/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-text: #293565;
  --color-blue: #23517F;
  --color-blue-bright: #0098D3;
  --color-blue-light: #4F87C2;
  --color-blue-thin: #F0F5FF;
  --color-yellow: #FFE100;

  --font-inter: 'Inter', sans-serif;
  --font-roboto: 'Roboto', sans-serif;

  --grad-primary: linear-gradient(180deg, #4F87C2 8.65%, #23517F 100%);
}

/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
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, 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

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

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb-0 {
  margin-bottom: 0;
}
.mt-20 {
  margin-top: 20px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}

.t-center {
  text-align: center;
}
.flex-center {
  display: flex;
  justify-content: center;
}

.link-tel {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 751px) {
  .link-tel {
    pointer-events: none;
  }
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .wrapper {
    width: auto;
  }
}

.hover {
  transition: 0.3s;
}
@media only screen and (min-width: 751px) {
  .hover:hover {
    opacity: 0.7;
  }
}

.color-white {
  color: #fff;
}
.color-blue {
  color: var(--color-blue);
}
.color-yellow {
  color: var(--color-yellow);
}
.marker-yellow {
  border-bottom: 5px solid var(--color-yellow);
}

.bg-thin {
  background-color: var(--color-blue-thin);
}
.bg-grad {
  background: var(--grad-primary);
}

.weight-bold {
  font-weight: bold;
}
.weight-medium {
  font-weight: 500;
}

.text-primary {
  font-size: 16px;
  line-height: 1.8;
}

.title-primary {
  font-size: 35px;
  font-weight: bold;
}
.title-secondary {
  font-size: 26px;
  font-weight: bold;
}
.title-tertiary {
  font-size: 18px;
  font-weight: bold;
}

.btn-small {
  display: flex;
  width: 135px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: inherit;
  border: 1px solid var(--color-text);
  text-decoration: none;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: bold;
}
.btn-primary {
  display: flex;
  width: 200px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  background-color: var(--color-blue-light);
  color: #fff;
  transition: opacity 0.3s ease-in-out;
  &.-white {
    background-color: #fff;
    color: var(--color-text);
  }
  &.-long {
    width: 250px;
  }
  &.-small {
    width: 125px;
    height: 40px;
    font-size: 12px;
  }
  &.-black {
    background-color: var(--color-text);
  }
  &.-blue {
    background-color: var(--color-blue);
  }
  &.-bright {
    background-color: var(--color-blue-bright);
  }
  &.-yellow {
    background-color: var(--color-yellow);
    color: var(--color-text);
  }
  &:hover {
    opacity: 0.7;
  }
}
.btn-submit {
  border-style: none;
  width: 250px;
  height: 50px;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  background-color: var(--color-text);
  color: #fff;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  &:not(:disabled):hover {
    opacity: 0.7;
  }
  &:disabled {
    opacity: 0.3;
  }
}

.container {
  max-width: 800px;
  margin: 0 auto;
}
.container-min {
  max-width: 640px;
  margin: 0 auto;
}

.list-s {
  display: flex;
  flex-direction: column;
  gap: 12px;
  li {
    padding-left: 35px;
    position: relative;
    &:before {
      content: "";
      position: absolute;
      background: url(../img/line_s.svg) no-repeat center / contain;
      position: absolute;
      top: 6px;
      left: 0px;
      width: 20px;
      aspect-ratio: 20 / 14;
    }
  }
}

/* ----------------------------------------------------------------------
 Layout
---------------------------------------------------------------------- */
.l-header {
  height: 70px;
  position: relative;
}
.l-header__wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #fff;
  width: 100%;
  height: 70px;
  z-index: 100;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 18px 0 11px;
}
.l-header__left {
  display: flex;
  align-items: center;
}
.l-header__logo {
  width: 237px;
}
.l-header__desc {
  font-weight: bold;
  font-size: 11.3px;
  margin-left: 12px;
}
.l-header__right {
  display: flex;
  align-items: center;
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 56px;
  li {
    a {
      font-size: 14.2px;
      color: inherit;
      text-decoration: none;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
.l-header__buttons {
  display: flex;
  gap: 25px;
  margin-left: 54px;
  li {
    a {
      font-size: 12.59px;
      display: flex;
      width: 135px;
      height: 40px;
      align-items: center;
      justify-content: center;
      background-color: var(--color-blue-light);
      color: #fff;
      text-decoration: none;
      border-radius: 10px;
      &.-blue {
        background-color: var(--color-blue);
      }
    }
  }
}

.section {
  padding: 100px 20px 100px;
  position: relative;
  z-index: 1;
  &.-pt0 {
    padding-top: 0;
  }
}

.side-title {
  position: absolute;
  top: 80px;
  left: 0;
  height: 384px;
  z-index: -1;
  display: flex;
  align-items: center;
  padding-left: 32px;
  span {
    font-size: 15px;
    font-weight: bold;
    writing-mode: vertical-rl;
    display: inline-block;
    transform: rotate(180deg);
  }
  &:before {
    content: "";
    position: absolute;
    width: 230px;
    height: 184px;
    border-radius: 50%;
    border: 100px solid var(--color-blue-thin);
    top: 0px;
    left: -218px;
  }
  &.-thin {
    span {
      color: #fff;
    }
    &:before {
      border-color: var(--color-blue-thin);
      opacity: 0.8;
    }
  }
  &.-white {
    &:before {
      border-color: #fff;
      opacity: 0.8;
    }
  }
}

.bottom-cv {
  padding: 90px 20px 96px;
  background: url(../img/bg_bottom.jpg) no-repeat center / cover;
  text-align: center;
}
.bottom-cv__title {
  font-size: 33px;
  font-weight: bold;
}
.bottom-cv__read {
  font-size: 20px;
  margin-top: 1em;
}
.bottom-cv__buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.bottom-cv__name {
  margin-top: 40px;
  font-weight: 500;
  font-size: 29.5px;
}
.bottom-cv__subtitle {
  font-size: 20px;
  font-weight: 500;
}
.l-footer {
  background-color: var(--color-text);
  color: #fff;
  padding: 60px 20px 0;
}
.l-footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.l-footer__name {
  font-size: 25px;
  font-weight: bold;
}
.l-footer__address {
  font-size: 14px;
  line-height: 2;
  margin-top: 16px;
}
.l-footer__right {
  display: flex;
  width: 60%;
  justify-content: space-between;
}
.l-footer__row {
  border-left: 1px solid #fff;
  padding-left: 32px;
}
.l-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: block;
    &:hover {
      text-decoration: underline;
    }
  }
  > li {
    display: flex;
    align-items: flex-start;
  }
}
.l-footer__subnav {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.copyright {
  margin: 60px -20px 0;
  background-color: #fff;
  text-align: center;
  font-size: 14px;
  font-family: var(--font-inter);
  padding: 8px;
  color: var(--color-text);
}

.page-header {
  padding: 32px 0;
  background-color: var(--color-blue-thin);
}
.page-header__title {
  font-size: 26px;
  font-weight: bold;
  span:first-child:after {
    content: "｜";
  }
}

.form {
  margin-top: 60px;
}
.form__item + .form__item {
  margin-top: 20px;
}
.form__label {
  display: block;
  font-size: 17px;
  margin-bottom: 0.2em;
}
.form__text {
  width: 100%;
  height: 34px;
  border: 1px solid #ACADAE;
  background-color: #fff;
  border-radius: 4px;
  padding: 0 0.5em;
}
.form__textarea {
  width: 100%;
  height: 300px;
  border: 1px solid #ACADAE;
  background-color: #fff;
  border-radius: 4px;
  padding: 0.5em;
}
.form__privacy {
  margin-top: 20px;
  font-size: 17px;
  input {
    width: 24px;
    height: 24px;
    vertical-align: top;
  }
  .wpcf7-list-item {
    margin-left: 0;
  }
}
.wpcf7-spinner {
  display: block;
  margin: 0 auto;
}
.form__btn {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.l-single__eyecatch {
  margin-bottom: 24px;

  img {
    border-radius: 20px 20px 0 0;
  }
}
.l-single__date {
  display: block;
  font-size: 16px;
  font-family: var(--font-inter);
  margin-bottom: 30px;
}

.l-news__list {
  margin-top: 20px;
  border-top: 1px solid var(--color-text);
}
.l-news__item {
  display: flex;
  padding: 22px 40px 22px 0;
  border-bottom: 1px solid var(--color-text);
  color: inherit;
  text-decoration: none;
  transition: background-color .3s ease-in-out;
  position: relative;
  &:hover {
    background-color: var(--color-blue-thin);
  }
  &:after {
    content: "";
    background: url(../img/arrow_news_list.svg) no-repeat center / contain;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 27px;
  }
}
.l-news__date {
  font-size: 14px;
  font-weight: 500;
  width: 118px;
}
.l-news__text {
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}