@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* -----Basic style----- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  line-height: 2;
  max-width: 1600px;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
}
body, th, td, h1, h2, h3, h4, h5, h6, pre, input, textarea, option, div, p, dt, dd, li, address {
  font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  font-style: normal;
  color: #333333;
}
a {
  color: #333333;
  text-decoration: none;
}
.tx-s {
  font-size: 1.2rem;
}
.tx-m {
  font-size: 1.8rem;
}
.fw-b {
  font-weight: bold;
}
.color1 {
  color: #005eac;
}
.bg-color1 {
  background: #005eac;
}
.color2 {
	color: red;
}
.bg-color2 {}
.wid {
  width: 100%;
}
.pad10 {
  padding: 10px;
}
.pad20 {
  padding: 20px;
}
.margin-b20 {
  margin-bottom: 20px;
}
.margin-b40 {
  margin-bottom: 40px;
}
.margin-b80 {
  margin-bottom: 80px;
}
.display-none {
  display: none;
}
.imgtxt {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.clr, .clear {
  clear: both;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px; /*¥*/ /*/
	height: auto;
	overflow: hidden;
	/**/
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 {
  display: flex;
  justify-content: flex-start;
}
.flex4 {
  display: flex;
  justify-content: center;
	flex-wrap: wrap;
}
hr {
  width: 80%;
  height: 1px;
  background-color: #dcc48d;
  border: none;
  margin-bottom: 40px;
}
.lineheight24 {
  line-height: 2.4;
}
/* -----Basic styleここまで----- */
/* -----Common style----- */
.wrapper {
  width: 100%;
  height: 100vh;
}
header {
  /*height: 80px;*/
  height: 136px;
  position: relative;
}
header .inner {
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
}
header h1 {
  height: 80px;
  display: flex;
  align-items: center;
}
header h1 img {
  width: 90%;
  height: auto;
  vertical-align: bottom;
}
header h2 {
  height: 80px;
  display: flex;
  align-items: center;
}
header h2 img {
  width: 90%;
  height: auto;
}
/*ナビゲーション*/
nav {
  display: none;
  height: 100vh;
  width: 300px;
  position: absolute;
  top: 0;
  right: -300px;
  z-index: 50;
  background-color: rgba(0, 0, 0, .8);
  transition: transform .5s;
}
#navBtn:checked ~ nav {
  display: block;
  transform: translateX(-300px);
}
#navBtn {
  display: none;
}
.open {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  z-index: 100;
  width: 40px;
  height: 40px;
  /*border: 1px solid #CCC;
  border-radius: 2px;*/
}
/*humburger button*/
.open::before, .open::after {
  content: "";
}
.open span, .open::before, .open::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 30%;
  width: 40%;
  border-bottom: 2px solid #333;
  transition: transform .5s;
}
.open::before {
  transform: translateY(-8px);
}
.open::after {
  transform: translateY(8px);
}
/*close button*/
#navBtn:checked + .open {
  background: #555;
}
#navBtn:checked + .open span {
  transform: scaleX(0);
}
#navBtn:checked + .open::before {
  transform: rotate(45deg);
}
#navBtn:checked + .open::after {
  transform: rotate(-45deg);
}
#navBtn:checked + .open span, #navBtn:checked + .open::before, #navBtn:checked + .open::after {
  border-bottom-color: #EEE;
}
nav ul {
  list-style: none;
  padding-bottom: 1rem;
  text-align: center;
}
nav ul li {
  /* display: inline-block; */
  /*margin: 0 10px;
  padding: 10px 0;*/
  margin: 3px 0 0;
  border-left: 1px solid #ccc;
}
nav ul li:first-child {
  border-left: none; /* 最初の項目だけ左線を消す */
}
nav ul li a {
  display: block;
  text-decoration: none;
  /*font-weight: bold;*/
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 32px;
  transition-duration: .5s;
}
nav ul li a:hover {
  color: #ffffff;
  background: #005eac;
  opacity: .8;
}
@media all and (min-width: 1025px) {
  nav {
    display: block;
    height: auto;
    width: 100%;
    position: static;
    background-color: transparent;
  }
  nav ul li {
    display: inline-block;
  }
  nav ul li a {
    color: #333;
    font-size: 1.4rem;
  }
  #navBtn, .open {
    display: none;
  }
}
/*ナビゲーションここまで*/
#main {
  /*margin-bottom: 40px;*/
}
#main h2 {
  /*font-size: 3rem;
	font-family: 'Noto Serif JP', "Yu Mincho", "Source Han Serif", "Hiragino Mincho Pro", serif;
	font-family: 'Noto Serif JP', "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
}
#main h3 {
  /*font-size: 2.2rem;
	font-weight: bold;
	font-family: 'Noto Serif JP', "Yu Mincho", "Source Han Serif", "Hiragino Mincho Pro", serif;
	font-family: 'Noto Serif JP', "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
}
.container {
  /*width: 980px;
	margin: 0 auto;*/
}
.main-contents {
  width: 100%;
}
.inner1040 {
  width: 1040px;
  margin: auto;
}
/* button */
.button-1 {
  /*width: 98%;*/
  width: 100%;
  height: 50px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /*box-shadow: 8px 8px 0px 0px #dcc48d;*/
  background: #fff;
  border: 1px solid #B89B81;
}
.button-1 a {
  display: block;
  font-size: 1.6rem;
  color: #B89B81;
  text-decoration: none;
  line-height: 50px;
  transition: all .5s ease;
  z-index: 2;
  position: relative;
}
.eff-1 {
  width: 100%;
  height: 50px;
  left: -320px;
  top: -50px;
  background: #B89B81;
  position: absolute;
  transition: all .2s ease;
  z-index: 1
}
.button-1:hover .eff-1 {
  left: 0;
  top: 0;
}
.button-1:hover a {
  color: #fff;
}
.button-2 {
  width: 98%;
  height: 50px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0px 0px #dcc48d;
  background: #B89B81;
  border: 1px solid #fff;
}
.button-2 a {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  line-height: 50px;
  transition: all .5s ease;
  z-index: 2;
  position: relative;
}
.eff-2 {
  width: 100%;
  height: 50px;
  left: -320px;
  top: -50px;
  background: #fff;
  position: absolute;
  transition: all .2s ease;
  z-index: 1
}
.button-2:hover .eff-2 {
  left: 0;
  top: 0;
}
.button-2:hover a {
  color: #B89B81;
}
.btn {}
.btn p {
  text-align: center !important;
}
.btn p a {
  display: block;
  border: 1px solid #333;
  padding: 8px;
  font-weight: normal;
  transition-property: all;
  transition-duration: 0.5s;
}
.btn p a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #f0ad00;
}
footer {
  background: #005eac;
  padding: 80px;
}
footer .heading {
  text-align: center;
  margin-bottom: 40px;
}
footer .heading h2 {
  display: inline-block;
}
footer .heading h2 img {
  width: 100%;
  height: auto;
}
footer .f-box {
  display: flex;
  justify-content: space-around;
}
footer .f-box .box-l {
  display: flex;
  justify-content: space-around;
  width: 50%;
  padding: 40px;
}
footer .f-box .box-l ul {
  border-left: 1px solid #fff;
  padding-left: 20px;
}
footer .f-box .box-l ul li {
  padding-bottom: 10px;
}
footer .f-box .box-l ul li a {
  color: #fff;
  transition-property: opacity;
  transition-duration: 0.5s;
}
footer .f-box .box-l ul li a:hover {
  opacity: 0.5;
}
footer .f-box .box-r {
  width: 50%;
  padding: 40px;
}
footer .f-box .box-r h3, footer .f-box .box-r p, footer .f-box .box-r p a {
  color: #fff;
}
footer .f-box .box-r h3 {
  font-size: 1.8rem;
  font-weight: bold;
}
footer .f-box .box-r p a {
  font-size: 3.2rem;
  font-weight: bold;
  transition-property: opacity;
  transition-duration: 0.5s;
  padding: 0;
  vertical-align: bottom;
}
footer .f-box .box-r p a:hover {
  opacity: 0.5;
}
footer p.copyright {
  color: #fff;
  padding: 10px 0;
  text-align: center;
}
/* popup */
#popup {
  position: fixed;
  bottom: 10px;
  right: 20px;
}
#popup a {
  display: block;
  z-index: 999;
}
#popup a:hover {
  text-decoration: none;
  opacity: 0.7;
}
/* 閉じるボタン */
.close-button {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #333;
  padding: 0px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: -20px;
  left: -16px;
  /*width: 10px;
    height: 10px;
    background: #fff;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;*/
}
.close-button:hover {
  background: #fff;
}
/* pagetop */
#pageTop {
  position: fixed;
  bottom: 20px;
  left: 20px;
}
#pageTop a {
  display: block;
  z-index: 999;
  padding: 6px;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  background-color: #005eac;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
