@charset "UTF-8";
/* 変数定義 */
.archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 560px) {
  .archive-container {
    padding: 10px;
  }
}
.archive-container .archive-header {
  margin-bottom: 30px;
  text-align: center;
}
.archive-container .archive-header .archive-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #007cba;
}
@media (max-width: 560px) {
  .archive-container .archive-header .archive-title {
    font-size: 1.5rem;
  }
}
.archive-container .archive-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 560px) {
  .archive-container .archive-list {
    gap: 20px;
  }
}
.archive-container .archive-list a {
  text-decoration: none;
  color: inherit;
}
.archive-container .archive-list .archive-item {
  display: flex;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  align-items: center;
  padding: 0 10px;
}
.archive-container .archive-list .archive-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.archive-container .archive-list .archive-item .archive-item-image {
  flex: 0 0 150px;
  height: 150px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-container .archive-list .archive-item .archive-item-image a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.archive-container .archive-list .archive-item .archive-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 5px;
}
.archive-container .archive-list .archive-item .archive-item-image img:hover {
  transform: scale(1.05);
}
.archive-container .archive-list .archive-item .archive-item-image .no-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  border-radius: 5px;
}
.archive-container .archive-list .archive-item .archive-item-image .no-image-placeholder::before {
  content: "画像なし";
}
.archive-container .archive-list .archive-item .archive-item-content {
  flex: 1;
  padding: 20px 0 20px 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 560px) {
  .archive-container .archive-list .archive-item .archive-item-content {
    padding: 15px;
    gap: 6px;
  }
}
.archive-container .archive-list .archive-item .archive-item-content .archive-item-category {
  font-size: 16px;
  color: #999;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.archive-container .archive-list .archive-item .archive-item-content .archive-item-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #007cba;
  font-weight: bold;
}
@media (max-width: 560px) {
  .archive-container .archive-list .archive-item .archive-item-content .archive-item-title {
    font-size: 1.1rem;
  }
}
.archive-container .archive-list .archive-item .archive-item-content .archive-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.archive-container .archive-list .archive-item .archive-item-content .archive-item-title a:hover {
  color: #005a8a;
}
.archive-container .archive-list .archive-item .archive-item-content .archive-item-author {
  margin: 0;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
@media (max-width: 560px) {
  .archive-container .archive-list .archive-item .archive-item-content .archive-item-author {
    font-size: 0.9rem;
  }
}
.archive-container .archive-list .archive-item .archive-item-content .archive-item-location {
  margin: 0;
  font-size: 14px;
  color: #666;
  font-weight: 400;
}
@media (max-width: 560px) {
  .archive-container .archive-list .archive-item .archive-item-content .archive-item-location {
    font-size: 0.85rem;
  }
}
.archive-container .archive-list .archive-item .archive-item-content .archive-item-excerpt {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  margin: 5px 0 0 0;
}
.archive-container .archive-list .archive-item .archive-item-content .archive-item-excerpt p {
  margin: 0;
}
.archive-container .archive-list .archive-item .archive-item-content .archive-item-meta {
  margin-top: auto;
  padding-top: 10px;
}
.archive-container .archive-list .archive-item .archive-item-content .archive-item-meta .archive-item-date {
  color: #999;
  font-size: 16px;
  font-weight: 400;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.archive-container .archive-pagination {
  margin-top: 40px;
  text-align: center;
}
.archive-container .archive-pagination .page-numbers {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}
@media (max-width: 560px) {
  .archive-container .archive-pagination .page-numbers {
    gap: 2px;
  }
}
.archive-container .archive-pagination .page-numbers li {
  margin: 0;
}
.archive-container .archive-pagination .page-numbers a,
.archive-container .archive-pagination .page-numbers span {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 560px) {
  .archive-container .archive-pagination .page-numbers a,
  .archive-container .archive-pagination .page-numbers span {
    padding: 8px 10px;
    font-size: 12px;
  }
}
.archive-container .archive-pagination .page-numbers a:hover,
.archive-container .archive-pagination .page-numbers span:hover {
  background: #007cba;
  color: #fff;
  border-color: #007cba;
}
.archive-container .archive-pagination .page-numbers .current {
  background: #007cba;
  color: #fff;
  border-color: #007cba;
}
.archive-container .archive-pagination .page-numbers .prev,
.archive-container .archive-pagination .page-numbers .next {
  font-weight: bold;
}
.archive-container .archive-pagination .page-numbers .prev:hover,
.archive-container .archive-pagination .page-numbers .next:hover {
  background: #005a8a;
}
.archive-container .archive-pagination .page-numbers .dots {
  border: none;
  background: none;
  color: #999;
  cursor: default;
}
.archive-container .archive-pagination .page-numbers .dots:hover {
  background: none;
  color: #999;
}
.archive-container .no-posts {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-top: 20px;
}
.archive-container .no-posts p {
  margin: 0;
  color: #666;
  font-size: 1.1rem;
}

/* base.scss */
/* MAIN */
#header_contents, #body_contents, #footer_contents * {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  color: #393939;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: auto;
}

html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 560px) {
  body.menu-open {
    overflow: hidden; /* メニューが開いているときはスクロールを無効化 */
  }
}

