@charset "UTF-8";
/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
  ---------------------------------
  ----- リセット / グローバル -----
  ---------------------------------
*/
/* -------------------
* ----- リセット -----
------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------------------
* ----- グローバル -----
--------------------- */
a {
  text-decoration: none;
}
a:active, a:visited {
  color: inherit;
}
a:hover {
  cursor: pointer;
}

ol,
ul {
  list-style-position: outside;
}

/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ---------- Mixins -------------
    -------------------------------
*/
/* -------------------------------------------- *
 * ----- ブレイクポイント（PCファースト） ----- *
 * -------------------------------------------- */
/* --------------------------------- *
 * --------- 検索ボックス ---------- *
 * --------------------------------- */
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    Table Styles
    -------------------------------
*/
html {
  font-size: 16px;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
  margin: 0;
  padding-top: 66px !important;
  overflow-y: auto;
  font-family: "Noto Sans JP", sans-serif;
}

/* ----------------- *
 * ----- Table ----- *
 * ----------------- */
.wp-block-table {
  display: flex;
  flex-direction: column-reverse;
  overflow: visible;
}
.wp-block-table table {
  margin: 8px auto;
  width: auto;
  box-shadow: 2px 2px 6px #777;
}
.wp-block-table table th {
  color: #fff;
  font-weight: bold;
  background-color: #52a6eb;
}
.wp-block-table table thead, .wp-block-table table tbody, .wp-block-table table th, .wp-block-table table td {
  border: 1px solid #041320;
}
.wp-block-table figcaption {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #1981d7;
}

i {
  font-size: 0.76em;
}

.grecaptcha-badge {
  bottom: 48px !important;
}

/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ---------- Mixins -------------
    -------------------------------
*/
/* -------------------------------------------- *
 * ----- ブレイクポイント（PCファースト） ----- *
 * -------------------------------------------- */
/* --------------------------------- *
 * --------- 検索ボックス ---------- *
 * --------------------------------- */
/*
    Makoto Nakagiri's Portfolio
    ------------------------------
    ---------- ヘッダー ----------
    ------------------------------
*/
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  margin: 0;
  width: 100%;
  height: 66px;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 8px 0;
  transition: all 0.3s;
  border-bottom: 1px solid #fff;
  background-color: hsl(207, 79%, 57%);
}
.header .search-box {
  margin-inline: 1em;
  width: 16rem;
  max-width: 90%;
}
@media screen and (max-width: 681px) {
  .header .search-box {
    display: none;
  }
}
.header .search-box form {
  position: relative;
  margin-left: auto;
}
.header .search-box form input {
  width: 100%;
  height: 2rem;
  padding: 10px 35px 10px 15px;
  border-width: 1px;
  border-color: #041320;
  border-radius: 3px;
  background-color: #fff;
}
.header .search-box form button {
  position: absolute;
  top: 4px;
  right: 16px;
  width: 16px;
  border: none;
  background-color: transparent;
}
.header .search-box form button i {
  font-size: 1em;
}
.header .logo {
  margin-left: 0.5rem;
  color: #fff;
}
.header .logo:hover {
  color: #1466a9;
  background-color: #f1f8fd;
}
.header .logo a {
  color: inherit;
}
.header .logo div {
  text-align: center;
  color: inherit;
}
.header .logo div:first-of-type {
  height: 2rem;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
}
.header .logo div:last-of-type {
  height: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
}

/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ---------- Mixins -------------
    -------------------------------
*/
/* -------------------------------------------- *
 * ----- ブレイクポイント（PCファースト） ----- *
 * -------------------------------------------- */
/* --------------------------------- *
 * --------- 検索ボックス ---------- *
 * --------------------------------- */
