@charset "UTF-8";

/* * * * * * * * * * * * * * * * * *
 base.css
* * * * * * * * * * * * * * * * * */

/* reset, common
--------------------------------- */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  list-style: none;
  outline: none;
  box-sizing: border-box;
}

input,
textarea {
  -webkit-user-select: auto;
}

body {
  padding: 0;
  line-height: 1.75;
  font-size: 16px;
  font-family: "Shippori Mincho B1", serif;
  width: 100%;
  margin: 0;
  color: #0A2D88;
  letter-spacing: 0.5px;
  position: relative;
  font-feature-settings: "palt";
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

html,
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

a:hover {
  color: #df4141;
  text-decoration: none;
  /* text-decoration: underline; */
}

button,
input,
select,
textarea {
  font-family: inherit;
}

#main {
  padding-top: 120px;
}

.container-base {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media (min-width: 920px) {
  .container-base {
    max-width: calc(1194px + 80px);
    padding: 0 40px;
  }
}

.br_sp {
  display: block;
}

@media (min-width: 920px) {
  .br_sp {
    display: none;
  }
}


.linehover_loop {
  position: relative;
  display: inline-block;
}

.linehover_loop::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: left center;
}

@media screen and (min-width: 769px) {
.linehover_loop:hover::after {
  animation: linehover_loop 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
}

@keyframes linehover_loop {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }

  45% {
    transform: scaleX(0);
    transform-origin: right center;
  }

  45.01% {
    transform: scaleX(0);
    transform-origin: left center;
  }

  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.btn_fill_hover {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #0A2D88;
  background-color: #0A2D88;
  color: #fff;
  transition: color 1.2s cubic-bezier(0.1, 1, 0.2, 1);
}

.btn_fill_hover::before {
  position: absolute;
  z-index: -1;
  top: -1px;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  background-color: #fff;
  content: "";
  pointer-events: none;
  backface-visibility: hidden;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 1.8s cubic-bezier(0.1, 1, 0.2, 1);
  will-change: transform;
}

.btn_fill_hover button,
.btn_fill_hover input[type="submit"],
.btn_fill_hover input[type="button"] {
  position: relative;
  z-index: 1;
  background-color: transparent;
  color: inherit;
  transition: none;
}

.btn_fill_hover:has(:disabled) {
  border-color: #aaa;
  background-color: #aaa;
  color: #fff;
  cursor: default;
}

.btn_fill_hover:has(:disabled)::before {
  display: none;
}

@media (min-width: 920px) {
  .btn_fill_hover:not(:has(:disabled)):hover {
    color: #0A2D88 !important;
  }

  .btn_fill_hover:not(:has(:disabled)):hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.btn_fill_hover_back {
  background-color: #fff;
  color: #0A2D88;
}

.btn_fill_hover_back::before {
  background-color: #0A2D88;
}

@media (min-width: 920px) {
  .btn_fill_hover_back:not(:has(:disabled)):hover {
    color: #fff !important;
  }
}

/* fonts */
/* .f_min {
  font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

.helvetica {
  font-family: 'Lato', sans-serif;
}

.myriad {
  font-family: 'Myriad Pro', 'Montserrat', sans-serif;
} */

.font_s {
  font-size: 90%;
}

.red {
  color: #FF0000;
}

/* float */
.l {
  float: left;
}

.r {
  float: right;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left !important;
}

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-Mac \*/
*html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */

.none {
  display: none !important;
}

.inWrap li,
.txt_indent {
  text-indent: -1em;
  padding-left: 1em;
}

/* margin */
.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px !important;
}

.mt60 {
  margin-top: 60px;
}

label {
  cursor: pointer;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.noPC {
  display: none !important;
}

.inner {
  width: 1024px;
  margin: 0 auto;
  position: relative;
}

.harf {
  width: 49%;
}

/* リンクアニメーション */
a,
a img,
.sc {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
}

.btn {
  display: block;
  width: 358px;
  height: 68px;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 68px;
  background: url(../img/arrow.png) 95% center no-repeat;
  border: 1px solid #a1a1a1;
  border-radius: 35px;
}

a .img {
  overflow: hidden;
}

/* header
--------------------------------- */
#header {
  background: #FFF;
  border-bottom: 5px solid #286409;
}

#header .inner {
  height: 135px;
}

#header h1 {
  width: 135px;
  height: 135px;
  margin-left: -20px;
  background: url(https://yosinogawa.co.jp/img/h1_logo.png) center center no-repeat;
  text-indent: -9999px;
  float: left;
}

#header .catch {
  position: absolute;
  left: 125px;
  top: 85px;
  font-size: 78%;
}

#header .bnr_box {
  float: right;
  margin-top: 82px;
}

#header .bnr_box p {
  float: left;
  /* 	margin-left: 7px; */
}

/*
#header .bnr_box p a{
  display: inline-block;
  height: 45px;
  line-height: 45px;
	margin: 30px 10px 0;
	padding: 0 20px;
	border: none;
	border: 1px solid #286409;
	color: #286409;
	font-size: 16px;
	letter-spacing: 1px;
	font-family:"ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	border-radius: 10px;
	text-align: center;
}

#header .bnr_box p.out a{
  background: #236409;
  color: #FFF;
}
*/

#header .bnr_box p a {
  background-image: url(https://yosinogawa.co.jp/img/nav_download.png);
  background-repeat: no-repeat;
  width: 133px;
  height: 32px;
  display: block;
  text-indent: -9999px;
  -webkit-transition: all 0s ease;
  -moz-transition: all 0s ease;
  -o-transition: all 0s ease;
  -ms-transition: all 0s ease;
  transition: all 0s ease;
}

#header .bnr_box p:nth-child(1) a {
  background-position: 0 top;
}

#header .bnr_box p:nth-child(2) a {
  background-position: -134px top;
}

#header .bnr_box p:nth-child(3) a {
  background-position: -268px top;
}

#header .bnr_box p:nth-child(4) a {
  background-position: -402px top;
  border-right: 1px solid #d0d0d0;
}

/* top_contents
--------------------------------- */
.box {
  padding: 20px;
  margin: 6px 0 100px 0;
  background: #f2f2f2;
  border: 1px solid #d4d3d3;
}

#login h2 {
  padding: 80px 0 10px;
  margin-bottom: 50px;
  border-bottom: 1px dotted #d4d3d3;
  text-align: center;
  font-size: 30px;
}

#login .box {
  max-width: 892px;
  margin-left: auto;
  margin-right: auto;
}

