/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  list-style: none;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

button,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

input {
  box-sizing: border-box;
}
input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
}
input[type=radio] {
  display: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

html {
  font-size: 0.6666666667vw;
}

@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1500px) {
  html {
    font-size: 10px;
  }
}
html {
  overflow-x: hidden;
  overflow-y: auto;
  font-variant-ligatures: none;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Noto Sans Japanese", sans-serif;
  font-variant-ligatures: none;
  color: #333;
}

p {
  letter-spacing: 1px;
}

.ast {
  font-size: 1.5rem;
  vertical-align: super;
}
@media screen and (max-width: 750px) {
  .ast {
    font-size: 3rem;
  }
}

.sup {
  font-size: 0.5em;
  vertical-align: super;
}

@media screen and (min-width: 751px) {
  .pcn {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .spn {
    display: none !important;
  }
}
.btn {
  border-radius: 4rem;
  z-index: 999;
  background-image: linear-gradient(25deg, #123086, #396ed8);
  transition: 0.2s background-image;
  position: relative;
}
.btn:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  opacity: 0;
  transition: 0.5s;
  border-radius: 4rem;
}
.btn:hover::after {
  opacity: 1;
}
.btn:hover {
  background: #fff;
  border: 2px solid #123086;
}
.btn .mail {
  margin-top: 0.1rem;
  width: 1.6rem;
  height: 1.2rem;
}
.btn .txt {
  color: #fff;
  margin-left: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.btn a:hover {
  opacity: 1;
}
.btn .center {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadanime {
  opacity: 0;
}

.scrollanime {
  opacity: 0;
}

.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.updown {
  transform: translateY(-100px);
}

.downup {
  transform: translateY(100px);
}

.slide-right {
  transform: translateX(200px);
}

.slide-left {
  transform: translateX(-200px);
}

header {
  top: 0;
  z-index: 9999;
  position: fixed;
  width: 100%;
  height: 10rem;
  background: #fff;
}
@media screen and (max-width: 750px) {
  header {
    height: 12rem;
  }
}
header .header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1300px;
  height: 10rem;
  margin: auto;
}
@media screen and (max-width: 750px) {
  header .header-wrapper {
    top: 2rem;
    left: 3rem;
  }
}
header h1 {
  padding: 1.5rem 0 0 0;
  width: 18.4rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  header h1 {
    width: 25.2rem;
    padding: 0;
    z-index: 0;
  }
}
header h1 .logo {
  width: 18.4rem;
}
@media screen and (max-width: 750px) {
  header h1 .logo {
    width: 25.2rem;
  }
}
header .contact {
  position: absolute;
  top: 3rem;
  right: 0;
  width: 18rem;
  height: 4.4rem;
}
@media screen and (max-width: 750px) {
  header .contact01 {
    width: 24rem;
    position: absolute;
    top: 0.7rem;
    right: 14rem;
  }
}

.youtube {
  position: relative;
  width: 96rem;
  height: 54rem;
  padding-top: 56.25%;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .youtube {
    width: 100%;
    height: 100%;
  }
}
.youtube iframe,
.youtube video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  left: 0;
}
.modal-bg {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96rem;
}
.modal-content .modal-close {
  display: block;
  position: relative;
  width: 3.2rem;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0 0 1rem auto;
}
.modal-content_inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.modal-content_inner_movie {
  max-width: 100%;
}

@media screen and (max-width: 750px) {
  .modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }
  .modal-bg {
    background-color: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
  }
  .modal-content {
    top: 30%;
    transform: translate(-50%, -30%);
    width: 63rem;
  }
  .modal-content .modal-close {
    width: 6.2rem;
    margin: 0 0 1.8rem auto;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .modal-content .modal-close {
    width: 4.9rem;
  }
}
#hamburger .btn-gNav {
  position: fixed;
  top: 3rem;
  right: 3rem;
  width: 6rem;
  height: 24px;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
}
#hamburger .btn-gNav img.width {
  width: 4.9rem;
}

#gNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  font-size: 16px;
  box-sizing: border-box;
  z-index: 2;
  transition: 0.3s;
}
#gNav.open {
  right: 0px;
  background: #fff;
}
#gNav .gNav-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #gNav .gNav-menu {
    margin-top: -20rem;
    justify-content: center;
  }
}
#gNav .gNav-menu li {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  padding-right: 3.4rem;
}
@media screen and (max-width: 750px) {
  #gNav .gNav-menu li {
    font-size: 3.2rem;
    padding: 6rem 0 0 0;
  }
}
#gNav .gNav-menu li:nth-child(5) {
  padding-right: 0;
}
#gNav .gNav-menu li a {
  color: #333333;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  #gNav .gNav-menu li a {
    color: #123086;
  }
}
@media screen and (max-width: 750px) {
  #gNav .gNav-menu .contact02 {
    width: 59rem;
    position: absolute;
    top: 56%;
    right: 8rem;
    left: 8rem;
  }
}

@media screen and (min-width: 751px) {
  .btn-gNav {
    display: none;
  }
  #gNav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 10rem;
  }
  #gNav .gNav-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    max-width: 900px;
    width: 90rem;
    height: 10rem;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    padding-right: 3.6rem;
  }
  #gNav .gNav-menu li {
    padding-top: 5px;
  }
  #gNav .gNav-menu li a:hover {
    opacity: 0.6;
  }
}
#main-visual {
  max-width: 2000px;
  height: 89rem;
  position: relative;
  margin: auto;
  background: url(../img/bg_kv.png) no-repeat 50% 100%;
  background-size: 200rem auto;
}
@media screen and (max-width: 750px) {
  #main-visual {
    height: 140rem;
    background: url(../img/bg_kv_sp.png) no-repeat 50% 100%;
    background-size: 100% auto;
  }
}
#main-visual .main-visual_inr {
  max-width: 1500px;
  margin: 0 auto;
  padding: 10rem 0 0 30rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  #main-visual .main-visual_inr {
    padding: 12rem 0 0;
  }
}
#main-visual .deco {
  position: absolute;
  top: 15.4rem;
  right: 25rem;
  width: 52rem;
}
@media screen and (max-width: 750px) {
  #main-visual .deco {
    width: 42.6rem;
    top: 63.3rem;
    right: 8rem;
  }
}
#main-visual .deco02 {
  width: 41rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 750px) {
  #main-visual .deco02 {
    width: 53.4rem;
    margin: 2rem auto 0;
  }
}
#main-visual .txt {
  font-weight: 900;
}
#main-visual .txt_lead {
  padding-top: 7rem;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  #main-visual .txt_lead {
    padding-top: 7rem;
    padding-left: 9rem;
    font-size: 4.8rem;
    line-height: 1.563em;
    letter-spacing: -0.01em;
  }
}
#main-visual .txt_ttl {
  font-size: 1.7rem;
  position: relative;
  font-weight: 900;
  margin-left: -30rem;
  width: 71.8rem;
  margin-top: 3.3rem;
  padding: 0.7rem 2rem 0.7rem 0;
  background-color: #c3cf0d;
  text-align: right;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  #main-visual .txt_ttl {
    font-size: 2.5rem;
    margin-left: 0;
    width: 64.2rem;
    margin-top: 4rem;
    padding: 0.7rem 0 0.8rem;
    letter-spacing: 0.01em;
  }
}
#main-visual .txt .contact {
  position: absolute;
  top: 49rem;
  left: 1.6rem;
  width: 40rem;
  height: 7rem;
  z-index: 0;
}
#main-visual .txt .contact .mail {
  width: 2rem;
  height: 1.5rem;
}
#main-visual .txt .contact .txt {
  position: static;
  font-size: 1.8rem;
  color: #fff;
}
#main-visual .txt .center {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #main-visual .txt .contact02 {
    width: 59rem;
    position: static;
    margin: 51rem auto 0;
  }
}