/*
    Makoto Nakagiri's Portfolio
    ----------------------------------------------------
    ----- ナビゲーション： メニュー & 検索ボックス -----
    ----------------------------------------------------
*/
/* ---------------------------------- *
 * ----- ナビゲーションコンテナ ----- *
 * ---------------------------------- */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 839px) {
  .nav-container {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
.nav-container--side {
  position: fixed;
  top: calc(50vh - 8em);
  right: 0;
  list-style: none;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

/* ---------------------------------- *
 * ----- 現ページのメニュー設定 ----- *
 * ---------------------------------- */
nav li.current-menu-item a {
  color: #1466a9;
  text-decoration: none;
  background: #f1f8fd;
  border-radius: 4px;
  transition: all 0.3s;
}

/* -------------------- *
 * ----- メニュー ----- *
 * -------------------- */
.menu {
  position: relative;
  display: inline-block;
  text-align: center;
  text-align: right;
  border-radius: 4px;
  /* -------------------------------------------- *
   * ----- ハンバーガーメニューアイコン制御 ----- *
   * -------------------------------------------- */
  /* -------------------------------- *
   * ----- モバイルメニュー制御 ----- *
   * -------------------------------- */
  /* -------------------------- *
  * ----- サイドメニュー ----- *
  * -------------------------- */
}
@media screen and (max-width: 839px) {
  .menu__primary {
    display: none;
  }
}
.menu__primary li {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
}
.menu__primary li[id=menu-item-383] {
  display: none;
}
@media screen and (max-width: 681px) {
  .menu__primary li[id=menu-item-383] {
    display: inline-block;
  }
}
.menu__primary li a {
  display: inline-block;
  color: #fff;
  padding: 10px 8px;
}
@media screen and (max-width: 839px) {
  .menu__primary li a {
    color: hsl(207, 79%, 57%);
  }
}
.menu__primary li a:hover {
  color: #1466a9;
  text-decoration: none;
  background: #f1f8fd;
  border-radius: 4px;
  transition: all 0.3s;
}
.menu__hamburger {
  display: none;
  margin-inline: -0.25em 0.25em;
  padding-inline: 0.5em;
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 839px) {
  .menu__hamburger {
    display: inline-block;
  }
}
.menu__hamburger--open, .menu__hamburger--close {
  display: none;
}
.menu__hamburger--open[active], .menu__hamburger--close[active] {
  display: inline-block;
}
.menu__hamburger:hover {
  color: #1466a9;
  background: #f1f8fd;
  border-radius: 4px;
  cursor: pointer;
}
.menu__mobile {
  position: absolute;
  display: none;
  list-style: none;
  top: 66px;
  right: 0;
}
@media screen and (max-width: 839px) {
  .menu__mobile[active] {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .menu__mobile li {
    padding: 0.5rem 1rem;
    text-align: center;
    color: #fff;
    background-color: hsl(207, 79%, 57%);
  }
  .menu__mobile li a {
    color: inherit;
  }
}
.menu__side {
  list-style: none;
}
@media screen and (max-width: 839px) {
  .menu__side {
    display: none;
  }
}
.menu__side li {
  display: inline-block;
  padding: 0.5em 0.25em;
  font-size: 0.75rem;
  color: #fff;
  background-color: #000;
}
.menu__side li:hover {
  color: #1466a9;
  text-decoration: none;
  background: #f1f8fd;
  border-radius: 4px;
  transition: all 0.3s;
}
.menu__side li a {
  display: inline-block;
  color: inherit;
}

/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ---------- Mixins -------------
    -------------------------------
*/
/* -------------------------------------------- *
 * ----- ブレイクポイント（PCファースト） ----- *
 * -------------------------------------------- */
/* --------------------------------- *
 * --------- 検索ボックス ---------- *
 * --------------------------------- */
/*
    -------------------------
    ----- main ブロック -----
    -------------------------
*/
main {
  width: 100%;
  background-color: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
main .container {
  margin-inline: auto;
  width: 100%;
  max-width: 1400px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  main .container {
    margin-inline: auto;
    width: 100%;
  }
}
main .container section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
main .container section .inner-container {
  flex-grow: 1;
}

/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ---------- Mixins -------------
    -------------------------------
*/
/* -------------------------------------------- *
 * ----- ブレイクポイント（PCファースト） ----- *
 * -------------------------------------------- */
/* --------------------------------- *
 * --------- 検索ボックス ---------- *
 * --------------------------------- */
/*
    -----------------------------
    --------- フッター ----------
    -----------------------------
*/
.footer {
  align-items: center;
  background-color: #000;
}
.footer__inner {
  display: flex;
  justify-content: space-around;
  padding-block: 12px;
}
.footer__copyright {
  text-align: center;
  color: #fff;
}

.footer-menu {
  display: flex;
  margin-right: 16px;
  color: #fff;
}

.menu-footer-menu {
  list-style-type: none;
}
.menu-footer-menu li {
  display: inline-block;
  margin-inline: 1rem;
  text-align: center;
  border-radius: 4px;
}
.menu-footer-menu li a {
  color: #fff;
}

/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ---------- Mixins -------------
    -------------------------------
*/
/* -------------------------------------------- *
 * ----- ブレイクポイント（PCファースト） ----- *
 * -------------------------------------------- */
/* --------------------------------- *
 * --------- 検索ボックス ---------- *
 * --------------------------------- */
/*
    Makoto Nakagiri's Portfolio
    -----------------------
    ----- ヒーロー --------
    -----------------------
*/
main:has(.hero) {
  background-color: hsl(207, 79%, 57%);
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 1rem;
  background-color: hsl(207, 79%, 57%);
}
.hero.container {
  max-width: 1000px;
}
.hero__name {
  color: #fff;
  font-weight: bold;
  font-size: 5rem;
  text-align: center;
  letter-spacing: 0.3rem;
  line-height: 1;
}
.hero__expertise {
  margin-top: 0.5rem;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.hero__policy {
  margin-top: 2.5rem;
  width: 100%;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.hero .menu-hero-menu {
  display: flex;
  justify-content: space-around;
  margin: 3rem auto 0;
  width: 100%;
  list-style-type: none;
}
.hero .menu-hero-menu li {
  display: inline-block;
  width: 24%;
  aspect-ratio: 1/1;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
}
.hero .menu-hero-menu li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-top: 0.75em;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  border-radius: 1em;
}
@media screen and (max-width: 1199px) {
  .hero .menu-hero-menu li a {
    padding-top: 2vw;
    font-size: 2.67vw;
  }
}
.hero .menu-hero-menu li:nth-child(1) a {
  background-image: url("../images/top-portfolio.svg");
}
.hero .menu-hero-menu li:nth-child(2) a {
  cursor: default;
  background-image: url("../images/top-lab.svg");
}
.hero .menu-hero-menu li:nth-child(3) a {
  cursor: default;
  background-image: url("../images/top-personal.svg");
}
.hero .menu-hero-menu li:nth-child(2), .hero .menu-hero-menu li:nth-child(3) {
  opacity: 0.5;
}
.hero .menu-hero-menu li:nth-child(2) a::after, .hero .menu-hero-menu li:nth-child(3) a::after {
  content: "準備中";
  display: block;
  margin-top: 0.5em;
  color: #444;
  font-size: 1.5em;
  font-weight: bold;
}

/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ----- メニューボックス --------
    -------------------------------
*/
.link-box {
  display: flex;
  justify-content: space-evenly;
  margin-top: 4vh;
  margin-inline: auto;
}
.link-box a {
  display: block;
  position: relative;
  width: 30%;
}
.link-box a img {
  opacity: 0.8;
}
.link-box a p {
  position: absolute;
  top: 8px;
  left: 0%;
  z-index: 999;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

/*
    ------------------------
    ----- 中桐について -----
    ------------------------
*/
.nakagiri {
  padding-inline: 1rem;
}
.nakagiri h3 {
  margin-block: 3rem 2rem;
  font-size: 2rem;
}
.nakagiri .wp-block-separator {
  margin: 2rem auto 0;
  width: 60%;
  border: 0.5px solid hsl(207, 79%, 57%);
}
.nakagiri p, .nakagiri ol, .nakagiri ul {
  margin-block: 1rem 0.5rem;
  margin-inline: auto;
  width: fit-content;
  list-style-type: none;
  font-size: 1rem;
}
.nakagiri p:first-child, .nakagiri ol:first-child, .nakagiri ul:first-child {
  margin-top: 0;
}
.nakagiri p i, .nakagiri ol i, .nakagiri ul i {
  font-size: 0.6em;
}
.nakagiri p {
  font-weight: bold;
}
.nakagiri p ~ ul {
  margin-block: 0.25rem 1rem;
}
.nakagiri a {
  text-decoration: initial;
  color: #1981d7;
}

/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ---------- Mixins -------------
    -------------------------------
*/
/* -------------------------------------------- *
 * ----- ブレイクポイント（PCファースト） ----- *
 * -------------------------------------------- */
/* --------------------------------- *
 * --------- 検索ボックス ---------- *
 * --------------------------------- */
/*
    Makoto Nakagiri's Portfolio
    ---------------------------------
    ----- 実績（Projects） ----------
    ---------------------------------
*/
/* -------------------------------------
  実績一覧（archive-project.php）用
------------------------------------- */
.project.list {
  overflow: hidden;
  border-radius: 4px;
}
.project.list .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 681px) {
  .project.list .cards {
    justify-content: center;
  }
}
.project.list .card {
  margin-bottom: 16px;
  margin-inline: 8px;
  width: calc((100% - 48px) / 3);
  min-width: 320px;
  min-height: 14rem;
  padding: 1em 1em;
  list-style: none;
  color: #1981d7;
  font-size: 16px;
  border-radius: 1rem;
  box-shadow: 3px 3px 6px #777;
  background-color: #dde9ff;
}
@media screen and (max-width: 1199px) {
  .project.list .card {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (max-width: 681px) {
  .project.list .card {
    width: 100%;
  }
}
.project.list .card .inner {
  position: relative;
  height: 100%;
}
.project.list .card .inner .name {
  margin-block: 0.5em;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}
.project.list .card .inner .description {
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 1rem;
}
.project.list .card .inner .description .label {
  white-space: nowrap;
}
.project.list .card .inner .description .role, .project.list .card .inner .description .about, .project.list .card .inner .description .tech {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
  color: #0e4a7b;
}
.project.list .card .inner .more {
  position: absolute;
  bottom: 4px;
  right: 4px;
  margin-top: 0.3em;
  padding: 0 0.4em;
  color: #fff;
  font-size: 12px;
  border-radius: 0.3em;
  background-color: hsl(207, 79%, 57%);
}

/* -------------------- *
 * ----- 実績詳細 ----- *
 * -------------------- */
.project.full .name {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.project.full .card {
  margin-top: 2rem;
  margin-inline: auto;
  width: fit-content;
  padding: 1.5em 2em;
  border-radius: 4px;
  box-shadow: 3px 3px 6px #777;
  background-color: #dde9ff;
}
.project.full .card .image {
  margin-right: 8px;
  width: 256px;
  height: 256px;
}
.project.full .card .image > img {
  width: 100%;
}
.project.full .card .container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-bottom: 1rem;
}
.project.full .card .container + .project.full .card .container {
  padding-top: 1rem;
  border-top: 1px solid #0e4a7b;
}
.project.full .card .description {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 0.5em;
  font-size: 1.25rem;
}
.project.full .card .description:first-child {
  margin-top: 0;
}
.project.full .card .description i {
  font-size: 0.75em;
}
.project.full .card .description .label {
  width: 3.5em;
  color: #1981d7;
  white-space: nowrap;
}
.project.full .card .description .role, .project.full .card .description .about, .project.full .card .description .technology {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-align: left;
  color: #0e4a7b;
}

/* -------------------------------------
  実績詳細 ページネーション
------------------------------------- */
.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  width: 100%;
  padding-inline: 5rem;
  color: #0e4a7b;
}
.pagination__item {
  width: 50%;
}
.pagination__item a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.pagination__item--prev {
  text-align: left;
  margin-right: auto;
  border-right: 0.3px solid #041320;
}
.pagination__item--prev span {
  margin-left: 1em;
}
.pagination__item--next {
  text-align: right;
  margin-inline: auto;
  border-left: 0.3px solid hsl(207, 79%, 57%);
}
.pagination__item--next span {
  margin-right: 1em;
}
.pagination__item--separator {
  border-right: 1px solid hsl(207, 79%, 57%);
}

/*
    Makoto Nakagiri's Portfolio
    ----------------------------------
    Experience Styles
    ----------------------------------
*/
.experience {
  margin: 0 auto;
  max-width: 80%;
  text-align: center;
  overflow: hidden;
  border-radius: 4px;
}
.experience__list {
  margin-inline: auto;
  min-height: 160px;
}
.experience__item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0 8px;
  width: 100%;
  padding-block: 16px;
  list-style: none;
  border-bottom: 1px solid #041320;
}
.experience__item:nth-child(1) {
  margin-top: 0;
}
.experience__desc {
  width: calc(100% - 6rem);
}
.experience__desc div:nth-of-type(1) {
  margin-top: 16px;
}
.experience__name {
  margin-top: 16px;
  color: #1466a9;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.experience__container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-top: 8px;
}
.experience__label {
  width: 4em;
  font-size: 1rem;
  color: #0e4a7b;
  white-space: nowrap;
}
.experience__position, .experience__summary, .experience__details {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: #000;
  text-align: left;
}
.experience__period {
  width: 10rem;
  font-size: 12px;
}

/*
    -----------------------
    ----- 教育歴 ----------
    -----------------------
*/
.educations {
  padding-inline: 1rem;
}
.educations h3 {
  margin-top: 2rem;
}
.educations h4 {
  margin-top: 1rem;
}
.educations hr {
  margin-inline: auto;
  width: 80%;
  border: 1px solid #041320;
}
.educations p, .educations ol, .educations ul {
  margin-block: 1rem;
  margin-inline: auto;
  width: fit-content;
  font-size: 1rem;
}
.educations p:first-child, .educations ol:first-child, .educations ul:first-child {
  margin-top: 0;
}
.educations a {
  text-decoration: initial;
  color: #1466a9;
}

/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    Skill Archive Styles
    -------------------------------
*/
.skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}
.skills table {
  margin-inline: auto;
  margin-bottom: 32px;
  width: initial;
}

/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    Certifications Archive Styles
    -------------------------------
*/
.certifications {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.certifications table {
  margin: 0 auto 32px;
  width: initial;
}

/*
    Makoto Nakagiri's Portfolio
    --------------------------------------
    ----- Contact Form 7 Styles ----------
    --------------------------------------
*/
.contact input[type=text],
.contact input[type=email],
.contact input[type=tel],
.contact textarea {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #88f;
  border-radius: 5px;
  outline: none;
}
.contact textarea {
  resize: vertical;
}
.contact .btn-container {
  margin-block: 30px;
  text-align: center;
}
.contact .btn-submit {
  display: inline-block;
  min-width: 220px;
  padding: 10px;
  text-align: center;
  background-color: #3b9ae8;
  border: 1px solid #88f;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  transition: 0.3s ease-in;
}
.contact .btn-submit:hover {
  color: #333;
  font-weight: bold;
  background-color: #fff;
}
.contact .form-container {
  margin: 0 auto;
}
.contact .form-container .about-text {
  margin: 0 auto 54px;
  width: fit-content;
  max-width: 1200px;
  padding-inline: 1em;
  font-size: 1.25rem;
  color: #0e4a7b;
}
.contact .form-container .about-text a:not(a[href^="tel:"]) {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .contact .form-wrapper .about-text {
    font-size: 0.875rem;
  }
}
.contact .form-box {
  margin-inline: auto;
  width: 600px;
}
.contact .form-box .form-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.contact .form-box .form-item div {
  padding-bottom: 4px;
}
.contact .form-box .form-item div:nth-of-type(1) {
  font-weight: 400;
  text-align: left;
}
.contact .form-box .form-item div:nth-of-type(1).message {
  padding-top: 10px;
  vertical-align: top;
}
.contact .form-box .form-item div:nth-of-type(2) {
  width: 63.993%;
}
.contact .required {
  display: inline-block;
}
.contact .required::after {
  content: "※";
  display: inline-block;
  padding-left: 1em;
  font-size: 0.8em;
  font-weight: bold;
  color: #da1725;
}
.contact .text-required {
  font-weight: bold;
  color: #da1725;
}

/*
    --------------------------
    ----- 本サイトの技術 -----
    --------------------------
*/
.technology {
  padding-inline: 1rem;
}
.technology h3, .technology h4 {
  margin-top: 2rem;
}
.technology .wp-block-table {
  margin-top: 2rem;
}
.technology p, .technology ol, .technology ul {
  margin-block: 0.5rem;
  margin-left: 3rem;
  font-size: 1rem;
}
.technology p:first-child, .technology ol:first-child, .technology ul:first-child {
  margin-top: 0;
}
.technology p {
  margin-left: 3rem;
}
.technology ol, .technology ul {
  margin-left: 4rem;
}

/*
    Makoto Nakagiri's Portfolio
    ----------------------------------
    ---------- タイトル共通 ----------
    ----------------------------------
*/
.title {
  display: block;
  margin-block: 2rem;
  margin-inline: 0.5rem;
  padding: 0.5rem 0.5em;
  color: #1981d7;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.15em;
  border-left: 16px solid hsl(207, 79%, 57%);
  border-bottom: 2px solid hsl(207, 79%, 57%);
  box-shadow: 2px 2px 6px #777;
  background-color: #dde9ff;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #1466a9;
}

/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ---------- Mixins -------------
    -------------------------------
*/
/* -------------------------------------------- *
 * ----- ブレイクポイント（PCファースト） ----- *
 * -------------------------------------------- */
/* --------------------------------- *
 * --------- 検索ボックス ---------- *
 * --------------------------------- */
/*
    -----------------------------
    --------- 検索結果 ----------
    -----------------------------
*/
.search h3 {
  font-size: 2rem;
}
.search .found {
  margin-top: 1.5rem;
  margin-inline: auto;
}
.search .found__list {
  margin-top: 4rem;
  list-style-type: none;
}
.search .found__list li {
  margin-block: 1rem;
  font-size: 1.5em;
  text-align: center;
}
.search .found__list li i {
  margin-left: 0.5em;
  font-size: 0.75em;
}
.search .not-found .message {
  margin-block: 2rem;
  text-align: center;
  font-size: 1.5rem;
}
.search .search-box {
  margin-inline: 1em;
  width: 30rem;
  max-width: 90%;
  margin-inline: auto;
}
.search .search-box form {
  position: relative;
  margin-left: auto;
}
.search .search-box form input {
  width: 100%;
  height: 2rem;
  padding: 10px 35px 10px 15px;
  border-width: 1px;
  border-color: #041320;
  border-radius: 3px;
  background-color: #fff;
}
.search .search-box form button {
  position: absolute;
  top: 4px;
  right: 16px;
  width: 16px;
  border: none;
  background-color: transparent;
}
.search .search-box form button i {
  font-size: 1em;
}

/*
    -------------------------------------------
    ----- 利用規約 & プライバシーポリシー -----
    -------------------------------------------
*/
.terms-of-use,
.privacy {
  padding-inline: 1rem;
}
.terms-of-use h3,
.privacy h3 {
  margin-top: 2em;
  text-align: left;
}
.terms-of-use .section__body,
.privacy .section__body {
  margin-bottom: 2em;
  padding-inline: 2em;
}
.terms-of-use p, .terms-of-use ol, .terms-of-use ul,
.privacy p,
.privacy ol,
.privacy ul {
  margin-block: 0.5rem;
  margin-left: 3rem;
  font-size: 1rem;
}
.terms-of-use p:first-child, .terms-of-use ol:first-child, .terms-of-use ul:first-child,
.privacy p:first-child,
.privacy ol:first-child,
.privacy ul:first-child {
  margin-top: 0;
}
.terms-of-use p,
.privacy p {
  margin-left: 3rem;
}
.terms-of-use ol, .terms-of-use ul,
.privacy ol,
.privacy ul {
  margin-left: 4rem;
}
.terms-of-use a,
.privacy a {
  text-decoration: initial;
}

/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ---------- Mixins -------------
    -------------------------------
*/
/* -------------------------------------------- *
 * ----- ブレイクポイント（PCファースト） ----- *
 * -------------------------------------------- */
/* --------------------------------- *
 * --------- 検索ボックス ---------- *
 * --------------------------------- */
/*  Makoto Nakagiri Portfolio
    -------------------------------
    ---------- 404ページ ----------
    -------------------------------
*/
.page-404 .search-box {
  margin-inline: 1em;
  width: 30rem;
  max-width: 90%;
  margin-inline: auto;
}
.page-404 .search-box form {
  position: relative;
  margin-left: auto;
  margin-inline: auto;
}
.page-404 .search-box form input {
  width: 100%;
  height: 2rem;
  padding: 10px 35px 10px 15px;
  border-width: 1px;
  border-color: #041320;
  border-radius: 3px;
  background-color: #fff;
}
.page-404 .search-box form button {
  position: absolute;
  top: 4px;
  right: 16px;
  width: 16px;
  border: none;
  background-color: transparent;
}
.page-404 .search-box form button i {
  font-size: 1em;
}
.page-404 .message {
  margin-block: 2rem;
  text-align: center;
  font-size: 1.5rem;
}/*# sourceMappingURL=style.css.map */