@charset "utf-8";
/*
Auther: AtoZ service
*/
/*** Google Fontsを利用する ***/
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
/********** 変数 **********/
:root {
  /* 基準 */
  --body-bg-color: white;
  --primary-font-size: 16px;
  --primary-font-color: whitesmoke;
  --primary-font-color: var(--font-color-1);
  --link-font-color: whitesmoke;
  --link-font-color: var(--font-color-1);
  --link-text-decoration: none;
  
  --heading-font-color: var(--primary-font-color);
  --heading-font-color: var(--logo-color-1);
  --heading-font-weight: bolder;
  
  --primary-bg-color: #00477e;
  --primary-bg-color: var(--logo-color-4);
  --primary-point-color: #73c7e6;
  --primary-point-color: var(--logo-color-2);
  --primary-point-color-rgb: 16,156,218;
  
  --section-bg-color-1: var(--logo-color-3);
  --section-bg-color-1: rgba(4,50,109,0.9);
  --section-bg-color-2: aliceblue;
  --section-bg-color-pr: rgb(187,214,238);
  --heading-font-color-1: var(--logo-color-4);
  --heading-font-color-2: var(--heading-font-color);
  --section-font-color-1: var(--logo-color-4);
  --section-font-color-2: var(--primary-font-color);
  --section-decoration-svg-height: 30px;
  --section-decoration-svg-height-: -30px;
  
  --header-menu-pc-min-width: 70px;
  --header-menu-pc-max-width: 180px;
  --logo-pc-min-height: 40px;
  --header-menu-pc-height: 60px;
  --header-menu-bg-color: rgba(255,255,255,0.5);
  --header-menu-bg-hover-color: rgb(255,255,255);
  --header-menu-item-bg-hover-color: rgba(16,156,218,0.5);
  --header-icon-color: var(--logo-color-3);
  --header-link-color: var(--header-icon-color);
  
  --top-pc-height: 80vh;
  
  --menubar-font-size: 16px; /* 文字サイズ */
  --menubar-sp-height: 70px; /* スマホメニューの高さ */
  --partner-logo-width: 30%; /* ビジタイの和それぞれのロゴの幅 */
  --title-font-size: 160%; /* 各コンテンツ小見出しのフォントサイズ */

  --margin-right: 2em;
  --margin-left: calc(var(--header-menu-pc-min-width) + var(--margin-right));
  --middle-margin-right: 1em;
  --middle-margin-left: var(--middle-margin-right);
  --min-margin-right: 0.5em;
  --min-margin-left: var(--min-margin-right);
  
  --logo-color-1: #1758a7;
  --logo-color-2: #109cda;
  --logo-color-3: #04326d;
  --logo-color-4: white;
  
  --font-color-1: #081f2c;
  
  --sbox-bg-color: var(--logo-color-3);
  --sbox-bg-color: rgba(4,50,109,0.9);
  --sbox-frame-color: var(--logo-color-4);
  --sbox-frame-color: rgba(255,255,255,0.8);
  --sbox-font-color: var(--logo-color-4);
  --sbox-heading-color: var(--logo-color-4);
  --sbox-heading-font-weight: normal;
  --sbox-heading-decoration-color: var(--logo-color-2);
  
  --page-link-bg-color-1: var(--logo-color-1);
  --page-link-bg-color-2: var(--logo-color-3);
  --page-link-bg-hover-color: var(--logo-color-2);
  --page-link-font-color: var(--logo-color-4);
  
  --internal-links-height: 6em;
  --caseStudies-height: 64px;
  
  --point-color: #fe7f4c;
}
@media print {
  :root {
    --primary-font-color: #333333;
  }
}

/********** cssのリセット **********/
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 {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}
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 {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}
@media print {
  * {
    color: black;
    background-color: var(--section-bg-color-2);
  }
  body {
    width: 100%;
  }
}

/********** Google Material icons **********/
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* 推奨サイズ */
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  /* WebKitブラウザサポート */
  -webkit-font-smoothing: antialiased;
  /* Chrome、Safariサポート */
  text-rendering: optimizeLegibility;
  /* Firefoxサポート */
  -moz-osx-font-smoothing: grayscale;
  /* IEサポート */
  font-feature-settings: 'liga';
}
/* アイコンサイズ */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-20 { font-size: 20px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-30 { font-size: 30px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

.material-icons.md-kt { color: var(--header-icon-color); }
.material-icons.md-kt.md-inactive { color: rgba(4, 50, 0.9, 0.3); }

/********** サイト全体の基準となるCSS **********/
html {
  font-size: var(--primary-font-size);
  overflow-y: scroll;
  scroll-behavior: smooth;
}
body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--body-bg-color);
  background-color: var(--primary-bg-color);
  font-family: "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2;
  color: var(--primary-font-color);
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-font-color);
  font-weight: var(--heading-font-weight);
}
a {
  color: var(--link-font-color);
  text-decoration: var(--link-text-decoration);
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
span.keep-all {
    word-break: keep-all;
}
/********** コンテンツのサイズ指定 **********/
header,
footer,
.container {
  box-sizing: border-box;
  max-width: 100vw;
}
/** ヘッダー **/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--header-menu-pc-max-width);
  width: var(--header-menu-pc-min-width);
  height: 100vh;
  z-index: 100;
}
/** 記事 **/
.container {
  position: relative;
}
/** フッター **/
footer {
  position: relative;
  padding-right: 2em;
  padding-bottom: 0.5em;
  text-align: end;
  color: #ccc;
  font-size: 80%;
}

