@charset "utf-8";

@media print,screen and (min-width:481px) {

/* ---------------------------------
BASE
----------------------------------- */
body {
  background: #fff;
  color: #2E2E2E;
  font-size: 14px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
  cursor: auto;
}
a {
  color: #007AF4;
  text-decoration: none;
}
h1 a, h2 a, h3 a, h4 a {
  text-decoration: none;
}
a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover {
  text-decoration: underline;
}

.is-pc {
  display: block;
}
.is-sp {
  display: none;
}

/* ---------------------------------
LAYOUT
----------------------------------- */
#container {
  height: auto;
  min-height: 100%;
}
#wrapper {
  overflow: hidden;
}
#main-area {
  position: relative;
  width: 980px;
  min-height: 200px;
  margin: 50px auto 100px;
}

/* ---------------------------------
HEADER
----------------------------------- */
.header {
  position: relative;
}
.header > div > div {
  position: relative;
  max-width: 1150px;
  min-width: 980px;
  width: 95%;
  margin: 0 auto;
}

.header-main {
  padding: 15px 0;
  background: -moz-linear-gradient(left, #1B478D, #116E9F);
  background: -webkit-linear-gradient(left, #1B478D, #116E9F);
  background: linear-gradient(to right, #1B478D, #116E9F);
}
.header-main > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo {
  margin-right: auto;
}
.header-logo:hover {
  opacity: .7;
}
.header-logo img {
  width: 155px;
  height: auto;
  vertical-align: middle;
}
.header-contact {
  display: inline-block;
  padding: 5px 15px;
  color: #1B478D;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  background: #EBFF00;
}
.header-contact:hover {
  opacity: .8;
}

.header-globalnav {
  padding: 8px 0;
  -moz-box-shadow: 0px 4px 4px rgba(0,0,0,.1);
  -webkit-box-shadow: 0px 4px 4px rgba(0,0,0,.1);
  box-shadow: 0px 4px 4px rgba(0,0,0,.1);
  background: rgba(255,255,255,.8);
}
.header-globalnav__button {
  display: none;
}
.header-globalnav__list {
  height: 23px;
}
#menu-header-globalnav--sp {
  display: none;
}
.header-globalnav__list > ul {
  font-size: 13px;
  white-space: nowrap;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header-globalnav__list > ul::-webkit-scrollbar {
  display: none;
}
.header-globalnav__list > ul > li {
  position: relative;
  display: inline-block;
}
.header-globalnav__list > ul > li:not(:last-child) {
  margin-right: 15px;
}
.header-globalnav__list > ul > li a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.header-globalnav__list > ul > li:not(:first-child) a::before {
  content: "｜";
  position: absolute;
  top: 0;
  left: -15px;
  color: #bdbdbd;
}
.header-globalnav__list > ul > li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #1B478D;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.header-globalnav__list > ul > li a:hover::after {
  transform: scale(1, 1);
}
.header-globalnav__list > ul > li a:hover {
  color: #1B478D;
}

.header-globalnav-search__block {
  display: none;
	opacity: 0;
  position: absolute;
  top: 0;
  left: 30%;
  margin-left: 50px;
}
.header-globalnav-search__block > form::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-top: -2px;
  vertical-align: middle;
  background: url(../images/header-globalnav-search__button.png) no-repeat;
  background-size: contain;
}
.header-globalnav-search__block > form > input {
  width: 400px;
  font-size: 20px;
  background: inherit;
}
.header-globalnav-search__block__close {
  position: absolute;
  top: 3px;
  right: -15px;
}
.header-globalnav-search__button {
  position: absolute;
  top: -2px;
  right: 0;
}


/* ---------------------------------
HERO
----------------------------------- */
.hero {
  display: table;
  width: 100%;
  margin-top: -39px;
}
.hero-front {
  display: table-cell;
  height: calc(535px - 25px);
  padding-top: 39px;
  text-align: center;
  vertical-align: middle;
  background: #ccc url(../images/hero-front.png) center;
  background-size: cover;
}
.hero-secondary {
  display: table-cell;
  height: calc(260px - 39px);
  padding-top: 39px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.hero-secondary > div {
  position: relative;
  max-width: 1150px;
  min-width: 980px;
  width: 95%;
  margin: 0 auto;
}

.hero-front-block {
  width: 330px;
  min-height: 340px;
  margin: 0 auto;
  padding: 8px 12px 14px;
  background: #1B478D;
  opacity: .9;
}
.hero-front-block__img {
  margin-bottom: 30px;
  padding-top: 80px;
  text-align: center;
}
.hero-front-block__text {
  margin-bottom: 50px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.hero-front-block__link {
  text-align: right;
}
.hero-front-block__link > a {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  text-align: right;
  font-size: 10px;
  color: #fff;
  text-decoration: none;
}
.hero-front-block__link > a:hover {
  text-decoration: underline;
}
.hero-front-block__link > a::before {
  content: '';
  width: 21px;
  height: 21px;
  border: 1px solid #fff ;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -30px;
  margin-top: -12px;
}
.hero-front-block__link > a::after {
  content: '';
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 50%;
  right: -21px;
  margin-top: -6px;
  transform: rotate(45deg);
}


/* ---------------------------------
front-nav
----------------------------------- */
/* メインビジュアル下ナビ */
.front-nav {
  position: relative;
  -moz-box-shadow: 0px 4px 4px rgba(0,0,0,.1);
  -webkit-box-shadow: 0px 4px 4px rgba(0,0,0,.1);
  box-shadow: 0px 4px 4px rgba(0,0,0,.1);
  z-index: 1;
}
.front-nav > ul {
  display: flex;
  justify-content: space-between;
  max-width: 890px;
  width: 90%;
  margin: 0 auto;
  padding: 15px 0;
}
.front-nav__link > a {
  position: relative;
  display: block;
  min-width: 200px;
  padding: 30px 0 22px;
  text-align: center;
  font-size: 14px;
  color: #707070;
  text-decoration: none;
  line-height: 1.4;
}
.front-nav__link > a:hover {
  opacity: .7;
}
.front-nav__link > a::before {
  content: '';
  display: block;
  width: 30px;
  height: 24px;
  position: absolute;
  top: 0;
  left: calc( 50% - 15px );
  background: url(../images/front-nav__ico01.png);
}
.front-nav__link:nth-of-type(2) > a::before {
  background: url(../images/front-nav__ico02.png);
}
.front-nav__link:nth-of-type(3) > a::before {
  background: url(../images/front-nav__ico03.png);
}
.front-nav__link > a::after {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 13px;
  bottom: 0;
  left: calc( 50% + 1px );
  border-top: 1px solid #1B478D;
  border-right: 1px solid #1B478D;
  transform: translateX(-50%) rotate(135deg);
}
.front-nav__link > a > span {
  font-size: 18px;
  font-weight: bold;
  color: #1B478D;
}



/* ---------------------------------
front-news
----------------------------------- */
.front-news {
  position: relative;
  padding: 110px 0 45px;
}
.front-news > div {
  width: 895px;
  margin: 0 auto;
}
.front-news__ttl {
  margin-bottom: 40px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #1B478D;
}
.front-news__list > li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #707070;
}
.front-news__list > li > a {
  font-size: 14px;
  font-weight: bold;
  color: #006CEA;
  text-decoration: none;
}
.front-news__list > li > a:hover {
  text-decoration: underline;
}


/* ---------------------------------
front-card
----------------------------------- */
.front-card {
  position: relative;
  padding: 60px 0  80px;
}
.front-card > div {
  overflow: hidden;
}
.front-card__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.front-card__list > li {
  position: relative;
  width: 320px;
  background: #fff;
}
.front-card__list > li:not(:first-child):hover {
  opacity: .7;
  cursor: pointer;
}
.front-card__list > li:nth-of-type( n + 4 ) {
  margin-top: 20px;
}
.front-card__list > li > a {
  font-size: 14px;
  font-weight: bold;
  color: #007AF4;
  text-decoration: none;
}
.front-card__list > li > a:hover {
  text-decoration: underline;
}
.front-card__list__img {
  margin-bottom: 10px;
  font-size: 0;
}


/* ---------------------------------
front-intro
----------------------------------- */
.front-intro {
  width: 971px;
  margin: 0 auto 160px;
}
.front-intro__block {
  padding-top: 85px;
}
.front-intro__block:not(:last-child) {
  padding-bottom: 85px;
}
.front-intro__block__ttl {
  position: relative;
  margin-bottom: 100px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.front-intro__block__ttl::after {
  position: absolute;
  bottom: -8px;
  left: calc( 50% - 24px );
  content: '';
  width: 48px;
  height: 3px;
  background: #1B478D;
}
.front-intro__block__ttl > span {
  font-size: 28px;
  color: #1B478D;
}
.front-intro__block__txt {
  position: relative;
  margin-bottom: 75px;
  padding: 20px 310px 20px 40px;
  border-left: 1px solid #1B478D;
  font-size: 14px;
}
.front-intro__block__txt::before {
  content: '';
  display: block;
  width: 26px;
  height: 23px;
  position: absolute;
  top: 0;
  left: 11px;
  background: url(../images/front-intro__block__txt__ico01.png);
}
.front-intro__block:nth-of-type(2) > .front-intro__block__txt::before {
  background: url(../images/front-intro__block__txt__ico02.png);
}
.front-intro__block:nth-of-type(3) > .front-intro__block__txt::before {
  background: url(../images/front-intro__block__txt__ico03.png);
}
.front-intro__block__txt::after {
  content: '';
  display: block;
  width: 280px;
  height: 181px;
  position: absolute;
  top: -34px;
  right: 0;
  background: url(../images/front-intro__block__txt__img01.png);
}
.front-intro__block:nth-of-type(2) > .front-intro__block__txt::after {
  background: url(../images/front-intro__block__txt__img02.png);
}
.front-intro__block:nth-of-type(3) > .front-intro__block__txt::after {
  background: url(../images/front-intro__block__txt__img03.png);
}
.front-intro__block__list {
  display: flex;
  justify-content: space-between;
}
.front-intro__block__list > li {
  display: table;
  width: 309px;
  height: 192px;
  border-radius: 8px;
}
.front-intro__block__list > li:hover {
  opacity: .7;
  cursor: pointer;
}
.front-intro__block:nth-of-type(1) > .front-intro__block__list > li:nth-of-type(1) {
  background: url(../images/front-intro__block__list__img01.png);
}
.front-intro__block:nth-of-type(1) > .front-intro__block__list > li:nth-of-type(2) {
  background: url(../images/front-intro__block__list__img02.png);
}
.front-intro__block:nth-of-type(1) > .front-intro__block__list > li:nth-of-type(3) {
  background: url(../images/front-intro__block__list__img03.png);
}
.front-intro__block:nth-of-type(2) > .front-intro__block__list > li:nth-of-type(1) {
  background: url(../images/front-intro__block__list__img04.png);
}
.front-intro__block:nth-of-type(2) > .front-intro__block__list > li:nth-of-type(2) {
  background: url(../images/front-intro__block__list__img05.png);
}
.front-intro__block:nth-of-type(2) > .front-intro__block__list > li:nth-of-type(3) {
  background: url(../images/front-intro__block__list__img06.png);
}
.front-intro__block:nth-of-type(3) > .front-intro__block__list > li:nth-of-type(1) {
  background: url(../images/front-intro__block__list__img07.png);
}
.front-intro__block:nth-of-type(3) > .front-intro__block__list > li:nth-of-type(2) {
  background: url(../images/front-intro__block__list__img08.png);
}
.front-intro__block:nth-of-type(3) > .front-intro__block__list > li:nth-of-type(3) {
  background: url(../images/front-intro__block__list__img09.png);
}
.front-intro__block__list > li > a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}


/* ---------------------------------
linktodlpage
----------------------------------- */
.linktodlpage-block {
  display: table;
  margin-bottom: 120px;
  padding: 30px 60px;
  background: #F7F7F7;
  box-sizing: border-box;
}
.linktodlpage-block__txt {
  display: table-cell;
  width: 600px;
  color: #000;
  font-size: 16px;
}
.linktodlpage-block__btn {
  display: table-cell;
  margin-top: 16px;
  padding-left: 45px;
  letter-spacing: -1px;
  vertical-align: middle;
}
.linktodlpage-block__btn > a {
  padding: 12px 30px;
  background: #1B478D;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.linktodlpage-block__btn > a:hover {
  opacity: .7;
}


/* ---------------------------------
wanttomake
----------------------------------- */
.wanttomake-block {
  padding: 60px 0 160px;
}
.wanttomake-block__ttl {
  padding: 10px 0;
  background: #1B478D;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wanttomake-block-inner {
  position: relative;
  min-height: 295px;
  padding: 30px 40px 30px 435px;
  box-sizing: border-box;
  border: 1px dotted #1B478D;
  border-width: 0 1px 1px;
}
.wanttomake-block-inner::before {
  content: '';
  display: block;
  width: 368px;
  height: 235px;
  position: absolute;
  top: 30px;
  left: 35px;
  background: url(../images/wanttomake-block__img_01.png);
}
.wanttomake-block-inner__txt {
  margin-bottom: 20px;
  font-size: 14px;
  color: #000;
}
.wanttomake-block-inner__contactbtn {
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.wanttomake-block-inner__contactbtn > a {
  display: inline-block;
  padding: 12px 50px;
  background: #EBFF00;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #1B478D;
  text-decoration: none;
}
.wanttomake-block-inner__contactbtn > a:hover {
  opacity: .7;
}
.wanttomake-block-inner__link {
  margin-bottom: 5px;
  text-align: center;
}
.wanttomake-block-inner__link > a {
  font-size: 18px;
  font-weight: bold;
  color: #007AF4;
  text-decoration: none;
}
.wanttomake-block-inner__link > a:hover {
  text-decoration: underline;
}

/* ---------------------------------
article
----------------------------------- */
.article {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.article__item {
  width: 318px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.article__item:nth-child(3n+2):last-child {
  margin-left: auto;
  margin-right: 35%;
}
.article__item__photo {
  width: 100%;
}
.article__item__photo > a {
  display: block;
}
.article__item__photo > a > img {
	width: 100%;
  height: auto;
}
.article__item__description {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: bold;
  color: #121212;
}
.article__item__tag {
  margin-bottom: 10px;
}
.article__item__tag > li {
  display: inline-block;
  padding: 1px 5px;
  background: #E3FF0A;
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: 5px;
}
.article__item__tag > li > a {
  color: #121212;
  text-decoration: none;
}
.article__item__tag > li.cat-item {
  background: #1B478D;
}
.article__item__tag > li.cat-item > a {
  color: #fff;
}
.article__item__txt {
  margin-bottom: 20px;
  font-size: 13px;
  color: #707070;
}
.article__item__btn {
  margin-top: auto;
}
.article__item__btn > a {
  display: inline-block;
  padding: 4px 30px;
  background: #1B478D;
  border-radius: 25px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.article__item__btn:hover {
  opacity: .7;
  cursor: pointer;
}


article.post:not(.category-product) {
  margin: 0 30px 100px;
}
article.post:not(.category-product) {
  font-size: 18px;
}
article.post:not(.category-product) > p {
  margin-bottom: 30px;
}
article.post:not(.category-product) > h2 {
  margin-bottom: 30px;
  color: #1B478D;
  font-size: 34px;
}


/* ---------------------------------
COMMON
----------------------------------- */
.ttl-page {
  margin: 50px auto 0;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: bold;
}
.ttl-page h1 a{
  background: #0075c1;
  display: block;
  color: #fff;
  box-sizing: border-box;
  padding: 0 80px;
  text-align: center;
  text-decoration: none;
}
.ttl-page h1 a:hover{
  opacity: .8;
  transition: all .3s ease;
}

/* ---------------------------------
詳細ページ・ポスト
----------------------------------- */
#contents {
  position: relative;
}
.single #contents h1, 
.page #contents h1 {
  font-size: 24px;
  line-height: 1.8em;
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 4px solid #F0ECEC ;
}
.single #contents h1 a, 
.page #contents h1 a{
  color: #1a1a1a;
  font-weight: bold;
}

.single #contents h2, 
.page #contents h2 {
  font-size: 26px;
  line-height: 1.5;
  padding-bottom: .25em;
  margin: 2em 0 1em;
  border-bottom: 2px dotted #222 ;
}

#contents .entry-meta {
  margin-bottom: 30px;
  display: inline-block;
  color: #666;
  font-size: 12px;
}
/* .single #contents p, 
.page #contents p {
  margin-bottom: 1em;
} */
#contents .wp-caption {
  max-width: 100%;
  height: auto;
  text-align: center;
  background-color: #f3f3f3;
  margin: 40px 0;
}
#contents img {
  max-width: 100%;
  height: auto;
}
#contents .wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}
#contents .wp-caption p.wp-caption-text {
  font-size: 12px;
  color: #666;
  padding: 5px 0 10px;
  margin: 0;
}
#contents .alignleft,
#contents .alignright,
#contents .aligncenter {
  vertical-align: top;
  padding: 0;
}
.single #contents .alignleft,
.single #contents .alignright,
.single #contents .aligncenter {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* 投稿内ギャラリー */
#contents .metaslider {
  padding-top: 90px;
  position: relative;
}
#contents .metaslider:after{
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50px;
  background: #F0ECEC;
}
#contents .metaslider a:hover{
  transition: all 0.3s ease;
  opacity: .75;
}

