@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600&family=Zen+Old+Mincho:wght@400;600&display=swap");
:root {
  /* 色の設定 */
  --color-primary: #4293f5; /*メインカラー*/
  --color-primary-light: #eeeeee; /*説明文・ページタイトル等の背景色*/
  --color-bg-base: #ffffff; /*ページ全体の背景色*/
  --color-bg-muted: #f9f9f9; /*お知らせ・ブログの背景色*/
  --color-text: #333333; /*本文テキスト色*/
  --color-border: #e5e7eb; /*ボーダー色*/
  /* 文字サイズの設定 */
  --fontsize-base: 1rem;
  --fontsize-s: calc(var(--fontsize-base) * 0.8);
  --fontsize-m: var(--fontsize-base);
  --fontsize-l: calc(var(--fontsize-m) * 1.375);
  --fontsize-xl: calc(var(--fontsize-l) * 1.454545);
  --fontsize-xxl: calc(var(--fontsize-xl) * 1.1875);
  /* フォントの設定 */
  --font-gothic:
    "Noto Sans Japanese", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", sans-serif;
  --font-mincho:
    "EB Garamond", "Zen Old Mincho", "YuMincho", "Yu Mincho", serif;
  --font-marugothic:
    "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro",
    "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  --font-base: var(--font-gothic); /*上記3つからいずれかを設定*/
  /* 角丸の設定 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  /* メニュー位置 */
  /* 左(start) 中央(center) 右(flex-end) */
  --global-navi-position: center;
  /* 重なり */
  --slide-index: 1;
  --menu-index: 2;
  --hamburger-index: 3;
}
body {
  color: var(--text-color);
  font-family: var(--font-gothic);
  letter-spacing: 0.05em;
  font-size: 15px;
  line-height: 1.875;
}
* {
  word-break: break-all;
  box-sizing: border-box;
}
table,
iframe,
img {
  max-width: 100%;
}
a {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  color: var(--text-color);
}
h1,
h2,
p,
figure,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
.siteWidth,
.siteWidth-s {
  padding-left: 20px;
  padding-right: 20px;
}
.bgColor-gray {
  background: #f7f7f7;
  padding-top: 30px;
  padding-bottom: 30px;
}
.header {
  display: flex;
  align-items: center;
  position: relative;
  padding: 27px 90px 19px 20px;
  min-height: 70px;
}
.slide header {
  padding: 0;
  display: block;
}
.siteTitle {
  line-height: 1.2;
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 400;
}
.siteTitle a:hover {
  opacity: 0.7;
}
.slide .siteTitle {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 90%;
  max-height: 80%;
  overflow: hidden;
  text-align: center;
  z-index: 3;
  font-size: 30px;
}
.slide .siteTitle a {
  color: #fff;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}
.slide .siteTitle img {
  top: 45%;
}
.siteTitle img {
  max-height: 200px;
}
.pageTitle {
  color: var(--base-color);
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 400;
  text-align: left;
  background: rgba(var(--base-color-rgb), 0.16);
  padding: 70px 20px;
  line-height: 1.3;
}
.menu {
  background: var(--base-color);
}
.menu .inner {
  overflow-x: auto;
}
.menu a {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  border-right: 1px solid #fff;
  padding: 15px 20px;
  display: block;
}
.menu a:hover {
  background: #666666;
}
.menu ul {
  display: flex;
  justify-content: center;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.menu ul li:last-child a {
  border-right: none;
}
.hamburger {
  background: var(--base-color);
  width: 70px;
  height: 70px;
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 110;
  transition: 0.7s;
}
.hamburger .inner {
  position: relative;
  width: 23px;
  height: 12px;
  margin-right: auto;
  margin-left: auto;
  line-height: 70px;
  top: 40%;
}
.hamburger span {
  width: 100%;
  height: 1px;
  display: inline-block;
  background: #fff;
  position: absolute;
  transition: 0.7s;
  opacity: 1;
}
.hamburger p {
  display: none;
  font-family: var(--font-mincho);
  font-weight: 400;
}
.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 5px;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
  width: 66%;
}
.hamburger.active span:nth-of-type(1) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(2) {
  transform: translateY(0px) rotate(-45deg);
  top: 50%;
}
.hamburger.active span:nth-of-type(3) {
  transform: translateY(0px) rotate(45deg);
  top: 50%;
  width: 100%;
}
.slider,
.slider-overlay,
.slider li,
.slider li img {
  width: 100vw;
  height: 100vw;
}
.slide li img {
  object-fit: cover;
}
.slider-overlay {
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.slider li img {
  transform: scale(1.3);
}
.active3 img {
  transition-duration: 6s;
}
.active2 img {
  transition-duration: 4s;
}
.active1 img {
  transition-duration: 2s;
}
.slider .active-slide img,
.slider .active-slide-first img {
  transform: scale(1);
}
.popUp {
  z-index: 1;
}
.globalNav {
  display: none;
}
.bgColor-white {
  background-color: #fff;
}
.navi.active {
  height: 100vh;
  transform: translateY(0);
}
.navi {
  background: var(--base-color);
  color: #fff;
  width: 100vw;
  height: 0;
  padding: 100px 20px 40px 20px;
  position: fixed;
  z-index: 100;
  top: 0;
  transform: translateY(-100%);
  transition: 0.7s;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.navi a {
  color: #fff;
}
.navi a:hover {
  opacity: 0.7;
}
.navi .inner {
  height: 100%;
  overflow-y: auto;
}
.menuNavi {
  margin-bottom: 40px;
}
.menuNavi .parent {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.9;
  letter-spacing: 0;
}
.menuNavi .parent > li {
  margin-bottom: 30px;
  line-height: 2;
}
.menuNavi .child {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 18px;
  font-weight: normal;
}
.menuNavi .child a {
  padding: 6px 0;
}
.menuNavi a {
  font-family: var(--font-mincho);
  font-weight: 400;
  display: block;
}
.right {
  font-size: 15px;
}
.headNavi {
  margin-bottom: 32px;
}
.headNavi li {
  background: #fff;
  text-align: center;
  margin-bottom: 16px;
  font-weight: bold;
  border-radius: 30px;
}
.headNavi li a {
  font-size: 20px;
  display: block;
  padding: 15px;
  color: var(--base-color);
  font-family: var(--font-mincho);
  font-weight: 400;
  text-transform: uppercase;
}
.snsBtn {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.snsBtn li {
  margin-right: 20px;
}
.snsBtn li:hover {
  opacity: 0.7;
}
.snsBtn li:last-child {
  margin-right: 0;
}
.navi .snsBtn {
  margin-bottom: 32px;
}
.lead {
  padding-top: 30px;
  padding-bottom: 30px;
  background: url(https://assets.toriaez.jp/thp2/pc/images/242/bgi-blue_001.jpg);
  background-size: cover;
  letter-spacing: 0.1em;
  line-height: 2.4;
  margin-bottom: 35px;
  text-align: left;
}
.lead br {
  display: none;
}
.mainImg .lead {
  padding: 0;
  margin-bottom: 0;
}
.mainImg {
  padding: 20px;
  background: #f7f7f7;
  margin-bottom: 60px;
}
.mainImg figure {
  margin-bottom: 20px;
  text-align: center;
}
.article {
  margin-top: 60px;
}
.article:last-child {
  margin-bottom: 60px;
}
.article .title {
  font-family: var(--font-mincho);
  color: var(--base-color);
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 1.5em;
}
.article .title::before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--base-color);
  display: block;
  margin: 0 0 1em 0;
}
.article figcaption {
  display: none;
}
.article .txt {
  margin-bottom: 2em;
}
.article .inner {
  z-index: 2;
}
#top {
  z-index: 3;
}
.first-img {
  margin-right: -20px;
  margin-left: -20px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
.first-img img {
  width: 100%;
}
.imgContainer figure {
  margin-bottom: 0;
  text-align: center;
}
.imgContainer figure img {
  width: 100%;
}
.editorArea a {
  text-decoration: underline;
}
.editorArea a:hover {
  text-decoration: none;
}
.editorArea img {
  display: block;
  margin: 0 auto;
}
.editorArea hr {
  height: 1px;
  color: var(--text-colorBase);
}
.editorArea ol li {
  list-style-type: decimal;
}
.editorArea ul li {
  list-style-type: disc;
  margin-left: 2em;
}
.editorArea ol li,
.editorArea ul li {
  margin-bottom: 5px;
}
.editorArea em {
  font-style: italic;
}
.editorArea table {
  width: 100%;
  max-width: 100%;
}
.editorArea table th,
.editorArea table td {
  padding: 15px 25px;
  border: 1px solid #ccc;
}
.editorArea table th {
  text-align: center;
  background: #f7f7f7;
  font-weight: normal;
  width: 102px;
}
.editorArea table td {
  background: var(--text-clolorSub);
}
.editorArea img {
  max-width: 100%;
}
.editorArea iframe {
  max-width: 100%;
}
.editorArea strong,
.editorArea b {
  font-weight: bolder;
}
.extraTtl {
  font-size: 22px;
  font-family: var(--font-mincho);
  color: var(--base-color);
  margin-bottom: 30px;
  letter-spacing: 0;
  line-height: 1.2;
  padding-bottom: 25px;
  border-bottom: 1px dotted #ddd;
  position: relative;
}
.extraTtl::before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--base-color);
  display: block;
  position: absolute;
  left: -70px;
  top: 25%;
}
#news {
  margin-bottom: 30px;
}
.rss dt,
.news time {
  font-family: var(--font-mincho);
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.1;
  font-weight: normal;
}
.news li {
  border-bottom: 1px dotted #ddd;
  margin-bottom: 25px;
}
.rss dd::after {
  content: "";
  width: 119%;
  height: 1px;
  display: block;
  border-bottom: 1px dotted #ddd;
  margin-top: 25px;
  margin-left: -18%;
}
.rss dd,
.news span {
  margin-bottom: 25px;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}