@media screen and (max-width: 768px) {
  header {
    width: 0;
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  
}
@media print {
  header {
    position: relative;
    width: 0;
    height: auto;
  }
}


/***** サイトタイトル *****/

/***** ヘッダーメニュー *****/
.header-inner {
  height: 100%;
  pointer-events: none;
}
.header-nav-wrap {
  width: var(--header-menu-pc-min-width);
  height: 100%;
  background-color: var(--header-menu-bg-color);
  border-right: solid 1px #ddd;
  transition: all 0.5s;
  pointer-events: auto;
}
.header-nav-wrap:hover {
  width: var(--header-menu-pc-max-width);
  background-color: var(--header-menu-bg-hover-color);
}
.site-title-wrap {
  /*padding-left: 0.5em;*/
}
.logo a {
  position: relative;
  display: flex;
  color: whitesmoke;
  text-decoration: none;
}
.logo img {
  margin: 0.5em 0;
  transition: all 0.3s;
}
#logo {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--logo-pc-min-height);
  width: auto;
  opacity: 0;
}
#logo-square {
  height: var(--logo-pc-min-height);
  width: auto;
}
.header-nav-wrap:hover #logo {
  opacity: 1;
  transition: all 1s;
}
.header-nav-wrap:hover #logo-square {
  opacity: 0;
  transition: all 1s;
}
/*.logo p {
  font-family: 'Raleway';
  font-size: 110%;
  line-height: 1.8em;
  opacity: 0;
  align-self: center;
}*/
.header-nav {
  height: 100%;
}
.header-nav ul {
  position: relative;
  width: 100%;
  height: calc(100% - var(--header-menu-pc-height));
}
.header-nav li {
  font-size: 1rem;
  position: relative;
}
.header-nav a {
  display: flex;
  width: 100%;
  height: var(--header-menu-pc-height);
  text-decoration: none;
  color: var(--header-link-color);
}
.header-nav .header-nav-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-nav .header-nav-icon i {
  width: var(--header-menu-pc-min-width);
  display: block;
  text-align: center;
  align-self: center;
}
#header-nav-item2 i {
    transform: rotateZ(-90deg);
}
#header-nav-item3 i {
    transform: rotateZ(90deg)
}
.header-nav .header-nav-title {
  opacity: 0;
  align-self: center;
  transform: translateX(-0.3em);
}
/* ホバー時 */
@keyframes menu-open-title {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*
.site-title-wrap:hover .logo p {
  animation-duration: 0.5s;
  animation-delay: 0.2s;
  animation-name: menu-open-title;
  animation-fill-mode: forwards;
}*/
.header-nav-wrap:hover .header-nav-title {
  animation-duration: 1.5s;
  animation-delay: 0.2s;
  animation-name: menu-open-title;
  animation-fill-mode: forwards;
}
.header-nav li:hover {
  background-color: var(--header-menu-item-bg-hover-color);
}
#header-nav-item100 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--header-menu-pc-min-width);
  transition: width 0.5s;
}
.header-nav-wrap:hover #header-nav-item100 {
  width: var(--header-menu-pc-max-width);
}
#header-nav-item100:hover {
  background-color: transparent;
}
#header-nav-item100 a {
  position: relative;
}
#header-nav-item100 .header-nav-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: var(--header-menu-pc-min-width);
  height: var(--header-menu-pc-height);
  transition: transform .5s;
}
.header-nav-wrap:hover #header-nav-item100 .header-nav-icon {
  transform: rotate(540deg);
}
.forPrintInfo {
  display: none;
}
.svg-wrap {
  position: fixed;
  top: 1em;
  right: 1em;
  width: 200px;
  height: 30px;
}
.svg-wrap svg {
  width: 100%;
  height: 100%;
}
.svg-wrap text {
  stroke: #fff;
  stroke-width: 0.5px;
  fill: #fff;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: drawText 2s 0.5s linear;
}
.svg-wrap text.drawn {
  transform-origin: center bottom;
  animation: fallDown 0.5s 0.5s ease-in forwards;
}
.svg-wrap.verticalWriting {
  top: auto;
  right: auto;
  left: 15px;
  left: calc(var(--header-menu-pc-min-width)/2 - 20px);
  bottom: var(--header-menu-pc-height);
  transform: translate(2em) rotate(-90deg);
  transform-origin: left bottom;
}
.svg-wrap text.fellDown {
  fill: transparent;
  transform-origin: left center;
  animation: getUp 0.5s 0s ease-out forwards;
}
.svg-wrap text.gotUp {
  animation: none;
  fill: gray;
}
@keyframes drawText {
  0% {
    stroke-dashoffset: 150;
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  80% {
    stroke-dashoffset: 0;
  }
  100% {
    fill: #333;
  }
}
@keyframes fallDown {
  0% {
    fill: #fff;
    transform: rotateX(0deg);
  }
  70% {
    fill: #fff;
    transform: rotateX(90deg);
  }
  100% {
    fill: transparent;
    transform: rotateX(90deg);
  }
}
@keyframes getUp {
  0% {
    fill: transparent;
    transform: rotateY(90deg);
  }
  20% {
    fill: gray;
    opacity: 80%;
    transform: rotateY(90deg);
  }
  100% {
    fill: gray;
    opacity: 80%;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 768px){
  .header-nav-wrap {
    display: flex;
    align-items: center;
    width: 100vw;
    height: var(--menubar-sp-height);
    padding-top: 0;
    background-color: var(--header-menu-bg-hover-color);
    border-right: none;
  }
  .header-nav-wrap:hover {
    width: 100vw;
  }
  .logo a {
    width: var(--header-menu-pc-max-width);
  }
  .logo img {
    width: var(--header-menu-pc-max-width);
    height: var(--menubar-sp-height);
    margin: 0;
    line-height: 1em;
  }
  #logo {
    top: 15px;
    top: calc(var(--menubar-sp-height) / 2 - var(--logo-pc-min-height) / 2);
    left: 1em;
    opacity: 1;
  }
  #logo-square {
    opacity: 0;
  }
  .header-nav {
    width: 70%;
    width: calc(100% - var(--header-menu-pc-max-width));
  }
  .header-nav ul {
    display: flex;
    justify-content: space-around;
    height: 100%;
  }
  .header-nav li {
    width: 25%;
    width: calc(100% / 4);
  }
  .header-nav a {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
    border-bottom: none;
  }
  .header-nav #header-nav-item1 a {
    
  }
  .header-nav .header-nav-icon i {
    width: 2em;
    padding-top: 0.6em;
  }
  #header-nav-item2 i {
    width: auto;
    padding-top: 0;
    padding-right: 1em;
  }
  #header-nav-item3 i {
    width: auto;
    padding-top: 0;
    padding-left: 1em;
  }
  .header-nav .header-nav-title {
    opacity: 1;
    display: block;
    font-size: 75%;
    width: auto;
    transform: translateY(-0.3em);
  }
  .header-nav-wrap:hover #logo {
    opacity: 1;
  }
  .header-nav-wrap:hover #logo-square {
    opacity: 0;
  }
  .header-nav-wrap:hover .header-nav-title {
    opacity: 1;
    display: block;
    font-size: 75%;
    width: auto;
    transform: translateY(-0.3em);
    animation: none;
  }
  .header-nav-wrap:hover .header-nav .header-nav-icon i {
    width: 2em;
  }
  .header-nav a:hover {
    background-color: transparent;
  }
  #header-nav-item100 {
    display: none;
  }
  .svg-wrap text {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .logo a {
    width: var(--header-menu-pc-min-width);
  }
  #logo {
    opacity: 0;
  }
  #logo-square {
    opacity: 1;
  }
  .header-nav {
    width: calc(100% - var(--header-menu-pc-min-width));
  }
  .header-nav-wrap:hover #logo {
    opacity: 0;
  }
  .header-nav-wrap:hover #logo-square {
    opacity: 1;
  }
}
@media screen and (max-width: 460px) {
  .logo img {
    width: calc(var(--menubar-sp-height) * 0.4 * 3.02);
    height: calc(var(--menubar-sp-height) * 0.4);
  }
}
@media screen and (max-width: 370px) {
  .header-nav .header-nav-title {
    font-size: 65%;
  }
  .header-nav-wrap:hover .header-nav-title {
    font-size: 65%;
  }
}
@media print {
  .header-nav-wrap {
    display: flex;
    align-items: center;
    width: 100vw;
    height: var(--menubar-sp-height);
    padding-top: 0;
    background-color: var(--header-menu-bg-hover-color);
    border-right: none;
  }
  .header-nav-wrap:hover {
    width: 100vw;
  }
  .logo a {
    width: var(--header-menu-pc-max-width);
  }
  .logo img {
    width: var(--header-menu-pc-max-width);
    height: var(--menubar-sp-height);
    margin: 0;
    line-height: 1em;
  }
  #logo {
    position: relative;
    top: 0;
    left: 1em;
    opacity: 1;
  }
  #logo-square {
    opacity: 0;
  }
  .header-nav {
    display: none;
  }
  .forPrintInfo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    width: 70%;
    width: calc(100% - var(--header-menu-pc-max-width));
    height: 100%;
  }
  .forPrintInfo > div {
    display: flex;
  }
  #forPrintInfo_name
  ,#forPrintInfo_tell
  ,#forPrintInfo_address {
    display: flex;
    padding: 0 0.5em;
  }
  #forPrintInfo_name p
  ,#forPrintInfo_tell p
  ,#forPrintInfo_address p {
    font-size: 95%;
    line-height: 1.5;
  }
  #forPrintInfo_name p {
    font-size: 100%;
  }
  #forPrintInfo_address p {
    padding-left: 0.5em;
  }
  .forPrintInfo svg {
    background-color: transparent;
  }
  .svg-wrap text {
    display: none;
  }
  .svg-wrap svg {
    display: none;
  }
}


