@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0');
html {
  font-size: 62.5%;
}
body {
  font-family: 'Noto Sans JP', "メイリオ", Meiryo, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5em;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #0c54ad;
}
.en_ttl {
 font-family: 'Poppins', sans-serif;
}
@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.6em;
  }
}
a {
  text-decoration: none;
  outline: none;
  color: #394c64;
}
a:hover {
  text-decoration: underline;
}
.nav-header__menu-item a:hover, .pagetop a:hover, .page-index__list a:hover, a.button-basic:hover, a.blog-item:hover, a.mv__scroll:hover {
  text-decoration: none;
}
a:visited {
  color: #394c64;
}
.breadcrumbs__list-item a:visited {
  color: #0c54ad;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
 }
/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
}
.wrapper > section:nth-child(even) {
  background-color: #f0f5fb;
}
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}
ul[role="list"], ol[role="list"] {
  list-style: none;
}
html {
  scroll-behavior: auto;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img, picture {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/*
 * グローバルナビ
 * -------------------------------------------------------------------
 */
.nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
}
@media print, screen and (min-width: 769px) {
  .nav-header {
    border-bottom: 1px solid #d9e2ef;
  }
}
.nav-header__container {
  display: flex;
  justify-content: flex-end;
  max-width: 1200px;
  height: 6rem;
  margin: 0 auto;
  padding: 0 0 0 10px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-sizing: border-box;
}
@media print, screen and (min-width: 769px) {
  .nav-header__container {
    padding: 0 20px;
    height: 70px;
  }
}
@media print, screen and (min-width: 1230px) {
  .nav-header__container {
    padding: 0;
  }
}
.nav-header__logo {
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #222222;
  font-weight: 700;
  font-size: 2.0rem;
}
.nav-header__logo-image {
  display: block;
  max-height: 50px;
}
@media print, screen and (min-width: 1100px) {
  .nav-header__logo-image {
    height: 50px;
  }
}
.nav-header__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-header__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}
.nav-header__menu-item a {
  color: #0c54ad;
}
@media print, screen and (min-width: 769px) {
  .nav-header__menu {
    display: inline-block;
    align-items: center;
    width: calc(100% - 100px);
    text-align: right;
  }
  .nav-header__menu-item{
    display: inline-block;
  }
}
@media print, screen and (min-width: 1100px) {
  .nav-header__menu {
    width: calc(100% - 220px);
  }
}

.nav-header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #002250;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0 16px;
  min-width: 100px;
}
.nav-header__link:after {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #0c54ad;
  content: "";
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-header__link:hover:after {
  opacity: 1;
  width: 100%;
}
.nav-header__contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s, border-color .2s, opacity .2s;
  background-color: #0c54ad;
  color: #ffffff;
  margin-left: 1.6rem;
  padding: 1.2rem 3.2rem;
  border-radius: 100px;
}
.nav-header__contact:hover {
  background-color: #0c54ad;
}
.nav-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 6rem;
  height: 6rem;
  background: #0c54ad;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media print, screen and (min-width: 769px) {
  .nav-header__toggle {
    display: none;
  }
}
.nav-header__toggle:hover {
  opacity: 0.8;
}
.nav-header__toggle-line {
  display: block;
  width: 35%;
  border-bottom: 2px solid #fff;
}
.nav-header__toggle-line:nth-child(2) {
  margin: 10% 0px;
}
.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1002;
}
.nav-drawer__container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  max-width: 350px;
  min-width: 200px;
  background: #fff;
  border-left: #e2e2e2 1px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}
