@charset "utf-8";

/****************************************
基本
****************************************/
html,
body {
  overflow-x: hidden;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font-size: 1.4em;
  color: #333;
}

.wrap,
h1,
.breadcrumbList {
  width: 90%;
  max-width: 960px;
  margin: auto;
  position: relative;
}

.ctsWrap {
  flex-grow: 1;
}

h2 {
  background: #000;
  padding: 5px 10px;
  font-size: 1.6rem;
  color: #FFF;
  font-weight: 500;
}

h2:before {
  content: "●";
  color: #FFE97A;
}

.articleWrap {
  border: 2px solid #CCC;
  padding: 10px 15px 15px;
  margin-top: 10px;
  line-height: 1.8;
  position: relative;
}

.articleWrap img {
  max-width: 300px;
  margin: 15px auto 0;
}

.daysText {
  color: #b81726;
}

.strongText {
  font-size: 1.6rem;
  font-weight: 600;
}

.smallText {
  font-size: 1.2rem;
}

.readyText {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 30px 0;
}

.noteText {
  font-size: 1.2rem;
  text-indent: -1.5rem;
  margin-left: 1.5rem;
}

.linkBtn {
  display: inline-block;
  background-color: #E50012;
  text-decoration: none;
  color: #FFF;
  font-weight: 500;
  padding: 10px;
  line-height: 1;
  margin-top: 10px;
}

.linkBtn i {
  margin-left: 5px;
}

.center {
  text-align: center;
}

.index {
  text-indent: -1em;
  margin-left: 1em;
}

.pcObj {
  display: block;
}

.spObj {
  display: none;
}

.spPtObj {
  display: none;
}

@media only screen and (max-width: 768px) {
  .pcObj {
    display: none;
  }

  .spObj {
    display: block;
  }
}

/****************************************
ビジュアル
****************************************/
.topWrap {
  background-color: #fbe2cc;
}

/****************************************
ナビゲーション
****************************************/
.navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.navi li {
  width: 14%;
  text-align: center;
  line-height: 1;
  border-left: 2px solid #CCC;
}

.navi li:last-child {
  border-right: 3px solid #CCC;
}

.navi li a {
  display: block;
  font-family: 1.8rem;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

.navi li a img {
  width: 18px;
  margin-right: 5px;
  vertical-align: -25%;
  color: #666;
}

/**********SPナビゲーション**********/
#spNaviAllWrap {
  display: none;
}

@media only screen and (max-width: 768px) {

  .navi,
  .headerLinkList {
    display: none !important;
  }

  #spNaviAllWrap {
    display: block;
  }
}

.spNaviWrap {
  position: fixed;
  z-index: 300;
  top: 0;
  width: 200px;
  height: 100%;
  background-color: #FFF;
  padding: 0 20px 15px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.spNavi {
  text-align: center;
  margin: 0;
  line-height: 1;
}

.spNavi > li {
  border-bottom: 1px solid #EEE;
}

.spNavi > li a {
  display: block;
  width: 100%;
  padding: 20px 0px;
  position: relative;
  text-decoration: none;
}

.spSubNavi li {
  margin-top: 15px;
  text-align: center;
}

.spSubNavi li a {
  border: 1px solid #CCC;
  display: block;
  padding: 10px 0;
  text-decoration: none;
  font-size: 12px;
}

.drawerMenu-overlay {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.drawerMenu-open .drawerMenu-overlay {
  display: block;
}

.drawerMenuRight nav {
  right: -200px;
  transition: right .6s cubic-bezier(.19, 1, .22, 1)
}

.drawerMenuRight.drawerMenu-open nav,
.drawerMenuRight.drawerMenu-open navbar .drawerMenuBtn {
  right: 0;
}

.drawerMenuRight.drawerMenu-open .drawerMenuBtn {
  right: 200px;
}

.drawerMenuBtn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 250;
  width: 50px;
  height: 50px;
  transition: .2s linear;
  cursor: pointer;
  padding: 15px 10px;
}

.drawerMenuBtnBar {
  position: relative;
  display: block;
  margin-top: 7px;
}

.drawerMenuBtnBar,
.drawerMenuBtnBar:after,
.drawerMenuBtnBar:before {
  width: 100%;
  height: 2px;
  transition: all .6s cubic-bezier(.19, 1, .22, 1);
  background-color: #000;
}

.drawerMenuBtnBar:after,
.drawerMenuBtnBar:before {
  position: absolute;
  top: -10px;
  left: 0;
  content: ' ';
}

.drawerMenuBtnBar:after {
  top: 10px;
}

.drawerMenu-open .drawerMenuBtn,
.drawerMenu-open .drawerMenuBtnBar {
  background-color: transparent;
}

.drawerMenu-open .drawerMenuBtnBar:after,
.drawerMenu-open .drawerMenuBtnBar:before {
  top: 0;
  background-color: #FFF;
}

.drawerMenu-open .drawerMenuBtnBar:before {
  transform: rotate(45deg);
}

.drawerMenu-open .drawerMenuBtnBar:after {
  transform: rotate(-45deg);
}

/****************************************
コンテンツ
****************************************/
.contentsWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 100px;
}