.news span {
  display: block;
}
.rss dd a,
.news li a {
  text-decoration: underline;
}
.rss dd a:hover,
.news p a:hover {
  text-decoration: none;
}
.news li.is-hidden {
  display: none;
}
.btn {
  max-width: 200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border: 1px solid var(--base-color);
  border-radius: 30px;
  margin-top: 30px;
  font-family: var(--font-mincho);
}
.btn:hover,
.btn a:hover {
  background: var(--base-color);
  color: #fff;
}
.newsBtn {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.blogBtn {
  position: relative;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  display: block;
  text-decoration: none;
  border-radius: 30px;
}
.blogBtn::after {
  content: "";
  background-image: url(https://assets.toriaez.jp/thp2/pc/images/242/pic-btn_001.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 35%;
  right: 15%;
  cursor: pointer;
}
.freeArea {
  margin-top: 60px;
  margin-bottom: 40px;
  letter-spacing: 0;
  line-height: 1.9;
  padding-right: 20px;
  padding-left: 20px;
}
.pageTop {
  margin-top: 80px;
  margin-bottom: 40px;
  text-align: center;
}
.pageTop a {
  color: #222;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font-mincho);
  position: relative;
  text-decoration: none;
}
.pageTop a::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(135deg);
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease-in-out;
}
.pageTop a:hover::before {
  top: -35px;
}
.contactBtn {
  background: url(https://assets.toriaez.jp/thp2/pc/images/242/bgi-blue_001.jpg);
  background-size: cover;
  padding: 40px 30px 50px 30px;
}
.contactBtn::before {
  content: "お問い合わせ・ご相談";
  font-family: var(--font-mincho);
  text-align: center;
  font-size: 22px;
  display: block;
  width: 100%;
  margin-bottom: 0.5em;
}
.contactBtn a {
  margin-top: 30px;
  margin-bottom: 40px;
  background: var(--base-color);
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: block;
  text-align: center;
  padding: 33px 50px 33px 30px;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.05em;
  line-height: 1.2;
  border-radius: 50px;
  max-width: 480px;
  font-family: var(--font-mincho);
  font-weight: 400;
  margin: 0 auto;
}
.contactBtn a::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 8%;
  margin: auto;
  transform: rotate(225deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease-in-out;
}
.contactBtn a:hover {
  background: #666;
}
.formPage .footer .snsBtn {
  margin-top: 40px;
}
.footer .snsBtn li {
  margin-right: 25px;
}
.footer .snsBtn li:last-child {
  margin-right: 0;
}
.footer .snsBtn a {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #666;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer {
  margin-top: 40px;
}
.footer .qrCode {
  margin-top: 24px;
}
.navi .qrCode {
  margin-bottom: 20px;
}
.qrCode {
  text-align: center;
}
.copyright {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  line-height: 1.2;
  font-size: 12px;
  font-family: var(--font-mincho);
}
.pnkz {
  margin-top: 15px;
  font-size: 11px;
  line-height: 1.2;
  padding-right: 20px;
  margin-bottom: 40px;
  overflow-x: auto;
  overflow-y: hidden;
}
.pnkz ul {
  display: flex;
  justify-content: flex-end;
  width: max-content;
  margin-left: auto;
}
.pnkz li {
  border-right: 1px solid #cccccc;
  margin-left: 5px;
}
.pnkz li:last-child {
  border-right: none;
}
.pnkz a {
  text-decoration: underline;
  padding: 5px;
}
.pnkz a:hover {
  text-decoration: none;
}
.map iframe {
  margin: 0 auto;
  display: block;
  height: 300px;
}
.info {
  margin-top: 60px;
  margin-bottom: 80px;
}
.info dl {
  display: flex;
  margin-bottom: 1px;
  border-top: 1px solid #cccccc;
}
.info dl:last-child {
  border-bottom: 1px solid #cccccc;
}
.info dt {
  padding: 20px;
  width: 180px;
  min-width: 70px;
  font-weight: bold;
  display: block;
}
.info dd {
  padding: 20px;
  width: 100%;
  margin-bottom: 0;
}
.form {
  margin-top: 60px;
}
.form table {
  width: 100%;
}
.form th,
.form td {
  display: block;
  width: 100%;
}
.form th {
  font-family: var(--font-mincho);
  padding: 15px 10px 5px 10px;
}
.form td {
  padding: 5px 10px 15px 10px;
}
.form tr {
  border-top: 1px solid #ccc;
  padding: 5px;
}
.input-text input,
textarea,
.input-age input {
  padding: 8px 15px;
  border-radius: 4px;
  border: 1px solid #d6d6d6;
}
.input-text input,
textarea {
  width: 100%;
}
.input-age input {
  margin-right: 10px;
  vertical-align: bottom;
  width: 150px;
}
textarea {
  height: 300px;
}
.validation_span {
  color: red;
}
.btnCont {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
}
.form-btn {
  display: inline-block;
  max-width: 240px;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  border-radius: 40px;
  color: var(--color-sub);
  text-align: center;
  margin-right: 10px;
  border: none;
  font-weight: bold;
  font-size: 18px;
  font-family: var(--font-mincho);
}
.btn-submit:hover,
.btn-reset:hover {
  opacity: 0.8;
}
.btn-submit {
  background: var(--base-color);
  color: #fff;
  margin-bottom: 15px;
}
.btn-reset {
  background: #c6c6c6;
}
.thaks {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 15px;
  }
  .siteWidth {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
  .siteWidth-s {
    max-width: 1020px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .bgColor-gray {
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .header {
    min-height: 120px;
    padding: 49px 170px 35px 50px;
  }
  .siteTitle {
    font-size: 30px;
  }
  .slide .siteTitle {
    font-family: var(--font-mincho);
    font-weight: 400;
    font-size: 46px;
  }
  .pageTitle {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 50px;
    font-size: 42px;
  }
  .menu .inner {
    margin-right: auto;
    margin-left: auto;
    padding: 0 30px;
  }
  .slider,
  .slider-overlay,
  .slider li,
  .slider li img {
    height: calc(100vw * 0.52642);
  }
  .hamburger {
    width: 120px;
    height: 120px;
  }
  .hamburger .inner {
    width: 40px;
    height: 30px;
    line-height: 90px;
    top: 28%;
  }
  .hamburger p {
    font-size: 12px;
    color: #fff;
    transition: 0.7s;
    display: block;
    opacity: 1;
    letter-spacing: 0;
    font-weight: bold;
  }
  .hamburger.active p {
    opacity: 0;
  }
  .hamburger span:nth-of-type(2) {
    top: 14px;
  }
  .globalNav {
    display: block;
    background: #fff;
    padding: 30px 16px 0 16px;
  }
  .globalNav .parent {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    flex-wrap: wrap;
  }
  .globalNav .parent > li {
    border-right: 1px solid #ccc;
    margin-bottom: 20px;
  }
  .globalNav .parent li:last-child {
    border-right: none;
  }
  .globalNav .parent a {
    text-decoration: none;
    font-family: var(--font-mincho);
    font-weight: 400;
    padding: 15px 24px;
  }
  .globalNav .parent a:hover {
    text-decoration: underline;
  }
  .globalNav .child {
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--base-color);
    position: absolute;
    z-index: 4;
  }
  .globalNav .child li {
    border-bottom: 1px solid #fff;
  }
  .globalNav .child li:last-child {
    border-bottom: none;
  }
  .globalNav .child a {
    display: block;
    color: #fff;
    text-align: center;
  }
  .globalNav .child a:hover {
    text-decoration: none;
    background: #666;
  }
  #news {
    padding: 90px 0px 54px;
    line-height: 1.9;
  }
  .mainImg {
    margin-bottom: 0;
    padding: 0;
  }
  .mainImg .lead {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .noImg.lead {
    width: 100%;
  }
  .lead {
    text-align: center;
  }
  .lead br {
    display: block;
  }
  .lead .inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .mainImg .inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .mainImg figure {
    max-width: 500px;
    text-align: right;
    margin-right: 40px;
    margin-bottom: 0;
  }
  .navi {
    padding: 130px 30px 50px;
  }
  .navi .inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .menuNavi {
    width: 100%;
    max-width: 500px;
    overflow-y: auto;
    height: 100%;
    margin-right: 30px;
  }
  .menuNavi::-webkit-scrollbar {
    width: 14px;
  }
  .menuNavi::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 9px;
  }
  .menuNavi {
    scrollbar-width: thin;
    scrollbar-color: #fff #fff;
  }
  .menuNavi .parent {
    font-size: 28px;
    font-weight: bold;
    padding-right: 15px;
  }
  .menuNavi .parent > li {
    margin-bottom: 30px;
  }
  .menuNavi .child {
    font-size: 16px;
    font-weight: normal;
  }
  .right {
    width: 100%;
    max-width: 300px;
    overflow-y: auto;
    height: 100%;
    padding-right: 15px;
    font-size: 20px;
  }
  .right::-webkit-scrollbar {
    display: none;
  }
  .headNavi {
    margin-bottom: 60px;
    margin-top: 30px;
  }
  .headNavi li {
    margin-bottom: 16px;
  }
  .article {
    margin-top: 130px;
  }
  .article:first-of-type {
    margin-top: 90px;
  }
  .article:last-child {
    margin-bottom: 130px;
  }
  .head {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
  }
  .reverse .head {
    flex-direction: row-reverse;
  }
  .article .inner {
    width: 640px;
    margin-top: 40px;
    background: #fff;
  }
  .normal .inner {
    padding: 60px 60px 60px 0;
    margin-right: -40px;
  }
  .reverse .inner {
    padding: 60px 0 60px 60px;
    margin-left: -40px;
  }
  .article .title {
    font-size: 32px;
    margin-bottom: 40px;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
  .article .txt {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.1em;
  }
  .article .head figure {
    width: 640px;
  }
  .first-img {
    margin-left: 0;
    margin-right: 0;
  }
  .normal .head figure {
    text-align: left;
    margin-left: -40px;
  }
  .reverse .head figure {
    text-align: right;
    margin-right: -40px;
  }
  .imgContainer {
    display: flex;
    justify-content: center;
  }
  .imgContainer figure {
    max-width: 387px;
    width: 100%;
  }
  .imgContainer figure:last-child {
    margin-right: 0;
  }
  #news {
    margin-bottom: 40px;
  }
  .extraTtl {
    font-size: 28px;
  }
  .rss dt,
  .news time {
    display: inline-block;
    width: 15%;
    min-width: 100px;
    padding-top: 6px;
    vertical-align: top;
  }
  .rss dd,
  .news span {
    display: inline-block;
    width: calc((99% - 15%) - 26px);
    font-size: 15px;
  }
  .rss dd {
    width: calc(99% - 15%);
  }
  .news span {
    display: inline-flex;
  }
  .news li a:hover {
    text-decoration: none;
  }
  .freeArea {
    margin-top: 90px;
    margin-bottom: 72px;
    padding: 0;
    font-size: 15px;
  }
  .pageTop {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 20px;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 10;
  }
  .contactBtn {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .contactBtn a {
    font-size: 28px;
  }
  .contactBtn::before {
    font-size: 26px;
  }
  .copyright {
    margin-bottom: 140px;
  }
  .pnkz {
    font-size: 13px;
    max-width: 1200px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .editorArea table th {
    width: 200px;
  }
  .map iframe {
    height: 500px;
  }
  .formPage .footer .snsBtn {
    margin-top: 90px;
  }
  .footer {
    margin-top: 72px;
  }
  .form th,
  .form td {
    padding: 30px 20px;
  }
  .form th {
    font-family: var(--font-mincho);
    width: 30%;
  }
  .form td {
    width: 70%;
  }
  .form tr {
    display: flex;
    align-items: center;
  }
  .input-age input {
    width: 40%;
  }
  .thaks {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.required {
  margin-top: 15px;
}

/* 代行サービス用初期設定(welfare_wide) */
html {
  font-size: 100%;
}
body {
  color: var(--color-text);
  line-height: 1.6;
}
body,
.article .inner {
  background: var(--color-bg-base);
}
.bgColor-gray {
  background: var(--color-bg-muted);
}
.pageTitle,
.headNavi li a,
.article .title,
.extraTtl {
  color: var(--color-primary);
}
.pageTitle,
.lead,
.contactBtn {
  background: var(--color-primary-light);
}
.menu,
.hamburger,
.navi,
.article .title::before,
.extraTtl::before,
.btn:hover,
.btn a:hover,
.contactBtn a,
.contactBtn a:hover,
.btn-submit,
.globalNav .child {
  background: var(--color-primary);
}
.lead,
.contactBtn {
  background-image: none;
}
.pageTitle,
.lead,
.contactBtn {
  background: var(--color-primary-light);
}
.btn {
  border-color: var(--color-primary);
}
.news li,
.info dl,
.editorArea table th,
.editorArea table td {
  border-color: var(--color-border);
}
body,
.siteTitle,
.pageTitle,
.hamburger p,
.menuNavi .child,
.menuNavi a,
.headNavi li a,
.article .title,
.extraTtl,
.rss dt,
.news time,
.btn,
.pageTop a,
.contactBtn::before,
.contactBtn a,
.copyright,
.form th,
.form-btn,
.slide .siteTitle,
.globalNav .parent a,
.form th {
  font-family: var(--font-base);
}
.hamburger {
  border-bottom-left-radius: var(--radius-md);
}
.box-type__button-link,
.headNavi li,
.article img {
  border-radius: var(--radius-md);
}
.contactBtn a {
  border-radius: var(--radius-lg);
}
.pnkz,
.copyright {
  font-size: var(--fontsize-s);
}
body,
.menu a,
.right,
.rss dt,
.news time,
.rss dd,
.news span,
.newsBtn,
.blogBtn,
.pageTop a,
.menuNavi .child,
.form-btn,
.article .txt,
.box-type__text {
  font-size: var(--fontsize-m);
}
.menuNavi .parent,
.headNavi li a,
.contactBtn::before {
  font-size: var(--fontsize-l);
}
.siteTitle,
.pageTitle,
.extraTtl,
.article .title,
.contactBtn a {
  font-size: var(--fontsize-xl);
}
.slide .siteTitle {
  font-size: var(--fontsize-xxl);
}
.siteTitle a:hover {
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .lead {
    line-height: 1.6;
  }
  .siteTitle,
  .pageTitle,
  .extraTtl,
  .article .title,
  .contactBtn a {
    font-size: var(--fontsize-l);
    font-weight: 600;
  }
  .slide .siteTitle {
    font-size: var(--fontsize-xl);
  }
}
/* ボックスTYPE用設定 */
.box-type__title--learge {
  font-family: var(--font-base);
  color: var(--color-primary);
}
.box-type__button-link {
  background: var(--color-primary);
}
/*ホームから主要ページへのリンク*/
ul.highlight-link li {
  border-bottom: 1px solid rgb(204, 204, 204);
  list-style: none;
  margin-left: 0;
}
.highlight-link li a {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 1em 0;
}
.highlight-link li a:hover {
  opacity: 0.7;
}
/* テンプレート固有の初期化 */
.contactBtn::before {
  content: "お気軽にご相談ください";
}
.article .title::before {
  display: none;
}
.contactBtn a {
  border: 2px var(--color-primary) solid;
}
.contactBtn a:hover {
  color: var(--color-primary);
  background-color: #fff;
}
.contactBtn a:hover::after {
  border-color: var(--color-primary);
}
.slider-overlay {
  display: none;
}
.globalNav {
  padding: 50px 0 30px 0;
}
.menuNavi .child a {
  margin-left: 1em;
}
/*welfare_wideの記事と画像の重なり表現を解除*/
@media screen and (min-width: 768px) {
  .normal .head figure,
  .reverse .inner {
    margin-left: 0;
  }
  .normal .inner,
  .reverse .head figure {
    margin-right: 0;
  }
  .normal .inner {
    padding: 0 60px 0 0;
    margin-top: 0;
  }
  .reverse .inner {
    padding: 0 0 0 60px;
    margin-top: 0;
  }
}
/* ここから代行サービス案件ごとの追加 */

/*共通指定*/

/*固有ID指定*/
#xwop .box-type__wrapper .box-type__entry {
  display: flex;
  flex-direction: column;
}
#xwop .box-type__wrapper .box-type__entry .box-type__images {
  order: 1;
}
#xwop .box-type__wrapper .box-type__entry .box-type__title--small {
  order: 2;
}
#xwop .box-type__wrapper .box-type__entry .box-type__text {
  order: 3;
}

/*パソコンサイズ用指定*/
@media screen and (min-width: 768px) {
  .slide .siteTitle img {
    max-height: 300px;
  }
  #c3ji,
  #nfhg {
    text-align: center;
  }
  #c3ji .photo-area {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 0 32px;
  }
  #c3ji .photo-area img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  #vkrx {
    text-align: center;
  }
  #vkrx .title {
    font-size: var(--fontsize-xxl);
  }
  #vkrx .editorArea p {
    font-size: var(--fontsize-l);
  }
  #xwop .box-type__wrapper .box-type__entry figure {
    display: flex;
    justify-content: center;
  }
  #xwop .box-type__wrapper .box-type__entry figure img {
    max-width: 240px;
    border-radius: 120px;
  }
}