/* YARPP関連情報 */
.yarpp-related > h3 {
  margin-bottom: 45px !important;
  color: #1B478D;
  font-size: 28px !important;
}

/* エントリーナビ */
.nav-single {
  margin: 40px 0;
  padding: 30px 0 60px;
}
.nav-single .prev,
.nav-single .next {
  padding: 0 30px;
  width: 340px;
  max-height: 3em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.nav-single .prev {
  float: left;
}
.nav-single .next {
  float: right;
  text-align: right;
}
.nav-single .prev a,
.nav-single .next a {
  display: block;
  text-decoration: none;
}
.nav-single .prev a:before, 
.nav-single .next a:after {
  position: absolute;
  top: 0;
  left: 0;
  font-family: FontAwesome;
  content: "\f053";
  font-weight: bold;
  display: inline-block;
}
.nav-single .next a:after {
  right: 0;
  content: "\f054";
}

.nav-single .prev a:hover,
.nav-single .next a:hover {
  text-decoration: underline;
}



/* ---------------------------------
アーカイブ・カテゴリー
----------------------------------- */

#contents .archive-entry {
  padding: 10px 20px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0ecec;
  overflow: hidden;
}
#contents .archive-entry h2, 
#contents .archive-entry h3 {
  margin-bottom: 10px;
}
#contents .archive-entry h2 a, 
#contents .archive-entry h3 a {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}
#contents .archive-entry .entry-meta{
  padding: 0;
  margin-bottom: 5px;
}
#contents .archive-entry p {
  word-wrap: break-word;
  overflow: auto;
  position: relative;
}
#contents .archive-entry img {
  float: left;
  display: block;
  margin: 0 20px 20px 0;
  padding: 1px;
  min-width: 125px;
  min-height: 125px;
  border: 1px solid #f0ecec;
  position: relative;
}
#contents .archive-entry img:hover{
  transition: all 0.3s ease;
  opacity: 0.75;
  z-index: 200;
}