/* web-contact */
#web-contact {
  position: fixed;
  /*bottom: 60px;
	left: 20px;*/
  top: 40px;
  right: -10px;
}
#web-contact a {
  display: block;
  z-index: 999;
  padding: 6px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}
#web-contact a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#web-contact a img {
  width: 90%;
  height: auto;
}
/* web-data */
#web-data {
  position: fixed;
  /*bottom: 200px;
	left: 20px;*/
  top: 250px;
  right: -14px;
}
#web-data a {
  display: block;
  z-index: 999;
  padding: 6px;
  text-decoration: none;
  transition: 0.3s;
}
#web-data a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#web-data a img {
  width: 90%;
  height: auto;
}
/* web-line */
#web-line {
  position: fixed;
  /*bottom: 200px;
	left: 20px;*/
  top: 460px;
  right: -14px;
}
#web-line a {
  display: block;
  z-index: 999;
  padding: 6px;
  text-decoration: none;
  transition: 0.3s;
}
#web-line a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#web-line a img {
  width: 90%;
  height: auto;
}
/* pankuzu */
.pankuzu {
  margin-bottom: 40px;
  background-color: #efefef;
}
.cd-breadcrumb {
  width: 100%;
  max-width: 980px;
  padding: 0;
  margin: 0 auto;
}
.cd-breadcrumb::after {
  content: "";
  display: table;
  clear: both;
}
.cd-breadcrumb li {
  display: inline-block;
  float: left;
  margin: 0.5rem 0;
}
.cd-breadcrumb li::after {
  display: inline-block;
  content: '\00bb';
  margin: 0 .6rem;
  color: #005eac;
}
.cd-breadcrumb li:last-of-type::after {
  display: none;
}
.cd-breadcrumb li > * {
  display: inline-block;
  font-size: 1.4rem;
  color: #333333;
}
.cd-breadcrumb li.current > * {
  color: #333333;
}
.cd-breadcrumb a {
  transition: all .3s ease 0s;
}
.cd-breadcrumb a:hover {
  color: #005eac;
}
p.contact-tel {
  margin-bottom: 5px !important;
}
a.contact-tel {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0e1937;
  text-align: center;
  padding: 10px;
  border: 1px solid #0e1937;
}
/* web-interview */
#web-interview {
  position: fixed;
  bottom: 60px;
  left: 20px;
}
#web-interview a {
  display: block;
  z-index: 999;
  padding: 6px;
  text-decoration: none;
  text-align: center;
}
#web-interview a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.spview {
  display: none;
}
.pcview {
  display: block;
}
.u-line_01 {
  border-bottom: 1px solid #608ec9;
}
.u-line_02 {
  border-bottom: 1px solid #d08673;
}
.u-line_03 {
  border-bottom: 1px solid #d7973e;
}
.u-line_04 {
  border-bottom: 1px solid #85a236;
}
iframe {
  width: 100%;
  height: 40vh;
}
/* -----Common styleここまで----- */
/* -----top----- */
#top .mainvis {
  position: relative;
  padding: 0px;
}
#top .mainvis img {
  width: 100%;
  height: auto;
}
#top .mainvis p {
  position: absolute;
  /*top: 178px;*/
  left: 48px;
  bottom: 48px;
}
#top .mainvis p img {
  width: 100%;
  height: auto;
}
#top .slide{
	overflow: hidden;
}
/*#top .mainvis{
	height: 80%;
	/*margin-top: 80px;*/
