@charset "UTF-8";
/*===============================
scss 変数ファイル
================================*/
/*
カラー
================================*/
/*
メディアクエリ
================================*/
/*===============================
reset
================================*/
*,
*:before,
*:after {
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
 margin: 0;
 padding: 0;
 border: 0;
 font-size: 100%;
 vertical-align: baseline;
}

body {
 line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
 display: block;
}

button {
 padding: 0;
 background: transparent;
 border: none;
 outline: none;
}

nav ul {
 list-style: none;
}

blockquote,
q {
 quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
 content: "";
 content: none;
}

ol,
ul {
 list-style: none;
}

a {
 margin: 0;
 padding: 0;
 color: #333;
 font-size: 100%;
 vertical-align: baseline;
 background: transparent;
 text-decoration: none;
}

img {
 max-width: 100%;
 height: auto;
 vertical-align: middle;
}

blockquote,
q {
 quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
 content: "";
 content: none;
}

table {
 border-collapse: collapse;
 border-spacing: 0;
}

input,
button,
select,
textarea {
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
 background: transparent;
 border: none;
 border-radius: 0;
 font: inherit;
 outline: none;
}

textarea {
 resize: vertical;
}

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

input[type="submit"],
input[type="button"],
label,
button,
select {
 cursor: pointer;
}

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

/*===============================
base
================================*/
html {
 font-size: 62.5%;
 font-weight: 500;
 letter-spacing: normal;
 line-height: 1em;
 color: #333;
 font-family: Arial, Helvetica, sans-serif;
}

body {
 position: relative;
 z-index: 100;
 font-size: 1.4rem;
 background-color: #fff;
}
@media screen and (min-width: 768px) {
 body {
  font-size: 1.6rem;
 }
}

main {
 max-width: 1500px;
 margin: auto;
}

.overflow {
 overflow: hidden;
}

.wrap-s,
.wrap,
.wrap-l {
 width: 90%;
 margin: auto;
}

.wrap-s {
 max-width: 1000px;
}

.wrap {
 max-width: 1200px;
}

.wrap-l {
 max-width: 1500px;
}

.palmtop {
 display: block !important;
}
@media screen and (min-width: 768px) {
 .palmtop {
  display: none !important;
 }
}

.laptop {
 display: none !important;
}
@media screen and (min-width: 768px) {
 .laptop {
  display: block !important;
 }
}