#login .login ul {
  width: 420px;
  margin: 30px auto 40px auto;
  text-align: left;
}

.login li span {
  display: inline-block;
  display: inline;
  zoom: 1;
  width: 110px;
}

#login li .login span.s {
  display: inline-block;
  display: inline;
  zoom: 1;
  width: 75px;
}

#login input[type=text],
#login input[type=password] {
  width: 168px;
  height: 33px;
  padding: 0 10px;
  background: #fff9e5;
  border: 1px solid #e2d7b4;
  font-size: 18px;
}

#login .submit_btn button {
  width: 240px;
  height: 45px;
  margin: 30px auto;
  border: none;
  background: #286409;
  color: #FFF;
  font-size: 18px;
  letter-spacing: 2px;
}

#list h2 {
  padding: 80px 0 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #d4d3d3;
  font-size: 25px;
}

#list .imglist {
  margin: 60px auto 30px;
}

#list .imglist li {
  width: 211px;
  padding-bottom: 30px;
  margin-bottom: 60px;
  margin-right: 60px;
  float: left;
  border-bottom: 1px solid #d4d3d3;
  font-size: 12px;
}

#list .imglist li:nth-child(4n) {
  margin-right: 0px;
}

#list .imglist li .img img {
  /*   width: 100%; */
  max-width: 200px;
  max-height: 200px;
}

#list .imglist li .img {
  /*   max-height: 210px; */
  height: 200px;
  overflow: hidden;
}

#list .imglist li h3 {
  padding: 10px 0 0;
  text-align: center;
  font-size: 18px;
}

#list .imglist li a {
  display: block;
  height: 45px;
  line-height: 45px;
  margin: 30px auto 0;
  border: none;
  background: #286409;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  border: 1px solid #286409;
}

#list ul.pager {
  margin-bottom: 120px;
  text-align: center;
}

#list ul.pager li {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  line-height: 30px;
}

#list ul.pager li a {
  display: block;
  height: 100%;
  color: #286409;
  background: #FFF;
  border: 1px solid #286409;
}

#list ul.pager li a.arrow {
  color: #FFF;
  background: #286409;
  border-radius: 15px;
}

#list ul.pager li a.cur {
  background: #f2fdec;
}

#list dl {
  border: 1px solid #d4d3d3;
  padding: 10px 20px;
  background: #FFF;
  margin: 50px 0;
}

#list dt {
  text-align: center;
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #d4d3d3;
}

#list dd {
  padding: 20px 10px;
}

#list dd ul li {
  border: 1px solid #286409;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

#list dd ul li a {
  padding: 5px 10px;
  color: #286409;
}

#list dd input[type="text"] {
  width: 80%;
  border: 1px solid #d4d3d3;
  padding: 5px 10px;
  font-size: 16px;
}

#list dd button {
  width: 15%;
  height: 32px;
  color: #FFF;
  font-size: 14px;
  padding: 5px 0px;
  background: #286409;
}

#contact h2 {
  padding: 80px 0 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #d4d3d3;
  font-size: 25px;
}

#contact dl.normal {
  border: 1px solid #d4d3d3;
  border-collapse: collapse;
  width: 100%;
  border-top: none;
  background: url(https://yosinogawa.co.jp/img/bg_sect.png) 0 0 repeat;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

#contact dl.normal dd,
#contact dl.normal dt {
  padding: 7px 5px;
  font-size: 14px;
}

#contact dl.normal dt {
  text-align: center;
  width: 165px;
  border-top: 1px solid #d4d3d3;
  clear: left;
  float: left;
}

#contact dl.normal dt small {
  font-size: 10px;
}

#contact dl.normal dd {
  border-left: 1px solid #d4d3d3;
  border-top: 1px solid #d4d3d3;
  margin-left: 170px;
  background: url(https://yosinogawa.co.jp/img/bg.png) repeat center top;
  min-height: 22px;
}

#contact dd input {
  padding: 5px 10px;
  margin: 5px;
  border: 1px solid #aaa;
}

#contact dd textarea {
  padding: 5px 10px;
  margin: 5px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #aaa;
}

#contact dd select {
  width: 197px;
  padding: 0 10px;
  height: 35px;
  font-size: 12px;
}

#contact .form_btn {
  margin-bottom: 120px;
  text-align: center;
}

#contact button {
  width: 240px;
  height: 45px;
  margin: 10px auto;
  border: none;
  background: #286409;
  color: #FFF;
  font-size: 18px;
  letter-spacing: 2px;
  border: 1px solid #286409;
}

#contact .error {
  padding: 5px 10px;
  color: #FF0000;
  display: block;
}

div#kiyaku {
  margin-top: 50px;
  border: 1px solid;
  padding: 30px;
  height: 300px;
  width: 964px;
}

div#kiyaku h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

div#kiyaku dl {
  margin-top: 40px;
}

#kiyaku dl dt {
  border-bottom: 1px dotted #aaa;
  font-size: 110%;
  font-weight: bold;
  margin-bottom: 15px;
}

#kiyaku dl dd {
  margin-bottom: 10px;
}

#kiyaku dl .indent {
  text-indent: -1em;
  margin-left: 1em;
}

#confbtn:disabled {
  opacity: 0.5;
}

#confbtn:disabled:hover {
  background: #286409;
  color: #FFF;
}

ul.howto {
  margin-bottom: 60px;
}

ul.howto li {
  position: relative;
  padding: 30px;
  margin-bottom: 60px;
  border: 1px solid #DDD;
}

ul.howto li:after {
  content: "";
  display: block;
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(40, 100, 9, 0);
  border-top-color: #286409;
  border-width: 20px;
  margin-left: -20px;
  margin-top: 13px;
}

ul.howto li:last-child:after {
  display: none;
}

#privacy h2 {
  padding: 80px 0 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #d4d3d3;
  font-size: 25px;
}

#privacy dl {
  border: 1px solid #d4d3d3;
  padding: 10px 20px;
  background: #FFF;
  margin: 50px 0;
}

#privacy dt {
  text-align: center;
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #d4d3d3;
}

#privacy dd {
  padding: 20px 10px;
}

/* footer
--------------------------------- */
#footer {
  background: url(https://yosinogawa.co.jp/img/bg_footer.png) repeat-x center bottom;
}

#footer .inner {
  height: 158px;
  color: #eaeaea;
  padding-top: 23px;
  font-size: 85%;
  letter-spacing: 0.2em;
}