/* タブレット用指定 */
@media (min-width: 481px) and (max-width: 767px) {
  .slide .siteTitle img {
    max-height: 300px;
  }
  #c3ji,
  #nfhg {
    text-align: center;
  }
  #c3ji .photo-area {
    display: flex;
    gap: 16px;
    flex-direction: column;
    padding: 0 32px;
  }
  #c3ji .photo-area img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  #vkrx {
    text-align: center;
  }
  #xwop .box-type__wrapper .box-type__entry .box-type__title--small {
    font-weight: bold;
    text-align: center;
  }
  #xwop .box-type__wrapper .box-type__entry figure {
    display: flex;
    justify-content: center;
  }
  #xwop .box-type__wrapper .box-type__entry figure img {
    max-width: 240px;
    border-radius: 120px;
  }
}

/*スマホサイズ用指定*/
@media screen and (max-width: 480px) {
  .slide .siteTitle img {
    max-height: 200px;
  }
  #c3ji .photo-area {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  #c3ji .photo-area img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  #xwop .box-type__wrapper .box-type__entry .box-type__title--small {
    font-weight: bold;
    text-align: center;
  }
  #xwop .box-type__wrapper .box-type__entry figure {
    display: flex;
    justify-content: center;
  }
  #xwop .box-type__wrapper .box-type__entry figure img {
    max-width: 180px;
    border-radius: 120px;
  }
}