@charset "utf-8";

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
  --content-space: 2rem;
}

/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
  0% {
    left: -200px;
  }
  100% {
    left: 0px;
  }
}

/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*全体の設定
---------------------------------------------------------------------------*/
body * {
  box-sizing: border-box;
}
html,
body {
  font-size: 14px;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width: 900px) {
  html,
  body {
    font-size: 15px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo,
    "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;

  -webkit-text-size-adjust: none;
  background: #fff;
  color: #333;

  line-height: 2;

  overflow-x: hidden;
  background-color: #f2f2f2;
}

/*リセット*/
figure {
  margin: 0;
}
dd {
  margin: 0;
}
nav,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}
nav ul {
  list-style: none;
}

/*table全般の設定*/
table {
  border-collapse: collapse;
}

/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*videoタグ*/
video {
  max-width: 100%;
}

/*iframeタグ*/
iframe {
  width: 100%;
}

/*他*/
input {
  font-size: 1rem;
}

/*section*/
section {
  padding: var(--content-space);
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: inherit;
  transition: 0.3s;
}

/*マウスオン時*/
a:hover {
  filter: brightness(1.1);
}

/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
  overflow-x: hidden;
  position: relative;
  animation: opa1 1s 0.4s both;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1360px; /*サイトの最大幅。これ以上広がらない。*/
  margin: 0 auto;
  background-color: #fff;
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  color: #fff;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header a {
  color: inherit;
}

#headerLogo {
  text-align: center;
}
#headerLogo img {
  width: 400px;
  margin: 3rem 0;
}

/*ロゴ（※画像の場合）*/
#logo img {
  display: block;
  margin: 10px auto;
  width: 240px;
}

@media screen and (max-width: 768px) {
  #logo img {
    opacity: 0;
  }
  #headerLogo {
    width: 0%;
    margin: 0 auto;
  }
}

/* ローディング画面 */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.loading.active {
  opacity: 1;
  visibility: visible;
}

/*    ローディング画面 */
.loadingText {
  color: #999;
  animation: 0.5s flashing infinite;
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
#menubar {
  animation: animation1 0.2s both;
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 100px var(--content-space) 50px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
}

#menubar {
  display: none;
}

/*メニュー１個あたり*/
#menubar a {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #fff;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
}

/*子メニュー（ドロップダウンメニュー）*/
#menubar ul ul a {
  border: none;
  padding: 0;
  margin-left: 3.8rem;
}

/*ドロップダウンのアイコン*/
a.ddmenu::before {
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  content: "\f078";
  margin-right: 0.3em;
  transform: scale(0.7);
  display: inline-block;
}
a.ddmenu {
  cursor: default;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
  display: flex;
  animation: opa1 0s 0.2s both;
  position: fixed;
  z-index: 101;
  cursor: pointer;
  right: 0px; /*右からの配置場所*/
  top: 0px; /*上からの配置場所*/
  width: 70px; /*ボタンの幅*/
  height: 70px; /*ボタンの高さ*/
  background-color: rgba(1, 8, 58, 0.5); /*ボタンの背景色*/
  border-radius: 0px 0px 0px 20px;
  transform-origin: right top;
  transform: scale(1);
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
  background: #ff0000;
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
  display: block;
  position: absolute;
  left: 18px;
  width: 35px;
  height: 2px; /*線の高さ*/
  background: #fff; /*線の色*/
  transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
  top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
  top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
  top: 44px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
  opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents {
  flex: 1;
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,
#contents ol {
  margin-left: 2rem;
  margin-right: 2rem;
}

/*p要素（段落タグ）
---------------------------------------------------------------------------*/
p {
  margin-left: 1rem;
  margin-right: 1rem;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer a {
  color: inherit;
  text-decoration: none;
}
footer small {
  font-size: 100%;
}
footer {
  margin-top: auto;
  font-size: 0.8rem;
  background: #555;
  background: #edecec;
  color: #c1c0c0;
  color: #333;
  text-align: center;
  padding: 0.3rem;
}

/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
  text-decoration: none;
  display: block;
  background: #555;
  color: #d1d1d1;
  text-align: right;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}
.pr a::before {
  font-family: "Font Awesome 6 Free";
  content: "\e2ca";
  font-weight: bold;
  margin-right: 0.5em;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
  display: block;
}

/*ボタンの設定*/
.pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  animation: opa1 1s 0.4s both;
  position: fixed;
  right: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
}