p {
  margin-left: 8px;
  margin-right: 8px;
}

img {
  border-radius: 5px;
}

/* すべてのアンカー先要素に適用（id属性がある要素すべて） */
[id] {
  scroll-margin-top: 180px;
}

button:hover {
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

a.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.font_serif {
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 400;
}

.font_sans-serif {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 300;
}

.kosugi-maru-regular {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font14 {
  font-size: 14px !important;
  vertical-align: 1.4px !important;
}

.font18 {
  font-size: 18px !important;
  vertical-align: 1.8px !important;
}

.with_470 {
  width: 470px !important;
  margin: 20px auto;
}
@media screen and (max-width: 560px) {
  .with_470 {
    width: 90vw;
  }
}

.with_554 {
  width: 554px !important;
  margin: 20px auto;
}
@media screen and (max-width: 560px) {
  .with_554 {
    width: 90vw;
  }
}

/*
 *  カスタムカラーパレット
*/
.has-fp-blue-background-color {
  background-color: #1E6AAD;
}

.has-fp-blue-color {
  color: #1E6AAD;
}

.has-fp-orange-background-color {
  background-color: #FF4E00;
}

.has-fp-orange-color {
  color: #FF4E00;
}

.has-fp-light-black-background-color {
  background-color: #393939;
}

.has-fp-light-black-color {
  color: #393939;
}

.bgcolor_white {
  background-color: #fff;
}

.bgcolor_grey {
  background-color: #F8F8F5;
}

.inline_block {
  display: inline-block;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.accordion::after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  margin-right: 30px;
  right: 5px;
  display: inline-block;
  transform: rotate(90deg);
}

.accordion_child {
  display: none;
}

/* Chrome, Safari, Edge のスピンボタン非表示 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox のスピンボタン非表示 */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

.position_relative {
  position: relative;
}

.normal_button {
  width: 470px;
  height: 60px;
  font: normal normal 400 16px/24px "Noto Sans JP", "Hiragino Sans", sans-serif;
  letter-spacing: 4px;
}

.middle_button {
  width: 300px;
  height: 46px;
  font: normal normal 400 12px/22px "Noto Sans JP", "Hiragino Sans", sans-serif;
  letter-spacing: 1.2px;
}
.middle_button .link_button_arrow_right {
  top: 40%;
  right: 15;
  border-width: 1px;
  width: 10px;
  height: 10px;
}

.short_button {
  width: 180px;
  height: 46px;
  font: normal normal 400 12px/22px "Noto Sans JP", "Hiragino Sans", sans-serif;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 560px) {
  .short_button {
    width: 90vw;
  }
}

.mini_button input, .mini_button button {
  width: 36px !important;
  height: 36px !important;
  font-size: 16px !important;
  line-height: 30px !important;
}

.is-style-fp-blue {
  background: #1E6AAD 0% 0% no-repeat padding-box;
  border: 1px solid #1E6AAD;
  border-radius: 5px;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 560px) {
  .is-style-fp-blue {
    width: 100%;
  }
}
.is-style-fp-blue::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.is-style-fp-blue::before {
  content: "\f518";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  position: absolute;
  left: 15px;
  font-size: 1.3em;
  top: 50%;
  transform: translateY(-50%);
}
.is-style-fp-blue a {
  color: #FFFFFF;
  text-decoration: none;
}

.is-style-fp-white {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #1E6AAD;
  border-radius: 5px;
  color: #1E6AAD;
  text-align: center;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 560px) {
  .is-style-fp-white {
    width: 100%;
  }
}
.is-style-fp-white::after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 10px;
  font-weight: 200;
  top: 50%;
  transform: translateY(-50%);
}
.is-style-fp-white a {
  color: #1E6AAD;
  text-decoration: none;
}

.invalid_button {
  width: 470px;
  height: 60px;
  margin: 10px auto;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #1b9e0a;
  border-radius: 5px;
  color: #1b9e0a;
  font: normal normal 400 18px/28px "Noto Sans JP", "Hiragino Sans", sans-serif;
  text-align: center;
  letter-spacing: 4px;
  text-decoration: none;
  position: relative;
}
.invalid_button:hover {
  cursor: not-allowed;
}
@media screen and (max-width: 560px) {
  .invalid_button {
    width: 100%;
  }
}

.link_button {
  width: 470px;
  height: 60px;
  margin: 10px auto;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #1E6AAD;
  border-radius: 5px;
  color: #1E6AAD;
  font: normal normal 400 18px/28px "Noto Sans JP", "Hiragino Sans", sans-serif;
  text-align: center;
  letter-spacing: 4px;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 560px) {
  .link_button {
    width: 100%;
  }
}
.link_button::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  position: absolute;
  right: 10px;
}
.link_button a {
  color: #1E6AAD;
  text-decoration: none;
}