/***** フッターメニュー *****/

/***** ページトップへ *****/
.toPagetop {
  opacity: 0;
  position: fixed;
  bottom: 3em;
  right: 3%;
  line-height: 3em;
  width: 3em;
  z-index: 100;
}
.toPagetop.disappear {
  pointer-events: none;
  animation: fadeout 0.5s 0s forwards;
}
.toPagetop.appear {
  animation: fadein 0.5s 0s forwards;
}
.toPagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  background-color: rgba(var(--primary-point-color-rgb),0.8);
  color: var(--logo-color-4);
}
.toPagetop i {
  transform: translateY(0.3em);
}
.toPagetop a:hover {
  background-color: var(--primary-point-color);
}
@media screen and (max-width: 768px) {
  .toPagetop.toPage-menu {
    pointer-events: auto;
    cursor: pointer;
  }
  .toPagetop.toPage-menu a {
    pointer-events: none;
    cursor: pointer;
  }
}
@media screen and (max-width: 460px) {
  .toPagetop {
    bottom: 0.5em;
  }
}
@media print {
  .toPagetop a {
    display: none;
  }
}

/***** 背景画像 *****/
.container-bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  min-width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}
.container-bg-image {
  position: absolute;
  left: 0;
  top: 0;
  min-width: inherit;
  min-height: inherit;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home .container-bg-wrapper {
  background-color: var(--primary-bg-color);
}
.home .top {
  height: var(--top-pc-height);
  position: relative;
}
.home #bg-video {
  /*opacity: 0.7;*/
  animation: zoomUp 15s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
@keyframes zoomUp {
  0% {
    opacity: 0;
    transform: scale(1);
  } 25% {
    opacity: 1;
  } 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeinout {
  0% {
    background: var(--body-bg-color);
    opacity: 1;
  } 13% {
    background: var(--body-bg-color);
    opacity: 1;
  } 33% {
    background: var(--body-bg-color);
    opacity: 0;
  } 87% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-info {
  position: fixed;
  top: calc(var(--top-pc-height)/2 - 1em);
  width: 100%;
  text-align: center;
  font-size: 350%;
  font-weight: bold;
}
.top-info p,
.top-info i {
  display: inline;
  vertical-align: middle;
  color: var(--primary-bg-color);
  color: var(--primary-point-color);
  animation: topinfo 3s 0s ease forwards;
}
.top-info .second {
  display: none;
}
@keyframes topinfo {
  0% {
    opacity: 1;
  } 75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.gradation-upper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.gradation-upper img {
  width: 100%;
  vertical-align: bottom;
}
.gradation-lower {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.gradation-lower img {
  width: 100%;
  vertical-align: bottom;
  transform: translateY(1px);
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  .gradation-upper 
  ,.home .top {
    display: none;
  }
}
/***** ページ共通 *****/
body {
  opacity: 0;
  animation: fadein 0.5s 0.5s 1 forwards;
}
.contents {
  position: relative;
}
section {
  position: relative;
  margin: var(--section-decoration-svg-height) 0;
  width: calc(100% - var(--margin-left) - var(--margin-right));
  margin-left: var(--margin-left);
  margin-right: var(--margin-right);
}
section > div {
  width: 850px;
  margin: 0 auto;
}
.contents > section:nth-last-of-type(1) {
  margin-bottom: 3em;
}
.section-description {
  padding-top: 2em;
}
.section-description h2
,.section-contents .content {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.section-description .title {
  /*height: 2em;*/
  font-size: 130%;
  font-weight: var(--heading-font-weight);
  text-align: center;
}
.section-description .title p {
  display: inline-block;
  border-bottom: solid var(--logo-color-2);
  line-height: normal;
}
section:nth-child(odd) {
  background-color: var(--section-bg-color-1);
}
section:nth-child(even) {
  background-color: var(--section-bg-color-2);
}
section:nth-child(odd) .section-description .title {
  color: var(--heading-font-color-1);
}
section:nth-child(even) .section-description .title {
  color: var(--heading-font-color-2);
}
section:nth-child(odd) .section-description
,section:nth-child(odd) .section-contents {
  color: var(--section-font-color-1);
}
section:nth-child(even) .section-description
,section:nth-child(even) .section-contents {
  color: var(--section-font-color-2);
}
.section-contents {
  padding-top: 1em;
  padding-bottom: 2em;
}
.section-contents .content {
  padding-bottom: 2em;
}
.section-contents .content:nth-last-child(1) {
  padding-bottom: 0;
}
.section-contents .content > span {
  display: flex;
}
.section-contents .content > span p,
.section-contents .content > span i {
  padding-right: 0.5em;
}
.section-contents .content h3 > p::before {
  content: '―';
  padding-right: 0.3em;
}
.section-contents .content h3 > p::after {
  content: '―';
  padding-left: 0.3em;
}
.section-contents .content h4 {
  
}
/**/
.section-decoration-svg {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}
section:nth-child(odd) .section-decoration-svg {
  fill: var(--section-bg-color-1);
}
section:nth-child(even) .section-decoration-svg {
  fill: var(--section-bg-color-2);
}
.section-decoration-svg.svg-top {
  /*top: -1px;*/
  top: -30px;
  top: var(--section-decoration-svg-height-);
  height: var(--section-decoration-svg-height);
}
.section-decoration-svg.svg-bottom {
  /*bottom: -1px;*/
  bottom: -30px;
  bottom: var(--section-decoration-svg-height-);
  height: var(--section-decoration-svg-height);
}
.section-decoration-svg path,
.section-decoration-svg polygon {
  
}
@media screen and (max-width: 1024px) {
  section > div {
    width: auto;
    padding: 0 1em;
  }
}
@media screen and (max-width: 768px) {
  section {
    width: calc(100% - var(--middle-margin-left) - var(--middle-margin-right));
    margin-left: var(--middle-margin-left);
    margin-right: var(--middle-margin-right);
  }
}
@media screen and (max-width: 480px) {
  section {
    width: calc(100% - var(--min-margin-left) - var(--min-margin-right));
    margin-left: var(--min-margin-left);
    margin-right: var(--min-margin-right);
  }
  section > div {
    padding: 0 0.5em;
  }
}
@media print {
  section {
    margin: 0;
    width: auto;
    /*break-inside: avoid;*/
  }
  section:nth-child(odd) {
    background-color: var(--section-bg-color-pr);
  }
  section > div {
    width: auto;
  }
  .section-decoration-svg {
    display: none;
  }
  .section-contents .content {
    
  }
  .section-description {
    padding-top: 0.5em;
  }
  .section-contents {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .section-description h2
  ,.section-description .desctiption
  ,.section-contents .content {
    padding-right: 1em;
    padding-left: 1em;
  }
  .contents > section:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}

.img-inner {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/***** home *****/
.home .toPagetop {
  display: none;
}
.home .toPagetop.toPage-menu {
  display: block;
}
/** aboutus **/
#aboutus {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  background-color: transparent;
}
#aboutus .img {
  position: relative;
  width: 100%;
  height: 90vh;
  height: calc(100vh - var(--internal-links-height));
  z-index: -1;
}
#aboutus > div {
  padding: 0;
  margin: 0;
  width: auto;
}
#aboutus .s-box {
  width: 34em;
  max-width: none;
}
#aboutus #boxframein .s-box {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  #aboutus .s-box {
    width: 30em;
  }
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 550px) {
  #aboutus .s-box {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  
}
@media print {
  #aboutus .img {
    display: none;
  }
  #aboutus .s-box {
    width: auto;
  }
}
/** page-menu **/
#page-menu {
  margin: 0;
  padding: 0;
  width: 100%;
  height: var(--internal-links-height);
}
#page-menu ul {
  display: flex;
  height: 100%;
}
#page-menu li {
  width: 33%;
  width: calc(100% / 3);
  height: 100%;
}
#page-menu li:nth-child(odd) a {
  background-color: var(--page-link-bg-color-1);
}
#page-menu li:nth-child(even) a {
  background-color: var(--page-link-bg-color-2);
}
#page-menu a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--page-link-font-color);
  transition: all 0.2s;
  outline-offset: -3px;
  outline-style: groove;
  outline-color: var(--page-link-font-color);
  outline-width: 1px;
}
#page-menu li:nth-child(odd) a:hover,
#page-menu li:nth-child(even) a:hover {
  background-color: var(--page-link-bg-hover-color);
}
.heading {
  padding: 0 1em;
  padding-bottom: 1.5em;
  text-align: center;
  line-height: 1.5;
}
.below {
  position: absolute;
  bottom: 0.5em;
  width: 15px;
  height: 15px;
  margin-bottom: 15px;
  transform: translate(0) rotate(45deg);
}
.below span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 3px;
  height: 3px;
  background-color: var(--page-link-font-color);
  border-radius: 50%;
  transition: all .15s cubic-bezier(.47,0,.745,.715);
  pointer-events: none;
}
.below span:nth-child(2) {
  bottom: 6px;
}
.below span:nth-child(3) {
  bottom: 12px;
}
.below span:nth-child(4) {
  right: 6px;
}
.below span:nth-child(5) {
  right: 12px;
}
.below span:nth-child(6) {
  right: 6px;
  bottom: 6px;
}
#page-menu a:hover .below span {
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  .heading {
    font-size: 90%;
  }
}
@media print {
  #page-menu {
    display: none;
  }
}