/*余白調整用
---------------------------------------------------------------------------*/
section.padding0 {
  padding: 0;
}
div.padding0 {
  margin-left: calc(-1 * var(--content-space));
  margin-right: calc(-1 * var(--content-space));
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.color-check,
.color-check a {
  color: #ff0000 !important;
}
.l {
  text-align: left !important;
}
.c {
  text-align: center !important;
}
.r {
  text-align: right !important;
}
.ws {
  width: 95%;
  display: block;
}
.wl {
  width: 95%;
  display: block;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.look {
  display: inline-block;
  padding: 0px 10px;
  background: #eee;
  border: 1px solid #ccc;
  color: #888;
  border-radius: 3px;
  margin: 5px 0;
  word-break: break-all;
}
.small {
  font-size: 0.75em;
}
.large {
  font-size: 2em;
  letter-spacing: 0.1em;
}
.pc {
  display: none;
}
.dn {
  display: none !important;
}
.block {
  display: block !important;
}

/*大きな画面の場合*/
.large-screen .ws {
  width: 48%;
  display: inline;
}
.large-screen .sh {
  display: none;
}
.large-screen .pc {
  display: block;
}

/*スライドショー
---------------------------------------------------------------------------*/
/*動画を囲むブロック*/
#mainimg-parts {
  width: 100%;
  height: 100vh;
  height: auto;
  position: relative;
  left: 0px;
  top: 15px;
  overflow: hidden;
  z-index: -1;
}

/*動画*/
#mainimg-parts video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*縦向き用動画を非表示に*/
#mainimg-parts video.display-tate {
  display: none;
}

/*端末を縦向きにした場合*/
@media (orientation: portrait) {
  /*横向き用動画を非表示に*/
  #mainimg-parts video.display-yoko {
    display: none;
  }

  /*縦向き用動画を表示させる*/
  #mainimg-parts video.display-tate {
    display: block;
  }
}

/* サービスメニューブロック
---------------------------------------------------------------------------*/
.top-mainCation {
  margin: 0 auto;
  padding: 4em 0;
  display: block;
  width: 100%;
}

@media screen and (min-width: 900px) {
  .top-mainCation {
    width: 100%;
    text-align: center;
  }
}

.list-grid8-parts .list-parts * {
  margin: 0;
  padding: 0;
}

/*ブロック全体を囲むブロック*/
.list-grid8-parts {
  display: grid;
}