#movie .pattern_movie {
  position: relative;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 53.4rem);
  justify-content: space-between;
  width: 115rem;
}
@media screen and (max-width: 750px) {
  #movie .pattern_movie {
    grid-template-columns: 1fr;
    row-gap: 10rem;
    width: 67rem;
    margin-top: 4rem;
  }
}
#movie .pattern_movie .movie_ttl {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  #movie .pattern_movie .movie_ttl {
    font-size: 2.8rem;
  }
}
#movie .pattern_movie .position {
  background-color: #fff;
  cursor: pointer;
}
#movie .pattern_movie .position > img {
  position: relative;
  vertical-align: bottom;
}
@media screen and (max-width: 750px) {
  #movie .pattern_movie .position > img {
    width: 67rem;
  }
}
#movie .pattern_movie .position > img:hover {
  opacity: 0.7;
}

#about {
  padding: 11.5rem 0 12rem;
}
@media screen and (max-width: 750px) {
  #about {
    padding: 10rem 0 7rem;
  }
}
#about .lead {
  text-align: center;
  font-size: 4.6rem;
  color: #123086;
  font-weight: 900;
}
@media screen and (max-width: 750px) {
  #about .lead {
    font-size: 5.8rem;
    line-height: 1.69em;
  }
}
#about .about_list {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
@media screen and (max-width: 750px) {
  #about .about_list {
    flex-wrap: wrap;
    margin-top: 7rem;
  }
}
#about .about_list > li {
  width: 24.5rem;
  margin: 0 0.5rem;
}
@media screen and (max-width: 750px) {
  #about .about_list > li {
    width: 27.1rem;
    margin: 0 0.9rem 6.5rem;
  }
}
#about .about_list > li figure {
  text-align: center;
}
#about .about_list > li figcaption {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.556em;
}
@media screen and (max-width: 750px) {
  #about .about_list > li figcaption {
    margin-top: 2rem;
    font-size: 2.6rem;
    line-height: 1.542em;
  }
}
#about .about_list > li figcaption span {
  position: relative;
  display: inline-block;
  padding: 0 0.15em;
  line-height: 1;
  font-weight: 900;
}
@media screen and (max-width: 750px) {
  #about .about_list > li figcaption span {
    padding: 0 0.15em;
  }
}
#about .about_list > li figcaption span::before {
  content: "";
  display: block;
  position: absolute;
  width: 102%;
  height: 90%;
  background-color: rgba(249, 87, 63, 0.5);
  left: -0.5%;
  top: 0.8rem;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  #about .about_list > li figcaption span::before {
    height: 70%;
    top: 1.3rem;
  }
}

#assist {
  height: 76.5rem;
  padding: 8rem 0;
  background: url(../img/bg_assist.png) no-repeat 50% 0;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  #assist {
    height: auto;
    padding: 6.3rem 0 7rem;
    background-size: 100% auto;
    background-color: #efefdf;
  }
}
#assist .assist_inr {
  width: 115rem;
  margin: 0 auto;
  padding: 8rem 0;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  #assist .assist_inr {
    width: 66.8rem;
    padding: 6rem 0 10rem;
  }
}
#assist .assist_inr .lead {
  text-align: center;
  font-size: 4.6rem;
  font-weight: 900;
  color: #123086;
}
@media screen and (max-width: 750px) {
  #assist .assist_inr .lead {
    font-size: 5.6rem;
    line-height: 1.69em;
  }
}
#assist .assist_inr .txt {
  margin-top: 5.4rem;
  font-size: 1.8rem;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #assist .assist_inr .txt {
    margin-top: 2rem;
    padding: 0 3rem;
    font-size: 3.6rem;
  }
}
#assist .assist_inr .txt_sdgs {
  margin-top: 5rem;
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #assist .assist_inr .txt_sdgs {
    margin-top: 4rem;
    font-size: 4.4rem;
    line-height: 1.864em;
  }
}
#assist .assist_inr .sdgs_img {
  width: 29rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 750px) {
  #assist .assist_inr .sdgs_img {
    width: 41.7rem;
    margin-top: 4rem;
  }
}