/** features **/
#features {
  margin-top: 3em;
}
#features .section-decoration-svg.svg-top {
  fill: var(--primary-bg-color);
  background-color: var(--section-bg-color-2);
}
#features .section-decoration-svg.svg-top path,
#features .section-decoration-svg.svg-top polygon {
  transform: none;
}
#features li {
  font-size: 110%;
  line-height: 2.2;
}
#features li > div p {
  position: relative;
}
#features li > div:nth-child(odd) {
  
}
#features li > div:nth-child(even) p {
  padding-left: 2.5em;
}
#features li > div:nth-child(odd) p::before {
  content: '■';
  color: var(--logo-color-2);
}
#features li > div:nth-child(odd) p::after {
  content: '■';
  position: absolute;
  top: 0.1rem;
  left: -0.1rem;
  color: var(--logo-color-3);
}
#features li > div:nth-child(even) p:nth-child(1)::before {
  content: '⇒';
  position: absolute;
  left: 1em;
}
#features li > div:nth-child(even) p:nth-child(n+2)::before {
  content: '';
  padding-right: 1.5em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  #features li > div:nth-child(even) p {
    padding-left: 2em;
  }
  #features li > div:nth-child(even) p:nth-child(1)::before {
    left: 0.5em;
  }
}
@media print {
  #features {
    margin-top: 0;
  }
  #features li {
    break-inside: avoid;
  }
}