.nav-drawer[data-open="true"] .nav-drawer__container {
  animation-name: menu-container-appeared;
}
.nav-drawer[data-open="false"] .nav-drawer__container {
  animation-name: menu-container-leaved;
}
.nav-drawer__menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}
.nav-drawer__contact {
  text-align: center;
  margin-top: 30px;
}
.nav-drawer__menu-item {
  border-bottom: #0c54ad 1px dashed;
}
.nav-drawer__link-main__child {
  text-indent: -0.75em;
  padding-left: 1.5em;
}
@media screen and (max-width: 428px) {
  .nav-drawer__link-main__child .br-hnav {
    display: none;
  }
}
.nav-drawer__menu-item a:visited {
  color: #0c54ad;
}
.nav-drawer__menu-item:hover {
  background: #efefef;
}
.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  letter-spacing: 0.01em;
  padding: 1em 2.5em 1em 2em;
  text-decoration: none;
}
.nav-drawer__link-main {
  display: block;
  font-weight: 700;
}
.nav-drawer__link-main__child {
  color: #526f94;
}
.nav-drawer__link-main__child::before {
  color: #526f94;
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  vertical-align: unset;
  content: "subdirectory_arrow_right";
  margin-right: 5px;
  color: #999;
}
.nav-drawer__link-sub {
  color: #aaa;
  display: block;
}
.nav-drawer__menu-button {
  display: flex;
  margin: 0px;
  padding: 0px;
}
.nav-drawer__button-close {
  position: relative;
  background-color: #0c54ad;
  margin: 0px 0px 0px auto;
  padding: 0px;
  width: 6rem;
  height: 6rem;
  border: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
}
.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #fff;
}
.nav-drawer__button-close-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-drawer__button-close-line:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}
.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}
.nav-drawer[data-open="true"] .nav-drawer__overlay {
  animation-name: menu-overlay-appeared;
}
.nav-drawer[data-open="false"] .nav-drawer__overlay {
  animation-name: menu-overlay-leaved;
}
.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: #0c54ad;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-pagetop.active {
  opacity: 1;
  z-index: 1000;
}
.nav-pagetop:before {
  display: block;
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5ce";
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-pagetop:after {
  content: 'PAGETOP';
  display: block;
  padding: 4px 0px;
}
.nav-pagetop:hover {
  background: #0c54ad;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.nav-pagetop:hover:before {
  transform: translateY(-4px);
}
/*
 * メインビジュアル
 * -------------------------------------------------------------------
 */
  
.mv__container {
  background: #fff;
  position: relative;
}
.mv__bg {
  position: relative;
}
.mv__bg::after {
  content: "";
  position: absolute;
  background-image: url('../img/mv_bg.png');
  background-repeat: no-repeat;
  right: 10px;
  bottom: 10px;
  background-size: contain;
}
.mv__intro {
  box-sizing: border-box;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  #mv-img {
    float: right;
  }
  #mv-img-sp {
    display: none !important;
  }
  .mv__container {
    margin: 72px auto 0;
    padding: 18px 0 30px;
    max-width: 1200px;
  }
  .mv__main {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto 2.4rem;
  }
  .mv__ttl h1 {
    font-size: 4.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .mv__ttl h1 .mv__ttl-num {
    font-size: 3.2rem;
  }
  .mv__intro {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 23px;
  }
  .mv__intro::before,
  .mv__intro::after {
    width: 58px;
    height: 108px;
    top: -6px;
  }
  .mv__intro::after {
    right: 10px;
  }
}
@media print, screen and (min-width: 1136px) {
  .mv__bg::after {
    width: 464px;
    height: 88px;
  }
  .mv__ttl {
    position: absolute;
    left: 0;
    bottom: 34px;
  }
  .mv__container {
    padding: 18px 0 306px;
  }
}
@media print, screen and (min-width: 1321px) {
  .mv__bg::after {
    width: 696px;
    height: 132px;
  }
}
@media print, screen and (max-width: 1229px) {
  .mv__ttl {
    margin-left: 20px;
  }
}
@media print, screen and (max-width: 1010px) {
  .mv__bg::after {
    width: 232px;
    height: 44px;
  }

}
@media print, screen and (max-width: 768px) {
  #mv-img {
    display: none !important;
  }
  #mv-img-sp {
    display: block !important;
  }
  .mv__container {
     margin-top: 74px;
     padding: 0;
     padding-bottom: 30px;
  }
  #mv-sp img.mv-sp_img1 {
    display: inline;
    margin-bottom: 1px;
    max-height: 150px;
  }
  .mv__ttl {
    margin-left: 10px;;
  }
  .mv__ttl h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .mv__ttl h1 .mv__ttl-num {
    font-size: 1.6rem;
  }
  .mv__intro {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .mv__intro::before,
  .mv__intro::after {
     width: 45px;
     height: 70px;
     top: 20px;
  }
}
.mv__scroll {
  display: block;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #0c54ad;
  position: relative;
}
.mv__scroll__icon {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media print, screen and (max-width: 768px) {
  .mv__scroll__icon {
    margin-top: 9px;
    margin-left: 12px;
    height: 20px;
  }
}
@media print, screen and (min-width: 769px) {
  .mv__scroll:hover .mv__scroll__icon {
    transform: translateY(6px);
  } 
	.mv__scroll {
		width: 48px;
		height: 48px;
	}
	.mv__scroll__arrow {
		margin-top: 7px;
	}
  .mv__scroll__icon {
    margin-top: 10px;
    margin-left: 14px;
  }
}
@media print, screen and (max-width: 768px) {
	.mv__scroll {
		width: 40px;
		height: 40px;
	}
	.mv__scroll__arrow{
		margin-top: 1px;
	}
}


/*
 * 下層ページビジュアル
 * -------------------------------------------------------------------
 */
.pagevisual {
  position: relative;
  z-index: 0;
  margin: 0;
  margin-top: 60px;
  padding: 40px 0 40px 10px;
  border-bottom: 1px solid #d9e2ef;
}
.pagevisual-multi {
  padding-top: 100px;
}
.pagevisual__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}
.pagevisual__text-main {
  line-height: 1.4;
  font-weight: 700;
  font-size: 3.2rem;
  position: relative;
  padding-bottom: 10px;
}
.pagevisual__text-main small {
  font-size: 2.4rem;
}
.pagevisual__text-sub {
  font-size: 1.4rem;
  font-weight: 700;
}
@media print, screen and (min-width: 769px) {
  .pagevisual {
    background-position: right top;
    box-sizing: border-box;
    margin-top: 72px;
    padding: 80px 20px;
  }
  .pagevisual-multi {
    padding-top: 100px
  }
  .pagevisual__text-main {
    font-size: 4.8rem;
    padding-bottom: 15px;
  }
  .pagevisual__text-main small {
    font-size: 3.2rem;
  }  
  .pagevisual__text-sub {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 1230px) {
  .pagevisual {
    padding: 80px 0;
  }
}
/*
 * パンくずリスト
 * -------------------------------------------------------------------
 */
.breadcrumbs__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 10px;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs__list-item {
  font-size: 1.2rem;
  white-space: nowrap;
}
@media print, screen and (min-width: 769px) {
  .breadcrumbs__list-item {
    font-size: 1.6rem;
  }
  .breadcrumbs__container {
    padding: 15px 20px;
  }
}
@media print, screen and (min-width: 1230px) {
  .breadcrumbs__container {
    padding: 15px 0;
  }
}
@media print, screen and (max-width: 768px) {
  .breadcrumbs__list {
    overflow-x: scroll;
  }
}
.breadcrumbs__list-item:not(:first-child)::before {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "keyboard_arrow_right";
  color: #0c54ad;
}
.breadcrumbs__link, .breadcrumbs__text {
  color: #0c54ad;
}
.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  text-decoration: underline;
}
/*
 * ページ見出し
 * -------------------------------------------------------------------
 */
.page-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.page-heading__content {
  margin: 0;
  padding: 0;
}
.page-heading__content--left {
  text-align: left;
}
.page-heading__content--center {
  text-align: center;
}
.page-heading__content--right {
  text-align: right;
}
.page-heading__text-main {
  font-weight: 700;
  font-size: 2.4rem;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .page-heading__text-main {
    font-size: 4.8rem;
  }
}
.top-news__heading .page-heading__text-main {
  color: #fff;
}
.page-heading__content--left .page-heading__text-main::after {
  margin-left: 0;
  margin-right: auto;
}
.page-heading__content--center .page-heading__text-main::after {
  margin-left: auto;
  margin-right: auto;
}
.page-heading__content--right .page-heading__text-main::after {
  margin-left: auto;
  margin-right: 0;
}
.page-heading__text-sub {
  font-weight: 700;
  font-size: 1.3rem;
  color: #d12d33;
  padding-top: 1rem;
  letter-spacing: 3px;
}
@media print, screen and (min-width: 769px) {
  .page-heading__text-sub {
    font-size: 1.6rem;
    padding-top: 1.6rem;
  }
}
.page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}
.page-heading-sub__content {
  margin: 0;
  padding: 0;
}
.page-heading-sub__content--left {
  text-align: left;
}
.page-heading-sub__content--center {
  text-align: center;
}
.page-heading-sub__content--right {
  text-align: right;
}
.page-heading-sub__text {
  position: relative;
  font-size: 2.4rem;
}
.page-heading-sub__text:before {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 1.6em;
  margin-right: .8rem;
  border-radius: 3px;
  background: #282828;
  content: "";
}
.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
}
/*
 * photo-modal
 * -------------------------------------------------------------------
 */