#function {
  padding: 12.8rem 0 15.8rem;
}
@media screen and (max-width: 750px) {
  #function {
    padding: 14.5rem 0 5.7rem;
  }
}
#function .function_inr {
  width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #function .function_inr {
    width: 67rem;
  }
}
#function .function_inr > div {
  position: relative;
}
#function .function_inr > div::after {
  content: "";
  display: block;
  clear: both;
}
#function .function_inr > .annotation {
  margin-top: 3.5rem;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #function .function_inr > .annotation {
    margin-top: 3rem;
    font-size: 2.6rem;
    line-height: 1.616em;
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
  }
}
#function .lead {
  font-size: 4.6rem;
  font-weight: 900;
  text-align: center;
  color: #123086;
}
@media screen and (max-width: 750px) {
  #function .lead {
    font-size: 5.6rem;
    line-height: 1.69em;
  }
}
#function .function_ttl {
  font-size: 3.6rem;
  font-weight: 900;
  color: #95c007;
}
@media screen and (max-width: 750px) {
  #function .function_ttl {
    margin-top: 7.6rem;
    padding-left: 4rem;
    font-size: 4.4rem;
  }
}
#function .function_ttl span {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 2.4rem;
  line-height: 1.417em;
}
@media screen and (max-width: 750px) {
  #function .function_ttl span {
    font-size: 0.7em;
  }
}
#function .function_img {
  width: 50rem;
}
@media screen and (max-width: 750px) {
  #function .function_img {
    width: 100%;
  }
}
#function .function_txt {
  margin-top: 1.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (max-width: 750px) {
  #function .function_txt {
    margin-top: 2rem;
    padding-left: 4rem;
    font-size: 3.8rem;
    line-height: 1.395em;
    letter-spacing: 0.01em;
  }
}
#function .function_point {
  width: 53.8rem;
  padding: 3rem 0 3.5rem 7.5rem;
  background-color: #f4f4f4;
  box-shadow: 4px 4px 8px -4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 750px) {
  #function .function_point {
    width: 100%;
    padding: 4.4rem 4rem;
  }
}
#function .function_point .annotation {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.534em;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 750px) {
  #function .function_point .annotation {
    margin-top: 2rem;
    font-size: 2.8rem;
  }
}
#function .function_point_list > li {
  font-size: 1.6rem;
  line-height: 2em;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 750px) {
  #function .function_point_list > li {
    font-size: 3.2rem;
    line-height: 1.719em;
  }
}
#function .function01 {
  margin-top: 7.5rem;
}
@media screen and (max-width: 750px) {
  #function .function01 {
    margin-top: 7.8rem;
  }
}
#function .function01 .function_img {
  float: left;
  margin-right: 4rem;
}
@media screen and (max-width: 750px) {
  #function .function01 .function_img {
    float: none;
    margin-right: 0;
  }
}
#function .function01 .function_txt {
  float: left;
}
@media screen and (max-width: 750px) {
  #function .function01 .function_txt {
    float: none;
  }
}
#function .function01 .function_point {
  position: absolute;
  top: 16.6rem;
  left: 46.3rem;
}
@media screen and (max-width: 750px) {
  #function .function01 .function_point {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 5.6rem;
  }
}
#function .function02 {
  margin-top: 16rem;
  padding-left: 3.5rem;
}
@media screen and (max-width: 750px) {
  #function .function02 {
    margin-top: 10.6rem;
    padding-left: 0;
  }
}
#function .function02 .function_img {
  float: right;
}
@media screen and (max-width: 750px) {
  #function .function02 .function_img {
    float: none;
  }
}
#function .function02 .function_ttl {
  width: 42.2rem;
}
@media screen and (max-width: 750px) {
  #function .function02 .function_ttl {
    width: 100%;
  }
}
#function .function02 .function_point {
  position: absolute;
  top: 28.8rem;
  left: 0;
  padding-left: 3.5rem;
}
@media screen and (max-width: 750px) {
  #function .function02 .function_point {
    position: relative;
    top: 0;
    margin-top: 5.6rem;
    padding-left: 4rem;
  }
}
#function .function03 {
  margin-top: 16rem;
}
@media screen and (max-width: 750px) {
  #function .function03 {
    margin-top: 10.6rem;
  }
}
#function .function03 .function_ttl,
#function .function03 .function_txt {
  padding-left: 3.5rem;
}
@media screen and (max-width: 750px) {
  #function .function03 .function_ttl,
  #function .function03 .function_txt {
    padding-left: 4rem;
  }
}
#function .function03 .function_point {
  width: 100%;
  margin-top: 3.5rem;
  padding-left: 3.5rem;
}
@media screen and (max-width: 750px) {
  #function .function03 .function_point {
    margin-top: 5.6rem;
    padding-left: 4rem;
  }
}
#function .function_pict {
  margin-top: 8rem;
}
@media screen and (max-width: 750px) {
  #function .function_pict {
    margin-top: 10.8rem;
  }
}