.link_button_arrow_right {
  content: " ";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  margin-left: 5em;
  border-top: 2px solid #1E6AAD;
  border-right: 2px solid #1E6AAD;
  transform: rotate(45deg);
  top: 45%;
  right: 20;
}

.blue_button {
  background: #1E6AAD 0% 0% no-repeat padding-box;
  color: #FFFFFF;
}
.blue_button .link_button_arrow_right {
  border-color: #FFF;
}
.blue_button a {
  color: #fff;
  text-decoration: none;
}

.white_arrow {
  content: " ";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  margin-left: 5em;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
  top: 40%;
  left: 65%;
}

.no_decoration_line {
  text-decoration: none;
  text-decoration-line: none;
}

.text_anchor_link {
  text-decoration: none;
  text-decoration-line: none;
}

.text_anchor_link:hover {
  text-decoration: underline;
  text-decoration-line: underline;
}

.back_to_top {
  width: 45px;
  height: 45px;
  background-color: #FFFFFF;
  border-radius: 5px;
  border: 2px solid #1E6AAD;
  font-family: "Font Awesome 6 Free";
  content: "fa-solid fa-chevron-up";
  color: #1E6AAD;
  position: fixed;
  bottom: 67px;
  right: 20px;
}
@media screen and (max-width: 560px) {
  .back_to_top {
    width: 40px;
    height: 40px;
  }
}
.back_to_top .icon {
  display: inline-block;
  line-height: 40px;
  width: 40px;
  margin-top: 2px;
  margin-left: 11px;
}
@media screen and (max-width: 560px) {
  .back_to_top .icon {
    margin-left: 9px;
  }
}