.photo-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1002;
  width: 100%;
  height: 100%;
  overflow: hidden;
  animation-duration: var(--photo-modal-duration);
  animation-fill-mode: forwards;
}
.photo-modal[data-open="true"] {
  animation-name: modal-photo-open;
}
.photo-modal[data-open="false"] {
  animation-name: modal-photo-close;
}
.photo-modal__container {
  max-width: 800px;
  max-height: 80%;
  margin: auto;
  overflow: auto;
}
.photo-modal__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.photo-modal .photo-modal__button, .photo-modal .photo-modal__button--close, .photo-modal .photo-modal__button--prev, .photo-modal .photo-modal__button--next, .photo-modal .button-detail__button, .photo-modal .button-detail__button--back, .photo-modal .button-detail__button--prev, .photo-modal .button-detail__button--next {
  position: absolute;
  width: 4rem;
  height: 4rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.4s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.photo-modal .photo-modal__button:hover, .photo-modal .photo-modal__button--close:hover, .photo-modal .photo-modal__button--prev:hover, .photo-modal .photo-modal__button--next:hover, .photo-modal .button-detail__button:hover, .photo-modal .button-detail__button--back:hover, .photo-modal .button-detail__button--prev:hover, .photo-modal .button-detail__button--next:hover, .photo-modal .photo-modal__button:focus, .photo-modal .photo-modal__button--close:focus, .photo-modal .photo-modal__button--prev:focus, .photo-modal .photo-modal__button--next:focus, .photo-modal .button-detail__button:focus, .photo-modal .button-detail__button--back:focus, .photo-modal .button-detail__button--prev:focus, .photo-modal .button-detail__button--next:focus {
  color: #f2f2f2;
  outline: none;
}
.photo-modal .photo-modal__button::before, .photo-modal .photo-modal__button--close::before, .photo-modal .photo-modal__button--prev::before, .photo-modal .photo-modal__button--next::before, .photo-modal .button-detail__button::before, .photo-modal .button-detail__button--back::before, .photo-modal .button-detail__button--prev::before, .photo-modal .button-detail__button--next::before {
  font-size: 2.5rem;
}
.photo-modal__button--close {
  top: 0;
  right: 0;
}
.photo-modal__button--close::before {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cd";
}
.photo-modal__button--prev {
  top: 50%;
  left: 0;
}
.photo-modal__button--prev::before {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "keyboard_arrow_right";
}
.photo-modal__button--next {
  top: 50%;
  right: 0;
}
.photo-modal__button--next::before {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "keyboard_arrow_right";
}
.photo-modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.85);
}

/*
 * 新着情報
 * -------------------------------------------------------------------
 */

.news-item a:hover::after {
  transform: translateX(10px);
}
.news-item a:hover {
  cursor: pointer;
}
.news-item__date {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  color: #fff;
}
.news-item__title {
  color: #fff;
  position: relative;
}
.news-item__title:visited {
  color: #fff;
}
a.news-item__title {
  padding: 0 50px 0 0;
}
a.news-item__title::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 6px;
  display: block;
  width: 24px;
  height: 16px;
  background-image: url('../img/arrow_right-white.png');
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media print, screen and (min-width: 1001px) {
  .news-item {
    flex-wrap: nowrap;
    display: flex;
  }
  .top-news__container {
    flex-wrap: nowrap;
    display: flex;
  }
  .top-news__heading {
    width: calc(100% - 800px);
  }
  .top-news__list {
    padding: 0;
    max-width: 800px;
  }
  .top-news__list-item:first-child {
    padding-top: 15px;
  }
  .news-item__date {
    padding: 0 0 0 23px;
    width: 148px;
    vertical-align: text-bottom;
    align-items: flex-start;
    justify-content: left;
    display: flex;
  }
  .news-item__title {
    justify-content: center;
    align-items: center;
    width: calc(100% - 154px);
  }
}

a.news-item__title:hover,
a.news-item__title:focus {
  text-decoration: underline;
}
.top-news__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.top-news__list {
  padding: 0;
  width: 100%;
}
.top-news__list-item {
  display: block;
  margin: 0;
  padding: 0;
}
.top-news__list-item {
  border-bottom: 1px solid #fff;
}
.top-news__guide {
  padding-top: 60px;
}
.top-news__heading .page-heading {
  margin-bottom: 0;
}
@media print, screen and (min-width: 769px) {
  .top-news__list-item {
      padding: 30px 0;
  }
  .top-news__list-item {
    position: relative;
    z-index: 1;
  }
}
.news-list__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}
.news-list__list {
  display: block;
  padding: 0;
  margin: 0 auto;
  max-width: 100rem;
}
.news-list__list-item {
  display: block;
  margin: 0;
  padding: 0;
}
.news-list__list-item:not(:first-child) {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px dashed #222;
}
.news-list__pagination {
  padding-top: 6.4rem;
}
.news-detail__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  max-width: 96rem;
  margin: 0 auto 4.8rem auto;
}
.news-detail__title {
  margin-bottom: 4.8rem;
  font-weight: 700;
  font-size: 3.2rem;
}
.news-detail__image {
  margin-bottom: 4.8rem;
}
.news-detail__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.news-detail__body {
  margin-bottom: 4.8rem;
  background: #ffffff;
}
.news-detail__button {
  padding-top: 3.2rem;
}
@media print, screen and (min-width: 769px) {
  .news-detail__body {
    padding: 3.6rem;
  }
  .news-detail__button {
    padding-top: 6.4rem;
  }
}
@media print, screen and (max-width: 768px) {
  .news-item {
    padding: 20px 0;
  }
  .news-item__date {
    margin: 0 0 5px 0;
  }
  .top-news__list {
    margin-top: 0;
  }
  a.news-item__title {
    display: block;
    width: 100%;
    padding: 0 40px 0 0;
  }
  a.news-item__title::after {
    right: 10px;
  }
}
/*
 * コンテンツパーツ
 * -------------------------------------------------------------------
 */