#pattern {
  padding: 13rem 0 33rem;
  background: url(../img/bg_pattern_pc.jpg) no-repeat 50% 0;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  #pattern {
    padding: 8rem 0 30rem;
    background: url(../img/bg_pattern_sp.jpg) no-repeat 50% 0;
    background-size: cover;
  }
}
#pattern .pattern_inr {
  position: relative;
  width: 115rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_inr {
    width: 67rem;
  }
}
#pattern .pattern_inr::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -54.7rem;
  left: -15rem;
  width: 67rem;
  height: 46.7rem;
  background: url(../img/pattern_elem.png) no-repeat 0 0;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_inr::after {
    bottom: -47.2rem;
    left: -5rem;
    width: 54.8rem;
    height: 37.6rem;
  }
}
#pattern .pattern_head {
  font-size: 4.6rem;
  font-weight: 900;
  color: #123086;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_head {
    font-size: 4.6rem;
    line-height: 1.696em;
  }
}
#pattern .pattern_list {
  margin-top: 8rem;
  padding: 0 7.7rem;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_list {
    margin-top: 10rem;
    padding: 0 4rem;
  }
}
#pattern .pattern {
  display: flex;
}
@media screen and (max-width: 750px) {
  #pattern .pattern {
    display: block;
  }
}
#pattern .pattern.img_left .pattern_img {
  margin-right: 3.5rem;
  margin-left: 2.3rem;
}
@media screen and (max-width: 750px) {
  #pattern .pattern.img_left .pattern_img {
    margin-right: auto;
    margin-left: auto;
  }
}
#pattern .pattern.img_right .pattern_img {
  margin-right: 2rem;
  margin-left: 4rem;
  order: 2;
}
@media screen and (max-width: 750px) {
  #pattern .pattern.img_right .pattern_img {
    margin-right: auto;
    margin-left: auto;
  }
}
#pattern .pattern + .pattern {
  margin-top: 7.5rem;
}
@media screen and (max-width: 750px) {
  #pattern .pattern + .pattern {
    margin-top: 8rem;
  }
}
#pattern .pattern_img {
  width: 20.2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_img {
    width: 25rem;
  }
}
#pattern .pattern_ttl {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.786em;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_ttl {
    margin-top: 4rem;
    font-size: 4.2rem;
    line-height: 1.81em;
  }
}
#pattern .pattern_ttl > span {
  display: block;
  font-size: 2.2rem;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_ttl > span {
    font-size: 3.3rem;
  }
}
#pattern .pattern_txt {
  margin-top: 0.5rem;
  font-size: 2rem;
  line-height: 1.9em;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_txt {
    margin-top: 2.5rem;
    font-size: 3rem;
    line-height: 1.9em;
  }
}
#pattern .pattern_example {
  margin-top: 12rem;
  padding: 9rem 0;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_example {
    margin-top: 8.5rem;
    padding: 10rem 0 16rem;
  }
}
#pattern .pattern_example_ttl {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 900;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_example_ttl {
    font-size: 3.6rem;
  }
}
#pattern .pattern_example_ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  margin-top: 0.7rem;
  background-color: #333;
}
#pattern .pattern_example_img {
  width: 95rem;
  margin: 7rem auto 0;
}
@media screen and (max-width: 750px) {
  #pattern .pattern_example_img {
    width: 59.2rem;
    margin: 8rem auto 0;
  }
}