/*margin-bottom: 80px;
	margin-left: 80px;
	margin-right: 80px;
}*/
/*#top .vegas-wrapper{
	display: flex;
    align-items: flex-end;
    width: 86%;
    margin: 0 40px;
}*/
/*#top .mainvis .inner h2{
	margin-bottom: 40px;
}
#top .mainvis .inner p{
	font-size: 2.4rem;
    margin-bottom: 40px;
}*/
#top .main-contents .top-contents-box {
  /*margin-bottom: 80px;*/
}
/*#top .main-contents .top-contents-box:last-child{
	margin-bottom: 0;
}*/
#top .slick-dots {
  display: none !important;
}
#arrow {
  display: none !important;
}
#top .box_n00 {
  padding: 40px 0;
  margin-bottom: 40px;
  background: #002060;
}
#top .box_n00 .heading {
  text-align: center;
  margin-bottom: 40px;
}
#top .box_n00 h2 {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 0 40px;
}
#top .box_n00 .tx-box p {
  text-align: center;
  font-weight: bold;
  color: #fff;
}
#top .box_n01 {
  margin-bottom: 80px;
}
#top .box_n01 .heading {
  text-align: center;
  margin-bottom: 40px;
}
#top .box_n01 h2.title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  /*background:linear-gradient(transparent 50%, #f5821f 50%);*/
}
#top .box_n01 .heading p {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #005eac;
  padding: 0 1em; /* テキストと線の間に余白 */
}
#top .box_n01 .heading p::before, #top .box_n01 .heading p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background: #005eac; /* 線の色 */
}
#top .box_n01 .heading p::before {
  left: -70px; /* テキスト左から線の位置を調整 */
}
#top .box_n01 .heading p::after {
  right: -70px; /* テキスト右から線の位置を調整 */
}
#top .box_n01 .box-01, #top .box_n01 .box-02 {
  width: 48%;
}
#top .box_n01 .box-01 img {
  width: 100%;
  height: auto;
}
#top .box_n01 .feature-box {
  width: 48%;
  position: relative;
  margin-bottom: 40px;
}
#top .box_n01 .feature-box .feature-box_img {
  width: 30%;
  padding: 20px;
}
#top .box_n01 .feature-box .feature-box_img img {
  width: 100%;
  height: auto;
}
#top .box_n01 .feature-box .feature-box_tx {
  width: 70%;
}
#top .box_n01 .feature-box .feature-box_tx h3.tx01 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #608ec9;
  padding-bottom: 8px;
}
#top .box_n01 .feature-box .feature-box_tx h3.tx02 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d08673;
  padding-bottom: 8px;
}
#top .box_n01 .feature-box .feature-box_tx h3.tx03 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d7973e;
  padding-bottom: 8px;
}
#top .box_n01 .feature-box .feature-box_tx h3.tx04 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #85a236;
  padding-bottom: 8px;
}
#top .box_n02 {
  margin-bottom: 80px;
  /*background: #002060;
	text-align: center;
	margin-bottom: 40px;
	padding: 80px;*/
}
#top .box_n02 .heading {
  text-align: center;
  margin-bottom: 40px;
}
#top .box_n02 h2 {
  text-align: center;
  font-weight: 900;
}
#top .box_n02 p {}
#top .box_n02 img {
  width: 100%;
  height: auto;
}
#top .box_n02 .check-box {
  width: 30%;
  background: #e4eaf5;
  padding: 20px;
  margin-bottom: 20px;
}
#top .box_n02 .icon {
  width: 20%;
  text-align: center;
}
#top .box_n02 .icon img {
  width: 50%;
  height: auto;
  vertical-align: bottom;
}
#top .box_n02 .tx {
  width: 80%;
}
#top .box_n03 {
  background: #e4eaf5;
  text-align: center;
  padding: 80px;
}
#top .box_n03 .heading {
  text-align: center;
  margin-bottom: 40px;
}
#top .box_n03 h2 {
  text-align: center;
  font-weight: bold;
}
#top .box_n03 h3 {
  /*text-align: left;*/
  text-align: center;
  margin-bottom: 20px;
}
#top .box_n03 p {
  text-align: left;
}
#top .box_n03 .feature-box {
  width: 30%;
  background: #fff;
  position: relative;
  padding: 140px 40px 80px;
  margin-bottom: 20px;
}
#top .box_n03 .feature-box img {
  width: 20%;
  position: absolute;
  top: 0;
  left: 0;
}
#top .box_n03 .feature-box img.feature-icon {
  width: 24%;
  position: absolute;
  top: 8%;
  left: 36%;
}
#top .box_n04 {
  background: #eeeeee;
  text-align: center;
  padding: 80px;
}
#top .box_n04 .heading {
  text-align: center;
  margin-bottom: 40px;
}
#top .box_n04 h2.title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  /*background:linear-gradient(transparent 50%, #f5821f 50%);*/
}
#top .box_n04 .heading p {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #005eac;
  padding: 0 1em; /* テキストと線の間に余白 */
}
#top .box_n04 .heading p::before, #top .box_n04 .heading p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background: #005eac; /* 線の色 */
}
#top .box_n04 .heading p::before {
  left: -70px; /* テキスト左から線の位置を調整 */
}
#top .box_n04 .heading p::after {
  right: -70px; /* テキスト右から線の位置を調整 */
}
#top .box_n04 h2 {
  text-align: center;
  font-weight: bold;
}
#top .box_n04 h3 {
  text-align: center;
  font-size: 1.6rem;
  padding: 0 16px;
}
#top .box_n04 p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
#top .box_n04 .can-box {
  width: 24%;
  background: #fff;
  position: relative;
  border: 1px solid #ccc;
  padding: 0px 0px 20px 0px;
  margin-bottom: 16px;
}
#top .box_n04 .can-box img.icon {
  width: 24%;
  position: absolute;
  top: -30px;
  left: 111px;
}
#top .box_n04 .can-box p.img-box img {
  width: 100%;
  height: auto;
}
#top .box_n04 .can-box a {
  display: block;
  font-size: 1.4rem;
  padding-bottom: 4px;
  transition: all 0.3s ease 0s;
}
#top .box_n04 .can-box a:hover {
  opacity: 0.5;
}
/* ▼ チェックボックスは非表示 */
.more-check {
  display: none;
}
/* ▼ 非表示エリア（ここを書き換え） */
.more-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.1s ease; /* ← 閉じる時の速さ（短く） */
  width: 100%;
}
/* ▼ チェックが入ったら展開（ふわっと開く） */
.more-check:checked + .more-content {
  max-height: 2000px; /* コンテンツがすべて入る大きめの値 */
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease; /* ← 開くときの速さ（長く） */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* ▼ ボタン */
.more-btn {
  display: inline-block;
  margin: 30px auto 0;
  padding: 10px 30px;
  background: #005eac;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  transition: 0.8s;
  width: 100%;
}
/* ▼ テキストは擬似要素で制御 */
.more-btn::after {
  content: "もっと見る ▷";
}
.more-btn:hover {
  background: #005fa3;
}
/* ▼ チェックが入ったらボタンのテキストを変更 */
.more-check:checked + .more-content + .more-btn::after {
  content: " 閉じる";
}
.more-content::before {
  content: "";
  display: block;
  width: 24%;
  order: 1;
}
.more-content::after {
  content: "";
  display: block;
  width: 24%;
}
#top .news {
  text-align: center;
  margin-bottom: 80px;
  padding: 80px 80px 0 80px;
}
#top .news .heading {
  width: 40%;
  text-align: center;
  margin-bottom: 40px;
}
#top .news h2.title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  /*background:linear-gradient(transparent 50%, #f5821f 50%);*/
}
#top .news .heading p {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #005eac;
  padding: 0 1em; /* テキストと線の間に余白 */
}
#top .news .heading p::before, #top .news .heading p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background: #005eac; /* 線の色 */
}
#top .news .heading p::before {
  left: -70px; /* テキスト左から線の位置を調整 */
}
#top .news .heading p::after {
  right: -70px; /* テキスト右から線の位置を調整 */
}
#top .news .news-contents {
  width: 60%;
  margin: 0 auto 20px;
}
#top .news .news-contents .news-list {
  padding: 20px;
}
#top .news .news-contents .news-list ul li a {
  display: block;
  border-bottom: 1px solid #005eac;
  padding: 16px 0;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .news .news-contents .news-list ul li a:hover {
  color: #005eac;
}
#top .news p.news-link a {
  width: 100%;
  margin: auto;
  display: block;
  color: #333;
  border: 1px solid #333;
  padding: 10px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .news p.news-link a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #005eac;
}
#top .box_n05 {
  background: #005eac;
  text-align: center;
  padding: 80px;
}
#top .box_n05 .heading {
  text-align: center;
  margin-bottom: 40px;
}
#top .box_n05 h2.title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  color: #fff;
  /*background:linear-gradient(transparent 50%, #f5821f 50%);*/
}
#top .box_n05 .heading p {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  padding: 0 1em; /* テキストと線の間に余白 */
}
#top .box_n05 .heading p::before, #top .box_n05 .heading p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background: #fff; /* 線の色 */
}
#top .box_n05 .heading p::before {
  left: -70px; /* テキスト左から線の位置を調整 */
}
#top .box_n05 .heading p::after {
  right: -70px; /* テキスト右から線の位置を調整 */
}
#top .box_n05 h2 {
  text-align: center;
  font-weight: bold;
}
#top .box_n05 h3 {
  font-size: 1.6rem;
  font-weight: bold;
}
#top .box_n05 p {
  font-size: 1.4rem;
}
#top .box_n05 .contact-box {
  background: #fff;
  text-align: left;
}
#top .box_n05 .contact-box .contact-box-left, #top .box_n05 .contact-box .contact-box-right {
  width: 50%;
}
#top .box_n05 .contact-box .contact-box-left {
  padding: 24px 0 24px 56px;
}
#top .box_n05 .contact-box .contact-box-right {
  padding: 24px 56px 24px 0;
}
#top .box_n05 .contact-box .contact-box-left .tel p {
  font-size: 3.6rem;
  color: #005eac;
  font-weight: bold;
  line-height: normal;
  padding: 0 0 0 8px;
}
#top .box_n05 .contact-box .contact-box-left .tel p a {
  color: #005eac;
}
#top .box_n05 .contact-box .contact-box-left p.fax {
  font-size: 2.4rem;
  color: #005eac;
  line-height: normal;
  font-weight: bold;
}
#top .box_n05 .contact-box .contact-box-right .icon img {
  vertical-align: middle;
}
#top .box_n05 .contact-box .contact-box-right .form p {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 0 0 8px;
}
#top .box_n05 .contact-box .contact-box-right p.line {
  margin-bottom: 16px;
}
#top .box_n05 .contact-box .contact-box-right p.line a {
  display: block;
}
#top .box_n05 .contact-box .contact-box-right .flex3 {
  margin-bottom: 16px;
}
#top .box_n05 p.news-link a {
  width: 100%;
  margin: auto;
  display: block;
  text-align: center;
  color: #333;
  border: 1px solid #333;
  padding: 10px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .box_n05 p.news-link a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #005eac;
}
#top .box_n08 {
  background: #eee;
  padding: 60px 0 80px 0;
}
#top .box_n08 .banner-data {
  margin-bottom: 40px;
}
#top .box_n08 .banner-data img {
  width: 100%;
  height: auto;
}
#top .box_n08 .banner-data img a {
  display: block;
}
#top .box_n08 .banner-payment img {
  width: 100%;
  height: auto;
}
#top .box_n09 {
  padding: 80px;
}
#top .box_n09 .heading {
  text-align: center;
  margin-bottom: 40px;
}
#top .box_n09 h2.title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}
#top .box_n09 .heading p {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #005eac;
  padding: 0 1em; /* テキストと線の間に余白 */
}
#top .box_n09 .heading p::before, #top .box_n09 .heading p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background: #005eac; /* 線の色 */
}
#top .box_n09 .heading p::before {
  left: -70px; /* テキスト左から線の位置を調整 */
}
#top .box_n09 .heading p::after {
  right: -70px; /* テキスト右から線の位置を調整 */
}
#top .box_n09 h2 {
  text-align: center;
  font-weight: bold;
}
#top .box_n09 p {}
#top .box_n09 p a {
  display: block;
  width: 980px;
  margin: auto;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .box_n09 p a:hover {
  border: 1px solid #fff;
  color: #333;
  background: #fff;
}
#top .box_n09 p.news-link a {
  width: 100%;
  margin: auto;
  display: block;
  text-align: center;
  color: #333;
  border: 1px solid #333;
  padding: 10px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .box_n09 p.news-link a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #005eac;
}
#top .box_n10 {
  background: #f5821f;
  padding: 80px;
}
#top .box_n10 .heading {
  text-align: center;
  margin-bottom: 40px;
}
#top .box_n10 h2 {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  color: #fff;
}
#top .box_n10 p {
  color: #fff;
}
#top .banner{
	text-align: center;
}
#top .banner a{
	display: block;
}
#top .banner a img{
	width: 80%;
	height: auto;
}
/* -----topここまで----- */
/* -----subpage Common style----- */
.second .container {
  width: 1040px;
  margin: 0 auto;
}
.second .mainvis-sub_01 {
  background: url("../img/second/subvis_01.jpg") no-repeat center center;
  background-size: cover;
  height: 24vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second .mainvis-sub_02 {
  background: url("../img/second/subvis_02_30191585_m.jpg") no-repeat center center;
  background-size: cover;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second .mainvis-sub_03 {
  background: url("../img/second/subvis_03.jpg") no-repeat center center;
  background-size: cover;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second .mainvis-sub_04 {
  background: url("../img/second/subvis_04.jpg") no-repeat center center;
  background-size: cover;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second .mainvis-sub_05 {
  background: url("../img/second/subvis_05.jpg") no-repeat center center;
  background-size: cover;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second .mainvis-sub_06 {
  background: url("../img/second/subvis_06.jpg") no-repeat center center;
  background-size: cover;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second .mainvis-sub_07 {
  background: url("../img/second/subvis_07.jpg") no-repeat center center;
  background-size: cover;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second .main-title {}
.second .main-title p {
  color: #333;
}
.second .main-title h1 {
  font-size: 2.8rem;
  font-weight: bold;
  /*color: #fff;*/
  text-align: center;
  font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 8px 40px;
  background: rgba(255, 255, 255, .7);
}
.second .main-title h1 span {
  display: block;
  font-size: 1.6rem;
  text-align: center;
}
.second h2.title img {
  vertical-align: bottom;
  margin-right: 16px;
  width: 1%;
  height: auto;
}
.second .titlebox {
  display: flex;
  background: #5e7495;
  padding: 5px 10px;
  margin-bottom: 40px;
}
.second .titlebox h2 {
  color: #fff;
  font-size: 2.4rem !important;
}
.second .titlebox img {
  width: 4%;
  margin-right: 10px;
}
.second .main-contents .top-contents-box {
  margin-bottom: 40px;
}
.second .top-contents-box .box-l, .second .top-contents-box .box-r {
  width: 50%;
}
.second .top-contents-box .box-l img, .second .top-contents-box .box-r img {
  width: 100%;
  height: auto;
}
.second .top-contents-box .box-l p {
  padding: 0 20px;
}
.second .top-contents-box .point-box {
  border: 4px solid #ccc;
  padding: 20px;
  margin-bottom: 40px;
  position: relative;
}
.second .top-contents-box .point-box img {
  position: absolute;
  top: 4px;
  left: 4px;
}
.second .top-contents-box .point-box h2.title {
  font-size: 2rem !important;
  font-weight: bold;
  border-bottom: 1px dotted #333;
  margin-bottom: 8px;
}
.second .top-contents-box .mmpg-box {
  border: 4px solid #ccc;
  padding: 20px;
  margin-bottom: 40px;
}
.second .top-contents-box .mmpg-box h2.title {
  font-size: 2rem !important;
  font-weight: bold;
  margin-bottom: 8px;
}
.second .top-contents-box .mmpg-box p {}
.second .top-contents-box .mmpg-box ul {
  display: flex;
  justify-content: space-around;
}
/*.second .top-contents-box .mmpg-box ul li {
  width: 16%;
}*/
.second .top-contents-box .mmpg-box ul li img {
  width: 100%;
  height: auto;
}
.second .top-contents-box .mmpg-box h3 {
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 8px;
}
/* 名刺料金表 */
/*.table-wrap {
  margin: 40px auto;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  text-align: center;
  border: 1px solid #ccc;
}
.price-table th, .price-table td {
  border: 1px solid #ccc;
  padding: 12px 8px;
  color: #333;
}
.price-table th {
  background-color: #f2f2f2;
}
.price-table th:first-child {
  width: 15%;
}
.price-table th:not(:first-child), .price-table td:not(:first-child) {
  width: 14%;
}
.price-table tr:nth-child(even) td {
  background-color: #fafafa;
}*/
.table-wrap {
  max-width: 1200px;
  margin: 16px auto 40px;
}
/* --- PC表示（通常の表） --- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  /*font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;*/
  text-align: center;
  border: 1px solid #bdbdbd;
}
.price-table th, .price-table td {
  border: 1px solid #bdbdbd;
  padding: 12px 8px;
  /*font-size: 0.95rem;
  color: #222;*/
}
.price-table th {
  background-color: #f5f5f5;
  font-weight: 600;
}
.price-table tr:nth-child(even) td {
  background-color: #fafafa;
}
/* --- スマホ表示（縦積み） --- */
@media (max-width: 600px) {
  .price-table thead {
    display: none; /* 見出しを非表示に */
  }
  .price-table, .price-table tbody, .price-table tr, .price-table td, .price-table th {
    display: block;
    width: 100%;
  }
  .price-table tr {
    margin-bottom: 1.5em;
    border: 1px solid #000;
    background-color: #fff;
  }
  .price-table td, .price-table th {
    text-align: left;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    position: relative;
  }
  .price-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #555;
    margin-bottom: 4px;
  }
  .price-table td:last-child {
    border-bottom: none;
  }
}
/* 名刺用紙オプション表 */
.table-wrap02 {
  margin: 24px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
  color: #111;
}
/* 各カラム（元 .half） */
.half {
  flex: 1 1 calc(50% - 10px);
  box-sizing: border-box;
}
/* テーブル共通 */
.half table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* 長い名称が折り返されるように */
  border: 1px solid #2b2b2b; /* 外枠（はっきりめのグレー/黒） */
}
/* セル */
.half td {
  border: 1px solid #bdbdbd; /* 内部罫線（薄め） */
  padding: 10px 12px;
  vertical-align: middle;
  line-height: 1.4;
}
/* 左カラム（紙種名） */
.half td:first-child {
  text-align: left;
  background-color: #f6f6f6; /* 薄いグレーで視認性アップ（モノクロ） */
  padding-left: 14px;
  word-break: break-word;
  width: 67%;
}
/* 右カラム（料金） */
.half td:last-child {
  text-align: center;
  background-color: #ffffff;
  font-weight: 700;
  width: 33%;
}
/* 偶数行の左セルにだけ少し濃いめのグレー（交互） */
.half tr:nth-child(even) td:first-child {
  background-color: #efefef;
}
.second p.other-link a {
  width: 100%;
  margin: auto;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #ed6c00;
  border: 4px solid #ed6c00;
  padding: 10px;
  margin-bottom: 40px;
  transition-property: all;
  transition-duration: 0.5s;
}
.second p.other-link a:hover {
  color: #ed6c00;
  border: 4px solid #ed6c00;
  background: #fff;
}
.second .box_n03 .inner {
  width: 100% !important;
  margin: auto;
}
/* -----subpage Common styleここまで----- */

/* -----service----- */
.service .box_n04{
	padding: 20px!important;
}
.second .service-box::before {
    content: "";
    display: block;
    width: 49%;
    order: 1;
}
/* -----serviceここまで----- */

/* -----first----- */
.first .first-box ul li{
	width: 30%;
	height: auto;
	border: 1px solid #ccc;
	text-align: center;
	font-size: 1.6rem;
}
.first .first-box ul li a{
	display: block;
	padding: 16px;
	transition-duration: .5s;
}
.first .first-box ul li a:hover{
  color: #ffffff;
  background: #ccc;
  opacity: .8;
}
.first .first-box ul li a img{
	width: 40%!important;
	height: auto;
}
.first .mmpg-box p img{
	width: 100%;
	height: auto;
}
/* -----firstここまで----- */

/* -----flow----- */
.first .flow-box ul li{
	width: 30%;
	height: auto;
	border: 1px solid #ccc;
	text-align: left;
	padding: 24px;
	font-size: 1.4rem;
}
.first .flow-box ul li img{
	padding-bottom: 20px;
}
.first .mmpg-box p img{
	width: 100%;
	height: auto;
}
.first ul.shipping li.icon{
	width: 30%;
    padding: 0 16px;
    text-align: center;
    color: #0068b3;
}
.first ul.shipping li.arrow_pc{
	width: 5%;
    display: flex;
    align-items: center;
}

/* -----flowここまで----- */

/* -----about----- */
.second .access_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.second .access_box p{
	width: 49%;
}
.second .access_box p img{
	width: 100%;
	height: auto;
}

/* -----aboutここまで----- */

/* -----businesscard----- */
.second p.otoku {
  text-align: center;
}
.second p.otoku img {
  width: 80%;
  height: auto;
}
/* -----businesscardここまで----- */
/* -----tshirt------ */
.tshirt .mmpg-box img {
  width: 100%;
  height: auto;
}
.tshirt .mmpg-box h3 {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 8px;
}
.tshirt .table-wrap {
  max-width: 1200px;
  margin: 0 auto 40px;
}
/* 通常のテーブル */
.tshirt .price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #bdbdbd;
  text-align: center;
  font-size: 0.95rem;
}
.tshirt .price-table th, .tshirt .price-table td {
  border: 1px solid #bdbdbd;
  padding: 10px 6px;
  color: #222;
}
.tshirt .price-table th {
  background: #f5f5f5;
  font-weight: 600;
}
.tshirt .price-table tr:nth-child(even) td {
  background: #fafafa;
}
/* ---- スマホ表示 ---- */
@media (max-width: 768px) {
  .tshirt .price-table, .tshirt .price-table thead, .tshirt .price-table tbody, .tshirt .price-table th, .tshirt .price-table td, .tshirt .price-table tr {
    display: block;
  }
  .tshirt .price-table thead {
    display: none; /* ヘッダー非表示 */
  }
  .tshirt .price-table tr {
    margin-bottom: 20px;
    border: 1px solid #000;
    padding: 10px;
  }
  .tshirt .price-table td {
    border: none;
    border-bottom: 1px solid #ddd;
    text-align: left;
    padding: 6px 0;
  }
  .tshirt .price-table td:before {
    content: attr(data-label);
    font-weight: bold;
    display: inline-block;
    width: 55%;
    color: #000;
  }
  .tshirt .price-table td:last-child {
    border-bottom: none;
  }
}
.tshirt .table-wrap02 {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.tshirt .price-table02 {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  border: 1px solid #bdbdbd;
}
.tshirt .price-table02 th, .tshirt .price-table02 td {
  border: 1px solid #bdbdbd;
  padding: 12px 8px;
  color: #333;
}
.tshirt .price-table02 th {
  background-color: #f2f2f2;
  font-weight: 600;
}
.tshirt .price-table02 tr:nth-child(even) td {
  background-color: #fafafa;
}
/* スマホ対応：セルを縦に並べて見やすく */
@media (max-width: 600px) {
  .tshirt .price-table02 thead {
    display: none;
  }
  .tshirt .price-table02, .tshirt .price-table02 tbody, .tshirt .price-table02 tr, .tshirt .price-table02 td {
    display: block;
    width: 100%;
  }
  .tshirt .price-table02 tr {
    margin-bottom: 1.5em;
    border: 1px solid #ccc;
  }
  .tshirt .price-table02 td {
    text-align: left;
    padding: 10px;
    position: relative;
  }
  .tshirt .price-table02 td::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    color: #000;
  }
}
.example p {
  padding-bottom: 16px;
}
/* -----tshirtここまで----- */

/* ----- sticker ----- */
.sticker .mmpg-box img {
  width: 100%;
  height: auto;
}
.sticker .mmpg-box h3 {
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 8px;
}
.sticker .table-wrap03 {
  max-width: 1200px;
  margin: 0 auto 16px;
}

.sticker .price-table03 {
  width: 100%;
  border-collapse: collapse;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  text-align: center;
  border: 1px solid #ccc;
}

.sticker .price-table03 th,
.sticker .price-table03 td {
  border: 1px solid #ccc;
  padding: 10px 8px;
  color: #333;
}

.sticker .price-table03 th {
  background-color: #f5f5f5;
  font-weight: 600;
}
.sticker .half td:first-child {
    text-align: center;
    background-color: #fff;
    padding-left: 14px;
    word-break: break-word;
    width: 67%;
}
/* 左列（幅）固定交互色指定 */
.sticker .price-table03 td[rowspan]:nth-of-type(1):nth-child(1) {
  text-align: center;
  font-weight: 600;
}

/* 幅10cm以内 → 白 */
.sticker .price-table03 td[rowspan="9"] { background-color: #ffffff!important; }

/* 幅15cm以内 → #f6f6f6 */
.sticker .price-table03 td[rowspan="8"] { background-color: #f6f6f6!important; }

/* 幅20cm以内 → 白 */
.sticker .price-table03 td[rowspan="7"] { background-color: #ffffff!important; }

/* 幅25cm以内 → #f6f6f6 */
.sticker .price-table03 td[rowspan="6"] { background-color: #f6f6f6!important; }

/* 幅30cm以内 → 白 */
.sticker .price-table03 td[rowspan="5"] { background-color: #ffffff!important; }

/* 幅35cm以内 → #f6f6f6 */
.sticker .price-table03 td[rowspan="4"] { background-color: #f6f6f6!important; }

/* 幅40cm以内 → 白 */
.sticker .price-table03 td[rowspan="3"] { background-color: #ffffff!important; }

/* 幅45cm以内 → #f6f6f6 */
.sticker .price-table03 td[rowspan="2"] { background-color: #f6f6f6!important; }

/* 幅50cm以内 → 白 */
.sticker .price-table03 td:not([rowspan]) { background-color: #ffffff!important; }

/* スマホ対応 */
@media (max-width: 600px) {
  .sticker .price-table03 thead {
    display: none;
  }
  .sticker .price-table03,
  .sticker .price-table03 tbody,
  .sticker .price-table03 tr,
  .sticker .price-table03 td {
    /*display: block;*/
    display: table;
    width: 100%;
  }
  .sticker .price-table03 tr {
    margin-bottom: 1.5em;
    border: 1px solid #ccc;
  }
  .sticker .price-table03 td {
    text-align: left;
    padding: 10px;
    position: relative;
    background-color: #fff !important;
  }
  .sticker .price-table03 td::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    color: #000;
  }
}
/* ----- stickerここまで ----- */

/* ----- stamp ----- */
.table-wrap04 {
  width: 100%;
  overflow-x: auto;
}

.price-table04 {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.price-table04 th,
.price-table04 td {
  border: 1px solid #ccc;
  padding: 10px;
}

.price-table04 thead th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.price-table04.stamp td {
  vertical-align: middle;
}

.stamp-size {
  display: flex;
  align-items: center;
	justify-content: space-around;
  gap: 10px;
}

.stamp-size img {
  width: 40%;
  height: auto;
  display: block;
}

.stamp-size span {
  text-align: left;
}

/* ======== レスポンシブ対応 ======== */
@media screen and (max-width: 768px) {
  .price-table04,
  .price-table04 thead,
  .price-table04 tbody,
  .price-table04 th,
  .price-table04 td,
  .price-table04 tr {
    display: block;
    width: 100%;
  }

  .price-table04 thead {
    display: none;
  }

  .price-table04 tr {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
  }

  .price-table04 td {
    text-align: left;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .stamp-size {
    flex-direction: column;
    align-items: flex-start;
  }

  .stamp-size img {
    margin-bottom: 5px;
  }
}
/* ----- stampここまで ----- */

/* ----- hutou ----- */
.hutou table.price-table{
	margin-bottom: 40px;
}
.hutou table.price-table th{
	width: 10%;
}
/* ----- hutouここまで ----- */

/* ----- cutting ----- */
.cutting .mmpg-box img {
  width: 100%;
  height: auto;
}
/* ----- cuttingここまで ----- */

/* ----- tote ----- */
.tote01 ul{
	margin-bottom: 40px;
}
.tote01 ul li{
	width: 32%;
	height: auto;
	padding: 16px;
}
.tote01 p img{
	width: 100%;
	height: auto;
}
/* ----- toteここまで ----- */

/* ----- armband ----- */
.armband01 .box-01{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.armband01 .box-01 .left{
	width: 40%;
	height: auto;
}
.armband01 .box-01 .right{
	width: 60%;
	height: auto;
}
.armband01 .box-01 .right p img{
	width: 100%;
	height: auto;
}
/* ----- armbandここまで ----- */

/* ----- newyearcard ----- */
.newyearcard dl.gridtab{
	margin-bottom: 20px;
}
.newyearcard dl.gridtab dd img{
	width: 100%;
	height: auto;
}


/* gridtab が初期化される前に、アクティブなコンテンツを強制的に表示する */
/* ただし、他の dd 要素はデフォルトで非表示になっている必要があります */
.newyearcard dl.gridtab dd.is-active {
    /* !important を使うのは、他の CSS ルールを上書きするためです。 */
    /* 非推奨ですが、緊急の対応として試す価値があります。 */
    display: block; 
    visibility: visible;
}


/* ----- newyearcardここまで ----- */

/* -----submission----- */
.second .submission h2{
	margin-bottom: 32px !important;
}
.second .submission h3{
	border-bottom: 1px solid #ccc;
	margin-bottom: 16px;
}
.second .submission .p-data{
	display: flex;
	justify-content: flex-start;
	padding-left: 32px;
	margin-bottom: 24px;
}
.second .submission .p-data .icon{
	width: 5%;
}
.second .submission .p-data .text{
	width: 95%;
    padding: 0 24px;
    display: flex;
    align-items: center;
}
.second .submission .p-data .icon img{
	width: 100%;
	height: auto;
}
.second .submission .p-data .text p{
	font-size: 1.8rem;
}
.second .submission .p-data .text p .bg-color{
	background: #ef7e00;
	padding: 4px;
	color: #fff;
}
.second .submission .p-data .icon2{
	width: 30%;
	display: flex;
	justify-content: flex-start;
}
.second .submission .p-data .icon2 img{
	width: 100%;
	height: auto;
	padding-right: 16px;
}
.second .submission .p-data .text2{
	width: 70%;
    padding: 0 16px;
    display: flex;
    align-items: center;
}
.second .submission .p-data .text2 p{
	font-size: 1.8rem;
}
/* -----submissionここまで----- */

/* -----access----- */
.second .access table {
  width: 100%;
}
.second .access table, .second .access table td, .second .access table th {
  border: 1px solid #ccc;
}
.second .access table td, .second .access table th {
  padding: 10px 20px;
}
.second .access table th {
  background: #efefef;
  text-align: left;
  width: 40%;
}
.second .access table td {
  width: 60%;
}
.second .access p {
  margin-top: 20px
}
.second .access p img {
  width: 100%;
  height: auto;
}
/* -----accessここまで----- */
/* -----news----- */
.second .news-box ul li a {
  display: block;
  font-size: 1.4rem;
  border-bottom: 1px dotted #ccc;
  padding: 20px 20px;
  transition: all .3s ease 0s;
}
.second .news-box ul li a:hover {
  color: #fff;
  background: #005eac;
  border-bottom: 1px solid #005eac;
}
.second .news-contents p img {
  width: 100%;
  height: auto;
}
.second .pagenation {
  margin: 20px 0 0 0;
}
.second .pagenation ul {
  display: flex;
  justify-content: space-around;
}
.second .pagenation ul li {
  font-size: 1.4rem;
}
/* -----newsここまで----- */
/* -----qa----- */
.second .faq-detail {
  margin-bottom: 40px;
}
.second .faq-detail dt {
  border: 1px solid #ccc;
  text-align: left;
}
.second .faq-detail dd {
  text-align: left;
}
/* -----qaここまで----- */
/* -----contact----- */
select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-indent: 1em;
  background-size: 20px;
  background-position: right center;
  height: 40px;
  line-height: 3rem;
  font-size: 1.4rem;
  vertical-align: middle;
  border: 1px solid #CCC;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
}
input {
  text-indent: 1em;
  height: 40px;
  line-height: 3rem;
  font-size: 1.4rem;
  vertical-align: middle;
  border: 1px solid #CCC;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
}
textarea {
  text-indent: 1em;
  height: 140px;
  line-height: 3rem;
  font-size: 1.4rem;
  vertical-align: middle;
  border: 1px solid #CCC;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
}
.contact table {
  margin: 20px auto;
  width: 100%;
}
.contact th {
  font-size: 1.4rem;
  text-align: left;
  vertical-align: top;
  width: 24%;
}
.contact td {
  width: 76%;
}
p.policy-link {
  margin-bottom: 20px;
  text-align: center;
}
p.form-btn {
  display: flex;
  justify-content: space-between;
}
p.form-btn input {
  background: #f0ad00;
  color: #fff;
  transition: all .2s ease;
  border: 1px solid #f0ad00;
}
p.form-btn input:hover {
  background: #fff;
  border: 1px solid #f0ad00;
  color: #f0ad00;
}
.check {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.check label {
  font-size: 1.4rem;
  padding: 10px;
  transition: .3s ease-in-out;
}
.check input {
  height: auto;
  margin-bottom: 0;
  vertical-align: baseline;
  width: auto;
}
/* -----contactここまで----- */
/* -----responsive----- */
@media only screen and (max-width: 1023px) {
  header .inner {
    padding: 0 40px;
  }
  header h1 img {
    width: 80%;
  }
  header h2 img {
    width: 80%;
  }
  #main {
    margin: 0;
  }
  #main h2 {
    font-size: 2rem;
  }
  #main h3 {
    font-size: 1.6rem;
  }
  .container {
    width: 100%;
    flex-direction: column;
  }
  .main-contents {
    width: 100%;
  }
  .inner980 {
    width: 88%;
  }
  #pagetop {
    margin-bottom: 0;
  }
  footer {
    padding: 40px;
  }
  footer .heading {
    margin-bottom: 0px;
  }
  footer .heading h2 img {
    width: 40%;
    height: auto;
  }
  footer .f-box .box-l {
    padding: 20px 10px;
  }
  footer .f-box .box-r {
    padding: 20px 10px;
  }
  .pankuzu {
    padding: 0 40px;
  }
  .inner1040 {
    width: 90%;
  }
  /*#top .mainvis {
		height: 56vh;
		/* margin-top: 80px; */
  /*margin-bottom: 40px;
		margin-left: 20px;
		margin-right: 20px;
	}*/
  /*#top .mainvis .inner h2.m_01 img{
		width: 50%;
	}
	#top .mainvis .inner h2.m_02 img{
		width: 80%;
	}*/
  #top .mainvis {
    padding: 0px;
    margin-bottom: 40px;
  }
  #top .mainvis p {
    /*top: 80px;*/
    left: 16px;
    bottom: 16px;
  }
  #top .mainvis p img {
    width: 80%;
    height: auto;
  }
  #top .main-contents .top-contents-box {
    margin-bottom: 40px;
  }
  #top .box_n01 ul li {
    font-size: 1.4rem;
  }
  #top .box_n02 {
    padding: 40px;
  }
  #top .box_n02 .support {
    padding: 20px 0px;
  }
  #top .box_n02 .support p {
    width: 22%;
    padding: 16px;
  }
  #top .box_n03 {
    padding: 40px;
  }
  #top .box_n03 .inner {
    width: 88%;
  }
  #top .box_n04 {
    padding: 40px;
  }
  #top .box_n04 .magazine {
    padding: 40px 0px;
  }
  #top .box_n05 {
    padding: 0 40px;
  }
  #top .box_n05 .point_contents {
    flex-wrap: wrap;
  }
  #top .box_n05 .point_contents .point_box {
    width: 46%;
    margin-bottom: 20px;
  }
  #top .box_n06 {
    padding: 0 40px;
  }
  #top .box_n06 .advantage_contents {
    width: 88%;
  }
  #top .box_n06 .advantage_contents a .advantage_box .box-l {
    width: 50%;
  }
  #top .box_n06 .advantage_contents a .advantage_box .box-r {
    width: 50%;
    padding: 20px 20px;
  }
  #top .box_n07 {
    padding: 40px;
  }
  #top .news {
    padding: 0 40px;
  }
  #top .news .news-contents {
    width: 100%;
  }
  #top .news p.news-link a {
    width: 100%;
  }
  #top .box_n08 {
    padding: 40px;
  }
  #top .box_n08 .heading p {
    text-align: left;
  }
  #top .box_n09 {
    padding: 40px;
  }
  #top .box_n09 .heading p {
    text-align: left;
  }
  #top .box_n09 p a {
    width: 100%;
  }
  #top .news .heading {
    margin-bottom: 20px;
  }
  #top .box_n10 {
    padding: 40px;
  }
  #top .box_n02 .check-box {
    width: 48%;
  }
  #top .box_n03 .feature-box {
    width: 48%;
  }
  #top .box_n04 .can-box {
    width: 48%;
  }
  #top .box_n04 .can-box img.icon {
    left: 120px;
  }
  .second .mainvis-sub_01, .second .mainvis-sub_02, .second .mainvis-sub_03, .second .mainvis-sub_04, .second .mainvis-sub_05, .second .mainvis-sub_06, .second .mainvis-sub_07 {
    height: 24vh;
    margin-bottom: 40px;
  }
  .second .main-title {
    width: 80%;
    margin: auto;
  }
  .second .main-title h1 {
    font-size: 2rem;
  }
  .second .container {
    width: 96%;
  }
  .second .submission .p-data .icon {
    width: 11%;
  }
  .second .submission .p-data2{
	  display: flex;
	  flex-wrap: wrap;
  }
  .second .submission .p-data2 .icon2{
	  width: 50%;
	  margin-bottom: 16px;
  }
  .second .submission .p-data2 .text2{
	  width: 100%;
	  padding: 0px;
  }
  .second .access_box p{
	  width: 100%;
  }
  .second .staffbox {
    width: 48%;
  }
  .contact table {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body, th, td, h1, h2, h3, h4, h5, h6, pre, input, textarea, option, div, p, dt, dd, li, address {
    font-size: 1.4rem;
  }
  .mb0 {
    margin-bottom: 0 !important;
  }
  .mb40 {
    margin-bottom: 40px;
  }
  header {
    height: 60px;
  }
  header .inner {
    padding: 0 10px;
  }
  header h1 {
    height: 60px;
  }
  header h1 img {
    width: 72%;
    height: auto;
  }
  header h2 {
    display: none;
  }
  nav ul {
    padding-top: 52px;
  }
  #main {
    margin: 0 10px 40px;
  }
  #main h2 {
    font-size: 1.6rem !important;
  }
  #main h3 {
    font-size: 1.6rem;
  }
  .inner980 {
    width: 90%;
  }
  .button-1 {
    width: 100%;
    /*width: 70%;*/
  }
  .button-1 a {
    font-size: 1.2rem;
  }
  .flex {
    flex-direction: column;
  }
  .flex2 {
    flex-direction: column;
  }
  .flex3 {
    flex-direction: column;
  }
  footer .f-box {
    flex-wrap: wrap;
  }
  footer .f-box .box-l {
    width: 100%;
    padding: 20px 0;
    flex-direction: column;
  }
  footer .f-box .box-l .box-l_01 {
    width: 100%;
  }
  footer .f-box .box-l .box-l_02 {
    width: 100%;
  }
  footer .f-box .box-r {
    width: 100%;
    padding: 20px;
  }
  footer .f-box .box-r p img {
    width: 100%;
  }
  .footer_fix_btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: #005eac;
    box-shadow: 0px -2px 11px 0px #ccc;
  }
  .footer_fix_btn ul {
    display: flex;
  }
  .footer_fix_btn ul li {
    width: 100%;
    border-right: 1px solid #eeeeee;
    background-color: #005eac;
  }
  .footer_fix_btn ul li + li {
    border-right: 1px solid #eeeeee;
  }
  .footer_fix_btn ul li a {
    display: block;
    padding: 10px 0 0;
    width: 100%;
    text-decoration: none;
  }
  .footer_fix_btn ul li a img {
    width: 88%;
    height: auto;
  }
  .footer_fix_btn ul li.line-smp {
    width: 100%;
    border-right: 1px solid #eeeeee;
    background-color: #00b900;
  }
  .pankuzu {
    padding: 0 8px;
  }
  .spview {
    display: block;
  }
  .pcview {
    display: none !important;
  }
  #pageTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
  }
  #popup {
    display: none !important;
  }
  /*#top .mainvis {
		height: 24vh !important;
		/*margin-top: 50px;
		margin-bottom: 20px;*/
  /*margin: 0 0 20px 0;
	}*/
  /*#top .vegas-wrapper {
		width: 90%;
		margin: auto;
	}
	#top .mainvis .inner h2.m_01 img{
		width: 60%;
	}
	#top .mainvis .inner h2.m_02 img{
		width: 100%;
	}*/