@media print, screen and (max-width: 768px) {
  .page-section {
    padding-bottom: 30px;
  }
}
.page-section h2, .heading-type3 {
  position: relative;
  font-size: 2.4rem;
}
@media print, screen and (max-width: 768px) {
  .page-section h2, .heading-type3 {
    margin-bottom: 20px;
    padding: 0 0 0 40px;
  }
}
.page-section h2:not(:first-child) {
  margin-top: 80px;
}
@media print, screen and (max-width: 768px) {
  .page-section h2:not(:first-child) {
    margin-top: 60px;
  }
}
.page-section h2::before {
  display: block;
  width: 48px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #0c54ad;
  border-radius: 2px;
  top: 25px;
}
@media print, screen and (max-width: 768px) {
  .page-section h2::before {
    height: 1px;
    width: 32px;
    top: 18px;
  }
}
@media print, screen and (max-width: 768px) {
  .page-section h3 {
    margin: 40px 0 10px;
    font-size: 2rem;
  }
}
.page-section h4 {
  margin: 20px 0;
  font-weight: 700;
  position: relative;
  padding-left: 24px;
  font-size: 1.8rem;
}
.page-section h4::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 1px;
  width: 16px;
  height: 1px;
  background: #0c54ad;
}
.page-section p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 1.75;
}
.page-section__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 10px;
  overflow: hidden;
  box-sizing: border-box;
}
.page-section__heading {
  margin-bottom: 6.4rem;
}
.page-section__list {
  margin: 0 -15px 0 -15px;
}
.page-section ul {
  padding: 0;
  list-style: none;
}
.page-section li {
  padding: 0 0 0 25px;
  position: relative;
}
.page-section li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  background: #0c54ad;
  border-radius: 8px;
}
@media print, screen and (min-width: 769px) {
  .page-section h2, .heading-type3 {
    font-size: 3.2rem;
    margin-bottom: 50px;
    padding-left: 64px;
  }
  .page-section h3 {
    font-size: 2.4rem;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .page-section h4::before {
    top: 13px;
  }
  .page-section__list {
    display: flex;
    flex-wrap: wrap;
  }
  .page-section__container {
    padding: 80px 20px 140px;
  }
}
@media print, screen and (min-width: 1230px) {
  .page-section__container {
    padding: 80px 0 140px;
  }
}
.page-section__list-item {
  margin: 15px 15px 4.8rem 15px;
}
@media print, screen and (min-width: 769px) {
  .page-section__list-item {
    width: calc(100% / 3 - 30px);
    margin: 15px;
  }
}
.page-section__guide {
  margin-top: 6.4rem;
}
.page-section ul.flow-step {
  position: relative;
  padding: 20px 0 1px;
}
.page-section ul.flow-step::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #0c54ad;
  margin-left: 1px;
  display: block;
  position: absolute;
  top: 0;
  left: 8px;
}
.page-section ul.flow-step li {
  position: relative;
  list-style: none;
  padding-left: 50px;
  margin-bottom: 30px;
}
.page-section ul.flow-step li::after, .page-section ul.flow-step li::before {
  content: "";
  display: block;
  position: absolute;
}
.page-section ul.flow-step li::after {
  width: 34px;
  border-bottom: 1px dashed #526f94;
  position: absolute;
  left: 16px;
  top: 27px;
}
.page-section ul.flow-step li::before {
  top: 21px;
  width: 20px;
  height: 20px;
  margin-top: -3px;
  background: #0c54ad;
  border-radius: 50%;
  left: -2px;
}
.flow-step__heading {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.flow-step__heading .flow-step__step {
  background: #0c54ad;
  color: #fff;
  font-size: 3.2rem;
  padding: 3px 20px;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
}
.flow-step__heading .flow-step__step span {
  font-size: 2.4rem;
  display: inline-block;
  transform: translateY(-1px);
}
.flow-step__heading .flow-step__ttl {
  font-size: 2.4rem;
  display: block;
  padding-left: 18px;
  transform: translateY(2px);
}
@media print, screen and (max-width: 768px) {
  .page-section ul.flow-step li::before {
    width: 18px;
    height: 18px;
    left: 0;
    top: 14px;
  }
  .page-section ul.flow-step li::after {
    top: 19px;
  }
  .flow-step__heading .flow-step__step {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
  .flow-step__heading .flow-step__step span {
    font-size: 1.8rem;
  }
  .flow-step__heading .flow-step__ttl {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 769px) {
  .page-section ul.flow-step {
    padding: 25px 0 1px;
  }
  .page-section ul.flow-step li {
    padding-left: 80px;
  }
  .page-section ul.flow-step::before {
    width: 2px;
  }
  .page-section ul.flow-step li::before {
    left: 0;
  }
  .page-section ul.flow-step li::after {
    width: 64px;
  }
  .flow-step__heading {
    font-size: 1.8rem;
  }
  .flow-step__heading span {
    display: inline-block;
  }
  .flow-step__step {
    font-size: 1.4rem;
    margin-right: 1.6rem;
  }
}
.page-section ul.merit-list {
  padding: 0;
}
.page-section ul.merit-list li {
  position: relative;
  list-style: none;
  padding: 70px 10px 5px 10px;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #0c54ad;
}
.page-section ul.merit-list li::before {
  display: none;
}
.layout-col2 .layout-col2__item:nth-of-type(odd) {
  margin-bottom: 20px;
  ;
}
@media print, screen and (min-width: 769px) {
  .layout-col2 {
    display: flex;
  }
  .layout-col2__item {
    width: 50%;
  }
  .layout-col2 .layout-col2__item:nth-of-type(odd) {
    padding-right: 2.4rem;
    margin-bottom: 0;
  }
  .layout-col2 .layout-col2__item:nth-of-type(even) {
    padding-left: 2.4rem
  }
  .layout-col2 .layout-col2__item h3:nth-of-type(1) {
    margin-top: 0;
  }
}
.merit-list__icon {
  position: absolute;
  text-align: center;
  left: 10px;
  top: 15px;
  display: block;
  padding: 2px 20px 6px 20px;
  font-weight: 700;
  color: #fff;
  background: #0c54ad;
  font-size: 1.6rem;
  line-height: 1.4;
}
.merit-list__icon__number {
  font-size: 2.4rem;
  margin-left: 5px;
  font-family: 'Poppins', sans-serif;
  transform: translateY(2px);
  display: inline-block;
}
.merit-list li h3:nth-of-type(1) {
  margin-top: 0;
}
@media print, screen and (min-width: 769px) {
  .page-section ul.merit-list li {
    padding: 21px 20px 10px 190px;
    margin-bottom: 30px;
  }
  .merit-list__icon {
    padding: 3px 20px 9px 20px;
    left: 20px;
    top: 13px;
    font-size: 2rem;
  }
  .merit-list__icon__number {
    font-size: 3.2rem;
    transform: translateY(3px);
    display: inline-block;
  }
}
.page-section ul.point-list {
  padding: 0;
}
.page-section ul.point-list li {
  list-style: none;
  padding: 30px 30px 30px 130px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #0c54ad;
}
.page-section ul.point-list li::before {
  display: none;
}
.point-list__icon {
  position: absolute;
  color: #fff;
  left: 0;
  top: 0;
  padding: 28px 20px 10px 20px;
  font-size: 1.8rem;
  font-weight: 700;
  height: 100%;
  box-sizing: border-box;
  line-height: 1;
  background: #0c54ad;
  width: 100px;
  text-align: center;
  font-size: 3.2rem;
  font-family: 'Poppins', sans-serif;
}
@media print, screen and (max-width: 768px) {
  .page-section ul.point-list li {
    padding: 20px 20px 20px 70px;
  }
  .point-list__icon {
    padding: 18px 10px  0  10px;
    width: 50px;
    font-size: 2.4rem;
  }
}
.box-guide {
  border: 1px solid #0c54ad;
  padding: 10px 20px 20px 20px;
  border-top: 6px solid #0c54ad;
}
@media print, screen and (max-width: 768px) {
  .box-guide {
    padding: 10px;
  }

}
.box-guide .box-guide__title {
  margin-top: 0;
}
.content__container {
  padding: 50px 15px 60px;
  box-sizing: border-box;
  overflow: hidden;
}
.wrapper .content__container.top-news {
  background-color: #0c54ad;
}
@media print, screen and (min-width: 1210px) {
  .content__container {
    padding: 80px 0;
  }
}
@media print, screen and (min-width: 769px) {
  .content__container {
    padding: 100px 20px;
  }
  .top-news {
    padding: 80px 20px;
  }
}
@media print, screen and (min-width: 1480px) {
  .content__container.top-news {
    padding-left: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .phot__col {
    margin-bottom:30px;
  }
  .phot__col__item {
    float: left;
    width: 49%;
    margin-right:2%;
    margin-bottom:30px;
  }
  .phot__col__item:nth-child(2n){
    margin-right:0;
  
  }
  .phot__col::after {
   content: "";
   display: block;
   clear: both;
  }
}
@media screen and (max-width: 768px) {
  .phot__col {
    margin-bottom:45px;
  }
}
.layout-link-award > div {
  margin-bottom: 20px;
  width: 100%;
  max-width: 576px;
}
.layout-link-award .button-basic {
  width: 100%;
}
/*
 * 歴代受賞商品
 * -------------------------------------------------------------------
 */
.page-section-index {
  border-bottom: 2px solid #0c54ad;
}
.award-products__photo, .award-products__info {
  box-sizing: border-box;
}
.award-products__photo img {
}
.page-section h2.award-products__title {
  margin-bottom: 8rem;
  color: #fff;
  padding: 7px 10px 10px 80px;
  background: #0c54ad;
}
.page-section h2.award-products__title::before {
  background-color: #fff;
  top: 32px;
  left: 17px;
}
@media screen and (max-width: 768px) {
  .page-section h2.award-products__title::before {
    top: 23px;
    left: 12px;
    width: 26px;
  }
}
.page-section .award-products__info__title::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 25px;
  display: block;
  left: -1px;
  top: 2px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .page-section .award-products__info__title::before {
    width: 24px;
    height: 29px;
    top: 4px;
  }
}
.page-section .award-products__info__title-gold::before {
  display:none;
}
.page-section h2.award-products__title::after {
  top: 10px;
  left: 14px;
  width: 5px;
  height: 3rem;
  background: #f9afb6;
}
.page-section .award-products__info__title {
  position: relative;
  padding-left: 32px;
  font-size: 2rem;
  margin-bottom: 2.4rem;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .page-section .award-products__info__title {
    padding-left: 28px;
    font-size: 2.4rem;
  }
}
.page-section .award-products__info__title-gold {
  padding-left: 18px;
}
@media print, screen and (max-width: 768px) {
  .page-section h2.award-products__title {
    padding: 7px 10px 10px 50px;
    font-size: 2.2rem;
  }
  .page-section-index .page-section__container {
    padding-bottom: 0;
  }
  .page-section .award-products__info__title-gold {
    padding-left: 0;
  }

}
@media print, screen and (min-width: 769px) {
  .page-section-index .page-section__container {
    padding: 80px 15px 40px;
  }
  .page-section h2.award-products__title::after {
    top: 14px;
    height: 4rem;
    width: 5px;
  }
  .page-section .award-products__info__title::before {
    width: 26px;
    height: 36px;
    top: 4px;
  }
  .page-section .award-products__info__title {
    font-size: 2.8rem;
  }
}
.award__title-gold {
  background: #e3bb3f; /* Old browsers */
  background: -moz-linear-gradient(left, #ffebad 0%, #e3bb3f 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffebad 0%, #e3bb3f 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffebad 0%, #e3bb3f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebad', endColorstr='#e3bb3f', GradientType=1); /* IE6-9 */
  color: #493d18;
  font-weight: 400;
  position:relative;
  padding:6px 28px  7px 22px;
  font-size: 2.4rem;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .award__title-gold {
    padding:7px 22px  7px 14px;
    margin-bottom: 8px;
    display: block;
    float: right;
    font-size: 2rem;
  }
}
.award__title-gold::before {
  content: "";
  border-width: 48px 18px 0 0;
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  border-style: solid;
  left: -18px;
  border-color: transparent #ffebad transparent;
}
@media screen and (max-width: 768px) {
  .award__title-gold::before {
    border-width: 42px 18px 0 0;
  }
}
.award__title-trophy{
  position: relative;
  padding: 0 0 0 50px;
}
.award__title-trophy::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../img/icon-trophy-blue-36.png');
    display:block;
    height: 34px;
    width: 32px;
    left: 13px;
    top: 8px;
}
@media print, screen and (min-width: 769px) {
  .award__title-trophy::before {
    top: 4px;
  }
}
@media screen and (max-width: 768px) {
  .award__title-trophy{
    display: block;
    margin-top: 9px;
    padding: 0px 0 0 40px;
    clear: both;
  }
  .award__title-trophy::before {
    top: 3px;
    left: 0;
  }
}
.award-products__info__property {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .award-products__info__property {
  }
}
.award-products__info__text {
  margin-bottom: 30px;
}
.award-products__info__property dt {
  display: inline-block;
  width: 100px;
  color: #fff;
  padding: 4px 4px 4px 32px;
  vertical-align: top;
  font-size: 1.8rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .award-products__info__property dt {
    font-size: 1.6rem;
  }
}
.award-products__info__property dd {
  display: inline-block;
  width: calc(100% - 100px);
  box-sizing: border-box;
  padding: 1px 5px 9px 11px;
  margin-bottom: 0.8rem;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .award-products__info__property dd {
    padding: 2px 5px 6px 10px;
    font-size: 2rem;
  }
}
.award-products__info__table {
  width: 100%;
  border-top: 4px solid #0c54ad;;
  border-collapse: collapse;
  border-spacing: 0;
}
.award-products__inner:not(:last-child) {
  border-bottom: 2px dashed #d9e2ef;
  padding-bottom: 4.8rem;
  margin-bottom: 6rem;
}
.award-products__info__table tr:not(:first-child) {
  border-top: 1px solid #d9e2ef;
}
.award-products__info__table {
  table-layout: fixed;
}
.award-products__info__table th, .award-products__info__table td {
  padding: 10px;
  box-sizing: border-box;
}
.award-products__info__table th {
  vertical-align: top;
  width: 120px;
}
.award-products__info__table td {
  background: #fff;
}
.award-products__info__table a {
  word-wrap: break-word;
}
.award-products__info__text strong {
  font-size: 1.6rem;
}
@media print, screen and (min-width: 769px) {
  .award-products__info__table th {
    width: 200px;
  }
  .award-products__info__table th, .award-products__info__table td {
    padding: 1.6rem;
  }
  .award-products__info__text strong {
    font-size: 1.8rem;
  }
}
.award-products__info__title::before {
  background-image: url(../img/award_icon-blue.png);
}
.award-products__info__property dt {
  background: #0c54ad;
  position: relative;
}
.award-products__info__property dt::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background: #fff;
  left: 10px;
  top: 17px;
}
@media screen and (max-width: 768px) {
  .award-products__info__property dt::after {
    top: 16px;
  }
}
.award-products__info__table th {
  background: #fff;
}
.award-products__info__table strong {
}
.award-products__info__text strong {
  font-size: 2.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .award-products__info__text strong {
    font-size: 2.2rem;
  }
}
.award-products__photo {
  margin-bottom: 2.4rem;
}
.award-products__photo figure {
  text-align: center;
}
.award-products__photo figure img {
  display: inline-block;
  max-width: 100%;
  /*width: 100%;*/
}
@media print, screen and (min-width: 769px) {
  .award-products__inner {
    display: flex;
  }
  .award-products__photo {
    width: 40%;
    padding-right: 2.4rem;
    margin-bottom: 0;
  }
  .award-products__info {
    width: 60%;
    padding-left: 2.4rem
  }
}
.award-list-industry, .award-list-food {
  padding: 6.4rem 1.6rem 6.4rem 1.6rem;
  max-width: 1600px;
  margin: 0 auto;
  background-image: url(../img/back-white.png);
  background-repeat: repeat;
}
.award-list-industry {
  background-color: #d8e6f7;
}
.award-list-industry .blog-item__title, .award-list-food .blog-item__title {
  position: relative;
  padding-left: 22px;
}
@media print, screen and (min-width: 769px) {
  .award-list-industry .blog-item__title, .award-list-food .blog-item__title {
    padding-left: 27px;
  }
  .award-list-industry {
    margin-bottom: 8rem;
  }
}
.award-list-industry .blog-item__title::before, .award-list-food .blog-item__title::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 25px;
  display: block;
  left: -2px;
  top: 3px;
  background-repeat: no-repeat;
  background-size: contain;
}
.award-list__property dt {
  background: #0c54ad;
}
.award-list-industry .blog-item__title {
  color: #0c54ad;
}
.award-list-food {
  background-color: #fff1d6;
}
.award-list-food .blog-item__title {
  color: #0c54ad;
}
.award-list__heading {
  margin-left: auto;
  margin-right: auto;
}
.award-list__heading__text {
  position: relative;
  display: inline-block;
  padding: 8px 17px 8px 37px;
  font-size: 1.8rem;
  color: #0c54ad;
  margin-left: 14px;
  border-bottom: 1px solid #0c54ad;
}
.award-list__heading__text::before {
  content: "";
  position: absolute;
  width: 31px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../img/icon-trophy-blue-30.png');
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .award-list__heading__text::before {
    width: 24px;
    height: 27px;
    left: 6px;
  }
}

@media print, screen and (min-width: 769px) {
  .award-list__heading {
    max-width: 1200px;
  }
}
.award-item__title {
  position: absolute;
  right: 0;
  top: -25px;
  background: #e3bb3f; /* Old browsers */
  background: -moz-linear-gradient(left, #ffebad 0%, #e3bb3f 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffebad 0%, #e3bb3f 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffebad 0%, #e3bb3f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebad', endColorstr='#e3bb3f', GradientType=1); /* IE6-9 */
  color: #000;
  font-size: 1.8rem;
  padding: 5px 30px 5px 25px;
}
@media screen and (max-width: 768px) {
  .award-item__title {
  padding: 3px 20px 2px 20px;
  top: -35px;
  }
}
@media print, screen and (min-width: 769px) {
  .award-item__title {
    padding: 3px 35px 3px 22px;
  }
}
.award-item__title::before {
  content: "";
  border-width: 39px 16px 0 0;
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  border-style: solid;
}
.award-item__title::before {
  left: -25px;
  border-color: transparent #ffebad transparent;
}
@media print, screen and (min-width: 769px) {
  .award-item__title::before {
    left: -16px;
    border-width: 45px 16px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .award-item__title::before {
    left: -15px;
    border-width: 35px 16px 0 0;
  }
}
.award-item__title span {
  position: relative;
  font-size: 2rem;
  color: #493d18;
  font-weight: 400;
}
@media print, screen and (min-width: 769px) {
  .award-item__title span {
    font-size: 2.6rem;
  }
}
.award-item__title-sub {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  color: #0c54ad;
}
.award-item__title-sub::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../img/icon-trophy-blue-36.png');
}
.award-item__title-sub-medal::before {
  background-image: url('../img/award_icon-blue.png');
}
.award-list__property {
  color: #0c54ad;
  margin-bottom: 10px;
}
.award-list__property dt {
  display: inline-block;
  text-align: left;
  color: #fff;
  padding: 5px 2px 5px 28px;
  margin-bottom: 6px;
  font-weight: bold;
  position: relative;
      vertical-align: top;
}
.award-list__property dt::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background: #fff;
  left: 10px;
  top: 17px;
}
@media screen and (max-width: 768px) {
  .award-list__property dt {
    padding: 5px 7px 5px 24px;
    font-size: 1.3rem;
  }
  .award-list__property dt::after {
    width: 10px;
    left: 7px;
    top: 14px;
  }
}
.award-list__property dd {
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
  font-size: 2rem;
  line-height: 1.3;
  color: #0c54ad;
}
@media screen and (max-width: 768px) {
  .award-list__property dd {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 769px) {
  .award-list__property dd {
    font-size: 2rem;
    width: calc(100% - 100px);
    padding-left: 11px;
    margin-bottom: 10px;
    padding-top: 3px;
  }
  .award-item__title-sub::before {
    height: 40px;
    width: 36px;
    left: -6px;
    top:2px;
  }
  .award-item__title-sub-medal::before {
    height: 38px;
    width: 28px;
    left: -6px;
    top: 2px;
  }
}
@media screen and (max-width: 768px) {
  .award-list__property dd {
    width: calc(100% - 100px);
    margin-left: 7px;
    margin-top: 3px;
    font-size: 1.7rem;
  }
  .award-item__title-sub::before {
    height: 29px;
    width: 26px;
    left: -5px;
    top:3px;
  }
  .award-item__title-sub-medal::before {
    height: 28px;
    width: 22px;
    left: -5px;
    top: 0;
  }
}
.award-item__content {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background: #fff;
  padding: 10px 15px;
  margin-left: 20px;
  margin-top: -25px;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 768px) {
  .award-item__content {
    margin-top: -40px;  }
}
.award-list__list-item a:hover .award-item__content {
  background: #ecf5ff;
}
.award-item__thumbnail {
  overflow: hidden;
  z-index: 1;
  position: relative;
  box-sizing: border-box;
  border: 3px solid transparent;
}
.award-item__thumbnail img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.award-list__list-item a:hover .award-item__thumbnail {
  border: 3px solid #0c54ad;
}
.award-list__list-item a:hover .award-item__thumbnail img {
  transform: scale(1.08, 1.08);
}
.award-list__list-item a:hover {
  text-decoration: none;
}
.award-item__button {
  text-align: right;
}
.award-item__button-more {
  position: relative;
  color: #0c54ad;
  font-family: 'Poppins', sans-serif;
  padding: 0 30px 0 0;
}
.award-item__button-more::after {
  display: block;
  text-transform: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  content: "";
  background-image: url(../img/arrow_right-blue.png);
  width: 24px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 6px;
}
.award-list__list-item a:hover .award-item__button-more::after {
  transform: translateX(10px);
}
.award-list__guide {
  text-align: center;
  margin-bottom: 100px;
}
.award-list__list-item {
  margin-bottom: 60px;
}
.page-heading {
  margin-bottom: 30px;
}
.award-list__heading {
  margin-bottom: 30px;
}

@media print, screen and (min-width: 979px) {
  .award-list__body {
    margin: 0 auto 20px;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
  }
  .award-list__list-item {
    width: 50%;
  }
  .award-list__list-item:nth-of-type(odd) {
    padding-right: 40px;
  }
  .award-list__list-item:nth-of-type(even) {
    padding-left: 40px;
  }
}
@media print, screen and (min-width: 769px) {
  .page-heading {
    margin-bottom: 80px;
  }
  .award-list__heading {
    margin-bottom: 60px;
  }
  .award-list__heading__text {
    font-size: 2.4rem;
    padding: 10px 25px 10px 50px;
  }
  .award-item__content {
    padding: 20px 35px;
    margin-left: 90px;
    margin-top: -40px;
  }
  .award-list__property dt {
    font-size: 1.6rem;
    display: inline-block;
    width: 90px;
    margin-bottom: 10px;
   }
  .award-item__title {
    top: -45px;
  }
  .award-item__title-sub {
    font-size: 2.8rem;
    padding: 0px 0 0 36px;
  }
  .award-item__title-sub-medal {
    padding: 0px 0 0 28px;
  }
  .award-item__title span::before {
    top: 4px;
    height: 25px;
  }
}
@media screen and (max-width: 768px) {
  .award-item__title-sub {
    font-size: 2rem;
    padding: 2px 0 0 25px;
    margin-bottom: 13px;
  }
  .award-item__title-sub-medal {
    padding: 0 0 0 22px;
  }
}
/*
 * ギャラリー
 * -------------------------------------------------------------------
 */
.gallery__list {
  list-style: none;
  margin: 0 -15px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.gallery__list-item {
  margin: 8px;
  width: calc(100% / 2 - 20px);
}
@media print, screen and (min-width: 769px) {
  .gallery__list-item {
    width: calc(100% / 3 - 30px);
    margin: 15px;
  }
}
.top-gallery {
  max-width: 600px;
  width: 100%;
  margin: 6.4rem auto 0;
  padding: 0 1.6rem;
  box-sizing: border-box;
}
.top-gallery__bg {
  background-image: url(../img/gallery__bg.jpg);
  background-repeat: no-repeat;
  background-color: #282828;
  background-size: contain;
}
.top-gallery__bg .page-heading__text-main {
  text-shadow: -2px 0px 0px #fff, -2px -2px 0px #fff, 0px -2px 0px #fff, 2px -2px 0px #fff, 2px 0px 0px #fff, 2px 2px 0px #fff, 0px 2px 0px #fff, -2px 2px 0px #fff, 0px 0px 6px #fff;
}
.top-gallery__bg .page-heading {
  max-width: 1200px;
  margin: 0 auto 60px;
}
@media print, screen and (min-width: 769px) {
  .top-gallery__bg {
    background-attachment: fixed;
    background-position: 0 72px;
    background-size: auto;
  }
  .top-gallery {
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
  }
}
/*
 * フッター
 * -------------------------------------------------------------------
 */
.footer__menu,
.footer__menu__child {
  list-style: none;
  margin: 0;
  padding: 0 0 0 5px;
  line-height: 2;
}
.footer__menu-item {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .footer__menu-item {
    margin: 0 40px;
  }
  .footer__menu-item:first-child {
    margin: 0 40px 0 0;
  }
}
.footer__menu-item__child::before {
  display: none;
}
.footer__menu-item__child a {
  text-indent: -0.75em;
  padding-left: 1.5em;
}
.footer__menu-item__child a::before {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  vertical-align: unset;
  content: "subdirectory_arrow_right";
  margin-right: 5px;
  color: #526f94;
}
@media print, screen and (min-width: 769px) {
  .footer__menu {
    padding: 0;
    display: flex;
  }
  .footer__menu-item::before {
    top: 13px;
  }
}
.footer__menu-item a {
  position: relative;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  transform: translateX(0);
  display: inline-block;
  color: #0c54ad;
  font-weight: 700;
}

.footer__menu-item a:hover {
  transform: translateX(8px);
}
.footer__menu-item__child a,
.footer__menu-item__child a:visited {
  color: #526f94;
}
.footer__menu-item a:hover, .footer__menu-item a:focus {
  text-decoration: none;
}
.footer__copy {
  font-size: 1.2rem;
  color: #0c54ad;
  text-align: left;
  padding: 15px;
}
@media print, screen and (min-width: 769px) {
  .footer__copy {
    font-size: 1.4rem;
    padding: 27px 0 0 0;
    text-align: right;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .footer__copy {
    text-align: center;
    padding: 30px 40px 10px 40px;
  }
}
/*
 * フッター お問い合わせ
 * -------------------------------------------------------------------
 */
 .wrapper > section.footer-contact__container {
  background: #0c54ad;
 }
 @media print, screen and (min-width: 769px) {
  .wrapper > section.footer-contact__container {
    padding: 70px 20px 80px;
  }
 }
 .footer-contact__container .page-heading__text-main {
  color: #fff;
 }
 .footer-contact__inner {
  max-width: 1200px;
  margin: 0 auto;
 }
 @media print, screen and (min-width: 769px) {
  .footer-contact__inner {
    display: flex;
  }
  .footer-contact__heading {
    width: 50%;
  }
  .footer-contact__content {
    width: 50%;
  }
}
.contact-guide__message {
  margin: 3.2rem 0;
  color: #fff;
  font-size: 1.6rem;
}
@media print, screen and (min-width: 769px) {
  .contact-guide__message {
    margin: 30px 0;
  }
}
.contact-form__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}
.contact-form__heading {
  margin-bottom: 3.2rem;
}
.contact-form__content {
  margin: 0 auto;
  padding: 3.2rem 1rem;
  background: #fff;
  border: 4px solid #efefef;
}
.contact-guide__name {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.contact-guide__address {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.contact-guide__address .white-out {
  display: inline-block;
  background: #fff;
  color: #0c54ad;
  font-size: 1.4rem;
  padding: 0px 12px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .contact-guide__address .white-out {
    margin: 0 10px 5px 0;
  }
}
@media print, screen and (min-width: 769px) {
  .footer__menu__container {
    padding: 40px 20px;
  }
  .footer__menu__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 769px) {
  .contact-form__content {
    padding: 6.4rem 4rem;
  }
  .contact-guide__name {
    font-size: 2.4rem;
  }
  .contact-guide__address {
    font-size: 1.8rem;
    margin-right: 1.6rem;
  }
}
.footer__container {
  background: #fff;
}
@media print, screen and (min-width: 769px) {
  .footer__container {
    padding: 20px 70px 15px 20px;
  }
  .footer__inner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 1460px) {
  .footer__container {
    padding: 20px 20px 15px 20px;
  }
}
/*
 * フッター footer-jemcci
 * -------------------------------------------------------------------
 */
.footer-jemcci {
  box-sizing: border-box;
}
.footer-jemcci__l, .footer-jemcci__r {
  box-sizing: border-box;
}
.footer-jemcci__r p {
  font-size: 1.4rem;
  padding-left: 60px;
}
.footer-jemcci__r a {
  color: #526f94;
}
@media screen and (max-width: 768px) {
  .footer-jemcci {
    padding: 20px;
    text-align: center;
  }
  .footer-jemcci img {
    display: inline-block;
  }
    .footer-jemcci__l {
    margin-bottom: 30px;
    padding-top: 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .footer-jemcci {
    display: flex;
    width: 50%;
  }
  .footer-jemcci__l {
    width: 260px;
  }
  .footer-jemcci__l {
    margin-bottom: 0;
    padding-right: 10px;
  }
  .footer-jemcci__r {
    padding-left: 10px;
    padding-top: 20px;
  }
  .footer-jemcci__r p {
    padding-left: 0;
  }
}
/*
 * 汎用パーツ
 * -------------------------------------------------------------------
 */
.button-basic {
  color: #0c54ad;
  background: #fff;
  padding: 15px 60px 15px 30px;
  display: inline-block;
  transition: all 0.2s;
  border: 4px solid #0c54ad;
  position: relative;
}
.contact-guide__list-item .button-basic {
  border: none;
}
.button-basic:hover {
  transform: translate(0, 3px);
  background: #ecf5ff;
  cursor: pointer;
}
a.button-basic:visited {
  color: #0c54ad;
}
.button-basic::after {
    display: block;
    text-transform: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    content: "";
    background-image: url(../img/arrow_right-blue.png);
    width: 24px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 22px;
}
.button-basic:hover::after {
  transform: translateX(10px);
}

.page__link-industry, .page__link-food {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  .page__link-industry, .page__link-food {
    text-align: left;
  }
}
.pagetop {
  display: none;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: fixed;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 10;
  background: #0c54ad;
}
.pagetop a {
  color: #fff;
  font-size: 1.4rem;
  padding: 41px 10px 8px 11px;
  display: block;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.pagetop__text::before {
  display: block;
  margin-bottom: 4px;
  height: 24px;
  width: 16px;
  text-transform: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  content: "";
  background-image: url(../img/arrow_top-white.png);
  position: absolute;
  right: 19px;
  top: 11px;
}
@media screen and (max-width: 768px) {
  .pagetop__text::before {
    right: 16px;
    top: 9px;
  }
}
.pagetop:hover .pagetop__text::before {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  transform: translateY(-4px);
}
@media print, screen and (min-width: 769px) {
  .pagetop a {
    padding: 45px 15px 10px 15px;
  }
}
.page-index__list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.page-index__list li {
  list-style: none;
  width: 50%;
  padding: 7px 10px;
}
.page-index__list li::before {
  display: none;
}
.page-index__list li a {
  width: 100%;
  text-align: center;
  display: block;
  padding: 4px 0px;
  border: 1px solid #0c54ad;
  border-radius: 4px;
  color: #0c54ad;
}
.page-index__list li a {
  border-color: #0c54ad;
}
.page-index__list li a:hover {
  background: #ecf5ff;
}
.page-index__list li a::after {
  margin-left: 0.6rem;
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  vertical-align: unset;
  content: "expand_more";
}
.page-index__list li a:hover::after {
  transform: translateY(3px);
}
@media print, screen and (min-width: 769px) {
  .page-index__list li {
    width: 20%;
  }
}
@media print, screen and (min-width: 769px) {
  .br-sp {
    display: none !important;
  }
  .br-pc {
    display: inline !important;
  }
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: inline !important;
  }
  .br-pc {
    display: none !important;
  }
}
a[href$=".pdf"] {
  position: relative;
  padding: 7px 0 0 38px;
  display: inline-block;
}
a[href$=".pdf"]::before {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  vertical-align: unset;
  content: "picture_as_pdf";
  color: #394c64;
  position: absolute;
  top: 6px;
  left: 2px;
  font-size: 30px;
}
a[href$=".pdf"]:visited::before {
  color: #394c64;
}
.bg-lightgray {
  background-color: #efefef;
}
.bg-white {
  background-color: #fff;
}
.fs-up1 {
  font-size: 1.8rem;
}
.fs-up2 {
  font-size: 2rem;
}
@media print, screen and (min-width: 769px) {
  .page-section p.fs-up-p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-section p.fs-up-p {
    font-size: 1.8rem;
  }
}
.color-red {
  color: #d12d33;
}
.color-black {
  color: #000;
}
.txt-bold {
  font-weight: 700;
}

.text-indent1 {
  text-indent: -1em;
  padding-left: 1em;
  display: inline-block;
}
.award-products__inner {
  padding-top: 90px !important;
  margin-top: -90px !important;
}
.bd-accent {
  background-image: url('../img/bd-accent.png');
  background-repeat: no-repeat;
  background-position: top left;
}
.bd-accent-small {
  background-image: url('../img/bd-accent-small.png');
  background-repeat: no-repeat;
  background-position: top left;
}

@media print, screen and (min-width: 769px) {
  .award-products__inner {
    padding-top: 110px !important;
    margin-top: -110px !important;
  }
}
#about-award{
  padding-top: 110px !important;
  margin-top: -70px !important;
}
.link-txt::after {
  font-family: 'Material Symbols Outlined';
  content: "arrow_forward";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  vertical-align: unset;
  margin-right: 5px;
  color: #526f94;
}
.link-txt:hover::after {
  transform: translateX(3px);
}
@media screen and (max-width: 768px) {
  .page-section-index .link-txt {
    font-size: 1.5rem;
  }
}
/*
 * fancybox
 * -------------------------------------------------------------------
 */
.fancybox-button {
  background: #d43745;
  color: #fff;
}
.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
  color: #fff;
}
.fancybox-button[disabled] div, .fancybox-button[disabled] div:hover {
  background: #a94b53;
  color: #9b8183;
}
.fancybox-button:hover {
  color: #f1cbce;
}

/*
 * 印刷調整
 * -------------------------------------------------------------------
 */
@media print {
  body,
  .nav-header {
    width: 1320px;
  }
  .nav-header {
    position: relative;
  }
   	#mv-pc {
    	display: block !important;
 	}
 	#mv-sp {
    	display: none !important;
 	}
}