#series {
  margin-top: 23rem;
}
@media screen and (max-width: 750px) {
  #series {
    margin-top: 23rem;
  }
}
#series .series_inr {
  width: 150rem;
  margin: 0 auto;
  padding: 13rem 0 28rem;
  background: url(../img/bg_series.png) -1.8rem -0.5rem;
}
@media screen and (max-width: 750px) {
  #series .series_inr {
    width: 100%;
    padding: 7.5rem 0 25.5rem;
    background-size: 7rem auto;
  }
}
#series .series_header {
  font-size: 4.6rem;
  font-weight: 900;
  color: #123086;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #series .series_header {
    font-size: 5.8rem;
    line-height: 1.69em;
  }
}
#series .series_list {
  position: relative;
  margin-top: 8rem;
  padding-right: 18rem;
}
@media screen and (max-width: 750px) {
  #series .series_list {
    margin-top: 7rem;
    padding-right: 0;
    padding-top: 6rem;
  }
}
#series .series_list::before {
  content: "";
  position: absolute;
  top: 5rem;
  right: 0;
  display: block;
  width: 125rem;
  height: 106%;
  background-color: #95c007;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  #series .series_list::before {
    top: 0;
    width: 100%;
    height: 110%;
  }
}
#series .series_list > li {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 5rem;
  padding-left: 22rem;
  background-color: #f4f4f4;
  box-shadow: 5px 5px 10px -3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 750px) {
  #series .series_list > li {
    display: block;
    width: 67rem;
    margin: 0 auto;
    padding-top: 6.4rem;
    padding-left: 0;
  }
}
#series .series_list > li:not(:last-child) {
  margin-bottom: 6rem;
}
@media screen and (max-width: 750px) {
  #series .series_list > li:not(:last-child) {
    margin-bottom: 8.3rem;
  }
}
#series .series_list > li:nth-of-type(1) .series_img {
  width: 39.5rem;
  margin-top: 3.3rem;
}
@media screen and (max-width: 750px) {
  #series .series_list > li:nth-of-type(1) .series_img {
    width: 41rem;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
#series .series_list > li:nth-of-type(2) .series_img {
  width: 44.1rem;
  margin-top: 5rem;
  margin-left: -3rem;
}
@media screen and (max-width: 750px) {
  #series .series_list > li:nth-of-type(2) .series_img {
    width: 45rem;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
#series .series_list > li:nth-of-type(3) .series_img {
  width: 26rem;
  margin-top: 5rem;
  margin-left: 5.7rem;
}
@media screen and (max-width: 750px) {
  #series .series_list > li:nth-of-type(3) .series_img {
    width: 30rem;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
  }
}
#series .series_list > li:nth-of-type(4) .series_img {
  width: 35.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 750px) {
  #series .series_list > li:nth-of-type(4) .series_img {
    width: 41rem;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
#series .series_head {
  padding-top: 9rem;
}
@media screen and (max-width: 750px) {
  #series .series_head {
    padding-top: 0;
  }
}
#series .series_ttl {
  display: inline-block;
  width: 35.7rem;
  padding: 1rem 0;
  font-size: 2.8rem;
  font-weight: 700;
  color: #95c007;
  text-align: center;
  background-color: #fff;
  border: solid 0.6rem #95c007;
}
@media screen and (max-width: 750px) {
  #series .series_ttl {
    display: block;
    width: 42.6rem;
    margin: 0 auto;
    padding: 1rem 0;
    font-size: 3.4rem;
    line-height: 1.353em;
    border-width: 0.6rem;
  }
}
#series .series_ttl span {
  font-size: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 750px) {
  #series .series_ttl span {
    font-size: 2.4rem;
  }
}
#series .series_cont {
  flex-shrink: 0;
  width: 62rem;
  padding: 1.5rem 7rem 1.5rem 5rem;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  #series .series_cont {
    width: 100%;
    margin-top: 5.8rem;
    padding: 2rem 4rem;
  }
}
#series .series_detail {
  width: 100%;
}
#series .series_detail tr:not(:last-child) {
  border-bottom: solid 1px #d4d4d4;
}
#series .series_detail th,
#series .series_detail td {
  vertical-align: middle;
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  #series .series_detail th,
  #series .series_detail td {
    font-size: 2.6rem;
  }
}
#series .series_detail th {
  padding-right: 3rem;
  font-weight: 900;
  line-height: 1.438em;
}
@media screen and (max-width: 750px) {
  #series .series_detail th {
    width: 20.5rem;
    padding-right: 0;
    line-height: 1.539em;
  }
}
#series .series_detail td {
  padding: 1.4rem 0;
  line-height: 1.5em;
  display: block;
}
@media screen and (max-width: 750px) {
  #series .series_detail td {
    padding: 2rem 0;
    line-height: 1.539em;
  }
}
#series .series_detail td span {
  display: block;
  font-size: 1.4rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 750px) {
  #series .series_detail td span {
    font-size: 2.4rem;
    line-height: 1.417em;
  }
}
#series .series_detail .non-pt {
  padding-top: 0;
}
#series .series_detail .non-pb {
  padding-bottom: 0;
}
#series .series_detail .idt {
  text-indent: -1em;
  padding-left: 1em;
}
#series .series_annotation {
  position: relative;
  width: 98rem;
  margin-top: 3rem;
  margin-left: 27rem;
  padding-left: 2em;
  text-indent: -2em;
  font-size: 1.4rem;
  line-height: 1.572em;
}
@media screen and (max-width: 750px) {
  #series .series_annotation {
    width: 59rem;
    margin-top: 5.8rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.6rem;
  }
}
#series .series_annotation + .series_annotation {
  margin-top: 0;
}