/** greetings **/
#greetings {
  
}

/** company **/
#company .section-decoration-svg.svg-bottom {
  fill: var(--primary-bg-color);
  background-color: var(--section-bg-color-2);
  transform: rotateX(180deg);
}
#company .section-decoration-svg.svg-bottom path,
#company .section-decoration-svg.svg-bottom polygon {
  transform: none;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  
}
#company h3 {
  text-align: center;
  color: var(--primary-font-color);
  font-size: 110%;
  font-weight: normal;
}
#company_info li {
  display: flex;
  width: 100%;
  line-height: 2.5;
  border-bottom: solid 1px #ddd;
}
#company_info li:nth-last-child(1) {
  border-bottom: none;
}
#company_info .key {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15em;
  text-align: center;
}
#company_info .value {
  width: calc(100% - 15em);
  padding-left: 0.5em;
}
#company_brochure a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4em;
  background-color: var(--page-link-bg-color-2);
  color: var(--section-font-color-1);
  border-radius: 0.5em;
  transition: all 0.2s;
  outline-offset: -3px;
  outline-style: groove;
  outline-color: var(--page-link-font-color);
  outline-width: 1px;
}
#company_brochure a:hover {
  background-color: var(--page-link-bg-hover-color);
}
#company_brochure a > p {
  font-weight: bold;
  letter-spacing: .2em;
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 640px) {
  #company_info .key {
    width: 10em;
  }
  #company_info .value {
    width: calc(100% - 10em);
  }
}
@media screen and (max-width: 480px) {
  #company_info li {
    flex-direction: column;
  }
  #company_info .key {
    width: 100%;
    color: var(--section-bg-color-2);
    background-color: var(--section-bg-color-1);
  }
  #company_info .value {
    width: 100%;
    padding-left: 0;
  }
}
@media print {
  #company_info li {
    break-inside: avoid;
  }
  #y-sdgs {
    width: 400px;
    margin: 0 auto; 
  }
}

/***** import *****/
.import .toPagetop {
  display: block;
}
.import .toPagetop.toPage-menu {
  display: none;
}
/** page-link **/
#page-link {
  margin: 0;
  padding: 0;
  width: 100%;
  height: var(--internal-links-height);
}
#page-link ul {
  display: flex;
  height: 100%;
}
#page-link li {
  width: 100%;
  height: 100%;
}
#page-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--page-link-font-color);
  background-color: var(--page-link-bg-color-2);
  transition: all 0.2s;
  outline-offset: -3px;
  outline-style: groove;
  outline-color: var(--page-link-font-color);
  outline-width: 1px;
}
#page-link li a:hover {
  background-color: var(--page-link-bg-hover-color);
}
#page-link .heading {
  padding-bottom: 0;
}
.right {
  width: 15px;
  height: 15px;
  margin-bottom: 15px;
  transform: translateY(50%) rotate(-45deg);
}
.right span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 3px;
  height: 3px;
  background-color: var(--page-link-font-color);
  border-radius: 50%;
  transition: all .15s cubic-bezier(.47,0,.745,.715);
  pointer-events: none;
}
.right span:nth-child(2) {
  bottom: 6px;
}
.right span:nth-child(3) {
  bottom: 12px;
}
.right span:nth-child(4) {
  right: 6px;
}
.right span:nth-child(5) {
  right: 12px;
}
.right span:nth-child(6) {
  right: 6px;
  bottom: 6px;
}
#page-link a:hover .right span {
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  #page-link {
    display: none;
  }
}

/** aboutImport **/
#aboutImport {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  background-color: transparent;
}
#aboutImport .img {
  position: relative;
  width: 100%;
  height: 90vh;
  height: calc(100vh - var(--internal-links-height));
  z-index: -1;
}
#aboutImport > div {
  padding: 0;
  margin: 0;
  width: auto;
}
#aboutImport #boxframein .s-box {
  margin: 0;
  max-width: none;
}
#aboutImport .s-box {
  width: 30em;
}
@media screen and (max-width: 1024px) {
  #aboutImport #boxframein .s-box {
    margin: 0;
    max-width: none;
  }
  #aboutImport .s-box {
    width: 26em;
  }
}
@media screen and (max-width: 910px) {
  
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  #aboutImport {
    padding-top: var(--menubar-min-landscape-height);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  #aboutImport {
    padding-top: var(--menubar-min-portrait-height);
  }
}
@media screen and (max-width: 550px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  #aboutImport .img {
    display: none;
  }
  #aboutImport .s-box {
    width: auto;
  }
}