/* wp-pagenavi */
.wp-pagenavi {
  clear: both;
  display: block;
  text-align: center;
  margin: 20px 0 10px;
}
.wp-pagenavi .current,
.wp-pagenavi a {
  background: #0075c1;
  font-size: 12px;
  width: 35px;
  line-height: 3;
  text-align: center;
  display: inline-block;
  margin: 0 5px 10px;
  color: #FFF;
  transition: all 0.3s ease-in-out;
}
.wp-pagenavi a {
  background: #E6E6E6;
  color: #333;
  text-decoration: none;
}
.wp-pagenavi a:hover {
  background: #0075c1;
  color: #fff;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  background: none;
  border: none;
  margin: 0;
}

/* ---------------------------------
TOP PAGE
----------------------------------- */
#contents .fentry h3 {
  margin-bottom: 10px;
}
#contents .fentry h3 a {
  color: #0075c1;
  font-size: 23px;
  line-height: 1.5;
}
#contents .fentry .entry-meta{
  padding: 0;
}
#contents .fentry img {
  position: relative;
}

/* new icon */

.newico{
  position: absolute;
  top: 12px;
  left: 22px;
  background: url(../images/icon-new.png) no-repeat 0 0;
  width: 70px;
  height: 70px;
  display: block;
  z-index: 100;
}
.newarc{
  background: url(../images/icon-new-arc.png) no-repeat 0 0;
  width: 50px;
  height: 50px;
}
#contents .more-link {
  display: block;
  text-decoration: none;
  font-size: 12px;
  color: #0075c1;
  height: 28px;
  width: 110px;
  border: 2px solid #0075c1;
  margin-top: 1em;
  line-height: 28px;
  text-align: center;
}
#contents .more-link:hover {
  background: #0075c1;
  color: #FFF;
  transition: all 0.2s ease-in-out;
}
#contents .alink {
  display: inline-block;
  background: #419ca6;
  width: 100%;
  height: 60px;
  color: #fff;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
}
#contents .alink:hover {
  transition: all 0.3s ease;
  opacity: 0.75;
}


