@charset "UTF-8";
/*
======================================================================
 Header
======================================================================*/
.Header {
  position: relative;
  z-index: 20;
}

.Header .Header-in-wrap {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.4s;
}

.Header .Header-pattern .Header-main-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  font-size: 15px;
  color: #003d7c;
  font-weight: bold;
  background-color: #fff;
  opacity: 0.9;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.03), 0px 4px 6px -2px rgba(0, 0, 0, 0.03), 0px 0px 0px 0px transparent;
}

/* left-wrap
--------------------------------------------------------- */
.Header .Header-pattern .left-wrap{
  width: 320px;
  min-width: 220px;
}

.Header .Header-pattern .Header-logo {
  font-size: inherit;
}

.Header .Header-pattern .Header-logo a {
  display: block;
}

.Header .Header-pattern .Header-logo img {
  max-height: 40px;
  min-width: 170px;
}

/* center-wrap
--------------------------------------------------------- */
.Header .Header-pattern .center-wrap{
  width: 510px;
  min-width: 390px;
}

.Header-nav {
  display: flex;
  height: 80px;
}

.Header-nav .No-list {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: space-between;
}

.Header-nav .No-list li{
  min-width: 66px;
}

/* right-wrap
--------------------------------------------------------- */

.Header .Header-pattern .right-wrap div.nav.contact a {
  display: block;
  max-width: 180px;
  min-width: 167px;
  background: #003d7c !important;
  color: #fff !important;
  text-align: center;
  padding: 10px 35px;
  border-radius: 8px;
  text-decoration: none;
}

.Header .Header-pattern .right-wrap div.nav.contact a:hover {
  opacity: 0.8;
}

.Header .Header-pattern .right-wrap div.nav.contact a::after {
  transform: scale(0, 0) !important;
  background: transparent !important;
}


/*
======================================================================
 Footer
======================================================================*/
/*
---------------------------------------------------------
 footer-content-block
--------------------------------------------------------- */
.Footer .footer-content-block {
  padding: 100px 0;
  background: #848484;
  color: #fff;
  font-size: 14px;
}
.Footer .footer-content-block .footer-main-wrap{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 130px;
}

/* left-wrap
--------------------------------------------------------- */
.Footer .footer-main-wrap .left-wrap{
  display: flex;
  flex-direction: column;
  height: 112px;
}

.Footer .footer-main-wrap .left-wrap .logo-wrap {
  width: 260px;
  min-width: 150px;
  margin-right: 150px;
}

@media (max-width: 1250px){
  .Footer .footer-main-wrap .left-wrap .logo-wrap {
    margin-right: 50px;
  }
}

.Footer .footer-main-wrap .left-wrap .Copyright{
  margin-top: auto;
}

/* right-wrap
--------------------------------------------------------- */
.Footer .footer-content-block .footer-main-wrap .right-wrap {
  display: flex;
}

.Footer .footer-content-block .footer-main-wrap .right-wrap ul.No-list.footer-menu{
  border-right: 1px solid #fff;
  width: 230px;
}

@media (max-width: 1250px){
  .Footer .footer-content-block .footer-main-wrap .right-wrap ul.No-list.footer-menu{
    width: 200px;
  }
}

.Footer .footer-content-block .footer-main-wrap .right-wrap ul.No-list.footer-menu:nth-child(2),
.Footer .footer-content-block .footer-main-wrap .right-wrap ul.No-list.footer-menu:nth-child(3){
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*
======================================================================
  fv-block
======================================================================*/
.fv-block .fv-img-wrap{
  position: relative;
}

.fv-block .fv-img-wrap .top-logo-block{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --------------------------------------------------------
-----------------------------------------------------------
 COMMON
-----------------------------------------------------------
----------------------------------------------------------- */
body {
  color: #666666;
  background-color: #FFF;
  font-family: "Noto Sans JP", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 2.0;
  font-size: 14px;
  min-width: 1080px;
}

a,
label,
button,
input[type="submit"],
input[type="button"] {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
a:hover,
label:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  opacity: 0.8;
}

a:link, a:visited {
  color: #666666;
  text-decoration: underline;
}

a:hover, a:active {
  text-decoration: none;
}

/*link-underline　アニメーション付きリンク
--------------------------------------------------------- */
a.link-underline {
  position: relative;
  text-decoration: none;
  color: inherit;
}

a.link-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background-color: #003d7c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a.link-underline:hover::after {
  transform: scaleX(1);
}

/*
---------------------------------------------------------
 電話番号リンク
--------------------------------------------------------- */
a[href^="tel:"] {
  text-decoration: none;
  color: inherit;
  cursor: default;
  pointer-events: none;
}

/*
---------------------------------------------------------
 Attention
--------------------------------------------------------- */
.Attention {
  font-size: 13px;
}

/*
---------------------------------------------------------
 float
--------------------------------------------------------- */
.Fl {
  float: left;
}

.Fr {
  float: right;
}

/*
---------------------------------------------------------
 非表示
--------------------------------------------------------- */
.PC-none {
  display: none !important;
}

/*
---------------------------------------------------------
 サイト幅
--------------------------------------------------------- */
.In-wrap,
.Edit {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 60px);
}