/*画面幅500px以上の追加指定*/
@media screen and (min-width: 500px) {
  /*ブロック全体を囲むブロック*/
  .list-grid8-parts {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/*画面幅800px以上の追加指定*/
@media screen and (min-width: 800px) {
  /*ブロック全体を囲むブロック*/
  .list-grid8-parts {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/*ボックス１個あたり*/
.list-grid8-parts .list-parts {
  display: grid;
  position: relative;
  padding: 1rem;
  background: #fff;
  grid-template-rows: auto 1fr;

  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 3px 5px 10px -3px;
}

/*ボックス内のfigure画像*/
.list-grid8-parts .list-parts figure {
  margin: -1rem -1rem 0.5rem;
}

/*ボックス内のp要素*/
.list-grid8-parts .list-parts p {
  font-size: 1rem;
  line-height: 1.5;
}

/*ボタン
---------------------------------------------------------------------------*/
.list-grid8-parts .btn-parts a {
  display: block;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
  background: #555;
  color: #fff;
  padding: 5px 10px;
  margin-top: 1rem;
}

/*アイコン
---------------------------------------------------------------------------*/
/*共通*/
.list-grid8-parts .icon-bg1-parts,
.list-grid8-parts .icon-bg2-parts {
  overflow: hidden;
  position: absolute;
  left: 0px; /*左からの配置場所*/
  top: 0px; /*上からの配置場所*/
  font-size: 0.7rem; /*文字サイズ。70%*/
  width: 10rem; /*幅。10文字分*/
  padding-top: 2rem; /*テキストの上にとる余白。2文字分。*/
  text-align: center; /*テキストをセンタリング*/
  transform: rotate(-45deg) translate(-2.4rem, -3rem);
  /*反時計回りに45度回転、X軸に-2.4文字分、Y軸に-3文字分移動。*/
}

/*icon-bg1-parts）*/
.list-grid8-parts .icon-bg1-parts {
  background: #ff3535;
  color: #fff;
}

/*icon-bg2-parts*/
.list-grid8-parts .icon-bg2-parts {
  background: #358bff;
  color: #fff;
}

/*news2-parts-c2（２カラムレイアウト用）
---------------------------------------------------------------------------*/
.news2-parts-c2 * {
  margin: 0;
  padding: 0;
}
.text-parts {
  padding: 0 1rem;
}

/*画面幅700px以上の追加指定*/
@media screen and (min-width: 700px) {
  .news2-parts-c2 {
    display: flex;
    gap: 2rem;
  }

  /*左側のタイトルブロックの幅*/
  .news2-parts-c2 .title-parts .pageInfo {
    width: 30%;
  }

  /*右側のテキストブロック*/
  .news2-parts-c2 .text-parts {
    flex: 1;
  }
}
/*画面幅800px以上の追加指定*/
@media screen and (min-width: 800px) {
  .news2-parts-c2 {
    display: flex;
    gap: 2rem;
  }

  /*左側のタイトルブロックの幅*/
  .news2-parts-c2 .title-parts {
    width: 30%;
  }

  /*右側のテキストブロック*/
  .news2-parts-c2 .text-parts {
    flex: 1;
  }
}

/*/お知らせブロックの追加指定---------*/
/*ブロック全体*/
.new-parts2 {
  margin-left: 2rem;
  margin-right: 2rem;
}

/*記事の下に空ける余白*/
.new-parts2 dd {
  padding-bottom: 1rem;
}

/*画面幅700px以上の追加指定*/
@media screen and (min-width: 700px) {
  /*ブロック全体*/
  .new-parts2 {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  /*日付の右側にスペースを作る*/
  .new-parts2 dt {
    margin-right: 2rem;
  }
}
/*/----お知らせブロック追加ここまで
	-----------------------------*/

/*フッターメニュー設定--------*/
/*ボックス全体の設定*/
#footermenu2-parts {
  background: #555;
  color: #fff;
  padding: 20px var(--content-space);
  display: flex;
  justify-content: space-around;
}

/*ボックス内のリンクテキスト設定*/
#footermenu2-parts a {
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  font-weight: bold;
}

/*マウスオン時*/
#footermenu2-parts a:hover {
  opacity: 1;
}

#footermenu2-parts ul {
  margin: 0;
  list-style: none;
  padding: 0 2px;
  flex: 1;
}
@media screen and (max-width: 800px) {
  #footermenu2-parts {
    display: inline-block;
    flex-direction: row-reverse;
    width: 100%;
    text-align: center;
  }
}

/*-----  以下2カラム追加  -----------*/
/*2カラムブロック（※900px未満では１カラム-------------------*/