/** customsClearance **/
#customsClearance {
  margin-top: 3em;
}
#customsClearance .section-decoration-svg.svg-top {
  fill: var(--primary-bg-color);
  background-color: var(--section-bg-color-2);
}
#customsClearance .section-decoration-svg.svg-top path,
#customsClearance .section-decoration-svg.svg-top polygon {
  transform: none;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  #customsClearance {
    margin-top: 0;
  }
}

#customsClearance h3 {
  text-align: center;
  color: var(--section-font-color-2);
  font-size: 110%;
  font-weight: normal;
}
#customsClearance ul {
  display: flex;
  flex-wrap: wrap;
}
#customsClearance li {
  display: flex;
  justify-content: space-around;
  width: 25%;
  width: calc(100% / 4);
  padding: 0.5em 0;
}
#customsClearance li .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--caseStudies-height);
  height: var(--caseStudies-height);
}
#customsClearance li .image svg path
,#customsClearance li .image svg rect
,#customsClearance li .image svg polygon {
  fill: var(--section-font-color-2);
  fill: var(--header-icon-color);
}
#customsClearance li .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - var(--caseStudies-height) - 1em);
  height: var(--caseStudies-height);
  padding: 0 0.5em;
}
#customsClearance li .item > p:nth-last-child(1) {
  align-self: center;
  display: inline-block;
  font-size: 80%;
  line-height: 1.1;
}
#customsClearance li .item > p:nth-last-child(1).break {
  text-align: end;
}
#customsClearance li .item > p.center {
  text-align: center;
  line-height: 1.2;
  padding-bottom: 0.4em;
}
@media screen and (max-width: 850px) {
  #customsClearance li {
    width: 33%;
    width: calc(100% / 3);
  }
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 620px) {
  #customsClearance li {
    width: 50%;
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 480px) {
  #customsClearance li {
    width: 100%;
  }
  #customsClearance li .item > p {
    text-align: center;
  }
}
@media print {
  #customsClearance li .item {
    width: calc(100% - var(--caseStudies-height) - 0.4em);
    padding: 0 0.2em;
  }
  #customsClearance li .item > p:nth-child(1) {
    font-size: 90%;
  }
}
/** others **/
#others .section-decoration-svg.svg-bottom {
  fill: var(--primary-bg-color);
  background-color: var(--section-bg-color-1);
  transform: rotateX(180deg);
}
#others .section-decoration-svg.svg-bottom path,
#others .section-decoration-svg.svg-bottom polygon {
  transform: none;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  
}
#others ul {
  display: flex;
  flex-wrap: wrap;
}
#others li {
  display: flex;
  justify-content: space-around;
  width: 25%;
  width: calc(100% / 4);
  padding: 0.5em 0;
}
#others li .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--caseStudies-height);
  height: var(--caseStudies-height);
}
#others li .image svg path
,#others li .image svg rect
,#others li .image svg polygon {
  fill: var(--section-font-color-1);
}
#others li .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - var(--caseStudies-height) - 1em);
  height: var(--caseStudies-height);
  padding: 0 0.5em;
}
#others li .item > p:nth-last-child(1) {
  align-self: center;
  display: inline-block;
  font-size: 80%;
  line-height: 1.1;
}
#others li .item > p:nth-last-child(1).break {
  text-align: end;
}
#others li .item > p.center {
  text-align: center;
  line-height: 1.2;
  padding-bottom: 0.4em;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  #others li {
    width: 100%;
  }
  #others li .item > p {
    align-self: center;
    text-align: center;
  }
}
@media print {
  #others li .item {
    width: calc(100% - var(--caseStudies-height) - 0.4em);
    padding: 0 0.2em;
  }
  #others li .item > p:nth-child(1) {
    font-size: 90%;
    word-break: keep-all;
  }
  #others li .image svg {
    background-color: transparent;
  }
  #others li .image svg path
  ,#others li .image svg rect
  ,#others li .image svg polygon {
    fill: var(--header-icon-color);
  }
}
/***** export *****/
.export .toPagetop {
  display: block;
}
.export .toPagetop.toPage-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  
}
/** aboutExport **/
#aboutExport {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  background-color: transparent;
}
#aboutExport .img {
  position: relative;
  width: 100%;
  height: 90vh;
  height: calc(100vh - var(--internal-links-height));
  z-index: -1;
}
#aboutExport > div {
  padding: 0;
  margin: 0;
  width: auto;
}
#aboutExport #boxframein .s-box {
  margin: 0;
  max-width: none;
}
#aboutExport .s-box {
  width: 30em;
}
@media screen and (max-width: 1024px) {
  #aboutExport #boxframein .s-box {
    margin: 0;
    max-width: none;
  }
  #aboutExport .s-box {
    width: 26em;
  }
}
@media screen and (max-width: 910px) {
  
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  #aboutExport {
    padding-top: var(--menubar-min-landscape-height);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  #aboutExport {
    padding-top: var(--menubar-min-portrait-height);
  }
}
@media screen and (max-width: 550px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  #aboutExport .img {
    display: none;
  }
  #aboutExport .s-box {
    width: auto;
  }
}
/** packing **/
#packing .section-decoration-svg.svg-bottom {
  fill: var(--primary-bg-color);
  background-color: var(--section-bg-color-1);
  transform: rotateX(180deg);
}
#packing .section-decoration-svg.svg-bottom path,
#packing .section-decoration-svg.svg-bottom polygon {
  transform: none;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  
}
#packing h3 {
  text-align: center;
  color: var(--section-font-color-1);
  font-size: 110%;
  font-weight: normal;
}
#packing ul {
  display: flex;
  flex-wrap: wrap;
}
#packing li {
  display: flex;
  justify-content: space-around;
  width: 33%;
  width: calc(100% / 3);
  padding: 0.5em 0;
}
#packing li .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--caseStudies-height);
  height: var(--caseStudies-height);
}
#packing li .image svg path
,#packing li .image svg rect
,#packing li .image svg polygon {
  fill: var(--section-font-color-1);
}
#packing li .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: calc(100% - var(--caseStudies-height) - 1em);
  width: 100%;
  height: var(--caseStudies-height);
  padding: 0 0.5em;
}
#packing li .item::before {
  content: '';
  position: absolute;
  width: 30%;
  height: 1em;
  bottom: -0.8em;
  left: 30%;
  border-bottom: 1px solid;
}
#packing li .item::after {
  content: '';
  position: absolute;
  width: 1em;
  height: 40%;
  right: 1.8em;
  top: 40%;
  border-right: 1px solid;
}
#packing li:nth-last-child(-n+3) .item::before
,#packing li:nth-child(3n) .item::after {
  border: none;
}
#packing li .item > p:nth-last-child(1) {
  align-self: center;
  display: inline-block;
  font-size: 80%;
  line-height: 1.1;
}
#packing li .item > p:nth-last-child(1).break {
  text-align: end;
}
#packing li .item > p.center {
  text-align: center;
  line-height: 1.2;
  padding-bottom: 0.4em;
}
@media screen and (max-width: 880px) {
  #packing li .item::after {
    right: 1em;
  }
}
@media screen and (max-width: 850px) {
  #packing li {
    width: 50%;
    width: calc(100% / 2);
  }
  #packing li .item::after {
    right: 0;
  }
  #packing li .item::before {
    left: 30%;
    width: 40%;
  }
  #packing li:nth-last-child(-n+3) .item::before {
     border-bottom: 1px solid;
  }
  #packing li:nth-child(3n) .item::after {
    border-right: 1px solid;
  }
  #packing li:nth-last-child(-n+2) .item::before
  ,#packing li:nth-child(2n) .item::after {
    border: none;
  }
  #packing li .item > p {
    align-self: center;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  
}