.breadcrumb {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 20px;
  color: #999999;
  margin: 10px auto;
}
@media screen and (max-width: 560px) {
  .breadcrumb {
    font-size: 10px;
    letter-spacing: 1px;
  }
}
.breadcrumb a {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 20px;
  color: #999999;
  margin: 10px auto;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.post_datetime {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 18px;
  margin-bottom: 18px;
  text-align: right;
}
.post_datetime div {
  display: inline-block;
}

.search_field {
  margin-top: 5px;
  width: 335px;
  margin-right: 12px;
  order: 2;
}
@media screen and (max-width: 560px) {
  .search_field {
    width: 100%;
    height: 41px;
    order: 3;
  }
}
.search_field .search_container {
  box-sizing: border-box;
  position: relative;
  border: 1px solid #999;
  display: block;
  padding: 10px 10px;
  border-radius: 5px;
  height: 62px;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 560px) {
  .search_field .search_container {
    margin: 0;
    height: 41px;
    padding: 0 10px;
  }
}
.search_field .search_container input[type=text] {
  border: none;
  line-height: 26px;
  font-size: 26px;
  width: 90%;
}
@media screen and (max-width: 560px) {
  .search_field .search_container input[type=text] {
    line-height: 24px;
    height: 44px;
  }
}
.search_field .search_container input[type=text]:focus {
  outline: 0;
}
.search_field .search_container input[type=submit] {
  cursor: pointer;
  font-family: "Font Awesome 6 Free";
  font-size: 1.4em;
  content: "fa fa-search";
  border: none;
  background: none;
  color: #3879D9;
  position: absolute;
  top: 18px;
  outline: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 560px) {
  .search_field .search_container input[type=submit] {
    top: 8px;
  }
}
.search_field .search_container input::-moz-placeholder {
  color: #999;
  line-height: 26px;
  font-size: 18px;
  position: relative;
  bottom: 2px;
}
.search_field .search_container input::placeholder {
  color: #999;
  line-height: 26px;
  font-size: 18px;
  position: relative;
  bottom: 2px;
}

.search_results .search_entry {
  width: 700px;
  margin: 20px auto;
  padding: 20px 15px;
  background-color: #F8F8F5;
  border-radius: 5px;
}
@media screen and (max-width: 560px) {
  .search_results .search_entry {
    width: 90vw;
  }
}
.search_results .search_entry a {
  text-decoration: none;
}
.search_results .search_entry a:hover {
  text-decoration: underline;
}
.search_results .search_entry .search_eyecatch {
  display: flex;
  align-items: center;
}
.search_results .search_entry .search_eyecatch .search_thumbnail {
  margin-right: 20px;
  margin-bottom: 20px;
}
.search_results .search_entry .search_eyecatch .search_thumbnail img {
  border-radius: 5px;
}
.search_results .search_entry .search_entry_title {
  font-size: 18px;
  letter-spacing: 1.8px;
  line-height: 34px;
  color: #1E6AAD;
  font-weight: 400;
  margin-bottom: 20px;
}
@media screen and (max-width: 560px) {
  .search_results .search_entry .search_entry_title {
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 30px;
  }
}
.search_results .search_entry .search_entory_header {
  width: 100%;
}
.search_results .search_entry .search_entry_content .search_more_link {
  width: 100%;
  text-align: right;
  margin: 20px auto;
}
.search_results .search_entry .search_entry_content .search_more_link a {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
  color: #1E6AAD;
  font-weight: 400;
}
.search_results .search_entry .search_entry_content .search_more_link a:hover {
  text-decoration: underline;
}
.search_results .pagination {
  text-align: center;
  margin: 20px auto;
}
.search_results .pagination a {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 25px;
  color: #1E6AAD;
  font-weight: 400;
}
.search_results .pagination a:hover {
  text-decoration: underline;
}
.search_results .pagination .current {
  font-weight: bold;
  font-size: 18px;
  color: #393939;
}

.no_search_result {
  margin: 20px auto;
}
.no_search_result .title {
  font-size: 24px;
  letter-spacing: 2.4px;
  line-height: 34px;
  font-weight: 400;
  color: #1E6AAD;
  text-align: left;
}

.push_point {
  width: 465px;
  margin: 20px auto;
  padding: 30px 25px;
  border: 1px solid #1E6AAD;
  border-radius: 5px;
}
@media screen and (max-width: 560px) {
  .push_point {
    width: 90vw;
  }
}
.push_point .title {
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 23px;
  color: #1E6AAD;
  letter-spacing: 2.3px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}
.push_point .contents {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 20px;
}
.push_point .contents ul {
  padding-left: 25px;
}
.push_point .contents li {
  font-size: 14px;
  color: #1E6AAD;
  margin: 15px auto;
  font-weight: 400;
}

.only_onlinestore {
  width: 470px;
  margin: 30px auto;
}
@media screen and (max-width: 560px) {
  .only_onlinestore {
    width: 90vw;
  }
}
.only_onlinestore .title {
  color: #FF4E00;
  font-size: 18px;
  letter-spacing: 1.8px;
  line-height: 34px;
  text-align: center;
}
.only_onlinestore .discount_item {
  display: flex;
  min-height: 150px;
}
.only_onlinestore .discount_item .discount_thumbnail {
  width: 150px;
  height: 150px;
}
.only_onlinestore .discount_item .discount_thumbnail img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.only_onlinestore .discount_item .tokuten {
  margin: auto 10px;
}
.only_onlinestore .discount_item .tokuten p {
  margin: 0;
}
.only_onlinestore .discount_item .tokuten .tokuten_title {
  margin: 6px 0;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 18px;
}
.only_onlinestore .discount_item .tokuten .tokuten_item {
  margin: 6px 0;
  color: #FF4E00;
  font-size: 17px;
  letter-spacing: 1.7px;
  line-height: 20px;
  font-weight: 400;
}
.only_onlinestore .discount_item .tokuten .tokuten_shop {
  margin: 6px 0;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 18px;
}
.only_onlinestore .discount_information table {
  margin: 20px auto;
  border: none;
}
.only_onlinestore .discount_information th, .only_onlinestore .discount_information td {
  border: none;
  padding: unset !important;
}
.only_onlinestore .discount_information * {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 25px;
  color: #FF4E00;
  font-weight: 400;
}
.only_onlinestore .discount_comment {
  padding: 0 5px;
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 25px;
}
.only_onlinestore .discount_comment * {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 25px;
}

.from_staff {
  margin: 20px auto;
}
@media screen and (max-width: 560px) {
  .from_staff {
    width: 90vw;
  }
}
.from_staff img {
  width: 470px;
  margin: 20px auto;
}
@media screen and (max-width: 560px) {
  .from_staff img {
    width: 90vw;
  }
}
.from_staff .fp_image {
  width: 470px;
  margin: 20px auto;
}
@media screen and (max-width: 560px) {
  .from_staff .fp_image {
    width: 90vw;
  }
}
.from_staff .from_staff_eyecatch {
  margin: 20px auto;
  text-align: center;
}
.from_staff .from_staff_eyecatch img {
  width: 240px;
}
@media screen and (max-width: 560px) {
  .from_staff .from_staff_eyecatch img {
    width: 250px;
  }
}
.from_staff .title {
  font-size: 24px;
  letter-spacing: 2.4px;
  line-height: 34px;
  font-weight: 300;
  color: #1E6AAD;
  text-align: center;
}
.from_staff .point_number {
  display: block;
  font-size: 18px;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 1.8px;
  line-height: 34px;
  color: #1E6AAD;
}
.from_staff p {
  width: 470px;
  margin: 15px auto;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
  padding: 0 5px;
}
@media screen and (max-width: 560px) {
  .from_staff p {
    width: 90vw;
  }
}
.from_staff .link {
  width: 470px;
  margin: 10px auto;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
  padding: 0 5px;
}
@media screen and (max-width: 560px) {
  .from_staff .link {
    width: 90vw;
  }
}
.from_staff .link a {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
  color: #393939;
}
.from_staff .link a:hover {
  text-decoration: none;
}
.from_staff .link a::after {
  content: " >";
}

.reference_mark ul {
  list-style: none;
}
.reference_mark ul li {
  text-indent: -1.6em;
}
.reference_mark ul li::before {
  content: "※";
  margin-right: 0.5em;
}

.product_ad .title {
  width: 470px;
  margin: 12px auto;
  font-size: 22px;
  letter-spacing: 2.2px;
  line-height: 20px;
  color: #1E6AAD;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .product_ad .title {
    width: 90vw;
  }
}
.product_ad .title .title_yomigana {
  display: block;
  font-size: 11px;
  color: #1E6AAD;
  font-weight: 400;
}
.product_ad .eyecatch {
  width: 450px;
  height: 147px;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  .product_ad .eyecatch {
    width: 90vw;
    height: 29.7vw;
  }
}
.product_ad .eyecatch img {
  width: 450px;
  height: 147px;
}
@media screen and (max-width: 560px) {
  .product_ad .eyecatch img {
    width: 90vw;
    height: 29.7vw;
  }
}
.product_ad .article {
  width: 470px;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  .product_ad .article {
    width: 90vw;
  }
}
.product_ad .article * {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
}
.product_ad .article p {
  width: 450px;
  margin: 30px auto;
}
@media screen and (max-width: 560px) {
  .product_ad .article p {
    width: 90vw;
  }
}
.product_ad .article a:hover {
  text-decoration: none;
}
.product_ad .article a::after {
  content: " >";
  display: inline-block;
  margin-left: 5px;
}