.foot_nav {
  border-left: 1px solid #5d5d5d;
  overflow: hidden;
  margin: 0 auto 20px;
}

.foot_nav li a {
  float: left;
  width: 194px;
  /* 	width: 240px; */
  height: 17px;
  line-height: 17px;
  border-right: 1px solid #5d5d5d;
  display: block;
  text-align: center;
  color: #fff;
}

address {
  background: url(https://yosinogawa.co.jp/img/bg_address.png) left bottom no-repeat;
  height: 55px;
  padding: 48px 0 0 120px;
  float: left;
}

.copy {
  float: right;
  margin-top: 75px;
  font-size: 85%;
  color: #c8c8c7;
}

@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
  }

  #header h1 {
    float: none;
  }

  #header .inner {
    height: auto;
    padding-bottom: 10px;
  }

  #header .catch {
    display: none;
  }

  #header .bnr_box {
    float: none;
    width: 100%;
    margin-top: 20px;
  }

  #header .bnr_box p {
    width: 50%;
    float: left;
  }

  #header .bnr_box p a {
    border: 1px solid #DDD;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #fff;
    width: 95% !important;
    padding: 10px 0;
    height: auto !important;
    margin: 1px auto;
    text-indent: 0;
    text-align: center;
    background: #286409;
    font-size: 14px;
  }

  #footer {
    background: #000;
    text-align: center;
  }

  #footer .inner {
    height: auto !important;
    padding: 10px 0;
  }

  address {
    background: none;
    height: auto;
    padding: 0;
    float: none;
  }

  .foot_nav {
    border-left: none;
  }

  .foot_nav li a {
    float: none;
    width: auto !important;
    padding: 3px 0 5px;
    margin-bottom: 5px;
    border-right: none;
    border-bottom: 1px dotted #5d5d5d;
  }

  .copy {
    margin-top: 5px;
    float: none;
  }

  #login .box {
    width: 90%;
    box-sizing: border-box;
  }

  #login .login ul {
    width: auto;
  }

  #login input[type=text],
  #login input[type=password] {
    width: 100%;
    box-sizing: border-box;
  }

  #contact dl.normal dd,
  #contact dl.normal dt {
    float: none;
    width: 100%;
    box-sizing: border-box;
  }

  #contact dl.normal dd {
    margin: 0px;
    border-left: none;
  }

  #contact dd.in90 input[type="text"] {
    width: 95% !important;
    box-sizing: border-box;
  }

  #contact dd textarea {
    width: 95%;
  }

  div#kiyaku {
    width: 80%;
  }

  #list .imglist li {
    width: 47%;
    margin-right: 6%;
  }

  #list .imglist li:nth-child(2n) {
    margin-right: 0;
  }

  #list .imglist li .img img {
    max-width: 100%;
    max-height: inherit;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media screen and (min-width: 769px) {
  #header .bnr_box p:nth-child(1) a:hover {
    background-position: 0 bottom;
  }

  #header .bnr_box p:nth-child(2) a:hover {
    background-position: -134px bottom;
  }

  #header .bnr_box p:nth-child(3) a:hover {
    background-position: -268px bottom;
  }

  #header .bnr_box p:nth-child(4) a:hover {
    background-position: -402px bottom;
  }

  #list ul.pager li a:hover {
    background: #f2fdec;
  }

  #list ul.pager li a.arrow:hover {
    background: #f2fdec;
    color: #286409;
  }

  #list .imglist li a:hover,
  #contact button:hover {
    background: #f2fdec;
    color: #286409;
  }

  #list dd ul li a:hover {
    background: #286409;
    color: #FFF;
  }
}

/* --------------------------------------------------
 download redesign common
-------------------------------------------------- */

#login,
#list,
body.download_form_page,
body.download_content_page {
  background: #fff;
  color: #0A2D88;
  font-family: "Shippori Mincho B1", serif;
}

body.download_form_page #main,
body.download_content_page #main {
  flex: 1;
}


/* header */
#header.download_header {
  width: 100%;
  height: auto;
  padding: 17px 40px;
  border: 0;
  background: #0A2D88;
  box-sizing: border-box;
}

.download_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.download_header_logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  color: #fff;
}

@media screen and (min-width: 769px) {
.download_header_logo:hover {
  color: #fff;
  opacity: 1;
}
}

.download_header_logo_img {
  display: block;
  width: 129px;
  height: auto;
  flex-shrink: 0;
}

.download_header_logo_text {
  display: flex;
  align-items: center;
  width: auto;
  color: #fff;
  font-size: min(16px, 1.2698412698412698vw);
  font-weight: 800;
  line-height: 1.25;
}

.download_header_nav {
  margin-left: 40px;
}

.download_header_nav_list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.download_header_nav_item {
  margin: 0;
}

.download_header_nav_item a {
  display: block;
  color: #fff;
  font-size: min(16px, 1.2698412698412698vw);
  line-height: 1.25;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
}

.download_header_nav_item a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@media screen and (min-width: 769px) {
.download_header_nav_item a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
}

/* page main vertical spacing */
#main {
  padding: 112px 0 160px;
  box-sizing: border-box;
}

/* page title */
#main .download_page_title {
  margin: 0;
  padding: 0;
  border: 0;
  color: #0A2D88;
  font-family: "Shippori Mincho B1", serif;
  font-size: min(40px, 3.3333333333333335vw);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

#login .download_page_title,
#list:not(.download_content_page) .download_page_title {
  margin-bottom: min(108px, 9vw);
}

#contact.download_form_page .download_page_title {
  margin-bottom: 68px;
}

#list.download_content_page .download_page_title,
#privacy.download_content_page .download_page_title {
  margin-bottom: 68px;
}

/* footer */
#footer.download_footer {
  position: relative;
  width: 100%;
  /* min-height: clamp(300px, 20.5729vw, 395px); */
  margin: 0;
  overflow: hidden;
  background: #0A2D88;
  color: #fff;
}

#footer.download_footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  aspect-ratio: 1920 / 303;
  background-color: #fff;
  background-image: url("../img/footer_bg.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% calc(100% + 2px);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

#footer.download_footer .download_footer_inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 120px);
  /* min-height: clamp(300px, 20.5729vw, 395px); */
  height: auto;
  margin: 0 auto;
  padding: clamp(60px, 4.74vw, 91px) 0 clamp(28px, 3vw, 58px);
  color: #fff;
  font-size: 100%;
  letter-spacing: 0;
  box-sizing: border-box;
}

#footer.download_footer .download_footer_company {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 55px;
}