#option {
  padding: 13.5rem 0 15rem;
  background: url(../img/bg_option.jpg) no-repeat 50% 0;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  #option {
    padding: 7rem 0 14.5rem;
    background: url(../img/bg_option_sp.jpg) no-repeat 50% 0;
    background-size: 100% auto;
  }
}
#option .option_inr {
  width: 150rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #option .option_inr {
    width: 100%;
  }
}
#option .option_head {
  font-size: 4.6rem;
  font-weight: 900;
  color: #123086;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #option .option_head {
    font-size: 5.8rem;
    line-height: 1.69em;
  }
}
#option .option_txt {
  margin-top: 6.5rem;
  font-size: 1.8rem;
  text-align: center;
  line-height: 2em;
}
@media screen and (max-width: 750px) {
  #option .option_txt {
    margin-top: 7.5rem;
    font-size: 3.2rem;
    line-height: 1.719em;
  }
}

#contact {
  width: 100%;
  height: 35.8rem;
  background: #123086;
}
@media screen and (max-width: 750px) {
  #contact {
    height: 73.4rem;
  }
}
#contact .wrap {
  max-width: 600px;
  margin: auto;
  position: relative;
}
#contact .wrap .contact-lead {
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding-top: 7.5rem;
}
@media screen and (max-width: 750px) {
  #contact .wrap .contact-lead {
    padding-top: 9rem;
    font-size: 5.2rem;
    line-height: 1.693em;
    font-weight: 600;
  }
}
#contact .wrap .contact-txt {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  #contact .wrap .contact-txt {
    font-size: 3.2rem;
    line-height: 1.688em;
  }
}
#contact .wrap .contact {
  width: 40rem;
  height: 7rem;
  margin: 5rem auto 0;
  border: 2px solid #fff;
  border-radius: 4rem;
  background: #fff;
  transition: 0.2s;
}
#contact .wrap .contact:hover {
  background: #123086;
}
#contact .wrap .contact .mail {
  width: 2rem;
  height: 1.5rem;
}
#contact .wrap .contact .txt {
  position: static;
  font-size: 1.8rem;
  margin-left: 0.5rem;
  color: #123086;
  font-weight: 600;
}
#contact .wrap .contact a {
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 1;
  justify-content: center;
  align-items: center;
}
#contact .wrap .center {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
#contact .wrap .contact03 {
  width: 59rem;
  margin: 8rem auto 0;
}