.contentsWrap > li:first-child {
  width: 75%;
}

.contentsWrap > li:last-child {
  width: 22%;
}

.contentsWrap > li:last-child #contents-right {
  width: 100%;
  float: none;
  padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .contentsWrap {
    margin-bottom: 60px;
  }

  .contentsWrap > li:first-child,
  .contentsWrap > li:last-child {
    width: 100%;
  }

  .contentsWrap > li:last-child {
    margin-top: 50px;
  }
}

/**********記事**********/
.articleWrap h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 10px 0 5px;
}

.articleWrap .daysText {
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 1px dotted #CCC;
}

.textDl {
  line-height: 1.6;
}

.textDl dt {
  margin-top: 10px;
  color: #E50012;
  font-weight: 600;
  font-size: 1.5rem;
}

.textDl dt:before {
  content: "●";
}

.textDl dd {
  margin-top: 5px;
  margin-left: 1.4em;
}

/****************************************
フォーム
****************************************/
/**********パーツ**********/
input,
textarea,
select,
button {
  font-family: 'Noto Sans Japanese', sans-serif;
  display: block;
}

input,
textarea,
select {
  padding: 10px;
  width: 100%;
}

input,
textarea {
  border: 1px solid #CCC;
  border-radius: 5px;
  font-size: 1.6rem;
}

textarea {
  resize: vertical;
  height: 200px;
}

input:focus,
textarea:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #BBB;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #BBB;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #BBB;
}

button,
label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

button {
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  margin: 10px 5px;
  background-color: #333;
  color: #FFF;
  font-size: 1.6rem;
  padding: 10px 0;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  border-radius: 50px;
  width: 120px;
  transition: 0.2s linear;
}

button:hover {
  opacity: 0.6;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + span,
input[type=checkbox] + span {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-left: 20px;
  margin-right: 5px;
  border: 1px solid #CCC;
  background-color: #FFF;
  padding: 10px 15px 10px 30px;
  border-radius: 5px;
}

input[type=radio] + span:before,
input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #CCC;
  left: 0;
  background-color: #FFF;
  border-radius: 2px;
}

input[type=radio] + span:before {
  top: 14px;
  left: 10px;
  border-radius: 50%;
}

input[type=checkbox] + span:before {
  top: 15px;
  left: 10px;
}

input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
  background-color: #FFE9CE;
  border: 1px solid #CCC;
}

input[type=radio]:checked + span:before,
input[type=checkbox]:checked + span:before {
  border: 1px solid #000;
}

input[type=checkbox]:checked + span:before {
  background-color: #000;
}

input[type=radio]:checked + span:after,
input[type=checkbox]:checked + span:after {
  content: "";
  display: block;
  position: absolute;
}

input[type=radio]:checked + span:after {
  top: 17px;
  left: 13px;
  width: 9px;
  height: 9px;
  background-color: #000;
  border-radius: 50%;
}

input[type=checkbox]:checked + span:after {
  top: 15px;
  left: 15px;
  width: 6px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 2px solid #FFF;
  border-right: 2px solid #FFF;
}

.selectLabel {
  position: relative;
  border: 1px solid #AAA;
  border-radius: 5px;
  display: inline-block;
  background-color: #FFF;
  width: 100%;
}

.selectLabel:after {
  content: "\f0dd";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 6%;
  right: 5px;
  color: #AAA;
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
}

select {
  padding: 10px;
  color: inherit;
  width: 100%;
  cursor: pointer;
  position: relative;
  border: none;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  z-index: 1;
  font-weight: 500;
}

select::-ms-expand {
  display: none;
}