.link_group {
  width: 560px;
  margin: 30px auto;
}
@media screen and (max-width: 560px) {
  .link_group {
    width: 95vw;
  }
}
.link_group .title {
  width: 470px;
  margin: 10px auto;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 34px;
  color: #1E6AAD;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media screen and (max-width: 560px) {
  .link_group .title {
    width: 90vw;
  }
}

.soudanshitsu_ad {
  width: 470px;
  margin: 30px auto;
}
@media screen and (max-width: 560px) {
  .soudanshitsu_ad {
    width: 90vw;
  }
}
.soudanshitsu_ad .title {
  width: 470px;
  text-align: center;
  margin: 10px auto;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 34px;
  color: #1E6AAD;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media screen and (max-width: 560px) {
  .soudanshitsu_ad .title {
    width: 90vw;
  }
}
.soudanshitsu_ad .eyecatch {
  width: 470px;
  height: 156px;
}
@media screen and (max-width: 560px) {
  .soudanshitsu_ad .eyecatch {
    width: 90vw;
    height: 29.7vw;
  }
}
.soudanshitsu_ad .eyecatch img {
  width: 470px;
  height: 156px;
}
@media screen and (max-width: 560px) {
  .soudanshitsu_ad .eyecatch img {
    width: 90vw;
    height: 29.7vw;
  }
}

.contents_ad {
  width: 470px;
  margin: 30px auto;
}
@media screen and (max-width: 560px) {
  .contents_ad {
    width: 90vw;
  }
}
.contents_ad .title {
  width: 470px;
  text-align: center;
  margin: 10px auto;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 34px;
  color: #1E6AAD;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media screen and (max-width: 560px) {
  .contents_ad .title {
    width: 90vw;
  }
}
.contents_ad .eyecatch {
  width: 470px;
  height: 156px;
}
@media screen and (max-width: 560px) {
  .contents_ad .eyecatch {
    width: 90vw;
    height: 29.7vw;
  }
}
.contents_ad .eyecatch img {
  width: 470px;
  height: 156px;
}
@media screen and (max-width: 560px) {
  .contents_ad .eyecatch img {
    width: 90vw;
    height: 29.7vw;
  }
}

.category_ad {
  width: 100%;
  margin: 30px auto;
}
.category_ad .title {
  text-align: center;
  margin: 0 auto;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 34px;
  color: #1E6AAD;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.category_ad .link_group {
  width: 560px;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  .category_ad .link_group {
    width: 95vw;
  }
}
.category_ad .link_group .short_button {
  display: inline-block;
  width: 180px;
  height: 46px;
  font-size: 12px;
  letter-spacing: 1.2px;
  line-height: 46px;
  margin: 2px 2px;
  overflow: hidden; /* はみ出た部分を隠す */
  white-space: nowrap; /* 改行を無効にする */
  text-overflow: ellipsis; /* 省略記号（...）を表示 */
}

.privacy_policy {
  width: 470px;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  .privacy_policy {
    width: 90vw;
  }
}
.privacy_policy div {
  margin: 0 10px 3rem 10px;
}
.privacy_policy p, .privacy_policy ul, .privacy_policy li {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
}
.privacy_policy li {
  margin: 0.8rem auto;
}
.privacy_policy .sub_midashi {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 25px;
}
.privacy_policy .sub_midashi::before {
  content: "■";
  margin-right: 0.4rem;
}
.privacy_policy .title {
  margin: 20px auto;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: #F8F8F5;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1.8px;
  line-height: 25px;
}

.user_guide {
  width: 470px;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  .user_guide {
    width: 90vw;
  }
}
.user_guide div {
  margin-bottom: 3rem;
}
.user_guide p, .user_guide ul, .user_guide li {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
}
.user_guide .blue_midashi {
  color: #1D6AAD;
  margin-bottom: 1rem;
}
.user_guide .title {
  margin: 20px auto;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: #F8F8F5;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 25px;
}