#footer.download_footer .download_footer_logo {
  display: block;
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

#footer.download_footer .download_footer_company_name {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.75;
}

#footer.download_footer .download_footer_address {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  float: none;
  background: none;
  color: #fff;
  font-style: normal;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

#footer.download_footer .download_footer_map {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #fff;
}

#footer.download_footer .download_footer_sns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

#footer.download_footer .download_footer_sns_item {
  display: block;
  width: 40px;
  height: 40px;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media screen and (min-width: 769px) {
#footer.download_footer .download_footer_sns_item:hover {
  opacity: 0.7;
}
}

#footer.download_footer .download_footer_sns_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* #footer.download_footer .download_footer_bottom {
  position: absolute;
  right: 0;
  bottom: clamp(28px, 3vw, 58px);
  left: 0;
} */

#footer.download_footer .download_footer_notice {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

#footer.download_footer .download_footer_copy {
  margin: 0;
  float: none;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  #main {
    padding: 80px 0 120px;
    box-sizing: border-box;
  }

  #header.download_header {
    height: auto;
    padding: 0 20px;
  }



  .download_header_logo {
    width: fit-content;
  }

  .download_header_logo_img {
    width: 110px;
  }

  .download_header_logo_text {
    font-size: 12px;
  }

  .download_header_nav {
    margin: 16px 0 0;
  }

  .download_header_nav_list {
    flex-wrap: wrap;
    gap: 0 18px;
  }

  .download_header_nav_item a {
    padding: 7px 0;
    font-size: 12px;
  }

  /* #login .download_main_inner,
  #list:not(.download_content_page) .download_list_main_inner,
  #contact.download_form_page #main.download_form_main,
  body.download_content_page #main.download_content_main {
    padding: 56px 0 80px;
  } */

  #main .download_page_title {
    font-size: 22px;
    line-height: 1.5;
  }

  #login .download_page_title,
  #list:not(.download_content_page) .download_page_title {
    margin-bottom: 32px;
  }

  #contact.download_form_page .download_page_title {
    margin-bottom: 32px;
  }

  #list.download_content_page .download_page_title,
  #privacy.download_content_page .download_page_title {
    margin-bottom: 40px;
  }

  #footer.download_footer {
    min-height: 0;
    background: #0A2D88;
    text-align: left;
  }

  #footer.download_footer::before {
    display: none;
  }

  #footer.download_footer .download_footer_inner {
    width: calc(100% - 40px);
    min-height: 0;
    padding: 48px 0 30px;
    text-align: left;
  }

  #footer.download_footer .download_footer_company {
    display: block;
    margin-bottom: 40px;
  }

  #footer.download_footer .download_footer_logo {
    width: 64px;
  }

  #footer.download_footer .download_footer_company_body {
    margin: 22px 0 0;
  }

  #footer.download_footer .download_footer_company_name,
  #footer.download_footer .download_footer_address {
    font-size: 12px;
    line-height: 1.8;
  }

  #footer.download_footer .download_footer_sns {
    margin-top: 16px;
  }

  #footer.download_footer .download_footer_sns_item {
    width: 34px;
    height: 34px;
  }

  #footer.download_footer .download_footer_bottom {
    position: static;
    margin-top: 42px;
  }

  #footer.download_footer .download_footer_notice {
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 1.8;
    white-space: normal;
  }

  #footer.download_footer .download_footer_copy {
    font-size: 10px;
    line-height: 1.8;
  }

}

@media screen and (max-width: 819px) {
  .download_header_inner {
    display: block;
    height: auto;
    padding: 18px 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  #header.download_header {
    padding: 17px 20px;
  }

  .download_header_logo_img {
    width: 80px;
  }

  .download_header_logo_text,
  .download_header_nav_item a {
    font-size: 11px;
  }

  .download_header_nav {
    margin-left: 20px;
  }

  .download_header_nav_list {
    gap: 8px;
  }

}

/* --------------------------------------------------
 download login page
-------------------------------------------------- */

#login .visually_hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* main */
#login .download_main {
  width: 100%;
}

#login .download_main_inner {
  width: calc(100% - 40px);
  max-width: none;
  margin: 0 auto;
}

#login .box.login.login_box {
  margin: 0 auto;
  padding: 60px 20px 63px;
  border: 0;
  border-radius: 12px;
  background: #ECEFF7;
  box-sizing: border-box;
}

#login .login_box_title {
  margin: 0 0 34px;
  color: #0A2D88;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
}

#login .login_box_text {
  margin: 0 0 23px;
  color: #0A2D88;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
}

#login .login_form {
  max-width: 400px;
  margin: 0 auto;
}

#login .login_form ul {
  width: 100%;
  margin: 0;
  text-align: left;
}

#login .login_form_item {
  width: 100%;
  margin: 0;
}

#login .login_form_item+.login_form_item {
  margin-top: 12px;
}

#login .login_form input.login_form_input {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: normal;
  box-sizing: border-box;
}

#login .login_form input.login_form_input::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #09090980;
}

#login .login_form input.login_form_input:focus {
  border-color: #0A2D88;
  outline: 2px solid rgba(10, 45, 136, 0.12);
  outline-offset: 1px;
}

#login .login_form input.login_form_input:-webkit-autofill,
#login .login_form input.login_form_input:-webkit-autofill:hover,
#login .login_form input.login_form_input:-webkit-autofill:focus {
  -webkit-text-fill-color: #333;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-out 0s;
}

#login .login_form_error {
  margin-top: 8px;
  color: #ec584a;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

#login .login_form_error_ex {
  margin-top: 12px;
}

#login .login_form_forgot {
  margin: 10px 0 0;
  font-size: 12px;
  text-align: center;
  line-height: 1.25;
}

#login .login_form_forgot a {
  color: #0A2D88;
}

@media screen and (min-width: 769px) {
#login .login_form_forgot a:hover {
  color: #0A2D88;
}
}

#login .login_form_submit {
  margin: 43px 0 0;
}

#login .login_form_submit .login_form_submit_button {
  display: block;
  width: 100%;
  min-height: 70px;
  margin: 0;
  padding: 20px;
  border: 1px solid #0A2D88;
  border-radius: 0;
  background: #0A2D88;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}



#login .login_form_entry {
  margin: 19px auto 0;
  color: #0A2D88;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

#login .login_form_entry a {
  color: #0A2D88;
}

@media screen and (min-width: 769px) {
#login .login_form_entry a:hover {
  color: #0A2D88;
}
}