/*
---------------------------------------------------------
 Content
--------------------------------------------------------- */
.Content {
  padding-top: 80px;
}

/*
---------------------------------------------------------
 Content-block
--------------------------------------------------------- */
.Content-block {
  padding-top: 100px;
  padding-bottom: 80px;
}

/*
-----------------------------------------------------------
 Title
----------------------------------------------------------- */
.Title-block {
  font-family: "Noto Sans JP", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  color: #666666;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 26px;
}

.Title-block .en{
  font-size: 44px;
  color: #003d7c;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.Title-block .ja{
  font-size: 18px;
}

.Title-small{
  font-size: 18px;
  margin-top: 30px;
}

/*
-----------------------------------------------------------
 Table
----------------------------------------------------------- */
.Table-basic {
  border-left: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
}
.Table-basic th, .Table-basic td {
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 9px 20px;
}
.Table-basic th {
  border-right: 1px solid #dcdcdc;
  background: #f8f4f1;
  font-size: 14px;
  font-weight: bold;
}
.Table-basic td {
  background: #fff;
}

/*
-----------------------------------------------------------
Button
----------------------------------------------------------- */
.Btn-cv {
  font-family: "Noto Sans JP", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background-color: #fb4c4c;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px 0;
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-decoration: none !important;
  text-align: center;
  overflow: hidden;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 17px;
  line-height: 1.3;
  color: #FFF !important;
}
.Btn-cv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.2);
}

.Btn-main {
  font-family: "Noto Sans JP", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background-color: #003d7c;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px 0;
  display: inline-block;
  font-weight: bold;
  text-decoration: none !important;
  text-align: center;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 17px;
  line-height: 1.3;
  color: #FFF !important;
}

.Btn-main.MOD-cancel {
  background-color: #444 !important;
  color: #FFF !important;
}

.Btn-sub {
  font-family: "Noto Sans JP", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  color: #003d7c !important;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px 0;
  display: inline-block;
  font-weight: bold;
  text-decoration: none !important;
  background: none;
  text-align: center;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 17px;
  line-height: 1.3;
  border: 1px solid;
}

.Btn-anchor {
  font-family: "Noto Sans JP", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background: #fff;
  position: relative;
  display: block;
  color: inherit !important;
  text-decoration: none !important;
  line-height: 1.3;
  padding: 10px 8px 10px 27px;
  font-size: 16px;
  border: 1px solid #555;
  border-radius: 3px;
}
.Btn-anchor::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #003d7c transparent transparent transparent;
  display: block;
  top: 18px;
  left: 10px;
}

.Btn-transform {
  position: relative;
  display: inline-block;
  padding: 0 30px 0 30px;
  line-height: 50px;
  color: #666666 !important;
  text-decoration: none !important;
  outline: none;
  font-size: 16px;
  z-index: 0;
}

.Btn-transform::before {
  content: '';
  position: absolute;
  top: 0.1em;
  left: 0;
  z-index: -1;
  width: 50px;
  height: 50px;
  background: #bff2ec;
  border-radius: 25px;
  transition: .3s ease-out;
}

.Btn-transform:hover {
  opacity: 1;
}

.Btn-transform:hover::before {
  width: 152px;
}

.Btn-transform::after {
  position: absolute;
  content: '';
  top: 1.4em;
  right: -5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
}

