@charset "utf-8";
/* ===========================================
 * ROOT
 * ======================================== */
:root {
  --color-tsuruha: #E50012;
  --color-welcia: #0086CD;
}

/* ===========================================
 * COMMON
 * ======================================== */
body {
  background-color: #FBF9F9;
}
.container {
  width: min(100%, 750px);
  background-color: #FFFFFF;
}
.inner {
  padding: 20px;
  display: grid;
  gap: 16px;
}

/* ===========================================
 * STYLE
 * ======================================== */
 /* INTRO */
/* ======================================= */
.intro__box {
  background-color: #FFFFFF;
}
.intro__txt {
  width: fit-content;
  padding-block: 6px;
  margin-inline: auto;
}
 /* COMPANY */
/* ======================================= */
.company__box {
  background-color: #FFFFFF;
}
.company__tit {
  width: fit-content;
  padding-block: 16px;
  margin-inline: auto;
  margin-bottom: 15px;
  border-top: 1px solid #111111;
  border-bottom: 1px solid #111111;
  display: block;
}
.company__flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}
.company__group {
  border: 1px solid;
  border-radius: 8px; 
  overflow: hidden;
}
.company__group__tit {
  width: 100%;
  padding: 8px;
  font: 600 14px / 1.5 "Hiragino Sans";
  letter-spacing: 0.28px;
  color: #FFFFFF;
  background-color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company__group__tit > span {
  width: fit-content;
  display: block;
}
.company__group__contents {
  padding: 10px;
}
/* tsuruha */
.group__tsuruha {
  border-color: var(--color-tsuruha);
}
.group__tsuruha .company__group__tit {
  background-color: var(--color-tsuruha);
}
/* welcia */
.group__welcia {
  border-color: var(--color-welcia);
}
.group__welcia .company__group__tit {
  background-color: var(--color-welcia);
}
 /* CAMPAIGN01 */
/* ======================================= */
.campaign01__box {
  margin-top: 40px;
  border-radius: 10px;
  border: 1px solid #AAAAAA;
  background-color: #FFFFFF;
  position: relative;
  /* overflow: hidden; */
}
.campaign01__tit {
  width: min(calc(100% + 40px), 375px);
  position: absolute;
  z-index: 10;
  top: -60px;
  left: -20px;
}
.campaign01__box__inner {
  padding: 16px;
}
.campaign01__dtail {
  width: 100%;
  margin-bottom: 16px;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.0;
  color: #111111;
  display: flex;
  align-items: center;
}
.campaign01__dtail::before,
.campaign01__dtail::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #AAAAAA;
  flex: 1;
}
.campaign01__dtail::before {
  margin-right: 0.5em;
}
.campaign01__dtail::after {
  margin-left: 0.5em;
}
.campaign01__dtail > span {
  width: fit-content;
  display: block;
}
.campaign01__btn__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.campaign01__btn {
  padding-block: 13px;
  padding-inline: 16px calc(1em + 7px);
  font: 600 14px / 1.5 "Hiragino Sans";
  letter-spacing: 0.28px;
  color: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: auto;
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.30);
}
.campaign01__btn::after {
  content: "";
  width: 0.4em;
  height: 0.4em;
  margin-block: auto;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  position: absolute;
  right: 0.8em;
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .campaign01__btn {
    font: 600 18px / 1.5 "Hiragino Sans";
    min-height: 112px;
  }
  .campaign01__btn::after {
    width: 0.6em;
    height: 0.6em;
    border-top: solid 3px #FFFFFF;
    border-right: solid 3px #FFFFFF;
    right: 1.6em;
  }
}
/* tsuruha */
.btn__tsuruha {
  background-color: var(--color-tsuruha);
}
/* welcia */
.btn__welcia {
  background-color: var(--color-welcia);
}
 /* CAMPAIGN02 */
/* ======================================= */
.campaign02__box {
  margin-top: 40px;
  border-radius: 10px;
  border: 1px solid #AAAAAA;
  background-color: #E66C96;
  position: relative;
  /* overflow: hidden; */
}
.campaign02__tit {
  width: min(calc(100% + 40px), 375px);
  position: absolute;
  z-index: 10;
  top: -60px;
  left: -20px;
}
.campaign02__img {
  padding-top: 15px;
  background-color: #e15586;
}
.campaign02__box__inner {
  padding: 16px;
}
.campaign02__btn {
  padding-block: 17px;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.0;
  color: #D3070C;
  border: 2px solid #FFFFFF;
  border-radius: 9999px;
  background-color: #F5D55A;
  display: flex;
  align-items: center;
  justify-content: center;
}
 /* INFO */
/* ======================================= */
.info__box {
  border: 1px solid #111111;
  border-radius: 10px;
  background-color: #FFFFFF;
  overflow: hidden;
}
.info__tit {
  padding-block: 14px;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 1.4px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111111;
}
.info__tit > span {
    width: fit-content;
    display: block;
  }
.info__box__inner {
  padding: 20px;
  display: grid;
  gap: 10px;
}
.info__number {
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #424242;
}
.info__mail {
  display: grid;
  grid-template-columns: 3.8em auto;
}
.info__mail__tit,
.info__mail__txt {
  font-family: "Hiragino Sans";
  font-size: 14px;
  line-height: 1.25;
  color: #424242;
  word-break: break-all;
}
.info__mail__tit {
  font-weight: 600;
}
.info__mail__txt {
  font-weight: 300;
}
.info__list {
  font-family: "Hiragino Sans";
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  color: #424242;
}
/* .info__caution__container {} */
.info__caution {
  font-family: "Hiragino Sans";
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #424242;
}
.info__attention {
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #424242;
}