/* login page responsive */
@media screen and (max-width: 768px) {
  #login .download_main_inner {
    width: calc(100% - 32px);
  }

  #login .box.login.login_box {
    width: 100%;
    padding: 42px 20px 48px;
    border-radius: 10px;
  }

  #login .login_box_title {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.5;
  }

  #login .login_box_text {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.7;
  }

  #login .login_form {
    width: 100%;
    max-width: 400px;
  }

  #login .login_form input.login_form_input {
    height: 54px;
    font-size: 16px;
  }

  #login .login_form_forgot {
    white-space: normal;
  }

  #login .login_form_submit {
    margin-top: 32px;
  }

  #login .login_form_submit .login_form_submit_button {
    min-height: 50px;
    font-size: 14px;
  }

  #login .login_form_entry {
    font-size: 14px;
  }
}

/* --------------------------------------------------
 download list page redesign
-------------------------------------------------- */

/* main */
#list .download_list_main {
  width: 100%;
}

#list .download_list_main_inner {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}

/* filter */
#list .download_filter {
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  border: 0;
  border-radius: 12px;
  background: #ECEFF7;
  box-sizing: border-box;
}

.download_filter_body {
  display: flex;
  justify-content: space-between;
}

#list .download_filter_group {
  width: 48.83303411131059%;
}

#list .download_filter_search {
  width: 47.57630161579892%;
}

#list .download_filter_title {
  margin: 0 0 52px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

#list .download_filter_categories {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
}

#list .download_filter_group {
  min-width: 0;
}

#list .download_filter_group_title {
  margin: 0 0 22px;
  padding: 0 0 12px;
  border-bottom: 1px solid #0A2D88;
  font-size: 20px;
  line-height: 1.5;
}

#list .download_filter_options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* display: flex;
  flex-wrap: wrap; */
  gap: 8px;
  margin: 0;
}

#list .download_filter_option_item {
  margin: 0;
}

#list .download_filter_option {
  display: block;
  padding: 11px 6px;
  border: 1px solid transparent;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
}

@media screen and (min-width: 769px) {
#list .download_filter_option:hover {
  background: #CED5E7;
  color: #0A2D88;
}
}

#list .download_filter_option.is_active {
  border-color: #0A2D88;
  background: #0A2D88;
  color: #fff;
}



#list .download_filter_search_form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
}

#list .download_filter_search_input_wrap {
  flex: 1;
  min-width: 0;
  width: 100%;
}

#list .download_filter_search_buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

#list .download_filter_search_input {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  color: #090909;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: normal;
  box-sizing: border-box;
}

#list .download_filter_search_input::placeholder {
  color: #09090980;
}

#list .download_filter_search_input:focus {
  border-color: #0A2D88;
  outline: 2px solid rgba(10, 45, 136, 0.12);
  outline-offset: 1px;
}

#list .download_filter_search_button,
#list .download_filter_clear_button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  min-height: 60px;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  cursor: pointer;
  box-sizing: border-box;
}

#list .download_filter_search_button {
  border: 1px solid #0A2D88;
  background: #0A2D88;
  color: #fff;
}

@media screen and (min-width: 769px) {
#list .download_filter_search_button:hover {
  background: #0A2D88;
  color: #fff;
}
}

#list .download_filter_clear_button {
  border: 1px solid #0A2D88;
  background: transparent;
  color: #0A2D88;
}

@media screen and (min-width: 769px) {
#list .download_filter_clear_button:hover {
  background: #fff;
  color: #0A2D88;
}
}

/* material list */
#list .download_material_result {
  width: 100%;
  padding-top: 82px;
}

#list .imglist.download_material_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px 25px;
  width: 100%;
  margin: 0;
}

#list .imglist.download_material_list>li.download_material_item {
  width: auto;
  margin: 0;
  padding: 0;
  float: none;
  border: 0;
  font-size: inherit;
  text-align: center;
}

#list .imglist.download_material_list>li.download_material_item:nth-child(4n) {
  margin-right: 0;
}

#list .imglist.download_material_list .download_material_img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #f7f7f7;
}

#list .imglist.download_material_list .download_material_img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

#list .imglist.download_material_list .download_material_title {
  margin: 14px 0 4px;
  padding: 0;
  color: #0A2D88;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

#list .download_material_size {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

#list .imglist.download_material_list::after {
  display: none;
  content: none;
}

#list .imglist.download_material_list .download_material_button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 14px 0 0;
  padding: 0 12px;
  border: 1px solid #0A2D88;
  background: #0A2D88;
  color: #fff;
  line-height: 1.25;
  border-radius: 4px;
}

@media screen and (min-width: 769px) {
  #list .imglist.download_material_list .download_material_button:hover {
    border-color: #0A2D88;
    background: #0A2D88;
    color: #fff;
  }
}

#list .download_material_empty {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 50px 20px;
  border: 0;
  color: #0A2D88;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  box-sizing: border-box;
}

/* pager */
#list ul.pager.download_material_pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 720px;
  margin: 120px auto 0;
  text-align: center;
}

#list ul.pager.download_material_pager li {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0;
  flex-shrink: 0;
  line-height: normal;
}

/* 左矢印を左側へ */
#list ul.pager.download_material_pager li:first-child {
  margin-right: 18px;
}

/* 右矢印を右側へ */
#list ul.pager.download_material_pager li:last-child {
  margin-left: 18px;
}

/* ページ番号 */
#list ul.pager.download_material_pager li a:not(.arrow) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #0A2D88;
  border-radius: 50%;
  background: #fff;
  color: #0A2D88;
  font-size: 18px;
  line-height: 1;
  box-sizing: border-box;
      padding: 0 0 3px 1px;
}

/* 現在ページ */
#list ul.pager.download_material_pager li a.cur {
  background: #0A2D88;
  color: #fff;
}

/* 有効な前後矢印 */
#list ul.pager.download_material_pager li a.arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  #list ul.pager.download_material_pager li a:hover {
    background: #CED5E7;
}
}

#list ul.pager.download_material_pager li a.arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #0A2D88;
  border-right: 2px solid #0A2D88;
  content: "";
}

/* 有効な左矢印 */
#list ul.pager.download_material_pager li a.prev.arrow::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

/* 有効な右矢印 */
#list ul.pager.download_material_pager li a.next.arrow::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

#list ul.pager.download_material_pager li a.arrow:hover {
  background: transparent;
}

/* 前ページがない場合の薄い左矢印 */
#list ul.pager.download_material_pager li:first-child:empty {
  position: relative;
}