/*===============================
layout
================================*/
/*
header
================================*/
.l-header {
 position: fixed;
 z-index: 100;
 top: 0;
 left: 0;
 width: 100%;
 background-color: #fff;
}
.l-header .container {
 padding: 15px 20px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 max-width: 1200px;
 margin: auto;
}
@media screen and (min-width: 768px) {
 .l-header .container {
  padding: 20px;
 }
}
@media screen and (min-width: 1024px) {
 .l-header .container {
  padding: 30px;
 }
}
@media screen and (min-width: 1500px) {
 .l-header .container {
  padding: 30px 0;
 }
}
.l-header .container .logo a img {
 max-height: 30px;
}
.l-header .container .menuBtn {
 position: relative;
 z-index: 120;
 width: 25px;
 height: 14px;
 cursor: pointer;
}
@media screen and (min-width: 768px) {
 .l-header .container .menuBtn {
  display: none;
 }
}
.l-header .container .menuBtn span {
 display: block;
 position: absolute;
 left: 0;
 width: 25px;
 height: 2px;
 background-color: #275a9b;
 -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
 transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
 transition: transform 0.5s ease, opacity 0.3s ease;
 transition: transform 0.5s ease, opacity 0.3s ease, -webkit-transform 0.5s ease;
}
.l-header .container .menuBtn span:first-child {
 top: 0;
}
.l-header .container .menuBtn span:nth-child(2) {
 top: 7px;
}
.l-header .container .menuBtn span:nth-child(3) {
 top: 14px;
}
.l-header .container .btnActive span {
 background-color: #fff;
}
.l-header .container .btnActive span:first-child {
 -webkit-transform: translateY(7px) rotate(45deg);
 transform: translateY(7px) rotate(45deg);
}
.l-header .container .btnActive span:nth-child(2) {
 opacity: 0;
}
.l-header .container .btnActive span:nth-child(3) {
 -webkit-transform: translateY(-7px) rotate(-45deg);
 transform: translateY(-7px) rotate(-45deg);
}
.l-header .container .menuList {
 display: none;
}
@media screen and (min-width: 768px) {
 .l-header .container .menuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 1.4rem;
 }
}
@media screen and (min-width: 1200px) {
 .l-header .container .menuList {
  font-size: 1.6rem;
 }
}
.l-header .container .menuList .item:not(:first-child) {
 margin-left: 30px;
}
@media screen and (min-width: 1024px) {
 .l-header .container .menuList .item:not(:first-child) {
  margin-left: 50px;
 }
}
.l-header .container .menuList .item a {
 position: relative;
 font-weight: bold;
 color: #275a9b;
}
.l-header .container .menuList .item a:before {
 content: "";
 display: block;
 position: absolute;
 bottom: -10px;
 left: 0;
 -webkit-transform: scaleX(0);
 transform: scaleX(0);
 width: 100%;
 height: 3px;
 background-color: #275a9b;
 -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
 transition: -webkit-transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
 transition: transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
 transition: transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1),
  -webkit-transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.l-header .container .menuList .item a:hover:before {
 -webkit-transform: scaleX(1);
 transform: scaleX(1);
}
.l-header .menuNav {
 background-color: #275a9b;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 110;
 width: 100%;
 min-height: 100vh;
 /* Fallback */
 overflow: hidden;
 -webkit-transition: all 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
 transition: all 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
 -webkit-transform: scale(0.85);
 transform: scale(0.85);
 opacity: 0;
 pointer-events: none;
}
@media screen and (min-width: 768px) {
 .l-header .menuNav {
  display: none;
 }
}
.l-header .menuNav:before {
 content: "";
 display: block;
 position: fixed;
 z-index: -1;
 bottom: -100px;
 right: -100px;
 background-image: url(../../images/common/menu_back.png);
 background-repeat: no-repeat;
 background-size: 80% auto;
 background-position: bottom right;
 width: 391px;
 height: 549px;
}
.l-header .menuNav__list {
 padding: 80px 50px 80px;
}
.l-header .menuNav__list .item:not(:first-child) {
 margin-top: 50px;
}
.l-header .menuNav__list .item a {
 display: inline-block;
 color: #fff;
 font-size: 2.4rem;
 font-weight: 900;
 letter-spacing: 2px;
 overflow: hidden;
}
.l-header .menuNav__list .item a span {
 display: block;
 -webkit-transform: translateY(100%);
 transform: translateY(100%);
 -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
 transition: -webkit-transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
 transition: transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
 transition: transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1),
  -webkit-transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.l-header .menuNav__list .showItem a span {
 -webkit-transition-delay: 350ms;
 transition-delay: 350ms;
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
.l-header .menuActive {
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 1;
 pointer-events: auto;
}

.bg {
 -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
  rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
 box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
  rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
/* Language Block */
.languageBlock {
 display: flex;
 align-items: center;
}

.languageBlock .heading {
 color: #275a9b;
 margin-right: 10px;
}

.languageBlock .languageSelect select {
 font-size: 100%;
 padding: 0 5px;
 font-weight: bold;
 text-align: center;
 color: #275a9b;
 background-color: #fff;
 cursor: pointer;
}

.languageBlock .languageSelect select:hover {
 background-color: #f0f0f0;
}
/* 言語選択セレクタの初期状態を非表示に設定 */
.l-header .menuNav__list .languageBlock {
 opacity: 0;
 transform: translateY(100%);
 transition: opacity 0.5s cubic-bezier(0.32, 0.94, 0.6, 1),
  transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
}

/* 言語選択セレクタのフェードインアニメーション */
.l-header .menuNav__list .showItem .languageBlock {
 opacity: 1;
 transform: translateY(0);
 transition-delay: 350ms; /* 他の項目と同期 */
}

/* 言語選択セレクタのスタイル */
.l-header .menuNav__list .languageBlock .languageSelect select {
 display: inline-block;
 width: 100%;
 font-size: 2.4rem;
 font-weight: 900;
 color: #fff;
 background-color: transparent;
 border: none;
 text-align: center;
 padding: 0;
 letter-spacing: 2px;
 cursor: pointer;
 transform: translateY(100%);
 transition: transform 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
}

/* 言語選択セレクタのフェードインアニメーション */
.l-header .menuNav__list .showItem .languageBlock .languageSelect select {
 transform: translateY(0);
}
/*
footer
================================*/
.l-footer {
 position: relative;
 padding: 45px 0 20px;
 background-color: #275a9b;
 overflow: hidden;
}
.l-footer:before {
 content: "";
 display: block;
 position: absolute;
 z-index: 1;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
 transform: translate(-50%, -50%);
 background-image: url(../../images/common/footer_back.png);
 background-repeat: no-repeat;
 background-position: center;
 background-size: 100% auto;
 width: 665px;
 height: 499px;
}
@media screen and (min-width: 1024px) {
 .l-footer:before {
  top: 45%;
 }
}
.l-footer .sitemap {
 position: relative;
 z-index: 10;
 color: #fff;
}
@media screen and (min-width: 1024px) {
 .l-footer .sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
 }
}
@media screen and (min-width: 1024px) {
 .l-footer .sitemap dl {
  width: 130px;
 }
}
.l-footer .sitemap dl:not(:first-child) {
 margin-top: 35px;
}
@media screen and (min-width: 1024px) {
 .l-footer .sitemap dl:not(:first-child) {
  margin-top: 0;
  margin-left: 95px;
 }
}
.l-footer .sitemap dl dt a,
.l-footer .sitemap dl dd a {
 color: #fff;
 -webkit-transition: opacity 0.3s ease;
 transition: opacity 0.3s ease;
}
.l-footer .sitemap dl dt a:hover,
.l-footer .sitemap dl dd a:hover {
 opacity: 0.8;
}
.l-footer .sitemap dl dt {
 font-weight: bold;
 font-size: 1.6rem;
}
.l-footer .sitemap dl dd {
 margin-top: 20px;
 padding-left: 15px;
 font-size: 1.4rem;
}
@media screen and (min-width: 1024px) {
 .l-footer .sitemap dl dd {
  padding-left: 0;
  margin-top: 25px;
 }
}
.l-footer .sitemap dl dd ul li:not(:first-child) {
 margin-top: 15px;
}
.l-footer .sitemap dl dd ul li a span {
 display: inline-block;
 margin-right: 10px;
 width: 14px;
 -webkit-transform: translateY(-1px);
 transform: translateY(-1px);
}
.l-footer .copyright {
 margin-top: 50px;
 text-align: center;
 font-size: 1.2rem;
 color: #fff;
}
@media screen and (min-width: 768px) {
 .l-footer .copyright {
  margin-top: 100px;
 }
}
@media screen and (min-width: 1024px) {
 .l-footer .copyright {
  margin-top: 150px;
 }
}
@media screen and (min-width: 1200px) {
 .l-footer .copyright {
  margin-top: 200px;
 }
}

/*===============================
module
================================*/
/*
space
================================*/
.mar_tb {
 margin: 50px 0;
}
@media screen and (min-width: 768px) {
 .mar_tb {
  margin: 80px 0;
 }
}

.mar_t {
 margin-top: 50px;
}
@media screen and (min-width: 768px) {
 .mar_t {
  margin-top: 80px;
 }
}

/*
align
================================*/
.left {
 text-align: left;
}

.center {
 text-align: center;
}

.right {
 text-align: right;
}

/*
heading-style
================================*/
.heading-style1 {
 text-align: center;
 margin-bottom: 30px;
}
.heading-style1 img {
 max-height: 25px;
}
@media screen and (min-width: 768px) {
 .heading-style1 img {
  max-height: 35px;
 }
}

.heading-style2 {
 text-align: center;
 margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
 .heading-style2 {
  margin-bottom: 60px;
 }
}
.heading-style2 img {
 max-height: 20px;
}
@media screen and (min-width: 768px) {
 .heading-style2 img {
  max-height: 30px;
 }
}

.pageHeading {
 position: relative;
 padding-bottom: 33.3%;
 background-size: cover;
 background-position: center;
}
@media screen and (min-width: 768px) {
 .pageHeading {
  padding-bottom: 13.3%;
 }
}
.pageHeading h2 {
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
 transform: translate(-50%, -50%);
}
.pageHeading h2 img {
 max-height: 30px;
}
@media screen and (min-width: 1024px) {
 .pageHeading h2 img {
  max-height: 40px;
 }
}

/*
btn-style
================================*/
.btn-style1 {
 text-align: center;
}
.btn-style1 a {
 position: relative;
 display: inline-block;
 padding: 15px 0;
 color: #fff;
 width: 250px;
 font-weight: bold;
 border-radius: 10px;
 font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
 .btn-style1 a {
  width: 300px;
  padding: 20px 0;
 }
}
@media screen and (min-width: 1024px) {
 .btn-style1 a {
  width: 400px;
 }
}
.btn-style1 a:hover span .arrow {
 right: -40px;
}
@media screen and (min-width: 768px) {
 .btn-style1 a:hover span .arrow {
  right: -50px;
 }
}
.btn-style1 a span {
 position: relative;
 z-index: 10;
}
.btn-style1 a span .arrow {
 position: absolute;
 top: calc(50% - 10px);
 right: -35px;
 -webkit-transition: right 0.5s ease;
 transition: right 0.5s ease;
}
@media screen and (min-width: 768px) {
 .btn-style1 a span .arrow {
  top: calc(50% - 11px);
  right: -40px;
 }
}
.btn-style1 a span .arrow img {
 max-height: 12px;
}
@media screen and (min-width: 768px) {
 .btn-style1 a span .arrow img {
  max-height: 15px;
 }
}

.btn-style1--blue a {
 background-color: #275a9b;
}

.btn-style1--hardLight a {
 border: 2px solid #fff;
}
@media screen and (min-width: 768px) {
 .btn-style1--hardLight a {
  border: 4px solid #fff;
 }
}
.btn-style1--hardLight a:before {
 content: "";
 display: block;
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 mix-blend-mode: hard-light;
 border-radius: 10px;
 background-color: #275a9b;
}

.btn-style1--orange a:before {
 background-color: #ff6600;
}

.btn-style1--mar_t {
 margin-top: 50px;
}

/*
paragraph
================================*/
.paragraph {
 line-height: 2em;
}
.paragraph:not(:first-child) {
 margin-top: 15px;
}
@media screen and (min-width: 768px) {
 .paragraph:not(:first-child) {
  margin-top: 20px;
 }
}

/*
productsList
================================*/
.products .productsList:not(:first-child) {
 margin-top: 50px;
}
@media screen and (min-width: 768px) {
 .products .productsList:not(:first-child) {
  margin-top: 80px;
 }
}
.products .productsList .heading {
 text-align: center;
 margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
 .products .productsList .heading {
  margin-bottom: 50px;
 }
}
.products .productsList .heading img {
 max-height: 18px;
}
@media screen and (min-width: 768px) {
 .products .productsList .heading img {
  max-height: 20px;
 }
}
@media screen and (min-width: 1024px) {
 .products .productsList .heading img {
  max-height: 25px;
 }
}
.products .productsList h3 {
 text-align: center;
 color: #275a9b;
 font-size: 2rem;
 margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
 .products .productsList h3 {
  margin-bottom: 15px;
  font-size: 2.4rem;
 }
}
.products .productsList ul {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
}
.products .productsList ul .item {
 width: calc(50% - 10px);
 margin-right: 20px;
 margin-top: 30px;
}
@media screen and (min-width: 640px) {
 .products .productsList ul .item {
  width: calc(33.3% - 13.3px);
 }
}
@media screen and (min-width: 1024px) {
 .products .productsList ul .item {
  width: calc(25% - 37.5px);
  margin-right: 50px;
  margin-top: 50px;
 }
}
.products .productsList ul .item:nth-child(2n) {
 margin-right: 0;
}
@media screen and (min-width: 640px) {
 .products .productsList ul .item:nth-child(2n) {
  margin-right: 20px;
 }
}
@media screen and (min-width: 1024px) {
 .products .productsList ul .item:nth-child(2n) {
  margin-right: 50px;
 }
}
@media screen and (min-width: 640px) {
 .products .productsList ul .item:nth-child(3n) {
  margin-right: 0;
 }
}
@media screen and (min-width: 1024px) {
 .products .productsList ul .item:nth-child(3n) {
  margin-right: 50px;
 }
}
@media screen and (min-width: 1024px) {
 .products .productsList ul .item:nth-child(4n) {
  margin-right: 0;
 }
}
.products .productsList ul .item:nth-child(-n + 2) {
 margin-top: 0;
}
@media screen and (min-width: 640px) {
 .products .productsList ul .item:nth-child(-n + 3) {
  margin-top: 0;
 }
}
@media screen and (min-width: 1024px) {
 .products .productsList ul .item:nth-child(-n + 4) {
  margin-top: 0;
 }
}
.products .productsList ul .item .block .category,
.products .productsList ul .item .block .productsName,
.products .productsList ul .item .block .furigana {
 text-align: center;
}
.products .productsList ul .item .block .category {
 font-size: 1.6rem;
 color: #003366;
}
@media screen and (min-width: 768px) {
 .products .productsList ul .item .block .category {
  font-size: 2rem;
 }
}
.products .productsList ul .item .block .productsName,
.products .productsList ul .item .block .furigana {
 margin-top: 8px;
 font-weight: bold;
 color: #cc3300;
}
@media screen and (min-width: 1024px) {
 .products .productsList ul .item .block .productsName,
 .products .productsList ul .item .block .furigana {
  margin-top: 10px;
 }
}
.products .productsList ul .item .block .productsName {
 font-size: 1.4rem;
}
@media screen and (min-width: 1024px) {
 .products .productsList ul .item .block .productsName {
  font-size: 1.6rem;
 }
}
.products .productsList ul .item .block .furigana {
 font-size: 1.2rem;
}
@media screen and (min-width: 1024px) {
 .products .productsList ul .item .block .furigana {
  font-size: 1.4rem;
 }
}
.products .productsList ul .item .block .img {
 margin-top: 15px;
}
.products .productsList ul .item .block .img img {
 width: 100%;
}