footer {
  width: 100%;
}
footer .box {
  max-width: 1000px;
  margin: 3.5rem auto;
  background: #fff;
  display: flex;
}
@media screen and (max-width: 750px) {
  footer .box {
    margin: 8.5rem auto 15rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer .box .logo {
  width: 14rem;
  margin-right: 5rem;
}
@media screen and (max-width: 750px) {
  footer .box .logo {
    width: 30rem;
    margin-right: 0;
  }
}
footer .box .company {
  width: 20rem;
  height: 4rem;
  color: #123086;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  position: relative;
  margin-top: 1rem;
  border: 1px solid #123086;
}
footer .box .company a {
  color: #123086;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: 0.2s;
}
footer .box .company a:hover {
  color: #fff;
  background: #123086;
}
@media screen and (max-width: 750px) {
  footer .box .company a:hover {
    color: #123086;
    background: #fff;
  }
}
@media screen and (max-width: 750px) {
  footer .box .company a {
    color: #123086;
  }
}
@media screen and (max-width: 750px) {
  footer .box .company {
    width: 40rem;
    height: 8rem;
    background: #fff;
    color: #123086;
    border: 1px solid #123086;
    font-size: 2.8rem;
    margin-top: 3.5rem;
  }
}
footer .box .company .blank {
  position: absolute;
  right: 2rem;
  width: 1rem;
}
@media screen and (max-width: 750px) {
  footer .box .company .blank {
    right: 5rem;
    width: 2rem;
  }
}
footer .rights {
  width: 100%;
  background: #123086;
}
footer .rights .rights-txt {
  height: 4rem;
  font-size: 1rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 750px) {
  footer .rights .rights-txt {
    height: 9.6rem;
    font-size: 2rem;
    letter-spacing: 0.08rem;
    text-align: center;
  }
}

#page-top {
  position: fixed;
  bottom: 8rem;
  right: 20px;
  font-size: 80%;
  z-index: 900;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  #page-top {
    right: 3.5rem;
    bottom: 12.5rem;
  }
}
#page-top .top {
  width: 4.6rem;
}
@media screen and (max-width: 750px) {
  #page-top .top {
    width: 8rem;
  }
}

#page-top a {
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.cookie_block {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 3rem 7rem;
  z-index: 901;
  visibility: hidden;
}
@media screen and (max-width: 750px) {
  .cookie_block {
    padding: 8rem 5rem 5rem;
  }
}
.cookie_block.is-show {
  visibility: visible;
}
.cookie_block.cookie_block-hide {
  animation: hide 0.7s linear 0s;
  animation-fill-mode: forwards;
}

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.cookie_inr {
  display: flex;
  align-items: center;
  gap: 11rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .cookie_inr {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    margin: 0 auto;
  }
}

.cookie_text {
  font-size: 1.4rem;
  line-height: 2em;
}
@media screen and (max-width: 750px) {
  .cookie_text {
    font-size: 2.6rem;
  }
}
.cookie_text a {
  display: inline;
  color: inherit;
  text-decoration: underline;
}

.cookie_agree {
  padding: 1.6rem 2.6rem;
  font-size: 1.5rem;
  border: solid 1px #fff;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .cookie_agree {
    padding: 2.4rem 8rem;
    font-size: 2.6rem;
  }
}

.cookie_close {
  font-size: 2.8rem;
  cursor: pointer;
  font-weight: 100;
}
@media screen and (max-width: 750px) {
  .cookie_close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
  }
}

@media all and (-ms-high-contrast: none) {
  .header-wrapper h1 {
    position: relative;
    left: 8rem;
    z-index: 3;
  }
  header .contact {
    position: relative;
    top: -6rem;
    right: -120rem;
  }
  .img-box-itm img {
    min-height: 0%;
  }
  #gNav .gNav-menu li:nth-child(5) {
    padding-right: 3.4rem;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 1600px) {
  header .contact {
    right: -140rem;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 1800px) {
  header .contact {
    right: -160rem;
  }
}
.kerning01 {
  margin-left: -0.5em;
}

.kerning02 {
  margin-right: -0.5em;
}