/***** contactus *****/
.contactus .toPagetop {
  display: block;
}
.contactus .toPagetop.toPage-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  
}
/** topImage **/
#topImage {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  background-color: transparent;
}
#topImage .img {
  position: relative;
  width: 100%;
  height: 90vh;
  height: calc(100vh - var(--internal-links-height));
  z-index: -1;
}
#topImage > div {
  padding: 0;
  margin: 0;
  width: auto;
}
#topImage #boxframein .s-box {
  margin: 0;
  max-width: none;
}
#topImage .s-box {
  width: 21em;
}
#topImage .s-box-contents > span {
  display: flex;
}
#topImage .s-box-contents > span > p:nth-child(1) {
  width: 4em;
}
#topImage .s-box-contents > span > p:nth-child(2) {
  width: calc(100% - 4em);
}
#topImage .s-box-contents a {
  color: var(--sbox-font-color);
  text-decoration-color: var(--point-color);
  text-decoration-line: underline;
  text-decoration-style: dotted;
}
#topImage .s-box-contents a:hover {
  color: var(--point-color);
}
@media screen and (max-width: 1024px) {
  #topImage #boxframein .s-box {
    margin: 0;
    max-width: none;
  }
  #topImage .s-box {
    width: 21em;
  }
}
@media screen and (max-width: 910px) {
  
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  #topImage {
    padding-top: var(--menubar-min-landscape-height);
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  #topImage {
    padding-top: var(--menubar-min-portrait-height);
  }
}
@media screen and (max-width: 550px) {
  #topImage #boxframein {
    left: auto;
  }
}
@media screen and (max-width: 480px) {
  
}
@media screen and (max-width: 400px) {
  #topImage #boxframein {
    left: 0.5em;
  }
}
@media print {
  #topImage .img {
    display: none;
  }
  #topImage .s-box {
    width: auto;
  }
}

/** contactus-access **/
#contactus-access .section-decoration-svg.svg-bottom {
  fill: var(--primary-bg-color);
  background-color: var(--section-bg-color-2);
  transform: rotateX(180deg);
}
#contactus-access .section-decoration-svg.svg-bottom path,
#contactus-access .section-decoration-svg.svg-bottom polygon {
  transform: none;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  #contactus-access {
    margin-top: 0;
  }
}

#contactus-access .content {
  height: 400px;
}
#contactus-access iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 570px) {
  #contactus-access .content {
    height: 350px;
  }
}
@media screen and (max-width: 480px) {
  #contactus-access .content {
    height: 350px;
    padding: 0;
  }
}
@media print {
  
}

/** contactus-form **/
#contactus-form {
  background-color: var(--section-bg-color-pr);
}
#contactus-form .section-description
,#contactus-form .section-contents {
  color: var(--section-font-color-2);
  color: black;
}
#contactus-form .section-description .title {
  color: var(--heading-font-color-2);
}
#contactus-form .section-decoration-svg {
  fill: var(--section-bg-color-pr);
}
#contactus-form .section-decoration-svg.svg-top {
  fill: var(--primary-bg-color);
  background-color: var(--section-bg-color-pr);
}
#contactus-form .section-decoration-svg.svg-top path,
#contactus-form .section-decoration-svg.svg-top polygon {
  transform: none;
}

@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  
}

#contactus-mailForm h3 {
  text-align: center;
  color: var(--section-font-color-2);
  font-size: 110%;
  font-weight: normal;
}
#contactus-mailForm .form li {
  display: flex;
  padding: 1rem 0;
  border-bottom: solid 1px var(--primary-font-color);
}
#contactus-mailForm .form li:nth-last-of-type(1) {
  border-bottom: none;
}
#contactus-mailForm .form li > button {
  padding: 0.5rem 1.5rem;
  margin: 0 auto;
  font-size: 100%;
  color: var(--page-link-font-color);
  background-color: var(--page-link-bg-color-1);
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
#contactus-mailForm .form li > button:hover {
  background-color: var(--page-link-bg-hover-color);
}
#contactus-mailForm .form li > button.back {
  color: var(--section-font-color-2);
  background-color: var(--body-bg-color);
  border: solid 1px var(--page-link-bg-color-1);
}
#contactus-mailForm .form li > button.back:hover {
  color: var(--page-link-font-color);
  background-color: var(--page-link-bg-hover-color);
}
#contactus-mailForm .form .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 18rem;
  padding-right: 2rem;
}
#contactus-mailForm .form .item .required {
  padding: 0 0.3rem;
  font-size: 80%;
  line-height: 1.8;
  color: var(--logo-color-4);
  background-color: var(--point-color);
  border-radius: 5px;
}
#contactus-mailForm .form .input {
  width: calc(100% - 18rem);
}
#contactus-mailForm .form .input label {
  display: inline-block;
  width: 100%;
}
#contactus-mailForm .form .input > input {
  width: 100%;
  height: 80%;
  box-sizing: border-box;
}
#contactus-mailForm .form .input > textarea {
  width: 100%;
  box-sizing: border-box;
}

