/* ------------------------------------------------------------ */

/* sideFixMenu */

/* ------------------------------------------------------------ */
* {
  box-sizing: border-box;
}

body * {
  font-family: ten-mincho-text, serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  position: relative;
  width: 100%;
  background-color: #fffae8;
  background-image: url("../images/bg_02.png");
  background-color: #fffae8;
  background-position: center top 360px;
}
@media screen and (max-width: 750px) {
  .container {
    background-position: center top 180px;
  }
}
.sideFixMenu {
  position: fixed;
  top: 0;
  top: 130px;
  right: 0;
  z-index: 200;
}

.header {
  background-color: #fffae8;
  background-image: url("../images/bg_01.png");
  background-size: 1426px auto;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  height: 0;
  padding-top: 640px;
  position: relative;
  z-index: 0;
}
.header .headerInner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  width: min(1000px, 100%);
}

.header .logo {
  position: absolute;
  top: 20px;
  left: 20px;
}
.header .logo a {
  display: block;
}
.header .logo img {
  width: 100%;
}
.header h1 {
  color: rgba(215, 67, 25, 1);
  font-size: 80px;
  letter-spacing: 0.1em;
  padding-top: 92px;
  /*	text-shadow: 2px 2px 8px #000;*/
}

.header h2 {
  color: rgba(215, 67, 25, 1);
  font-size: 32px;
  letter-spacing: 0.1em;
  padding-top: 1em;
  padding-bottom: 2em;
}

@media screen and (max-width: 750px) {
  .header {
    background-size: 700px auto;
    padding-top: 320px;
  }
  .header .logo {
    width: 104px;
    top: 10px;
    left: 10px;
  }
  .header h1 {
    font-size: 40px;
    padding-top: 46px;
  }
  .header h2 {
    font-size: 16px;
  }
}

.content_wrap {
  position: relative;
  z-index: 3;
  margin-top: -360px;
  width: 100%;
  padding-bottom: 140px;
  padding-top: 72px;
}
.content {
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 1000px);
}
@media screen and (max-width: 750px) {
  .content_wrap {
    margin-top: -180px;
    padding-bottom: 70px;
    padding-top: 36px;
  }
  .content {
    width: 90%;
  }
}

.fromList {
  margin-bottom: 0%;
}
.fromList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.fromList li {
  flex: 0 0 min(50%, 320px);
  padding: 0 10px;
  margin-bottom: 20px;
}

.fromList li a {
  display: block;
  -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
  line-height: 0;
}

.fromList li a:hover {
  opacity: 0.8;
}

.fromList li img {
  width: 100%;
}

.fromList li img.noshadow {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fromList li span {
  display: block;
}

.fromList li.attention {
  flex: 0 0 min(calc(50% - 20px), 320px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  padding: 0;
  border: rgba(255, 255, 255, 0.5) 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.fromList li.attention p {
  color: #fff;
  text-align: center;
}
.fromArea {
  background: 0 0 no-repeat #cdad33;
  background: rgba(215, 67, 25, 1) url("../images/bg_03.png") 50% 0 repeat-y;
  position: relative;
}
.fromArea::before {
  background: url("../images/ribbon.png") center no-repeat;
  background-size: auto 88px;
  content: "";
  display: block;
  height: 88px;
  position: absolute;
  top: -48px;
  width: 100%;
}

.fromArea_content {
  margin: 0 auto;
  width: min(90%, 1000px);
}
.fromArea h2 {
  color: #fff;
  font-size: 40px;
  letter-spacing: 0.1em;
  padding: 6.6% 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .fromList li.attention {
    flex: 0 0 calc(100% - 20px);
    padding: 10px;
  }
  .fromArea::before {
    background-size: auto 44px;
    height: 44px;
    top: -24px;
  }
  .fromArea h2 {
    font-size: 20px;
  }
}

footer {
  padding-top: 50px;
  padding-bottom: 10px;
  clear: both;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

/* 2020 */
.msgBox {
  padding: 14px 50px 64px;
  background-color: rgba(255, 255, 255, 0.8);
  border-top: #dd4017 4px solid;
}
.msg {
  border-bottom: 1px #96666d solid;
  padding: 50px 0 50px;
  width: min(100%, 900px);
}
.msg:last-child {
  border: none;
  padding: 50px 0 0;
}
.msg * {
  color: #3c1d00;
  letter-spacing: 0.1em;
  text-align: left;
}

.msg img {
  float: left;
  margin: 0 50px 32px 0;
  width: min(50%, 200px);
}

.msg h2 {
  font-size: 40px;
  line-height: 1.5;
  margin: 0 0 0.5em;
}

.msg h3 {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 0.5em;
}

.msg h3 strong {
  font-size: 1.33em;
}

.msg p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 1em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.msg p:last-child {
  margin: 0;
}
@media screen and (max-width: 750px) {
  .msgBox {
    padding: 7px 25px 32px;
  }
  .msg {
    padding: 25px 0 25px;
  }
  .msg:last-child {
    padding: 25px 0 0;
  }
  .msg img {
    margin: 0 25px 16px 0;
  }
  .msg h2 {
    font-size: 22px;
  }
  .msg h3 {
    font-size: 16px;
  }
  .msg p {
    font-size: 14px;
  }
}

.setOpacity {
  background: rgba(255, 255, 255, 0.4);
}

.ls_04 {
  letter-spacing: 0.04em;
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
}