/* amazon商品広告 */
.adimage-area {
  width: 100%;
  background: #e2dede;
}
.adimage-area h3{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #555;
  padding: 10px 0 30px;
}
.adimage {
  width: 980px;
  margin: 0 auto;
  padding: 30px 0 80px; 
  background: #e2dede;
}
.adimage a:hover{
  opacity: .75;
  transition: all 0.3s ease;
}


/* ---------------------------------
PAGE
----------------------------------- */
.page-fullwidth__inner {
  width: 980px;
  margin: 0 auto;
}

/* about  */
.page #contents h2{
  background: #f2f2f2;
  border-bottom: 0;
  border-left: 8px solid #0075c1;
  padding: 0 0 0 1em;
  height: 48px;
  color: #0075c1 ;
  line-height: 48px;
  font-size: 18px;
  margin-bottom: 20px;
}
.page #contents h3{
  font-size: 16px;
  font-weight: bold;
  color: #1b3e7d;
  margin: 30px 0 10px;
}
.page #contents strong{
  display: block;
  padding-bottom: .5em;
}

/* service  */
#contents .nlist li {
  list-style: disc;
  margin-left: 2em;
}


#contents .sv-list {
  padding-top: 20px;
}
#contents .sv-list ul {
  margin-bottom: 30px;
}
#contents .sv-list li {
  background: #f2f2f2;
  width: 205px;
  min-height: 360px;
  margin: 0 20px 0 0;
  padding: 10px;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  word-wrap: break-word;
  transition: all 0.3s ease;
}
#contents .sv-list li:last-child {
  margin-right: 0;
}
#contents .sv-list li img {
  max-width: 100%;
  height: 185px;
  border-radius: 4px;
  margin-bottom: 10px;
}
#contents .sv-list li a {
  text-align: left;
  text-decoration: none;
}
#contents .sv-list li p {
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
}
#contents .sv-list li a:hover img {
  transition: all 0.3s ease-in-out;
  opacity: .75;
}
#contents .sv-list li:hover a{
  text-decoration: underline;
}
#contents .cards li {
  min-height: 320px;
}