#list ul.pager.download_material_pager li:first-child:empty::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #0A2D884D;
  border-right: 2px solid #0A2D884D;
  content: "";
  transform: translate(-35%, -50%) rotate(-135deg);
}

/* 次ページがない場合の薄い右矢印 */
#list ul.pager.download_material_pager li:last-child:empty {
  position: relative;
}

#list ul.pager.download_material_pager li:last-child:empty::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #B8C5DF;
  border-right: 2px solid #B8C5DF;
  content: "";
  transform: translate(-65%, -50%) rotate(45deg);
}

/* responsive */
@media screen and (max-width: 768px) {
  #list .download_list_main_inner {
    width: calc(100% - 32px);
  }

  #list .download_filter {
    padding: 38px 20px 32px;
    border-radius: 10px;
  }

  #list .download_filter_body {
    flex-direction: column;
    gap: 32px;
  }

  #list .download_filter_title {
    margin-bottom: 32px;
    font-size: 18px;
  }

  #list .download_filter_categories {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  #list .download_filter_group {
    width: 100%;
  }

  #list .download_filter_group_title {
    font-size: 16px;
  }

  #list .download_filter_option {
    padding: 7px 11px;
    font-size: 12px;
  }

  #list .download_filter_options {
    grid-template-columns: repeat(2, 1fr);
  }

  #list .download_filter_search {
    width: 100%;
    /* margin-top: 32px; */
  }

  #list .download_filter_search_form {
    gap: 16px;
    flex-direction: column;
  }

  #list .download_filter_search_buttons {
    width: 100%;
  }

  #list .download_filter_search_input_wrap {
    width: 100%;
  }

  #list .download_filter_search_input {
    height: 42px;
    padding: 0 14px;
    font-size: 12px;
    width: 100%;
    border-radius: 4px;
  }

  #list .download_filter_search_button,
  #list .download_filter_clear_button {
    min-height: 42px;
    border-radius: 4px;
    font-size: 12px;
    flex: 1;
  }

  #list .download_material_result {
    padding-top: 48px;
  }

  #list .imglist.download_material_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 12px;
  }

  #list .imglist.download_material_list .download_material_title {
    margin-top: 10px;
    font-size: 12px;
  }

  #list .download_material_size {
    font-size: 10px;
  }

  #list .imglist.download_material_list .download_material_button {
    min-height: 44px;
    margin-top: 10px;
    padding: 0 5px;
    font-size: 11px;
  }

  #list ul.pager.download_material_pager {
    gap: 6px;
    margin-top: 56px;
  }

  #list ul.pager.download_material_pager li,
  #list ul.pager.download_material_pager li a {
    width: 32px;
    height: 32px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  #list .download_list_main_inner {
    width: calc(100% - 60px);
  }
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  #list .imglist.download_material_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (min-width: 769px) and (max-width: 1140px) {
  #list .download_filter_options {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------
 download form common
-------------------------------------------------- */

/* main */
#contact.download_form_page .download_form_main {
  width: 100%;
}

#contact.download_form_page .download_form_intro {
  width: 100%;
  margin: 0 auto 78px;
  color: #0A2D88;
  font-size: 16px;
  text-align: center;
}

/* layout */
#contact.download_form_page .download_form {
  width: 100%;
  margin: 0;
}

#contact.download_form_page .download_form_layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* note */
#contact.download_form_page .download_form_note {
  position: sticky;
  top: 80px;
  width: 31.825795644891127%;
  padding: 20px;
  border-radius: 8px;
  background: #f2f2f2;
  box-sizing: border-box;
}

#contact.download_form_page .download_form_note_list {
  margin: 0;
  padding: 0;
}

#contact.download_form_page .download_form_note_list li {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: #0A2D88;
  line-height: 1.5;
}

#contact.download_form_page .download_form_note_list li+li {
  margin-top: 7px;
}

#contact.download_form_page .download_form_note_list li::before {
  position: absolute;
  top: 11px;
  left: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #0A2D88;
  content: "";
}

/* form body */
#contact.download_form_page .download_form_body {
  width: 61.97654941373534%;
}

#contact.download_form_page .download_form_row {
  display: grid;
  grid-template-columns: min(182px, 18.2vw) minmax(0, 1fr);
  gap: min(80px, 4.444444444444445vw);
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 22px 0;
  border-bottom: 1px solid #0A2D884D;
  box-sizing: border-box;
}

#contact.download_form_page .download_form_row_textarea {
  padding-bottom: 0;
  border-bottom: none;
}

#contact.download_form_page .download_form_row:first-child {
  padding-top: 0;
  border-top: 0;
}

#contact.download_form_page .download_form_row_address,
#contact.download_form_page .download_form_row_textarea,
#contact.download_form_page .download_form_row_option {
  align-items: start;
}

#contact.download_form_page .download_form_row_address .download_form_head,
#contact.download_form_page .download_form_row_textarea .download_form_head,
#contact.download_form_page .download_form_row_option .download_form_head {
  padding-top: 9px;
}

/* head */
#contact.download_form_page .download_form_head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

#contact.download_form_page .download_form_label {
  line-height: 1.5;
}

#contact.download_form_page .download_form_required,
#contact.download_form_page .download_form_optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-sizing: border-box;
}

#contact.download_form_page .download_form_required {
  background: #FF0000;
  color: #fff;
}

#contact.download_form_page .download_form_optional {
  background: #e5e5e5;
  color: #333;
}

/* field */
#contact.download_form_page .download_form_field {
  min-width: 0;
  color: #0A2D88;
}

#contact.download_form_page input.download_form_input,
#contact.download_form_page select.download_form_select,
#contact.download_form_page textarea.download_form_textarea {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid #0A2D88;
  border-radius: 8px;
  background: #fff;
  color: #090909;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  box-sizing: border-box;
}

#contact.download_form_page input.download_form_input {
  height: 56px;
  padding: 0 16px;
}

#contact.download_form_page select.download_form_select {
  width: 240px;
  height: 50px;
  padding: 0 38px 0 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 6px;
  cursor: pointer;
}

#contact.download_form_page select.download_form_select::-ms-expand {
  display: none;
}

#contact.download_form_page textarea.download_form_textarea {
  height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

#contact.download_form_page input.download_form_input::placeholder,
#contact.download_form_page textarea.download_form_textarea::placeholder {
  color: rgba(9, 9, 9, 0.3);
  opacity: 1;
}