#page_header {
  width: 554px;
  margin: 50px auto;
}
@media screen and (max-width: 560px) {
  #page_header {
    width: 90vw;
  }
}
#page_header #title {
  font-size: 24px;
  letter-spacing: 2.4px;
  line-height: 25px;
  color: #1E6AAD;
  text-align: center;
  font-weight: 300;
}
#page_header #title #furigana {
  display: block;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
  color: #1E6AAD;
  font-weight: 800;
  text-align: center;
}
#page_header .black_title {
  color: #393939;
  font-size: 18px;
}
#page_header * {
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 25px;
  color: #1E6AAD;
}

.fp_history {
  width: 470px;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 560px) {
  .fp_history {
    width: 80vw;
    margin-left: 50px;
  }
}
.fp_history .history_midashi {
  font-size: 22px;
  letter-spacing: 2.2px;
  line-height: 30px;
  color: #1D6AAD;
  font-weight: normal;
}
.fp_history p {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 25px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 300;
}
.fp_history .history_year {
  font-size: 23px;
  letter-spacing: 2.3px;
  line-height: 28px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: normal;
  color: #B0CDE6;
  margin: 0 auto;
}
.fp_history .history_year::before {
  content: "ー";
  margin-right: 20px;
  margin-left: -48px;
}
.fp_history .history_year .history_gengo {
  font-size: 12px;
  letter-spacing: 1.2px;
  line-height: 28px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #B0CDE6;
}

.about_staff {
  width: 470px;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 560px) {
  .about_staff {
    width: 90vw;
  }
}
.about_staff .page_middle_title {
  width: 470px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1.3px;
  line-height: 35px;
  font-weight: 400;
}
@media screen and (max-width: 560px) {
  .about_staff .page_middle_title {
    width: 90vw;
  }
}
.about_staff .name {
  font-size: 22px;
  letter-spacing: 2.2px;
  line-height: 30px;
  color: #1D6AAD;
  text-align: center;
}
.about_staff .name .katagaki {
  font-size: 12px;
  letter-spacing: 1.2px;
  line-height: 28px;
  display: block;
  color: #393939;
}
.about_staff p {
  font-size: 13px;
  letter-spacing: 1.3px;
  line-height: 25px;
}

.fp_page {
  width: 470px;
  margin: 0 auto 0;
}
@media screen and (max-width: 560px) {
  .fp_page {
    width: 90vw;
  }
}
.fp_page .spacer_middle {
  height: 20px;
}
.fp_page .middle_title {
  margin: 0 auto;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 20px;
  background-color: #F8F8F5;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
}

.company_info {
  width: 470px;
  margin: 0 auto 0;
}
@media screen and (max-width: 560px) {
  .company_info {
    width: 90vw;
  }
}
.company_info .title {
  margin: 0 auto;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 20px;
  background-color: #F8F8F5;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
}
.company_info dl, .company_info dt, .company_info dd {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
  font-weight: normal;
  margin-left: 20px;
}
.company_info dt {
  font-weight: 600;
}
.company_info dd {
  display: inline-block;
  margin-left: 40px;
  margin-bottom: 1rem;
  line-height: 22px;
}