#contactus-form .pageLink {
  margin: 0;
  margin-top: 2em;
  padding: 0;
  width: 100%;
  height: var(--internal-links-height);
}
#contactus-form .pageLink ul {
  display: flex;
  height: 100%;
}
#contactus-form .pageLink li {
  width: 100%;
  height: 100%;
}
#contactus-form .pageLink a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--page-link-font-color);
  background-color: var(--page-link-bg-color-2);
  transition: all 0.2s;
  outline-offset: -3px;
  outline-style: groove;
  outline-color: var(--page-link-font-color);
  outline-width: 1px;
}
#contactus-form .pageLink li a:hover {
  background-color: var(--page-link-bg-hover-color);
}
#contactus-form .pageLink .heading {
  padding-bottom: 0;
}
#contactus-form .pageLink a:hover .right span {
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  
}
@media screen and (max-width: 800px) {
  #contactus-mailForm .form .item {
    width: 15rem;
  }
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 650px) {
  #contactus-mailForm .form li {
    flex-direction: column;
    padding: 0;
    border: none;
  }
  #contactus-mailForm .form li:nth-last-of-type(1) {
    flex-direction: row;
    margin-top: 2em;
  }
  #contactus-mailForm .form .item {
    justify-content: center;
    width: auto;
    padding: 0;
    color: var(--section-bg-color-2);
    background-color: var(--section-bg-color-1);
  }
  #contactus-mailForm .form .item .required {
    margin-left: 0.5rem;
  }
  #contactus-mailForm .form .input {
    width: auto;
    min-height: 2em;
    background-color: var(--header-menu-bg-color);
  }
}
@media screen and (max-width: 480px) {
  
}

/** contactus-notes **/
#contactus-notes h3 {
  text-align: center;
  color: var(--section-font-color-2);
  font-size: 110%;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 480px) {
  
}
@media print {
  
}

/*** boxfraemin-single ***/
.s-box {
  position: relative;
  width: 65%;
  max-width: calc(100% - var(--margin-right) - var(--margin-left));
  height: auto;
  padding: 1em 2em;
  margin: 6em auto 3em;
  color: var(--sbox-font-color);
  background-color: var(--sbox-bg-color);
}
.s-box-title {
  margin: 2em 0 1em;
  color: var(--sbox-heading-color);
  font-family: 'ｍｓ ｐゴシック';
  font-weight: var(--sbox-heading-font-weight);
}
.s-box-frame {
  position: absolute;
  top: -1.5em;
  left: -5.5em;
  border: 0.4em solid var(--sbox-frame-color);
  box-sizing: border-box;
}
.animation.s-box-frame {
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  animation: boxframein 1s 0s 1 forwards;
}
@keyframes boxframein {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    transform: translateX(7rem);
    opacity: 1;
  }
}
.s-box-title span {
  font-size: 180%;
  line-height: 1.2;
  text-decoration-color: var(--sbox-heading-decoration-color);
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: from-font;
}
.s-box-contents {
  padding-bottom: 1rem;
}
@keyframes boxframeinfrombelow {
  0% {
    transform: translateY(3.5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#boxframein {
  display: flex;
  position: absolute;
  right: 3rem;
  bottom: 2.5rem;
}
#boxframein .s-box {
  margin: auto;
}
#boxframein .s-box-frame
,#boxframein .s-box {
  opacity: 0;
}
#boxframein .s-box-frame.animation1
,#boxframein .s-box.animation1 {
  opacity: 0;
  animation: boxframeinfrombelow 1s 0s 1 forwards;
}
#boxframein .s-box-frame.animation
,#boxframein .s-box.animation {
  opacity: 0;
  animation: boxframeinfrombelow 1s 0s 1 forwards;
}

@media screen and (max-width: 1024px) {
  #boxframein {
    bottom: 1em;
  }
  .s-box {
    font-size: 90%;
    max-width: calc(100% - var(--middle-margin-right)　- var(--middle-margin-left));
  }
}
@media screen and (max-width: 768px) {
  .s-box {
    width: calc(100% - 3rem - 4rem);
    padding: 0 1.5em;
    margin: 2rem auto auto 2rem;
  }
}
@media screen and (max-width: 550px) {
  #boxframein {
    left: 0.5em;
    right: 2.5em;
  }
  #boxframein .s-box {
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .s-box-title span {
    font-size: 160%;
  }
  #boxframein .s-box-frame.animation1
  ,#boxframein .s-box.animation1 {
    animation: boxframeinfrombelow 1s 1.5s 1 forwards;
  }
  #boxframein .s-box-frame.animation
  ,#boxframein .s-box.animation {
    opacity: 0;
    animation: boxframeinfrombelow 1s 1.5s 1 forwards;
  }
}
@media print {
  #boxframein {
    position: relative;
    right: auto;
    bottom: auto;
  }
  .s-box {
    padding: 0.5em 1em;
    background-color: var(--section-bg-color-pr);
  }
  .s-box-frame {
    display: none;
  }
  #boxframein .s-box-frame
  ,#boxframein .s-box {
    opacity: 1;
  }
  #boxframein .s-box-frame.animation1
  ,#boxframein .s-box.animation1 {
    opacity: 1;
    animation: none;
  }
  #boxframein .s-box-frame.animation
  ,#boxframein .s-box.animation {
    opacity: 1;
    animation: none;
  }
  .s-box-contents {
    padding: 0;
  }
}