.list-half-parts .list-parts {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

/*ブロック内のh4見出し*/
.list-half-parts .list-parts h4 {
  font-size: 1.4rem;
}

/*画像ブロック共通*/
.list-half-parts .image-l-parts img,
.list-half-parts .image-r-parts img {
  border-radius: 6px;
  margin-left: 0.5rem;
  box-shadow: 1px 5px rgba(0, 0, 0, 0.13);
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width: 900px) {
  .list-half-parts .image-r-parts img {
    border-radius: 20px;
    box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
  }

  /*２カラムを囲むブロック*/
  .list-half-parts .list-parts {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /*画像ブロック共通*/
  .list-half-parts .image-l-parts,
  .list-half-parts .image-r-parts {
    width: 50%;
  }

  /*画像を右に配置する場合*/
  .list-half-parts .image-r-parts {
    margin-left: 2rem;
  }

  /*画像を左に配置する場合*/
  .list-half-parts .image-l-parts {
    order: -1;
    margin-right: 2rem;
  }

  /*テキストブロック*/
  .list-half-parts .text-parts {
    flex: 1;
  }
}

/*-----#subpage ---------*/
#subpage {
  overflow-x: hidden;
  position: relative;
  /* animation: opa1 1s 0.4s both; */
  /* display: flex; */
  /* flex-direction: column; */
  min-height: 100vh;
  max-width: 1360px;
  margin: 0 auto;
  background-color: #fff;
}

/*-- 動画製作ご案内ここから--*/
section.active {
  padding: 20px;
}
section.active h2 {
  padding-left: 1rem;
}

section.active p {
  padding-top: 10px;
  margin-bottom: 30px;
}
.heading {
  padding-top: 5px;
  font-weight: bold;
  /* color: rgb(44, 78, 117); */
}

section.active img {
  max-width: 96%;
  height: auto;
}

/***ボーダーライン  ********/
.border-line {
  border-bottom: solid 1px rgb(35, 56, 80);
  margin: 50px 0;
}

/***シーンギャラリーここから  ********/
.seen-4p {
  margin: 0 auto;
  width: 80%;
  height: auto;
  display: flex;
  padding-left: 30px;
  flex-direction: row;
  text-align: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  list-style: none;
}
.seen-4p img {
  width: 240px;
  height: auto;
  margin: 0 auto;
}
/***  /  シーンギャラリーここまで  ********/

/*サブページの画面幅768pxまでの追加指定*/
@media screen and (max-width: 768px) {
  section.active {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .heading {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .heading h3 {
    text-align: center;
  }

  ul.seen-4p {
    max-width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding-left: 0;
  }
  .seen-4p li {
    padding: 0;
    width: 48%;
    flex-direction: row;
  }
  .seen-4p img {
    max-width: 100%;
  }
}

/*サブページ「編集の仕様」箇所の追加指定*/
/*---------編集の要素テーブル箇所追加指定----------*/
.activeSeen {
  width: auto;
  padding: 0;
  margin: 0 auto 50px;
}

table.table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 700px;
}
table.table td,
table.table th {
  background-color: rgb(243, 243, 243);
  text-align: left;
}

table.table td {
  width: 80%;
  padding: 8px 20px;
  border: 1px solid #c8c8c8;
  line-height: 2em;
}

table.table th {
  width: 20%;
  padding: 15px;
  white-space: nowrap;
  color: #151515;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  border-left: 1px solid #c8c8c8;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 1px;
  background-repeat: repeat-x;
  background-position: top;
}
@media screen and (max-width: 768px) {
  table.table {
    width: 95%;
  }
}

/* ユーチューブ専用   */
.responsive {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  /* aspect-ratio: 16 / 9; */
}
.responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.youtube {
  width: 70%;
  margin: 0 auto;
}
/* ユーチューブ画面幅1024pxまでの追加指定   */
@media screen and (max-width: 1024px) {
  .responsive {
    width: 100%;
  }
  .youtube {
    width: 97%;
  }
}

/******プロフィール追加指定*********/
.profile {
  padding: 20px;
}
.profile article {
  margin-bottom: 30px;
  overflow: hidden;
}

.profile div {
  padding-top: 10px;
  margin-bottom: 30px;
}

* html .profile article {
  height: 1%;
}

.profile p {
  margin-bottom: 5px;
}
h3.heading {
  font-weight: normal;
  border-bottom: 1px solid #d6d6d6;
  color: #333;
  line-height: 2rem;
  margin: 30px 0 10px;
}

.profile img {
  max-width: 96%;
  height: auto;
}

/****** **会社情報ページ ***********/
#profile {
  min-height: 100vh;
  max-width: 1360px;
  margin: 0 auto;
  background-color: #fff;
}

/**   ごあいさつ  **/
.message {
  margin-top: 50px;
}
.message h2 {
  text-align: center;
  font-size: 24px;
}

/******   会社概要  ******/
.greeting {
  display: flex;
  width: 80%;
  padding: 50px 0;
  margin: 0 auto;
  justify-content: center;
}
.abt-item1 {
  width: 50%;
  display: block;
  margin: 0 auto;
}
.abt-item2 {
  width: 40%;
  display: flex;
  margin: 0 auto;
}
.abt-item1 img {
  box-shadow: 8px 5px 5px #999;
  border-radius: 6px;
}
.profile-data {
  padding: 20px 0;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.profile-data img {
  width: 700px;
  height: auto;
}

/*** 会社概要ページ1024pxまでの追加指定 ***/
@media screen and (max-width: 768px) {
  .greeting {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
    margin: 0;
  }
  .abt-item1 {
    width: 94%;
  }
  .profile-data img {
    width: 100%;
    height: auto;
  }
}

/****** コンタクトページ ***********/

.contact p {
  /* margin: 10px auto; */
  text-align: center;
  /* color: rgb(180, 10, 10); */
  color: rgb(21, 51, 200);
}

/****** 実績例ページ ***********/
section.examples {
  margin: 0 auto;
  padding: 0;
}
.jirei {
  display: flex;
  width: 75%;
  padding: 30px 0;
  margin: 0 auto;
}
.jirei table {
  width: 100%;
}
.jirei table tr {
  border: 1px solid rgb(210, 210, 220);
}
.jirei table th {
  padding: 10px 0;
}
.jirei tr:nth-child(odd) {
  background-color: rgb(230, 240, 240);
}
.jirei tr:nth-child(even) {
  background-color: #ffffff;
}
.jirei table th,
.jirei table td {
  padding-left: 3rem;
}
.h_item1 {
  width: 110px;
  text-align: left;
}
.h_item2 {
  text-align: left;
}
.h_item3 {
  width: 250px;
  text-align: right;
}
.h_item3 img {
  display: inline-block;
  width: 210px;
  height: auto;
  padding: 10px;
}

@media screen and (max-width: 800px) {
  .jirei {
    width: 96%;
  }

  .jirei_DVD img {
    border-radius: 0em;
    box-shadow: none;
  }
}

/**** キュランダ高原鉄道追----**/
.anime {
  width: 960px;
  height: 540px;
  margin: 0 auto;
}

.anime video {
  width: 960px;
  height: 540px;
}

@media screen and (max-width: 800px) {
  .anime {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .anime video {
    width: 100%;
    height: auto;
  }
}
/**** キュランダ高原鉄道追ここまで----**/

/*--    英語版スクリプトページ  --*/
.eng_script {
  width: 90%;
  margin: 10px auto 50px;
  padding: 0;
}
.eng_script p {
  word-wrap: break-word;
}

@media screen and (min-width: 880px) {
  .eng_script {
    width: 70%;
  }
}

/***  7pageDTP----*******/
/*印刷実績サンプル画像ブロック共通*/
.pamphlet {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex: 1;
}
.pamphlet img {
  padding: 0;
  width: 80%;
  border-radius: 5px;
  box-shadow: 6px 6px rgba(0, 0, 0, 0.18);
}

/****   8ページ 英語翻訳用----*******/
/*--    英語版スクリプトページ  --*/
.eng_script {
  width: 90%;
  margin: 10px auto 50px;
  padding: 0;
}
.eng_script p {
  word-wrap: break-word;
}
@media screen and (min-width: 800px) {
  .eng_script {
    width: 70%;
    margin: 10px auto 50px;
    padding: 0;
  }
}