#top .mainvis img {
  width: revert-layer;
  height: auto;
}
  #top .mainvis p {
    /*top: 202px;*/
    left: 10px;
    bottom: 16px;
  }
  #top .mainvis p img {
    width: 94%;
    height: auto;
  }
  #top .box_n00 .tx-box p {
    text-align: left;
  }
  #top .box_n01 .heading {
    margin-bottom: 20px;
  }
	#top .box_n01 .feature-box {
		width: 100%;
	}
	#top .box_n01 .feature-box .feature-box_img {
		width: 40%;
		margin: auto;
	}
	#top .box_n02 .heading {
    margin-bottom: 20px;
	}
	#top .box_n01 .feature-box .feature-box_tx {
		width: 100%;
	}
	#top .box_n01 .feature-box .feature-box_tx p {
		padding-bottom: 20px;
	}
  #top .box_n02 .check-box {
    width: 100%;
  }
  #top .box_n03 .feature-box {
    width: 100%;
  }
  #top .box_n04 .can-box {
    width: 100%;
  }
  #top .box_n02 .icon {
    width: 16%;
    text-align: left;
  }
  #top .box_n02 .icon img {
    width: 50%;
    height: auto;
    vertical-align: text-bottom;
  }
  #top .box_n02 .tx {
    width: 100%;
  }
  #top .box_n03 {
    padding: 40px 0;
  }
  #top .box_n04 .can-box img.icon {
    /*left: 140px;*/
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
  }
  #top .box_n04 .can-box {
    padding: 20px 20px 20px 20px;
  }
  #top p.sub_txt {
    width: 90%;
    margin: 0 auto 20px;
    text-align: center;
  }
  #top .top-contents-box .box-01 {
    width: 100%;
  }
  #top .top-contents-box .box-02 {
    width: 100%;
    margin-bottom: 20px;
  }
  #top .heading h2 img {
    width: 100%;
    height: auto;
  }
  #top .heading p {
    text-align: left;
  }
  #top .box_n01 .box-02 p.tx {
    font-size: 1.4rem;
  }
  #top .box_n02 {
    padding: 20px 0;
  }
  #top .box_n02 p {
    text-align: left;
  }
  #top .box_n02 .support p {
    width: 48%;
    padding: 8px;
  }
  #top .box_n03 .inner {
    width: 100%;
  }
  #top .box_n04 {
    padding: 20px 0;
  }
  #top .box_n04 .magazine {
    padding: 10px 0px;
  }
  #top .box_n04 .magazine p {
    width: 50%;
    padding: 16px;
  }
  #top .box_n05 {
    padding: 40px 10px 40px 10px;
  }
	#top .box_n05 .contact-box .contact-box-left, 
	#top .box_n05 .contact-box .contact-box-right {
		width: 100%;
	}
	#top .box_n05 .contact-box .contact-box-left {
		padding: 24px;
	}
	#top .box_n05 .contact-box .contact-box-right {
		padding: 24px;
	}
	#top .box_n05 .contact-box .contact-box-right p.line {
		width: 100%;
	}
	#top .box_n05 .contact-box .contact-box-right p.line a img{
		width: 100%;
		height: auto;
	}
	#top .box_n05 .contact-box .contact-box-right .flex3 {
		flex-direction: row;
	}
  #top .box_n06 {
    padding: 0 10px;
  }
  #top .box_n06 .advantage_contents a .advantage_box {
    flex-wrap: wrap;
  }
  #top .box_n06 .advantage_contents a .advantage_box .box-l {
    width: 100%;
  }
  #top .box_n06 .advantage_contents a .advantage_box .box-r {
    width: 100%;
    padding: 20px 20px;
  }
  #top .box_n07 {
    padding: 20px;
  }
  #top .box_n07 .heading {
    margin-bottom: 20px;
  }
  #top .box_n07 .faq-detail dt {
    font-size: 2rem;
    /*font-size: 1.2rem;*/
  }
  #top .news {
    padding: 0 10px;
  }
	#top .news .heading {
	   width: 100%;
	}
  #top .box_n08 {
    padding: 20px;
  }
  #top .box_n08 h2 {
    padding-bottom: 10px;
  }
  #top .box_n08 .box-01 {
    margin-bottom: 40px;
  }
  #top .box_n09 {
    padding: 20px;
  }
  #top .box_n09 h2 {
    padding-bottom: 10px;
  }
  #top .box_n10 {
    padding: 20px;
  }
  #top .box_n10 h2 {
    padding-bottom: 10px;
  }
  .cd-breadcrumb {
    padding: 0 10px;
  }
  .second .mainvis-sub_01, .second .mainvis-sub_02, .second .mainvis-sub_03, .second .mainvis-sub_04, .second .mainvis-sub_05, .second .mainvis-sub_06, .second .mainvis-sub_07 {
    height: 16vh;
    /*height: 32vh;*/
    margin-bottom: 40px;
  }
  .second .main-title h1 {
    font-size: 1.8rem;
    line-height: 1.6;
    /*padding-bottom: 20px;*/
  }
  .second .titlebox {
    margin-bottom: 20px;
  }
  .second .titlebox img {
    width: 8%;
  }
  .second .top-contents-box .box-l, .second .top-contents-box .box-r {
    width: 100%;
  }
  .second .top-contents-box .box-l p {
    padding: 0 20px 20px;
  }
  .second .access table th {
    text-align: left;
  }
  .second .access table td, .second .access table th {
    display: block;
    border: none;
    width: 100%;
  }
  .second .gallery ul li {
    width: 49%;
  }
  .second .map2 p img {
    width: 100%;
  }
  .second .staffbox {
    width: 100%;
  }
  .second h2.title img {
    width: 2%;
  }
  .second .submission .p-data {
    padding-left: 0px;
  }
  .second .submission .p-data .icon {
    width: 13%;
  }
  .first ul.shipping{
	  flex-wrap: wrap;
  }
  .first ul.shipping li.icon{
	width: 100%;
	padding-bottom: 24px;
  }
  .first ul.shipping li.arrow_smp{
	width: 8%;
  }
	.first .first-box ul li {
		width: 100%;
		margin-bottom: 20px;
	}
	.first .flow-box ul li {
		width: 100%;
		margin-bottom: 20px;
	}
	.price-table {
		border: none;
	}
	.half {
		flex-basis: auto;
	}
	.tshirt .price-table {
		border: none;
	}
	.tshirt .price-table02 {
		border: none;
	}
	.hutou table.price-table th {
		width: 100%;
	}
	.armband01 .box-01 .left {
		width: 100%;
		margin-bottom: 20px;
	}
	.armband01 .box-01 .right {
		width: 100%;
	}
	.tote01 ul li {
		width: 100%;
	}
	.sticker .half td:first-child {
		text-align: left;
		width: 100%;
	}
	.sticker .price-table03 {
		border: none;
	}
	.half table {
		border: none;
	}
  .contact th {
    display: block;
    width: 100%;
  }
  .contact td {
    display: block;
    width: 100%;
  }
  p.policy-link {
    text-align: left;
  }
  /*hover解除*/
  .eff-0, .eff-1, .eff-2 {
    display: none;
  }
}
/* ---------------------------------------------------------------------------------------responsiveここまで */