.about_shop * {
  text-align: center;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 19px;
  line-height: 30px;
  letter-spacing: 3px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 560px) {
  .about_shop * {
    font-size: 13px;
    letter-spacing: 0.12rem;
    line-height: 25px;
  }
}
.about_shop p {
  margin-bottom: 37px;
}
.about_shop .title {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 44px;
}
@media screen and (max-width: 560px) {
  .about_shop .title {
    margin-top: 44px;
  }
}
.about_shop .midashi {
  margin: 0 auto 37px;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 560px) {
  .about_shop .midashi {
    width: 274px;
    font-size: 18px;
    letter-spacing: 1.3px;
  }
}
.about_shop .midashi .yomigana {
  font-size: 16px;
  display: inline-block;
  margin: 0 10px;
}
@media screen and (max-width: 560px) {
  .about_shop .midashi .yomigana {
    font-size: 18px;
  }
}
.about_shop .paragrah01 {
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  .about_shop .paragrah01 {
    width: 330px;
  }
}
.about_shop .paragrah01 .smartphone_block {
  display: inline-block;
}
@media screen and (max-width: 560px) {
  .about_shop .paragrah01 .smartphone_block {
    display: block;
  }
}
.about_shop .eyecatch {
  width: 700px;
  text-align: center;
  margin: 0 auto 30px;
}
@media screen and (max-width: 560px) {
  .about_shop .eyecatch {
    width: 90vw;
  }
}
.about_shop .eyecatch img {
  width: 280px;
  height: 280px;
}
@media screen and (max-width: 560px) {
  .about_shop .eyecatch img {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 560px) {
  .about_shop .paragraph02 {
    width: 330px;
  }
}
.about_shop .about_company {
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 560px) {
  .about_shop .about_company {
    margin-bottom: 150px;
  }
}
.about_shop .about_company img {
  width: 153px;
}

.page_header {
  width: 554px;
  margin: 20px auto 0 auto;
}
@media screen and (max-width: 560px) {
  .page_header {
    width: 90vw;
  }
}
.page_header .title {
  font-size: 24px;
  letter-spacing: 2.4px;
  line-height: 25px;
  color: #1E6AAD;
  text-align: center;
  font-weight: 400;
}
.page_header .title .furigana {
  display: block;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
  color: #1E6AAD;
  font-weight: 800;
  text-align: center;
}
.page_header .black_title {
  color: #393939;
  font-size: 18px;
}
.page_header * {
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 25px;
  color: #1E6AAD;
}

.page_middle_header .title {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 44px;
  font-weight: 300;
}
@media screen and (max-width: 560px) {
  .page_middle_header .title {
    margin-top: 44px;
  }
}

.page_middle_header2 .title {
  width: 470px;
  margin: 12px auto;
  font-size: 22px;
  letter-spacing: 2.2px;
  line-height: 20px;
  color: #1E6AAD;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .page_middle_header2 .title {
    width: 90vw;
  }
}
.page_middle_header2 .title .title_yomigana {
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #1E6AAD;
  font-weight: 800;
  text-align: center;
  line-height: 25px;
}
.page_middle_header2 .eyecatch {
  width: 450px;
  height: 147px;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  .page_middle_header2 .eyecatch {
    width: 90vw;
    height: 29.7vw;
  }
}
.page_middle_header2 .eyecatch img {
  width: 450px;
  height: 147px;
}
@media screen and (max-width: 560px) {
  .page_middle_header2 .eyecatch img {
    width: 90vw;
    height: 29.7vw;
  }
}
.page_middle_header2 .article {
  width: 470px;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  .page_middle_header2 .article {
    width: 90vw;
  }
}
.page_middle_header2 .article * {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
}
.page_middle_header2 .article p {
  width: 450px;
  margin: 30px auto;
}
@media screen and (max-width: 560px) {
  .page_middle_header2 .article p {
    width: 90vw;
  }
}
.page_middle_header2 .article a:hover {
  text-decoration: none;
}
.page_middle_header2 .article a::after {
  content: " >";
  display: inline-block;
  margin-left: 5px;
}

.push_point {
  width: 465px;
  margin: 20px auto;
  padding: 30px 25px;
  border: 1px solid #1E6AAD;
  border-radius: 5px;
}
@media screen and (max-width: 560px) {
  .push_point {
    width: 90vw;
  }
}
.push_point .title {
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 23px;
  color: #1E6AAD;
  letter-spacing: 2.3px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}
.push_point .contents {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 20px;
}
.push_point .contents ul {
  padding-left: 25px;
}
.push_point .contents li {
  font-size: 14px;
  color: #1E6AAD;
  margin: 15px auto;
  font-weight: 400;
}

.fp_slider_information {
  width: 470px;
  border-bottom: 1px solid #E6E6E6;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 560px) {
  .fp_slider_information {
    width: 90vw;
  }
}
.fp_slider_information .fp_slider_information_title {
  padding-left: 20px;
  line-height: 64px;
  font-size: 14px;
  font-weight: bold;
  color: #1E6AAD;
  border-top: 1px solid #E6E6E6;
}
.fp_slider_information .fp_slider_information_comment {
  width: 375px;
  margin: 0 60px 20px;
  line-height: 24px;
  font-size: 14px;
  color: #1E6AAD;
}
@media screen and (max-width: 560px) {
  .fp_slider_information .fp_slider_information_comment {
    width: 270px;
  }
}