#contact.download_form_page input.download_form_input:focus,
#contact.download_form_page select.download_form_select:focus,
#contact.download_form_page textarea.download_form_textarea:focus {
  border-color: #0A2D88;
  outline: 2px solid rgba(10, 45, 136, 0.12);
  outline-offset: 1px;
}

/* name / kana */
#contact.download_form_page .download_form_input_group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

/* postal */
#contact.download_form_page .download_form_postal {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
}

#contact.download_form_page .download_form_postal>span {
  flex-shrink: 0;
  color: #090909;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

#contact.download_form_page input.download_form_input_zip1 {
  width: 80px;
  height: 50px;
}

#contact.download_form_page input.download_form_input_zip2 {
  width: 120px;
  height: 50px;
}

/* address */
#contact.download_form_page .download_form_address {
  display: grid;
  gap: 12px;
}

#contact.download_form_page .download_form_address_item {
  display: grid;
  gap: 5px;
}

#contact.download_form_page .download_form_sub_label {
  color: #090909;
  font-size: 14px;
  line-height: 1.5;
}

/* tel / fax */
#contact.download_form_page .download_form_tel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

#contact.download_form_page .download_form_tel>span {
  color: #090909;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
}

/* check */
#contact.download_form_page .download_form_check {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #0A2D88;
  font-size: 13px;
  line-height: 1.7;
  cursor: pointer;
}

#contact.download_form_page .download_form_check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: #0A2D88;
}

#contact.download_form_page .download_form_check a {
  color: #0A2D88;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#contact.download_form_page .download_form_field_note {
  margin: 12px 0 0;
  color: #414141;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.8;
}

/* errors */
#contact.download_form_page .download_form_error {
  display: block;
  margin-top: 6px;
  color: #ec584a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
}

/* agreement / submit */
#contact.download_form_page .download_form_submit {
  width: 100%;
  margin: 64px auto 0;
  text-align: center;
}

#contact.download_form_page .download_form_agreement {
  margin: 0 0 28px;
  text-align: center;
}

#contact.download_form_page .download_form_agreement .download_form_check {
  align-items: center;
}

#contact.download_form_page .download_form_agreement .download_form_check input[type="checkbox"] {
  margin-top: 0;
}

#contact.download_form_page .download_form_submit_button {
  display: block;
  width: 100%;
  min-height: 70px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-sizing: border-box;
}

#contact.download_form_page .download_form_submit_button:hover {
  background: transparent;
  color: inherit;
}

#contact.download_form_page .download_form_submit_button:disabled {
  background: #aaa;
  color: #fff;
  cursor: default;
  opacity: 0.7;
}

/* responsive */
@media screen and (max-width: 919px) {
  #contact.download_form_page .download_form_intro {
    margin-bottom: 32px;
    font-size: 14px;
  }

  #contact.download_form_page .download_form_layout {
    flex-direction: column;
    gap: 52px;
  }

  #contact.download_form_page .download_form_note {
    position: static;
    width: 100%;
    padding: 20px;
  }

  #contact.download_form_page .download_form_note_list li {
    font-size: 14px;
    padding-left: 12px;
  }

  #contact.download_form_page .download_form_note_list li::before {
    width: 3px;
    height: 3px;
    top: 9px;
    left: 2px;
  }

  #contact.download_form_page .download_form_body {
    width: 100%;
  }

  #contact.download_form_page .download_form_row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    padding: 16px 0;
  }

  #contact.download_form_page .download_form_head {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #contact.download_form_page input.download_form_input,
  #contact.download_form_page select.download_form_select,
  #contact.download_form_page textarea.download_form_textarea {

    border-radius: 6px;
  }

  #contact.download_form_page .download_form_row_address .download_form_head,
  #contact.download_form_page .download_form_row_textarea .download_form_head,
  #contact.download_form_page .download_form_row_option .download_form_head {
    padding-top: 0;
  }




  #contact.download_form_page .download_form_label {
    font-size: 14px;
  }

  #contact.download_form_page input.download_form_input,
  #contact.download_form_page select.download_form_select {
    height: 48px;
  }

  #contact.download_form_page .download_form_input_group {
    gap: 6px;
  }

  #contact.download_form_page select.download_form_select {
    width: 100%;
  }

  #contact.download_form_page .download_form_tel {
    gap: 5px;
  }

  #contact.download_form_page .download_form_submit {
    margin-top: 42px;
  }

  #contact.download_form_page .download_form_submit_button {
    max-width: 300px;
    min-height: 50px;
    font-size: 14px;
  }
}

/* --------------------------------------------------
 download content page common
-------------------------------------------------- */

/* main */
.download_content_page .download_content_main {
  width: 100%;
}

.download_content_page .download_content_body {
  width: 100%;
}

.download_content_page .download_content_section {
  width: 100%;
}

.download_content_page .download_content_section+.download_content_section {
  margin-top: 54px;
}

.download_content_page .download_content_section_title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0 0 12px;
  border-bottom: 1px solid #0A2D88;
  color: #0A2D88;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  box-sizing: border-box;
}

.download_content_page .download_content_section_number {
  flex-shrink: 0;
}

.download_content_page .download_content_section_title_text {
  min-width: 0;
}

.download_content_page .download_content_section_body {
  margin-top: 22px;
}

.download_content_page .download_content_text {
  color: #0A2D88;
  font-size: 16px;
  font-weight: 400;
}


/* howto note */
.download_content_page .download_content_note {
  width: 100%;
  margin-top: 26px;
  padding: 20px;
  background: #f2f2f2;
  box-sizing: border-box;
}

.download_content_page .download_content_note_text {
  margin: 0;
  color: #0A2D88;
  font-size: 14px;
  font-weight: 400;
}


/* privacy */
.download_privacy_page .download_privacy_intro {
  margin-bottom: 72px;
}

.download_privacy_page .download_privacy_policy_list {
  margin: 12px 0 0;
  padding: 0;
}

.download_privacy_page .download_privacy_policy_list li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: #0A2D88;
  font-size: 16px;
  font-weight: 400;
}

/* .download_privacy_page .download_privacy_policy_list li+li {
  margin-top: 8px;
} */

.download_privacy_page .download_privacy_policy_list li::before {
  position: absolute;
  top: 14px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0A2D88;
  content: "";
}

/* .download_privacy_page .download_privacy_list {
  margin: 12px 0 0;
  padding: 0;
} */

.download_privacy_page .download_privacy_list li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: #0A2D88;
  font-size: 16px;
  font-weight: 400;
}

