@charset "UTF-8";
/*
Theme Name: Original-nichikoOB
Author: Links Agency Inc.
Description: 専用のオリジナルテーマです。2025.8.8制作

★このCSSファイルは「scss」ファイルから自動生成されています。
修正の際は元の「scss」ファイルを開いて操作してください。

*/
/*========================================================*/
/* _base.scss  */
/*========================================================*/
/*calc(最小文字px + (最大文字px - 最小文字px) * ((100vw - 最小画面幅) / (最大画面幅 - 最小画面幅)));*/
@media (min-width: 769px) {
  html {
    font-size: calc(14px + 2 * ((100vw - 769px) / 512));
  }
}
@media (min-width: 1281px) {
  html {
    font-size: calc(16px + 2 * ((100vw - 1281px) / 200));
  }
}
@media (min-width: 1481px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  color: #383935;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  text-align: justify;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-style: normal;
}

a {
  color: #383935;
  transition: background 0.5s ease, opacity 0.5s ease, color 0.5s ease;
}
a:hover {
  color: #9B0032;
}
a:hover img {
  opacity: 0.7;
  backface-visibility: hidden;
  transition: opacity 0.5s ease;
}

@media (min-width: 531px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
h2, h3, h4, h5 {
  font-weight: normal;
}

ol {
  list-style: decimal;
  padding-left: 2em;
}

img {
  backface-visibility: hidden;
}

/*========================================================*/
/* _utility.scss  */
/*========================================================*/
.width-base {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1481px) {
  .width-base {
    max-width: 1480px;
  }
}
@media (max-width: 1280px) {
  .width-base {
    max-width: 1100px;
  }
}

.width-inner {
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.en {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}

.mb-br {
  display: none;
}

.txt-parag {
  line-height: 2;
}
.txt-parag:not(:last-child) {
  margin-bottom: 2em;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.grade-span {
  display: inline-block;
  color: #fff;
  background: linear-gradient(135deg, #ff4622 0%, #bc164c 30%, #9B0032 60%, #9B0032 100%);
  padding: 0.5em;
}

.object-fit-img {
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.page-sec:not(:last-of-type) {
  margin-bottom: 5rem;
}
@media (max-width: 480px) {
  .page-sec:not(:last-of-type) {
    margin-bottom: 3rem;
  }
}

/*--marginやpadding--*/
.mar-bt-m {
  margin-bottom: 5rem;
}

.mar-bt-s {
  margin-bottom: 2rem;
}

.mar-tp-m {
  margin-top: 5rem;
}

.mar-tp-s {
  margin-top: 2rem;
}

/*---------------------------*/
/*flex-box親の登録*/
/*---------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.valign-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.valign-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -ms-flex-line-pack: center;
  align-content: center;
}

/*========================================================*/
/* _component.scss  */
/*========================================================*/
/*---------------------------*/
/*スクロールで要素をふわっと出す*/
/*---------------------------*/
.fadein {
  opacity: 0;
  transform: translate(0, 45px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.5s;
}
.fadein.delay1 {
  transition-duration: 1.5s;
  transition-delay: 1s;
}
.fadein.delay2 {
  transition-duration: 1.5s;
  transition-delay: 1.5s;
}
.fadein.delay3 {
  transition-duration: 1.5s;
  transition-delay: 2s;
}
.fadein.delay4 {
  transition-duration: 1.5s;
  transition-delay: 2.5s;
}

.fadein-to-right {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.fadein-to-right.scrollin {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}
.fadein-to-right.delay1 {
  transition-duration: 1.5s;
  transition-delay: 1s;
}
.fadein-to-right.delay2 {
  transition-duration: 1.5s;
  transition-delay: 1.5s;
}
.fadein-to-right.delay3 {
  transition-duration: 1.5s;
  transition-delay: 2s;
}
.fadein-to-right.delay4 {
  transition-duration: 1.5s;
  transition-delay: 2.5s;
}

/*---------------------------*/
/*リンクまわり*/
/*---------------------------*/
a.gaibu {
  line-height: 1.5em;
}
a.gaibu:hover {
  color: #9B0032;
}
a.gaibu:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.2em;
  margin-right: 0.2em;
  background: url(assets/img/link-gaibu.svg) no-repeat;
  background-size: contain;
  vertical-align: -0.1em;
}

a.border {
  text-decoration: underline;
  line-height: 1.5em;
}
a.border:hover {
  color: #9B0032;
}

.floatbn {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 9;
  bottom: 4vh;
  right: 2vw;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.floatbn.show {
  opacity: 1;
  pointer-events: inherit;
}
.floatbn:hover {
  transform: translateY(-5%);
}
.floatbn__text {
  background-color: #06C755;
  padding: 0.5rem 0;
  font-size: 1.25rem;
  color: #fff;
}
.floatbn__title {
  font-size: 1em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.floatbn__title span {
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: solid 1px #fff;
}
.floatbn__descrp {
  font-size: 0.7em;
  line-height: 1.3;
}
.floatbn img {
  width: 60px;
  margin: auto auto 1rem;
}
.floatbn a {
  display: block;
  width: 10rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding-top: 1rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: filter 0.5s ease;
}
.floatbn a:hover {
  filter: brightness(1.1);
}
.floatbn a:hover img {
  opacity: 1;
}
@media (max-width: 768px) {
  .floatbn {
    right: 3vw;
  }
}
@media (max-width: 660px) {
  .floatbn {
    bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .floatbn {
    right: 1rem;
  }
  .floatbn__text {
    font-size: 3.8vw;
    padding: 3vw 0;
  }
  .floatbn__descrp {
    font-size: 0.8em;
  }
  .floatbn img {
    width: 13vw;
    margin: auto auto 3.5vw;
  }
  .floatbn a {
    width: 28vw;
    padding-top: 3.5vw;
  }
}
@media (max-width: 375px) {
  .floatbn__text {
    font-size: 14.25px;
    padding: 11px 0;
  }
  .floatbn img {
    width: 48px;
    margin: auto auto 13px;
  }
  .floatbn a {
    width: 105px;
    padding-top: 13px;
  }
}

.banner-close {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  line-height: 1;
  font-size: 0;
  text-align: center;
  border: none;
  background-color: #666;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  transition: background 0.5s ease;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -25%);
  z-index: 99999;
}
.banner-close:before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: url("assets/img/icon-close-wh.png") no-repeat;
  background-size: contain;
  background-position: center;
  line-height: 1;
}
.banner-close:focus {
  outline: none;
}
.banner-close:hover {
  background-color: #fbb03b;
}
@media (max-width: 1024px) {
  .banner-close {
    transform: translate(35%, -35%);
  }
}

.link-btn {
  text-align: right;
}
.link-btn a {
  color: #fff;
  font-weight: 300;
  display: inline-block;
  text-align: center;
  line-height: 1;
  font-size: 1.25rem;
  position: relative;
  background: linear-gradient(135deg, #ff4622 0%, #bc164c 30%, #9B0032 60%, #9B0032 100%);
  background-size: 300% auto;
  background-position: 100% 0;
  transition: background-position 0.5s ease, padding 0.5s ease;
  padding: 0.5em 1em 0.5em 2em;
}
.link-btn a:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transition: width 0.5s ease;
}
.link-btn a:after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 1em;
  background: url("assets/img/icon-next-wh.svg") no-repeat center/contain;
  vertical-align: -0.16em;
  margin-left: 0.5em;
}
.link-btn a:hover {
  background-position: 0 0;
}
.link-btn a:hover:before {
  width: 1.5em;
}
.link-btn a:hover {
  padding: 0.5em 0.5em 0.5em 2.5em;
}
@media (max-width: 768px) {
  .link-btn {
    text-align: center;
  }
}

.post-btn {
  text-align: center;
}
.post-btn a {
  display: inline-block;
  width: 350px;
  background: #fff;
  line-height: 1;
  padding: 1em;
  margin-top: 4em;
  border-radius: 5px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .post-btn a {
    width: 60%;
    font-size: 1.15em;
  }
}
@media (max-width: 480px) {
  .post-btn a {
    margin-top: 2em;
  }
}

/*---------------------------*/
/*SVGアイコン*/
/*---------------------------*/
.icon-gaibu {
  display: inline-block;
  width: 0.9em;
  margin: 0 0.25em;
  vertical-align: baseline;
}
.icon-gaibu .path01 {
  fill: #383935;
  transition: fill 0.5s ease;
}
a:hover .icon-gaibu .path01 {
  fill: #9B0032;
}

.link-yajirushi {
  width: 52px;
  height: 52px;
}
.link-yajirushi .path01, .link-yajirushi .path02, .link-yajirushi .path03, .link-yajirushi .circle {
  stroke: #9B0032;
}
a .link-yajirushi .path01,
a .link-yajirushi .path02,
a .link-yajirushi .path03,
a .link-yajirushi .circle {
  transition: all 0.5s ease;
}
a:hover .link-yajirushi .path01, a:hover .link-yajirushi .path02, a:hover .link-yajirushi .path03, a:hover .link-yajirushi .circle {
  stroke: #9B0032;
}
.link-btn .link-yajirushi {
  width: 10%;
  max-width: 45px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(-100%) translateY(-50%);
}
.link-btn .link-yajirushi .path01,
.link-btn .link-yajirushi .path02,
.link-btn .link-yajirushi .path03,
.link-btn .link-yajirushi .circle {
  stroke: #fff;
}
@media (max-width: 1024px) {
  .link-btn .link-yajirushi {
    transform: translateX(-50%) translateY(-50%);
  }
}
@media (max-width: 660px) {
  .link-yajirushi .path01,
  .link-yajirushi .path02,
  .link-yajirushi .path03,
  .link-yajirushi .circle {
    stroke-width: 3px;
  }
}

.link-text .link-yajirushi {
  display: inline-block;
  margin-left: 0.2em;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.25em;
}
.link-text .link-yajirushi .path01,
.link-text .link-yajirushi .path02,
.link-text .link-yajirushi .path03,
.link-text .link-yajirushi .circle {
  stroke-width: 3px;
}

/*---------------------------*/
/*タイトル・テキストまわり*/
/*---------------------------*/
.page-title {
  text-align: center;
  font-size: 3vw;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 3.5em 0;
  margin-bottom: 5rem;
  background: url("assets/img/headbg.jpg") no-repeat center/cover;
}
@media (min-width: 1481px) {
  .page-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .page-title {
    font-size: 25px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .page-title {
    font-size: 20px;
  }
}

.sec-tt {
  line-height: 1;
  text-align: center;
  padding-top: 2.6em;
  margin-bottom: 4rem;
  position: relative;
}
.sec-tt:before {
  content: "";
  display: block;
  width: 100%;
  height: 9.6875rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.sec-tt.news:before {
  background-image: url("assets/img/txt-news.svg");
}
.sec-tt.ouda:before {
  background-image: url("assets/img/txt-ouda.svg");
}
.sec-tt.constitution:before {
  background-image: url("assets/img/txt-constitution.svg");
}
.sec-tt.contact:before {
  background-image: url("assets/img/txt-contact.svg");
}
.sec-tt.privacypolicy:before {
  background-image: url("assets/img/txt-privacypolicy.svg");
}
.sec-tt.updateform:before {
  background-image: url("assets/img/txt-updateform.svg");
}
body.home .sec-tt {
  margin-bottom: 1.5625rem;
}
.sec-tt .sec-ttsub {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: #9B0032;
}
@media (min-width: 1281px) {
  .sec-tt {
    padding-top: 2.7em;
  }
}
@media (max-width: 768px) {
  .sec-tt {
    padding-top: 8vw;
    margin-bottom: 3rem;
  }
  .sec-tt:before {
    height: 17vw;
  }
  body.home .sec-tt {
    padding-top: 36px;
    margin-bottom: 2rem;
  }
  body.home .sec-tt:before {
    height: 110px;
  }
}
@media (max-width: 480px) {
  body.home .sec-tt {
    padding-top: 30px;
  }
  body.home .sec-tt:before {
    height: 100px;
  }
}

.js-split span {
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: 0;
  border-top: solid 1px #999999;
  border-bottom: solid 1px #999999;
  border-right: solid 1px #999999;
  padding: 5px 5px 7px;
}
.js-split span:first-of-type {
  border-left: solid 1px #999999;
}
.js-split.tate span {
  border-left: solid 1px #999999;
}
.js-split.tate span:not(:last-of-type) {
  border-bottom: none;
}

.sec-tt.service-tt {
  padding-left: calc(1em - 8px);
  border-left: solid 8px #9B0032;
}
.sec-tt.service-tt:before {
  content: none;
}
@media (max-width: 768px) {
  .sec-tt.service-tt {
    padding-left: calc(1em - 6px);
    border-width: 6px;
  }
}

/*========================================================*/
/* _header.scss  */
/*========================================================*/
.site-header {
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.site-header.hidden {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  opacity: 0;
}
.site-header.hidden.scrollout {
  opacity: 1;
  transition: opacity ease 0.3s;
}
.site-header .head-tohome {
  line-height: 0;
}
.site-header .head-tohome img {
  width: 330px;
}
@media (max-width: 1024px) {
  .site-header {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  body.home .site-header.hidden + main {
    padding-top: 4.375rem;
  }
}
@media (max-width: 660px) {
  .site-header .head-tohome img {
    width: 250px;
  }
}

@media (min-width: 1025px) {
  body.home .site-header:not(.hidden):not(.scrollout) {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    opacity: 0;
  }
}

body:not(.home) .site-header.hidden + main {
  padding-top: 4.375rem;
}
@media (min-width: 1481px) {
  body:not(.home) .site-header.hidden + main {
    padding-top: 79px;
  }
}

.head-wrap {
  padding: 0.5rem 4.15vw;
}
.head-wrap a {
  display: inline-block;
  color: #383935;
}
.head-wrap a:hover {
  opacity: 1;
}
@media (max-width: 1024px) {
  .head-wrap {
    width: 100%;
    padding: 1rem 3.15vw;
  }
}
@media (max-width: 480px) {
  .head-wrap {
    padding: 1rem 4vw;
  }
}

/*== グローバルメニュー（画面サイズ：デスクトップのとき） ==*/
@media (min-width: 1025px) {
  .global-nav {
    line-height: 1;
  }
  .global-nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0 auto;
  }
  .global-nav .menu .mb-visible-menu {
    display: none;
  }
  .global-nav .menu > li > a {
    padding: 1.25rem 0;
    position: relative;
  }
  .global-nav .menu > li > a:before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9B0032;
    position: absolute;
    left: 0;
    top: 5px;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    transition: left 0.3s ease, opacity 0.5s ease;
  }
  .global-nav .menu > li > a:hover:before {
    left: 50%;
    opacity: 1;
  }
  .global-nav .menu > li:not(:last-of-type):after {
    content: "／";
    display: inline-block;
    margin: 0 0.5em;
  }
  .global-nav .hidden-menu {
    display: none;
  }

  .sub-menu {
    font-size: 0.9em;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 16vw;
    max-width: 250px;
    background: #f0f0f0;
    transition: opacity 1s ease;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .sub-menu li {
    width: 100%;
  }
  .sub-menu li a {
    padding: 20px 0;
    text-align: center;
    width: 100%;
    transition: opacity 0.3s ease, background 0.3s ease;
    color: #383935;
  }
  body.home .sub-menu li a {
    color: #383935;
  }
  .sub-menu li a:hover {
    background: #9B0032;
    color: #fff !important;
  }
  .menu-item-has-children:hover .sub-menu {
    visibility: visible;
    opacity: 1;
  }

  .menu-trigger,
  .overlay {
    display: none;
  }
}
/* == ハンバーガーメニュー（画面サイズ：タブレット以下のとき）==*/
@media (max-width: 1024px) {
  .menu-trigger {
    position: absolute;
    top: 0.5rem;
    right: 3.15vw;
    z-index: 999;
    cursor: pointer;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .menu-trigger .txt-close,
  .menu-trigger .txt-menu {
    display: inline-block;
    margin-top: 2px;
    color: #383935;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    transition: color .5s ease;
  }
  .menu-trigger .txt-close {
    display: none;
    color: #9B0032;
  }

  .menu-trigger-inner {
    position: relative;
    width: 35px;
    height: 35px;
    z-index: 1000;
    margin-top: -1px;
  }

  .hamburger-line {
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #383935;
    transition: all .5s ease;
  }

  .menu-trigger:hover .hamburger-line {
    background-color: #9B0032;
  }
  .menu-trigger:hover .txt-menu {
    color: #9B0032;
  }

  .menu-trigger .line-1 {
    top: 20%;
  }

  .menu-trigger .line-2 {
    top: 50%;
  }

  .menu-trigger .line-3 {
    top: 80%;
  }

  .overlay {
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 997;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity .5s ease;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .head-wrap {
    margin-right: 10vw;
  }

  .nav-open .overlay {
    opacity: 1;
    visibility: visible;
  }

  .nav-open .menu-trigger {
    position: fixed;
  }
  .nav-open .menu-trigger .hamburger-line {
    background-color: #9B0032;
  }
  .nav-open .menu-trigger .line-1 {
    top: 50%;
    transform: rotate(135deg);
  }
  .nav-open .menu-trigger .line-2 {
    width: 0;
    opacity: 0;
  }
  .nav-open .menu-trigger .line-3 {
    top: 50%;
    transform: rotate(45deg);
  }
  .nav-open .menu-trigger .txt-menu {
    display: none;
  }
  .nav-open .menu-trigger .txt-close {
    display: block;
  }

  /* 開いたメニューのスタイル */
  .nav-open .global-nav {
    display: block;
    margin: 0;
    transition: opacity .5s ease;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 510px;
    height: 100vh;
    padding: 5rem 0 15vw;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 1.2rem;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  }
  .nav-open .global-nav:before {
    display: block;
  }
  .nav-open .global-nav a:hover {
    color: #9B0032;
  }

  .global-nav .menu-global-container {
    position: absolute;
    top: -100vw;
    right: -100vw;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity .5s ease, transform .5s ease;
  }
  .nav-open .global-nav .menu-global-container {
    position: static;
    opacity: 1;
    transform: scale(1);
    margin-bottom: 6rem;
  }
  .global-nav .menu-global-container .menu > li {
    border-bottom: solid 1px;
    padding: 1.5rem 3.15vw;
  }
  .global-nav .menu-global-container .menu > li:first-of-type {
    border-top: solid 1px;
  }
  .global-nav .menu-global-container .menu > li > a {
    font-size: 1.6rem;
  }
  .global-nav .menu-global-container .sub-menu {
    margin-top: 20px;
  }
  .global-nav .menu-global-container .sub-menu > li {
    position: relative;
  }
  .global-nav .menu-global-container .sub-menu > li:not(:last-of-type) a {
    padding-bottom: 10px;
  }
  .global-nav .menu-global-container .sub-menu > li > a {
    padding-left: 15px;
    padding-right: 35px;
  }
  .global-nav .menu-global-container .sub-menu .hidden-menu {
    display: none !important;
  }
}
@media (max-width: 660px) {
  .nav-open .global-nav {
    width: 80%;
    font-size: 1rem;
  }

  .global-nav .menu-global-container .menu > li {
    padding: 1.3rem;
  }
  .global-nav .menu-global-container .menu > li > a {
    font-size: 1.2rem;
  }
  .global-nav .menu-global-container .sub-menu {
    margin-top: 12px;
  }
  .global-nav .menu-global-container .sub-menu > li:not(:last-of-type) a {
    padding-bottom: 5px;
  }

  .menu-trigger-inner {
    width: 30px;
    height: 28px;
  }
}
@media (max-width: 480px) {
  .menu-trigger {
    right: 4vw;
  }
}
@media (max-width: 375px) {
  .menu-trigger .txt-close,
  .menu-trigger .txt-menu {
    font-size: 11px;
  }
}
/*========================================================*/
/* _footer.scss  */
/*========================================================*/
.site-footer {
  padding: 3rem 0;
  font-size: 0.9rem;
  background-color: #de1b1b;
  background-image: radial-gradient(at 100% 0%, #a61955 0px, transparent 50%), radial-gradient(at 0% 100%, #de5628 0px, transparent 50%), radial-gradient(at 80% 100%, #d4115b 0px, transparent 50%), radial-gradient(at 0% 0%, #ef3e79 0px, transparent 50%);
}
.site-footer a {
  display: block;
  color: #fff;
}
@media (max-width: 660px) {
  .site-footer .inner {
    display: block;
    width: 75%;
  }
}
@media (max-width: 480px) {
  .site-footer {
    font-size: 1rem;
  }
  .site-footer .inner {
    width: 85%;
  }
}

.foot-logo {
  width: 50%;
  max-width: 524px;
}
@media (max-width: 768px) {
  .foot-logo {
    width: 65%;
  }
}
@media (max-width: 660px) {
  .foot-logo {
    width: 100%;
    max-width: inherit;
  }
}

.sitelogo {
  line-height: 0;
}
.sitelogo a {
  display: inline-block;
  width: 100%;
}
.sitelogo img {
  width: 100%;
}

.sns-link {
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.sns-link li {
  margin: 0 0.9375rem;
}
.sns-link li:last-of-type {
  margin-right: 0;
}
.sns-link img {
  width: 3.125rem;
}
.sns-link .highschool {
  text-align: center;
}
.sns-link .highschool a {
  padding: 0.2em 1.5em;
  background: #fff;
  color: #a61955;
  border-radius: 0.3em;
  font-weight: 500;
}
.sns-link .highschool a:hover {
  background: rgba(255, 255, 255, 0.7);
}
.sns-link .highschool a .icon-gaibu .path01 {
  fill: #9B0032;
}
@media (max-width: 768px) {
  .sns-link li {
    margin: 0 2vw;
  }
  .sns-link img {
    width: 6vw;
  }
}
@media (max-width: 660px) {
  .sns-link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .sns-link li {
    margin: 0 8px;
  }
  .sns-link img {
    width: 30px;
  }
}

.foot-nav {
  width: 30%;
  max-width: 200px;
}
@media (max-width: 660px) {
  .foot-nav {
    width: 100%;
    max-width: inherit;
  }
}

.menu-footnav-container a {
  padding: 0.3125rem;
}
.menu-footnav-container a:hover {
  background: rgba(255, 255, 255, 0.4);
}
.menu-footnav-container ul {
  border-top: solid 1px #fff;
}
.menu-footnav-container li {
  border-bottom: solid 1px #fff;
}

.site-info {
  font-family: "Barlow", sans-serif;
  padding: 1em;
  color: #999999;
  text-align: right;
  line-height: 1;
}

/*========================================================*/
/* _post.scss  */
/*========================================================*/
/*スクリーンリーダー用*/
.sr-only {
  display: none;
}

body.post-type-archive-ouda {
  background: #effafd;
}

/*---------------------------*/
/*投稿埋め込み*/
/*---------------------------*/
.post-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 3%;
  margin-bottom: 4rem;
}
.post-list li {
  background: #f6f6f6;
}
.post-list dt {
  padding: 1em 1.5em;
  font-size: 0.9rem;
  line-height: 1.4;
}
.post-list .post-meta {
  overflow: hidden;
  text-align: center;
  font-size: 0.8rem;
  color: #fff;
}
.post-list .post-meta .cat {
  width: 40%;
  float: left;
}
.post-list .post-meta .date {
  width: 60%;
  float: right;
  background: #9B0032;
}
.post-list .post-thum img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
}
@media (max-width: 1024px) {
  .post-list dt {
    padding: 1em;
  }
}
@media (max-width: 768px) {
  .post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .post-list dt {
    font-size: 2.5vw;
  }
  .post-list dd {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .post-list {
    gap: 1rem 3%;
  }
  .post-list dt {
    padding: 0.5em 0.8em;
    font-size: 3vw;
  }
}
@media (max-width: 375px) {
  .post-list dt {
    font-size: 12px;
  }
}

.post-meta .cat {
  background: #d4145a;
}
.post-meta .cat.news {
  background: #fbb03b;
}

/*---------------------------*/
/*アーカイブ*/
/*---------------------------*/
/*ページャースタイル*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination .pager,
.pagination .next,
.pagination .prev,
.pagination .first,
.pagination .last {
  display: block;
  line-height: 1;
  margin: 0 5px;
}
.pagination .pager {
  border: solid 1px #999999;
  background-color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  padding-top: 0.67rem;
  text-align: center;
  transition: border-color 0.5s ease, color 0.5s ease;
}
.pagination .pager:not(:hover) {
  color: #383935;
}
.pagination .pager:hover {
  border-color: #9B0032;
}
.pagination .current .pager {
  border: solid 1px #9B0032;
  background: #9B0032;
  color: #fff;
}
.pagination .next a:not(:hover),
.pagination .prev a:not(:hover),
.pagination .first a:not(:hover),
.pagination .last a:not(:hover) {
  color: #9B0032;
}

.single .pager-wrap a {
  display: inline-block;
  padding: 8px;
  margin-right: 5px;
}

.information-single-prev,
.information-single-next {
  min-width: 4em;
}

.icon-prev,
.icon-next {
  display: inline-block;
  width: 0.6em;
  height: 0.9em;
  vertical-align: -0.1em;
}

.icon-prev-d,
.icon-next-d {
  display: inline-block;
  width: 1em;
  height: 0.9em;
  vertical-align: -0.1em;
}

.icon-prev,
.icon-prev-d {
  margin-right: 0.5em;
}

.icon-next,
.icon-next-d {
  margin-left: 0.5em;
}

.pager-wrap .icon-prev .path01,
.pager-wrap .icon-next .path01,
.pager-wrap .icon-prev-d .path01,
.pager-wrap .icon-next-d .path01 {
  stroke: #383935;
}
.pager-wrap a .icon-prev .path01,
.pager-wrap a .icon-next .path01,
.pager-wrap a .icon-prev-d .path01,
.pager-wrap a .icon-next-d .path01 {
  transition: stroke 0.5s ease;
}
.pager-wrap a:hover .icon-prev .path01, .pager-wrap a:hover .icon-next .path01, .pager-wrap a:hover .icon-prev-d .path01, .pager-wrap a:hover .icon-next-d .path01 {
  stroke: #9B0032;
}

.categori-list {
  margin-bottom: 3em;
}
.categori-list li {
  margin: 0 1em;
}
.categori-list li a {
  line-height: 1;
  padding: 5px;
  display: inline-block;
  font-size: 0.9em;
  font-weight: 500;
  color: #9B0032;
  position: relative;
}
.categori-list li a:after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9B0032;
  position: absolute;
  left: 0;
  top: -0.5em;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  transition: left 0.3s ease, opacity 0.5s ease;
}
.categori-list li a:hover:after {
  left: 50%;
  opacity: 1;
}
.categori-list li.current-cat a {
  cursor: text;
  pointer-events: none;
}
.categori-list li.current-cat a:after {
  left: 50%;
  opacity: 1;
}
.categori-list li:not(.current-cat) {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .categori-list li a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .categori-list {
    margin-bottom: 2em;
  }
  .categori-list li {
    margin: 0 0.5em;
  }
}

/*  シングル single（新着情報）*/
/*---------------------------*/
.sec_single-post .single-tt {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.sec_single-post .post-meta {
  margin-bottom: 2rem;
  gap: 1rem;
  line-height: 2;
}
.sec_single-post .post-meta .date {
  font-size: 0.9rem;
}
.sec_single-post .post-meta .cat a {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  padding: 0 2em;
}
@media (max-width: 660px) {
  .sec_single-post .single-tt {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .sec_single-post .single-tt,
  .sec_single-post .post-meta {
    margin-bottom: 1rem;
  }
}

.single-note {
  padding: 2rem 0;
  min-height: 35vw;
  margin-bottom: 2rem;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  font-weight: normal;
  line-height: 2;
}
.single-note a:not(.fancybox) {
  text-decoration: underline;
}
.single-note a {
  display: inline-block;
}
.single-note p {
  margin-bottom: 2em;
}
.single-note img {
  width: 100%;
  max-width: 800px;
  margin-bottom: 3em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.single-note img.kaiho-thum {
  max-width: 200px;
  margin-bottom: 0;
}
.single-note h3, .single-note h4 {
  font-weight: 700;
}
.single-note h3 {
  font-size: 1.3rem;
  border-left: solid 4px #ccc;
  padding-left: 0.5em;
  margin-bottom: 1rem;
}
.single-note h4 {
  font-size: 1.1rem;
}
.single-note .gallery {
  margin-bottom: 3em !important;
}
.single-note .gallery-item {
  width: 23% !important;
  margin-right: 1em;
}
.single-note .gallery-item:nth-of-type(4n) {
  margin-right: 0;
}
.single-note .gallery-item a {
  display: block;
}
.single-note .gallery-item img {
  margin-bottom: 0.5em;
  width: 100%;
  height: 15vw;
  max-height: 270px;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.single-note .gallery-caption {
  font-size: 0.8rem;
}
@media (max-width: 660px) {
  .single-note {
    min-height: 35vh;
  }
  .single-note .gallery-item {
    width: 48% !important;
    margin-right: 1em;
  }
  .single-note .gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .single-note .gallery-item img {
    height: 30vw;
  }
}
@media (max-width: 480px) {
  .single-note {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }
}

/*---------------------------*/
/*会報 ouda アーカイブページ*/
/*---------------------------*/
.ouda-list {
  padding: 0 1.8vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  column-gap: 3vw;
  row-gap: 3vw;
  margin-bottom: 4rem;
}
.ouda-list li {
  position: relative;
}
@media (min-width: 1281px) {
  .ouda-list {
    padding: 0 1.5rem;
    column-gap: 2.5rem;
    row-gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .ouda-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4.6vw;
    row-gap: 7vw;
    padding-top: 7vw;
  }
}

/*ベースのレイアウト*/
.ouda-item {
  width: 100%;
  height: 100%;
  padding: 4.5vw 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
@media (min-width: 1281px) {
  .ouda-item {
    padding: 3.625rem 0;
  }
}
@media (max-width: 1024px) {
  .ouda-item {
    padding: 5.5vw 0;
  }
}
@media (max-width: 480px) {
  .ouda-item {
    padding: 10vw 0;
  }
}

.issue-tt {
  font-size: 5vw;
  line-height: 1;
  letter-spacing: 0.02em;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translateX(-0.15em) translateY(-0.45em);
}
.issue-tt .vol {
  font-size: 0.4em;
}
.issue-tt .num {
  font-weight: 500;
}
.issue-tt .year {
  font-size: 0.28em;
  letter-spacing: 0.13em;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
}
@media (min-width: 1281px) {
  .issue-tt {
    font-size: 3.75rem;
  }
}
@media (max-width: 768px) {
  .issue-tt {
    font-size: 6vw;
  }
}
@media (max-width: 480px) {
  .issue-tt {
    font-size: 10.5vw;
  }
  .issue-tt .year {
    transform: translateY(25%);
  }
}

.volinfo:after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: #383935;
  margin-top: 0.15em;
  margin-bottom: 0.1em;
}

body.post-type-archive-ouda:not(.paged) .ouda-list li:first-of-type,
body.home .ouda-list li:first-of-type {
  grid-column: span 2;
  grid-row: span 2;
}
body.post-type-archive-ouda:not(.paged) .ouda-list li:first-of-type .ouda-item,
body.home .ouda-list li:first-of-type .ouda-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.post-type-archive-ouda:not(.paged) .ouda-list li:first-of-type .issue-tt,
body.home .ouda-list li:first-of-type .issue-tt {
  font-size: 8vw;
}
@media (min-width: 481px) {
  body.post-type-archive-ouda:not(.paged) .ouda-list li:first-of-type .year,
  body.home .ouda-list li:first-of-type .year {
    bottom: 2.5%;
  }
}
@media (min-width: 1281px) {
  body.post-type-archive-ouda:not(.paged) .ouda-list li:first-of-type .issue-tt,
  body.home .ouda-list li:first-of-type .issue-tt {
    font-size: 6.25rem;
  }
}
@media (max-width: 768px) {
  body.post-type-archive-ouda:not(.paged) .ouda-list li:first-of-type .issue-tt,
  body.home .ouda-list li:first-of-type .issue-tt {
    font-size: 9vw;
  }
}
@media (max-width: 480px) {
  body.post-type-archive-ouda:not(.paged) .ouda-list li:first-of-type .ouda-item,
  body.home .ouda-list li:first-of-type .ouda-item {
    width: 78%;
    margin: auto;
    padding: 14vw 0;
  }
  body.post-type-archive-ouda:not(.paged) .ouda-list li:first-of-type .issue-tt,
  body.home .ouda-list li:first-of-type .issue-tt {
    font-size: 16vw;
    left: 8%;
    transform: translateX(0) translateY(-0.45em);
  }
}

body.home .ouda-list {
  margin-bottom: 2.8vw;
}
body.home .ouda-list li:not(:first-of-type) {
  transition-duration: 1.5s;
  transition-delay: 1s;
}
body.home .ouda-list li:not(:first-of-type) .volinfo {
  transition-duration: 1.5s;
  transition-delay: 1s;
}
body.home .ouda-list li:not(:first-of-type) .ouda-item {
  padding-bottom: 2.5vw;
}
body.home .ouda-list li:not(:first-of-type) .year {
  display: none;
}
@media (min-width: 481px) {
  body.home .ouda-list .issue-tt {
    height: 104%;
  }
}
@media (min-width: 1281px) {
  body.home .ouda-list {
    margin-bottom: 3.125rem;
  }
  body.home .ouda-list li:not(:first-of-type) .ouda-item {
    padding-bottom: 1.875rem;
  }
}
@media (max-width: 480px) {
  body.home .ouda-list {
    margin-bottom: 5vw;
  }
  body.home .ouda-list li:not(:first-of-type) .ouda-item {
    padding-bottom: 5vw;
  }
}

.ouda-sum {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.pdf-thum {
  width: 100%;
  aspect-ratio: 2 / 3;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

/*========================================================*/
/* _home.scss  */
/*========================================================*/
.hero-area {
  margin-bottom: 3rem;
}
@media (min-width: 1281px) {
  .hero-area {
    margin-bottom: 5vw;
  }
}

.hero-slide img {
  width: 100%;
}
.hero-slide a:hover img {
  opacity: 1;
}
@media (min-width: 769px) {
  .hero-slide img {
    aspect-ratio: 16 / 7;
  }
}
@media (max-width: 480px) {
  .hero-slide img {
    aspect-ratio: 3 / 4;
  }
}

.hero-slide .swiper-pagination-bullet {
  width: 1.6rem;
  height: 4.5px;
  border-radius: inherit;
  cursor: pointer;
  transition: all 0.5s ease;
  vertical-align: top;
  background-color: #000;
}
.hero-slide .swiper-pagination-bullet-active {
  width: 4rem;
  background: linear-gradient(135deg, #ff4622 0%, #bc164c 30%, #9B0032 60%, #9B0032 100%);
}
.hero-slide .swiper-horizontal > .swiper-pagination-bullets,
.hero-slide .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero-slide .swiper-pagination-custom,
.hero-slide .swiper-pagination-fraction {
  bottom: 0;
}

.hero-nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4622 0%, #bc164c 30%, #9B0032 60%, #9B0032 100%);
}
.hero-nav .menu a {
  display: block;
  padding: 0.5em 1em;
  color: #fff;
}
.hero-nav .menu a:hover {
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 660px) {
  .hero-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .sec_post {
    margin-bottom: 4rem;
  }
}

body.home .post-list {
  margin-bottom: 2rem;
}
body.home .post-list li:nth-child(2) {
  transition-duration: 1.5s;
  transition-delay: 1s;
}
body.home .post-list li:nth-child(3) {
  transition-duration: 1.5s;
  transition-delay: 1.5s;
}
body.home .post-list li:nth-child(4) {
  transition-duration: 1.5s;
  transition-delay: 2s;
}

.bg-prism {
  background: url("assets/img/ouda-bg.jpg") no-repeat center/cover;
  padding-top: 7vw;
  position: relative;
}
.bg-prism:before {
  content: "";
  display: block;
  width: 14.8vw;
  max-width: 230px;
  height: 100%;
  background: url("assets/img/txt-newsletter.svg") no-repeat left/contain;
  mix-blend-mode: overlay;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 1481px) {
  .bg-prism {
    padding-top: 110px;
  }
}
@media (max-width: 768px) {
  .bg-prism {
    background-image: url("assets/img/ouda-bg-tb.jpg");
  }
}
@media (max-width: 480px) {
  .bg-prism {
    background-position: top 0 right 20%;
  }
  .bg-prism:before {
    width: 23vw;
    background-position: left top;
  }
}

.sec_kaiho .link-btn {
  padding-right: 1.8vw;
  transform: translateY(50%);
}
@media (min-width: 1281px) {
  .sec_kaiho .link-btn {
    padding-right: 1.5rem;
  }
}

.school-song {
  padding: 3rem 0;
  background: url("assets/img/footbg-sakura.jpg") no-repeat center/cover;
}
.school-song__inner {
  writing-mode: vertical-rl;
  margin: auto;
}
.school-song__title {
  margin-left: 3rem;
}
.school-song__lyrics {
  font-size: 1.2rem;
  line-height: 4em;
  letter-spacing: 0.2em;
  margin-left: 3rem;
  margin-bottom: 3rem;
}
.school-song__credit {
  text-align: right;
}
@media (max-width: 768px) {
  .school-song {
    background-image: url("assets/img/footbg-sakura-tb.jpg");
  }
  .school-song__title {
    margin-left: 2rem;
  }
  .school-song__lyrics {
    line-height: 3em;
    margin-left: 2rem;
  }
}
@media (max-width: 660px) {
  .school-song__lyrics {
    font-size: 1.1rem;
    margin-left: 1rem;
  }
}
@media (max-width: 480px) {
  .school-song__lyrics {
    line-height: 8.5vw;
  }
}

/*========================================================*/
/* _pages.scss  */
/*========================================================*/
#page-content,
#archive-content,
#categori-content,
#post-content {
  padding-bottom: 6rem;
}
@media (max-width: 660px) {
  #page-content,
  #archive-content,
  #categori-content,
  #post-content {
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  #page-content,
  #archive-content,
  #categori-content,
  #post-content {
    padding-bottom: 2rem;
  }
}

/*---------------------------*/
/* 同窓会会則 */
/*---------------------------*/
.chapter-tt {
  text-align: center;
  line-height: 1;
  margin-bottom: 2em;
}

.dl-chapter {
  margin-bottom: 5em;
  display: flex;
  flex-wrap: wrap;
}
.dl-chapter > dt {
  width: 20%;
  text-align: center;
}
.dl-chapter > dd {
  width: 80%;
}
.dl-chapter > dd ol {
  margin-top: 1em;
  font-size: 0.9em;
}
.dl-chapter > dt, .dl-chapter > dd {
  padding: 0.5em 1em;
  border-bottom: solid 1px #ddd;
}
.dl-chapter > dt:first-of-type, .dl-chapter > dd:first-of-type {
  border-top: solid 1px #ddd;
}
@media (max-width: 480px) {
  .dl-chapter > dt, .dl-chapter > dd {
    padding: 0.5em;
  }
}

/*---------------------------*/
/* お問い合わせ コンタクト　*/
/*---------------------------*/
/*ーーーー基本設定ーーーー*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  border: none;
  border-radius: 3px;
  border: solid 1px #ddd;
  padding: 0.5em;
  background: #fff;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
  border-color: #444;
}
@media (max-width: 480px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea {
    padding: 0.5em 0.25em;
  }
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted #333;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 3px;
}

button,
input[type="button"],
input[type="submit"] {
  border: 0;
  cursor: pointer;
}

::placeholder {
  color: #999;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #999;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #999;
}

/*ーーーーレイアウト設定ーーーー*/
.wpcf7-not-valid-tip,
.my-valid {
  display: block;
  width: 5em;
  font-size: 0.8em;
  color: #dc3232;
  background: #fbebe6;
  line-height: 1;
  text-align: center;
  padding: 0.25em;
  margin-top: 0.25em;
  margin-bottom: 1em;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  text-align: center;
}

.sec_form-set .hissu {
  color: #C43500;
}

.form-row:last-of-type {
  margin-bottom: 2rem;
}
.form-row legend {
  font-size: 1rem;
}
@media (min-width: 661px) {
  .form-row {
    display: flow-root;
    position: relative;
    background: #f7eaf2;
    border-bottom: solid 4px #fff;
    text-align: left;
  }
  .form-row legend {
    width: 25%;
    float: left;
  }
  .form-row legend .inner {
    width: 25%;
    padding-left: 1rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media (max-width: 660px) {
  .form-row {
    margin-bottom: 1rem;
  }
  .form-row legend {
    background: #f7eaf2;
    border-bottom: solid 3px #fff;
    text-align: center;
    padding: 0.5em 0;
  }
}

.inputdata {
  padding: 1rem;
  background: #f6f6f6;
}
.inputdata input.w20 {
  width: 25%;
  margin-right: 0.25em;
}
.inputdata .my-valid {
  display: none;
}
.inputdata:has(.my-valid) .wpcf7-not-valid-tip {
  display: none;
}
.inputdata:has(.my-valid):has(.wpcf7-not-valid-tip) .my-valid {
  display: block;
}
@media (min-width: 661px) {
  .inputdata {
    width: 75%;
    float: right;
    border-left: solid 4px #fff;
  }
}
@media (min-width: 1281px) {
  .inputdata {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .inputdata {
    padding: 1rem 0.5rem;
  }
}

.form-txt {
  font-size: 0.9rem;
  margin-bottom: 1em;
}
@media (min-width: 1281px) {
  .form-txt {
    font-size: 0.8rem;
  }
}

.form-fillin .wpcf7-form-control-wrap:not(:first-of-type) input {
  margin-left: 0.25em;
}

.form-dl:first-of-type {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.form-dl dt:before {
  content: '■';
  display: inline-block;
  font-size: 0.9em;
  margin-right: 0.25em;
}
.form-dl dd {
  margin-bottom: 0.25em;
}

input[type="button"].findzip {
  background: #fff;
  border: solid 1px #999;
  line-height: 1;
  padding: 0.5rem;
  font-size: 0.9em;
  border-radius: 0.25em;
}

@media (max-width: 480px) {
  .confirm .mb-br {
    display: block;
  }
}

.formsubmit {
  display: inline-block;
  text-align: center;
  line-height: 1;
  font-size: 1.25rem;
  position: relative;
  background: linear-gradient(135deg, #ff4622 0%, #bc164c 30%, #9B0032 60%, #9B0032 100%);
  background-size: 300% auto;
  background-position: 100% 0;
  transition: background-position 0.5s ease, padding 0.5s ease;
  padding-right: 1em;
}
.formsubmit:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transition: width 0.5s ease;
}
.formsubmit:after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 1em;
  background: url("assets/img/icon-next-wh.svg") no-repeat center/contain;
  vertical-align: -0.16em;
  margin-left: 0.5em;
}
.formsubmit:hover {
  background-position: 0 0;
}
.formsubmit:hover:before {
  width: 1.5em;
}
.formsubmit input[type="submit"] {
  display: inline-block;
  background: transparent;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.1em;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 2em;
  transition: padding 0.5s ease;
}
.formsubmit:has(input[type="submit"]:disabled) {
  background: #ddd;
  pointer-events: none;
}
.formsubmit:hover {
  padding-right: 0.5em;
}
.formsubmit:hover input[type="submit"] {
  padding-left: 2.5em;
}

/*Cloudflare Turnstileバッジ*/
.wpcf7-turnstile {
  margin-top: 4rem;
}

.recaptcha-text {
  margin-top: 2rem;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
  padding: 0.8em;
  border: solid 1px #ddd;
}
@media (max-width: 660px) {
  .recaptcha-text {
    font-size: 0.95rem;
    text-align: left;
  }
}

/*---------------------------*/
/* プライバシーポリシー */
/*---------------------------*/
.contents-subt {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2em;
  padding-left: 0.5em;
  border-left: solid 6px #9B0032;
}
body.home .contents-subt {
  font-size: 2rem;
  margin-bottom: 1em;
}
@media (max-width: 660px) {
  .contents-subt {
    font-size: 1.5rem;
    border-width: 4px;
    padding-left: 0.3em;
    letter-spacing: 0;
  }
  body.home .contents-subt {
    font-size: 1.5rem;
  }
}

.pp-detail {
  line-height: 2em;
}
.pp-detail a:not([href*="tel:"]) {
  text-decoration: underline;
}
.pp-detail .title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #9B0032;
  margin-bottom: 0.5em;
}
.pp-detail .text {
  font-weight: normal;
  margin-bottom: 3em;
}
.pp-detail .list {
  list-style-type: disc;
  list-style-position: inside;
  margin-top: 1em;
}
.pp-detail .list li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.pp-detail .teigi {
  margin-top: 1em;
}
.pp-detail .teigi dd:before {
  content: "\02022";
  display: inline;
  font-size: 1.4em;
  padding-right: 0.5em;
}
.pp-detail .jyoko {
  margin-top: 1em;
  list-style-type: none;
  padding: 1em 1em 1em 0.5em;
  background: #f6f6f6;
  counter-reset: item;
}
.pp-detail .jyoko li {
  text-indent: -2.8em;
  padding-left: 2.8em;
}
.pp-detail .jyoko li:before {
  font-weight: 500;
  counter-increment: item;
  /*カウンターを増減*/
  content: "（" counter(item) "）";
}
.pp-detail .teigi-count {
  margin-top: 1em;
  padding: 1em 2em 1em 1em;
  background: #f6f6f6;
  counter-reset: title;
}
.pp-detail .teigi-count dt {
  font-weight: 500;
}
.pp-detail .teigi-count dt:before {
  counter-increment: title;
  /*カウンターを増減*/
  content: "（" counter(title) "）";
}
.pp-detail .teigi-count dd {
  padding-left: 2.5em;
}
@media (max-width: 480px) {
  .pp-detail .jyoko,
  .pp-detail .teigi-count {
    padding: 1em 1em 1em 0.5em;
  }
}

/*---------------------------*/
/* 404 Not Foundページ */
/*---------------------------*/
.page_404 .page-title {
  padding: 3em 0;
}
.page_404 .page-title .sub {
  font-size: 0.9rem;
  letter-spacing: inherit;
}

.error-404 {
  min-height: 40vh;
}
.error-404 .inner {
  padding: 2em;
  border: solid 5px #f6f6f6;
}
.error-404 .eng {
  margin-bottom: 2rem;
}
.error-404 .jpn {
  margin-bottom: 1em;
}
@media (min-width: 769px) {
  .error-404 {
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