/* ---------------------------------
CONTACTUS
----------------------------------- */
.cotactus-block {
  background: linear-gradient(to right,#1b478d,#116e9f);
}
.cotactus-block > div {
  position: relative;
  padding: 60px 300px 60px 0;
  box-sizing: border-box;
}
.cotactus-block__txt {
  font-size: 18px;
  color: #fff;
}
.cotactus-block__txt > span{
  font-size: 36px;
}
.cotactus-block__btn {
  position: absolute;
  bottom: 60px;
  right: 0;
}
.cotactus-block__btn > a {
  display: inline-block;
  padding: 10px 35px;
  background: #EBFF00;
  border-radius: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #1B478D;
  text-decoration: none;
  box-shadow: border-box;
}

/* ---------------------------------
FOOTER
----------------------------------- */
.footer {
  width: 100%;
  background: #333D4D;
  overflow: hidden;
}
.footer > div {
  max-width: 980px;
  /*max-width: 1150px;*/
  min-width: 980px;
  width: 95%;
  margin: 0 auto;
}
.footer-block {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin: 70px 0 75px;
  color: #fff;
  font-size: 12px;
}
.footer-block__logo {
  margin: -10px 80px 0 0;
}
.footer-block__logo > a {
  display: block;
}
.footer-block__logo > a:hover {
  opacity: .7;
}
.footer-block > .menu:not(:first-of-type) {
  margin-left: 70px;
}
.footer-block > .menu a {
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}
.footer-block > .menu a:hover {
  text-decoration: underline;
}
.footer-block > .menu > li > a {
  font-weight: bold;
}
.footer-block > .menu > li > ul {
  margin-left: 1em;
}
.footer-block__copyright {
  display: inline-block;
  position: absolute;
  bottom: -60px;
  right: 0;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
}

}