/*
-----------------------------------------------------------
 Link
----------------------------------------------------------- */
.Link-text {
  font-family: "Noto Sans JP", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
  font-size: 15px;
}

.Link-arrow {
  position: relative;
  padding-left: 12px;
  display: inline-block;
}
.Link-arrow:before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #003d7c;
}

/*
-----------------------------------------------------------
 Edit(自由編集エリア)
----------------------------------------------------------- */
.Edit.MOD-top .wb-edit {
  padding-top: 50px;
  padding-bottom: 50px;
}

.Edit.MOD-bottom .wb-edit {
  padding-top: 50px;
  padding-bottom: 50px;
}

.Edit .wb-edit:empty {
  padding: 0 !important;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 Alpha
-----------------------------------------------------------
----------------------------------------------------------- */
.Alpha {
  float: left;
  width: calc(100% - 270px);
}

/* --------------------------------------------------------
-----------------------------------------------------------
 .Beta
-----------------------------------------------------------
----------------------------------------------------------- */
.Beta {
  float: right;
  width: 240px;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 wb-pair(table)
-----------------------------------------------------------
----------------------------------------------------------- */
.wb-pair .wb-pair-list-table {
  border-left: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
  width: 100%;
  table-layout: fixed;
}

.wb-pair .wb-pair-list-table th, .wb-pair .wb-pair-list-table td {
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 9px 20px;
}

.wb-pair .wb-pair-list-table th {
  border-right: 1px solid #dcdcdc;
  background: #f8f4f1;
  font-size: 14px;
  font-weight: bold;
}

.wb-pair .wb-pair-list-table td {
  background: #fff;
}

.wb-pair .wb-pair-list-table th {
  min-width: 150px;
  width: 22%;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 wb-calendar
-----------------------------------------------------------
----------------------------------------------------------- */
.wb-calendar {
  color: #333;
}

.wb-calendar .wb-calendar-table {
  border: 1px solid #dcdcdc;
  width: 100%;
  border-collapse: collapse;
  background: #FFF;
}

.wb-calendar .wb-calendar-table caption {
  background-color: #003d7c;
  color: #fff;
  text-align: center;
  padding: 2px;
}

.wb-calendar .wb-calendar-table tr:first-child {
  background-color: #f8f4f1;
}

.wb-calendar .wb-calendar-table tr th,
.wb-calendar .wb-calendar-table tr td {
  border: 1px solid #dcdcdc;
  text-align: center;
  padding: 3px;
}

.wb-calendar .wb-calendar-table tr:first-child th {
  font-weight: bold;
  font-size: 80%;
  padding: 2px;
}

.wb-calendar .wb-calendar-table tr td.wb-calendar-table-1 {
  background-color: #C8D2FF;
}

.wb-calendar .wb-calendar-table tr td.wb-calendar-table-2 {
  background-color: #FFCACA;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 Calendar-body
-----------------------------------------------------------
----------------------------------------------------------- */
.Calendar-information {
  color: #999999;
  font-size: 85%;
}

.Calendar-information .calendar-color {
  display: inline-block;
  vertical-align: top;
  margin: 5px;
}

.Calendar-information .calendar-color span {
  vertical-align: middle;
}

.Calendar-information .calendar-color .color-figure {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 1px solid #ddd;
  margin-right: 5px;
}

.Calendar-information .calendar-color01 .color-figure {
  background-color: #C8D2FF;
}

.Calendar-information .calendar-color02 .color-figure {
  background-color: #FFCACA;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 modal
-----------------------------------------------------------
----------------------------------------------------------- */
.wb-cart-modal-title {
  border-bottom: 1px solid #dcdcdc;
  padding: 17px 48px 14px 27px;
  position: relative;
  color: #666666;
  font-size: 20px;
  line-height: 1.2;
}
.wb-cart-modal-title:before {
  background: #003d7c;
  content: '';
  width: 2px;
  height: 69%;
  position: absolute;
  top: 3px;
  left: 16px;
  bottom: 0;
  margin: auto 0;
}

.wb-cart-modal-title .Modal-close {
  background: url(/img/modal_close_icon.svg) no-repeat center center;
  background-size: 33px auto;
  text-indent: -9999px;
  display: block;
  width: 33px;
  height: 33px;
  position: absolute;
  right: 18px;
  top: 10px;
  bottom: 0;
  margin: auto 0;
}