.download_privacy_page .download_privacy_list li::before {
  position: absolute;
  top: 14px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0A2D88;
  content: "";
}

.download_privacy_page .download_privacy_contact {
  margin-top: 18px;
}

.download_privacy_page .download_privacy_contact p {
  margin: 0;
  color: #0A2D88;
  font-weight: 400;
}

/* responsive */
@media screen and (max-width: 768px) {
  .download_content_page .download_content_section+.download_content_section {
    margin-top: 32px;
  }

  .download_content_page .download_content_section_title {
    gap: 5px;
    padding: 0 0 6px;
    font-size: 16px;
  }

  .download_content_page .download_content_section_body {
    margin-top: 12px;
  }

  .download_content_page .download_content_text {
    font-size: 14px;
  }

  .download_content_page .download_content_note {
    margin-top: 20px;
    padding: 16px;
  }

  .download_content_page .download_content_note_text {
    font-size: 12px;
    line-height: 1.8;
  }

  .download_privacy_page .download_privacy_intro {
    margin-bottom: 48px;
  }

  .download_privacy_page .download_privacy_policy_list {
    margin-top: 20px;
  }

  .download_privacy_page .download_privacy_policy_list li,
  .download_privacy_page .download_privacy_list li {
    padding-left: 12px;
    font-size: 14px;
  }

  .download_privacy_page .download_privacy_policy_list li+li {
    margin-top: 6px;
  }

  .download_privacy_page .download_privacy_policy_list li::before,
  .download_privacy_page .download_privacy_list li::before {
    top: 11px;
    left: 2px;
    width: 3px;
    height: 3px;
  }

  .download_privacy_page .download_privacy_contact {
    margin-top: 14px;
  }

  .download_privacy_page .download_privacy_contact p {
    font-size: 13px;
    line-height: 1.9;
  }
}

/* --------------------------------------------------
 download policy page
-------------------------------------------------- */

.download_policy_page .download_policy_intro {
  margin-bottom: 72px;
}

.download_policy_page .download_policy_number_list {
  margin: 0;
  padding: 0;
  counter-reset: policy-number;
}

.download_policy_page .download_policy_number_list>li {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: #0A2D88;
  counter-increment: policy-number;
}

.download_policy_page .download_policy_number_list>li+li {
  margin-top: 8px;
}

.download_policy_page .download_policy_number_list>li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(policy-number) ".";
}

.download_policy_page .download_policy_parentheses_list {
  counter-reset: policy-parentheses;
}

.download_policy_page .download_policy_parentheses_list>li {
  position: relative;
  margin: 0;
  padding-left: 34px;
  color: #0A2D88;
  counter-increment: policy-parentheses;
}

.download_policy_page .download_policy_parentheses_list>li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "（" counter(policy-parentheses) "）";
}

.download_policy_page .download_policy_end {
  margin: 72px 0 0;
  color: #0A2D88;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .download_policy_page .download_policy_intro {
    margin-bottom: 48px;
  }

  .download_policy_page .download_policy_number_list>li {
    padding-left: 12px;
    font-size: 14px;
  }

  .download_policy_page .download_policy_number_list>li+li {
    margin-top: 6px;
  }

  .download_policy_page .download_policy_parentheses_list {
    margin-top: 6px;
  }

  .download_policy_page .download_policy_parentheses_list>li {
    padding-left: 30px;
    font-size: 14px;
  }

  .download_policy_page .download_policy_end {
    margin-top: 48px;
    font-size: 14px;
  }
}





/* --------------------------------------------------
 download contact confirm
-------------------------------------------------- */

#contact.download_form_confirm .download_form_intro {
  margin-bottom: 54px;
}

#contact.download_form_confirm .download_confirm_form {
  width: 100%;
}

#contact.download_form_confirm .download_confirm_list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #0A2D884D;
}

#contact.download_form_confirm .download_confirm_row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  width: 100%;
  min-height: 78px;
  border-bottom: 1px solid #0A2D884D;
  box-sizing: border-box;
}

#contact.download_form_confirm .download_confirm_label {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px 24px;
  background: #ECEFF7;
  color: #0A2D88;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  box-sizing: border-box;
}

#contact.download_form_confirm .download_confirm_value {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 20px 28px;
  color: #0A2D88;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

#contact.download_form_confirm .download_confirm_row_subject .download_confirm_label,
#contact.download_form_confirm .download_confirm_row_subject .download_confirm_value {
  align-items: flex-start;
}

#contact.download_form_confirm .download_confirm_actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 64px;
}

#contact.download_form_confirm .download_confirm_actions .download_form_submit_button {
  width: 100%;
  max-width: none;
  margin: 0;
}

#contact.download_form_confirm .download_confirm_button_back {
  border-color: transparent;
  background: transparent;
  color: inherit;
}

#contact.download_form_confirm .download_confirm_button_back:hover {
  border-color: transparent;
  background: transparent;
  color: inherit;
}

@media screen and (max-width: 919px) {
  #contact.download_form_confirm .download_form_intro {
    margin-bottom: 38px;
  }

  #contact.download_form_confirm .download_confirm_row {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  #contact.download_form_confirm .download_confirm_label {
    padding: 12px 14px;
    font-size: 13px;
  }

  #contact.download_form_confirm .download_confirm_value {
    min-height: 56px;
    padding: 14px;
    font-size: 13px;
    line-height: 1.8;
  }

  #contact.download_form_confirm .download_confirm_actions {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 42px;
  }
}




/* --------------------------------------------------
 download complete common
-------------------------------------------------- */

.download_form_page .download_complete {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 60px;
  background: #ECEFF7;
  border-radius: 12px;
  text-align: center;
  box-sizing: border-box;
}

.download_form_page .download_complete_title {
  margin: 0;
  color: #0A2D88;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.download_form_page .download_complete_body {
  margin-top: 32px;
}

.download_form_page .download_complete_text {
  margin: 0;
  color: #0A2D88;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.download_form_page .download_complete_note {
  margin: 24px 0;
  color: #414141;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 919px) {
  .download_form_page .download_complete {
    padding: 42px 20px;
    border-radius: 10px;
  }

  .download_form_page .download_complete_title {
    font-size: 18px;
    line-height: 1.75;
  }

  .download_form_page .download_complete_body {
    margin-top: 20px;
    margin-bottom: 26px;
  }

  .download_form_page .download_complete_text {
    font-size: 14px;
    line-height: 1.75;
  }

  .download_form_page .download_complete_note {
    margin-top: 20px;
    font-size: 12px;
  }
}