.fp_readme::before {
  content: "";
  display: inline-block;
  background-image: url("/wp-content/themes/furaipan/images/product_detail/attention.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 40px;
  height: 28px;
  -o-object-fit: cover;
     object-fit: cover;
}

.fp_gift::before {
  content: "";
  display: inline-block;
  background-image: url("/wp-content/themes/furaipan/images/product_detail/gift.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 40px;
  height: 28px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product_information {
  width: 470px;
  margin: 20px auto;
  border-top: 1px solid #E6E6E6;
}
@media screen and (max-width: 560px) {
  .product_information {
    width: 90vw;
  }
}

.category_list {
  width: 100%;
  margin: 30px auto;
}
@media screen and (max-width: 560px) {
  .category_list {
    width: 90vw;
    margin: unset;
  }
}
.category_list .title {
  text-align: center;
  margin: 0 auto;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 34px;
  color: #1E6AAD;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

.product_detail_table {
  width: 600px;
  margin: 20px auto;
}
@media screen and (max-width: 560px) {
  .product_detail_table {
    width: 90vw;
  }
}
.product_detail_table table * {
  font-size: 14px;
}
.product_detail_table table th {
  background-color: #E6E6E6;
  border: 1px solid #E6E6E6;
  font-weight: 600;
  padding: 10 18;
  text-align: left;
}
.product_detail_table table tr, .product_detail_table table td {
  border: 1px solid #E6E6E6;
  padding: 10 18;
}
.product_detail_table table td:first-child {
  width: 156px;
}

.product_kind {
  display: flex;
  width: 600px;
  margin: 20px auto;
  justify-self: center;
  align-items: center;
}
@media screen and (max-width: 560px) {
  .product_kind {
    width: 90vw;
    margin: 30px auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.product_kind form {
  display: flex;
  flex: 1;
  margin-left: auto;
  margin-block-end: unset;
  align-items: center;
}
@media screen and (max-width: 560px) {
  .product_kind form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.product_kind .information {
  width: 240px;
}
@media screen and (max-width: 560px) {
  .product_kind .information {
    width: 100%;
    max-width: none;
  }
}
.product_kind .information .title {
  color: #1E6AAD;
  font-size: 18px;
  letter-spacing: 1.8px;
  line-height: 20px;
  font-weight: 300;
  margin: 4px;
}
@media screen and (max-width: 560px) {
  .product_kind .information .title {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 18px;
  }
}
.product_kind .information .discount {
  color: #FF4E00;
}
.product_kind .information .discount > span {
  color: #FF4E00;
}
.product_kind .information .discount .discount_percent {
  display: inline-block;
  margin-left: 5px;
}
.product_kind .information .price {
  margin: 4px;
  font-size: 18px;
  letter-spacing: 1.8px;
  line-height: 20px;
}
@media screen and (max-width: 560px) {
  .product_kind .information .price {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 18px;
  }
}
.product_kind .information .price .yen {
  font-size: 14px;
}
@media screen and (max-width: 560px) {
  .product_kind .information .price .yen {
    font-size: 12px;
  }
}
.product_kind .information .price .tax {
  font-size: 9px;
  letter-spacing: 0.9;
  line-height: 28px;
}
.product_kind .push_cart {
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 560px) {
  .product_kind .push_cart {
    margin-left: auto;
    margin-right: auto;
  }
}
.product_kind .push_cart button {
  margin: 4px;
}
.product_kind .push_cart .short_button {
  width: 180px;
  height: 46px;
  font: normal normal 400 12px/22px "Noto Sans JP", "Hiragino Sans", sans-serif;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 560px) {
  .product_kind .push_cart .short_button {
    width: 150px;
    margin: 0 auto;
  }
}
.product_kind .short_button input, .product_kind .short_button button {
  width: 32px;
  height: 32px;
  font-size: 16px;
  line-height: 30px;
}

.keppin_table table {
  font-size: 14px;
  letter-spacing: 1.4px;
}
.keppin_table table td {
  border: 1px solid #E6E6E6;
}
.keppin_table table td:first-child {
  width: 200px;
}
@media screen and (max-width: 560px) {
  .keppin_table table td:first-child {
    width: 5rem;
  }
}
.keppin_table table td:last-child {
  width: 120px;
}
@media screen and (max-width: 560px) {
  .keppin_table table td:last-child {
    width: 5rem;
  }
}
.keppin_table table thead {
  background-color: #E6E6E6;
}
.keppin_table table thead th {
  padding: 10px 18px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #E6E6E6;
}

.whats_new {
  width: 700px;
  color: #1E6AAD;
  padding: 30px;
  margin: 20px auto;
  border: 1px solid #1E6AAD;
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (max-width: 560px) {
  .whats_new {
    width: 95vw;
  }
}
.whats_new a {
  text-decoration: none;
}
.whats_new a:hover {
  opacity: 0.6;
}
.whats_new p {
  margin: unset;
  color: #1E6AAD;
  font: normal normal normal 15px/25px "Noto Sans JP", "Hiragino Sans", sans-serif;
}
.whats_new .whets_new_title {
  color: #1E6AAD;
  font: normal normal 600 18px/25px "Noto Sans JP", "Hiragino Sans", sans-serif;
  letter-spacing: 1.5px;
  margin-bottom: 13px;
}
.whats_new .whats_new_post {
  color: #1E6AAD;
  font: normal normal normal 15px/25px "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.eyecatch-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 560px) {
  .eyecatch-img {
    width: 90vw;
  }
}

.blue_paragraph {
  width: 700px;
}
@media screen and (max-width: 560px) {
  .blue_paragraph {
    width: auto;
  }
}
.blue_paragraph p {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 25px;
  color: #1E6AAD;
}
@media screen and (max-width: 560px) {
  .blue_paragraph p {
    font-size: 13px;
  }
}

.blue_fontcolor {
  color: #1E6AAD;
}

.ad_banner1 {
  width: 554px;
  margin: 30px auto;
}
@media screen and (max-width: 560px) {
  .ad_banner1 {
    width: 90vw;
  }
}
.ad_banner1 .title {
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 34px;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  text-align: center;
  color: #1D6AAD;
}
.ad_banner1 img {
  width: 554px;
}
@media screen and (max-width: 560px) {
  .ad_banner1 img {
    width: 90vw;
  }
}/*# sourceMappingURL=base.css.map */